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

Al-Faisaly vs Al-Hazem

Pro League · Saudi Arabia · 05 Sept 2026, 15:50 UTC

Final score
0 : 0
Result
Lost
Pick
Al-Hazem
Market
1X2
CLV vs fair close
+6.98%
Model prob.
32.4%
Best price
3.25
Min odds
3.15
Stake factor
1.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)
aqE3QL6sqiH8I1kYaW/JmvFGUwa43JUBO5/mhv2cXpxJCHGWasd6Qxf0lO+s9wDAATXkzvuGpaWwP/GxDd6j9YMKb92aDj0jkSXubo1NbLW7+rxQhrz8OjsiW/m5hXIYw1Tce2ReXHqIiDryEYgQHIhOaObIOaa932su88DS8kksJBQ+mL1O3V8RO+7ytLctxuqmYW7xymYx6J4oRNBoyf9UPMRMYaxuKigzZuMehhbFp3E6w2xK0neeNhAIBwql1zbgBagHQn5gCZKhKlHRtg3ljDyvpKHZIiYSjQDBJ1QnaqhbR2Ql8+3Gx/qkx/ET7LrAqzvgaBvaGYGKQX5/C4SCToYlk9DYQYU=
key fingerprint sha256: c2b82f8ecddb2023d5152691d937242e93a64c41dc29c438ab31e2bca0c4695a
Decrypt it & read the pick
Decryption key (released after the match)
cbc70c4a800efe38a58ca61330864d2dfad2b85eb4b9c83d96be05977317d0da
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("aqE3QL6sqiH8I1kYaW/JmvFGUwa43JUBO5/mhv2cXpxJCHGWasd6Qxf0lO+s9wDAATXkzvuGpaWwP/GxDd6j9YMKb92aDj0jkSXubo1NbLW7+rxQhrz8OjsiW/m5hXIYw1Tce2ReXHqIiDryEYgQHIhOaObIOaa932su88DS8kksJBQ+mL1O3V8RO+7ytLctxuqmYW7xymYx6J4oRNBoyf9UPMRMYaxuKigzZuMehhbFp3E6w2xK0neeNhAIBwql1zbgBagHQn5gCZKhKlHRtg3ljDyvpKHZIiYSjQDBJ1QnaqhbR2Ql8+3Gx/qkx/ET7LrAqzvgaBvaGYGKQX5/C4SCToYlk9DYQYU="), c => c.charCodeAt(0));
const key  = Uint8Array.from("cbc70c4a800efe38a58ca61330864d2dfad2b85eb4b9c83d96be05977317d0da".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): cbc70c4a800efe38a58ca61330864d2dfad2b85eb4b9c83d96be05977317d0da
  • IV / nonce (hex): 6aa13740beacaa21fc235918
  • Ciphertext (hex): 696fc99af1465306b8dc95013b9fe686fd9c5e9c490871966ac77a4317f494efacf700c00135e4cefb86a5a5b03ff1b10ddea3f5830a6fdd9a0e3d239125ee6e8d4d6cb5bbfabc5086bcfc3a3b225bf9b9857218c354dc7b645e5c7a88883af21188101c884e68e6c839a6bddf6b2ef3c0d2f2492c24143e98bd4edd5f113beef2b4b72dc6eaa6616ef1ca6631e89e2844d068c9ff543cc44c61ac6e2a283366e31e8616c5a7713ac36c4ad2779e361008070aa5d736e005a807427e600992a12a51d1b60de58c3cafa4a1d92226128d00c12754276aa85b476425f3edc6c7faa4c7f113ecbac0ab3be0681bda19
  • Auth tag (hex): 818a417e7f0b84824e862593d0d84185

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