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

JS El Biar vs JS Saoura

Ligue 1 · Algeria · 18 Sept 2026, 15:00 UTC

Final score
4 : 0
Result
Won
Pick
JS El Biar
Market
1X2
CLV vs fair close
+24.19%
Model prob.
30.9%
Best price
3.50
Min odds
3.30
Stake factor
1.10

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)
oGQiqFUutpOC7eTuEeIfJBxr2bebeosXWufzpgOtAOC3G8Roi7nxncdyWTugNwTEitFkZuGKt6jU3cBQVoPnm53FOqGdbHzQPSdAMNK7+BsQYkzZ/H2vJZeR/6rgQ2MZqc1XrV/Ry58moUFzkOD8X4TbILo66Mhg9Odfqp4CXt1WIyqU38/0g0QnUfPWuVmcjM/FYzafb8eBuTzlPFzt+yJrFYl7fQ8HCbGLrcydgjAyOEsDEnoCun6XbKlARYCXjo0HRI7dUdUNl4qn9Quibb9WckBDf2ofUn9y1xp/dI4KWunaxCPVdXgx1Gd3mMzicY4I7Nc24j96B/Ut2q67mVYJQc1p/J+TTele
key fingerprint sha256: c39e5153ac4c66a95417f21d6b36b783eded3a94fe35fd118af62b344f95f1d0
Decrypt it & read the pick
Decryption key (released after the match)
156a3a3b1c96c592c902a6478a9ae28e1a31fef59d53472e5db45d62237b8754
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("oGQiqFUutpOC7eTuEeIfJBxr2bebeosXWufzpgOtAOC3G8Roi7nxncdyWTugNwTEitFkZuGKt6jU3cBQVoPnm53FOqGdbHzQPSdAMNK7+BsQYkzZ/H2vJZeR/6rgQ2MZqc1XrV/Ry58moUFzkOD8X4TbILo66Mhg9Odfqp4CXt1WIyqU38/0g0QnUfPWuVmcjM/FYzafb8eBuTzlPFzt+yJrFYl7fQ8HCbGLrcydgjAyOEsDEnoCun6XbKlARYCXjo0HRI7dUdUNl4qn9Quibb9WckBDf2ofUn9y1xp/dI4KWunaxCPVdXgx1Gd3mMzicY4I7Nc24j96B/Ut2q67mVYJQc1p/J+TTele"), c => c.charCodeAt(0));
const key  = Uint8Array.from("156a3a3b1c96c592c902a6478a9ae28e1a31fef59d53472e5db45d62237b8754".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): 156a3a3b1c96c592c902a6478a9ae28e1a31fef59d53472e5db45d62237b8754
  • IV / nonce (hex): a06422a8552eb69382ede4ee
  • Ciphertext (hex): 11e21f241c6bd9b79b7a8b175ae7f3a603ad00e0b71bc4688bb9f19dc772593ba03704c48ad16466e18ab7a8d4ddc0505683e79b9dc53aa19d6c7cd03d274030d2bbf81b10624cd9fc7daf259791ffaae0436319a9cd57ad5fd1cb9f26a1417390e0fc5f84db20ba3ae8c860f4e75faa9e025edd56232a94dfcff483442751f3d6b9599c8ccfc563369f6fc781b93ce53c5cedfb226b15897b7d0f0709b18badcc9d823032384b03127a02ba7e976ca9404580978e8d07448edd51d50d978aa7f50ba26dbf567240437f6a1f527f72d71a7f748e0a5ae9dac423d5757831d4677798cce2718e08ecd736e23f7a07f5
  • Auth tag (hex): 2ddaaebb99560941cd69fc9f934de95e

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