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

Shahrdari Noshahr vs Mes Kerman

Azadegan League · Iran · 27 Jun 2026, 15:00 UTC

Final score
1 : 1
Result
Lost
Pick
Shahrdari Noshahr
Market
1x2
Model prob.
37.3%
Best price
3.37
Min odds
3.00
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)
VjR2bWytRliWQzh1MIauxmTt/ZhlC52mTtrr2EtxYx5rLavQ61CvQN1VnCli421/bH1W+NvndFpiRgg0KCNaS4OJAU8PE4088TVYw2YNHEefWa39qGWt7giCefuwr9sFrOJycT3C4WlnInXFXTIRoXEDQ0YyrcAg4GDYlAr25Hc83PTDt8NVo205ALGOOf3A85vE1i0DSDehL61Mj3q9sWzFH1Z4oCXOiqLnkGYIYuhl6UmwR0p/UlUfMYt7N/IY6hvrREpvOr1OgZ+bSFLD3MCRn7B9x2B/BSMtINjYPKb5Cj7Z4ODEmrGwsh9GZbU0m7cR6YBB4+JxQHHwbrRqaxIAEpUMfqtY6ebPD1Q=
key fingerprint sha256: 4e28fab58721375d2aff9227aef57318ff3d50d942e328e79bcf1084a9d966e8
Decrypt it & read the pick
Decryption key (released after the match)
a6e1c6cf415819d3987937e11d09ec3b1461fc89dcf8a27d3777af6ededaaade
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("VjR2bWytRliWQzh1MIauxmTt/ZhlC52mTtrr2EtxYx5rLavQ61CvQN1VnCli421/bH1W+NvndFpiRgg0KCNaS4OJAU8PE4088TVYw2YNHEefWa39qGWt7giCefuwr9sFrOJycT3C4WlnInXFXTIRoXEDQ0YyrcAg4GDYlAr25Hc83PTDt8NVo205ALGOOf3A85vE1i0DSDehL61Mj3q9sWzFH1Z4oCXOiqLnkGYIYuhl6UmwR0p/UlUfMYt7N/IY6hvrREpvOr1OgZ+bSFLD3MCRn7B9x2B/BSMtINjYPKb5Cj7Z4ODEmrGwsh9GZbU0m7cR6YBB4+JxQHHwbrRqaxIAEpUMfqtY6ebPD1Q="), c => c.charCodeAt(0));
const key  = Uint8Array.from("a6e1c6cf415819d3987937e11d09ec3b1461fc89dcf8a27d3777af6ededaaade".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): a6e1c6cf415819d3987937e11d09ec3b1461fc89dcf8a27d3777af6ededaaade
  • IV / nonce (hex): 5634766d6cad465896433875
  • Ciphertext (hex): 3086aec664edfd98650b9da64edaebd84b71631e6b2dabd0eb50af40dd559c2962e36d7f6c7d56f8dbe7745a6246083428235a4b8389014f0f138d3cf13558c3660d1c479f59adfda865adee088279fbb0afdb05ace272713dc2e169672275c55d3211a17103434632adc020e060d8940af6e4773cdcf4c3b7c355a36d3900b18e39fdc0f39bc4d62d034837a12fad4c8f7abdb16cc51f5678a025ce8aa2e790660862e865e949b0474a7f52551f318b7b37f218ea1beb444a6f3abd4e819f9b4852c3dcc0919fb07dc7607f05232d20d8d83ca6f90a3ed9e0e0c49ab1b0b21f4665b5349bb711e98041e3e2714071f06e
  • Auth tag (hex): b46a6b120012950c7eab58e9e6cf0f54

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