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

Carshalton Athletic vs Brentwood Town

Isthmian Premier League · England · 29 Aug 2026, 14:00 UTC

Final score
2 : 0
Result
Lost
Pick
Brentwood Town
Market
1X2
CLV vs fair close
+5.91%
Model prob.
32.5%
Best price
3.25
Min odds
3.13
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)
ctMoVSuy9KknMzzn+6L0Nj0PiWntoIOPCCx1WLCAxyrCyC6z3lpo2rvopYRpKZ7rbyngTqKZzz6+bqqfov0MBh86bzCkuZSoaUDBWuYL602JKeNeCV2Hh7LdWBcJzE0bUKDABir8qQA1g0FiVZaiWarqtjmstYt9MjQSHsu8Nt1gsboX+ZtSFg2YGS1XQupvfuh51i4ijEaGUaYVstFqepmDrCMOtZyHeFp5uTLdScUAveJ0YtJf6gGZA0zfXtU1lKGIkzEEoWtGjEPmBq/n70myIJ1TMYzTHIwnEMnMxLso2BCvkbi3MVNE1qGQ5ur4+YF9HI57TVSqsccwTvhuXhuP1y0LzBIjId0yFI3QrhY=
key fingerprint sha256: 6b053750d5a764377ee77cbde2c0697c80ec32484e06f4c8b0bd1999168726e1
Decrypt it & read the pick
Decryption key (released after the match)
74e964ce300b22b60d50bd73f9550e8e7d75d8d2857c8da55ea3db00ff4f0b1c
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("ctMoVSuy9KknMzzn+6L0Nj0PiWntoIOPCCx1WLCAxyrCyC6z3lpo2rvopYRpKZ7rbyngTqKZzz6+bqqfov0MBh86bzCkuZSoaUDBWuYL602JKeNeCV2Hh7LdWBcJzE0bUKDABir8qQA1g0FiVZaiWarqtjmstYt9MjQSHsu8Nt1gsboX+ZtSFg2YGS1XQupvfuh51i4ijEaGUaYVstFqepmDrCMOtZyHeFp5uTLdScUAveJ0YtJf6gGZA0zfXtU1lKGIkzEEoWtGjEPmBq/n70myIJ1TMYzTHIwnEMnMxLso2BCvkbi3MVNE1qGQ5ur4+YF9HI57TVSqsccwTvhuXhuP1y0LzBIjId0yFI3QrhY="), c => c.charCodeAt(0));
const key  = Uint8Array.from("74e964ce300b22b60d50bd73f9550e8e7d75d8d2857c8da55ea3db00ff4f0b1c".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): 74e964ce300b22b60d50bd73f9550e8e7d75d8d2857c8da55ea3db00ff4f0b1c
  • IV / nonce (hex): 72d328552bb2f4a927333ce7
  • Ciphertext (hex): fba2f4363d0f8969eda0838f082c7558b080c72ac2c82eb3de5a68dabbe8a58469299eeb6f29e04ea299cf3ebe6eaa9fa2fd0c061f3a6f30a4b994a86940c15ae60beb4d8929e35e095d8787b2dd581709cc4d1b50a0c0062afca900358341625596a259aaeab639acb58b7d3234121ecbbc36dd60b1ba17f99b52160d98192d5742ea6f7ee879d62e228c468651a615b2d16a7a9983ac230eb59c87785a79b932dd49c500bde27462d25fea0199034cdf5ed53594a188933104a16b468c43e606afe7ef49b2209d53318cd31c8c2710c9ccc4bb28d810af91b8b7315344d6a190e6eaf8f9817d1c8e7b4d54aab1c7304ef86e5e
  • Auth tag (hex): 1b8fd72d0bcc122321dd32148dd0ae16

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