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

Whitehawk vs Burgess Hill Town

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

Final score
1 : 1
Result
Lost
Pick
Burgess Hill Town
Market
1X2
CLV vs fair close
+14.94%
Model prob.
49.3%
Best price
2.15
Min odds
2.07
Stake factor
1.70

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)
fihwk10chGYCRvPg4X6RqTda8NjtgSN12nGj9XGxEUsQHaqq9ecQs3dz/PcHQG+I1+1UeUI9WKJ746YSRzQ9/g8snwRMD5hPwqmd9zes05zjUVUYpy02B0H4ZHBcZqRxRWq/ckjTQ2Sp38bfSCImj5VY27c2HRdcLuRnLVdNU97mHTgSnxE2QwQRQZUnVUDLRZuqqfs3cD4dityz2wpXH3PkGVm3kUDih0px7MQg/XV2H/Cs9p34OVk9u7Iey5L9AofIRbbRuk0Lcu11zgilyLw1P+T2cq1jVObqL0TTH3hdAFvRji5dFdU11MfTkZLKZwEiWnFIKwzSuiuECyqFN44kP6v0/brVAmB/sueO6gHQ
key fingerprint sha256: cf73b85e836b03df1795f8c6b6a4210a80570a29046b659985ddc69990ab9f59
Decrypt it & read the pick
Decryption key (released after the match)
5f25e8b0bb805bb565dac916b1b82f511e8dcd963c10eef356cc7a39af92ca5a
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("fihwk10chGYCRvPg4X6RqTda8NjtgSN12nGj9XGxEUsQHaqq9ecQs3dz/PcHQG+I1+1UeUI9WKJ746YSRzQ9/g8snwRMD5hPwqmd9zes05zjUVUYpy02B0H4ZHBcZqRxRWq/ckjTQ2Sp38bfSCImj5VY27c2HRdcLuRnLVdNU97mHTgSnxE2QwQRQZUnVUDLRZuqqfs3cD4dityz2wpXH3PkGVm3kUDih0px7MQg/XV2H/Cs9p34OVk9u7Iey5L9AofIRbbRuk0Lcu11zgilyLw1P+T2cq1jVObqL0TTH3hdAFvRji5dFdU11MfTkZLKZwEiWnFIKwzSuiuECyqFN44kP6v0/brVAmB/sueO6gHQ"), c => c.charCodeAt(0));
const key  = Uint8Array.from("5f25e8b0bb805bb565dac916b1b82f511e8dcd963c10eef356cc7a39af92ca5a".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): 5f25e8b0bb805bb565dac916b1b82f511e8dcd963c10eef356cc7a39af92ca5a
  • IV / nonce (hex): 7e2870935d1c84660246f3e0
  • Ciphertext (hex): e17e91a9375af0d8ed812375da71a3f571b1114b101daaaaf5e710b37773fcf707406f88d7ed5479423d58a27be3a61247343dfe0f2c9f044c0f984fc2a99df737acd39ce3515518a72d360741f864705c66a471456abf7248d34364a9dfc6df4822268f9558dbb7361d175c2ee4672d574d53dee61d38129f11364304114195275540cb459baaa9fb37703e1d8adcb3db0a571f73e41959b79140e2874a71ecc420fd75761ff0acf69df839593dbbb21ecb92fd0287c845b6d1ba4d0b72ed75ce08a5c8bc353fe4f672ad6354e6ea2f44d31f785d005bd18e2e5d15d535d4c7d39192ca6701225a71482b0cd2ba2b840b2a85378e
  • Auth tag (hex): 243fabf4fdbad502607fb2e78eea01d0

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