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

Phnom Penh Crown vs Kuching City

Champions League 2 · AFC · 17 Sept 2026, 12:15 UTC

Final score
2 : 1
Result
Won
Pick
Phnom Penh Crown
Market
1X2
CLV vs fair close
-13.66%
Model prob.
40.5%
Best price
2.60
Min odds
2.52
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)
rZSJiDu4y4ApNcDBhMn0IOD/hik8AxxqVAM2Dr08UUaKbNm8/J5lNj6mPXaeFgwmhFrnwGeX+3LKZKSNAH7GYzmZd173AyE9Ev6dV2UI4mGHArETY0hpkfte2h2lG9JDsIpkjTw5VJZXusd1u7dm60kI9C9KZg9Bb5vdGlCmGCkbSFa6vRtEdlBrxQZB6NNJeq884+R5cPdJPMrfT+SwlHUKbfUggnMgFJWOAsuyWW13pGh2wUP8eud/2onNEGN7P35Jok5z4+zyJEIN2cErL/olUMMw7xqoe3pSYzC4qrT3fV+AJtgtlcewQoIyPk5BMHUrwUJ68ZvXX2Bg72vrsEfjlyinp94PJ4Bi+ErgSPVN6u8=
key fingerprint sha256: da3b3c648f990ab51c5a407431f5d2375a3fe0eb62e26d70e4d739c94e1caac6
Decrypt it & read the pick
Decryption key (released after the match)
35cea7e135c422045d0c8aa2370de01de7b8155cc5a49947c94c433c07be0dd6
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("rZSJiDu4y4ApNcDBhMn0IOD/hik8AxxqVAM2Dr08UUaKbNm8/J5lNj6mPXaeFgwmhFrnwGeX+3LKZKSNAH7GYzmZd173AyE9Ev6dV2UI4mGHArETY0hpkfte2h2lG9JDsIpkjTw5VJZXusd1u7dm60kI9C9KZg9Bb5vdGlCmGCkbSFa6vRtEdlBrxQZB6NNJeq884+R5cPdJPMrfT+SwlHUKbfUggnMgFJWOAsuyWW13pGh2wUP8eud/2onNEGN7P35Jok5z4+zyJEIN2cErL/olUMMw7xqoe3pSYzC4qrT3fV+AJtgtlcewQoIyPk5BMHUrwUJ68ZvXX2Bg72vrsEfjlyinp94PJ4Bi+ErgSPVN6u8="), c => c.charCodeAt(0));
const key  = Uint8Array.from("35cea7e135c422045d0c8aa2370de01de7b8155cc5a49947c94c433c07be0dd6".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): 35cea7e135c422045d0c8aa2370de01de7b8155cc5a49947c94c433c07be0dd6
  • IV / nonce (hex): ad9489883bb8cb802935c0c1
  • Ciphertext (hex): 84c9f420e0ff86293c031c6a5403360ebd3c51468a6cd9bcfc9e65363ea63d769e160c26845ae7c06797fb72ca64a48d007ec6633999775ef703213d12fe9d576508e2618702b11363486991fb5eda1da51bd243b08a648d3c39549657bac775bbb766eb4908f42f4a660f416f9bdd1a50a618291b4856babd1b4476506bc50641e8d3497aaf3ce3e47970f7493ccadf4fe4b094750a6df52082732014958e02cbb2596d77a46876c143fc7ae77fda89cd10637b3f7e49a24e73e3ecf224420dd9c12b2ffa2550c330ef1aa87b7a526330b8aab4f77d5f8026d82d95c7b04282323e4e4130752bc1427af19bd75f6060ef6bebb047e397
  • Auth tag (hex): 28a7a7de0f278062f84ae048f54deaef

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