HJK W vs KuPS W
Kansallinen Liiga Women · Finland · 04 Jul 2026, 14: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.
8f5v/JG8xK7h03GCl3Da0dKHPX3nb4kcf2T0v/jrT67PPrP3SszhRJcWv6RKL/hTypD+0E0U4ANPPo9h89Fe9+ltejZ/0iSh8UKCeGk/mu8SLUg1iiPbSkx1RjaX9jXrdH046FQFFnf3bmhXUIE0LujwbCLWyWgkOU66mxCXjmO/iak9s9jjS4cMW3Ef2lA/qaWb8WiYp/yIax/oySxc4xT9L2iElE9sU9cCOYyopJWeGhAaoFEmvSD//P2izzWNduMqyrPhGZuu4DPvZfnSddT5VKnCSG5UQmNmtIMzsPE4SPjQzrA4jtL2mRZnjsoSd80zQHL7WGVQ70XdZu2hmm58AFgC
b831b8ef27c323f454610c5db8205232e521bd6d2ec11cf274ceb3e3c4b420a9Decrypt 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("8f5v/JG8xK7h03GCl3Da0dKHPX3nb4kcf2T0v/jrT67PPrP3SszhRJcWv6RKL/hTypD+0E0U4ANPPo9h89Fe9+ltejZ/0iSh8UKCeGk/mu8SLUg1iiPbSkx1RjaX9jXrdH046FQFFnf3bmhXUIE0LujwbCLWyWgkOU66mxCXjmO/iak9s9jjS4cMW3Ef2lA/qaWb8WiYp/yIax/oySxc4xT9L2iElE9sU9cCOYyopJWeGhAaoFEmvSD//P2izzWNduMqyrPhGZuu4DPvZfnSddT5VKnCSG5UQmNmtIMzsPE4SPjQzrA4jtL2mRZnjsoSd80zQHL7WGVQ70XdZu2hmm58AFgC"), c => c.charCodeAt(0));
const key = Uint8Array.from("b831b8ef27c323f454610c5db8205232e521bd6d2ec11cf274ceb3e3c4b420a9".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):
b831b8ef27c323f454610c5db8205232e521bd6d2ec11cf274ceb3e3c4b420a9 - IV / nonce (hex):
f1fe6ffc91bcc4aee1d37182 - Ciphertext (hex):
9770dad1d2873d7de76f891c7f64f4bff8eb4faecf3eb3f74acce1449716bfa44a2ff853ca90fed04d14e0034f3e8f61f3d15ef7e96d7a367fd224a1f1428278693f9aef122d48358a23db4a4c75463697f635eb747d38e854051677f76e68575081342ee8f06c22d6c96824394eba9b10978e63bf89a93db3d8e34b870c5b711fda503fa9a59bf16898a7fc886b1fe8c92c5ce314fd2f6884944f6c53d702398ca8a4959e1a101aa05126bd20fffcfda2cf358d76e32acab3e1199baee033ef65f9d275d4f954a9c2486e54426366b48333b0f13848f8d0ceb0388ed2f69916678eca1277cd334072 - Auth tag (hex):
fb586550ef45dd66eda19a6e7c005802
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 #956488 · 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.