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

Töölön Taisto vs VJS II

Kolmonen - Southern Group · Finland · 24 Jun 2026, 17:00 UTC

Final score
3 : 1
Result
Won
Pick
Töölön Taisto
Market
1x2
Model prob.
37.5%
Best price
3.19
Min odds
2.98
Stake factor
2.60

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)
ztiTmW4x4YQqiWJhmM974l6p8TY0eCfx7rAZrDARahWmOdpa61eICE1JYYS6WhJS1HY2bN1AQnWsGyJMWRKJQX3hCoXfrM9afTZCe8HSHPrr2YeTyo8l/Nqg/KrdX4Vw9skMyIloQrDyFkgm7wNkFHnyvFbCF8ZgDvziSTv4p3EuWC5mLuH98m49vllE81ldx1qvL22LDk6FVg0gR7nh3yI5DMICJVrBdn6KydiONQyZnsK9idvLUNES2v9qfef30EyIS4DD4Y0J6iO85MFUUccqzhan5s2JCWD3lEXrqq8K/kHAsVzfQh6wa/VvTFCTXQlN9S9bl9XX6ds6pnFS+ZbIqqoRC4v9wBNng+Wvjvr/
key fingerprint sha256: 5589d146123d0d4071f01523001d3dcd8457a1cec1ce3fefc8c27604d532061b
Decrypt it & read the pick
Decryption key (released after the match)
ed5533a18490c4c682df2e69c10e4ee9a79329fe16b94e05f164b8e157c909ac
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("ztiTmW4x4YQqiWJhmM974l6p8TY0eCfx7rAZrDARahWmOdpa61eICE1JYYS6WhJS1HY2bN1AQnWsGyJMWRKJQX3hCoXfrM9afTZCe8HSHPrr2YeTyo8l/Nqg/KrdX4Vw9skMyIloQrDyFkgm7wNkFHnyvFbCF8ZgDvziSTv4p3EuWC5mLuH98m49vllE81ldx1qvL22LDk6FVg0gR7nh3yI5DMICJVrBdn6KydiONQyZnsK9idvLUNES2v9qfef30EyIS4DD4Y0J6iO85MFUUccqzhan5s2JCWD3lEXrqq8K/kHAsVzfQh6wa/VvTFCTXQlN9S9bl9XX6ds6pnFS+ZbIqqoRC4v9wBNng+Wvjvr/"), c => c.charCodeAt(0));
const key  = Uint8Array.from("ed5533a18490c4c682df2e69c10e4ee9a79329fe16b94e05f164b8e157c909ac".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): ed5533a18490c4c682df2e69c10e4ee9a79329fe16b94e05f164b8e157c909ac
  • IV / nonce (hex): ced893996e31e1842a896261
  • Ciphertext (hex): 98cf7be25ea9f136347827f1eeb019ac30116a15a639da5aeb5788084d496184ba5a1252d476366cdd404275ac1b224c591289417de10a85dfaccf5a7d36427bc1d21cfaebd98793ca8f25fcdaa0fcaadd5f8570f6c90cc8896842b0f2164826ef03641479f2bc56c217c6600efce2493bf8a7712e582e662ee1fdf26e3dbe5944f3595dc75aaf2f6d8b0e4e85560d2047b9e1df22390cc202255ac1767e8ac9d88e350c999ec2bd89dbcb50d112daff6a7de7f7d04c884b80c3e18d09ea23bce4c15451c72ace16a7e6cd890960f79445ebaaaf0afe41c0b15cdf421eb06bf56f4c50935d094df52f5b97d5d7e9db3aa67152f996
  • Auth tag (hex): c8aaaa110b8bfdc0136783e5af8efaff

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