FSV Mainz 05 vs Holstein Kiel
Club Friendlies 3 · World · 25 Jul 2026, 13: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.
dX7CyjKDXmev0GW3DyQSIakRyjCJkq4g5xPeuHncVYo573IaBOpJQVdcM1BOJmh60WkBsp5EOQkIdM1b2/t8EpXivab8PM5ggM+KEYlBKpJNoFJbgGknnBAjd25v/mfyL6Yn2JI68sPEMfs/+NYkLuAvOUJora5/6DyYbqaclzvfrc2ecIWmljZV7LNyazscr1Yo61CRxdyypTZqtBBslg/+H2Jz0IGih5fdU4sinwWoXfZrVXBMBetycsaicWDwrxoVNBj9VtNvvrQPcxehRp3D8g+QrGzIoW2eLZ2Ecq0f+mQAJhzgakyeNQTw2yshEWMGysDkiZQ7ECDVU7770owA7QtQJrD7YXOB
21be24fecbadba19ecb0649e2fd25a603fbecf9b8c65d3f95367e7f2b54b2665Decrypt 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("dX7CyjKDXmev0GW3DyQSIakRyjCJkq4g5xPeuHncVYo573IaBOpJQVdcM1BOJmh60WkBsp5EOQkIdM1b2/t8EpXivab8PM5ggM+KEYlBKpJNoFJbgGknnBAjd25v/mfyL6Yn2JI68sPEMfs/+NYkLuAvOUJora5/6DyYbqaclzvfrc2ecIWmljZV7LNyazscr1Yo61CRxdyypTZqtBBslg/+H2Jz0IGih5fdU4sinwWoXfZrVXBMBetycsaicWDwrxoVNBj9VtNvvrQPcxehRp3D8g+QrGzIoW2eLZ2Ecq0f+mQAJhzgakyeNQTw2yshEWMGysDkiZQ7ECDVU7770owA7QtQJrD7YXOB"), c => c.charCodeAt(0));
const key = Uint8Array.from("21be24fecbadba19ecb0649e2fd25a603fbecf9b8c65d3f95367e7f2b54b2665".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):
21be24fecbadba19ecb0649e2fd25a603fbecf9b8c65d3f95367e7f2b54b2665 - IV / nonce (hex):
757ec2ca32835e67afd065b7 - Ciphertext (hex):
0f241221a911ca308992ae20e713deb879dc558a39ef721a04ea4941575c33504e26687ad16901b29e4439090874cd5bdbfb7c1295e2bda6fc3cce6080cf8a1189412a924da0525b8069279c1023776e6ffe67f22fa627d8923af2c3c431fb3ff8d6242ee02f394268adae7fe83c986ea69c973bdfadcd9e7085a6963655ecb3726b3b1caf5628eb5091c5dcb2a5366ab4106c960ffe1f6273d081a28797dd538b229f05a85df66b55704c05eb7272c6a27160f0af1a153418fd56d36fbeb40f7317a1469dc3f20f90ac6cc8a16d9e2d9d8472ad1ffa6400261ce06a4c9e3504f0db2b21116306cac0e489943b1020 - Auth tag (hex):
d553befbd28c00ed0b5026b0fb617381
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 #959493 · 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.