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

Minneapolis City vs West Virginia Chaos

USL League Two · United States · 16 Jul 2026, 20:00 UTC

Final score
2 : 0
Result
Won
Pick
Minneapolis City
Market
1x2
Model prob.
68.4%
Best price
1.62
Min odds
1.55
Stake factor
1.80

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)
mrDozQQHD0fp/QlDoB6m9RfvFJBF8/dm5vaDycIy8F3AH+JHwu4wNG1X7NQzfswI4d8O45zX+LR0vPv05da/EuLr4+I4/TW8a5IOi5Ez6i8BISeyVafuxoFoujJrfKr1QTb38yS5ipCHCHMHh67oYvVmL+GiP+q6atGs+xfMm4hd0gyi4xLiFN0kX5oX74IrYyCdaTbVubw5hCHy4TzmLHE8z00R2HKJ08R/uUumz77b+qDOPb32hnJbAwKnkdZf5J3DBK3I8IR2scbbs0Q3SnLxG4crlr5RGepAfzQGTCFlpsfY6Yqyynp35nV/jWztVtPbzeLliOsDjK2mizv0o2Knmtcc4OeTov+/V7KRd9w=
key fingerprint sha256: 75cfc626b62ef37197a842bb797be24461630f09cc2ef195006693f66d139eb6
Decrypt it & read the pick
Decryption key (released after the match)
21b9e2ae8b8169c463c5896437445123790bf606c368c43759e9bb3c5fc9c168
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("mrDozQQHD0fp/QlDoB6m9RfvFJBF8/dm5vaDycIy8F3AH+JHwu4wNG1X7NQzfswI4d8O45zX+LR0vPv05da/EuLr4+I4/TW8a5IOi5Ez6i8BISeyVafuxoFoujJrfKr1QTb38yS5ipCHCHMHh67oYvVmL+GiP+q6atGs+xfMm4hd0gyi4xLiFN0kX5oX74IrYyCdaTbVubw5hCHy4TzmLHE8z00R2HKJ08R/uUumz77b+qDOPb32hnJbAwKnkdZf5J3DBK3I8IR2scbbs0Q3SnLxG4crlr5RGepAfzQGTCFlpsfY6Yqyynp35nV/jWztVtPbzeLliOsDjK2mizv0o2Knmtcc4OeTov+/V7KRd9w="), c => c.charCodeAt(0));
const key  = Uint8Array.from("21b9e2ae8b8169c463c5896437445123790bf606c368c43759e9bb3c5fc9c168".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): 21b9e2ae8b8169c463c5896437445123790bf606c368c43759e9bb3c5fc9c168
  • IV / nonce (hex): 9ab0e8cd04070f47e9fd0943
  • Ciphertext (hex): a01ea6f517ef149045f3f766e6f683c9c232f05dc01fe247c2ee30346d57ecd4337ecc08e1df0ee39cd7f8b474bcfbf4e5d6bf12e2ebe3e238fd35bc6b920e8b9133ea2f012127b255a7eec68168ba326b7caaf54136f7f324b98a908708730787aee862f5662fe1a23feaba6ad1acfb17cc9b885dd20ca2e312e214dd245f9a17ef822b63209d6936d5b9bc398421f2e13ce62c713ccf4d11d87289d3c47fb94ba6cfbedbfaa0ce3dbdf686725b0302a791d65fe49dc304adc8f08476b1c6dbb344374a72f11b872b96be5119ea407f34064c2165a6c7d8e98ab2ca7a77e6757f8d6ced56d3dbcde2e588eb038cada68b3bf4a3
  • Auth tag (hex): 62a79ad71ce0e793a2ffbf57b29177dc

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