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

Shijiazhuang Gongfu vs Wuxi Wugou

League One · China · 29 Aug 2026, 11:30 UTC

Final score
2 : 0
Result
Lost
Pick
Draw
Market
1X2
CLV vs fair close
+2.48%
Model prob.
34.7%
Best price
3.05
Min odds
2.94
Stake factor
1.00

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)
ucJ3WfH6MoR4qyoTyWPzsUj53jiWJOKHGT8M/T9e0UoXOcvciqYMS4wojdl894VQYSyftTWONtxVq+mV5JHinXEfn9mRcw9cmSWQFQBUoPy5M+RAuiKSUJDtql+ijYbzsio0S7r71ME+iqqZiMi2b/MMA+kuNeH4BHEQiZ5d0XyX7KttO6DVAjvaGL6i+oN5MkGhzMXnMNFbuCb17G+2GpqaAT1ehKbEmKudcHfABRaGQYbTO1OxRB2AS3uqVaTuMdKnbFwZuawDTBT/0LfuqTvwl+dghuYLkgWLW0PF/g+mL0FgkjncKcpc3kmIf9Z8Gz/1vT8niPRD+E6ZFyE2WTbHTXYD3g==
key fingerprint sha256: 9947c756973bf34c89d1c69000743721a343e37e1d4039c156ad1f9a89ad93fd
Decrypt it & read the pick
Decryption key (released after the match)
62068758fc95ce69ce6601e6e19ac4c91d3e93fc90afc73704f8e470c83f5aa6
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("ucJ3WfH6MoR4qyoTyWPzsUj53jiWJOKHGT8M/T9e0UoXOcvciqYMS4wojdl894VQYSyftTWONtxVq+mV5JHinXEfn9mRcw9cmSWQFQBUoPy5M+RAuiKSUJDtql+ijYbzsio0S7r71ME+iqqZiMi2b/MMA+kuNeH4BHEQiZ5d0XyX7KttO6DVAjvaGL6i+oN5MkGhzMXnMNFbuCb17G+2GpqaAT1ehKbEmKudcHfABRaGQYbTO1OxRB2AS3uqVaTuMdKnbFwZuawDTBT/0LfuqTvwl+dghuYLkgWLW0PF/g+mL0FgkjncKcpc3kmIf9Z8Gz/1vT8niPRD+E6ZFyE2WTbHTXYD3g=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("62068758fc95ce69ce6601e6e19ac4c91d3e93fc90afc73704f8e470c83f5aa6".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): 62068758fc95ce69ce6601e6e19ac4c91d3e93fc90afc73704f8e470c83f5aa6
  • IV / nonce (hex): b9c27759f1fa328478ab2a13
  • Ciphertext (hex): c963f3b148f9de389624e287193f0cfd3f5ed14a1739cbdc8aa60c4b8c288dd97cf78550612c9fb5358e36dc55abe995e491e29d711f9fd991730f5c992590150054a0fcb933e440ba22925090edaa5fa28d86f3b22a344bbafbd4c13e8aaa9988c8b66ff30c03e92e35e1f8047110899e5dd17c97ecab6d3ba0d5023bda18bea2fa83793241a1ccc5e730d15bb826f5ec6fb61a9a9a013d5e84a6c498ab9d7077c00516864186d33b53b1441d804b7baa55a4ee31d2a76c5c19b9ac034c14ffd0b7eea93bf097e76086e60b92058b5b43c5fe0fa62f41609239dc29ca5cde49887fd67c1b3ff5bd3f27
  • Auth tag (hex): 88f443f84e991721365936c74d7603de

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