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

Atlético Grau vs Molinos El Pirata

Copa de La Liga · Peru · 22 Jun 2026, 20:15 UTC

Final score
3 : 2
Result
Won
Pick
Atlético Grau
Market
1x2
Model prob.
64.0%
Best price
1.81
Min odds
1.67
Stake factor
2.30

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)
3Teqc72AlGOwdj5/sIppz4nc0qfaKso4jHiD5CbWzhG/D/EG3WorLZY48TqfY1LkT9mbHgLy0Dp8PRXgcNv6fzgKy1HunAsqeQg5XuPTX9b7aPoIZy84aFDFNA7mahgpJfV1rUvd2PKVnJ/qYWv97G+ibdRxu3zzsXq89gGkZ0B+pyaxYFVC9p6QwxeMfXhz09k+sUqKijzyv/40onJa5VO0N9Ollnbrl3oVr7PNCzxuivrGQ/6Uu3YftM986wcDgP2CJM5NRa9lSz8KYhMaav/uIcOtx0DPg91SlFgSXj5TCme7CTzknSs6zFsCVlSYxDqgRPw1dHEzIxpDYyoUSaaAqGNj3Q3sz+WDLZyk
key fingerprint sha256: 66f9f200b940e0402b7020a5c24805d9abe0886a9ae477979a32d31ea6da55d6
Decrypt it & read the pick
Decryption key (released after the match)
4213b3e318c6cd018bbdb5a2a288330d491e815a9fd0d641af53064799130b19
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("3Teqc72AlGOwdj5/sIppz4nc0qfaKso4jHiD5CbWzhG/D/EG3WorLZY48TqfY1LkT9mbHgLy0Dp8PRXgcNv6fzgKy1HunAsqeQg5XuPTX9b7aPoIZy84aFDFNA7mahgpJfV1rUvd2PKVnJ/qYWv97G+ibdRxu3zzsXq89gGkZ0B+pyaxYFVC9p6QwxeMfXhz09k+sUqKijzyv/40onJa5VO0N9Ollnbrl3oVr7PNCzxuivrGQ/6Uu3YftM986wcDgP2CJM5NRa9lSz8KYhMaav/uIcOtx0DPg91SlFgSXj5TCme7CTzknSs6zFsCVlSYxDqgRPw1dHEzIxpDYyoUSaaAqGNj3Q3sz+WDLZyk"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4213b3e318c6cd018bbdb5a2a288330d491e815a9fd0d641af53064799130b19".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): 4213b3e318c6cd018bbdb5a2a288330d491e815a9fd0d641af53064799130b19
  • IV / nonce (hex): dd37aa73bd809463b0763e7f
  • Ciphertext (hex): b08a69cf89dcd2a7da2aca388c7883e426d6ce11bf0ff106dd6a2b2d9638f13a9f6352e44fd99b1e02f2d03a7c3d15e070dbfa7f380acb51ee9c0b2a7908395ee3d35fd6fb68fa08672f386850c5340ee66a182925f575ad4bddd8f2959c9fea616bfdec6fa26dd471bb7cf3b17abcf601a467407ea726b1605542f69e90c3178c7d7873d3d93eb14a8a8a3cf2bffe34a2725ae553b437d3a59676eb977a15afb3cd0b3c6e8afac643fe94bb761fb4cf7ceb070380fd8224ce4d45af654b3f0a62131a6affee21c3adc740cf83dd529458125e3e530a67bb093ce49d2b3acc5b02565498c43aa044fc35747133231a43632a
  • Auth tag (hex): 1449a680a86363dd0deccfe5832d9ca4

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