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

Fénix vs General Lamadrid

Primera C · Argentina · 29 Jun 2026, 18:00 UTC

Final score
3 : 1
Result
Lost
Pick
General Lamadrid
Market
1x2
Model prob.
53.3%
Best price
2.16
Min odds
2.03
Stake factor
2.20

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)
oZNozyTL72lkl+xVPMa3Gg6PoFnsWlXeAw6yiwqjtBBq/WOgSo5Y79W3NgLy2lH6hB8FWp91plHbj+L4XgeomWq36jE9weqbS8iFlPMjFis3Jc+e17TZ5yQnyBXMxQ6Otd0my4T7CQ2CPdefncUEt9c8xH4XJJqlh6+CAfw65JJ7Z5t7uVs5r5UdH798ZuCjvjM0wPBKzzOmTdSClscHxciFyvHk8s2zZu1vTtTsDc6beC4VWnBqFKiXtucGNcJRHnO9P09Iim6BLz1y1FD+TQGMflnmpDX6uRDPGAmNjTnD0sffJCp/oA8Bsld8lGfV8quMmJghNSqf/pH0pCA+T1lYbFxfvrbCQWcsiooiU8e+
key fingerprint sha256: c55cf14dfb4ba431cc3a982c48cc6235a4e6188ad6c5b32f5d678f0c35a2be3f
Decrypt it & read the pick
Decryption key (released after the match)
793a4ca7dbd4b7963a749d6cb405f42a94b8c4772e896f1e48a2fe31b26ac44b
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("oZNozyTL72lkl+xVPMa3Gg6PoFnsWlXeAw6yiwqjtBBq/WOgSo5Y79W3NgLy2lH6hB8FWp91plHbj+L4XgeomWq36jE9weqbS8iFlPMjFis3Jc+e17TZ5yQnyBXMxQ6Otd0my4T7CQ2CPdefncUEt9c8xH4XJJqlh6+CAfw65JJ7Z5t7uVs5r5UdH798ZuCjvjM0wPBKzzOmTdSClscHxciFyvHk8s2zZu1vTtTsDc6beC4VWnBqFKiXtucGNcJRHnO9P09Iim6BLz1y1FD+TQGMflnmpDX6uRDPGAmNjTnD0sffJCp/oA8Bsld8lGfV8quMmJghNSqf/pH0pCA+T1lYbFxfvrbCQWcsiooiU8e+"), c => c.charCodeAt(0));
const key  = Uint8Array.from("793a4ca7dbd4b7963a749d6cb405f42a94b8c4772e896f1e48a2fe31b26ac44b".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): 793a4ca7dbd4b7963a749d6cb405f42a94b8c4772e896f1e48a2fe31b26ac44b
  • IV / nonce (hex): a19368cf24cbef696497ec55
  • Ciphertext (hex): 3cc6b71a0e8fa059ec5a55de030eb28b0aa3b4106afd63a04a8e58efd5b73602f2da51fa841f055a9f75a651db8fe2f85e07a8996ab7ea313dc1ea9b4bc88594f323162b3725cf9ed7b4d9e72427c815ccc50e8eb5dd26cb84fb090d823dd79f9dc504b7d73cc47e17249aa587af8201fc3ae4927b679b7bb95b39af951d1fbf7c66e0a3be3334c0f04acf33a64dd48296c707c5c885caf1e4f2cdb366ed6f4ed4ec0dce9b782e155a706a14a897b6e70635c2511e73bd3f4f488a6e812f3d72d450fe4d018c7e59e6a435fab910cf18098d8d39c3d2c7df242a7fa00f01b2577c9467d5f2ab8c989821352a9ffe91f4a4203e4f59
  • Auth tag (hex): 586c5c5fbeb6c241672c8a8a2253c7be

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