Independiente Rivadavia vs Racing Club
Liga Pro · Argentina · 31 Aug 2026, 00:30 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.
B2ckxGGqY6MZj4R+1sOPyGiBdQ2GA7ci39hzlcOAQPrV3Hde+1BEwyVynPwFVCNiSSRsCz86KMXfAPFWxUo59+ZgPKz0L9IW/KDi9NaBYT2pLZILaDkW6rccB5/UDYiyJ3nsr76V0e+YzRwMevpfWLK1/KjtNsK+ar0F7bzcjAdYx8GzYhh1V8CR/DV/2hCnDxgcPH8BoJ6t4rZJaoM24G45tEAblsnmbtmOYH+nkXflJKZcUNhJwKmU93kEK2cTqsESWdl+aa/1U7twTZJOKlJl7ly4mUjiguyomb+HKrKbVoSZOH5ed4fAipsqPCVsdcplj9jJsqA826QM8gUtRZ0D0FfotXRO400wPeL29p4rDTCisxrBHJp3
e7379b920109e76411189774792fe2471c8e90451f331b3e09ad1a45fa4439c3Decrypt 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("B2ckxGGqY6MZj4R+1sOPyGiBdQ2GA7ci39hzlcOAQPrV3Hde+1BEwyVynPwFVCNiSSRsCz86KMXfAPFWxUo59+ZgPKz0L9IW/KDi9NaBYT2pLZILaDkW6rccB5/UDYiyJ3nsr76V0e+YzRwMevpfWLK1/KjtNsK+ar0F7bzcjAdYx8GzYhh1V8CR/DV/2hCnDxgcPH8BoJ6t4rZJaoM24G45tEAblsnmbtmOYH+nkXflJKZcUNhJwKmU93kEK2cTqsESWdl+aa/1U7twTZJOKlJl7ly4mUjiguyomb+HKrKbVoSZOH5ed4fAipsqPCVsdcplj9jJsqA826QM8gUtRZ0D0FfotXRO400wPeL29p4rDTCisxrBHJp3"), c => c.charCodeAt(0));
const key = Uint8Array.from("e7379b920109e76411189774792fe2471c8e90451f331b3e09ad1a45fa4439c3".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):
e7379b920109e76411189774792fe2471c8e90451f331b3e09ad1a45fa4439c3 - IV / nonce (hex):
076724c461aa63a3198f847e - Ciphertext (hex):
d6c38fc86881750d8603b722dfd87395c38040fad5dc775efb5044c325729cfc0554236249246c0b3f3a28c5df00f156c54a39f7e6603cacf42fd216fca0e2f4d681613da92d920b683916eab71c079fd40d88b22779ecafbe95d1ef98cd1c0c7afa5f58b2b5fca8ed36c2be6abd05edbcdc8c0758c7c1b362187557c091fc357fda10a70f181c3c7f01a09eade2b6496a8336e06e39b4401b96c9e66ed98e607fa79177e524a65c50d849c0a994f779042b6713aac11259d97e69aff553bb704d924e2a5265ee5cb89948e282eca899bf872ab29b568499387e5e7787c08a9b2a3c256c75ca658fd8c9b2a03cdba40cf2052d459d03d057e8b5744ee34d - Auth tag (hex):
303de2f6f69e2b0d30a2b31ac11c9a77
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 #963892 · 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.