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

Dinamo Moskva vs Krylya Sovetov

Premier League · Russia · 25 Jul 2026, 11:00 UTC

Final score
0 : 0
Result
Lost
Pick
Dinamo Moskva
Market
1x2
Model prob.
70.4%
Best price
1.57
Min odds
1.51
Stake factor
1.80

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)
10A2anzdV8evdY2HmZEw47TEGAlHEnoBfrXfes8fuYklKdrJMQiNN2DiNBM+gz2/4Brrtlfw4BlsoKzeplVXT1hIdLJ79Lc2EAYAuAL5mBNQKvd4TzoZsD61ElqBMg6SilDtQOSvE292jfjbvyAOyQ40Z2Lt9sNu9KEZAn+U9dBXAYQH9n0Y4q/p+SbMCbj6pg/zgmfQGIHhsODhvw2ni6+Ilw5k1W3yvIPsfCeDOFDB/IwnJMQIwAOeDIeuW7bIptHEmyTiqfCwm7P8NJtNTQB5xPAGX8VhN0JbVhB3+OLmaBHjGRkfK4a8K5nZF2zQ+rBUeWvMzkLXLiuoKM8H6h2rO32OcBCgIp9dqrM=
key fingerprint sha256: 7d7a70a6ccad944364c1c5b1eb94f4b8b3ae2c1d4c3c2c9727f2f3a258015e3a
Decrypt it & read the pick
Decryption key (released after the match)
267260f5ae225c7c2e19f29185f2e32f19ff8788a9bc8b8bea34423ba1d0126d
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("10A2anzdV8evdY2HmZEw47TEGAlHEnoBfrXfes8fuYklKdrJMQiNN2DiNBM+gz2/4Brrtlfw4BlsoKzeplVXT1hIdLJ79Lc2EAYAuAL5mBNQKvd4TzoZsD61ElqBMg6SilDtQOSvE292jfjbvyAOyQ40Z2Lt9sNu9KEZAn+U9dBXAYQH9n0Y4q/p+SbMCbj6pg/zgmfQGIHhsODhvw2ni6+Ilw5k1W3yvIPsfCeDOFDB/IwnJMQIwAOeDIeuW7bIptHEmyTiqfCwm7P8NJtNTQB5xPAGX8VhN0JbVhB3+OLmaBHjGRkfK4a8K5nZF2zQ+rBUeWvMzkLXLiuoKM8H6h2rO32OcBCgIp9dqrM="), c => c.charCodeAt(0));
const key  = Uint8Array.from("267260f5ae225c7c2e19f29185f2e32f19ff8788a9bc8b8bea34423ba1d0126d".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): 267260f5ae225c7c2e19f29185f2e32f19ff8788a9bc8b8bea34423ba1d0126d
  • IV / nonce (hex): d740366a7cdd57c7af758d87
  • Ciphertext (hex): 999130e3b4c4180947127a017eb5df7acf1fb9892529dac931088d3760e234133e833dbfe01aebb657f0e0196ca0acdea655574f584874b27bf4b736100600b802f99813502af7784f3a19b03eb5125a81320e928a50ed40e4af136f768df8dbbf200ec90e346762edf6c36ef4a119027f94f5d057018407f67d18e2afe9f926cc09b8faa60ff38267d01881e1b0e0e1bf0da78baf88970e64d56df2bc83ec7c27833850c1fc8c2724c408c0039e0c87ae5bb6c8a6d1c49b24e2a9f0b09bb3fc349b4d4d0079c4f0065fc56137425b561077f8e2e66811e319191f2b86bc2b99d9176cd0fab054796bccce42d72e2ba828
  • Auth tag (hex): cf07ea1dab3b7d8e7010a0229f5daab3

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