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

Jesenice vs Beltinci

2. SNL · Slovenia · 29 Aug 2026, 15:00 UTC

Final score
3 : 1
Result
Won
Pick
Jesenice
Market
1X2
CLV vs fair close
+13.78%
Model prob.
19.3%
Best price
5.50
Min odds
5.29
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)
M7w2Y7fhgNayI4GdpgX7uyPTqA3rFT5ZKqrx3xdCwJPbYbwt5wTBibUpDl89dnG8C932Kego9PfdEdYtAGwYeZS+vW3ihzYqCXAVcoOC9qwo8e6KL0uvVs5rS8KhoLYmxAvBfI8BwcrY/scThSBoJTRr+VnmuNGHUHwcZfgZUO8b6rZaOh0qMX7nQSOHm9E3HX713DU2c00W+M6NQsEsaLAyNohn78kl4UU9Jw+/O6WsIWtlMu5y6oq2Z9c3gPfjLNIOqZn+nKyKuDbjmBvMarPPntnPyY198HA/08o37/TbyOK19jZ5lm+HFGQ6H6exbzoOflv+Fe7AHXJxFLziCyI1jP2iAA==
key fingerprint sha256: f550ae9793b1db8ffd5b0f2a97076e119b8235b56c08689b8376fb4b13079440
Decrypt it & read the pick
Decryption key (released after the match)
9275731eb5da06249d9368af488f79f7c71204f9bdc288eed8aa3547d5474709
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("M7w2Y7fhgNayI4GdpgX7uyPTqA3rFT5ZKqrx3xdCwJPbYbwt5wTBibUpDl89dnG8C932Kego9PfdEdYtAGwYeZS+vW3ihzYqCXAVcoOC9qwo8e6KL0uvVs5rS8KhoLYmxAvBfI8BwcrY/scThSBoJTRr+VnmuNGHUHwcZfgZUO8b6rZaOh0qMX7nQSOHm9E3HX713DU2c00W+M6NQsEsaLAyNohn78kl4UU9Jw+/O6WsIWtlMu5y6oq2Z9c3gPfjLNIOqZn+nKyKuDbjmBvMarPPntnPyY198HA/08o37/TbyOK19jZ5lm+HFGQ6H6exbzoOflv+Fe7AHXJxFLziCyI1jP2iAA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9275731eb5da06249d9368af488f79f7c71204f9bdc288eed8aa3547d5474709".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): 9275731eb5da06249d9368af488f79f7c71204f9bdc288eed8aa3547d5474709
  • IV / nonce (hex): 33bc3663b7e180d6b223819d
  • Ciphertext (hex): a605fbbb23d3a80deb153e592aaaf1df1742c093db61bc2de704c189b5290e5f3d7671bc0bddf629e828f4f7dd11d62d006c187994bebd6de287362a097015728382f6ac28f1ee8a2f4baf56ce6b4bc2a1a0b626c40bc17c8f01c1cad8fec71385206825346bf959e6b8d187507c1c65f81950ef1beab65a3a1d2a317ee74123879bd1371d7ef5dc3536734d16f8ce8d42c12c68b032368867efc925e1453d270fbf3ba5ac216b6532ee72ea8ab667d73780f7e32cd20ea999fe9cac8ab836e3981bcc6ab3cf9ed9cfc98d7df0703fd3ca37eff4dbc8e2b5f63679966f8714643a1fa7b16f3a0e7e5bfe
  • Auth tag (hex): 15eec01d727114bce20b22358cfda200

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