Grosseto vs Latina
Serie C Cup · Italy · 09 Sept 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.
NaDSuFW7XeFZJcLNVsoIbcUO54rCvA4R9xhmojzOc+AMGNvSn0jjDWQGHkyUF5pq2/dacaBx0nEDdAxFitHA3eSMN0NJ/cE9USir7zn5FZk81Zu3RoXqiZCx8q6mH3Uy1dbfRYTbrGMN8TUpxUkViBhWvx2gM9M/0QPojOjUZAM9L3wrQ/gbSnmLM72HYpZHLugp08yNFc8EsuxIcKanwoSmIFONSwT44fzlum7V8YsvlEdtBMJRykMoZHnfZvB6oksOxzhSvnTury2JksG4NplX8iEOBOAwgfATuZIYM2l00OVre2HOiW5uw72m+OJLZ9/yHuLeWwnVlKCiv1tR9IC5AKIXrqEZ
fec8bba955a352543935231f03149cba6d5dd49b7ecdd1dcf3af83aaea853df8Decrypt 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("NaDSuFW7XeFZJcLNVsoIbcUO54rCvA4R9xhmojzOc+AMGNvSn0jjDWQGHkyUF5pq2/dacaBx0nEDdAxFitHA3eSMN0NJ/cE9USir7zn5FZk81Zu3RoXqiZCx8q6mH3Uy1dbfRYTbrGMN8TUpxUkViBhWvx2gM9M/0QPojOjUZAM9L3wrQ/gbSnmLM72HYpZHLugp08yNFc8EsuxIcKanwoSmIFONSwT44fzlum7V8YsvlEdtBMJRykMoZHnfZvB6oksOxzhSvnTury2JksG4NplX8iEOBOAwgfATuZIYM2l00OVre2HOiW5uw72m+OJLZ9/yHuLeWwnVlKCiv1tR9IC5AKIXrqEZ"), c => c.charCodeAt(0));
const key = Uint8Array.from("fec8bba955a352543935231f03149cba6d5dd49b7ecdd1dcf3af83aaea853df8".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):
fec8bba955a352543935231f03149cba6d5dd49b7ecdd1dcf3af83aaea853df8 - IV / nonce (hex):
35a0d2b855bb5de15925c2cd - Ciphertext (hex):
56ca086dc50ee78ac2bc0e11f71866a23cce73e00c18dbd29f48e30d64061e4c94179a6adbf75a71a071d27103740c458ad1c0dde48c374349fdc13d5128abef39f915993cd59bb74685ea8990b1f2aea61f7532d5d6df4584dbac630df13529c54915881856bf1da033d33fd103e88ce8d464033d2f7c2b43f81b4a798b33bd876296472ee829d3cc8d15cf04b2ec4870a6a7c284a620538d4b04f8e1fce5ba6ed5f18b2f94476d04c251ca43286479df66f07aa24b0ec73852be74eeaf2d8992c1b8369957f2210e04e03081f013b99218336974d0e56b7b61ce896e6ec3bda6f8e24b67dff21ee2de5b09 - Auth tag (hex):
d594a0a2bf5b51f480b900a217aea119
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 #966191 · 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.