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

Wislanie Skawina vs JKS 1909 Jaroslaw

3rd Liga · Poland · 12 Sept 2026, 17:00 UTC

Final score
3 : 1
Result
Won
Pick
Wislanie Skawina
Market
1X2
CLV vs fair close
-5.91%
Model prob.
52.1%
Best price
2.05
Min odds
1.96
Stake factor
2.20

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)
C9kfhC6oMAgcx8CpXrpk0dZeqAQ0MmXEKhNJTDBjDVboIJDnWgX/JJovnzJToU97Nfve/K9oO4Zyp+F+L9jw1n6NEo08ONem4OcRUv2QvVQ04Djc8xFXU4ZgGD4nv9u3OoO1aXQ5luXgVmfng7aY+rGrDfIdOID0TatqNypY5Bp8NH9jpwuJVUaYLhJ2I3nbYAPZ0KcfNogV2WuswvCQjbJTffKHOyyoGgmBXbf8asjgqry19V/nyNck7lVYOdO7yRmS91jx3omC9jdEmAAEV9DFKuiaj8LASYLe0txhbAFFj6yUxcTCVy39LWRtEAsKd6xIlJojGH1RNXUZRdUdehMhgQT5nwHLmy2w5a25LnTw
key fingerprint sha256: 7f4292d09918446bc58b74b57d0cde0bf637e8501e8719fb266707bd97efd591
Decrypt it & read the pick
Decryption key (released after the match)
306d9f797d04396f24e7ca0d7df072e2d04a1b0406f3025941dd5a957faddfd1
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("C9kfhC6oMAgcx8CpXrpk0dZeqAQ0MmXEKhNJTDBjDVboIJDnWgX/JJovnzJToU97Nfve/K9oO4Zyp+F+L9jw1n6NEo08ONem4OcRUv2QvVQ04Djc8xFXU4ZgGD4nv9u3OoO1aXQ5luXgVmfng7aY+rGrDfIdOID0TatqNypY5Bp8NH9jpwuJVUaYLhJ2I3nbYAPZ0KcfNogV2WuswvCQjbJTffKHOyyoGgmBXbf8asjgqry19V/nyNck7lVYOdO7yRmS91jx3omC9jdEmAAEV9DFKuiaj8LASYLe0txhbAFFj6yUxcTCVy39LWRtEAsKd6xIlJojGH1RNXUZRdUdehMhgQT5nwHLmy2w5a25LnTw"), c => c.charCodeAt(0));
const key  = Uint8Array.from("306d9f797d04396f24e7ca0d7df072e2d04a1b0406f3025941dd5a957faddfd1".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): 306d9f797d04396f24e7ca0d7df072e2d04a1b0406f3025941dd5a957faddfd1
  • IV / nonce (hex): 0bd91f842ea830081cc7c0a9
  • Ciphertext (hex): 5eba64d1d65ea804343265c42a13494c30630d56e82090e75a05ff249a2f9f3253a14f7b35fbdefcaf683b8672a7e17e2fd8f0d67e8d128d3c38d7a6e0e71152fd90bd5434e038dcf31157538660183e27bfdbb73a83b569743996e5e05667e783b698fab1ab0df21d3880f44dab6a372a58e41a7c347f63a70b895546982e12762379db6003d9d0a71f368815d96bacc2f0908db2537df2873b2ca81a09815db7fc6ac8e0aabcb5f55fe7c8d724ee555839d3bbc91992f758f1de8982f6374498000457d0c52ae89a8fc2c04982ded2dc616c01458fac94c5c4c2572dfd2d646d100b0a77ac48949a23187d5135751945d51d7a13
  • Auth tag (hex): 218104f99f01cb9b2db0e5adb92e74f0

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