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

Villarreal vs Deportivo La Coruna

La Liga · Spain · 05 Sept 2026, 19:00 UTC

Final score
2 : 3
Result
Won
Pick
Deportivo La Coruna
Market
1X2
CLV vs fair close
-21.41%
Model prob.
17.6%
Best price
6.00
Min odds
5.80
Stake factor
1.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)
ktr095UNaUp2W/XXfhzaRH/izpf7Q2/6Em58IA3Ht/ZUx8pomWuMi0IZS2F4CYk9WixWrZ+azIt2BJvNaS5YlJQHKufsZ87GT7/PDM6Ur02FnVa+2L2JTOHBVlU3qJB2bOAhDGX2nKOZKY52WoJv3TcKL3O6dISqRKTTqswzgbKbfeuyLOmBlT288EQaL4k5npLfHMkYdmhK0i0Wuxt19swMlooCp0abEH9+65rsdAN4GmnVHCsQzu01ib70xcfIvtXbVWUICKgKCFK1SqoMIzZHOCFIMmfVhq8nUtpG8d4+HKCsIOSoy3GVjoKbuqqc1n7v/XycxPCj5otSRWzanB61Jsb3GVmlMgrz6j0Sog==
key fingerprint sha256: c6fb4b79cd5d0db25c4bcd68a2ac53cff0ba3dd47ba6c2e4fe43f6d071e71aca
Decrypt it & read the pick
Decryption key (released after the match)
997b3356fb9c90d4dadd303938605ae65da0b85a1210514de1187d11dc71fcc2
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("ktr095UNaUp2W/XXfhzaRH/izpf7Q2/6Em58IA3Ht/ZUx8pomWuMi0IZS2F4CYk9WixWrZ+azIt2BJvNaS5YlJQHKufsZ87GT7/PDM6Ur02FnVa+2L2JTOHBVlU3qJB2bOAhDGX2nKOZKY52WoJv3TcKL3O6dISqRKTTqswzgbKbfeuyLOmBlT288EQaL4k5npLfHMkYdmhK0i0Wuxt19swMlooCp0abEH9+65rsdAN4GmnVHCsQzu01ib70xcfIvtXbVWUICKgKCFK1SqoMIzZHOCFIMmfVhq8nUtpG8d4+HKCsIOSoy3GVjoKbuqqc1n7v/XycxPCj5otSRWzanB61Jsb3GVmlMgrz6j0Sog=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("997b3356fb9c90d4dadd303938605ae65da0b85a1210514de1187d11dc71fcc2".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): 997b3356fb9c90d4dadd303938605ae65da0b85a1210514de1187d11dc71fcc2
  • IV / nonce (hex): 92daf4f7950d694a765bf5d7
  • Ciphertext (hex): 7e1cda447fe2ce97fb436ffa126e7c200dc7b7f654c7ca68996b8c8b42194b617809893d5a2c56ad9f9acc8b76049bcd692e589494072ae7ec67cec64fbfcf0cce94af4d859d56bed8bd894ce1c1565537a890766ce0210c65f69ca399298e765a826fdd370a2f73ba7484aa44a4d3aacc3381b29b7debb22ce981953dbcf0441a2f89399e92df1cc91876684ad22d16bb1b75f6cc0c968a02a7469b107f7eeb9aec7403781a69d51c2b10ceed3589bef4c5c7c8bed5db55650808a80a0852b54aaa0c2336473821483267d586af2752da46f1de3e1ca0ac20e4a8cb71958e829bbaaa9cd67eeffd7c9cc4f0a3e68b52456cda
  • Auth tag (hex): 9c1eb526c6f71959a5320af3ea3d12a2

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