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

Monopoli vs Crotone

Serie C Group C · Italy · 20 Sept 2026, 12:30 UTC

Final score
2 : 2
Result
Won
Pick
Draw
Market
1X2
CLV vs fair close
+3.13%
Model prob.
34.5%
Best price
3.10
Min odds
2.96
Stake factor
1.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)
vktyDCHc+aSX1UJkOZWa4afHR1YCxOmDFFq/kkMtZQDRyK1bkSkeQ4lu4+zkuNOXI1diAeW7qnUzodePZi+tD3MPnDpw9K8jymK/QeCy0/cC9VomUSdX2VRhuGsYuXncdCoz/HBXnjNoNFNwBrEDc0jlJG95xwVBMmM0SCVDcCo6+QUtogQ1idBeQ+zXcNd/ZvRl7uPJ+34q0OQvsOVUUo4BlDixYSkmJwmOV5sjaLK+DqsKotFjSTTuDVhADWZpZ3mb1L+yov0ej4JISk4eICbvr1bCmt5axSpor+013M0HGX7GFC5rrH8qXL1HC/SUka8ovC3SGszS/+jvpipnJOG6
key fingerprint sha256: 904557b3c01192b19588088335bc03e4398cd3eed8d5c03dafa3dd2fb0056083
Decrypt it & read the pick
Decryption key (released after the match)
9b0866153197cd21ba2ad9ee8ecefd02950cf09e002c453c304b2974d8f4a623
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("vktyDCHc+aSX1UJkOZWa4afHR1YCxOmDFFq/kkMtZQDRyK1bkSkeQ4lu4+zkuNOXI1diAeW7qnUzodePZi+tD3MPnDpw9K8jymK/QeCy0/cC9VomUSdX2VRhuGsYuXncdCoz/HBXnjNoNFNwBrEDc0jlJG95xwVBMmM0SCVDcCo6+QUtogQ1idBeQ+zXcNd/ZvRl7uPJ+34q0OQvsOVUUo4BlDixYSkmJwmOV5sjaLK+DqsKotFjSTTuDVhADWZpZ3mb1L+yov0ej4JISk4eICbvr1bCmt5axSpor+013M0HGX7GFC5rrH8qXL1HC/SUka8ovC3SGszS/+jvpipnJOG6"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9b0866153197cd21ba2ad9ee8ecefd02950cf09e002c453c304b2974d8f4a623".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): 9b0866153197cd21ba2ad9ee8ecefd02950cf09e002c453c304b2974d8f4a623
  • IV / nonce (hex): be4b720c21dcf9a497d54264
  • Ciphertext (hex): 39959ae1a7c7475602c4e983145abf92432d6500d1c8ad5b91291e43896ee3ece4b8d39723576201e5bbaa7533a1d78f662fad0f730f9c3a70f4af23ca62bf41e0b2d3f702f55a26512757d95461b86b18b979dc742a33fc70579e336834537006b1037348e5246f79c70541326334482543702a3af9052da2043589d05e43ecd770d77f66f465eee3c9fb7e2ad0e42fb0e554528e019438b161292627098e579b2368b2be0eab0aa2d1634934ee0d58400d666967799bd4bfb2a2fd1e8f82484a4e1e2026efaf56c29ade5ac52a68afed35dccd07197ec6142e6bac7f2a5cbd470bf49491af
  • Auth tag (hex): 28bc2dd21accd2ffe8efa62a6724e1ba

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