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

Eibar vs Granada

Segunda Division · Spain · 06 Sept 2026, 12:00 UTC

Final score
3 : 0
Result
Lost
Pick
Granada
Market
1X2
CLV vs fair close
-5.36%
Model prob.
25.7%
Best price
4.10
Min odds
3.96
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)
lHM0v+hg1VQOPCDfUAyR/+MI6pK//6Xn96ex1aZGYZIsXOX8C+kedT8qpUHbIGffVtDJ3eOZXyXOT5c31qQOmE0rxCU2oG+FmPiw3xpZiigOnu+IcdvIzRfOG0EbLuHqbztjmrSc+fuOleH1E3AeiuvEZw2g0Tn8HT5vli34POgD8M5EwNqzhDDoA5+ThvgsV4/9AJWipPVLew9F9Fgaj8FR7msgiTCbN4GhZakiCPpXVX49UgVQIu6oNutwqZP67d2aTClp+C6+mbGTN7Lko81Pu/eE9maTpQX3l4OXy06E9FhV26PY2Zzng9dYgcgfwLKAblNawrsMnBthT/rqpwNJwfHw
key fingerprint sha256: 4f6325bc3ef99ef982338bb9d499919be1baf4b2fc1dadd9bce95a4261d00dff
Decrypt it & read the pick
Decryption key (released after the match)
1412c2092e366f3e0ea19068b45fe50769492b85345aa282444d44cac69f6c60
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("lHM0v+hg1VQOPCDfUAyR/+MI6pK//6Xn96ex1aZGYZIsXOX8C+kedT8qpUHbIGffVtDJ3eOZXyXOT5c31qQOmE0rxCU2oG+FmPiw3xpZiigOnu+IcdvIzRfOG0EbLuHqbztjmrSc+fuOleH1E3AeiuvEZw2g0Tn8HT5vli34POgD8M5EwNqzhDDoA5+ThvgsV4/9AJWipPVLew9F9Fgaj8FR7msgiTCbN4GhZakiCPpXVX49UgVQIu6oNutwqZP67d2aTClp+C6+mbGTN7Lko81Pu/eE9maTpQX3l4OXy06E9FhV26PY2Zzng9dYgcgfwLKAblNawrsMnBthT/rqpwNJwfHw"), c => c.charCodeAt(0));
const key  = Uint8Array.from("1412c2092e366f3e0ea19068b45fe50769492b85345aa282444d44cac69f6c60".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): 1412c2092e366f3e0ea19068b45fe50769492b85345aa282444d44cac69f6c60
  • IV / nonce (hex): 947334bfe860d5540e3c20df
  • Ciphertext (hex): 500c91ffe308ea92bfffa5e7f7a7b1d5a64661922c5ce5fc0be91e753f2aa541db2067df56d0c9dde3995f25ce4f9737d6a40e984d2bc42536a06f8598f8b0df1a598a280e9eef8871dbc8cd17ce1b411b2ee1ea6f3b639ab49cf9fb8e95e1f513701e8aebc4670da0d139fc1d3e6f962df83ce803f0ce44c0dab38430e8039f9386f82c578ffd0095a2a4f54b7b0f45f4581a8fc151ee6b2089309b3781a165a92208fa57557e3d52055022eea836eb70a993faeddd9a4c2969f82ebe99b19337b2e4a3cd4fbbf784f66693a505f7978397cb4e84f45855dba3d8d99ce783d75881c81fc0b2806e53
  • Auth tag (hex): 5ac2bb0c9c1b614ffaeaa70349c1f1f0

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