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

CFR Cluj vs FCSB

Liga 1 · Romania · 23 Aug 2026, 18:30 UTC

Final score
1 : 0
Result
Lost
Pick
FCSB
Market
1X2
CLV vs fair close
-0.32%
Model prob.
52.6%
Best price
2.00
Min odds
1.94
Stake factor
1.80

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)
06CdYBD+vYpuxzCwmMU/kYzqsdo+cbFfP0TpycB/VFtrcMUzOivPQjt1ZonFS0gG7GPbP4q6Bm3f0JYRLi/+q2IDMTlBlTiS/+wCbANcm1e9g8HQ00NTs8jN7WtLg0rNqph68hnjHeYdtAFByMsIPBKiqWQSmpaACKaSmVCs77fe0iwseMURuEd63ePzAhxL9oSpEr5i3x/t4/vtQrYuooTt9131bnfUqs8o60V0kEooVoiQmw6WzKC+/EDdE884yJVFolV8RGnk7Cc2yN7HALZv9cwQy4iqLIlL/BfvinE/Flqh/8hiKkCDmsr72zSM7TJ56eIy2sKBlhQrtDcX1Jso9LKC
key fingerprint sha256: 22248782ad83b50c8ba6043c6ad8381fc029c87d771f9a6a2786c4972d05fa2e
Decrypt it & read the pick
Decryption key (released after the match)
e8294a2c1f5dab60197a16b52b4af268bdaec64ee03974c28e383b21c716df70
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("06CdYBD+vYpuxzCwmMU/kYzqsdo+cbFfP0TpycB/VFtrcMUzOivPQjt1ZonFS0gG7GPbP4q6Bm3f0JYRLi/+q2IDMTlBlTiS/+wCbANcm1e9g8HQ00NTs8jN7WtLg0rNqph68hnjHeYdtAFByMsIPBKiqWQSmpaACKaSmVCs77fe0iwseMURuEd63ePzAhxL9oSpEr5i3x/t4/vtQrYuooTt9131bnfUqs8o60V0kEooVoiQmw6WzKC+/EDdE884yJVFolV8RGnk7Cc2yN7HALZv9cwQy4iqLIlL/BfvinE/Flqh/8hiKkCDmsr72zSM7TJ56eIy2sKBlhQrtDcX1Jso9LKC"), c => c.charCodeAt(0));
const key  = Uint8Array.from("e8294a2c1f5dab60197a16b52b4af268bdaec64ee03974c28e383b21c716df70".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): e8294a2c1f5dab60197a16b52b4af268bdaec64ee03974c28e383b21c716df70
  • IV / nonce (hex): d3a09d6010febd8a6ec730b0
  • Ciphertext (hex): 98c53f918ceab1da3e71b15f3f44e9c9c07f545b6b70c5333a2bcf423b756689c54b4806ec63db3f8aba066ddfd096112e2ffeab6203313941953892ffec026c035c9b57bd83c1d0d34353b3c8cded6b4b834acdaa987af219e31de61db40141c8cb083c12a2a964129a968008a6929950acefb7ded22c2c78c511b8477adde3f3021c4bf684a912be62df1fede3fbed42b62ea284edf75df56e77d4aacf28eb4574904a285688909b0e96cca0befc40dd13cf38c89545a2557c4469e4ec2736c8dec700b66ff5cc10cb88aa2c894bfc17ef8a713f165aa1ffc8622a40839acafbdb348ced3279e9e2
  • Auth tag (hex): 32dac28196142bb43717d49b28f4b282

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