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

Laholms vs Eskilsminne

Division 1 Sodra · Sweden · 12 Sept 2026, 11:00 UTC

Final score
1 : 0
Result
Won
Pick
Laholms
Market
1X2
CLV vs fair close
+62.70%
Model prob.
43.5%
Best price
2.45
Min odds
2.34
Stake factor
1.50

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)
CErwF61VLeQRvuUbcbp6KiJea5PeMmSzh7XhMQrVivEFMLvFLcuQyeKPtkAeASrznJv8q7309bgPUYVqGSJ3BWudKy9B+zhHIvLzmIJz5JTEPmxQoUHbZHZtK5+H54993JPqh9c3/OKoMvvt+ygO3A3EjYDZfFbx/84FzSNYMEPeC/5MNmqGH1xnP4hRfKiw7vT/uw5Ogpwr1QvIrYQHUgwl6sDS81Ov8o+jM3P8I/nybOnjRqICI8gGRhL7v6eb9LirVwhHwihcDGqL6gCcxb7oPq3yrCQO/ETXkByY3N+qVZngRdjSpy5th6yW4oJfisRGCw+hPbki41oVwXoX57xpTdPAnzmIZhy2
key fingerprint sha256: 3e9666858e4bffcf3b9fe59ad5a997ffb66f22e278ff9cff8b9ee8a84e9319a5
Decrypt it & read the pick
Decryption key (released after the match)
9b60a1285d9c546462dfc965817b45bda75635d6b78c1176cde0ec58012fff3f
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("CErwF61VLeQRvuUbcbp6KiJea5PeMmSzh7XhMQrVivEFMLvFLcuQyeKPtkAeASrznJv8q7309bgPUYVqGSJ3BWudKy9B+zhHIvLzmIJz5JTEPmxQoUHbZHZtK5+H54993JPqh9c3/OKoMvvt+ygO3A3EjYDZfFbx/84FzSNYMEPeC/5MNmqGH1xnP4hRfKiw7vT/uw5Ogpwr1QvIrYQHUgwl6sDS81Ov8o+jM3P8I/nybOnjRqICI8gGRhL7v6eb9LirVwhHwihcDGqL6gCcxb7oPq3yrCQO/ETXkByY3N+qVZngRdjSpy5th6yW4oJfisRGCw+hPbki41oVwXoX57xpTdPAnzmIZhy2"), c => c.charCodeAt(0));
const key  = Uint8Array.from("9b60a1285d9c546462dfc965817b45bda75635d6b78c1176cde0ec58012fff3f".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): 9b60a1285d9c546462dfc965817b45bda75635d6b78c1176cde0ec58012fff3f
  • IV / nonce (hex): 084af017ad552de411bee51b
  • Ciphertext (hex): 71ba7a2a225e6b93de3264b387b5e1310ad58af10530bbc52dcb90c9e28fb6401e012af39c9bfcabbdf4f5b80f51856a192277056b9d2b2f41fb384722f2f3988273e494c43e6c50a141db64766d2b9f87e78f7ddc93ea87d737fce2a832fbedfb280edc0dc48d80d97c56f1ffce05cd23583043de0bfe4c366a861f5c673f88517ca8b0eef4ffbb0e4e829c2bd50bc8ad8407520c25eac0d2f353aff28fa33373fc23f9f26ce9e346a20223c8064612fbbfa79bf4b8ab570847c2285c0c6a8bea009cc5bee83eadf2ac240efc44d7901c98dcdfaa5599e045d8d2a72e6d87ac96e2825f8ac4460b0fa13db922e35a
  • Auth tag (hex): 15c17a17e7bc694dd3c09f3988661cb6

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