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

Norway vs France

World Cup · World · 26 Jun 2026, 19:00 UTC

Final score
1 : 4
Result
Won
Pick
France
Market
1x2
Model prob.
58.5%
Best price
1.96
Min odds
1.83
Stake factor
2.20

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)
IRs4oyizcHlXWdi/w46STdCThZgUZJtsBw34LqJ1lIpkL1xaRm+mFhXR3qcAJ1gnBOsQO34h/0v9zbN9IONbpV2PCvK1l4DwIkcA51WMVcTDpTIZ6rommSTnqh8fKl9/Ge3c2c9vj1YleVntDtCyCs4u1r+/cl56OLBBSpACrT67QHlhKrPpd7HOHEW7lWaZeHD40Hz4w6MIVmQruXwMZxtSMx/9eMA1cWnDuSWltP7taZYDuW7V2uu4z/NV/GJtPs0MPZyGpUyu8tGvql0jjfEYMpabzpbZ4XUMg0FQfh0ivk1mxeOfLV/BiURtV9DYqml/fhlqVOh+/uh/sTC93c5IHU6YH30=
key fingerprint sha256: 0540bfd18cb41f52ffbdbcfac62287b5c3a4d575594265e77195b7cff1a7a831
Decrypt it & read the pick
Decryption key (released after the match)
536254533af0b84890644a767b8b257df6d3f18c4cd77a8a9a18bd5dd171622e
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("IRs4oyizcHlXWdi/w46STdCThZgUZJtsBw34LqJ1lIpkL1xaRm+mFhXR3qcAJ1gnBOsQO34h/0v9zbN9IONbpV2PCvK1l4DwIkcA51WMVcTDpTIZ6rommSTnqh8fKl9/Ge3c2c9vj1YleVntDtCyCs4u1r+/cl56OLBBSpACrT67QHlhKrPpd7HOHEW7lWaZeHD40Hz4w6MIVmQruXwMZxtSMx/9eMA1cWnDuSWltP7taZYDuW7V2uu4z/NV/GJtPs0MPZyGpUyu8tGvql0jjfEYMpabzpbZ4XUMg0FQfh0ivk1mxeOfLV/BiURtV9DYqml/fhlqVOh+/uh/sTC93c5IHU6YH30="), c => c.charCodeAt(0));
const key  = Uint8Array.from("536254533af0b84890644a767b8b257df6d3f18c4cd77a8a9a18bd5dd171622e".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): 536254533af0b84890644a767b8b257df6d3f18c4cd77a8a9a18bd5dd171622e
  • IV / nonce (hex): 211b38a328b370795759d8bf
  • Ciphertext (hex): c38e924dd093859814649b6c070df82ea275948a642f5c5a466fa61615d1dea70027582704eb103b7e21ff4bfdcdb37d20e35ba55d8f0af2b59780f0224700e7558c55c4c3a53219eaba269924e7aa1f1f2a5f7f19eddcd9cf6f8f56257959ed0ed0b20ace2ed6bfbf725e7a38b0414a9002ad3ebb4079612ab3e977b1ce1c45bb9566997870f8d07cf8c3a30856642bb97c0c671b52331ffd78c0357169c3b925a5b4feed699603b96ed5daebb8cff355fc626d3ecd0c3d9c86a54caef2d1afaa5d238df11832969bce96d9e1750c8341507e1d22be4d66c5e39f2d5fc189446d57d0d8aa697f7e196a54
  • Auth tag (hex): e87efee87fb130bdddce481d4e981f7d

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