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

San Marcos de Arica vs Deportes Copiapo

Primera B · Chile · 06 Sept 2026, 00:00 UTC

Final score
2 : 1
Result
Won
Pick
San Marcos de Arica
Market
1X2
CLV vs fair close
+2.41%
Model prob.
56.5%
Best price
1.95
Min odds
1.81
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)
LrboJ55CTpZUwAWchgLJm8sDjOOh6z499zED20H+0pcCRWOX835U0gjTEICtrF/D0YT3xBqOBHd5T6SlDqgKQMnTAoUIuvjhlWjNMryvOkENSzYkDvwh3uJsOFzTblONBqNw9U+90tt0E2URFVVKwufJy4CiWNPxIa/3GS2r1qQP/mL/3hU/76Mvq84Dtlk7g4Urnh7chkCUQwWRK4QE+XDradY0xXMbpUZkv8zej181jAFCVMwE9B2ThVOcAZdAZs39WvTRb4+Eaf7gKjnBhabrVioM+HsveMIlKtwuEttydVK4P8emyHuXwDeTZcwc7o9g7nXppH114rXBvWDLSrbRO2RXFtb9RdT1b6Vi7ZlKDXxzcYI=
key fingerprint sha256: e1e0e753210cd31667062ccebbde3953d4135afea82010f07985215de6ac3485
Decrypt it & read the pick
Decryption key (released after the match)
9ab6c85356b21a8d9e6e7f5ccec3676c83f7bd96d58fde9aaefb2de09e2afe99
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("LrboJ55CTpZUwAWchgLJm8sDjOOh6z499zED20H+0pcCRWOX835U0gjTEICtrF/D0YT3xBqOBHd5T6SlDqgKQMnTAoUIuvjhlWjNMryvOkENSzYkDvwh3uJsOFzTblONBqNw9U+90tt0E2URFVVKwufJy4CiWNPxIa/3GS2r1qQP/mL/3hU/76Mvq84Dtlk7g4Urnh7chkCUQwWRK4QE+XDradY0xXMbpUZkv8zej181jAFCVMwE9B2ThVOcAZdAZs39WvTRb4+Eaf7gKjnBhabrVioM+HsveMIlKtwuEttydVK4P8emyHuXwDeTZcwc7o9g7nXppH114rXBvWDLSrbRO2RXFtb9RdT1b6Vi7ZlKDXxzcYI="), c => c.charCodeAt(0));
const key  = Uint8Array.from("9ab6c85356b21a8d9e6e7f5ccec3676c83f7bd96d58fde9aaefb2de09e2afe99".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): 9ab6c85356b21a8d9e6e7f5ccec3676c83f7bd96d58fde9aaefb2de09e2afe99
  • IV / nonce (hex): 2eb6e8279e424e9654c0059c
  • Ciphertext (hex): 8602c99bcb038ce3a1eb3e3df73103db41fed29702456397f37e54d208d31080adac5fc3d184f7c41a8e0477794fa4a50ea80a40c9d3028508baf8e19568cd32bcaf3a410d4b36240efc21dee26c385cd36e538d06a370f54fbdd2db7413651115554ac2e7c9cb80a258d3f121aff7192dabd6a40ffe62ffde153fefa32fabce03b6593b83852b9e1edc8640944305912b8404f970eb69d634c5731ba54664bfccde8f5f358c014254cc04f41d9385539c01974066cdfd5af4d16f8f8469fee02a39c185a6eb562a0cf87b2f78c2252adc2e12db727552b83fc7a6c87b97c0379365cc1cee8f60ee75e9a47d75e2b5c1bd60cb4ab6d13b645716
  • Auth tag (hex): d6fd45d4f56fa562ed994a0d7c737182

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