Herd vs Volda
3. Division - Group 2 · Norway · 31 Jul 2026, 17: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.
Wg0q8+lUlHMxG/BVgiQMNkULLrIVANW5S62FuatGfTY1IqZ3BcgLZTyt8H/j3ka/TOkojNzLi5a0VZfAJZ0F4ktb6bj/SBTRUSDqHFtMAO4lWsdRbPh7IxfVnKpV1pQaZaWryZ0cCD0uHGzNzGRG2By2ePfsJe3Oa7LCZTAIjwp96ZcFYeQOPDTM9t0GTamTu2jJaWw1BCYBYhDMVy2IVKB/pzQJpXqfDFvBoCq65NTM2T3C0eWbQSphmv7za4721uY+2TAIxGH+lalUAuqN72eLeQyI7QsNhAefBorZQS+mPI/EYz6FCmePFVZarKcEr3Crwk9PqxXvJckSE75ST3Ad
32b836a6d0cc30e711e95c9fdb9fdef876d80076288643a635d1634e1b4e01c7Decrypt 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("Wg0q8+lUlHMxG/BVgiQMNkULLrIVANW5S62FuatGfTY1IqZ3BcgLZTyt8H/j3ka/TOkojNzLi5a0VZfAJZ0F4ktb6bj/SBTRUSDqHFtMAO4lWsdRbPh7IxfVnKpV1pQaZaWryZ0cCD0uHGzNzGRG2By2ePfsJe3Oa7LCZTAIjwp96ZcFYeQOPDTM9t0GTamTu2jJaWw1BCYBYhDMVy2IVKB/pzQJpXqfDFvBoCq65NTM2T3C0eWbQSphmv7za4721uY+2TAIxGH+lalUAuqN72eLeQyI7QsNhAefBorZQS+mPI/EYz6FCmePFVZarKcEr3Crwk9PqxXvJckSE75ST3Ad"), c => c.charCodeAt(0));
const key = Uint8Array.from("32b836a6d0cc30e711e95c9fdb9fdef876d80076288643a635d1634e1b4e01c7".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):
32b836a6d0cc30e711e95c9fdb9fdef876d80076288643a635d1634e1b4e01c7 - IV / nonce (hex):
5a0d2af3e9549473311bf055 - Ciphertext (hex):
82240c36450b2eb21500d5b94bad85b9ab467d363522a67705c80b653cadf07fe3de46bf4ce9288cdccb8b96b45597c0259d05e24b5be9b8ff4814d15120ea1c5b4c00ee255ac7516cf87b2317d59caa55d6941a65a5abc99d1c083d2e1c6ccdcc6446d81cb678f7ec25edce6bb2c26530088f0a7de9970561e40e3c34ccf6dd064da993bb68c9696c350426016210cc572d8854a07fa73409a57a9f0c5bc1a02abae4d4ccd93dc2d1e59b412a619afef36b8ef6d6e63ed93008c461fe95a95402ea8def678b790c88ed0b0d84079f068ad9412fa63c8fc4633e850a678f15565aaca704af70 - Auth tag (hex):
abc24f4fab15ef25c91213be524f701d
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 #960296 · 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.