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

Flora Tallinn vs Paide Linnameeskond

Meistriliiga · Estonia · 30 Aug 2026, 14:00 UTC

Final score
1 : 2
Result
Lost
Pick
Flora Tallinn
Market
1X2
CLV vs fair close
-31.50%
Model prob.
52.9%
Best price
2.25
Min odds
1.93
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)
uOoo3LfJO7m1PickdvZZmveB9vsMqlhgVYPjYEyZv2523j6nZl9RO49DnYLNjfuLLDJtp/zeQ0cGAzMWSbuXg6PRDlET1+8lnlz4aAIMwZ0KFIUMKm4WvMBG7edpBPKq+wUCMf9XLF9OXMlHX1/b5t+Cx7bbasyglrZ7FT6FpXRWmRT/jhlnYHWZjjpe9ifoPAzwGXjxXAdCmFfqsHXdBCcpBaSHRgpSn+s3aWwdS3BSEqW/ufBll3IcvmxxQlgsnvafjnlCrGTMv2KJieehWZ+UpyiO6PTdlxvOfpKtc2S1sgql1E13lfWgB4JGB0AuSZ2Z6xv0/So/v264ZPToF6ZFk9FUZ/P+iQVG3wctMko=
key fingerprint sha256: 1365a10bd3594869a6c044e203bb865c4241536e78cdef7ea0e46b1d6a3c0cd0
Decrypt it & read the pick
Decryption key (released after the match)
cf1bf70ff2210ec3b85ae78997c0a1e224262479d54f68aeb07b46d89bcadd6b
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("uOoo3LfJO7m1PickdvZZmveB9vsMqlhgVYPjYEyZv2523j6nZl9RO49DnYLNjfuLLDJtp/zeQ0cGAzMWSbuXg6PRDlET1+8lnlz4aAIMwZ0KFIUMKm4WvMBG7edpBPKq+wUCMf9XLF9OXMlHX1/b5t+Cx7bbasyglrZ7FT6FpXRWmRT/jhlnYHWZjjpe9ifoPAzwGXjxXAdCmFfqsHXdBCcpBaSHRgpSn+s3aWwdS3BSEqW/ufBll3IcvmxxQlgsnvafjnlCrGTMv2KJieehWZ+UpyiO6PTdlxvOfpKtc2S1sgql1E13lfWgB4JGB0AuSZ2Z6xv0/So/v264ZPToF6ZFk9FUZ/P+iQVG3wctMko="), c => c.charCodeAt(0));
const key  = Uint8Array.from("cf1bf70ff2210ec3b85ae78997c0a1e224262479d54f68aeb07b46d89bcadd6b".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): cf1bf70ff2210ec3b85ae78997c0a1e224262479d54f68aeb07b46d89bcadd6b
  • IV / nonce (hex): b8ea28dcb7c93bb9b53e2724
  • Ciphertext (hex): 76f6599af781f6fb0caa58605583e3604c99bf6e76de3ea7665f513b8f439d82cd8dfb8b2c326da7fcde43470603331649bb9783a3d10e5113d7ef259e5cf868020cc19d0a14850c2a6e16bcc046ede76904f2aafb050231ff572c5f4e5cc9475f5fdbe6df82c7b6db6acca096b67b153e85a574569914ff8e19676075998e3a5ef627e83c0cf01978f15c07429857eab075dd04272905a487460a529feb37696c1d4b705212a5bfb9f06597721cbe6c7142582c9ef69f8e7942ac64ccbf628989e7a1599f94a7288ee8f4dd971bce7e92ad7364b5b20aa5d44d7795f5a007824607402e499d99eb1bf4fd2a3fbf6eb864f4e817
  • Auth tag (hex): a64593d15467f3fe890546df072d324a

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