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

Ismaily vs Al Nasr Cairo

2nd Division A · Egypt · 04 Sept 2026, 13:30 UTC

Final score
1 : 1
Result
Lost
Pick
Ismaily
Market
1X2
CLV vs fair close
-16.70%
Model prob.
40.2%
Best price
3.10
Min odds
2.54
Stake factor
3.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)
4rwaXbXhrXXD6hkjN7wOVAgoCXKBCufaffWKdHhgR42z0BzTIJRXQxn6rTm3x6umeAM1vdJGx32RSNhO+0SSZ0kwiVmbJVBg9yL95zXccQR8yp6zeAW63RX5H2XYwpO/S4Xw64l71FaHkfJus8I39WEgpJdEg94NfNTsXBGVUAT1tBLDcQdix2U1TH14o7JRmMOUiQIF+S2ppbd0yue9jesj2V49hZcDses1PnnHTINVGUx++ePbMAiV2NzRGa3IKhuMYZqtIPDq9z5KWY2oY8y0GQYGXUFqipK8P8DBvBVgjoK20zRWGXpgd1ZERpEmL4y1lmPjex6e2NmEmRD9pq/PYngupzfS
key fingerprint sha256: 2780589fdd4cce3f9ffad0c219568dd75b6d3d927074d4004c21b65190c55ee1
Decrypt it & read the pick
Decryption key (released after the match)
3580919e70834cabec0d1629034d410110bc9c73f67b5bcc7151b60449efc409
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("4rwaXbXhrXXD6hkjN7wOVAgoCXKBCufaffWKdHhgR42z0BzTIJRXQxn6rTm3x6umeAM1vdJGx32RSNhO+0SSZ0kwiVmbJVBg9yL95zXccQR8yp6zeAW63RX5H2XYwpO/S4Xw64l71FaHkfJus8I39WEgpJdEg94NfNTsXBGVUAT1tBLDcQdix2U1TH14o7JRmMOUiQIF+S2ppbd0yue9jesj2V49hZcDses1PnnHTINVGUx++ePbMAiV2NzRGa3IKhuMYZqtIPDq9z5KWY2oY8y0GQYGXUFqipK8P8DBvBVgjoK20zRWGXpgd1ZERpEmL4y1lmPjex6e2NmEmRD9pq/PYngupzfS"), c => c.charCodeAt(0));
const key  = Uint8Array.from("3580919e70834cabec0d1629034d410110bc9c73f67b5bcc7151b60449efc409".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): 3580919e70834cabec0d1629034d410110bc9c73f67b5bcc7151b60449efc409
  • IV / nonce (hex): e2bc1a5db5e1ad75c3ea1923
  • Ciphertext (hex): 37bc0e5408280972810ae7da7df58a747860478db3d01cd32094574319faad39b7c7aba6780335bdd246c77d9148d84efb449267493089599b255060f722fde735dc71047cca9eb37805badd15f91f65d8c293bf4b85f0eb897bd4568791f26eb3c237f56120a4974483de0d7cd4ec5c11955004f5b412c3710762c765354c7d78a3b25198c394890205f92da9a5b774cae7bd8deb23d95e3d859703b1eb353e79c74c8355194c7ef9e3db300895d8dcd119adc82a1b8c619aad20f0eaf73e4a598da863ccb41906065d416a8a92bc3fc0c1bc15608e82b6d33456197a607756444691262f8cb59663e37b1e
  • Auth tag (hex): 9ed8d9849910fda6afcf62782ea737d2

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