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

Al-Anwar vs Al-Tai

Division 1 · Saudi Arabia · 08 Sept 2026, 17:30 UTC

Final score
2 : 0
Result
Won
Pick
Al-Anwar
Market
1X2
CLV vs fair close
+25.11%
Model prob.
48.6%
Best price
2.25
Min odds
2.10
Stake factor
2.50

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)
16nzLyxKZyLWJg7s5XkZ2ZYXLyyelJDFCt7Yrx49ncFu0MegEbCkchrL2AuAyFrQsiTiLBA5d/bHzySFSYi+/TUP1kaEGzENdQg5JLKiSpa9FYQ/ZTsK9v/uf9pzgYumRUly0WuTMnUETuTTj6b/vqAruBe0BlBGA4xgOL3tT2ibY4WEA+9jMeEiVlvb5iWVI7D8UniztJqWl9y9ByeDYv3WyUZaG3LcFvqVvOnIUSjnYUxIs6yt3pIGO6icyUNQKlHTyhxnR2i66UDcd/H0O/vUvOk9eRXNgHklKOgWSqsPa1/rFw7pIuR7XBPajjclCedQDWSmHy3p1aT1yGLZuS0DPSU2iNvcsGtA
key fingerprint sha256: 86cc5f6c4db3841b8bac12ce6f33c7f9f23031d7480201204f094868f7a75e0a
Decrypt it & read the pick
Decryption key (released after the match)
d0b73554b33d8ba74c4ca21d0fb4b8ac3a6b39b99477ae24db4ce5e651efcd76
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("16nzLyxKZyLWJg7s5XkZ2ZYXLyyelJDFCt7Yrx49ncFu0MegEbCkchrL2AuAyFrQsiTiLBA5d/bHzySFSYi+/TUP1kaEGzENdQg5JLKiSpa9FYQ/ZTsK9v/uf9pzgYumRUly0WuTMnUETuTTj6b/vqAruBe0BlBGA4xgOL3tT2ibY4WEA+9jMeEiVlvb5iWVI7D8UniztJqWl9y9ByeDYv3WyUZaG3LcFvqVvOnIUSjnYUxIs6yt3pIGO6icyUNQKlHTyhxnR2i66UDcd/H0O/vUvOk9eRXNgHklKOgWSqsPa1/rFw7pIuR7XBPajjclCedQDWSmHy3p1aT1yGLZuS0DPSU2iNvcsGtA"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d0b73554b33d8ba74c4ca21d0fb4b8ac3a6b39b99477ae24db4ce5e651efcd76".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): d0b73554b33d8ba74c4ca21d0fb4b8ac3a6b39b99477ae24db4ce5e651efcd76
  • IV / nonce (hex): d7a9f32f2c4a6722d6260eec
  • Ciphertext (hex): e57919d996172f2c9e9490c50aded8af1e3d9dc16ed0c7a011b0a4721acbd80b80c85ad0b224e22c103977f6c7cf24854988befd350fd646841b310d75083924b2a24a96bd15843f653b0af6ffee7fda73818ba6454972d16b933275044ee4d38fa6ffbea02bb817b4065046038c6038bded4f689b63858403ef6331e122565bdbe6259523b0fc5278b3b49a9697dcbd07278362fdd6c9465a1b72dc16fa95bce9c85128e7614c48b3acadde92063ba89cc943502a51d3ca1c674768bae940dc77f1f43bfbd4bce93d7915cd80792528e8164aab0f6b5feb170ee922e47b5c13da8e372509e7500d64a61f2de9d5a4
  • Auth tag (hex): f5c862d9b92d033d253688dbdcb06b40

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