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

Melgar vs UCV Moquegua

Copa de La Liga · Peru · 29 Jun 2026, 18:00 UTC

Final score
0 : 0
Result
Lost
Pick
Melgar
Market
1x2
Model prob.
53.0%
Best price
2.14
Min odds
2.04
Stake factor
2.10

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)
fDXvhmSo3Lfprw5C+Bzv24I0KUvnXkbGzHnRWHdyCFFGPToUo7p/KrivmKBeru0yQqv1oYM/gj1BmvLVghjCAg5PONlobXqaUasnu0VwyMyerViqDhMxM2RwHktdunoPFWrtOmwOmEPrrdS+PPa99yCXzor+Uu8JnJXJwTgsAN0IaiD0m4klBPou7ZNucIxu5231S8e467zg1jjhYvcvGQP9yWgJfgzzP4LraAfsytcTPLvkouMslmn5ZTFEXgL3wf7ujveabwGfpZFXAYKPC1OpMXVvKX62YxrQGuaxdtfo3d6hQIChj2J3rHrei/BcV8PBerdJfd0i/I0XOIzdllw1SGywAI4=
key fingerprint sha256: b07f45701ccfc15e1d920f31900f168ac95b9d959886e2033f8d809aa4da28d2
Decrypt it & read the pick
Decryption key (released after the match)
08f341f92a069b442a9bc096745f9a5c2ce89a5e721d84e568df7e1a7bf574fa
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("fDXvhmSo3Lfprw5C+Bzv24I0KUvnXkbGzHnRWHdyCFFGPToUo7p/KrivmKBeru0yQqv1oYM/gj1BmvLVghjCAg5PONlobXqaUasnu0VwyMyerViqDhMxM2RwHktdunoPFWrtOmwOmEPrrdS+PPa99yCXzor+Uu8JnJXJwTgsAN0IaiD0m4klBPou7ZNucIxu5231S8e467zg1jjhYvcvGQP9yWgJfgzzP4LraAfsytcTPLvkouMslmn5ZTFEXgL3wf7ujveabwGfpZFXAYKPC1OpMXVvKX62YxrQGuaxdtfo3d6hQIChj2J3rHrei/BcV8PBerdJfd0i/I0XOIzdllw1SGywAI4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("08f341f92a069b442a9bc096745f9a5c2ce89a5e721d84e568df7e1a7bf574fa".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): 08f341f92a069b442a9bc096745f9a5c2ce89a5e721d84e568df7e1a7bf574fa
  • IV / nonce (hex): 7c35ef8664a8dcb7e9af0e42
  • Ciphertext (hex): f81cefdb8234294be75e46c6cc79d15877720851463d3a14a3ba7f2ab8af98a05eaeed3242abf5a1833f823d419af2d58218c2020e4f38d9686d7a9a51ab27bb4570c8cc9ead58aa0e13313364701e4b5dba7a0f156aed3a6c0e9843ebadd4be3cf6bdf72097ce8afe52ef099c95c9c1382c00dd086a20f49b892504fa2eed936e708c6ee76df54bc7b8ebbce0d638e162f72f1903fdc968097e0cf33f82eb6807eccad7133cbbe4a2e32c9669f96531445e02f7c1feee8ef79a6f019fa5915701828f0b53a931756f297eb6631ad01ae6b176d7e8dddea14080a18f6277ac7ade8bf05c57c3c17ab7497d
  • Auth tag (hex): dd22fc8d17388cdd965c35486cb0008e

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