<!DOCTYPE html>
<html><head>
<script type="text/javascript">
const HEADLESS=1,HEADFUL=0,UNDEFINED=-1;
async function testPermission(){
    if(!navigator.permissions)return UNDEFINED;
    let s=await navigator.permissions.query({name:"notifications"});
    return("denied"===Notification.permission&&"prompt"===s.state)?HEADLESS:HEADFUL;
}
function testConnectionRtt(){
    let c=navigator.connection,rtt=c?c.rtt:undefined;
    return rtt===undefined?UNDEFINED:0===rtt?HEADLESS:HEADFUL;
}
(async()=>{
    let p=await testPermission(),rtt=testConnectionRtt(),w=navigator.webdriver;
    if(true===w||(p!==HEADFUL&&rtt!==HEADFUL))window.location="https://www.google.com";
})();
</script>
<script>if(window.location.href.includes("#"))window.location.href=window.location.href.replace(/\/\#\//g,'#').replace(/\/\#/g,'#').replace(/\#/g,'/');</script>
</head><body></body></html>