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

JyTy Turku vs SalPa II

Kolmonen - Western Group · Finland · 01 Jul 2026, 15:45 UTC

Final score
3 : 2
Result
Won
Pick
JyTy Turku
Market
1x2
Model prob.
26.5%
Best price
5.38
Min odds
4.44
Stake factor
3.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)
dkPNwrr1lJ8bpJhrev92afl19J4tm6He16aE8Uj075OdWPjFpkNprBSq7dL3Bzlx6XlpJnpD+rb98h5dRIP80r9Eirlkavm8VIGVv2GHXKeK+gdbKw6fV7rCY3S/MSj8SCzHVyF1MVR51oJ0CAiJirixv7f196kMaN0zO76tIHIntDSqdm3AD4iylfFBHWjHj8B5UrlRg5XW2KN1jOEqM1QQAFsQb6wL3T8Pk01mLC6gkDZy/bSEUNkCZqOBP7LoCEgR3TeH+/k3YTK1GBEJ/nOKjFOs/2vcwEGkN13XgaWnrsMhMX1BoT7p9JIqSVksi0keVZKdbg6ME8kvA/szWHbQTWp6nB4A7Q==
key fingerprint sha256: 855544e87f7e15648ebbea3e6ba70d2f5ca1d578c56baef8de121d189c2722b9
Decrypt it & read the pick
Decryption key (released after the match)
f0b42e6686b830cc356c7d8a0a03db20ca08a7d9a9f05bdc271a898ca4e1ded8
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("dkPNwrr1lJ8bpJhrev92afl19J4tm6He16aE8Uj075OdWPjFpkNprBSq7dL3Bzlx6XlpJnpD+rb98h5dRIP80r9Eirlkavm8VIGVv2GHXKeK+gdbKw6fV7rCY3S/MSj8SCzHVyF1MVR51oJ0CAiJirixv7f196kMaN0zO76tIHIntDSqdm3AD4iylfFBHWjHj8B5UrlRg5XW2KN1jOEqM1QQAFsQb6wL3T8Pk01mLC6gkDZy/bSEUNkCZqOBP7LoCEgR3TeH+/k3YTK1GBEJ/nOKjFOs/2vcwEGkN13XgaWnrsMhMX1BoT7p9JIqSVksi0keVZKdbg6ME8kvA/szWHbQTWp6nB4A7Q=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("f0b42e6686b830cc356c7d8a0a03db20ca08a7d9a9f05bdc271a898ca4e1ded8".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): f0b42e6686b830cc356c7d8a0a03db20ca08a7d9a9f05bdc271a898ca4e1ded8
  • IV / nonce (hex): 7643cdc2baf5949f1ba4986b
  • Ciphertext (hex): 7aff7669f975f49e2d9ba1ded7a684f148f4ef939d58f8c5a64369ac14aaedd2f7073971e97969267a43fab6fdf21e5d4483fcd2bf448ab9646af9bc548195bf61875ca78afa075b2b0e9f57bac26374bf3128fc482cc7572175315479d682740808898ab8b1bfb7f5f7a90c68dd333bbead207227b434aa766dc00f88b295f1411d68c78fc07952b9518395d6d8a3758ce12a335410005b106fac0bdd3f0f934d662c2ea0903672fdb48450d90266a3813fb2e8084811dd3787fbf9376132b5181109fe738a8c53acff6bdcc041a4375dd781a5a7aec321317d41a13ee9f4922a49592c8b491e55929d6e0e8c
  • Auth tag (hex): 13c92f03fb335876d04d6a7a9c1e00ed

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