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

Rudes vs Lokomotiva Zagreb

HNL · Croatia · 21 Aug 2026, 18:00 UTC

Final score
4 : 1
Result
Lost
Pick
Lokomotiva Zagreb
Market
1X2
CLV vs fair close
-14.41%
Model prob.
70.1%
Best price
1.52
Min odds
1.45
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)
XDyjJZHVirasCmf6Otih48/UX9QzAPUqitE5Gjzp345Jmkdz8CpNqFQd8/M6qOGaAn1NATBtj2anKkhvsGFqV393S5y/66F1QklSfb5a8jbC0Yb30VyaB1dWJ5as/9eZxgy7SU0CSKD5EfEl9HAUa4Ah/4Pp2lyilHkQLGM5Z/sdnHqAblw7dSnQCcPwsL6Hc0nqMNfBdVfpCqc0rhpeCXB6wDGhbSbU5FE4YGSqmrAF4tP9i//eRPmwLFitBtXBwxaPnTe6fzoPLBkMVZpwhsUYii8KVBDQkULh5ntlKUH1hS/3Fl4WEVco5NnjeTtslWG5e1ll/VnsdV1jf94vpYrwNnZgtBLyqHkjY0+lOGTmMdw=
key fingerprint sha256: befc269e26ebc6417980a24bb81f095fc2aa65ed04f46e03080f474f5b541fed
Decrypt it & read the pick
Decryption key (released after the match)
8e40541aa282785d35e1f709286bddf74b8c70d0b4ba520e7bc82292bd953fe3
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("XDyjJZHVirasCmf6Otih48/UX9QzAPUqitE5Gjzp345Jmkdz8CpNqFQd8/M6qOGaAn1NATBtj2anKkhvsGFqV393S5y/66F1QklSfb5a8jbC0Yb30VyaB1dWJ5as/9eZxgy7SU0CSKD5EfEl9HAUa4Ah/4Pp2lyilHkQLGM5Z/sdnHqAblw7dSnQCcPwsL6Hc0nqMNfBdVfpCqc0rhpeCXB6wDGhbSbU5FE4YGSqmrAF4tP9i//eRPmwLFitBtXBwxaPnTe6fzoPLBkMVZpwhsUYii8KVBDQkULh5ntlKUH1hS/3Fl4WEVco5NnjeTtslWG5e1ll/VnsdV1jf94vpYrwNnZgtBLyqHkjY0+lOGTmMdw="), c => c.charCodeAt(0));
const key  = Uint8Array.from("8e40541aa282785d35e1f709286bddf74b8c70d0b4ba520e7bc82292bd953fe3".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): 8e40541aa282785d35e1f709286bddf74b8c70d0b4ba520e7bc82292bd953fe3
  • IV / nonce (hex): 5c3ca32591d58ab6ac0a67fa
  • Ciphertext (hex): 3ad8a1e3cfd45fd43300f52a8ad1391a3ce9df8e499a4773f02a4da8541df3f33aa8e19a027d4d01306d8f66a72a486fb0616a577f774b9cbfeba1754249527dbe5af236c2d186f7d15c9a0757562796acffd799c60cbb494d0248a0f911f125f470146b8021ff83e9da5ca29479102c633967fb1d9c7a806e5c3b7529d009c3f0b0be877349ea30d7c17557e90aa734ae1a5e09707ac031a16d26d4e451386064aa9ab005e2d3fd8bffde44f9b02c58ad06d5c1c3168f9d37ba7f3a0f2c190c559a7086c5188a2f0a5410d09142e1e67b652941f5852ff7165e16115728e4d9e3793b6c9561b97b5965fd59ec755d637fde2fa58af036
  • Auth tag (hex): 7660b412f2a87923634fa53864e631dc

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