Antigua and Barbuda U20 vs Guatemala U20
Concacaf Championship U20 · North & Central America · 27 Jul 2026, 23: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.
Csh6oOC9HFAlSnte/XHfa6WySdHasJRxvSRIb45FbIe/aljjSXhjQ0JExTOFHyhBcT+ciQ0vZ6Bq87cDDhYhRNxLaqcveDcFuSwIEx6AnQPJSVbk+thm+/Wio01QGpZnoFl7241cDibm/GcwvClfd3MGqacJ42hNSuGIELkslLLLc8uuX8isT79F1tgTP8t8P7vdfQclxI4i3SwjC3lI8+Y14LBBQCoUPW8kN9P6KiJ7Cn0BMQ66uaxrE8FtckN2rnfXNsyk5yIaGiZS2sjbTRg9jbuPFp6iQFF4h2FxQwcLWEg4V6Bo1kbRYQ3oA7jX0yo0iCXp7qw/KfMOBu/T575vy7VluRgbgQnh
67ad632cab98453ef9a373a1c9de8c97c62cfdb17616c7e7a5516457dd980fb2Decrypt 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("Csh6oOC9HFAlSnte/XHfa6WySdHasJRxvSRIb45FbIe/aljjSXhjQ0JExTOFHyhBcT+ciQ0vZ6Bq87cDDhYhRNxLaqcveDcFuSwIEx6AnQPJSVbk+thm+/Wio01QGpZnoFl7241cDibm/GcwvClfd3MGqacJ42hNSuGIELkslLLLc8uuX8isT79F1tgTP8t8P7vdfQclxI4i3SwjC3lI8+Y14LBBQCoUPW8kN9P6KiJ7Cn0BMQ66uaxrE8FtckN2rnfXNsyk5yIaGiZS2sjbTRg9jbuPFp6iQFF4h2FxQwcLWEg4V6Bo1kbRYQ3oA7jX0yo0iCXp7qw/KfMOBu/T575vy7VluRgbgQnh"), c => c.charCodeAt(0));
const key = Uint8Array.from("67ad632cab98453ef9a373a1c9de8c97c62cfdb17616c7e7a5516457dd980fb2".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):
67ad632cab98453ef9a373a1c9de8c97c62cfdb17616c7e7a5516457dd980fb2 - IV / nonce (hex):
0ac87aa0e0bd1c50254a7b5e - Ciphertext (hex):
fd71df6ba5b249d1dab09471bd24486f8e456c87bf6a58e3497863434244c533851f2841713f9c890d2f67a06af3b7030e162144dc4b6aa72f783705b92c08131e809d03c94956e4fad866fbf5a2a34d501a9667a0597bdb8d5c0e26e6fc6730bc295f777306a9a709e3684d4ae18810b92c94b2cb73cbae5fc8ac4fbf45d6d8133fcb7c3fbbdd7d0725c48e22dd2c230b7948f3e635e0b041402a143d6f2437d3fa2a227b0a7d01310ebab9ac6b13c16d724376ae77d736cca4e7221a1a2652dac8db4d183d8dbb8f169ea240517887617143070b58483857a068d646d1610de803b8d7d32a348825e9eeac3f29f3 - Auth tag (hex):
0e06efd3e7be6fcbb565b9181b8109e1
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 #959832 · 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.