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

KPV Akatemia vs Ylivieska

Kolmonen - Western Group · Finland · 23 Jun 2026, 16:00 UTC

Final score
5 : 3
Result
Won
Pick
KPV Akatemia
Market
1x2
Model prob.
23.0%
Best price
7.36
Min odds
5.27
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)
Rbru26EH39Rpbxoy+ZbeX9DRO+Sl3b+AVpvZVBoqQ9PImGvGgsnmYnFa4JBNytSiuSCuuPWv1AP8mosWzwvf48wwdD5UU6L6T3PhcAXlEAO8BIutiCAsg3dtB0+PccIjFKTmxKJdeGPmfKRNFWXu5fqw1uAFxvGDuL87zWigLSP7vw1xeyo7V69gMWJgzcVOWRks3GX/X9J8apEth6GZ6iNQGXzMk3ihOdQ3oROaFzvU/9ltz3hyGwraZx2pBjxI0S3PCFKbaQjsWvLg8YiEFCUvWFRgzo2C0lP0+RcxyWirfsXxedEXRau6qsh7hGNpid+ZaeUWoaieo3Lbeikf6D4fkFxWMrHLW/g=
key fingerprint sha256: af6422a0d44d83af179a43efe970fe15d34a4d93c948ea7f2a8ecd0669afcb9d
Decrypt it & read the pick
Decryption key (released after the match)
96a21b2662384a5e4f7ad679926ae1b3eac5a5fec988e0696e4cc6418c46be98
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("Rbru26EH39Rpbxoy+ZbeX9DRO+Sl3b+AVpvZVBoqQ9PImGvGgsnmYnFa4JBNytSiuSCuuPWv1AP8mosWzwvf48wwdD5UU6L6T3PhcAXlEAO8BIutiCAsg3dtB0+PccIjFKTmxKJdeGPmfKRNFWXu5fqw1uAFxvGDuL87zWigLSP7vw1xeyo7V69gMWJgzcVOWRks3GX/X9J8apEth6GZ6iNQGXzMk3ihOdQ3oROaFzvU/9ltz3hyGwraZx2pBjxI0S3PCFKbaQjsWvLg8YiEFCUvWFRgzo2C0lP0+RcxyWirfsXxedEXRau6qsh7hGNpid+ZaeUWoaieo3Lbeikf6D4fkFxWMrHLW/g="), c => c.charCodeAt(0));
const key  = Uint8Array.from("96a21b2662384a5e4f7ad679926ae1b3eac5a5fec988e0696e4cc6418c46be98".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): 96a21b2662384a5e4f7ad679926ae1b3eac5a5fec988e0696e4cc6418c46be98
  • IV / nonce (hex): 45baeedba107dfd4696f1a32
  • Ciphertext (hex): f996de5fd0d13be4a5ddbf80569bd9541a2a43d3c8986bc682c9e662715ae0904dcad4a2b920aeb8f5afd403fc9a8b16cf0bdfe3cc30743e5453a2fa4f73e17005e51003bc048bad88202c83776d074f8f71c22314a4e6c4a25d7863e67ca44d1565eee5fab0d6e005c6f183b8bf3bcd68a02d23fbbf0d717b2a3b57af60316260cdc54e59192cdc65ff5fd27c6a912d87a199ea2350197ccc9378a139d437a1139a173bd4ffd96dcf78721b0ada671da9063c48d12dcf08529b6908ec5af2e0f1888414252f585460ce8d82d253f4f91731c968ab7ec5f179d11745abbaaac87b84636989df9969e516a1a89ea3
  • Auth tag (hex): 72db7a291fe83e1f905c5632b1cb5bf8

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