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

Changchun Xidu vs Dalian Yingbo B

League Two · China · 12 Jul 2026, 08:00 UTC

Final score
Result
Void
Pick
Draw
Market
1x2
Model prob.
36.6%
Best price
3.30
Min odds
3.07
Stake factor
2.70

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)
7sKDzO2QXMO7r2RpgWWxyMSk/vzK0fd9n9DoguZWgq68lZ4xZai+Un3q5Sc6KeI2ks+qoj4mIt3fMj5p3Nl4V4oH3zRSyGin6amqPggiZTkBKXClAtOWUsVr4wN++tArZn7lLKWxOvVX3ppXBcb7RIk4JusT1V5yGB/9dg2Tgr/RFr42EjAplw0CwCCDvJRio2VG0LfZIKF4oZoevZSl73DCrEzH/fX6sBJ6oW0NR2w1o4qYg8bXfkbNVYI/4Sp2QEH/Ed1EECVwLzt5i8SSMvK3JkDPsHlRWuWIQZ68oz8USNOpqtaU9/9ITWgL1aW7Byx2RatZ9sbBOZM3FzTOG513kg==
key fingerprint sha256: 39e4183d21ed5597b192b7d39a9c7c338123d37a0c94d63a6f3862122185b07b
Decrypt it & read the pick
Decryption key (released after the match)
bcfae17cc59aeec96e255531a87c01c6b7e5fd9451f774e0085c173ac612885d
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("7sKDzO2QXMO7r2RpgWWxyMSk/vzK0fd9n9DoguZWgq68lZ4xZai+Un3q5Sc6KeI2ks+qoj4mIt3fMj5p3Nl4V4oH3zRSyGin6amqPggiZTkBKXClAtOWUsVr4wN++tArZn7lLKWxOvVX3ppXBcb7RIk4JusT1V5yGB/9dg2Tgr/RFr42EjAplw0CwCCDvJRio2VG0LfZIKF4oZoevZSl73DCrEzH/fX6sBJ6oW0NR2w1o4qYg8bXfkbNVYI/4Sp2QEH/Ed1EECVwLzt5i8SSMvK3JkDPsHlRWuWIQZ68oz8USNOpqtaU9/9ITWgL1aW7Byx2RatZ9sbBOZM3FzTOG513kg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("bcfae17cc59aeec96e255531a87c01c6b7e5fd9451f774e0085c173ac612885d".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): bcfae17cc59aeec96e255531a87c01c6b7e5fd9451f774e0085c173ac612885d
  • IV / nonce (hex): eec283cced905cc3bbaf6469
  • Ciphertext (hex): 8165b1c8c4a4fefccad1f77d9fd0e882e65682aebc959e3165a8be527deae5273a29e23692cfaaa23e2622dddf323e69dcd978578a07df3452c868a7e9a9aa3e08226539012970a502d39652c56be3037efad02b667ee52ca5b13af557de9a5705c6fb44893826eb13d55e72181ffd760d9382bfd116be36123029970d02c02083bc9462a36546d0b7d920a178a19a1ebd94a5ef70c2ac4cc7fdf5fab0127aa16d0d476c35a38a9883c6d77e46cd55823fe12a764041ff11dd441025702f3b798bc49232f2b72640cfb079515ae588419ebca33f1448d3a9aad694f7ff484d680bd5a5bb072c76
  • Auth tag (hex): 45ab59f6c6c13993371734ce1b9d7792

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