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

Fylkir vs Afturelding

Iceland Cup · Iceland · 21 Jul 2026, 19:30 UTC

Final score
1 : 1
Result
Lost
Pick
Afturelding
Market
1x2
Model prob.
26.5%
Best price
6.18
Min odds
4.45
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)
Dp3b17om0i0XC9NmS2/m2FHgnwKEOxQDBSPVpgG2B0j5tt7s/1R/ATbKQvh77ZZoVr2MC1Aezy91FvROMuuFQtkqCTwRpQQW8XfF7mj+tLotRcAcAfM49X922w4UwburqF7N+r0CkGrCDXGnP1B4024gRpQiA5p3OMTdth0ETSXxK0a0mdXWbzM8eYhjzp146g8MOdOTQKhq5hqqa1Jin4wkkCCfzymRlSWC5WwLrDZPLM/ohBkEH4d1IZl9Ad16BQDDfmY+M6HMLbQkcwqDCCz/2RsxwT8OPWzqZ7+rpPsanj8wMhS63t5V3Mu2An3bEka/l0GrK6hZizTUrGgQ4OsV54giDSmuTmQ=
key fingerprint sha256: de119dae09acb0bbbe08391088e38290469fec557a60673b2e5824764bec55a7
Decrypt it & read the pick
Decryption key (released after the match)
3a881a876feba55f53cabee7f8ffe27f77b3d123e4e12cdc791c33a7e5606469
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("Dp3b17om0i0XC9NmS2/m2FHgnwKEOxQDBSPVpgG2B0j5tt7s/1R/ATbKQvh77ZZoVr2MC1Aezy91FvROMuuFQtkqCTwRpQQW8XfF7mj+tLotRcAcAfM49X922w4UwburqF7N+r0CkGrCDXGnP1B4024gRpQiA5p3OMTdth0ETSXxK0a0mdXWbzM8eYhjzp146g8MOdOTQKhq5hqqa1Jin4wkkCCfzymRlSWC5WwLrDZPLM/ohBkEH4d1IZl9Ad16BQDDfmY+M6HMLbQkcwqDCCz/2RsxwT8OPWzqZ7+rpPsanj8wMhS63t5V3Mu2An3bEka/l0GrK6hZizTUrGgQ4OsV54giDSmuTmQ="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3a881a876feba55f53cabee7f8ffe27f77b3d123e4e12cdc791c33a7e5606469".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): 3a881a876feba55f53cabee7f8ffe27f77b3d123e4e12cdc791c33a7e5606469
  • IV / nonce (hex): 0e9ddbd7ba26d22d170bd366
  • Ciphertext (hex): 4b6fe6d851e09f02843b14030523d5a601b60748f9b6deecff547f0136ca42f87bed966856bd8c0b501ecf2f7516f44e32eb8542d92a093c11a50416f177c5ee68feb4ba2d45c01c01f338f57f76db0e14c1bbaba85ecdfabd02906ac20d71a73f5078d36e20469422039a7738c4ddb61d044d25f12b46b499d5d66f333c798863ce9d78ea0f0c39d39340a86ae61aaa6b52629f8c2490209fcf2991952582e56c0bac364f2ccfe88419041f877521997d01dd7a0500c37e663e33a1cc2db424730a83082cffd91b31c13f0e3d6cea67bfaba4fb1a9e3f303214badede55dccbb6027ddb1246bf9741ab2ba8598b
  • Auth tag (hex): 34d4ac6810e0eb15e788220d29ae4e64

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 #958897 · 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.