Baldoyle United vs Longford Town
FAI Cup · Republic of Ireland · 18 Jul 2026, 16:00 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.
Ib/7ck/UPIeZ+beKGtoV7pCzuaJ8b5iIbPMvf5heAc8C1d+t3vsMWn/9yOj4X3i/4fMMokoac02SU+LMKFCMps8XZgB6bP62uKNJVJ/qR5BaCOZ/gfG0hkCW7+399kvXR2tnf0ZJkqKBolxJyKdJ8Fo0RfNoMFtWEVNFmWRQUQFponLJODVKksbix9tnfDVE0g3dxX+Ltn2mPOJmxALy+lgYIh0rkNVeR4Jc9rcelYlwhtJadzKZcGjnkNGz+anbomV01sTibiC1sDba/yLyhIQyj7CVFHaEkd/snQMYtk3CxhLFmatFnDfUp/eLP8tkqRLQJNJC6Lpy1IFOeVSf95YML3LkEWTAhYNOmmVj
dabbb2f8e4f0d09c7c1498f39e1812ae23cad95f70b7337db14eb41b80b22e9aDecrypt 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("Ib/7ck/UPIeZ+beKGtoV7pCzuaJ8b5iIbPMvf5heAc8C1d+t3vsMWn/9yOj4X3i/4fMMokoac02SU+LMKFCMps8XZgB6bP62uKNJVJ/qR5BaCOZ/gfG0hkCW7+399kvXR2tnf0ZJkqKBolxJyKdJ8Fo0RfNoMFtWEVNFmWRQUQFponLJODVKksbix9tnfDVE0g3dxX+Ltn2mPOJmxALy+lgYIh0rkNVeR4Jc9rcelYlwhtJadzKZcGjnkNGz+anbomV01sTibiC1sDba/yLyhIQyj7CVFHaEkd/snQMYtk3CxhLFmatFnDfUp/eLP8tkqRLQJNJC6Lpy1IFOeVSf95YML3LkEWTAhYNOmmVj"), c => c.charCodeAt(0));
const key = Uint8Array.from("dabbb2f8e4f0d09c7c1498f39e1812ae23cad95f70b7337db14eb41b80b22e9a".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):
dabbb2f8e4f0d09c7c1498f39e1812ae23cad95f70b7337db14eb41b80b22e9a - IV / nonce (hex):
21bffb724fd43c8799f9b78a - Ciphertext (hex):
1ada15ee90b3b9a27c6f98886cf32f7f985e01cf02d5dfaddefb0c5a7ffdc8e8f85f78bfe1f30ca24a1a734d9253e2cc28508ca6cf1766007a6cfeb6b8a349549fea47905a08e67f81f1b4864096efedfdf64bd7476b677f464992a281a25c49c8a749f05a3445f368305b56115345996450510169a272c938354a92c6e2c7db677c3544d20dddc57f8bb67da63ce266c402f2fa5818221d2b90d55e47825cf6b71e95897086d25a7732997068e790d1b3f9a9dba26574d6c4e26e20b5b036daff22f28484328fb09514768491dfec9d0318b64dc2c612c599ab459c37d4a7f78b3fcb64a912d024d242e8ba72d4814e7954 - Auth tag (hex):
9ff7960c2f72e41164c085834e9a6563
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 #958517 · 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.