Gainsborough Trinity vs Halifax Town
Club Friendlies 3 · World · 21 Jul 2026, 18:45 UTC
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.
CimLNAKJpG7kVdealCJqv4qNV026OKComf40s7ASLoUk6Z12RSx+6jbmBo7I6nTcQDgxZ3a72UH4EfnPUco3WP2pTh7ze9qN97geNOyC+n0sUY+QmSDBeAqxTMOEPcoB3BB27pSZCH6q5NVFUMM7osd/3QikmBoe5AcavthYvPcMTyszVdkGxkA9oK1CO8qWuWt6DxgqyDEsMW7yxZ+FEzxaoc2crD5KoPCurXAVdrioZfP/eX69SfqVztLluhojsJ2wQr1N6VoKShZYME+qxDPq/LW3lSvvFDPLwgEH3Ct1YdBT8LJaA+Sz6XmdeeRE/yG7/KkTOJw5dH/yZh2sCj3OKcxDm1tsUGoAOaZF5Rtx
9d4abbd13f9f52d16b54061d71cab364d301ef0a2e8858df61e8aae9b6ccc672Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("CimLNAKJpG7kVdealCJqv4qNV026OKComf40s7ASLoUk6Z12RSx+6jbmBo7I6nTcQDgxZ3a72UH4EfnPUco3WP2pTh7ze9qN97geNOyC+n0sUY+QmSDBeAqxTMOEPcoB3BB27pSZCH6q5NVFUMM7osd/3QikmBoe5AcavthYvPcMTyszVdkGxkA9oK1CO8qWuWt6DxgqyDEsMW7yxZ+FEzxaoc2crD5KoPCurXAVdrioZfP/eX69SfqVztLluhojsJ2wQr1N6VoKShZYME+qxDPq/LW3lSvvFDPLwgEH3Ct1YdBT8LJaA+Sz6XmdeeRE/yG7/KkTOJw5dH/yZh2sCj3OKcxDm1tsUGoAOaZF5Rtx"), c => c.charCodeAt(0));
const key = Uint8Array.from("9d4abbd13f9f52d16b54061d71cab364d301ef0a2e8858df61e8aae9b6ccc672".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):
9d4abbd13f9f52d16b54061d71cab364d301ef0a2e8858df61e8aae9b6ccc672 - IV / nonce (hex):
0a298b340289a46ee455d79a - Ciphertext (hex):
94226abf8a8d574dba38a0a899fe34b3b0122e8524e99d76452c7eea36e6068ec8ea74dc4038316776bbd941f811f9cf51ca3758fda94e1ef37bda8df7b81e34ec82fa7d2c518f909920c1780ab14cc3843dca01dc1076ee9499087eaae4d54550c33ba2c77fdd08a4981a1ee4071abed858bcf70c4f2b3355d906c6403da0ad423bca96b96b7a0f182ac8312c316ef2c59f85133c5aa1cd9cac3e4aa0f0aead701576b8a865f3ff797ebd49fa95ced2e5ba1a23b09db042bd4de95a0a4a1658304faac433eafcb5b7952bef1433cbc20107dc2b7561d053f0b25a03e4b3e9799d79e444ff21bbfca913389c39747ff2661dac0a3d - Auth tag (hex):
ce29cc439b5b6c506a0039a645e51b71
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #958985 · 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.