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

Fenerbahçe vs Pogoń Szczecin

Club Friendlies 1 · World · 11 Jul 2026, 17:30 UTC

Final score
4 : 0
Result
Won
Pick
Fenerbahçe
Market
1x2
Model prob.
81.0%
Best price
1.34
Min odds
1.30
Stake factor
1.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)
PXKRchPPjgIJUjodbusjwU1tccaIhTD7d1azTwNOzOMMARTXsVFTqNPPPDUjq3ZApaCwcgBpskFCk98hF+HDwtiHjdSddWlZs6GjCDGca1De/GhT1pav6UOz694VJm1hKUa09oHH6wtK5IEHPFVlFc16qpaHuahC6ALe5KxchMEL+/zwN8TiNeRM6YKHj+1E/PumNTKEBVR9gcaRE8Zxx96vXrA33pNNv52YOV1ko9t/0ZbYna/bk/w8HDnN+ghY6hVFxkLGqe7mkC/kU6gYvI6fkMrsumKsAyAQGQQD/d00Mia3g2SVWNgKyfn+/BAxNE0P2py+UYqaZ4Ndwq8n3tt/EWFkIJIE
key fingerprint sha256: 5e4b75aad6e49071a1cabf13683721c86f166a1e46b0d80126c2ec86b87c6cac
Decrypt it & read the pick
Decryption key (released after the match)
8263f82db9d328da38905648f96b7d33f6457f815d53a3e06aa1af2301012085
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("PXKRchPPjgIJUjodbusjwU1tccaIhTD7d1azTwNOzOMMARTXsVFTqNPPPDUjq3ZApaCwcgBpskFCk98hF+HDwtiHjdSddWlZs6GjCDGca1De/GhT1pav6UOz694VJm1hKUa09oHH6wtK5IEHPFVlFc16qpaHuahC6ALe5KxchMEL+/zwN8TiNeRM6YKHj+1E/PumNTKEBVR9gcaRE8Zxx96vXrA33pNNv52YOV1ko9t/0ZbYna/bk/w8HDnN+ghY6hVFxkLGqe7mkC/kU6gYvI6fkMrsumKsAyAQGQQD/d00Mia3g2SVWNgKyfn+/BAxNE0P2py+UYqaZ4Ndwq8n3tt/EWFkIJIE"), c => c.charCodeAt(0));
const key  = Uint8Array.from("8263f82db9d328da38905648f96b7d33f6457f815d53a3e06aa1af2301012085".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): 8263f82db9d328da38905648f96b7d33f6457f815d53a3e06aa1af2301012085
  • IV / nonce (hex): 3d72917213cf8e0209523a1d
  • Ciphertext (hex): 6eeb23c14d6d71c6888530fb7756b34f034ecce30c0114d7b15153a8d3cf3c3523ab7640a5a0b0720069b2414293df2117e1c3c2d8878dd49d756959b3a1a308319c6b50defc6853d696afe943b3ebde15266d612946b4f681c7eb0b4ae481073c556515cd7aaa9687b9a842e802dee4ac5c84c10bfbfcf037c4e235e44ce982878fed44fcfba635328405547d81c69113c671c7deaf5eb037de934dbf9d98395d64a3db7fd196d89dafdb93fc3c1c39cdfa0858ea1545c642c6a9eee6902fe453a818bc8e9f90caecba62ac032010190403fddd343226b783649558d80ac9f9fefc1031344d0fda9cbe518a
  • Auth tag (hex): 9a67835dc2af27dedb7f116164209204

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