Moca vs Vega Real
Liga Mayor · Dominican Republic · 21 Aug 2026, 23:00 UTC
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.
O3Hc8ZiuOW1q3TyJQlIJUW7Juj23dCvDTJUytnotr9KbIZeRQdMPI9knmE7xjavbfKiG7ARgYhBEThMf2umiQu9GcSypviBGFbqiV1HMeoukH9Jldp3rmToSt/geyA3Vv5lZ2d57xhcHAWkomKh1qZjlIjXdVUWKaGGe2hos4T6ykBotpk69WvC4PSXsQ5CT85Ko9ySEwyhCmPe+R8STeqEBYSM6TGRji6yRgh+cQerEzUiQEZm3jV7F6F1A69kHVhkX3X+NNAz+yW0AqF8ey3N9+Oo09Hbj3pPVxbbkFFOlej890W4qZGj7n8RnpW5wR4+zqMvi77GB1DNhyI8mcb4RyshUYBdYLRmH
3440f51b0874e570df5172ba86ad41a5738a074f5ed4865ac612e6f86cf99cf4Decrypt 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 F12 → Console),
paste this, press Enter — it decrypts the exact pick shown above:
const blob = Uint8Array.from(atob("O3Hc8ZiuOW1q3TyJQlIJUW7Juj23dCvDTJUytnotr9KbIZeRQdMPI9knmE7xjavbfKiG7ARgYhBEThMf2umiQu9GcSypviBGFbqiV1HMeoukH9Jldp3rmToSt/geyA3Vv5lZ2d57xhcHAWkomKh1qZjlIjXdVUWKaGGe2hos4T6ykBotpk69WvC4PSXsQ5CT85Ko9ySEwyhCmPe+R8STeqEBYSM6TGRji6yRgh+cQerEzUiQEZm3jV7F6F1A69kHVhkX3X+NNAz+yW0AqF8ey3N9+Oo09Hbj3pPVxbbkFFOlej890W4qZGj7n8RnpW5wR4+zqMvi77GB1DNhyI8mcb4RyshUYBdYLRmH"), c => c.charCodeAt(0));
const key = Uint8Array.from("3440f51b0874e570df5172ba86ad41a5738a074f5ed4865ac612e6f86cf99cf4".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):
3440f51b0874e570df5172ba86ad41a5738a074f5ed4865ac612e6f86cf99cf4 - IV / nonce (hex):
3b71dcf198ae396d6add3c89 - Ciphertext (hex):
425209516ec9ba3db7742bc34c9532b67a2dafd29b21979141d30f23d927984ef18dabdb7ca886ec04606210444e131fdae9a242ef46712ca9be204615baa25751cc7a8ba41fd265769deb993a12b7f81ec80dd5bf9959d9de7bc6170701692898a875a998e52235dd55458a68619eda1a2ce13eb2901a2da64ebd5af0b83d25ec439093f392a8f72484c3284298f7be47c4937aa10161233a4c64638bac91821f9c41eac4cd48901199b78d5ec5e85d40ebd907561917dd7f8d340cfec96d00a85f1ecb737df8ea34f476e3de93d5c5b6e41453a57a3f3dd16e2a6468fb9fc467a56e70478fb3a8cbe2efb181d433 - Auth tag (hex):
61c88f2671be11cac8546017582d1987
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:
- Download the sealed batch file (.jsonl) and its proof (.ots) from GitHub.
- Drop both into opentimestamps.org (or run
ots verify *.ots). It replays the proof and confirms the Bitcoin block and its UTC time. - See it independently: block #963472 · 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.