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

VJS II vs Valtti

Kolmonen - Southern Group · Finland · 05 Jul 2026, 15:00 UTC

Final score
3 : 4
Result
Lost
Pick
VJS II
Market
1x2
Model prob.
54.1%
Best price
2.27
Min odds
2.00
Stake factor
2.90

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)
JF+uYPt1SY0DHoMKAKO1aR2TjX8c+zN4prUNYf4SPPMCgQhOTfZswah0A78uwxq1r2aWsLT+UDIoqD9WZdUMN22mJG/b8yiul4KWzhMCHKbucfAKMY9rwE+k1i9OVKHYG78SoPpN0WIoe0YPzcWQU58lSs0lNJwbGL2uIJ4zUeq87Yql79zAMtd27MqBppqD4D3u+5uI0LIfbi6u7Ap+kGPBYNNoG4haexHfnjxm6DhzdY4M7DBdms0RILskurmpoKBzlVM4uW07xVqJl2iFbcgqb1SMXN42mM9hHZA9iSVnpfQR85pxuT/1ips+t2UmV1EJFgS0LAUc2VjDO13p4BdF9DI=
key fingerprint sha256: 0243cd93e488fd495e4f27cfc5cdb20f66db8e6aff4ef3ad073e248332aaf1c5
Decrypt it & read the pick
Decryption key (released after the match)
3beafbaf65a7b1dd6ee73a9146fca82e99ba3e87030d8ec03979f3e44af7549a
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("JF+uYPt1SY0DHoMKAKO1aR2TjX8c+zN4prUNYf4SPPMCgQhOTfZswah0A78uwxq1r2aWsLT+UDIoqD9WZdUMN22mJG/b8yiul4KWzhMCHKbucfAKMY9rwE+k1i9OVKHYG78SoPpN0WIoe0YPzcWQU58lSs0lNJwbGL2uIJ4zUeq87Yql79zAMtd27MqBppqD4D3u+5uI0LIfbi6u7Ap+kGPBYNNoG4haexHfnjxm6DhzdY4M7DBdms0RILskurmpoKBzlVM4uW07xVqJl2iFbcgqb1SMXN42mM9hHZA9iSVnpfQR85pxuT/1ips+t2UmV1EJFgS0LAUc2VjDO13p4BdF9DI="), c => c.charCodeAt(0));
const key  = Uint8Array.from("3beafbaf65a7b1dd6ee73a9146fca82e99ba3e87030d8ec03979f3e44af7549a".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): 3beafbaf65a7b1dd6ee73a9146fca82e99ba3e87030d8ec03979f3e44af7549a
  • IV / nonce (hex): 245fae60fb75498d031e830a
  • Ciphertext (hex): 00a3b5691d938d7f1cfb3378a6b50d61fe123cf30281084e4df66cc1a87403bf2ec31ab5af6696b0b4fe503228a83f5665d50c376da6246fdbf328ae978296ce13021ca6ee71f00a318f6bc04fa4d62f4e54a1d81bbf12a0fa4dd162287b460fcdc590539f254acd25349c1b18bdae209e3351eabced8aa5efdcc032d776ecca81a69a83e03deefb9b88d0b21f6e2eaeec0a7e9063c160d3681b885a7b11df9e3c66e83873758e0cec305d9acd1120bb24bab9a9a0a073955338b96d3bc55a899768856dc82a6f548c5cde3698cf611d903d892567a5f411f39a71b93ff58a9b3eb7652657510916
  • Auth tag (hex): 04b42c051cd958c33b5de9e01745f432

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