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

WSG Tirol vs Polissya Zhytomyr

Club Friendlies 3 · World · 10 Jul 2026, 16:00 UTC

Final score
1 : 2
Result
Won
Pick
Polissya Zhytomyr
Market
1x2
Model prob.
44.7%
Best price
2.67
Min odds
2.46
Stake factor
2.60

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)
6az6CHS4siriRKMLYTFEH4PbBukud6jirMm+lzAPcqBFWOXSWlnhhCZIslOU5zUykWiCvhClMyiyhi43lYwbDZsPK/iH8TWbp8hapRINzaMTX/RbWWxMpL238QoB7SX2JM1w+5mYvZXt7XpPECeaUs1AsX/ql5tybApY7xzMORtpk3XqV/6jB7fDdvL7VQqdqUWy8PexVXRUDPXX3qvO38SDuUdpl43FoccYAq1vksgx8vkfT3+EKepyYFf2P6QpGL/6hjz6LgMxtA1HY3nBwGMNuGaKQArfhr0gaw0C8A3SyK29EFRhyL168aCQAkx5Sn07F313TOdVvz7l27mIbi/4ZsITjEXwHoW2t1p2yujQaA==
key fingerprint sha256: f842ebf35710158513995dd411873e0e36b8824e7b8143965a936c3ae6cc930b
Decrypt it & read the pick
Decryption key (released after the match)
558e431959094925adebcf5a554da9a91e83dcfaef557569cc2bb9c8f4a858f8
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("6az6CHS4siriRKMLYTFEH4PbBukud6jirMm+lzAPcqBFWOXSWlnhhCZIslOU5zUykWiCvhClMyiyhi43lYwbDZsPK/iH8TWbp8hapRINzaMTX/RbWWxMpL238QoB7SX2JM1w+5mYvZXt7XpPECeaUs1AsX/ql5tybApY7xzMORtpk3XqV/6jB7fDdvL7VQqdqUWy8PexVXRUDPXX3qvO38SDuUdpl43FoccYAq1vksgx8vkfT3+EKepyYFf2P6QpGL/6hjz6LgMxtA1HY3nBwGMNuGaKQArfhr0gaw0C8A3SyK29EFRhyL168aCQAkx5Sn07F313TOdVvz7l27mIbi/4ZsITjEXwHoW2t1p2yujQaA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("558e431959094925adebcf5a554da9a91e83dcfaef557569cc2bb9c8f4a858f8".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): 558e431959094925adebcf5a554da9a91e83dcfaef557569cc2bb9c8f4a858f8
  • IV / nonce (hex): e9acfa0874b8b22ae244a30b
  • Ciphertext (hex): 6131441f83db06e92e77a8e2acc9be97300f72a04558e5d25a59e1842648b25394e73532916882be10a53328b2862e37958c1b0d9b0f2bf887f1359ba7c85aa5120dcda3135ff45b596c4ca4bdb7f10a01ed25f624cd70fb9998bd95eded7a4f10279a52cd40b17fea979b726c0a58ef1ccc391b699375ea57fea307b7c376f2fb550a9da945b2f0f7b15574540cf5d7deabcedfc483b94769978dc5a1c71802ad6f92c831f2f91f4f7f8429ea726057f63fa42918bffa863cfa2e0331b40d476379c1c0630db8668a400adf86bd206b0d02f00dd2c8adbd105461c8bd7af1a090024c794a7d3b177d774ce755bf3ee5dbb9886e2ff8
  • Auth tag (hex): 66c2138c45f01e85b6b75a76cae8d068

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