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

Itapirense U20 vs São Bento U20

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

Final score
2 : 1
Result
Won
Pick
Itapirense U20
Market
1x2
Model prob.
41.4%
Best price
3.13
Min odds
2.67
Stake factor
3.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)
qik2dBlSiMEU5msbhzGxseNirv4ZgS7+p4QPF92eAPkZd+0sJ+XqCPJxcLCxeXfPTiYF1hpW2LX6/HZvqSQXjoFbbTmJv5C5/pMOWoqqMSPRQX3isb+lbVp6+69iLD66Z/NZxNwluZkH1CIs9x6HaK+ZgFZs6hVtdKwHY5Sc7tVbExOd6IxjSI3/WvBv2dnze9HM79QnWk2gNRJZ3YoOMXBYvVNRMMQIIYJ4LkLUHYOVcFBx7otJSfRWSNOYWV13QW+At7E70jO3J1aUahwVaW1PhuhsphxXwZVfs1Y7truSo/wgx0ylgVcK8A9PODSvbJIjW26tcUA4PtFUdZFUTmhbkC5OdDw+1upDerM=
key fingerprint sha256: bacc5ec5c96c52ceea5bbae644c8386db5bdedeedd8761ab2fed3a42505b4426
Decrypt it & read the pick
Decryption key (released after the match)
37f7db4755e8cf379e4373d48ce7dc4513e72468a88137f4674fb8e91a15b371
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("qik2dBlSiMEU5msbhzGxseNirv4ZgS7+p4QPF92eAPkZd+0sJ+XqCPJxcLCxeXfPTiYF1hpW2LX6/HZvqSQXjoFbbTmJv5C5/pMOWoqqMSPRQX3isb+lbVp6+69iLD66Z/NZxNwluZkH1CIs9x6HaK+ZgFZs6hVtdKwHY5Sc7tVbExOd6IxjSI3/WvBv2dnze9HM79QnWk2gNRJZ3YoOMXBYvVNRMMQIIYJ4LkLUHYOVcFBx7otJSfRWSNOYWV13QW+At7E70jO3J1aUahwVaW1PhuhsphxXwZVfs1Y7truSo/wgx0ylgVcK8A9PODSvbJIjW26tcUA4PtFUdZFUTmhbkC5OdDw+1upDerM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("37f7db4755e8cf379e4373d48ce7dc4513e72468a88137f4674fb8e91a15b371".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): 37f7db4755e8cf379e4373d48ce7dc4513e72468a88137f4674fb8e91a15b371
  • IV / nonce (hex): aa293674195288c114e66b1b
  • Ciphertext (hex): 8731b1b1e362aefe19812efea7840f17dd9e00f91977ed2c27e5ea08f27170b0b17977cf4e2605d61a56d8b5fafc766fa924178e815b6d3989bf90b9fe930e5a8aaa3123d1417de2b1bfa56d5a7afbaf622c3eba67f359c4dc25b99907d4222cf71e8768af9980566cea156d74ac0763949ceed55b13139de88c63488dff5af06fd9d9f37bd1ccefd4275a4da0351259dd8a0e317058bd535130c4082182782e42d41d8395705071ee8b4949f45648d398595d77416f80b7b13bd233b72756946a1c15696d4f86e86ca61c57c1955fb3563bb6bb92a3fc20c74ca581570af00f4f3834af6c92235b6ead7140383ed15475
  • Auth tag (hex): 91544e685b902e4e743c3ed6ea437ab3

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