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

Xi'an Chongde Ronghai vs Guizhou Zhucheng Athletic

League Two · China · 19 Sept 2026, 08:00 UTC

Final score
1 : 0
Result
Lost
Pick
Guizhou Zhucheng Athletic
Market
1X2
CLV vs fair close
+19.59%
Model prob.
40.8%
Best price
2.62
Min odds
2.50
Stake factor
1.40

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)
fkTx+db+MDnVqmzc6P0F3eRRmR7T7K/f/SvzD5dheEsUmgJolSneQBwuSOBWYgUyKqHAxYN976EwZWIocKSn/TIKBq4s1M4UJSdS0y6iyyN/vQDFASyb084rBhQMIFJFqDgUdlr7yeetEnAvJfNEThbzeNL+fSNuwz/jpCm535Xc/uvkWqnl/BMrR4Ic4DWlN0L/PDA4ZJjNESeq7qtPPG/AMfGHcQi1xHVO2PAD7hhLWBTgeJ0R1rRgMCgAN5kmUNqzyZcTKS8+I8cOTA4Cscrhsk1FFrgK+po9hnvoMN2uBCWQxgXhFLqpGLZ2bNUCjRT8muLsKXh22tzcMeN5R87yR+Zz1FHlo9LeB6Lb66lTb9yFXneo/zrjhM0=
key fingerprint sha256: 3655d738aa8205be2f58d7bdbed412a0c6c74a114673b3c2f07c0ad25fbe0808
Decrypt it & read the pick
Decryption key (released after the match)
c8951b2dd6af8baf712de9589a395ce2bc8521d92f861accb2676f03b2fe721c
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("fkTx+db+MDnVqmzc6P0F3eRRmR7T7K/f/SvzD5dheEsUmgJolSneQBwuSOBWYgUyKqHAxYN976EwZWIocKSn/TIKBq4s1M4UJSdS0y6iyyN/vQDFASyb084rBhQMIFJFqDgUdlr7yeetEnAvJfNEThbzeNL+fSNuwz/jpCm535Xc/uvkWqnl/BMrR4Ic4DWlN0L/PDA4ZJjNESeq7qtPPG/AMfGHcQi1xHVO2PAD7hhLWBTgeJ0R1rRgMCgAN5kmUNqzyZcTKS8+I8cOTA4Cscrhsk1FFrgK+po9hnvoMN2uBCWQxgXhFLqpGLZ2bNUCjRT8muLsKXh22tzcMeN5R87yR+Zz1FHlo9LeB6Lb66lTb9yFXneo/zrjhM0="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c8951b2dd6af8baf712de9589a395ce2bc8521d92f861accb2676f03b2fe721c".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): c8951b2dd6af8baf712de9589a395ce2bc8521d92f861accb2676f03b2fe721c
  • IV / nonce (hex): 7e44f1f9d6fe3039d5aa6cdc
  • Ciphertext (hex): e8fd05dde451991ed3ecafdffd2bf30f9761784b149a02689529de401c2e48e0566205322aa1c0c5837defa13065622870a4a7fd320a06ae2cd4ce14252752d32ea2cb237fbd00c5012c9bd3ce2b06140c205245a83814765afbc9e7ad12702f25f3444e16f378d2fe7d236ec33fe3a429b9df95dcfeebe45aa9e5fc132b47821ce035a53742ff3c30386498cd1127aaeeab4f3c6fc031f1877108b5c4754ed8f003ee184b5814e0789d11d6b46030280037992650dab3c99713292f3e23c70e4c0e02b1cae1b24d4516b80afa9a3d867be830ddae042590c605e114baa918b6766cd5028d14fc9ae2ec297876dadcdc31e37947cef247e673d451e5a3d2de07
  • Auth tag (hex): a2dbeba9536fdc855e77a8ff3ae384cd

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