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

Guarani U20 vs Mauá U20

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

Final score
2 : 1
Result
Won
Pick
Guarani U20
Market
1x2
Model prob.
77.6%
Best price
1.47
Min odds
1.36
Stake factor
2.10

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)
Zwi2TtR0pWo0YsU75pVIC4N+03La65FvFDcFR+ngVqqVSJsVZP0uckclNQg9oxBbBeTSvs+Ln4tYNH7u1ilbppONTph1mCvtCZDkh6AqPFHcFcJ8epiOrNQCuADuNHJpNqgIJCHo/gktjPTVglDrmsShkzjMJoTVdisu1xH8RLHuRsPZN+pM//OOrdj5hvdA+OATGGGz6K/+WkkaC2xDiF3+4CDhKzGp2mCFUD2L3yaQm0kTxeBHb2OC9zzd/Sf2OE66N8Gpfskwji7ln6QUNJKbDSc7ybZkmS9j7I0252QNHY+2Qc+xAtuIT549mtCBpcKvBYoIjhtDvcwiCRFqGYvKFvNhXmkuyEPyFQ==
key fingerprint sha256: 1613d5e858ae96a6b04afadab8d8e826a1545d44e061be1f190e748a87a6364e
Decrypt it & read the pick
Decryption key (released after the match)
95fbaa280063319afb3fd6025ca24cbbfce5f6467467c6d40288345b1187c8e0
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("Zwi2TtR0pWo0YsU75pVIC4N+03La65FvFDcFR+ngVqqVSJsVZP0uckclNQg9oxBbBeTSvs+Ln4tYNH7u1ilbppONTph1mCvtCZDkh6AqPFHcFcJ8epiOrNQCuADuNHJpNqgIJCHo/gktjPTVglDrmsShkzjMJoTVdisu1xH8RLHuRsPZN+pM//OOrdj5hvdA+OATGGGz6K/+WkkaC2xDiF3+4CDhKzGp2mCFUD2L3yaQm0kTxeBHb2OC9zzd/Sf2OE66N8Gpfskwji7ln6QUNJKbDSc7ybZkmS9j7I0252QNHY+2Qc+xAtuIT549mtCBpcKvBYoIjhtDvcwiCRFqGYvKFvNhXmkuyEPyFQ=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("95fbaa280063319afb3fd6025ca24cbbfce5f6467467c6d40288345b1187c8e0".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): 95fbaa280063319afb3fd6025ca24cbbfce5f6467467c6d40288345b1187c8e0
  • IV / nonce (hex): 6708b64ed474a56a3462c53b
  • Ciphertext (hex): e695480b837ed372daeb916f14370547e9e056aa95489b1564fd2e72472535083da3105b05e4d2becf8b9f8b58347eeed6295ba6938d4e9875982bed0990e487a02a3c51dc15c27c7a988eacd402b800ee34726936a8082421e8fe092d8cf4d58250eb9ac4a19338cc2684d5762b2ed711fc44b1ee46c3d937ea4cfff38eadd8f986f740f8e0131861b3e8affe5a491a0b6c43885dfee020e12b31a9da6085503d8bdf26909b4913c5e0476f6382f73cddfd27f6384eba37c1a97ec9308e2ee59fa41434929b0d273bc9b664992f63ec8d36e7640d1d8fb641cfb102db884f9e3d9ad081a5c2af058a088e1b43bdcc22
  • Auth tag (hex): 09116a198bca16f3615e692ec843f215

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