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

Botafogo SP U20 vs XV de Piracicaba U20

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

Final score
1 : 1
Result
Lost
Pick
Botafogo SP U20
Market
1x2
Model prob.
60.5%
Best price
1.85
Min odds
1.77
Stake factor
1.90

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)
LNjti4RoIHe6mzTAXRVI4ylK0j61PN+uPlhnaJLMZYobRzIc2lw8VeGDFkuWlWILrErll/CjKkP1yjzMWNyl1qbHBSilsukKNT5Z0iY7pHAYOLPW4YHbrc/Nmm9MwIFvx8GfuzJ30RSIWbrc51LCLigPQpLQQcFqCW+xajdvlrlAZ8QrS+5WJ0WRoz9JQyJWISWi8lOnY4YsbIizYMi/+XX+zxg35YtvvkWOGTnD4cp/ijEqTp5zTmv1tPzYUL2CHvnsIPvqVqZ9AuDLgLxCg/v1SSisz8qLycj9BdymNzCT0TPbmW3ctTdSkzFWf17mIg3YRjZf5I/mjdjPr598w5X0byGBCA3YaIPG2QFkG/4=
key fingerprint sha256: f64eca6dfeb21f20a38c7ed739a6eefa538035e24f416c7f7e8f336226654631
Decrypt it & read the pick
Decryption key (released after the match)
e549f92034f7fbe00d883a14668a03e64df8f67d90aef52387835dcd6ea4e502
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("LNjti4RoIHe6mzTAXRVI4ylK0j61PN+uPlhnaJLMZYobRzIc2lw8VeGDFkuWlWILrErll/CjKkP1yjzMWNyl1qbHBSilsukKNT5Z0iY7pHAYOLPW4YHbrc/Nmm9MwIFvx8GfuzJ30RSIWbrc51LCLigPQpLQQcFqCW+xajdvlrlAZ8QrS+5WJ0WRoz9JQyJWISWi8lOnY4YsbIizYMi/+XX+zxg35YtvvkWOGTnD4cp/ijEqTp5zTmv1tPzYUL2CHvnsIPvqVqZ9AuDLgLxCg/v1SSisz8qLycj9BdymNzCT0TPbmW3ctTdSkzFWf17mIg3YRjZf5I/mjdjPr598w5X0byGBCA3YaIPG2QFkG/4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("e549f92034f7fbe00d883a14668a03e64df8f67d90aef52387835dcd6ea4e502".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): e549f92034f7fbe00d883a14668a03e64df8f67d90aef52387835dcd6ea4e502
  • IV / nonce (hex): 2cd8ed8b84682077ba9b34c0
  • Ciphertext (hex): 5d1548e3294ad23eb53cdfae3e58676892cc658a1b47321cda5c3c55e183164b9695620bac4ae597f0a32a43f5ca3ccc58dca5d6a6c70528a5b2e90a353e59d2263ba4701838b3d6e181dbadcfcd9a6f4cc0816fc7c19fbb3277d1148859badce752c22e280f4292d041c16a096fb16a376f96b94067c42b4bee56274591a33f494322562125a2f253a763862c6c88b360c8bff975fecf1837e58b6fbe458e1939c3e1ca7f8a312a4e9e734e6bf5b4fcd850bd821ef9ec20fbea56a67d02e0cb80bc4283fbf54928accfca8bc9c8fd05dca6373093d133db996ddcb537529331567f5ee6220dd846365fe48fe68dd8cfaf9f7cc3
  • Auth tag (hex): 95f46f2181080dd86883c6d901641bfe

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.