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

Orange County vs Colorado Springs

USL League One Cup · United States · 12 Jul 2026, 02:00 UTC

Final score
0 : 3
Result
Won
Pick
Colorado Springs
Market
1x2
Model prob.
59.3%
Best price
2.01
Min odds
1.81
Stake factor
2.60

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)
NVOjiz6Znd9YWtD/0IU4cktuXoIwfTmmwRj1S5qppGn9doRcQTxCbcRZYEimhW93Rcz22uAPl0rIMygosyCSjbnCFk9ZWQNKYkNvVB63yThEhTqwgY0I+gcC8p6RtFB/c+ek18/vP4udF1LuJtkCKQAG6W8JCKN9LUTZIuByP3OhCAgHyEpBqe63KOWGYOArxucWmFtEUDesm/P7LHWbcSAehmGXllJttQocPPs4CIDL1jvZk532MBcJtcqMsQ5DGAA7ReIu3bqhJjXfyt7ilCVbtryFEC1mRgDgzNJeCVoIEDjbk0HkDAdtm+FmfExFrM3c7aIsTmo5TDb+efBOYqzWOy1ee2rvRByFok5nwttj
key fingerprint sha256: 3ce45c3e5900df032be0ef8a9ddcb56bde16888d036a4e3099ba9d013f911ea2
Decrypt it & read the pick
Decryption key (released after the match)
b834da2a5080f7b86c472269458e55b1fdbb12eda0d759001eedaea5654d775f
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("NVOjiz6Znd9YWtD/0IU4cktuXoIwfTmmwRj1S5qppGn9doRcQTxCbcRZYEimhW93Rcz22uAPl0rIMygosyCSjbnCFk9ZWQNKYkNvVB63yThEhTqwgY0I+gcC8p6RtFB/c+ek18/vP4udF1LuJtkCKQAG6W8JCKN9LUTZIuByP3OhCAgHyEpBqe63KOWGYOArxucWmFtEUDesm/P7LHWbcSAehmGXllJttQocPPs4CIDL1jvZk532MBcJtcqMsQ5DGAA7ReIu3bqhJjXfyt7ilCVbtryFEC1mRgDgzNJeCVoIEDjbk0HkDAdtm+FmfExFrM3c7aIsTmo5TDb+efBOYqzWOy1ee2rvRByFok5nwttj"), c => c.charCodeAt(0));
const key  = Uint8Array.from("b834da2a5080f7b86c472269458e55b1fdbb12eda0d759001eedaea5654d775f".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): b834da2a5080f7b86c472269458e55b1fdbb12eda0d759001eedaea5654d775f
  • IV / nonce (hex): 3553a38b3e999ddf585ad0ff
  • Ciphertext (hex): d08538724b6e5e82307d39a6c118f54b9aa9a469fd76845c413c426dc4596048a6856f7745ccf6dae00f974ac8332828b320928db9c2164f5959034a62436f541eb7c93844853ab0818d08fa0702f29e91b4507f73e7a4d7cfef3f8b9d1752ee26d902290006e96f0908a37d2d44d922e0723f73a1080807c84a41a9eeb728e58660e02bc6e716985b445037ac9bf3fb2c759b71201e86619796526db50a1c3cfb380880cbd63bd9939df6301709b5ca8cb10e4318003b45e22eddbaa12635dfcadee294255bb6bc85102d664600e0ccd25e095a081038db9341e40c076d9be1667c4c45accddceda22c4e6a394c36fe79f04e62ac
  • Auth tag (hex): d63b2d5e7b6aef441c85a24e67c2db63

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