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

NSÍ II vs B36 II

1. Deild · Faroe Islands · 27 Jun 2026, 13:15 UTC

Final score
0 : 1
Result
Won
Pick
B36 II
Market
1x2
Model prob.
28.0%
Best price
4.63
Min odds
4.17
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)
1vowBg04oAjO0jwsC/7sZJuAUZSsAmefw1XzYBMbNRnwZxzJl+/6K8zYcoUmnZwqaMUv9qLhqLnKjckeUSOfJJ1FvI/yLUqrhw51fyWsimWjXbSdwUTZghhq2Bi/GUhZsMt2pttNx3trECf/VzOBcG36mXroDYTGtv3HprmGMWxPTkt5t2AV8feVYZ/ZIduJz5Qbwbg3QcdUfpDXXC35LwE6Ma8+lTfNvDsaKrSWY3IxSccCufpkMP0rKmP6dJNTSKS4o70nx2uGeKCmgEOlP7zoJqwqhBZX1i28YrROp7mLdiSkt7ORRGNS1AVp8t2g8ZlLmZQgGEM6jR1z1m6voXDp2EYO
key fingerprint sha256: 6d87a8d28b36bb0201d602521833966bfb1dfbef4b700ebf4fdae68b0d6448a9
Decrypt it & read the pick
Decryption key (released after the match)
d6ea60b404f01e97096537156188540118928dd5f3158c00b85d028329d549dd
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("1vowBg04oAjO0jwsC/7sZJuAUZSsAmefw1XzYBMbNRnwZxzJl+/6K8zYcoUmnZwqaMUv9qLhqLnKjckeUSOfJJ1FvI/yLUqrhw51fyWsimWjXbSdwUTZghhq2Bi/GUhZsMt2pttNx3trECf/VzOBcG36mXroDYTGtv3HprmGMWxPTkt5t2AV8feVYZ/ZIduJz5Qbwbg3QcdUfpDXXC35LwE6Ma8+lTfNvDsaKrSWY3IxSccCufpkMP0rKmP6dJNTSKS4o70nx2uGeKCmgEOlP7zoJqwqhBZX1i28YrROp7mLdiSkt7ORRGNS1AVp8t2g8ZlLmZQgGEM6jR1z1m6voXDp2EYO"), c => c.charCodeAt(0));
const key  = Uint8Array.from("d6ea60b404f01e97096537156188540118928dd5f3158c00b85d028329d549dd".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): d6ea60b404f01e97096537156188540118928dd5f3158c00b85d028329d549dd
  • IV / nonce (hex): d6fa30060d38a008ced23c2c
  • Ciphertext (hex): 0bfeec649b805194ac02679fc355f360131b3519f0671cc997effa2bccd87285269d9c2a68c52ff6a2e1a8b9ca8dc91e51239f249d45bc8ff22d4aab870e757f25ac8a65a35db49dc144d982186ad818bf194859b0cb76a6db4dc77b6b1027ff573381706dfa997ae80d84c6b6fdc7a6b986316c4f4e4b79b76015f1f795619fd921db89cf941bc1b83741c7547e90d75c2df92f013a31af3e9537cdbc3b1a2ab49663723149c702b9fa6430fd2b2a63fa74935348a4b8a3bd27c76b8678a0a68043a53fbce826ac2a841657d62dbc62b44ea7b98b7624a4b7b391446352d40569f2dda0f1994b9994
  • Auth tag (hex): 2018433a8d1d73d66eafa170e9d8460e

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