Al-Rayyan vs Qatar SC
Stars Cup · Qatar · 20 Sept 2026, 17:15 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.
OB6Pn7VqnBV2UZyrAyaJCwnNVIkEOfKjz/aqR9g7IsG9POkZDiyX49JUCwXugeg8rUzVcnuaGv87F2l1H7NObEBzY8W7Vn5H7Jk/MvLzWGLwua0usgJXf08hT/Ff5BWnI4pG0aBlo1liCdDWbZ5aOs5GzlonGsY/WWlWj4x+1z6rb/rKLvs2Sv5QaPXq7nyPcVR4nm32i2T/45MRI+0Y13ncPWobdTGUQW238s2niFv/X1Tv4VoX/sodM4lfep0gxZ3pdEcHGp9WkyEl8OoyYpy102iN2g+LakMQOX6MyjZBFlJLrGIAavHoEpjrUaEF6pADt06MxFIDqT1KmLhEBwLLM8yxd81qlg==
c079e6099c12506e7f23b3e243074d4c9c4f27edf4e030ed1193fa415f9880a1Decrypt 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("OB6Pn7VqnBV2UZyrAyaJCwnNVIkEOfKjz/aqR9g7IsG9POkZDiyX49JUCwXugeg8rUzVcnuaGv87F2l1H7NObEBzY8W7Vn5H7Jk/MvLzWGLwua0usgJXf08hT/Ff5BWnI4pG0aBlo1liCdDWbZ5aOs5GzlonGsY/WWlWj4x+1z6rb/rKLvs2Sv5QaPXq7nyPcVR4nm32i2T/45MRI+0Y13ncPWobdTGUQW238s2niFv/X1Tv4VoX/sodM4lfep0gxZ3pdEcHGp9WkyEl8OoyYpy102iN2g+LakMQOX6MyjZBFlJLrGIAavHoEpjrUaEF6pADt06MxFIDqT1KmLhEBwLLM8yxd81qlg=="), c => c.charCodeAt(0));
const key = Uint8Array.from("c079e6099c12506e7f23b3e243074d4c9c4f27edf4e030ed1193fa415f9880a1".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):
c079e6099c12506e7f23b3e243074d4c9c4f27edf4e030ed1193fa415f9880a1 - IV / nonce (hex):
381e8f9fb56a9c1576519cab - Ciphertext (hex):
0326890b09cd54890439f2a3cff6aa47d83b22c1bd3ce9190e2c97e3d2540b05ee81e83cad4cd5727b9a1aff3b1769751fb34e6c407363c5bb567e47ec993f32f2f35862f0b9ad2eb202577f4f214ff15fe415a7238a46d1a065a3596209d0d66d9e5a3ace46ce5a271ac63f5969568f8c7ed73eab6ffaca2efb364afe5068f5eaee7c8f7154789e6df68b64ffe3931123ed18d779dc3d6a1b753194416db7f2cda7885bff5f54efe15a17feca1d33895f7a9d20c59de97447071a9f56932125f0ea32629cb5d3688dda0f8b6a4310397e8cca364116524bac62006af1e81298eb51a105ea9003b74e8cc45203 - Auth tag (hex):
a93d4a98b8440702cb33ccb177cd6a96
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 #967830 · 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.