Al-Talaba vs Al Karkh
Stars League · Iraq · 09 Sept 2026, 15:45 UTC
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.
9HzG1jb3F41wjrzoo2T7CR1+9giUdrJa+VTzPuJ54aGnfuI8hVroFAB1MRWiXARFiQ3Bot3tES2MiqRuVGlme/HwmoreIBsi10eLU8Rjy5/Y2o0yXiCXEQtFOkM3quEERxx4rfM7/T+0iKedVhmHOLJJxFbfpJGVzccf4wFCRB5ao7AI/cENFN1S8csjTt6H/eJWxWh7KVITAHR1w7Evi2lxqQkhC6ITx5yadCWuJMP15eqBaAjKUHIztZbDT5J23X6n2p/yyqwiMJnWcJOHCWTBgTBB/l3fljZH1qMSEIiyqzXIlMWpW2+LdQsg4KBEkqNjYXI023tOCx8o4efOCLBQxyRgX53xAQG6
4c3e6d4aedd8f5683e831b796b97f2c25c95966509a758d79e17a88064e038e0Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("9HzG1jb3F41wjrzoo2T7CR1+9giUdrJa+VTzPuJ54aGnfuI8hVroFAB1MRWiXARFiQ3Bot3tES2MiqRuVGlme/HwmoreIBsi10eLU8Rjy5/Y2o0yXiCXEQtFOkM3quEERxx4rfM7/T+0iKedVhmHOLJJxFbfpJGVzccf4wFCRB5ao7AI/cENFN1S8csjTt6H/eJWxWh7KVITAHR1w7Evi2lxqQkhC6ITx5yadCWuJMP15eqBaAjKUHIztZbDT5J23X6n2p/yyqwiMJnWcJOHCWTBgTBB/l3fljZH1qMSEIiyqzXIlMWpW2+LdQsg4KBEkqNjYXI023tOCx8o4efOCLBQxyRgX53xAQG6"), c => c.charCodeAt(0));
const key = Uint8Array.from("4c3e6d4aedd8f5683e831b796b97f2c25c95966509a758d79e17a88064e038e0".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):
4c3e6d4aedd8f5683e831b796b97f2c25c95966509a758d79e17a88064e038e0 - IV / nonce (hex):
f47cc6d636f7178d708ebce8 - Ciphertext (hex):
a364fb091d7ef6089476b25af954f33ee279e1a1a77ee23c855ae81400753115a25c0445890dc1a2dded112d8c8aa46e5469667bf1f09a8ade201b22d7478b53c463cb9fd8da8d325e2097110b453a4337aae104471c78adf33bfd3fb488a79d56198738b249c456dfa49195cdc71fe30142441e5aa3b008fdc10d14dd52f1cb234ede87fde256c5687b295213007475c3b12f8b6971a909210ba213c79c9a7425ae24c3f5e5ea816808ca507233b596c34f9276dd7ea7da9ff2caac223099d67093870964c1813041fe5ddf963647d6a3121088b2ab35c894c5a95b6f8b750b20e0a04492a363617234db7b4e0b1f - Auth tag (hex):
28e1e7ce08b050c724605f9df10101ba
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #966179 · 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.