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

Rubio Ñú Res. vs Sportivo Ameliano Res.

Division Profesional Reserva · Paraguay · 29 Jul 2026, 18:00 UTC

Final score
1 : 7
Result
Lost
Pick
Rubio Ñú Res.
Market
1x2
Model prob.
7.7%
Best price
61.80
Min odds
27.03
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.

Sealed at 29 Jul 2026, 11:39 UTC — published in:
Encrypted pick (AES-256-GCM)
6MGURLLwoCcJQmzWwpgEbvba9B+i1Eydga5WdlVW0iYzt8AfDZz+hoKoKE4CWTfGFngvCRNGXNUimQC3mZlcRtRvJbBLxy/AV//N4w2H1bMrUtmSwj3+wA0qiXn3e+gv8/8DLCfuUUzGntqj6G4yiSF3E67yo1Cpxt9mZJ5S/w5XEVPYNDnu+2L+SN83o5eQHRuMAq+Wb2Z2sn4vu3qlD8L3zFoDK7KBWLdMyqRZLZsT8h7W9aNvHQelIYxHm4h9VUPHN2KdLpeovyxLewLxTHkLaqSJMut2zgveWzxLpXxqact5os3+aert2jKQzyg8lJjfBU1xtniIiZd8fb1g/R06w3rhz8r9fTBz9A==
key fingerprint sha256: 0e36b0ec1a527cdd02f73084567b7bb5c34240b636d436374666cbb8ab33dc32
Decrypt it & read the pick
Decryption key (released after the match)
ec2a431b261f84acbb2943c10d7d4dfd5819e39feca091d7c465affa3228982f
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("6MGURLLwoCcJQmzWwpgEbvba9B+i1Eydga5WdlVW0iYzt8AfDZz+hoKoKE4CWTfGFngvCRNGXNUimQC3mZlcRtRvJbBLxy/AV//N4w2H1bMrUtmSwj3+wA0qiXn3e+gv8/8DLCfuUUzGntqj6G4yiSF3E67yo1Cpxt9mZJ5S/w5XEVPYNDnu+2L+SN83o5eQHRuMAq+Wb2Z2sn4vu3qlD8L3zFoDK7KBWLdMyqRZLZsT8h7W9aNvHQelIYxHm4h9VUPHN2KdLpeovyxLewLxTHkLaqSJMut2zgveWzxLpXxqact5os3+aert2jKQzyg8lJjfBU1xtniIiZd8fb1g/R06w3rhz8r9fTBz9A=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("ec2a431b261f84acbb2943c10d7d4dfd5819e39feca091d7c465affa3228982f".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): ec2a431b261f84acbb2943c10d7d4dfd5819e39feca091d7c465affa3228982f
  • IV / nonce (hex): e8c19444b2f0a02709426cd6
  • Ciphertext (hex): c298046ef6daf41fa2d44c9d81ae56765556d22633b7c01f0d9cfe8682a8284e025937c616782f0913465cd5229900b799995c46d46f25b04bc72fc057ffcde30d87d5b32b52d992c23dfec00d2a8979f77be82ff3ff032c27ee514cc69edaa3e86e3289217713aef2a350a9c6df66649e52ff0e571153d83439eefb62fe48df37a397901d1b8c02af966f6676b27e2fbb7aa50fc2f7cc5a032bb28158b74ccaa4592d9b13f21ed6f5a36f1d07a5218c479b887d5543c737629d2e97a8bf2c4b7b02f14c790b6aa48932eb76ce0bde5b3c4ba57c6a69cb79a2cdfe69eaedda3290cf283c9498df054d71b6788889977c
  • Auth tag (hex): 7dbd60fd1d3ac37ae1cfcafd7d3073f4

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. 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.