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

Barnet vs Cheltenham Town

League 2 · England · 29 Aug 2026, 11:30 UTC

Final score
2 : 2
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
-5.52%
Model prob.
26.8%
Best price
4.00
Min odds
3.80
Stake factor
1.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)
RHH/rOCA7cEywEifJ2cgws9ahoyg6JYzF4IbZ0rOm69SCegPORufbAvcJXIoCMVXBZppWwx9ZEIF9QXP6qNPuOhFzL9h/tHr5H/7KsmW2gzoR2vdy6RxKeHIhI2s5iF3IKcRCwzC9nnYcryQBm1GgjJFDgvCkInTIljyhzpD6T5JyFiUFS62s4uhCr3csgzQInw9PXDVQtF8NF1i1Ti4fI1DPGi99YADUiBoclWmPqYPvAd1MkVDhdy2fvANt+xues8hlq922CrtJ5tZXLPt95VYDOMO3Zjs/JHw4Wn0OiW3KE3bSg6DpMfV3N5qo7JlzYgwpwmx5SuLNo2wGDeU
key fingerprint sha256: f122089eed9fc4d2616698b603c78b4e602e7b9dad2cfabb2d2692c018a6e181
Decrypt it & read the pick
Decryption key (released after the match)
6642212b13cfccd49fd636f7c7875bb6630888e04bdb5f3c3652c75f6475cef7
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("RHH/rOCA7cEywEifJ2cgws9ahoyg6JYzF4IbZ0rOm69SCegPORufbAvcJXIoCMVXBZppWwx9ZEIF9QXP6qNPuOhFzL9h/tHr5H/7KsmW2gzoR2vdy6RxKeHIhI2s5iF3IKcRCwzC9nnYcryQBm1GgjJFDgvCkInTIljyhzpD6T5JyFiUFS62s4uhCr3csgzQInw9PXDVQtF8NF1i1Ti4fI1DPGi99YADUiBoclWmPqYPvAd1MkVDhdy2fvANt+xues8hlq922CrtJ5tZXLPt95VYDOMO3Zjs/JHw4Wn0OiW3KE3bSg6DpMfV3N5qo7JlzYgwpwmx5SuLNo2wGDeU"), c => c.charCodeAt(0));
const key  = Uint8Array.from("6642212b13cfccd49fd636f7c7875bb6630888e04bdb5f3c3652c75f6475cef7".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): 6642212b13cfccd49fd636f7c7875bb6630888e04bdb5f3c3652c75f6475cef7
  • IV / nonce (hex): 4471fface080edc132c0489f
  • Ciphertext (hex): 276720c2cf5a868ca0e8963317821b674ace9baf5209e80f391b9f6c0bdc25722808c557059a695b0c7d644205f505cfeaa34fb8e845ccbf61fed1ebe47ffb2ac996da0ce8476bddcba47129e1c8848dace6217720a7110b0cc2f679d872bc90066d468232450e0bc29089d32258f2873a43e93e49c85894152eb6b38ba10abddcb20cd0227c3d3d70d542d17c345d62d538b87c8d433c68bdf580035220687255a63ea60fbc077532454385dcb67ef00db7ec6e7acf2196af76d82aed279b595cb3edf795580ce30edd98ecfc91f0e169f43a25b7284ddb4a0e83a4c7d5dcde6aa3b2
  • Auth tag (hex): 65cd8830a709b1e52b8b368db0183794

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