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

Mosta vs Birkirkara

Premier League · Malta · 30 Aug 2026, 16:30 UTC

Final score
1 : 0
Result
Lost
Pick
Birkirkara
Market
1X2
CLV vs fair close
-5.16%
Model prob.
61.0%
Best price
1.73
Min odds
1.67
Stake factor
2.50

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)
XcUxHETtJXcR6haqzDMR9e4xwvYJZo0/C0krcFXV9yyQP8KGPBuRgwQ/eiOCERV8Br7fFp8Hz813sUpfFtUQL+27MHf8DVoYDVwELw7oS4pscc7QyWcMSwa8ZXdjzGAbfBMViCNe12fepSFDq/4W1+VBtE+r5FMqKqwjC0zSNzxMANa8yq8LopZ5HAxDZ0YzzBdTMpieCaUjXlcqhrvR2PAfDYH3fa+hGYHgmfwy4gIrETlYx1vWq0U5zXoF+tpVUSmF+uKUuN2SDm3bw8HEhvj7bL6UL2WD2Tt81qeu8MOHSmz2Et9Gwm04D4jBnIRES36YX7qpSf23A51tovW7qO7tNM/8Q+rgvd+roQng
key fingerprint sha256: ed7363a1bf4cad15ab7d010f24e0dc96fe9f4896d59ddc087f632603ac521dba
Decrypt it & read the pick
Decryption key (released after the match)
9836b0a640ac1600ea8c73ecfa254e2089b5616cfab936fbbd5ec77028e59edc
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("XcUxHETtJXcR6haqzDMR9e4xwvYJZo0/C0krcFXV9yyQP8KGPBuRgwQ/eiOCERV8Br7fFp8Hz813sUpfFtUQL+27MHf8DVoYDVwELw7oS4pscc7QyWcMSwa8ZXdjzGAbfBMViCNe12fepSFDq/4W1+VBtE+r5FMqKqwjC0zSNzxMANa8yq8LopZ5HAxDZ0YzzBdTMpieCaUjXlcqhrvR2PAfDYH3fa+hGYHgmfwy4gIrETlYx1vWq0U5zXoF+tpVUSmF+uKUuN2SDm3bw8HEhvj7bL6UL2WD2Tt81qeu8MOHSmz2Et9Gwm04D4jBnIRES36YX7qpSf23A51tovW7qO7tNM/8Q+rgvd+roQng"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9836b0a640ac1600ea8c73ecfa254e2089b5616cfab936fbbd5ec77028e59edc".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): 9836b0a640ac1600ea8c73ecfa254e2089b5616cfab936fbbd5ec77028e59edc
  • IV / nonce (hex): 5dc5311c44ed257711ea16aa
  • Ciphertext (hex): cc3311f5ee31c2f609668d3f0b492b7055d5f72c903fc2863c1b9183043f7a238211157c06bedf169f07cfcd77b14a5f16d5102fedbb3077fc0d5a180d5c042f0ee84b8a6c71ced0c9670c4b06bc657763cc601b7c131588235ed767dea52143abfe16d7e541b44fabe4532a2aac230b4cd2373c4c00d6bccaaf0ba296791c0c43674633cc175332989e09a5235e572a86bbd1d8f01f0d81f77dafa11981e099fc32e2022b113958c75bd6ab4539cd7a05fada55512985fae294b8dd920e6ddbc3c1c486f8fb6cbe942f6583d93b7cd6a7aef0c3874a6cf612df46c26d380f88c19c84444b7e985fbaa949fdb7039d6da2f5
  • Auth tag (hex): bba8eeed34cffc43eae0bddfaba109e0

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