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

Sacachispas vs Lugano

Primera C · Argentina · 27 Jun 2026, 16:00 UTC

Final score
0 : 1
Result
Lost
Pick
Sacachispas
Market
1x2
Model prob.
49.1%
Best price
2.39
Min odds
2.21
Stake factor
2.40

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)
e5J55/UhN3nSSuX6EqCXG8dSTE11QX98Fjv2mhLuAKPj0ZNnNdnFYyD7oIONdh3JGH8WZhpfJAAcrhmrUwUfOBWO5mzmH2Bb8QjseifV7y1bcMkUcNowchxlXBRNOt8e7yIb27JiErXC/wTKUxZ0+YJd7Kr3o1B6inIT0dfBxPkw1py4LKqntN055ny2jLHK7z+yDS7l+JcZZbzM1hKA7d93w4rzWcAbdiFukl9vIZRVLbDbAgczvqn2YZpS+fFH845k02oVp9bZgeaRtr/Oibwe+kebGWcelBbpFXgWN4FLtN5Yi/sLfUsnX4L+sAiXHG10RYzRuOS7OqG6k1b8e1SzlUta6Dc7jfqL
key fingerprint sha256: 40ca17e33089ce92525493e8d6f0b59c790feb22de8abfe8fd6d71792520a780
Decrypt it & read the pick
Decryption key (released after the match)
dcbad9b121f2f47fc6f8a01fbf7f47f7c8698bb90de1debfdcc46526f7d89b87
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("e5J55/UhN3nSSuX6EqCXG8dSTE11QX98Fjv2mhLuAKPj0ZNnNdnFYyD7oIONdh3JGH8WZhpfJAAcrhmrUwUfOBWO5mzmH2Bb8QjseifV7y1bcMkUcNowchxlXBRNOt8e7yIb27JiErXC/wTKUxZ0+YJd7Kr3o1B6inIT0dfBxPkw1py4LKqntN055ny2jLHK7z+yDS7l+JcZZbzM1hKA7d93w4rzWcAbdiFukl9vIZRVLbDbAgczvqn2YZpS+fFH845k02oVp9bZgeaRtr/Oibwe+kebGWcelBbpFXgWN4FLtN5Yi/sLfUsnX4L+sAiXHG10RYzRuOS7OqG6k1b8e1SzlUta6Dc7jfqL"), c => c.charCodeAt(0));
const key  = Uint8Array.from("dcbad9b121f2f47fc6f8a01fbf7f47f7c8698bb90de1debfdcc46526f7d89b87".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): dcbad9b121f2f47fc6f8a01fbf7f47f7c8698bb90de1debfdcc46526f7d89b87
  • IV / nonce (hex): 7b9279e7f5213779d24ae5fa
  • Ciphertext (hex): 12a0971bc7524c4d75417f7c163bf69a12ee00a3e3d1936735d9c56320fba0838d761dc9187f16661a5f24001cae19ab53051f38158ee66ce61f605bf108ec7a27d5ef2d5b70c91470da30721c655c144d3adf1eef221bdbb26212b5c2ff04ca531674f9825decaaf7a3507a8a7213d1d7c1c4f930d69cb82caaa7b4dd39e67cb68cb1caef3fb20d2ee5f8971965bcccd61280eddf77c38af359c01b76216e925f6f2194552db0db020733bea9f6619a52f9f147f38e64d36a15a7d6d981e691b6bfce89bc1efa479b19671e9416e915781637814bb4de588bfb0b7d4b275f82feb008971c6d74458cd1b8e4bb3aa1
  • Auth tag (hex): ba9356fc7b54b3954b5ae8373b8dfa8b

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