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

Argentino Rosario vs Defensores de Cambaceres

Primera C · Argentina · 04 Jul 2026, 18:00 UTC

Final score
1 : 1
Result
Lost
Pick
Argentino Rosario
Market
1x2
Model prob.
41.8%
Best price
2.99
Min odds
2.65
Stake factor
3.00

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)
mGhnp+z6UG0qaW+X40P1Bt8OEJjvz+w/aWvpVpZ4/QmA6qS0poQtQDMMfq0gq0aNBlCSRw5rbPRVe01pkko9t1VcryDQ2SQarAHoS4T0uBaxvg+m8tuiee+PUQF/+hhYj2gcmblkoEnF89Ewv5MFZ/y/z7hthD5hLcMXdSA+VqfNaXKoh72isd+7VW3b3qjCPNquYmrJIcq4c9T0I3boo22QK2qTTRcA6vkVLJxs36bMGlbgZxwMWqD47cj7QY3FQ/QafzOgVNcjITktMnUObA0gWFOOZzj1sWt/bpY/hPWwlZKSSO94P5iyNOL9YlooOc5iqFN0IKjNTxgMQ/jjJyJsQ5sXj5uZS7z3DREI
key fingerprint sha256: a7ec261c97d25c68a14746d0b74702dd294c2522de6c7be24d24a61d9c32c4c8
Decrypt it & read the pick
Decryption key (released after the match)
41e2f3e07ad5642695b2071804d9ebd92c023ecdada7a61d0a9f230e3d7eeacb
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("mGhnp+z6UG0qaW+X40P1Bt8OEJjvz+w/aWvpVpZ4/QmA6qS0poQtQDMMfq0gq0aNBlCSRw5rbPRVe01pkko9t1VcryDQ2SQarAHoS4T0uBaxvg+m8tuiee+PUQF/+hhYj2gcmblkoEnF89Ewv5MFZ/y/z7hthD5hLcMXdSA+VqfNaXKoh72isd+7VW3b3qjCPNquYmrJIcq4c9T0I3boo22QK2qTTRcA6vkVLJxs36bMGlbgZxwMWqD47cj7QY3FQ/QafzOgVNcjITktMnUObA0gWFOOZzj1sWt/bpY/hPWwlZKSSO94P5iyNOL9YlooOc5iqFN0IKjNTxgMQ/jjJyJsQ5sXj5uZS7z3DREI"), c => c.charCodeAt(0));
const key  = Uint8Array.from("41e2f3e07ad5642695b2071804d9ebd92c023ecdada7a61d0a9f230e3d7eeacb".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): 41e2f3e07ad5642695b2071804d9ebd92c023ecdada7a61d0a9f230e3d7eeacb
  • IV / nonce (hex): 986867a7ecfa506d2a696f97
  • Ciphertext (hex): e343f506df0e1098efcfec3f696be9569678fd0980eaa4b4a6842d40330c7ead20ab468d065092470e6b6cf4557b4d69924a3db7555caf20d0d9241aac01e84b84f4b816b1be0fa6f2dba279ef8f51017ffa18588f681c99b964a049c5f3d130bf930567fcbfcfb86d843e612dc31775203e56a7cd6972a887bda2b1dfbb556ddbdea8c23cdaae626ac921cab873d4f42376e8a36d902b6a934d1700eaf9152c9c6cdfa6cc1a56e0671c0c5aa0f8edc8fb418dc543f41a7f33a054d72321392d32750e6c0d2058538e6738f5b16b7f6e963f84f5b095929248ef783f98b234e2fd625a2839ce62a8537420a8cd4f180c43f8
  • Auth tag (hex): e327226c439b178f9b994bbcf70d1108

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 #956567 · 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.