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

Ogre United vs Tukums

Virsliga · Latvia · 26 Jun 2026, 15:00 UTC

Final score
3 : 2
Result
Won
Pick
Ogre United
Market
1x2
Model prob.
31.4%
Best price
4.02
Min odds
3.65
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)
bTVsO3eaNufcehQ0shDGItsqebNBzggMCnDx75xUt0BbJ7Uz+Tdkj1Vfck37FCq36wBAEP+AwQrdhDqAvDdBBXgq3I7IgiDUc9VM5N5SpWE8oDEw7ltscIzGgbwm4h1y1BevrISdhcEPDh4OlcTjrRAMH8LX0H7L+kvkVX+81a7m4rrBoC9FxdyfUa/QNH+ZKL+Iv9FjVIAMH+zWZBWusau5bAV89kYF/zX13TyJMLGuwi4M5Chx0KxjRp3rUf5Mnpdp8ROH4r0jdaMaHA2NSKmUgc0yZEBxuqeVVOsidet+WGZL0WfeeEIILjoE7xN9Q6Du1MnB+q4eom9Aj4azOPo0awr4vFZ351w=
key fingerprint sha256: 08c1ad3e0dbc8b9fca64d003f992ac5ca3b74e90529cc8bb26ca338ae5039d05
Decrypt it & read the pick
Decryption key (released after the match)
c2619b304fdce81658af5cb37c9496ed415c542e27d92dceb29221027de0fb70
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("bTVsO3eaNufcehQ0shDGItsqebNBzggMCnDx75xUt0BbJ7Uz+Tdkj1Vfck37FCq36wBAEP+AwQrdhDqAvDdBBXgq3I7IgiDUc9VM5N5SpWE8oDEw7ltscIzGgbwm4h1y1BevrISdhcEPDh4OlcTjrRAMH8LX0H7L+kvkVX+81a7m4rrBoC9FxdyfUa/QNH+ZKL+Iv9FjVIAMH+zWZBWusau5bAV89kYF/zX13TyJMLGuwi4M5Chx0KxjRp3rUf5Mnpdp8ROH4r0jdaMaHA2NSKmUgc0yZEBxuqeVVOsidet+WGZL0WfeeEIILjoE7xN9Q6Du1MnB+q4eom9Aj4azOPo0awr4vFZ351w="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c2619b304fdce81658af5cb37c9496ed415c542e27d92dceb29221027de0fb70".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): c2619b304fdce81658af5cb37c9496ed415c542e27d92dceb29221027de0fb70
  • IV / nonce (hex): 6d356c3b779a36e7dc7a1434
  • Ciphertext (hex): b210c622db2a79b341ce080c0a70f1ef9c54b7405b27b533f937648f555f724dfb142ab7eb004010ff80c10add843a80bc374105782adc8ec88220d473d54ce4de52a5613ca03130ee5b6c708cc681bc26e21d72d417afac849d85c10f0e1e0e95c4e3ad100c1fc2d7d07ecbfa4be4557fbcd5aee6e2bac1a02f45c5dc9f51afd0347f9928bf88bfd16354800c1fecd66415aeb1abb96c057cf64605ff35f5dd3c8930b1aec22e0ce42871d0ac63469deb51fe4c9e9769f11387e2bd2375a31a1c0d8d48a99481cd32644071baa79554eb2275eb7e58664bd167de7842082e3a04ef137d43a0eed4c9c1faae1ea2
  • Auth tag (hex): 6f408f86b338fa346b0af8bc5677e75c

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