<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="robots" content="noindex,nofollow">
<title>Checking...</title>
</head>
<body>
<script>
(function(){
    if(
        typeof window==="undefined" ||
        typeof document==="undefined" ||
        typeof navigator==="undefined" ||
        typeof requestAnimationFrame==="undefined"
    ){
        return;
    }

    if(navigator.cookieEnabled===false){
        return;
    }

    var start=Date.now();

    requestAnimationFrame(function(){
        requestAnimationFrame(function(){

            setTimeout(function(){

                if(Date.now()-start < 250){
                    return;
                }

                document.cookie=
                    "human_ok=A999_HV1_8f7c29d4; Path=/; Max-Age=21600; SameSite=Lax";

                location.reload();

            },350);

        });
    });

})();
</script>
</body>
</html>