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

Burton Albion vs Cambridge United

League 1 · England · 05 Sept 2026, 14:00 UTC

Final score
2 : 2
Result
Lost
Pick
Cambridge United
Market
1X2
CLV vs fair close
+1.83%
Model prob.
39.1%
Best price
2.75
Min odds
2.61
Stake factor
1.40

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)
7JbuGTi6T8izD2lLUoq7b5fGMM6nZ5UKL0iiQ1hWrhUsAvdlzpMCLzqbtIyvXfey7agffIDjmxMHcLWYHiw3GZFHKlf9yA7XrkEiccgpRS7BlH4evfiB9KFkIJrx3G1Ztu55yURNY04lWTUy1nklPj3EIAldHmDPHgx+BIjv1mvBsv//e0MitO65v53Z0Au20XmX/eGvA6vN9SMINQo1XOQ0ELrFzE8mtKw2y/c7m8wIWHm2iChreKspHlSVahustQg2FO2d/qI6xmqSrn+blnxQs1pKOc/FuDdeVtlCUoUng6PMm76aJtJacr9qxJX7aWXVF90O5TUqTz1ROf2H3jGKHZaQ37WY5Mo7ZYcy8lYSjBdX
key fingerprint sha256: 457dde692c09b7fd8543471e4aa5addb6e80b2f88c0d0c15854283680b8fb78d
Decrypt it & read the pick
Decryption key (released after the match)
d3c731179aed194791dbd01e2d6f06a047e566e3e80043088bf9506d4d870d6c
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("7JbuGTi6T8izD2lLUoq7b5fGMM6nZ5UKL0iiQ1hWrhUsAvdlzpMCLzqbtIyvXfey7agffIDjmxMHcLWYHiw3GZFHKlf9yA7XrkEiccgpRS7BlH4evfiB9KFkIJrx3G1Ztu55yURNY04lWTUy1nklPj3EIAldHmDPHgx+BIjv1mvBsv//e0MitO65v53Z0Au20XmX/eGvA6vN9SMINQo1XOQ0ELrFzE8mtKw2y/c7m8wIWHm2iChreKspHlSVahustQg2FO2d/qI6xmqSrn+blnxQs1pKOc/FuDdeVtlCUoUng6PMm76aJtJacr9qxJX7aWXVF90O5TUqTz1ROf2H3jGKHZaQ37WY5Mo7ZYcy8lYSjBdX"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d3c731179aed194791dbd01e2d6f06a047e566e3e80043088bf9506d4d870d6c".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): d3c731179aed194791dbd01e2d6f06a047e566e3e80043088bf9506d4d870d6c
  • IV / nonce (hex): ec96ee1938ba4fc8b30f694b
  • Ciphertext (hex): 528abb6f97c630cea767950a2f48a2435856ae152c02f765ce93022f3a9bb48caf5df7b2eda81f7c80e39b130770b5981e2c371991472a57fdc80ed7ae412271c829452ec1947e1ebdf881f4a164209af1dc6d59b6ee79c9444d634e25593532d679253e3dc420095d1e60cf1e0c7e0488efd66bc1b2ffff7b4322b4eeb9bf9dd9d00bb6d17997fde1af03abcdf52308350a355ce43410bac5cc4f26b4ac36cbf73b9bcc085879b688286b78ab291e54956a1bacb5083614ed9dfea23ac66a92ae7f9b967c50b35a4a39cfc5b8375e56d94252852783a3cc9bbe9a26d25a72bf6ac495fb6965d517dd0ee5352a4f3d5139fd87de318a1d96
  • Auth tag (hex): 90dfb598e4ca3b658732f256128c1757

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