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

Velo Clube U20 vs Aguai U20

Paulista U20 · Brazil · 26 Jun 2026, 18:00 UTC

Final score
2 : 2
Result
Lost
Pick
Velo Clube U20
Market
1x2
Model prob.
62.6%
Best price
1.80
Min odds
1.71
Stake factor
2.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)
N7g1m1q175+fct1CYnHaL2oAU1XLuF0Ho+p4QTsmF1C1/S7TP9hbTR+kHe4B+8GxaChVvBcsSbtkbcu1bFmi9OfTIM8RqPhInxKq6QzLY/vepgTZG2oR4oKkJRAyiYfr0ieS0c5J5+6m/cS5PmZ5LrTE7x7O0+L20qQvF02TzDdxeJlkROGApFbNxHJaUlyqSLzNuducUVlH5tqCtQMuES7YdJ9ny2W8MHO5NHtsTIyzRmQ+It238QhjUH2ldpKkc+BPxi9R2r5AovUdJ4+Mr8dzPOLIXkOJNUv/bT+emxs7uRBURRO40GIv8EcN1qsMmd/r8OeWDplxrXIdLC1L6RSuJ6In4rG5gQ4b/A==
key fingerprint sha256: d18bac547aaf52ef3741d33a5ba9bd0f0aa4de7dbd5f1ba5c2d3f794e605f7f8
Decrypt it & read the pick
Decryption key (released after the match)
2be8bf543cb9d45a462bae2c4fe66a125bbf682bec57914a4a50090a39316804
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("N7g1m1q175+fct1CYnHaL2oAU1XLuF0Ho+p4QTsmF1C1/S7TP9hbTR+kHe4B+8GxaChVvBcsSbtkbcu1bFmi9OfTIM8RqPhInxKq6QzLY/vepgTZG2oR4oKkJRAyiYfr0ieS0c5J5+6m/cS5PmZ5LrTE7x7O0+L20qQvF02TzDdxeJlkROGApFbNxHJaUlyqSLzNuducUVlH5tqCtQMuES7YdJ9ny2W8MHO5NHtsTIyzRmQ+It238QhjUH2ldpKkc+BPxi9R2r5AovUdJ4+Mr8dzPOLIXkOJNUv/bT+emxs7uRBURRO40GIv8EcN1qsMmd/r8OeWDplxrXIdLC1L6RSuJ6In4rG5gQ4b/A=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("2be8bf543cb9d45a462bae2c4fe66a125bbf682bec57914a4a50090a39316804".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): 2be8bf543cb9d45a462bae2c4fe66a125bbf682bec57914a4a50090a39316804
  • IV / nonce (hex): 37b8359b5ab5ef9f9f72dd42
  • Ciphertext (hex): 6271da2f6a005355cbb85d07a3ea78413b261750b5fd2ed33fd85b4d1fa41dee01fbc1b1682855bc172c49bb646dcbb56c59a2f4e7d320cf11a8f8489f12aae90ccb63fbdea604d91b6a11e282a42510328987ebd22792d1ce49e7eea6fdc4b93e66792eb4c4ef1eced3e2f6d2a42f174d93cc377178996444e180a456cdc4725a525caa48bccdb9db9c515947e6da82b5032e112ed8749f67cb65bc3073b9347b6c4c8cb346643e22ddb7f10863507da57692a473e04fc62f51dabe40a2f51d278f8cafc7733ce2c85e4389354bff6d3f9e9b1b3bb910544513b8d0622ff0470dd6ab0c99dfebf0e7960e9971ad721d
  • Auth tag (hex): 2c2d4be914ae27a227e2b1b9810e1bfc

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