Sign in
← All matches
✅ Cryptographically verified · sealed pick #249

Elliði vs Álftanes

4. Deild · Iceland · 01 Jul 2026, 19:15 UTC

Final score
2 : 5
Result
Lost
Pick
Elliði
Market
1x2
Model prob.
23.4%
Best price
5.92
Min odds
5.16
Stake factor
3.00

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.

Encrypted pick (AES-256-GCM)
6gy1QUtpMEpUjkteWpOfcFNKSsIURjlNdhtIV4cj13gzrUaBA4eoznbszmlF1myehvb5mEvYyIsdHiKnj38Les0SLsf3btcFaO+Y7cGv8tDoYAlAM/cjCXVAOzrzvO4ZBjptLW7zdFvoROpkqu0d7fL12nM6vibWHNVtTbOEaAJ6c8C3sEDNqD7xggNevSnYLLN1ANLTeZC/HheLIta/V1Fii+g2KsqtaX+4JFi1nDmSkoTaGEzCa2Huxk8PyxuAKX/2CwWFbIAes1n9mbvteh+82C8qn7ky8GBkKdz1/f/69NpkR0WzDJ6fK6gIN8z/drpb9YttcSOhdgcPwKwfRO3WnjHNuw==
key fingerprint sha256: 3f60afdc3b58bd75d4db7c73fc1e65f7837a16f9222df74d33ab4de169ba855f
Decrypt it & read the pick
Decryption key (released after the match)
c0df8fc3032065ca52ad1dc4792eb574ebbbb30c05a3ac09cc692f1eecbc0c7e
Decrypt 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 F12Console), paste this, press Enter — it decrypts the exact pick shown above:

const blob = Uint8Array.from(atob("6gy1QUtpMEpUjkteWpOfcFNKSsIURjlNdhtIV4cj13gzrUaBA4eoznbszmlF1myehvb5mEvYyIsdHiKnj38Les0SLsf3btcFaO+Y7cGv8tDoYAlAM/cjCXVAOzrzvO4ZBjptLW7zdFvoROpkqu0d7fL12nM6vibWHNVtTbOEaAJ6c8C3sEDNqD7xggNevSnYLLN1ANLTeZC/HheLIta/V1Fii+g2KsqtaX+4JFi1nDmSkoTaGEzCa2Huxk8PyxuAKX/2CwWFbIAes1n9mbvteh+82C8qn7ky8GBkKdz1/f/69NpkR0WzDJ6fK6gIN8z/drpb9YttcSOhdgcPwKwfRO3WnjHNuw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c0df8fc3032065ca52ad1dc4792eb574ebbbb30c05a3ac09cc692f1eecbc0c7e".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): c0df8fc3032065ca52ad1dc4792eb574ebbbb30c05a3ac09cc692f1eecbc0c7e
  • IV / nonce (hex): ea0cb5414b69304a548e4b5e
  • Ciphertext (hex): 5a939f70534a4ac21446394d761b48578723d77833ad46810387a8ce76ecce6945d66c9e86f6f9984bd8c88b1d1e22a78f7f0b7acd122ec7f76ed70568ef98edc1aff2d0e860094033f7230975403b3af3bcee19063a6d2d6ef3745be844ea64aaed1dedf2f5da733abe26d61cd56d4db38468027a73c0b7b040cda83ef182035ebd29d82cb37500d2d37990bf1e178b22d6bf5751628be8362acaad697fb82458b59c39929284da184cc26b61eec64f0fcb1b80297ff60b05856c801eb359fd99bbed7a1fbcd82f2a9fb932f0606429dcf5fdfffaf4da644745b30c9e9f2ba80837ccff76ba5bf58b6d
  • Auth tag (hex): 7123a176070fc0ac1f44edd69e31cdbb

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:

  1. Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
  2. Drop both into opentimestamps.org (or run ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time.
  3. See it independently: block #956196 · 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.