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

Shabab Al Ordon vs Al Ramtha SC

Pro League · Jordan · 04 Sept 2026, 15:00 UTC

Final score
1 : 1
Result
Lost
Pick
Al Ramtha SC
Market
1X2
CLV vs fair close
-19.82%
Model prob.
45.9%
Best price
2.30
Min odds
2.22
Stake factor
1.40

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)
43VUN2LfcduQZylauf+begMczpKKjIfJ2rxKskXZwdXlE19yl9PQ3x8fMSN4CdpT4r6/wNGvw9U/VvaX8Ai3zDjrrTExjLsUZgmDm6IkPI4bKiIXymmkJMiwdhmGMvtyBdsKURRS1Dnzc1oI4AOslsTtqZOKoscXVLFlAtA5mmfwloU2lJsQ2/dyr1uc6L0aFePSDeyp7dN+clfSAlTANocYLOhGAJKfaXxwL5W8p9gjJc1h0ao1SHG91O9b+JKFdSsDOJd9L1eA3h01znRhpBQCsTkQyCJWRIFYO0WqGpOVnl9r3t2yFmO9JfR8C14rPPsqgvNXLl7UukFEFfohgjr1coH1+50yDbztHKaq
key fingerprint sha256: a6bb32bf013504e2a331b57787306179333a2d48dc25288d5959741f2c7e7337
Decrypt it & read the pick
Decryption key (released after the match)
8bb7c7cf139c28843f9078bd78ff2c0598f7258237bef96a383c39e904661e92
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("43VUN2LfcduQZylauf+begMczpKKjIfJ2rxKskXZwdXlE19yl9PQ3x8fMSN4CdpT4r6/wNGvw9U/VvaX8Ai3zDjrrTExjLsUZgmDm6IkPI4bKiIXymmkJMiwdhmGMvtyBdsKURRS1Dnzc1oI4AOslsTtqZOKoscXVLFlAtA5mmfwloU2lJsQ2/dyr1uc6L0aFePSDeyp7dN+clfSAlTANocYLOhGAJKfaXxwL5W8p9gjJc1h0ao1SHG91O9b+JKFdSsDOJd9L1eA3h01znRhpBQCsTkQyCJWRIFYO0WqGpOVnl9r3t2yFmO9JfR8C14rPPsqgvNXLl7UukFEFfohgjr1coH1+50yDbztHKaq"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8bb7c7cf139c28843f9078bd78ff2c0598f7258237bef96a383c39e904661e92".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): 8bb7c7cf139c28843f9078bd78ff2c0598f7258237bef96a383c39e904661e92
  • IV / nonce (hex): e375543762df71db9067295a
  • Ciphertext (hex): b9ff9b7a031cce928a8c87c9dabc4ab245d9c1d5e5135f7297d3d0df1f1f31237809da53e2bebfc0d1afc3d53f56f697f008b7cc38ebad31318cbb146609839ba2243c8e1b2a2217ca69a424c8b076198632fb7205db0a511452d439f3735a08e003ac96c4eda9938aa2c71754b16502d0399a67f0968536949b10dbf772af5b9ce8bd1a15e3d20deca9edd37e7257d20254c03687182ce84600929f697c702f95bca7d82325cd61d1aa354871bdd4ef5bf89285752b0338977d2f5780de1d35ce7461a41402b13910c822564481583b45aa1a93959e5f6bdeddb21663bd25f47c0b5e2b3cfb2a82f3572e5ed4ba414415fa
  • Auth tag (hex): 21823af57281f5fb9d320dbced1ca6aa

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