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

Oxford City vs Buxton

National League North · England · 28 Aug 2026, 18:45 UTC

Final score
2 : 3
Result
Won
Pick
Buxton
Market
1X2
CLV vs fair close
-0.43%
Model prob.
39.7%
Best price
2.80
Min odds
2.57
Stake factor
2.10

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)
GQq/8+S0sfJh+XtMhC+yH58SRZnrMRxmjhKaNkV/p0DwNyBxHHf4v0vob2UCSw423dmpGUjVj0/UVlPV9fkowZPYAOJmc/HJfNnBN8GJPoWXh4YCuUxMpYnh6kkpHwqwJ8Pd8MugPcMa+ONyqFb+laEt/ln0geOC57AK2MC8qeXhzn2Mi/ypqSjUBiBEgu/dmqfKL5pV02O8gtMIsz+Y4zviIaOjpTpYQxSSKHPzI1bj2cQqgN/RlLOmk+StKTXSzrMUoyW45cxlr9VvF8AYvJZEOJeZ3JUeZjBh4CgIKfrOrZ5xvERRpa/Riw1A/hlkX/jU0LmUj4/qsHG4om9dEYQcK6flYMuoEP8=
key fingerprint sha256: 6f20715724d1b34c5c06d2cb8b17ab4c15cd25371b21491eb0b7c4b121d768ed
Decrypt it & read the pick
Decryption key (released after the match)
5adb43545612bc35c2cf0dac4cc52c3c725795beca13ebc6ccb0e3d9619a6e03
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("GQq/8+S0sfJh+XtMhC+yH58SRZnrMRxmjhKaNkV/p0DwNyBxHHf4v0vob2UCSw423dmpGUjVj0/UVlPV9fkowZPYAOJmc/HJfNnBN8GJPoWXh4YCuUxMpYnh6kkpHwqwJ8Pd8MugPcMa+ONyqFb+laEt/ln0geOC57AK2MC8qeXhzn2Mi/ypqSjUBiBEgu/dmqfKL5pV02O8gtMIsz+Y4zviIaOjpTpYQxSSKHPzI1bj2cQqgN/RlLOmk+StKTXSzrMUoyW45cxlr9VvF8AYvJZEOJeZ3JUeZjBh4CgIKfrOrZ5xvERRpa/Riw1A/hlkX/jU0LmUj4/qsHG4om9dEYQcK6flYMuoEP8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("5adb43545612bc35c2cf0dac4cc52c3c725795beca13ebc6ccb0e3d9619a6e03".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): 5adb43545612bc35c2cf0dac4cc52c3c725795beca13ebc6ccb0e3d9619a6e03
  • IV / nonce (hex): 190abff3e4b4b1f261f97b4c
  • Ciphertext (hex): 842fb21f9f124599eb311c668e129a36457fa740f03720711c77f8bf4be86f65024b0e36ddd9a91948d58f4fd45653d5f5f928c193d800e26673f1c97cd9c137c1893e8597878602b94c4ca589e1ea49291f0ab027c3ddf0cba03dc31af8e372a856fe95a12dfe59f481e382e7b00ad8c0bca9e5e1ce7d8c8bfca9a928d406204482efdd9aa7ca2f9a55d363bc82d308b33f98e33be221a3a3a53a584314922873f32356e3d9c42a80dfd194b3a693e4ad2935d2ceb314a325b8e5cc65afd56f17c018bc9644389799dc951e663061e0280829facead9e71bc4451a5afd18b0d40fe19645ff8d4d0b9948f8feab0
  • Auth tag (hex): 71b8a26f5d11841c2ba7e560cba810ff

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