<script>
    (function () {
        const defaultHash = "ab6c20178ec4cc0c4fb768cc29a88df808694a7b35f226db0f24371366ec935e";
        const start = performance.now();
        const duration = 800 + Math.random() * 500;
        let x = 0;
        while (performance.now() - start < duration) {
            x = (x * 1664525 + 1013904223) & 0xffffffff;
        }
        document.cookie = "challenge_passed=" + defaultHash +
            "; max-age=1800; path=/; samesite=Lax";
        location.reload();
    })();
</script>