UDELAS vs San Francisco II
Liga Prom · Panama · 01 Aug 2026, 14: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.
QWcBRJVRmkf9h+hiimT09d27POdklhJd7EkKef7KejUgT+teMfzqk/3t0A1PX2WCMnlvZonjjixLtf2Gev56yZuVpH/SR8aDyZb8z48c0wJzpL7xvtbH9kGh1e0ImTGu2gzQ9G90bKblNeIRhhO2CtywXRnotaGYTc5VhNhHP9+cnP30qoL+CPtdhNAJ4ftcJWQzyCkbjWNwu/0nxQY+Opj+DOPbCBS6ptGWJU09yKy2cy/rw11ouqCkCV1XkKRYg/1fIlR7Q1AMKNYDBQNcqSAOEFwWdXJcRl4UFOZBoCc1r6AenMbTRmhRWJWJFfVleMkfGtIW8013JeBC0LnBJ56xHIM48LvmMaQYxkVf
03ad2189e54866702941eeab9b51838bc8f926ede502e30999b3021d0ca65a3bDecrypt 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("QWcBRJVRmkf9h+hiimT09d27POdklhJd7EkKef7KejUgT+teMfzqk/3t0A1PX2WCMnlvZonjjixLtf2Gev56yZuVpH/SR8aDyZb8z48c0wJzpL7xvtbH9kGh1e0ImTGu2gzQ9G90bKblNeIRhhO2CtywXRnotaGYTc5VhNhHP9+cnP30qoL+CPtdhNAJ4ftcJWQzyCkbjWNwu/0nxQY+Opj+DOPbCBS6ptGWJU09yKy2cy/rw11ouqCkCV1XkKRYg/1fIlR7Q1AMKNYDBQNcqSAOEFwWdXJcRl4UFOZBoCc1r6AenMbTRmhRWJWJFfVleMkfGtIW8013JeBC0LnBJ56xHIM48LvmMaQYxkVf"), c => c.charCodeAt(0));
const key = Uint8Array.from("03ad2189e54866702941eeab9b51838bc8f926ede502e30999b3021d0ca65a3b".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):
03ad2189e54866702941eeab9b51838bc8f926ede502e30999b3021d0ca65a3b - IV / nonce (hex):
4167014495519a47fd87e862 - Ciphertext (hex):
8a64f4f5ddbb3ce76496125dec490a79feca7a35204feb5e31fcea93fdedd00d4f5f658232796f6689e38e2c4bb5fd867afe7ac99b95a47fd247c683c996fccf8f1cd30273a4bef1bed6c7f641a1d5ed089931aeda0cd0f46f746ca6e535e2118613b60adcb05d19e8b5a1984dce5584d8473fdf9c9cfdf4aa82fe08fb5d84d009e1fb5c256433c8291b8d6370bbfd27c5063e3a98fe0ce3db0814baa6d196254d3dc8acb6732febc35d68baa0a4095d5790a45883fd5f22547b43500c28d60305035ca9200e105c1675725c465e1414e641a02735afa01e9cc6d346685158958915f56578c91f1ad216f34d7725e042d0b9 - Auth tag (hex):
c1279eb11c8338f0bbe631a418c6455f
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 #960541 · 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.