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

Viimsi JK vs Elva

Esiliiga A · Estonia · 10 Sept 2026, 16:00 UTC

Final score
5 : 0
Result
Won
Pick
Viimsi JK
Market
1X2
CLV vs fair close
+2.27%
Model prob.
58.6%
Best price
1.91
Min odds
1.74
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)
XmlW1z3fv8MnZUrEngI6rvjtLXLVx7pKbvDqd7Om9XdYo84NvBF7zCZUcKm+i7lKl2U2Eqt+AdnP11/doIG9alBMsoxoWe3XEDW0MpyeD0kyKolDuyaAvDNFweeZxeW8pX5rWULO3m6KorHrn9g10SJwUoF+lNAv/ZGXM0dTSWj2N+HhWiU9900SbqOhxOsbI2CwP5bOG+3HFSUIWAOSXwFML1pJRnt39UbLvH7E8Xo1JpT0tyqItLm0VL3KyofPSkRcjp0PTnzQWN19KjRk8wfd5PEUDLz3LVWWQ7+zjkxs8E2Qdbu/trVX7rpI8VJakqlU11PqVfSgrRLrJZkgrgiHcrfiEuDMKRE=
key fingerprint sha256: f1c37f2a97f5da5c7a122790b5432728ec24b1b3594001fd0d41b796f27c4996
Decrypt it & read the pick
Decryption key (released after the match)
0370167950823b1533cf44d11ead8b2d5d703c8a009897e1b96a7c865bd72fe6
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("XmlW1z3fv8MnZUrEngI6rvjtLXLVx7pKbvDqd7Om9XdYo84NvBF7zCZUcKm+i7lKl2U2Eqt+AdnP11/doIG9alBMsoxoWe3XEDW0MpyeD0kyKolDuyaAvDNFweeZxeW8pX5rWULO3m6KorHrn9g10SJwUoF+lNAv/ZGXM0dTSWj2N+HhWiU9900SbqOhxOsbI2CwP5bOG+3HFSUIWAOSXwFML1pJRnt39UbLvH7E8Xo1JpT0tyqItLm0VL3KyofPSkRcjp0PTnzQWN19KjRk8wfd5PEUDLz3LVWWQ7+zjkxs8E2Qdbu/trVX7rpI8VJakqlU11PqVfSgrRLrJZkgrgiHcrfiEuDMKRE="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0370167950823b1533cf44d11ead8b2d5d703c8a009897e1b96a7c865bd72fe6".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): 0370167950823b1533cf44d11ead8b2d5d703c8a009897e1b96a7c865bd72fe6
  • IV / nonce (hex): 5e6956d73ddfbfc327654ac4
  • Ciphertext (hex): 9e023aaef8ed2d72d5c7ba4a6ef0ea77b3a6f57758a3ce0dbc117bcc265470a9be8bb94a97653612ab7e01d9cfd75fdda081bd6a504cb28c6859edd71035b4329c9e0f49322a8943bb2680bc3345c1e799c5e5bca57e6b5942cede6e8aa2b1eb9fd835d1227052817e94d02ffd91973347534968f637e1e15a253df74d126ea3a1c4eb1b2360b03f96ce1bedc71525085803925f014c2f5a49467b77f546cbbc7ec4f17a352694f4b72a88b4b9b454bdcaca87cf4a445c8e9d0f4e7cd058dd7d2a3464f307dde4f1140cbcf72d559643bfb38e4c6cf04d9075bbbfb6b557eeba48f1525a92a954d753ea55f4a0ad
  • Auth tag (hex): 12eb259920ae088772b7e212e0cc2911

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