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

Millonarios vs Deportivo Pasto

Liga BetPlay · Colombia · 05 Aug 2026, 01:20 UTC

Final score
2 : 0
Result
Won
Pick
Millonarios
Market
1x2
Model prob.
70.0%
Best price
1.57
Min odds
1.51
Stake factor
1.70

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)
AMHClegnZWrJ+BXiviFF4dp9S1HvS9lU08HfeFeN0wiyl1hcIAlxPXatP1vWvS88uhj6HOYV1jScPLeAJCfPO4zHRESLvtaQUslGqBdt79bLM9HhFMWd8VqRPzLn/V9Y1yuKF74uNl6872NDHkodHXk6pjFq7qbFuGOJyKYVlv7kAqn6E5zn9ZkCoOhErybJiSRpRcx0kAzk2ymgiVECaQcjyqkeUcaABRPIW/X/S5MvpbSmhzRaUevKkMaw5v0ZJi6fqOGP+o7qVN5jsf4h3dOe2icjYF9JWkEl+Q8J9rFlTeSd0GUgHIhAzu7HXJfAIATVt/wJCKTIjNXzjSl78ZYRoSreIUD2vmFN
key fingerprint sha256: eb3eeec0b2deb0dd2458068498741855ff85c5b695ce5785aab518c255c50cb4
Decrypt it & read the pick
Decryption key (released after the match)
87cfad6877eb70f7c4779c00aa92f8ee43d6d7c315c64eff37be8c51003b8a1e
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("AMHClegnZWrJ+BXiviFF4dp9S1HvS9lU08HfeFeN0wiyl1hcIAlxPXatP1vWvS88uhj6HOYV1jScPLeAJCfPO4zHRESLvtaQUslGqBdt79bLM9HhFMWd8VqRPzLn/V9Y1yuKF74uNl6872NDHkodHXk6pjFq7qbFuGOJyKYVlv7kAqn6E5zn9ZkCoOhErybJiSRpRcx0kAzk2ymgiVECaQcjyqkeUcaABRPIW/X/S5MvpbSmhzRaUevKkMaw5v0ZJi6fqOGP+o7qVN5jsf4h3dOe2icjYF9JWkEl+Q8J9rFlTeSd0GUgHIhAzu7HXJfAIATVt/wJCKTIjNXzjSl78ZYRoSreIUD2vmFN"), c => c.charCodeAt(0));
const key  = Uint8Array.from("87cfad6877eb70f7c4779c00aa92f8ee43d6d7c315c64eff37be8c51003b8a1e".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): 87cfad6877eb70f7c4779c00aa92f8ee43d6d7c315c64eff37be8c51003b8a1e
  • IV / nonce (hex): 00c1c295e827656ac9f815e2
  • Ciphertext (hex): be2145e1da7d4b51ef4bd954d3c1df78578dd308b297585c2009713d76ad3f5bd6bd2f3cba18fa1ce615d6349c3cb7802427cf3b8cc744448bbed69052c946a8176defd6cb33d1e114c59df15a913f32e7fd5f58d72b8a17be2e365ebcef63431e4a1d1d793aa6316aeea6c5b86389c8a61596fee402a9fa139ce7f59902a0e844af26c989246945cc74900ce4db29a0895102690723caa91e51c6800513c85bf5ff4b932fa5b4a687345a51ebca90c6b0e6fd19262e9fa8e18ffa8eea54de63b1fe21ddd39eda2723605f495a4125f90f09f6b1654de49dd065201c8840ceeec75c97c02004d5b7fc0908a4c88cd5
  • Auth tag (hex): f38d297bf19611a12ade2140f6be614d

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