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

Dundee United vs Falkirk

Premiership · Scotland · 05 Sept 2026, 14:00 UTC

Final score
1 : 1
Result
Lost
Pick
Dundee United
Market
1X2
CLV vs fair close
-3.65%
Model prob.
52.7%
Best price
2.15
Min odds
1.93
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)
v4PNG+vlDoqOrKJqy98uKREKOCy/zRa5+8RDFiK3mRm0un2w3OKtT2HjYYNVAPXaUtm8WP94dE6h80gB0H7FNtSOi84mDNYi5DJPnJ1FbJC2ZDx1A9yZz6D0iTvqoRvYwKV9j0C/Ul6XXMuuzRnS1urH5M0zhFp2rb2ri/n6SVN2bMmpC5X3khIJIYBU28IKQX1k9oi+onOCpLsuZi13sIkWbpGcaEY1kmp1My3JXjLCXMhCheKgv286oag2CXRQnKXzt2NngLo7a+nh8i9EszShAucOxOjRChtUlM/wVAq0313CMpscWM+NLJbCATsDvCluuuKJMGLlPwXORmdchHjghIKkwGu3AtdBITcsmo4=
key fingerprint sha256: 2aed37b9f9ebe9874d91181755cd2f1fc7d1b8a3f59a35e36249710aecf5f106
Decrypt it & read the pick
Decryption key (released after the match)
c92c3722c082a57fd07920bb8a11272bd45fcaca51350f81ce86690c0fb64e50
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("v4PNG+vlDoqOrKJqy98uKREKOCy/zRa5+8RDFiK3mRm0un2w3OKtT2HjYYNVAPXaUtm8WP94dE6h80gB0H7FNtSOi84mDNYi5DJPnJ1FbJC2ZDx1A9yZz6D0iTvqoRvYwKV9j0C/Ul6XXMuuzRnS1urH5M0zhFp2rb2ri/n6SVN2bMmpC5X3khIJIYBU28IKQX1k9oi+onOCpLsuZi13sIkWbpGcaEY1kmp1My3JXjLCXMhCheKgv286oag2CXRQnKXzt2NngLo7a+nh8i9EszShAucOxOjRChtUlM/wVAq0313CMpscWM+NLJbCATsDvCluuuKJMGLlPwXORmdchHjghIKkwGu3AtdBITcsmo4="), c => c.charCodeAt(0));
const key  = Uint8Array.from("c92c3722c082a57fd07920bb8a11272bd45fcaca51350f81ce86690c0fb64e50".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): c92c3722c082a57fd07920bb8a11272bd45fcaca51350f81ce86690c0fb64e50
  • IV / nonce (hex): bf83cd1bebe50e8a8eaca26a
  • Ciphertext (hex): cbdf2e29110a382cbfcd16b9fbc4431622b79919b4ba7db0dce2ad4f61e361835500f5da52d9bc58ff78744ea1f34801d07ec536d48e8bce260cd622e4324f9c9d456c90b6643c7503dc99cfa0f4893beaa11bd8c0a57d8f40bf525e975ccbaecd19d2d6eac7e4cd33845a76adbdab8bf9fa4953766cc9a90b95f7921209218054dbc20a417d64f688bea27382a4bb2e662d77b089166e919c684635926a75332dc95e32c25cc84285e2a0bf6f3aa1a8360974509ca5f3b7636780ba3b6be9e1f22f44b334a102e70ec4e8d10a1b5494cff0540ab4df5dc2329b1c58cf8d2c96c2013b03bc296ebae2893062e53f05ce46675c84
  • Auth tag (hex): 78e08482a4c06bb702d74121372c9a8e

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