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

Algeria W vs Zambia W

Friendly International Women · World · 22 Jul 2026, 17:00 UTC

Final score
1 : 0
Result
Won
Pick
Algeria W
Market
1x2
Model prob.
37.3%
Best price
3.35
Min odds
3.01
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)
khwE4N4u09ggbBpoHAG8KzxU9c+PKeW77+Y/T81X/8wctHXgK81SBx1VQUcYTtpS/HamD4a49yNQgVcO7S0C5N3OCiF1CGyQBYmvYutZtB7sIH6ctC2/zEr1U2dC86K4VRRmsnl3M1bkWNXbdDKKOY90m4QkYy+UIM8Dy5ay5OjyIj0aMEOAgjKUZbNms7fqVzY6av6WlVmBJc599/ipkEBQZxzoiwZI0APPtoHY8+5Ak0quQO+1bSv2Xq3dsROeWaDsO92waFKbG2hIRxJl9c6Np0C+ni8cB1R4Q5bqNLS2P9aoVcOYZMXwIfJ8p3EnjGpdMf0NsO3kb+BaxsmYb0pAJa9XO2o=
key fingerprint sha256: 60cf96aece40a4004be00ccebdb3d758f96f8e96a0247c1e2140728ad4241da1
Decrypt it & read the pick
Decryption key (released after the match)
2086647cc824282aa55995d20d34a9eb1bb3f6b548b315a7b618cb23d69549c6
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("khwE4N4u09ggbBpoHAG8KzxU9c+PKeW77+Y/T81X/8wctHXgK81SBx1VQUcYTtpS/HamD4a49yNQgVcO7S0C5N3OCiF1CGyQBYmvYutZtB7sIH6ctC2/zEr1U2dC86K4VRRmsnl3M1bkWNXbdDKKOY90m4QkYy+UIM8Dy5ay5OjyIj0aMEOAgjKUZbNms7fqVzY6av6WlVmBJc599/ipkEBQZxzoiwZI0APPtoHY8+5Ak0quQO+1bSv2Xq3dsROeWaDsO92waFKbG2hIRxJl9c6Np0C+ni8cB1R4Q5bqNLS2P9aoVcOYZMXwIfJ8p3EnjGpdMf0NsO3kb+BaxsmYb0pAJa9XO2o="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2086647cc824282aa55995d20d34a9eb1bb3f6b548b315a7b618cb23d69549c6".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): 2086647cc824282aa55995d20d34a9eb1bb3f6b548b315a7b618cb23d69549c6
  • IV / nonce (hex): 921c04e0de2ed3d8206c1a68
  • Ciphertext (hex): 1c01bc2b3c54f5cf8f29e5bbefe63f4fcd57ffcc1cb475e02bcd52071d554147184eda52fc76a60f86b8f7235081570eed2d02e4ddce0a2175086c900589af62eb59b41eec207e9cb42dbfcc4af5536742f3a2b8551466b279773356e458d5db74328a398f749b8424632f9420cf03cb96b2e4e8f2223d1a30438082329465b366b3b7ea57363a6afe9695598125ce7df7f8a9904050671ce88b0648d003cfb681d8f3ee40934aae40efb56d2bf65eadddb1139e59a0ec3bddb068529b1b6848471265f5ce8da740be9e2f1c0754784396ea34b4b63fd6a855c39864c5f021f27ca771278c6a5d31fd0db0
  • Auth tag (hex): ede46fe05ac6c9986f4a4025af573b6a

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