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

Azam vs Dodoma Jiji

Ligi kuu Bara · Tanzania · 30 Jun 2026, 13:00 UTC

Final score
2 : 0
Result
Won
Pick
Azam
Market
1x2
Model prob.
76.0%
Best price
1.46
Min odds
1.39
Stake factor
1.90

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)
ki5iB1hlmfMKnCniqty1MlZezkekzTw1uSp4j3nLdXjCudpH5zI8Ost6bItlO7mylLIGk5LljI3qUP6U+OMUTr6XI/59GeNnLg4B1xL+0OAIa7+eR7y63B4s+YFIBeGCJeLq9yZb3TaJHH7jakVZPtFamcKA1YJDWT7WNuVPpbfyyCq99PCChdHpUcty5rpeArENfgJNskdQTT63cLabLjMXnTH9g0jYAk4PkdFThvWCeKhdHBDqd72xOTmR4SGnv8iIu2U2oo7MqS0EwbM48NfUT3lBz0gL9dDukt1QTbBrRoMsxfNJ/9OOX/9b9h3Qm6YORZstLnMbqrnZXGxkzu+gpAGk
key fingerprint sha256: 01d0e511c20042e3e2b2aaaa8b366f8fea8cc111daa78e488a54cd43c56e553f
Decrypt it & read the pick
Decryption key (released after the match)
bba3ed758c7993208b7fce1cd5c90d2e1d90cf4d5990a9c1c5ee251f036ecc3a
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("ki5iB1hlmfMKnCniqty1MlZezkekzTw1uSp4j3nLdXjCudpH5zI8Ost6bItlO7mylLIGk5LljI3qUP6U+OMUTr6XI/59GeNnLg4B1xL+0OAIa7+eR7y63B4s+YFIBeGCJeLq9yZb3TaJHH7jakVZPtFamcKA1YJDWT7WNuVPpbfyyCq99PCChdHpUcty5rpeArENfgJNskdQTT63cLabLjMXnTH9g0jYAk4PkdFThvWCeKhdHBDqd72xOTmR4SGnv8iIu2U2oo7MqS0EwbM48NfUT3lBz0gL9dDukt1QTbBrRoMsxfNJ/9OOX/9b9h3Qm6YORZstLnMbqrnZXGxkzu+gpAGk"), c => c.charCodeAt(0));
const key  = Uint8Array.from("bba3ed758c7993208b7fce1cd5c90d2e1d90cf4d5990a9c1c5ee251f036ecc3a".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): bba3ed758c7993208b7fce1cd5c90d2e1d90cf4d5990a9c1c5ee251f036ecc3a
  • IV / nonce (hex): 922e6207586599f30a9c29e2
  • Ciphertext (hex): aadcb532565ece47a4cd3c35b92a788f79cb7578c2b9da47e7323c3acb7a6c8b653bb9b294b2069392e58c8dea50fe94f8e3144ebe9723fe7d19e3672e0e01d712fed0e0086bbf9e47bcbadc1e2cf9814805e18225e2eaf7265bdd36891c7ee36a45593ed15a99c280d58243593ed636e54fa5b7f2c82abdf4f08285d1e951cb72e6ba5e02b10d7e024db247504d3eb770b69b2e33179d31fd8348d8024e0f91d15386f58278a85d1c10ea77bdb1393991e121a7bfc888bb6536a28ecca92d04c1b338f0d7d44f7941cf480bf5d0ee92dd504db06b46832cc5f349ffd38e5fff5bf61dd09ba60e459b
  • Auth tag (hex): 2d2e731baab9d95c6c64ceefa0a401a4

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