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

Kauno Žalgiris II vs Atmosfera

1. Lyga · Lithuania · 01 Aug 2026, 11:00 UTC

Final score
3 : 1
Result
Lost
Pick
Atmosfera
Market
1x2
Model prob.
64.3%
Best price
1.76
Min odds
1.66
Stake factor
2.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)
hmtXAPU+fAgpyYAtHRxv8I3E9DlTKh28905TzcM83viX2Rx0N/nEVGssndcAz5W1Ek6LpYqvnllv2Ulw4+fBI9ShFM+IKfyXL0TeRI57SZhL8elK/KxMU3AsxUgsK4Av8coWfB8DSR0HfOhS3umnBbZvLj2yMAQBOJ7OaZAqbEJ+G4Z77uCZFkvrIRGVL/Jtx8PU45lBvIr8i2DBG+1RbJZ7zHxd1mFPhNao6rE2IY4NwVijvMsz1kcwriust2SSLr4z+uT12XtlvkHVrxlRkm1rGhQBOZqbfvdTF5sRxct9h9G3eEiMdteT74fUXPFpdodaLRCYBC78DvcCTNUvWBRfnTDqGVC5
key fingerprint sha256: 37c782452b7ca5c94f9b1b36495af1900bef404955cf2bc0b658f9d82acb043a
Decrypt it & read the pick
Decryption key (released after the match)
05c1a8ff0ee66dad09ee9cbcd0d561ff85bac373e0726e732245f33ed58f8973
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("hmtXAPU+fAgpyYAtHRxv8I3E9DlTKh28905TzcM83viX2Rx0N/nEVGssndcAz5W1Ek6LpYqvnllv2Ulw4+fBI9ShFM+IKfyXL0TeRI57SZhL8elK/KxMU3AsxUgsK4Av8coWfB8DSR0HfOhS3umnBbZvLj2yMAQBOJ7OaZAqbEJ+G4Z77uCZFkvrIRGVL/Jtx8PU45lBvIr8i2DBG+1RbJZ7zHxd1mFPhNao6rE2IY4NwVijvMsz1kcwriust2SSLr4z+uT12XtlvkHVrxlRkm1rGhQBOZqbfvdTF5sRxct9h9G3eEiMdteT74fUXPFpdodaLRCYBC78DvcCTNUvWBRfnTDqGVC5"), c => c.charCodeAt(0));
const key  = Uint8Array.from("05c1a8ff0ee66dad09ee9cbcd0d561ff85bac373e0726e732245f33ed58f8973".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): 05c1a8ff0ee66dad09ee9cbcd0d561ff85bac373e0726e732245f33ed58f8973
  • IV / nonce (hex): 866b5700f53e7c0829c9802d
  • Ciphertext (hex): 1d1c6ff08dc4f439532a1dbcf74e53cdc33cdef897d91c7437f9c4546b2c9dd700cf95b5124e8ba58aaf9e596fd94970e3e7c123d4a114cf8829fc972f44de448e7b49984bf1e94afcac4c53702cc5482c2b802ff1ca167c1f03491d077ce852dee9a705b66f2e3db2300401389ece69902a6c427e1b867beee099164beb2111952ff26dc7c3d4e39941bc8afc8b60c11bed516c967bcc7c5dd6614f84d6a8eab136218e0dc158a3bccb33d64730ae2bacb764922ebe33fae4f5d97b65be41d5af1951926d6b1a1401399a9b7ef753179b11c5cb7d87d1b778488c76d793ef87d45cf16976875a2d1098042e
  • Auth tag (hex): fc0ef7024cd52f58145f9d30ea1950b9

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