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

Centro Español vs Leones de Rosario

Primera C · Argentina · 20 Jul 2026, 18:00 UTC

Final score
Result
Void
Pick
Centro Español
Market
1x2
Model prob.
31.6%
Best price
4.38
Min odds
3.63
Stake factor
3.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)
wJ88xeCWdhTVKfU0qyS1L7dXQww+dMZxoFFCSZVWoCI/W+fJwqT0B7t1EH+T2Dr2UfJP3haZJjGQRA4NKpLn4uBL1qlnCx/djElzmcFgXTodq0aVID7xXtLK0lfXPcsX/K7gwqXukUypcWaMOkHs3O/j8QoK2Vdbg2j8yYBd0U07h5ExFdW8gmuZOnczBk0uzMcrZOeaZjOcAciIEh7Jfp4rqD19fFMUR31pD83KTKjGyO4lGdhZQlSXif6LkltEPTti4kNeS39G4k3X1DWDLViuJ8OUcioexLzLoj2thMbqoY6WQzBnB8qy/XKvJMvUu3WB+goTUX8s1VA/V7LZfilHdjSXZrKqbMLwPIZS
key fingerprint sha256: c053467f9e9c799b02c62fcfa2e169eb6a961bf768801a5e91a4ee2830f054d3
Decrypt it & read the pick
Decryption key (released after the match)
491955fdb2c353f56fa7d932951717d954771b8906c67502c5b9b62bba41cc1f
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("wJ88xeCWdhTVKfU0qyS1L7dXQww+dMZxoFFCSZVWoCI/W+fJwqT0B7t1EH+T2Dr2UfJP3haZJjGQRA4NKpLn4uBL1qlnCx/djElzmcFgXTodq0aVID7xXtLK0lfXPcsX/K7gwqXukUypcWaMOkHs3O/j8QoK2Vdbg2j8yYBd0U07h5ExFdW8gmuZOnczBk0uzMcrZOeaZjOcAciIEh7Jfp4rqD19fFMUR31pD83KTKjGyO4lGdhZQlSXif6LkltEPTti4kNeS39G4k3X1DWDLViuJ8OUcioexLzLoj2thMbqoY6WQzBnB8qy/XKvJMvUu3WB+goTUX8s1VA/V7LZfilHdjSXZrKqbMLwPIZS"), c => c.charCodeAt(0));
const key  = Uint8Array.from("491955fdb2c353f56fa7d932951717d954771b8906c67502c5b9b62bba41cc1f".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): 491955fdb2c353f56fa7d932951717d954771b8906c67502c5b9b62bba41cc1f
  • IV / nonce (hex): c09f3cc5e0967614d529f534
  • Ciphertext (hex): ab24b52fb757430c3e74c671a05142499556a0223f5be7c9c2a4f407bb75107f93d83af651f24fde1699263190440e0d2a92e7e2e04bd6a9670b1fdd8c497399c1605d3a1dab4695203ef15ed2cad257d73dcb17fcaee0c2a5ee914ca971668c3a41ecdcefe3f10a0ad9575b8368fcc9805dd14d3b87913115d5bc826b993a7733064d2eccc72b64e79a66339c01c888121ec97e9e2ba83d7d7c5314477d690fcdca4ca8c6c8ee2519d85942549789fe8b925b443d3b62e2435e4b7f46e24dd7d435832d58ae27c394722a1ec4bccba23dad84c6eaa18e9643306707cab2fd72af24cbd4bb7581fa0a13517f2cd5503f57b2
  • Auth tag (hex): d97e294776349766b2aa6cc2f03c8652

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