Sichuan W vs Beijing BG Phoenix W
Super League Women · China · 24 Jun 2026, 11:00 UTC
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.
CRf/BEdAi9p6LljWXCbOpk+e9aSzOdWGKx/pWO91YDP0U1EKHDWNch4N0xbjq6gL3tqmega5Nq5lxAxTq54Tu8SeckrJhjxgsvz0p8v8cWtGOrE8obG9vePA9B/cC6xdzMWsIJbWhHdEaPMo9zITl9LPHDVdulPnTV7wP23f+6KTnkSla/+hvkCOwvmyn5LffGZI9LjNFUoMFLp0i2FeJoCryn4kVSHp5uqjZK/weWDC0M7pE2bVTG0JuVuncbzycTFDXPXFVRZYDls/co4T5mIYcCW9UDn1jIvQxOWtIRVk6UvmbNActrAZzbPLt97vAIQMF/OnUGnxgMhCoKAsPznudBZ+LENzuwTaUfH2LiUr
8d88bf49e7c861f908847b8966c185297749c899b65e09cfc1bd20895c541985Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("CRf/BEdAi9p6LljWXCbOpk+e9aSzOdWGKx/pWO91YDP0U1EKHDWNch4N0xbjq6gL3tqmega5Nq5lxAxTq54Tu8SeckrJhjxgsvz0p8v8cWtGOrE8obG9vePA9B/cC6xdzMWsIJbWhHdEaPMo9zITl9LPHDVdulPnTV7wP23f+6KTnkSla/+hvkCOwvmyn5LffGZI9LjNFUoMFLp0i2FeJoCryn4kVSHp5uqjZK/weWDC0M7pE2bVTG0JuVuncbzycTFDXPXFVRZYDls/co4T5mIYcCW9UDn1jIvQxOWtIRVk6UvmbNActrAZzbPLt97vAIQMF/OnUGnxgMhCoKAsPznudBZ+LENzuwTaUfH2LiUr"), c => c.charCodeAt(0));
const key = Uint8Array.from("8d88bf49e7c861f908847b8966c185297749c899b65e09cfc1bd20895c541985".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):
8d88bf49e7c861f908847b8966c185297749c899b65e09cfc1bd20895c541985 - IV / nonce (hex):
0917ff0447408bda7a2e58d6 - Ciphertext (hex):
5c26cea64f9ef5a4b339d5862b1fe958ef756033f453510a1c358d721e0dd316e3aba80bdedaa67a06b936ae65c40c53ab9e13bbc49e724ac9863c60b2fcf4a7cbfc716b463ab13ca1b1bdbde3c0f41fdc0bac5dccc5ac2096d684774468f328f7321397d2cf1c355dba53e74d5ef03f6ddffba2939e44a56bffa1be408ec2f9b29f92df7c6648f4b8cd154a0c14ba748b615e2680abca7e245521e9e6eaa364aff07960c2d0cee91366d54c6d09b95ba771bcf27131435cf5c55516580e5b3f728e13e662187025bd5039f58c8bd0c4e5ad211564e94be66cd01cb6b019cdb3cbb7deef00840c17f3a75069f180c842a0a02c3f39 - Auth tag (hex):
ee74167e2c4373bb04da51f1f62e252b
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #955024 · 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.