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

Samaleshwari SC vs Baghpat FC

Durand Cup · India · 30 Jul 2026, 13:30 UTC

Final score
4 : 1
Result
Lost
Pick
Baghpat FC
Market
1x2
Model prob.
39.2%
Best price
3.19
Min odds
2.84
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)
FpmilggYKaf+lbOT076NzOmoCrVuroG7FgceBai+gMkUeYAjZnRC7VXTrxfDX774TNCqp+dKgRoUpUHVultwYlcxLb4rPqAvlZpc89PUYFr/VZDLyDsCgqBABJAyhZlPhDqM024Ma83qOF3GDlJZcVfrtz1t4j0JKyAcwZTlcxmcm5i9jQVmia7FIUjBWzdkc2YtCXKmuoHZdKOPfcakniJy7MP+VCHu0UxMbqFrg/FvdksA/Nw+7seAuW8zAPGUe399Bxr77j76XaFnNMHIZwXj+a9CsUzHLkYeeSztqrpnlwtAtWWiZyze/PehbkcV5x9URoF2nR2gV75279CTu6Cwi3pgrRGE
key fingerprint sha256: 44b8c6605dea5835f383fa3cb764ae212491a79d86a9bb944b769b5c93db39dd
Decrypt it & read the pick
Decryption key (released after the match)
5b14d805dc1bbfb496429bd570db072433b2c3376c849cb3ec1741f03ba6b968
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("FpmilggYKaf+lbOT076NzOmoCrVuroG7FgceBai+gMkUeYAjZnRC7VXTrxfDX774TNCqp+dKgRoUpUHVultwYlcxLb4rPqAvlZpc89PUYFr/VZDLyDsCgqBABJAyhZlPhDqM024Ma83qOF3GDlJZcVfrtz1t4j0JKyAcwZTlcxmcm5i9jQVmia7FIUjBWzdkc2YtCXKmuoHZdKOPfcakniJy7MP+VCHu0UxMbqFrg/FvdksA/Nw+7seAuW8zAPGUe399Bxr77j76XaFnNMHIZwXj+a9CsUzHLkYeeSztqrpnlwtAtWWiZyze/PehbkcV5x9URoF2nR2gV75279CTu6Cwi3pgrRGE"), c => c.charCodeAt(0));
const key  = Uint8Array.from("5b14d805dc1bbfb496429bd570db072433b2c3376c849cb3ec1741f03ba6b968".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): 5b14d805dc1bbfb496429bd570db072433b2c3376c849cb3ec1741f03ba6b968
  • IV / nonce (hex): 1699a296081829a7fe95b393
  • Ciphertext (hex): d3be8dcce9a80ab56eae81bb16071e05a8be80c914798023667442ed55d3af17c35fbef84cd0aaa7e74a811a14a541d5ba5b706257312dbe2b3ea02f959a5cf3d3d4605aff5590cbc83b0282a04004903285994f843a8cd36e0c6bcdea385dc60e52597157ebb73d6de23d092b201cc194e573199c9b98bd8d056689aec52148c15b376473662d0972a6ba81d974a38f7dc6a49e2272ecc3fe5421eed14c4c6ea16b83f16f764b00fcdc3eeec780b96f3300f1947b7f7d071afbee3efa5da16734c1c86705e3f9af42b14cc72e461e792cedaaba67970b40b565a2672cdefcf7a16e4715e71f544681769d1d
  • Auth tag (hex): a057be76efd093bba0b08b7a60ad1184

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