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

Dukla Prague vs Vysocina Jihlava

FNL · Czech Republic · 28 Aug 2026, 16:00 UTC

Final score
3 : 1
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
+2.39%
Model prob.
28.6%
Best price
3.70
Min odds
3.57
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)
Cvyl81I0P1Huqp6UkMIX7WqU15vxngFv7POdmQd0LsT1ykg31h79/lQzYkIK6MCtkqqgRFurg8XRRmfFiSuVU1vrXrICeqc/2UPJOWFASiULZs+9uGfXbRWi2zcEsg46YCmXekmSSGknSpUkHd2rvzlWoTKkY/G5SK2UGNN4Usnye8AoSGCVMrguGN/GAgr5gVuVVaGuEWEnxunfhuNNKCfLmWR9NWn+PLQFObHMPeVRONpiHqkfgdnDzcZwzOzQuQz51oEJjdiDHjdCB+Zdf6WUiNXH0zNpCI0xeya+v8uUDOlGwOf11ms5MyOHewAi23TtPR8GATUvxOLUwH275+reYDY=
key fingerprint sha256: 188a2a0dda2a530ee1e310e1f90cb0206910d9dd55a983c99a20195721cdf8e1
Decrypt it & read the pick
Decryption key (released after the match)
a9fb37011678ff7304244d4ad71efa1d09776d2e8e5f395fa845c235ecd62f4b
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("Cvyl81I0P1Huqp6UkMIX7WqU15vxngFv7POdmQd0LsT1ykg31h79/lQzYkIK6MCtkqqgRFurg8XRRmfFiSuVU1vrXrICeqc/2UPJOWFASiULZs+9uGfXbRWi2zcEsg46YCmXekmSSGknSpUkHd2rvzlWoTKkY/G5SK2UGNN4Usnye8AoSGCVMrguGN/GAgr5gVuVVaGuEWEnxunfhuNNKCfLmWR9NWn+PLQFObHMPeVRONpiHqkfgdnDzcZwzOzQuQz51oEJjdiDHjdCB+Zdf6WUiNXH0zNpCI0xeya+v8uUDOlGwOf11ms5MyOHewAi23TtPR8GATUvxOLUwH275+reYDY="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a9fb37011678ff7304244d4ad71efa1d09776d2e8e5f395fa845c235ecd62f4b".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): a9fb37011678ff7304244d4ad71efa1d09776d2e8e5f395fa845c235ecd62f4b
  • IV / nonce (hex): 0afca5f352343f51eeaa9e94
  • Ciphertext (hex): 90c217ed6a94d79bf19e016fecf39d9907742ec4f5ca4837d61efdfe543362420ae8c0ad92aaa0445bab83c5d14667c5892b95535beb5eb2027aa73fd943c93961404a250b66cfbdb867d76d15a2db3704b20e3a6029977a49924869274a95241dddabbf3956a132a463f1b948ad9418d37852c9f27bc02848609532b82e18dfc6020af9815b9555a1ae116127c6e9df86e34d2827cb99647d3569fe3cb40539b1cc3de55138da621ea91f81d9c3cdc670ccecd0b90cf9d681098dd8831e374207e65d7fa59488d5c7d33369088d317b26bebfcb940ce946c0e7f5d66b393323877b0022db74ed3d
  • Auth tag (hex): 1f0601352fc4e2d4c07dbbe7eade6036

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