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

12 de Junio VH vs 3 de Noviembre

Division Intermedia · Paraguay · 27 Jul 2026, 23:00 UTC

Final score
1 : 0
Result
Won
Pick
12 de Junio VH
Market
1x2
Model prob.
66.0%
Best price
1.68
Min odds
1.61
Stake factor
1.80

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)
vS2qL/GLQKgUmPep4UMQfjLQGIaKJydbsaqgjcwkBTfqIz9Mo3j8wm7oWcRPgyblcRp3MBwgV+p0lL0Lo88iEk8Pz1aqRjSGoQDdgKqwp56pXg7RprJzbAnHZXLfsiaWvWCkCVaZFenScrIb7iV5JRDpyxW0eo1nBk6KzGg5nq2I2LF5jRPYoyZouKjszB8iLKeiQNLZ32gZ5grINyVdXfWWdopkC3jYkMr3mau/RBnlbJahsO1WxeJov0wO4YeHY9pQvY43Ti2+FUttXXJSSnLERhfxV7eYTwE/dep2RjUdoCfxONj3AbFk8m+EyiQnqaFRfzLz5PJxuBWjk/7rRnfJ8I2TQpmcQ/cs4A==
key fingerprint sha256: 1e9bafda81c34bbdef9ef7fa9124e937df581dcd64640b88c9c10204b8ccfba3
Decrypt it & read the pick
Decryption key (released after the match)
732ca1209a67d0fe4f6ec92d45861ddfe00f2b0a2890f60f60e9b23bb187be45
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("vS2qL/GLQKgUmPep4UMQfjLQGIaKJydbsaqgjcwkBTfqIz9Mo3j8wm7oWcRPgyblcRp3MBwgV+p0lL0Lo88iEk8Pz1aqRjSGoQDdgKqwp56pXg7RprJzbAnHZXLfsiaWvWCkCVaZFenScrIb7iV5JRDpyxW0eo1nBk6KzGg5nq2I2LF5jRPYoyZouKjszB8iLKeiQNLZ32gZ5grINyVdXfWWdopkC3jYkMr3mau/RBnlbJahsO1WxeJov0wO4YeHY9pQvY43Ti2+FUttXXJSSnLERhfxV7eYTwE/dep2RjUdoCfxONj3AbFk8m+EyiQnqaFRfzLz5PJxuBWjk/7rRnfJ8I2TQpmcQ/cs4A=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("732ca1209a67d0fe4f6ec92d45861ddfe00f2b0a2890f60f60e9b23bb187be45".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): 732ca1209a67d0fe4f6ec92d45861ddfe00f2b0a2890f60f60e9b23bb187be45
  • IV / nonce (hex): bd2daa2ff18b40a81498f7a9
  • Ciphertext (hex): e143107e32d018868a27275bb1aaa08dcc240537ea233f4ca378fcc26ee859c44f8326e5711a77301c2057ea7494bd0ba3cf22124f0fcf56aa463486a100dd80aab0a79ea95e0ed1a6b2736c09c76572dfb22696bd60a409569915e9d272b21bee25792510e9cb15b47a8d67064e8acc68399ead88d8b1798d13d8a32668b8a8eccc1f222ca7a240d2d9df6819e60ac837255d5df596768a640b78d890caf799abbf4419e56c96a1b0ed56c5e268bf4c0ee1878763da50bd8e374e2dbe154b6d5d72524a72c44617f157b7984f013f75ea7646351da027f138d8f701b164f26f84ca2427a9a1517f32f3e4f271b815a3
  • Auth tag (hex): 93feeb4677c9f08d9342999c43f72ce0

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