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

Velo Clube U20 vs Sao Paulo U20

Paulista U20 · Brazil · 18 Jul 2026, 18:00 UTC

Final score
0 : 0
Result
Lost
Pick
Sao Paulo U20
Market
1x2
Model prob.
72.2%
Best price
1.51
Min odds
1.47
Stake factor
1.70

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)
NCc98yPWsGh9icIrLqr0C5lO4U1fLMAmffP85sE2Jy5tb4c8abhhVdke1O6PTmfawWgUq5PAvbHhCos1+a81tnsyKqYR0b5Y9MMFLpo7pPOpIufbTGY+iGIq5lWKL0M3+pY+4EtNS4DqLDtiZog8NR6AmyRUQd8ncJDA0asBvXFQ/21KwjCb3XGZ0hadLA1AkqQhY28RiaBK9a6ZoCnd00j+Uc47oyL4dLw5AXliJgynS3QhvtQczgpiyeggL7vRhQyI6OlYRyjS+XPP5c/F/R2uvW1RW7HxPKP6iGMNeoOMaZbUbYeUZGIQqUJUtOR8zuz2qHpAYCs6JxnAZUURATnSsqf41OsRznG1yTY=
key fingerprint sha256: ca8c53ca2474b615d0c8e8df5a9bd976c781d9af7cac2c71c9b0b6ee7c44de22
Decrypt it & read the pick
Decryption key (released after the match)
d6685840e3146fcb64b97703e2138c2d67b94ecbf452a782555409277dcdf84b
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("NCc98yPWsGh9icIrLqr0C5lO4U1fLMAmffP85sE2Jy5tb4c8abhhVdke1O6PTmfawWgUq5PAvbHhCos1+a81tnsyKqYR0b5Y9MMFLpo7pPOpIufbTGY+iGIq5lWKL0M3+pY+4EtNS4DqLDtiZog8NR6AmyRUQd8ncJDA0asBvXFQ/21KwjCb3XGZ0hadLA1AkqQhY28RiaBK9a6ZoCnd00j+Uc47oyL4dLw5AXliJgynS3QhvtQczgpiyeggL7vRhQyI6OlYRyjS+XPP5c/F/R2uvW1RW7HxPKP6iGMNeoOMaZbUbYeUZGIQqUJUtOR8zuz2qHpAYCs6JxnAZUURATnSsqf41OsRznG1yTY="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d6685840e3146fcb64b97703e2138c2d67b94ecbf452a782555409277dcdf84b".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): d6685840e3146fcb64b97703e2138c2d67b94ecbf452a782555409277dcdf84b
  • IV / nonce (hex): 34273df323d6b0687d89c22b
  • Ciphertext (hex): 2eaaf40b994ee14d5f2cc0267df3fce6c136272e6d6f873c69b86155d91ed4ee8f4e67dac16814ab93c0bdb1e10a8b35f9af35b67b322aa611d1be58f4c3052e9a3ba4f3a922e7db4c663e88622ae6558a2f4337fa963ee04b4d4b80ea2c3b6266883c351e809b245441df277090c0d1ab01bd7150ff6d4ac2309bdd7199d2169d2c0d4092a421636f1189a04af5ae99a029ddd348fe51ce3ba322f874bc39017962260ca74b7421bed41cce0a62c9e8202fbbd1850c88e8e9584728d2f973cfe5cfc5fd1daebd6d515bb1f13ca3fa88630d7a838c6996d46d8794646210a94254b4e47cceecf6a87a40602b3a2719c065
  • Auth tag (hex): 45110139d2b2a7f8d4eb11ce71b5c936

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