Penybont vs Flint Town United
Premier League · Wales · 28 Aug 2026, 18:45 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.
DOBuq0Z8MISTBXiNt78in7N/8UCfDjgdoCVzVrI1uB829ylmd3P8V3TE7tZMYYJ179gO5Y/p5Br1+GguTys2avJEZPwq5zamjEWhqBXwOtIfpHat19NvZsC7dsl9HVlBpALhmMEeXznZSit+xaC7DDSV7/PfCMbfexicjX1bWhul73Xz6f9+bA0st8UZQREooOjWT1ojO8dDDzaOEVqCswKnYHPghzFOwlJ+voyXhvDcCmvGGAZ8v/ViLLvXrAknQrqDALIkzO0iHlWGEmNJK2DbBd+HaBavoo/q5C8L8aPxVKA76ZM32Ry5fw0EdhbRRHh+iUZZxcdN9UL2YZYJ6xW/LeNsS24bZ0YII0tD
05270c641a799f42604528080d1198a19ba3748cc118e003e02992e52f7ea03dDecrypt 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("DOBuq0Z8MISTBXiNt78in7N/8UCfDjgdoCVzVrI1uB829ylmd3P8V3TE7tZMYYJ179gO5Y/p5Br1+GguTys2avJEZPwq5zamjEWhqBXwOtIfpHat19NvZsC7dsl9HVlBpALhmMEeXznZSit+xaC7DDSV7/PfCMbfexicjX1bWhul73Xz6f9+bA0st8UZQREooOjWT1ojO8dDDzaOEVqCswKnYHPghzFOwlJ+voyXhvDcCmvGGAZ8v/ViLLvXrAknQrqDALIkzO0iHlWGEmNJK2DbBd+HaBavoo/q5C8L8aPxVKA76ZM32Ry5fw0EdhbRRHh+iUZZxcdN9UL2YZYJ6xW/LeNsS24bZ0YII0tD"), c => c.charCodeAt(0));
const key = Uint8Array.from("05270c641a799f42604528080d1198a19ba3748cc118e003e02992e52f7ea03d".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):
05270c641a799f42604528080d1198a19ba3748cc118e003e02992e52f7ea03d - IV / nonce (hex):
0ce06eab467c30849305788d - Ciphertext (hex):
b7bf229fb37ff1409f0e381da0257356b235b81f36f729667773fc5774c4eed64c618275efd80ee58fe9e41af5f8682e4f2b366af24464fc2ae736a68c45a1a815f03ad21fa476add7d36f66c0bb76c97d1d5941a402e198c11e5f39d94a2b7ec5a0bb0c3495eff3df08c6df7b189c8d7d5b5a1ba5ef75f3e9ff7e6c0d2cb7c519411128a0e8d64f5a233bc7430f368e115a82b302a76073e087314ec2527ebe8c9786f0dc0a6bc618067cbff5622cbbd7ac092742ba8300b224cced221e55861263492b60db05df876816afa28feae42f0bf1a3f154a03be99337d91cb97f0d047616d144787e894659c5c74df542f66196 - Auth tag (hex):
09eb15bf2de36c4b6e1b674608234b43
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 #964434 · 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.