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

PiPS vs Peimari United

Kolmonen - Western Group · Finland · 25 Jun 2026, 15:30 UTC

Final score
2 : 2
Result
Lost
Pick
PiPS
Market
1x2
Model prob.
20.1%
Best price
7.21
Min odds
6.22
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)
5dbPHUU2SraFLa/Cqmrr/lZHgapHvH3kdUxjhPIAozjt19x5jbN8E+wYXQ6Qmkbhk8mZjpP4kM4smyWlKYz4afcnRlCys6td75a+40oOdG/U8fE9v6IlD5aE91DdPSdxpjXwpCcunYgFgK+9aV1p639dtqBDvKWK6uJr4M0sC1h/EkXSBpo3xQMicXtHvVdc3hv3ATLj7ymJApTLuUolcXHUvzRZ4dS7dd5eVw4BtpTL7hCLEVWCR4mUTrEf2omAybY08oDRYigSpchuOgYy4g6Z3BYg2+n10LXnjKl28kv1qbxuEYADX1lZXTebWfNWjoM6Cl/O1frnkwv1354uafmlsw==
key fingerprint sha256: 450ca1684de70804838e4a7bdbbf2794c6945b7a8c58182aea5900c77fd68dd9
Decrypt it & read the pick
Decryption key (released after the match)
97a3f69cf67faa0f9e2f3c4ae90602e09cd7123b6bbe74fde617b4d13ca07503
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("5dbPHUU2SraFLa/Cqmrr/lZHgapHvH3kdUxjhPIAozjt19x5jbN8E+wYXQ6Qmkbhk8mZjpP4kM4smyWlKYz4afcnRlCys6td75a+40oOdG/U8fE9v6IlD5aE91DdPSdxpjXwpCcunYgFgK+9aV1p639dtqBDvKWK6uJr4M0sC1h/EkXSBpo3xQMicXtHvVdc3hv3ATLj7ymJApTLuUolcXHUvzRZ4dS7dd5eVw4BtpTL7hCLEVWCR4mUTrEf2omAybY08oDRYigSpchuOgYy4g6Z3BYg2+n10LXnjKl28kv1qbxuEYADX1lZXTebWfNWjoM6Cl/O1frnkwv1354uafmlsw=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("97a3f69cf67faa0f9e2f3c4ae90602e09cd7123b6bbe74fde617b4d13ca07503".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): 97a3f69cf67faa0f9e2f3c4ae90602e09cd7123b6bbe74fde617b4d13ca07503
  • IV / nonce (hex): e5d6cf1d45364ab6852dafc2
  • Ciphertext (hex): aa6aebfe564781aa47bc7de4754c6384f200a338edd7dc798db37c13ec185d0e909a46e193c9998e93f890ce2c9b25a5298cf869f7274650b2b3ab5def96bee34a0e746fd4f1f13dbfa2250f9684f750dd3d2771a635f0a4272e9d880580afbd695d69eb7f5db6a043bca58aeae26be0cd2c0b587f1245d2069a37c50322717b47bd575cde1bf70132e3ef29890294cbb94a257171d4bf3459e1d4bb75de5e570e01b694cbee108b1155824789944eb11fda8980c9b634f280d1622812a5c86e3a0632e20e99dc1620dbe9f5d0b5e78ca976f24bf5a9bc6e1180035f59595d379b59f3568e833a
  • Auth tag (hex): 0a5fced5fae7930bf5df9e2e69f9a5b3

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