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

Mauá U20 vs Palmeiras U20

Paulista U20 · Brazil · 02 Aug 2026, 18:00 UTC

Final score
0 : 2
Result
Won
Pick
Palmeiras U20
Market
1x2
Model prob.
84.4%
Best price
1.28
Min odds
1.24
Stake factor
1.60

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)
NyLDa9XiixoJc2kufUBuNFLEb4Xvm6rbv42YxdOw0kaLzDs6VLaenwklhmcX7YRR5CpWG8gRY0NbLJuHKDMb/iyYxofNXhhGlAsJB7qAwD3vIRcALBZ4VIzk56kT2JlC9CnrJHEGYBMjjw7yFGCxR1WxKgpGKszRPZtlxfoX2hXTZGMEwns5L5scSxYtxsKLbhRfOeb+FERE6PDs7idXERnkgN22tARDojpPM+psRJS4ne6nGwjXdaZ/sw+EV5T31jTveUFDTsDfoTIv72wdZxIKedLB2GgTae3AP3pOPrRErG8A7GG7XCGYkMPEeK+zlaq/u6rGjIGf5n9k+EwB1R4/NYPKS9skVhmubuY=
key fingerprint sha256: e58fa9e9885f45a6d9c4c8ccefb3cb2963fc6e17dab7305141d05462fd7a4a09
Decrypt it & read the pick
Decryption key (released after the match)
26fffa23715250999fe254e3815b67245e326de196fb637eac1dacbd19887da4
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("NyLDa9XiixoJc2kufUBuNFLEb4Xvm6rbv42YxdOw0kaLzDs6VLaenwklhmcX7YRR5CpWG8gRY0NbLJuHKDMb/iyYxofNXhhGlAsJB7qAwD3vIRcALBZ4VIzk56kT2JlC9CnrJHEGYBMjjw7yFGCxR1WxKgpGKszRPZtlxfoX2hXTZGMEwns5L5scSxYtxsKLbhRfOeb+FERE6PDs7idXERnkgN22tARDojpPM+psRJS4ne6nGwjXdaZ/sw+EV5T31jTveUFDTsDfoTIv72wdZxIKedLB2GgTae3AP3pOPrRErG8A7GG7XCGYkMPEeK+zlaq/u6rGjIGf5n9k+EwB1R4/NYPKS9skVhmubuY="), c => c.charCodeAt(0));
const key  = Uint8Array.from("26fffa23715250999fe254e3815b67245e326de196fb637eac1dacbd19887da4".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): 26fffa23715250999fe254e3815b67245e326de196fb637eac1dacbd19887da4
  • IV / nonce (hex): 3722c36bd5e28b1a0973692e
  • Ciphertext (hex): 7d406e3452c46f85ef9baadbbf8d98c5d3b0d2468bcc3b3a54b69e9f0925866717ed8451e42a561bc81163435b2c9b8728331bfe2c98c687cd5e1846940b0907ba80c03def2117002c1678548ce4e7a913d89942f429eb2471066013238f0ef21460b14755b12a0a462accd13d9b65c5fa17da15d3646304c27b392f9b1c4b162dc6c28b6e145f39e6fe144444e8f0ecee27571119e480ddb6b40443a23a4f33ea6c4494b89deea71b08d775a67fb30f845794f7d634ef7941434ec0dfa1322fef6c1d67120a79d2c1d8681369edc03f7a4e3eb444ac6f00ec61bb5c219890c3c478afb395aabfbbaac68c819fe67f64f8
  • Auth tag (hex): 4c01d51e3f3583ca4bdb245619ae6ee6

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