Veszprem vs Haladas
Cup · Hungary · 22 Aug 2026, 14: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.
oHyeZtTD2jFqJqVfafv+lgElxacDYBLNTYCfv0R6OrAgdtNgam+TuAjax/Kx9/TFQaO9GiwPhQsBg31jJRHwJtW6QUEkNfcmyVXYAbzrY6wl7aASwr6Fg8Bg787UidMbnxl6Y4sELZdJm7HE3Zi4F85rp3Uy2oKvv/ac0A/0POE6AwbtTuw4ycNptR3sg7MNh0dMgkg9mBPi6U4QsEPYp26Jz+Nha+6UNa9xU9E2NS/Dz9ZAQbSsVwJZFAq1FTO2MBgjy+uKAtg52O4VEyRq+tfHKoxkLQZeYBVd73S5Jr0QLCczc7PY4oSk1VkUfPq8UPXs25ERItpbHTvJb/m+XUA7wHTb6YaZUG3S
b2375fd5042a2af870db0dde6ed5d3852fc50a59d2e8e8d340354b6bcb1c5164Decrypt 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("oHyeZtTD2jFqJqVfafv+lgElxacDYBLNTYCfv0R6OrAgdtNgam+TuAjax/Kx9/TFQaO9GiwPhQsBg31jJRHwJtW6QUEkNfcmyVXYAbzrY6wl7aASwr6Fg8Bg787UidMbnxl6Y4sELZdJm7HE3Zi4F85rp3Uy2oKvv/ac0A/0POE6AwbtTuw4ycNptR3sg7MNh0dMgkg9mBPi6U4QsEPYp26Jz+Nha+6UNa9xU9E2NS/Dz9ZAQbSsVwJZFAq1FTO2MBgjy+uKAtg52O4VEyRq+tfHKoxkLQZeYBVd73S5Jr0QLCczc7PY4oSk1VkUfPq8UPXs25ERItpbHTvJb/m+XUA7wHTb6YaZUG3S"), c => c.charCodeAt(0));
const key = Uint8Array.from("b2375fd5042a2af870db0dde6ed5d3852fc50a59d2e8e8d340354b6bcb1c5164".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):
b2375fd5042a2af870db0dde6ed5d3852fc50a59d2e8e8d340354b6bcb1c5164 - IV / nonce (hex):
a07c9e66d4c3da316a26a55f - Ciphertext (hex):
69fbfe960125c5a7036012cd4d809fbf447a3ab02076d3606a6f93b808dac7f2b1f7f4c541a3bd1a2c0f850b01837d632511f026d5ba41412435f726c955d801bceb63ac25eda012c2be8583c060efced489d31b9f197a638b042d97499bb1c4dd98b817ce6ba77532da82afbff69cd00ff43ce13a0306ed4eec38c9c369b51dec83b30d87474c82483d9813e2e94e10b043d8a76e89cfe3616bee9435af7153d136352fc3cfd64041b4ac570259140ab51533b6301823cbeb8a02d839d8ee1513246afad7c72a8c642d065e60155def74b926bd102c273373b3d8e284a4d559147cfabc50f5ecdb911122da5b1d3b - Auth tag (hex):
c96ff9be5d403bc074dbe98699506dd2
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 #963520 · 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.