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

Lancy vs Terre Sainte

Club Friendlies 4 · World · 31 Jul 2026, 18:30 UTC

Final score
0 : 0
Result
Lost
Pick
Lancy
Market
1x2
Model prob.
63.8%
Best price
1.75
Min odds
1.67
Stake factor
1.90

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)
qZE+oNPT0zE7mCPhhOik+JDjjcbcuYBnsfZKswdgBTs0LJDmbVrTNDiypJSseKXuAz3DcjqMQu9egBpFLBmZ11Yi+Hjea0mEIzUjMVBrXi3zKxtbflp8Z2XkqvUqxIKuDpWOnAIpdNqmbzvxg7mae6ZE5hKlxfaw+vE0fuWc4O3pL4qYffkbWM/MsPRaP9HbdaKSVmH572NNaTCrYskE9wzo7yDpmjJoU1Luj2sajRzVh++IH1buqCXIEFwTEVQo/K0p/eKYZJEgRXprEdMbCMHQSqGm7xoCJmEacr+aPPDGOn9pitK7ju6ctmULobs5/H/QYhmfJYIR1/TbiKvQodmAib3SXA==
key fingerprint sha256: 659a8b8739f7909085d4d6ee2b7460f80e45fc1a42625c5bf1cb0325f36e64ed
Decrypt it & read the pick
Decryption key (released after the match)
7c3c248ced3f94e9f4ee1197e37776b31e09ccd76e2e8fd98248cc6d3fc1210e
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("qZE+oNPT0zE7mCPhhOik+JDjjcbcuYBnsfZKswdgBTs0LJDmbVrTNDiypJSseKXuAz3DcjqMQu9egBpFLBmZ11Yi+Hjea0mEIzUjMVBrXi3zKxtbflp8Z2XkqvUqxIKuDpWOnAIpdNqmbzvxg7mae6ZE5hKlxfaw+vE0fuWc4O3pL4qYffkbWM/MsPRaP9HbdaKSVmH572NNaTCrYskE9wzo7yDpmjJoU1Luj2sajRzVh++IH1buqCXIEFwTEVQo/K0p/eKYZJEgRXprEdMbCMHQSqGm7xoCJmEacr+aPPDGOn9pitK7ju6ctmULobs5/H/QYhmfJYIR1/TbiKvQodmAib3SXA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("7c3c248ced3f94e9f4ee1197e37776b31e09ccd76e2e8fd98248cc6d3fc1210e".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): 7c3c248ced3f94e9f4ee1197e37776b31e09ccd76e2e8fd98248cc6d3fc1210e
  • IV / nonce (hex): a9913ea0d3d3d3313b9823e1
  • Ciphertext (hex): 84e8a4f890e38dc6dcb98067b1f64ab30760053b342c90e66d5ad33438b2a494ac78a5ee033dc3723a8c42ef5e801a452c1999d75622f878de6b498423352331506b5e2df32b1b5b7e5a7c6765e4aaf52ac482ae0e958e9c022974daa66f3bf183b99a7ba644e612a5c5f6b0faf1347ee59ce0ede92f8a987df91b58cfccb0f45a3fd1db75a2925661f9ef634d6930ab62c904f70ce8ef20e99a32685352ee8f6b1a8d1cd587ef881f56eea825c8105c13115428fcad29fde298649120457a6b11d31b08c1d04aa1a6ef1a0226611a72bf9a3cf0c63a7f698ad2bb8eee9cb6650ba1bb39fc7fd062199f
  • Auth tag (hex): 258211d7f4db88abd0a1d98089bdd25c

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