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

Santa Fe vs Unión Magdalena

Copa Colombia · Colombia · 06 Aug 2026, 00:00 UTC

Final score
2 : 0
Result
Won
Pick
Santa Fe
Market
1x2
Model prob.
55.1%
Best price
2.04
Min odds
1.96
Stake factor
2.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)
1w7IlyvYVdgZTfnwPLZ0/wnU8C52HDoigee0+jevh/LPuHCRieFISTPsSCOGV8SIeT/eG7HbD5rS+efoBZniaPb9e51dZ0Z8VM5yJni/z7a/qC7HZc3dCzY3TicGHSnw7PVniiY8rjPg8VRholWriDcXe4rpvYvO1/MiQFAdavSWztKIUXBhSgltmfSQ64XRb3EzIT8bWf6tRhZT4QPRxMyKcnt8iBgz+T1rXp2YIVRObY7rZ+q0hRU2dUZGABretVQYsXwdlNHkGz0ZLOvfcy9c6uOrxO46zVAJHncpNPlqEzagDIQGOznYLY6eiXsQkhtu5TkqBT2eXdVL/MLKBXg0RKevIA==
key fingerprint sha256: 093edcc1876400352001ff7ba7b2efcf2f6bdfabfa0b280037f8e9613e82d31d
Decrypt it & read the pick
Decryption key (released after the match)
4f843f42571a2c7caed575d2eaae56a3ac1810d581f985347dbd57ca52caa535
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("1w7IlyvYVdgZTfnwPLZ0/wnU8C52HDoigee0+jevh/LPuHCRieFISTPsSCOGV8SIeT/eG7HbD5rS+efoBZniaPb9e51dZ0Z8VM5yJni/z7a/qC7HZc3dCzY3TicGHSnw7PVniiY8rjPg8VRholWriDcXe4rpvYvO1/MiQFAdavSWztKIUXBhSgltmfSQ64XRb3EzIT8bWf6tRhZT4QPRxMyKcnt8iBgz+T1rXp2YIVRObY7rZ+q0hRU2dUZGABretVQYsXwdlNHkGz0ZLOvfcy9c6uOrxO46zVAJHncpNPlqEzagDIQGOznYLY6eiXsQkhtu5TkqBT2eXdVL/MLKBXg0RKevIA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4f843f42571a2c7caed575d2eaae56a3ac1810d581f985347dbd57ca52caa535".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): 4f843f42571a2c7caed575d2eaae56a3ac1810d581f985347dbd57ca52caa535
  • IV / nonce (hex): d70ec8972bd855d8194df9f0
  • Ciphertext (hex): 3cb674ff09d4f02e761c3a2281e7b4fa37af87f2cfb8709189e1484933ec48238657c488793fde1bb1db0f9ad2f9e7e80599e268f6fd7b9d5d67467c54ce722678bfcfb6bfa82ec765cddd0b36374e27061d29f0ecf5678a263cae33e0f15461a255ab8837177b8ae9bd8bced7f32240501d6af496ced2885170614a096d99f490eb85d16f7133213f1b59fead461653e103d1c4cc8a727b7c881833f93d6b5e9d9821544e6d8eeb67eab4851536754646001adeb55418b17c1d94d1e41b3d192cebdf732f5ceae3abc4ee3acd50091e772934f96a1336a00c84063b39d82d8e9e897b10921b6ee5392a
  • Auth tag (hex): 053d9e5dd54bfcc2ca05783444a7af20

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