Ashford Town vs Cobham FC
Isthmian Division 1 South Central · England · 25 Aug 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.
ArCHMDkjeg72B/B2tNbxLN4he5x7w1o4yNIIwi9hjbvbPgw46kNlF2kXdUF8I5WQHmeoY4U1ZK7XoKEnuClwb/FpE2dzAWi868RfvWhfsraWWYqkm+Fsi6dCCwrhDY25cR5iVgnJGRRY62L/6dNSLq9zNLHmY6LwF3Phb3G7F4Gz+U/rtolQeJkkqrCbjM4R/x0AENJs5PbYJvQjC8BAujj1i6Kl6lvKXDgGoZu4EpW5dXWVHAUA1ocEKViJFZ9nwfs2WF63FvYEtVawYlNsCQ3hMkukNaRc/wFf7j3FG72Uk6Df9VSfhqvJexbbW4ui5lsPAT71F+Cy4mFWZWgRC1uOGXJbVgOXX00B
ce3444710caaa4018e425b58d0af69ef5c59cc1231b2ff876056d61daa82dd2eDecrypt 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("ArCHMDkjeg72B/B2tNbxLN4he5x7w1o4yNIIwi9hjbvbPgw46kNlF2kXdUF8I5WQHmeoY4U1ZK7XoKEnuClwb/FpE2dzAWi868RfvWhfsraWWYqkm+Fsi6dCCwrhDY25cR5iVgnJGRRY62L/6dNSLq9zNLHmY6LwF3Phb3G7F4Gz+U/rtolQeJkkqrCbjM4R/x0AENJs5PbYJvQjC8BAujj1i6Kl6lvKXDgGoZu4EpW5dXWVHAUA1ocEKViJFZ9nwfs2WF63FvYEtVawYlNsCQ3hMkukNaRc/wFf7j3FG72Uk6Df9VSfhqvJexbbW4ui5lsPAT71F+Cy4mFWZWgRC1uOGXJbVgOXX00B"), c => c.charCodeAt(0));
const key = Uint8Array.from("ce3444710caaa4018e425b58d0af69ef5c59cc1231b2ff876056d61daa82dd2e".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):
ce3444710caaa4018e425b58d0af69ef5c59cc1231b2ff876056d61daa82dd2e - IV / nonce (hex):
02b0873039237a0ef607f076 - Ciphertext (hex):
b4d6f12cde217b9c7bc35a38c8d208c22f618dbbdb3e0c38ea436517691775417c2395901e67a863853564aed7a0a127b829706ff1691367730168bcebc45fbd685fb2b696598aa49be16c8ba7420b0ae10d8db9711e625609c9191458eb62ffe9d3522eaf7334b1e663a2f01773e16f71bb1781b3f94febb68950789924aab09b8cce11ff1d0010d26ce4f6d826f4230bc040ba38f58ba2a5ea5bca5c3806a19bb81295b97575951c0500d68704295889159f67c1fb36585eb716f604b556b062536c090de1324ba435a45cff015fee3dc51bbd9493a0dff5549f86abc97b16db5b8ba2e65b0f013ef517e0b2e261 - Auth tag (hex):
566568110b5b8e19725b5603975f4d01
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 #964006 · 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.