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

Motherwell vs Aberdeen

Premiership · Scotland · 15 Sept 2026, 18:45 UTC

Final score
0 : 4
Result
Lost
Pick
Motherwell
Market
1X2
CLV vs fair close
+3.52%
Model prob.
54.9%
Best price
2.00
Min odds
1.86
Stake factor
3.00

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)
rVQ4/dcrY3fC7SHqAOjUuLm+kq97EgTA27trfOsDVikdtLiRr/NXA29WS/a1/PaIjNKT1KhEeDYG/vpzr2/ZuIJyL9xhyIVM1+okSbADjSrcH1lmYGtfrxl4K5G24DphrLZ9GlYseo8cmRaiPjm7UmU9OXiliYFcVdBU7Tz1HRA6avcJKqYEdWAdcBVbK10/G01ApZy1kT7PrFZMY+gvlJb6NJVayHrT7HjNwpFF59tp8AxmdpIg2cfLMBh5Vh45zUt81m/rLUyJgavCpKCw+aDRMR1tmeAUN5coGOIcgpv5CJhbViOGrpkXA93lA1Ix5BDfBDma1aL1spTIRwyl2zssCRlYrA==
key fingerprint sha256: d9f78feef26026e318b3fb7781b4d20e424a2ed40d20b9f5a7d1aa74a9647d6a
Decrypt it & read the pick
Decryption key (released after the match)
4b74ef023aeb2fabd00a3112604e0d517d9908ab1c328f0184836f328ed51f0a
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("rVQ4/dcrY3fC7SHqAOjUuLm+kq97EgTA27trfOsDVikdtLiRr/NXA29WS/a1/PaIjNKT1KhEeDYG/vpzr2/ZuIJyL9xhyIVM1+okSbADjSrcH1lmYGtfrxl4K5G24DphrLZ9GlYseo8cmRaiPjm7UmU9OXiliYFcVdBU7Tz1HRA6avcJKqYEdWAdcBVbK10/G01ApZy1kT7PrFZMY+gvlJb6NJVayHrT7HjNwpFF59tp8AxmdpIg2cfLMBh5Vh45zUt81m/rLUyJgavCpKCw+aDRMR1tmeAUN5coGOIcgpv5CJhbViOGrpkXA93lA1Ix5BDfBDma1aL1spTIRwyl2zssCRlYrA=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4b74ef023aeb2fabd00a3112604e0d517d9908ab1c328f0184836f328ed51f0a".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): 4b74ef023aeb2fabd00a3112604e0d517d9908ab1c328f0184836f328ed51f0a
  • IV / nonce (hex): ad5438fdd72b6377c2ed21ea
  • Ciphertext (hex): 00e8d4b8b9be92af7b1204c0dbbb6b7ceb0356291db4b891aff357036f564bf6b5fcf6888cd293d4a844783606fefa73af6fd9b882722fdc61c8854cd7ea2449b0038d2adc1f5966606b5faf19782b91b6e03a61acb67d1a562c7a8f1c9916a23e39bb52653d3978a589815c55d054ed3cf51d103a6af7092aa60475601d70155b2b5d3f1b4d40a59cb5913ecfac564c63e82f9496fa34955ac87ad3ec78cdc29145e7db69f00c66769220d9c7cb301879561e39cd4b7cd66feb2d4c8981abc2a4a0b0f9a0d1311d6d99e01437972818e21c829bf908985b562386ae991703dde5035231e410df04399a
  • Auth tag (hex): d5a2f5b294c8470ca5db3b2c091958ac

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