Sign in
← All matches
✅ Cryptographically verified · sealed pick #5953

Estudiantes de Merida vs Trujillanos

Primera Division · Venezuela · 20 Sept 2026, 21:00 UTC

Final score
1 : 1
Result
Lost
Pick
Estudiantes de Merida
Market
1X2
CLV vs fair close
+7.60%
Model prob.
60.3%
Best price
1.75
Min odds
1.69
Stake factor
2.50

Proof this pick was locked in before kickoff

The pick was encrypted before kickoff and published the moment it was sealed to Telegram and GitHub, each carrying an independent timestamp. The encrypted batch is also anchored in Bitcoin — a public record nobody, including us, can alter or back-date. After the match the key is released; decrypting that exact pre-published message reveals the pick, proving it was fixed in advance, not cherry-picked.

Encrypted pick (AES-256-GCM)
UFrZcEOi0UXYRYtizzKLgm9uK5d2/9K/K4d97geK3ekpumqCPVkORjBbDEZLbAB8ujTmyfJulo77gUl194Gw/GeaFFfg88Ch7/Qwgz/A9f+AfG0tKHQd/4sLMYFo/tOzFhm5wComz7BjqczoAhbyGAj1nEYtby3ky7ATBqwiI5jxNn+jC/wmMtfhCrjXyWnXnSJA+YT+AQ6yngEB82rss37s8C7B8CW6n2dNX4D6jn4WQwEybcp3yjyW6sXbImGEMWrVxD0addasM066S8ET8oaZOH/M6ZT+qeaNItxQl6XQ6FRco/WOOOAVA2npVBbVg2ARtYkBKedO2rXKgK0kmcmZop1HSZrN6WCIoFwRZzfVqGV7iKOJww==
key fingerprint sha256: f2c9b10ffff4bc11e656dd07d9443ee65d529b05d5618f2d46409b94b33e968c
Decrypt it & read the pick
Decryption key (released after the match)
5ac7e824377e889751355e3f1c355b2d16bc68589806befcc2afd666def5e2ab
Decrypt in CyberChef →
Verify it yourself — paste both values, no install

The Encrypted pick above is base64( nonce[12 bytes] + ciphertext + tag[16 bytes] ), AES-256-GCM. Zero-install check: open your browser console (press F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("UFrZcEOi0UXYRYtizzKLgm9uK5d2/9K/K4d97geK3ekpumqCPVkORjBbDEZLbAB8ujTmyfJulo77gUl194Gw/GeaFFfg88Ch7/Qwgz/A9f+AfG0tKHQd/4sLMYFo/tOzFhm5wComz7BjqczoAhbyGAj1nEYtby3ky7ATBqwiI5jxNn+jC/wmMtfhCrjXyWnXnSJA+YT+AQ6yngEB82rss37s8C7B8CW6n2dNX4D6jn4WQwEybcp3yjyW6sXbImGEMWrVxD0addasM066S8ET8oaZOH/M6ZT+qeaNItxQl6XQ6FRco/WOOOAVA2npVBbVg2ARtYkBKedO2rXKgK0kmcmZop1HSZrN6WCIoFwRZzfVqGV7iKOJww=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5ac7e824377e889751355e3f1c355b2d16bc68589806befcc2afd666def5e2ab".match(/../g).map(h => parseInt(h, 16)));
crypto.subtle.importKey("raw", key, "AES-GCM", false, ["decrypt"])
  .then(k => crypto.subtle.decrypt({ name: "AES-GCM", iv: blob.slice(0, 12) }, k, blob.slice(12)))
  .then(b => console.log(new TextDecoder().decode(b)));

Prefer a GUI? The orange button opens CyberChef pre-filled. Or split the parts yourself for any AES-256-GCM tool:

  • Algorithm: AES-256-GCM
  • Key (hex): 5ac7e824377e889751355e3f1c355b2d16bc68589806befcc2afd666def5e2ab
  • IV / nonce (hex): 505ad97043a2d145d8458b62
  • Ciphertext (hex): cf328b826f6e2b9776ffd2bf2b877dee078adde929ba6a823d590e46305b0c464b6c007cba34e6c9f26e968efb814975f781b0fc679a1457e0f3c0a1eff430833fc0f5ff807c6d2d28741dff8b0b318168fed3b31619b9c02a26cfb063a9cce80216f21808f59c462d6f2de4cbb01306ac222398f1367fa30bfc2632d7e10ab8d7c969d79d2240f984fe010eb29e0101f36aecb37eecf02ec1f025ba9f674d5f80fa8e7e164301326dca77ca3c96eac5db226184316ad5c43d1a75d6ac334eba4bc113f28699387fcce994fea9e68d22dc5097a5d0e8545ca3f58e38e0150369e95416d5836011b5890129e74edab5ca80ad2499c999a29d47499acd
  • Auth tag (hex): e96088a05c116737d5a8657b88a389c3

Any standard AES-256-GCM tool returns the exact same pick — the algorithm is a public standard.

How to verify the Bitcoin timestamp yourself

Bitcoin doesn't store the pick — it stores a 32-byte fingerprint (SHA-256) of the encrypted batch, via OpenTimestamps. That fingerprint is frozen in a public block nobody can alter or back-date. You can't spot it by eye on a block explorer (a block holds thousands of unrelated transactions) — you verify it with the .ots proof and any OpenTimestamps tool:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #967626 · anchoring transaction (its OP_RETURN holds the commitment). The block's Timestamp is when it became permanent.

Note: Bitcoin anchoring lands ~30–60 min after sealing, and a block's timestamp is miner-set (approximate). So the exact “before kickoff” proof is the seal time above — timestamped instantly by Telegram/GitHub — while Bitcoin is the independent, un-forgeable anchor of permanence.