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

Slaný vs Sokol Brozany

Czech Cup · Czech Republic · 01 Aug 2026, 15:00 UTC

Final score
0 : 2
Result
Won
Pick
Sokol Brozany
Market
1x2
Model prob.
51.8%
Best price
2.19
Min odds
2.09
Stake factor
2.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)
bMFNjzCuy5FepNTwu+t5QmWknxNeBriILafgbiLk0I911Joollh6llYhuKVJ1Aw72aYr7dkPzPFf9YfuHr+MXp3OMn6YPpD/3KcwhiGSEJLafYUcu+nX+bk4StYqgYsanNePAVQyJuSnRzz79QHZXVnUgQnpvqsQixyWhcJHaqZyKj2adRadVNAtgJ7SoQgIewud/xe1FUd0BfL23lGUpPwM2AO9v/cSJ+H5aPmhoLE7wOpnlhc2S0li2xMMvC9UD7L6+TXdtAc6Tl7JQ6yBpFqkUGUak9li7dagmKdxjqWO0okRjTaBL4Zr93yPLGO16iwzv1DNvxE0GvbzMUFP/xrJZrtgVPIIGjsw34A=
key fingerprint sha256: 6bb80d3d0b8c9d21bd09fa79be27b2e6b2664db1f22f8411007b46e96c5ec14f
Decrypt it & read the pick
Decryption key (released after the match)
17ebdaf7c47eefdf203b13cda482d19e6b87c1d7da97cf27f17d127f5e9643ea
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("bMFNjzCuy5FepNTwu+t5QmWknxNeBriILafgbiLk0I911Joollh6llYhuKVJ1Aw72aYr7dkPzPFf9YfuHr+MXp3OMn6YPpD/3KcwhiGSEJLafYUcu+nX+bk4StYqgYsanNePAVQyJuSnRzz79QHZXVnUgQnpvqsQixyWhcJHaqZyKj2adRadVNAtgJ7SoQgIewud/xe1FUd0BfL23lGUpPwM2AO9v/cSJ+H5aPmhoLE7wOpnlhc2S0li2xMMvC9UD7L6+TXdtAc6Tl7JQ6yBpFqkUGUak9li7dagmKdxjqWO0okRjTaBL4Zr93yPLGO16iwzv1DNvxE0GvbzMUFP/xrJZrtgVPIIGjsw34A="), c => c.charCodeAt(0));
const key  = Uint8Array.from("17ebdaf7c47eefdf203b13cda482d19e6b87c1d7da97cf27f17d127f5e9643ea".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): 17ebdaf7c47eefdf203b13cda482d19e6b87c1d7da97cf27f17d127f5e9643ea
  • IV / nonce (hex): 6cc14d8f30aecb915ea4d4f0
  • Ciphertext (hex): bbeb794265a49f135e06b8882da7e06e22e4d08f75d49a2896587a965621b8a549d40c3bd9a62bedd90fccf15ff587ee1ebf8c5e9dce327e983e90ffdca7308621921092da7d851cbbe9d7f9b9384ad62a818b1a9cd78f01543226e4a7473cfbf501d95d59d48109e9beab108b1c9685c2476aa6722a3d9a75169d54d02d809ed2a108087b0b9dff17b515477405f2f6de5194a4fc0cd803bdbff71227e1f968f9a1a0b13bc0ea679617364b4962db130cbc2f540fb2faf935ddb4073a4e5ec943ac81a45aa450651a93d962edd6a098a7718ea58ed289118d36812f866bf77c8f2c63b5ea2c33bf50cdbf11341af6f331
  • Auth tag (hex): 414fff1ac966bb6054f2081a3b30df80

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