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

Estrella de Berisso vs Defensores Glew

Torneo Promocional Amateur · Argentina · 23 Jun 2026, 18:00 UTC

Final score
Result
Void
Pick
Draw
Market
1x2
Model prob.
36.7%
Best price
3.35
Min odds
3.05
Stake factor
2.90

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)
v0701VCsL8SpdpB37OC0kuqbVTImICAgwQzcyEkm95WlL6WSiVLEn+flCB0fms0tjMF/gKBirzzKyT6ezo32wQLEQnIWZOT5Muy6x9TnKP+8XBa3P6DPyFmyY2LpQMPFazxOHuQdzdJD/iq1BdM6r22E8zTPQsljVKkk7lDL618XvOZSBONv5ZXiJ04C2pwHLYgMEhX1Z7acyuCOohjd8YqQjPhPYPWCsNfTyIWX1pebwXnjIQOvWERsJnp+PpxwTF/z4eTOXeGORxYnJRrSo7vVi995BMcyO9N9XreKAnhaEyMOspPLHvye1A+WsXoT7BaMJMBDfnbNlsA5w8W4OISWJg==
key fingerprint sha256: db23a5122ad652f35b6b0629a4a9b9b29dfcda2e6806907ffabbca7806836534
Decrypt it & read the pick
Decryption key (released after the match)
d18727bcb55634f3cd31f4b409e2d5281ec4ed3166cf444a9fa563cc9c777682
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("v0701VCsL8SpdpB37OC0kuqbVTImICAgwQzcyEkm95WlL6WSiVLEn+flCB0fms0tjMF/gKBirzzKyT6ezo32wQLEQnIWZOT5Muy6x9TnKP+8XBa3P6DPyFmyY2LpQMPFazxOHuQdzdJD/iq1BdM6r22E8zTPQsljVKkk7lDL618XvOZSBONv5ZXiJ04C2pwHLYgMEhX1Z7acyuCOohjd8YqQjPhPYPWCsNfTyIWX1pebwXnjIQOvWERsJnp+PpxwTF/z4eTOXeGORxYnJRrSo7vVi995BMcyO9N9XreKAnhaEyMOspPLHvye1A+WsXoT7BaMJMBDfnbNlsA5w8W4OISWJg=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("d18727bcb55634f3cd31f4b409e2d5281ec4ed3166cf444a9fa563cc9c777682".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): d18727bcb55634f3cd31f4b409e2d5281ec4ed3166cf444a9fa563cc9c777682
  • IV / nonce (hex): bf4ef4d550ac2fc4a9769077
  • Ciphertext (hex): ece0b492ea9b553226202020c10cdcc84926f795a52fa5928952c49fe7e5081d1f9acd2d8cc17f80a062af3ccac93e9ece8df6c102c442721664e4f932ecbac7d4e728ffbc5c16b73fa0cfc859b26362e940c3c56b3c4e1ee41dcdd243fe2ab505d33aaf6d84f334cf42c96354a924ee50cbeb5f17bce65204e36fe595e2274e02da9c072d880c1215f567b69ccae08ea218ddf18a908cf84f60f582b0d7d3c88597d6979bc179e32103af58446c267a7e3e9c704c5ff3e1e4ce5de18e471627251ad2a3bbd58bdf7904c7323bd37d5eb78a02785a13230eb293cb1efc9ed40f96b17a13ec168c
  • Auth tag (hex): 24c0437e76cd96c039c3c5b838849626

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