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

Marek Dupnitsa vs Pirin Blagoevgrad

Second League · Bulgaria · 13 Sept 2026, 14:00 UTC

Final score
3 : 0
Result
Won
Pick
Marek Dupnitsa
Market
1X2
CLV vs fair close
+19.57%
Model prob.
75.1%
Best price
1.40
Min odds
1.36
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)
JaDwAq05WRUEdMWp+Qal/cjqoIAASuam/OSkrjaGi+YQ8Ybyrx0HUmSBNFz+LHbDIhZUYB5RaLt3uss8J09obPInbxGS5Ldx4JWPoa4XNX74EZlPp7ht584Bidr6H2Hq8b0DP6JkhEE6qEm4Z8UuaAVZtUv+2+KSJgBtGXu0xI4bdl/DdGNr5rMXKPlUgTzxAcOGmy0qr/kvuvx2QSsLbRcrQlEuavL0ftkmmmP9fTGkrES2Uck5e64I+k/dcOvsK9SCI3riOw6qDiSzmlzFQu0wHGzCC8UUG5zOZAXBPC+hpytFNlK1xLUZCMYgZwpXV72gZiamWFqQP83xgFK3Avngv9EHbml1G8t+mJyh
key fingerprint sha256: 459b87abbd671c17759b06b89c8c0f08e4e3b9a8f327657d9096dab8acdef59e
Decrypt it & read the pick
Decryption key (released after the match)
4857d93af8f64c1e729eeb4e77ea3e674e7c6b0e73d3b3632801648eb19a5c6d
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("JaDwAq05WRUEdMWp+Qal/cjqoIAASuam/OSkrjaGi+YQ8Ybyrx0HUmSBNFz+LHbDIhZUYB5RaLt3uss8J09obPInbxGS5Ldx4JWPoa4XNX74EZlPp7ht584Bidr6H2Hq8b0DP6JkhEE6qEm4Z8UuaAVZtUv+2+KSJgBtGXu0xI4bdl/DdGNr5rMXKPlUgTzxAcOGmy0qr/kvuvx2QSsLbRcrQlEuavL0ftkmmmP9fTGkrES2Uck5e64I+k/dcOvsK9SCI3riOw6qDiSzmlzFQu0wHGzCC8UUG5zOZAXBPC+hpytFNlK1xLUZCMYgZwpXV72gZiamWFqQP83xgFK3Avngv9EHbml1G8t+mJyh"), c => c.charCodeAt(0));
const key  = Uint8Array.from("4857d93af8f64c1e729eeb4e77ea3e674e7c6b0e73d3b3632801648eb19a5c6d".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): 4857d93af8f64c1e729eeb4e77ea3e674e7c6b0e73d3b3632801648eb19a5c6d
  • IV / nonce (hex): 25a0f002ad3959150474c5a9
  • Ciphertext (hex): f906a5fdc8eaa080004ae6a6fce4a4ae36868be610f186f2af1d07526481345cfe2c76c3221654601e5168bb77bacb3c274f686cf2276f1192e4b771e0958fa1ae17357ef811994fa7b86de7ce0189dafa1f61eaf1bd033fa26484413aa849b867c52e680559b54bfedbe29226006d197bb4c48e1b765fc374636be6b31728f954813cf101c3869b2d2aaff92fbafc76412b0b6d172b42512e6af2f47ed9269a63fd7d31a4ac44b651c9397bae08fa4fdd70ebec2bd482237ae23b0eaa0e24b39a5cc542ed301c6cc20bc5141b9cce6405c13c2fa1a72b453652b5c4b51908c620670a5757bda06626a6585a903fcdf18052
  • Auth tag (hex): b702f9e0bfd1076e69751bcb7e989ca1

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