Widzew Łódź II vs Troszyn
3. Liga - Group 1 · Poland · 02 Aug 2026, 10: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.
7BP/f4PajQdcB3rUCo9uR6q+stqFqhlZJ1/0hTCMvPhFaR7ezFgQ6WEPl7fN5rgUFzCXr+rgwyL96KPnRK0MQ6hApNNXdoPiRs+MHmmc+CKlJ2VeVx7lkUjbuFnWB1QsXkJJQGrOcY7yMqr5SKlUMwpJCFpJgeRYZmTI1pja81ILKLEs6AL0oTOaSsi/BZTrjfb5Ti62n9tVImf0wNDDYLcQFXaUR9JfnTytVX1pa+a92GrrYGSuo4cJFExeFE683gliYWyy7AQjGM1b1gZS2vTbLG9+IZ0/fNAxVjy3XuW+CWth1IJIczV4KaoW9iX8DIS9qLl1SQL4NIJKUpFY6nrWSjpv
b200e3295b661b127b180a65c8e8c74bf5ddfa680bd6927f59f03fbea8aa9577Decrypt 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("7BP/f4PajQdcB3rUCo9uR6q+stqFqhlZJ1/0hTCMvPhFaR7ezFgQ6WEPl7fN5rgUFzCXr+rgwyL96KPnRK0MQ6hApNNXdoPiRs+MHmmc+CKlJ2VeVx7lkUjbuFnWB1QsXkJJQGrOcY7yMqr5SKlUMwpJCFpJgeRYZmTI1pja81ILKLEs6AL0oTOaSsi/BZTrjfb5Ti62n9tVImf0wNDDYLcQFXaUR9JfnTytVX1pa+a92GrrYGSuo4cJFExeFE683gliYWyy7AQjGM1b1gZS2vTbLG9+IZ0/fNAxVjy3XuW+CWth1IJIczV4KaoW9iX8DIS9qLl1SQL4NIJKUpFY6nrWSjpv"), c => c.charCodeAt(0));
const key = Uint8Array.from("b200e3295b661b127b180a65c8e8c74bf5ddfa680bd6927f59f03fbea8aa9577".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):
b200e3295b661b127b180a65c8e8c74bf5ddfa680bd6927f59f03fbea8aa9577 - IV / nonce (hex):
ec13ff7f83da8d075c077ad4 - Ciphertext (hex):
0a8f6e47aabeb2da85aa1959275ff485308cbcf845691edecc5810e9610f97b7cde6b814173097afeae0c322fde8a3e744ad0c43a840a4d3577683e246cf8c1e699cf822a527655e571ee59148dbb859d607542c5e4249406ace718ef232aaf948a954330a49085a4981e4586664c8d698daf3520b28b12ce802f4a1339a4ac8bf0594eb8df6f94e2eb69fdb552267f4c0d0c360b71015769447d25f9d3cad557d696be6bdd86aeb6064aea38709144c5e144ebcde0962616cb2ec042318cd5bd60652daf4db2c6f7e219d3f7cd031563cb75ee5be096b61d4824873357829aa16f625fc0c84bda8b9 - Auth tag (hex):
754902f834824a529158ea7ad64a3a6f
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 #960638 · 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.