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

Beitar Jerusalem vs Austria Wien

Europa Conference League · Europe · 06 Aug 2026, 17:30 UTC

Final score
1 : 2
Result
Lost
Pick
Beitar Jerusalem
Market
1x2
Model prob.
48.7%
Best price
2.40
Min odds
2.24
Stake factor
2.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)
Sl53pRO0Y2ukvYPANX7mZbwKMGEYXEyKYzzeUK8MJGATmM14I9NY1OJhxOW5ejvjt9UxFAc9r4+Z1zjmghE3QTkZU8D0deXcwESJGhAb1ovzPe1peeNP652Z7waBE8kTrknH5b+dUqvyAuqzZaICxf5x1jx7oOTby/XjyhMRKZgk/DCOpSlXbwQw4JPSEl69QEfaL3cGn2EqvwBg+vPKb2tnp7Lsi3m8TdGJnTZ/Gl98TmJC8WXWLM15/pWQ1kDIcFWVlmnr1l0sx+dtZgpC2MX+2NUO68slU8X7aHcIKKko1cIX5PlGHbYAPWAnsTjHtsCQ4C/JGTkKWiIARvjja7IC7TVEJ2lZcls9cbHE3w==
key fingerprint sha256: 57600d46daa31fed5c9b0d003a30e6e2a0e16801d562852d0fea749b909c6724
Decrypt it & read the pick
Decryption key (released after the match)
d1ea8eb0ff882caaa00d65b41d301a78d1541aeea23ebd2f029d9f8748dacb83
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("Sl53pRO0Y2ukvYPANX7mZbwKMGEYXEyKYzzeUK8MJGATmM14I9NY1OJhxOW5ejvjt9UxFAc9r4+Z1zjmghE3QTkZU8D0deXcwESJGhAb1ovzPe1peeNP652Z7waBE8kTrknH5b+dUqvyAuqzZaICxf5x1jx7oOTby/XjyhMRKZgk/DCOpSlXbwQw4JPSEl69QEfaL3cGn2EqvwBg+vPKb2tnp7Lsi3m8TdGJnTZ/Gl98TmJC8WXWLM15/pWQ1kDIcFWVlmnr1l0sx+dtZgpC2MX+2NUO68slU8X7aHcIKKko1cIX5PlGHbYAPWAnsTjHtsCQ4C/JGTkKWiIARvjja7IC7TVEJ2lZcls9cbHE3w=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d1ea8eb0ff882caaa00d65b41d301a78d1541aeea23ebd2f029d9f8748dacb83".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): d1ea8eb0ff882caaa00d65b41d301a78d1541aeea23ebd2f029d9f8748dacb83
  • IV / nonce (hex): 4a5e77a513b4636ba4bd83c0
  • Ciphertext (hex): 357ee665bc0a3061185c4c8a633cde50af0c24601398cd7823d358d4e261c4e5b97a3be3b7d53114073daf8f99d738e682113741391953c0f475e5dcc044891a101bd68bf33ded6979e34feb9d99ef068113c913ae49c7e5bf9d52abf202eab365a202c5fe71d63c7ba0e4dbcbf5e3ca1311299824fc308ea529576f0430e093d2125ebd4047da2f77069f612abf0060faf3ca6f6b67a7b2ec8b79bc4dd1899d367f1a5f7c4e6242f165d62ccd79fe9590d640c87055959669ebd65d2cc7e76d660a42d8c5fed8d50eebcb2553c5fb68770828a928d5c217e4f9461db6003d6027b138c7b6c090e02fc919390a5a220046f8e3
  • Auth tag (hex): 6bb202ed3544276959725b3d71b1c4df

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