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

FCI Tallinn vs Phoenix

Esiliiga B · Estonia · 22 Jun 2026, 16:00 UTC

Final score
2 : 0
Result
Won
Pick
FCI Tallinn
Market
1x2
Model prob.
46.5%
Best price
2.58
Min odds
2.36
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)
qLns7CxK1U2Od9Zw4sTePzWg3xt53kVnG/32BYg809wt244JsAa4uApTR7X2Ry0RmidS9+8XUYuwhhQLbjCstUuBVd39A7IUqxmHK76AspKaHMns6eeaD9a9FOJcVJebYHbbjkhiKEv+r/vXR4zs6Yi5YRjkaKC2+sLWla0jzrpVevS+1/p0ADM3REaQdAWzTwYT23rThhW0vxomvWK4L2ItCqEdBPRBykhsXoeNIljgMIYV9jf02LZEFfwbQm5dApXAfM8qHYs9NOoe+hvPbuOvfQxvZoCyOKa5PYb111D40m1cJ9MGWOI7AescdwsWXqCUtIkulelwLhshBX9KfkjSIbKSv7Q8MQ==
key fingerprint sha256: 46609b17f81eb62abb1e5af6471e73307716036edeaa8595f143745466940684
Decrypt it & read the pick
Decryption key (released after the match)
0931d472abe04a330cdb095c5a3eaaf0159c70a2c20e85c1f9d7ad1b291c008d
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("qLns7CxK1U2Od9Zw4sTePzWg3xt53kVnG/32BYg809wt244JsAa4uApTR7X2Ry0RmidS9+8XUYuwhhQLbjCstUuBVd39A7IUqxmHK76AspKaHMns6eeaD9a9FOJcVJebYHbbjkhiKEv+r/vXR4zs6Yi5YRjkaKC2+sLWla0jzrpVevS+1/p0ADM3REaQdAWzTwYT23rThhW0vxomvWK4L2ItCqEdBPRBykhsXoeNIljgMIYV9jf02LZEFfwbQm5dApXAfM8qHYs9NOoe+hvPbuOvfQxvZoCyOKa5PYb111D40m1cJ9MGWOI7AescdwsWXqCUtIkulelwLhshBX9KfkjSIbKSv7Q8MQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("0931d472abe04a330cdb095c5a3eaaf0159c70a2c20e85c1f9d7ad1b291c008d".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): 0931d472abe04a330cdb095c5a3eaaf0159c70a2c20e85c1f9d7ad1b291c008d
  • IV / nonce (hex): a8b9ecec2c4ad54d8e77d670
  • Ciphertext (hex): e2c4de3f35a0df1b79de45671bfdf605883cd3dc2ddb8e09b006b8b80a5347b5f6472d119a2752f7ef17518bb086140b6e30acb54b8155ddfd03b214ab19872bbe80b2929a1cc9ece9e79a0fd6bd14e25c54979b6076db8e4862284bfeaffbd7478cece988b96118e468a0b6fac2d695ad23ceba557af4bed7fa740033374446907405b34f0613db7ad38615b4bf1a26bd62b82f622d0aa11d04f441ca486c5e878d2258e0308615f637f4d8b64415fc1b426e5d0295c07ccf2a1d8b3d34ea1efa1bcf6ee3af7d0c6f6680b238a6b93d86f5d750f8d26d5c27d30658e23b01eb1c770b165ea094b4892e95e970
  • Auth tag (hex): 2e1b21057f4a7e48d221b292bfb43c31

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