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

VRN Muangnont FC vs Hua Hin City

League Cup · Thailand · 06 Sept 2026, 08:00 UTC

Final score
2 : 2
Result
Lost
Pick
VRN Muangnont FC
Market
1X2
CLV vs fair close
+33.19%
Model prob.
44.5%
Best price
2.60
Min odds
2.29
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)
ZWevOnlYZBxrgaeJMahT7ElGhrxTuPpEX6/mXOcb2RXTnZod9Tqb+BzznFi22FIowj2TnroLQAWRv7qXXAlhBZcDlCF/zXrxDGwkax3WZlN7a+0cCaWmrqH7UuEIwgQAD/iA8ouH15Pg2l2cPj1e4NJUYBVKLUbM8ri+3OZp6wrTUzcf9dPbOYtnZTpGD2d3ueM+g73KQJKLQS+bfNs72YTR4ubI8jMV0qPNoi6Vfk+pE8feWUb/WuUgFmx7FZxuyaH6DkpdYkG+QGigT6eTm08hxVSuGL6kG2eywjeAREgrz2qbodc0ZOH5gIMVrqmD2h2HBn1CORcaBIwlWCWCNB7DkSFl2rLf0aVj4xhzk2Zvew==
key fingerprint sha256: 145ca04816a5d933294991b8108bbd7347d1ee45f78c285346680df5ae813d40
Decrypt it & read the pick
Decryption key (released after the match)
4e4b983ca93e77a9f9a3b05ea65f967d6aff667286de3c7e37c59961b1bc909e
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("ZWevOnlYZBxrgaeJMahT7ElGhrxTuPpEX6/mXOcb2RXTnZod9Tqb+BzznFi22FIowj2TnroLQAWRv7qXXAlhBZcDlCF/zXrxDGwkax3WZlN7a+0cCaWmrqH7UuEIwgQAD/iA8ouH15Pg2l2cPj1e4NJUYBVKLUbM8ri+3OZp6wrTUzcf9dPbOYtnZTpGD2d3ueM+g73KQJKLQS+bfNs72YTR4ubI8jMV0qPNoi6Vfk+pE8feWUb/WuUgFmx7FZxuyaH6DkpdYkG+QGigT6eTm08hxVSuGL6kG2eywjeAREgrz2qbodc0ZOH5gIMVrqmD2h2HBn1CORcaBIwlWCWCNB7DkSFl2rLf0aVj4xhzk2Zvew=="), c => c.charCodeAt(0));
const key  = Uint8Array.from("4e4b983ca93e77a9f9a3b05ea65f967d6aff667286de3c7e37c59961b1bc909e".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): 4e4b983ca93e77a9f9a3b05ea65f967d6aff667286de3c7e37c59961b1bc909e
  • IV / nonce (hex): 6567af3a7958641c6b81a789
  • Ciphertext (hex): 31a853ec494686bc53b8fa445fafe65ce71bd915d39d9a1df53a9bf81cf39c58b6d85228c23d939eba0b400591bfba975c096105970394217fcd7af10c6c246b1dd666537b6bed1c09a5a6aea1fb52e108c204000ff880f28b87d793e0da5d9c3e3d5ee0d25460154a2d46ccf2b8bedce669eb0ad353371ff5d3db398b67653a460f6777b9e33e83bdca40928b412f9b7cdb3bd984d1e2e6c8f23315d2a3cda22e957e4fa913c7de5946ff5ae520166c7b159c6ec9a1fa0e4a5d6241be4068a04fa7939b4f21c554ae18bea41b67b2c2378044482bcf6a9ba1d73464e1f9808315aea983da1d87067d4239171a048c25582582341ec3
  • Auth tag (hex): 912165dab2dfd1a563e3187393666f7b

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