Frigg vs Kjelsas
Cup · Norway · 22 Aug 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.
V5K9Tcvnh9QFZy48urWjI9NnIVS/boJ+278qKq5Ee5ICDUeGH2B0UfdbsuNL9azg23WT6N3HSz+7iawBB2V8TWrHPVpn+kwRpVQDlTQoqYhqum9746IaFAaa1WriEuluGtETL2ctqgJIsjhvX0Hpf4YYWFSTN6UyE6ceCgDbY3iQFiUCJeTJgjkCUMOSgT6bYxm87lgYM7XJs83r41hApXNOfNn0liVeZ7TGjLptBzIjIXKRM+BurEvGoATu3JR+4Qp4JYPl5aF/R7mhFSy4hgdFhiL2aRRJwkI7Gb9PoIcaVDDDL37yZwT6P0p3tUAd9cBVYrf8x4e4mhsKbDC64jDvsUve
973bc4ece8b33c655da6bbbc98a7fc4fccc70a05a6523bf2f8f2bdbbff4b722bDecrypt 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("V5K9Tcvnh9QFZy48urWjI9NnIVS/boJ+278qKq5Ee5ICDUeGH2B0UfdbsuNL9azg23WT6N3HSz+7iawBB2V8TWrHPVpn+kwRpVQDlTQoqYhqum9746IaFAaa1WriEuluGtETL2ctqgJIsjhvX0Hpf4YYWFSTN6UyE6ceCgDbY3iQFiUCJeTJgjkCUMOSgT6bYxm87lgYM7XJs83r41hApXNOfNn0liVeZ7TGjLptBzIjIXKRM+BurEvGoATu3JR+4Qp4JYPl5aF/R7mhFSy4hgdFhiL2aRRJwkI7Gb9PoIcaVDDDL37yZwT6P0p3tUAd9cBVYrf8x4e4mhsKbDC64jDvsUve"), c => c.charCodeAt(0));
const key = Uint8Array.from("973bc4ece8b33c655da6bbbc98a7fc4fccc70a05a6523bf2f8f2bdbbff4b722b".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):
973bc4ece8b33c655da6bbbc98a7fc4fccc70a05a6523bf2f8f2bdbbff4b722b - IV / nonce (hex):
5792bd4dcbe787d405672e3c - Ciphertext (hex):
bab5a323d3672154bf6e827edbbf2a2aae447b92020d47861f607451f75bb2e34bf5ace0db7593e8ddc74b3fbb89ac0107657c4d6ac73d5a67fa4c11a55403953428a9886aba6f7be3a21a14069ad56ae212e96e1ad1132f672daa0248b2386f5f41e97f861858549337a53213a71e0a00db63789016250225e4c982390250c392813e9b6319bcee581833b5c9b3cdebe35840a5734e7cd9f496255e67b4c68cba6d07322321729133e06eac4bc6a004eedc947ee10a782583e5e5a17f47b9a1152cb88607458622f6691449c2423b19bf4fa0871a5430c32f7ef26704fa3f4a77b5401df5c05562b7 - Auth tag (hex):
fcc787b89a1b0a6c30bae230efb14bde
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 #963573 · 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.