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

Guangxi Hengchen vs Jiangxi Dingnan United

League One · China · 26 Jul 2026, 11:30 UTC

Final score
4 : 4
Result
Lost
Pick
Guangxi Hengchen
Market
1x2
Model prob.
70.8%
Best price
1.54
Min odds
1.50
Stake factor
1.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)
KVKPUFfMAP+ObyckcxFsojPJ0RQxuQ1YsaxDVnf++Gh7c/NBQtPImAdNpa3eb1jP8Uvww6iwtsIHxRPjOFjmRSiNvCO/yjH9KoIET89/hRGgK5hujMwSK7zlCqaWobM5VGmVkUrk6cumffAz0yHWd7UB0f9HsinhY71udHzCjSSI34KmAIdoLEw8cNRnxWkt0jth6+l5hh2lC8q0PJwRKiH3EkNxULU0XOqb6tlgMwPuibXj2PPp5B8UVbrMjKr9Oq6Q6QCddFmPMulEzKz4VSj+50EgT4RvB8N2jyIIlqsd7daTWH3iflC53hyuTfy4d7plgQJnPYpaVC02qq8hRRndglouEEhUs1i8YiUPMg==
key fingerprint sha256: 288cabeeee859792426b6786abee53c59bb0a8ff1668907649018fe026c773ca
Decrypt it & read the pick
Decryption key (released after the match)
f01a1094818e06a5e585a3e6516ab11ac573bcbb2d8a074e49ae3ff6b27e6fa0
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("KVKPUFfMAP+ObyckcxFsojPJ0RQxuQ1YsaxDVnf++Gh7c/NBQtPImAdNpa3eb1jP8Uvww6iwtsIHxRPjOFjmRSiNvCO/yjH9KoIET89/hRGgK5hujMwSK7zlCqaWobM5VGmVkUrk6cumffAz0yHWd7UB0f9HsinhY71udHzCjSSI34KmAIdoLEw8cNRnxWkt0jth6+l5hh2lC8q0PJwRKiH3EkNxULU0XOqb6tlgMwPuibXj2PPp5B8UVbrMjKr9Oq6Q6QCddFmPMulEzKz4VSj+50EgT4RvB8N2jyIIlqsd7daTWH3iflC53hyuTfy4d7plgQJnPYpaVC02qq8hRRndglouEEhUs1i8YiUPMg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f01a1094818e06a5e585a3e6516ab11ac573bcbb2d8a074e49ae3ff6b27e6fa0".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): f01a1094818e06a5e585a3e6516ab11ac573bcbb2d8a074e49ae3ff6b27e6fa0
  • IV / nonce (hex): 29528f5057cc00ff8e6f2724
  • Ciphertext (hex): 73116ca233c9d11431b90d58b1ac435677fef8687b73f34142d3c898074da5adde6f58cff14bf0c3a8b0b6c207c513e33858e645288dbc23bfca31fd2a82044fcf7f8511a02b986e8ccc122bbce50aa696a1b339546995914ae4e9cba67df033d321d677b501d1ff47b229e163bd6e747cc28d2488df82a60087682c4c3c70d467c5692dd23b61ebe979861da50bcab43c9c112a21f712437150b5345cea9bead9603303ee89b5e3d8f3e9e41f1455bacc8caafd3aae90e9009d74598f32e944ccacf85528fee741204f846f07c3768f220896ab1dedd693587de27e50b9de1cae4dfcb877ba658102673d8a5a542d36aaaf21
  • Auth tag (hex): 4519dd825a2e104854b358bc62250f32

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