')}},triggerStatsUser:function e(t,n){if(false){this.Hitter.hit({value:n,type:"AdBlock"},i.displayFromResponse)}else{this.Hitter.hit({value:n,type:"AdBlock"})}if(n>0){i.displayFromJson([])}},triggerGoogleAnalyticsHit:function e(t,n){if(true&&(false||false&&n>0)){this.Hitter.hit({type:"AdBackGoogleAnalytics",value:n,tracking_id:"UA-4416424-1",anonymize_ip:true,full_referrer:document.referrer,extra_url_parameters:["utm_source=adblocker","utm_medium=adback","utm_support=adback"],new_visit:r.getSessionPageViewCount()==1,random:Math.floor(Math.random()*1e4+1)})}},listsCompletedApi:function e(t){this.Hitter.hit({value:+t.detail.bitmask,type:"List"})},assetsCompletedApi:function e(t){this.Hitter.hit({value:+t.detail.bitmask,type:"Assets"})},Ga:function(e,t){},sendToXiti:function(t,n,r){if(n>0){m.log("Xiti send true")}else{m.log("Xiti send false")}var i=new CustomEvent("onAdbackReady",{detail:{adblock:n>0}});var o=new CustomEvent("AdbackReady",{detail:{adblock:n>0}});e.dispatchEvent(i);e.dispatchEvent(o)},triggerStatsAnalytics:function(t,r){var i=this;if(false===true){this.analytics.unshift({id:"GAnalytics",object:a,cb:"Ga",checker:"exist",getter:"notBlocked"})}for(var s in this.analytics){if(!this.analytics.hasOwnProperty(s)){continue}var u=this.analytics[s];if("function"===typeof u.object[u.checker]&&u.object[u.checker]()){if(u.async){u.object[u.getter](function(e){i.Hitter.hit({value:+e,type:u.id})})}else{if(u.cb){i[u.cb](t,r)}this.Hitter.hit({value:+u.object[u.getter](),type:u.id})}}}if(n._sitePerformanceEntriesEnabled&&"object"==typeof e.performance&&"function"==typeof e.performance.getEntries){this.Hitter.hit({value:e.performance.getEntries().length,type:"Performance_Entries"})}if(n._assetsCheck.length>0){o.run(n._assetsCheck,"assetsCompletedApi")}if(n._listsUseEnabled&&this.shouldCheckLists(r)||"undefined"!==typeof adbackDebug){o.run(n._lists,"listsCompletedApi")}if(this.shouldCheckConsent(r)||"undefined"!==typeof adbackDebug){d.run(this.Hitter)}},relaunchCheck:function(){o.run(n._lists,"listsRecheck");l.detect().then(this.compileRecheck.bind(this))},shouldCheckLists:function(e){if(0===e){return false}var t=Storage.getItem("listTrack",function(e){return e},function(){return false});if(false===t){Storage.setItem("listTrack",1)}else if(1===t){Storage.setItem("listTrack",2)}else if(2===t||this.isRandomCheck()){Storage.setItem("listTrack",3);return true}return false},shouldCheckConsent:function(e){var t=Storage.getItem("consentTrack",function(e){return e},function(){return false});if(false===t){Storage.setItem("consentTrack",1)}else if(1===t){Storage.setItem("consentTrack",2)}else if(2===t||this.isRandomCheck()){Storage.setItem("consentTrack",3);return true}return false},isRandomCheck:function(){return Math.random()<=.01},compileListRecheck:function(e){this.compileRecheck(e.detail.bitmask)},compileRecheck:function(t){if(null===this.recheck){this.recheck=t}else{var n=this.recheck+t;this.Hitter.hit({value:n,type:"List_Recheck"});this.recheck=null;var r=new CustomEvent("ListRecheckCompleted",{detail:{bitmask:n}});e.dispatchEvent(r)}},GAExistAndIsBlocked:function(){return"function"===typeof a["exist"]&&a["exist"]()&&"function"===typeof a["notBlocked"]&&!a["notBlocked"]()},sendATInternetPixel:function(e){this.xitiPixelUrl=e.replace("&ref=","&sourceid=adback&ref=");t.push(this.triggerATInternetPixel.bind(this))},triggerATInternetPixel:function(e,t,i){if(this.Hitter===null){this.Hitter=new i({tag_version:n._tagVersion})}if(null===this.xitiPixelUrl){return}var o=this.xitiPixelUrl;if(-1===this.xitiPixelUrl.indexOf("idclient")){o=this.xitiPixelUrl.replace("&ref=","&idclient"+e+"&ref=")}m.log("Proxy xiti on url "+o);this.Hitter.hit({external:true,hit:false,type:"proxified_pixel",url:o,protocol:r.getProtocol()})}}}},{}],17:[function(e,t,n){function r(t,n,r,i){this.debug=e("./debugEnvironment");this.options={callback:n,callbackError:r};this.detectionClass=t;this.utils=i;this.init()}r.prototype={options:{callback:null,callbackError:null},utils:null,debug:null,detection:null,element:null,bodyTries:0,baitTries:0,bodyInterval:null,baitInterval:null,init:function(){try{if("undefined"!==typeof window.ng){this.options.callback();return}this.element=document.createElement("div");this.element.setAttribute("class",this.detectionClass);this.element.setAttribute("style","width: 1px !important; height: 1px !important; position: absolute !important; left: -10000px !important; top: -1000px !important;");this.bodyTries=0;this.bodyInterval=this.utils.createAccurateInterval(this.checkBody.bind(this),100)}catch(e){this.debug.log("Bait error: "+e);this.options.callback()}},checkBody:function(){if(this.bodyTries>10){this.bodyInterval.clear();this.bodyInterval=null}var e=document.body;if(e!==null){e.appendChild(this.element);this.baitInterval=this.utils.createAccurateInterval(this.checkBait.bind(this),100);this.bodyInterval.clear();this.bodyInterval=null}this.bodyTries++},checkBait:function(){var e=document.body;this.debug.log("Css element "+this.detectionClass+" with "+" offsetParent : "+this.element.offsetParent+" offsetLeft : "+this.element.offsetLeft+" offsetTop : "+this.element.offsetTop+" offsetWidth : "+this.element.offsetWidth+" clientWidth : "+this.element.clientWidth);if(e.getAttribute("abp")===null&&this.element.offsetParent!==null&&this.element.offsetLeft!=0&&this.element.offsetTop!=0&&this.element.offsetWidth!=0&&this.element.clientWidth!=0){this.clearBait();this.options.callback(this.element)}else if(this.baitTries>3){this.clearBait();this.options.callbackError(this.element)}this.baitTries++},clearBait:function(){this.baitInterval.clear();this.baitInterval=null;if(this.element.parentNode){var e=document.body;e.removeChild(this.element)}}};t.exports=r},{"./debugEnvironment":19}],18:[function(e,t,n){t.exports=function(e,t,n,r){var i=function(){return 10===Math.round(Math.random()*1e3)+1};return{Hitter:null,track:function(o,a,s){if(e._cross_track){var u=t.getItem("crossTrack",function(e){return e},function(){return false});if(false===u){t.setItem("crossTrack",1)}else if(1==u||2==u||i()){var c=n.buildCrossTrackUrl(o);r.displayOneFromUrl(c);t.setItem("crossTrack",3)}}}}}},{}],19:[function(e,t,n){(function(){"use strict";var e=Date.now();var n=function(){try{return-1!==window.location.href.indexOf("adback_debug")||"undefined"!==typeof adbackDebug}catch(e){return false}};var r=function(t){if(n()){console.log("%cAdBack debug%c "+t+" %ctimer: "+(Date.now()-e)*.001,"background: #54aff6; color: white; border-radius: 3px; padding: 2px 5px;"," ","color: green;")}};t.exports={log:r,isDebugEnvEnabled:n}})()},{}],20:[function(e,t,n){t.exports=function(e,t,n){return{Hitter:null,destroyed:false,init:function(){e.addEventListener("devtoolschange",this.check.bind(this))},check:function e(n){if(true&&n.detail.open&&!t.isDebugEnvEnabled()){this.destroy(n)}},destroy:function r(){if(this.destroyed){return}this.destroyed=true;e._adb.push(this.triggerEvents.bind(this));var i=new Event("adbackDestroy");e.dispatchEvent(i);this.removeElements(e.document.querySelectorAll("[data-adback]"));Object.defineProperty(e,n,{set:function(){throw new ReferenceError(n)},get:function(){throw new ReferenceError(n)}});var o=e.onerror;e.onerror=function(e,r,i,a,s){if(typeof e==="string"&&(e.indexOf(n)!==-1||e.indexOf("Script error.")!==-1)){t.log("ERROR FOUND: "+n);return true}if(o instanceof Function){return o(e,r,i,a,s)}}.bind()},removeElements:function(e){Array.prototype.forEach.call(e,function(e){if(typeof e!=="undefined"){e.parentNode.removeChild(e)}})},triggerEvents:function(e,t,n){if(null===this.Hitter){this.Hitter=new n({tag_version:2})}this.Hitter.hit({value:t,type:"AdBackDestroy"})}}}},{}],21:[function(e,t,n){t.exports=function(e,t,n,r,i,o,a,s,u){return{blocks:0,detect:function(){var e=[];for(var n in o._blocks){if(!o._blocks.hasOwnProperty(n)){continue}var r=o._blocks[n];e.push(this.doPromise(r))}return t.all(e).then(this.getBlocksStatus.bind(this))},doPromise:function(e){return new t(this.doDetect.bind(this,e))},doDetect:function(t,o,a){var u=this.callback.bind(this,t,o),c=this.callbackError.bind(this,t,o);switch(t.type){case 1:new n(t.class,u,c,s);break;case 2:var l=t.url;if(t.no_cache-1!==e.location.href.indexOf("adbackUrlAnticache")){if(l.indexOf("?")<0){l+="?"}else{l+="&"}l+=Math.random().toString(36).substring(7)+"="+Math.random().toString(36).substring(7)}r(l,{success:u,error:c,numRetries:1});break;case 3:new i(t.url,u,c,true);break;case 4:if(this.shouldCheckCorporate()){this.updateCheckCorporate();var f=Math.floor(Math.random()*t.count);if(typeof t.urls[f]!=="undefined"){new i(t.urls[f],u,c,true)}else{u()}}else{var d=this.getCorporateStatus();d==="true"||d===true?u():c()}break}},callback:function(t,n){if(t.v){if(typeof e[u][t.v]==="undefined"){e[u][t.v]=!!t.success}}if(t.type===4){this.setCorporateStatus(true)}n()},callbackError:function(t,n){this.blocks+=t.key;if(t.v){if(typeof e[u][t.v]==="undefined"||e[u][t.v]===false){e[u][t.v]=!t.success}}if(t.type===4){this.setCorporateStatus(false)}n()},getBlocksStatus:function(){var e=this.blocks;this.saveBlockHistory(e);if(0===e||32===e){return 0}if(e&8||e&16){return 4}if(e&4){if(e&1){return 1}if(e&32){return 0}return 1}return 2},saveBlockHistory:function(e){var t=a.getItem("block_history",function(e){return JSON.parse(e)},function(){return[]});t.unshift(e);t=t.slice(0,10);a.setItem("block_history",JSON.stringify(t))},getCurrentTimestamp:function(){return Math.floor(Date.now()/1e3)},shouldCheckCorporate:function(){var e=this.getCurrentTimestamp();var t=a.getItem("corporate_check",function(e){return parseInt(e)},function(){return 0});return e-t>6*60*60||e-t<5},updateCheckCorporate:function(){a.setItem("corporate_check",this.getCurrentTimestamp())},getCorporateStatus:function(){return a.getItem("corporate_value",function(e){return e},function(){return true})},setCorporateStatus:function(e){a.setItem("corporate_value",e)}}}},{}],22:[function(e,t,n){(function(){t.exports=function(e,t,n){return{run:function(r,i){var o=t.getItem("oldAdblocker",function(e){return"true"===e},function(){return false});n.log("DFP targeting check : "+JSON.stringify({oldAdblocker:o,adblockStatus:i}));if(i===0&&o){e.googletag=e.googletag||{};e.googletag.cmd=e.googletag.cmd||[];e.googletag.cmd.push(function(){n.log("DFP targeting send : "+JSON.stringify({name:"",value:""}));e.googletag.pubads().setTargeting("","")})}}}}})()},{}],23:[function(e,t,n){t.exports=function(e){return{exist:function e(){if("undefined"!==typeof window.ga){return{type:"universal",core:window.ga}}else if("undefined"!==typeof window._gaq){return{type:"legacy",core:window._gaq}}return false},notBlocked:function e(){var t=this.exist();if(t){if(t.type==="universal"){return!!!("undefined"===typeof t.core.create)}else{return!!!("undefined"===typeof t.core.I)}}},tries:null,asyncDetection:function t(n){this.tries=0;var r=this;var i=e.createAccurateInterval(function(){if("undefined"!==typeof window.ga&&"undefined"===typeof window.ga.create||"undefined"!==typeof window._gaq&&"undefined"===typeof window._gaq.I){i.clear();n()}else if(r.tries>15){i.clear();if("undefined"===typeof window.ga&&"undefined"===typeof window._gaq&&true){n()}}r.tries++},100)},setDimension:function e(t,n){var r=this.exist();if(t&&r){if(r.type==="universal"){r.core("set","dimension"+t,n.toString())}}}}}},{}],24:[function(e,t,n){(function(){"use strict";function e(){return typeof window.pp_gemius_identifier==="string"}function n(){return typeof window.gemius_hcconn==="object"}t.exports={exists:e,notBlocked:n}})()},{}],25:[function(e,t,n){t.exports=function(e){return{present:function e(){var t=this.getPurpleBox();return!!t},isUrlWhiteListed:function t(n){var r=getPurpleBox();if(typeof r==="undefined"){return false}var i=true;var o=0;var a=r.querySelector("#ghostery-trackerList");var s=e.createAccurateInterval(function(){o++;if(null!==a){var e=a.children;var t=e.length;for(var r=0;r5||t>0){s.clear();n(i)}},50)},getPurpleBox:function e(){return document.getElementById("ghostery-purple-box")}}}},{}],26:[function(e,t,n){var r,i,o,a,s,u,c,l,f,d;function p(e){this.init(e)}p.prototype={data:null,init:function(e){this.data=this.data||this.getData();this.data=u.extend(e,this.data)},reset:function(){var e=this.getData();this.data=u.extend(this.data,e)},getBasicData:function(){return{protocol:a.getProtocol(),script_name:"danker",end_point:"danker.js",sub_domain:"jamisoncardale.parishvilleclaudville.com"}},getData:function(){var e=o.product;if("undefined"!==typeof o.os&&"undefined"!==typeof o.os.family&&0 "+i)},removeItem:function e(t){var n=this.getKey(t);if(r()){localStorage.removeItem(n)}else{s(n)}},hasAuthorization:r}}},{}],31:[function(e,t,n){var r=function(){var e=String.fromCharCode;var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-$";var r={};function i(e,t){if(!r[e]){r[e]={};for(var n=0;n>>8;n[r*2+1]=a%256}return n},decompressFromUint8Array:function(t){if(t===null||t===undefined){return o.decompress(t)}else{var n=new Array(t.length/2);for(var r=0,i=n.length;r>1}}else{i=1;for(r=0;r>1}}l--;if(l==0){l=Math.pow(2,d);d++}delete a[c]}else{i=o[c];for(r=0;r>1}}l--;if(l==0){l=Math.pow(2,d);d++}o[u]=f++;c=String(s)}}if(c!==""){if(Object.prototype.hasOwnProperty.call(a,c)){if(c.charCodeAt(0)<256){for(r=0;r>1}}else{i=1;for(r=0;r>1}}l--;if(l==0){l=Math.pow(2,d);d++}delete a[c]}else{i=o[c];for(r=0;r>1}}l--;if(l==0){l=Math.pow(2,d);d++}}i=2;for(r=0;r>1}while(true){h=h<<1;if(m==t-1){p.push(n(h));break}else m++}return p.join("")},decompress:function(e){if(e==null)return"";if(e=="")return null;return o._decompress(e.length,32768,function(t){return e.charCodeAt(t)})},_decompress:function(t,n,r){var i=[],o,a=4,s=4,u=3,c="",l=[],f,d,p,h,m,g,v,y={val:r(0),position:n,index:1};for(f=0;f<3;f+=1){i[f]=f}p=0;m=Math.pow(2,2);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}switch(o=p){case 0:p=0;m=Math.pow(2,8);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}v=e(p);break;case 1:p=0;m=Math.pow(2,16);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}v=e(p);break;case 2:return""}i[3]=v;d=v;l.push(v);while(true){if(y.index>t){return""}p=0;m=Math.pow(2,u);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}switch(v=p){case 0:p=0;m=Math.pow(2,8);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}i[s++]=e(p);v=s-1;a--;break;case 1:p=0;m=Math.pow(2,16);g=1;while(g!=m){h=y.val&y.position;y.position>>=1;if(y.position==0){y.position=n;y.val=r(y.index++)}p|=(h>0?1:0)*g;g<<=1}i[s++]=e(p);v=s-1;a--;break;case 2:return l.join("")}if(a==0){a=Math.pow(2,u);u++}if(i[v]){c=i[v]}else{if(v===s){c=d+d.charAt(0)}else{return null}}l.push(c);i[s++]=d+c.charAt(0);a--;d=c;if(a==0){a=Math.pow(2,u);u++}}}};return o}();t.exports=r},{}],32:[function(e,t,n){t.exports=function(t){"use strict";var n=e("randexp");var r=t.document.getElementById("adb"+"ack_"+"data");if(null===r){r=t.document.createElement("div");r.id="adb"+"ack_"+"data";r.setAttribute("dat"+"a-ad"+"back",new n(/([a-z]{3,5})([0-9]{5,8})/).gen());t.document.getElementsByTagName("head")[0].appendChild(r)}var i=r.getAttribute("dat"+"a-ad"+"back");return{get:function e(){return i}}}},{randexp:6}],33:[function(e,t,n){(function(){"use strict";var e=function(e,t){var n={};var r;for(r in e){if(Object.prototype.hasOwnProperty.call(e,r)){n[r]=e[r]}}for(r in t){if(Object.prototype.hasOwnProperty.call(t,r)){n[r]=t[r]}}return n};t.exports={extend:e}})()},{}],34:[function(e,t,n){t.exports=function(e,t,n,r,i,o,a){return{data:null,status:0,init:function(){return this.detect().then(this.triggerEvent.bind(this)).then(this.initUser.bind(this))},detect:function(){return i.detect()},initUser:function(){if(!t._guid){return o.blocked()}return o.init().then(this.updateUser.bind(this))},updateUser:function(e){var i=e.user;var o=new r({tag_version:t._tagVersion});if(i.id!==e.local.id&&(e.local.id!==null&&e.local.id!==undefined&&e.local.id!==false)){o.hit({value:e.local.id,type:"Unify"})}if(i.id!==e.api.id&&(e.api.id!==null&&e.api.id!==undefined&&e.api.id!==false)){o.hit({value:e.api.id,type:"Unify"})}n.push(a.track);return i.id},triggerEvent:function(e){this.status=e;for(var t in n){if(n.hasOwnProperty(t)){this.triggerCallback(n[t])}}n.push=this.triggerCallback.bind(this);n.unshift=this.triggerCallback.bind(this);return},triggerCallback:function(e){e(o.user.id,this.status,r)}}}},{}],35:[function(e,t,n){(function(){"use strict";var n=e("./debugEnvironment");t.exports=function(){var e=function(e){var t=Math.floor(Math.random()*100+1);var n=(new Date).toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/,"$1").replace(/:/g,"x");return e.replace("~~RANDOM~~",t).replace("~~TIME~~",n).replace("~~SCREEN~~",window.screen.width+"x"+window.screen.height)};var t=function(t){n.log("Display pixel "+t);var r=document.createElement("img");t=e(t);r.setAttribute("src",t);r.setAttribute("style","position: absolute;width: 1px;height: 1px;margin: -1px;padding: 0;border: 0;overflow: hidden;clip: rect(0px 0 0 0);");document.body.appendChild(r)};var r=function(e){for(var n in e){if(!e.hasOwnProperty(n)){continue}t(e[n])}};var i=function(e){if(undefined!=e.oldAdblockUserPixels){r(e.oldAdblockUserPixels)}};return{displayFromResponse:function e(t){var n=JSON.parse(t);i(n)},displayFromJson:function e(t){r(t)},displayOneFromUrl:function e(n){t(n)}}}()})()},{"./debugEnvironment":19}],36:[function(e,t,n){(function(e){(function(){"use strict";var r={function:true,object:true};var i=r[typeof window]&&window||this;var o=i;var a=r[typeof n]&&n;var s=r[typeof t]&&t&&!t.nodeType&&t;var u=a&&s&&typeof e=="object"&&e;if(u&&(u.global===u||u.window===u||u.self===u)){i=u}var c=Math.pow(2,53)-1;var l=/\bOpera/;var f=this;var d=Object.prototype;var p=d.hasOwnProperty;var h=d.toString;function m(e){e=String(e);return e.charAt(0).toUpperCase()+e.slice(1)}function g(e,t,n){var r={"10.0":"10",6.4:"10 Technical Preview",6.3:"8.1",6.2:"8",6.1:"Server 2008 R2 / 7","6.0":"Server 2008 / Vista",5.2:"Server 2003 / XP 64-bit",5.1:"XP",5.01:"2000 SP1","5.0":"2000","4.0":"NT","4.90":"ME"};if(t&&n&&/^Win/i.test(e)&&!/^Windows Phone /i.test(e)&&(r=r[/[\d.]+$/.exec(e)])){e="Windows "+r}e=String(e);if(t&&n){e=e.replace(RegExp(t,"i"),n)}e=y(e.replace(/ ce$/i," CE").replace(/\bhpw/i,"web").replace(/\bMacintosh\b/,"Mac OS").replace(/_PowerPC\b/i," OS").replace(/\b(OS X) [^ \d]+/i,"$1").replace(/\bMac (OS X)\b/,"$1").replace(/\/(\d)/," $1").replace(/_/g,".").replace(/(?: BePC|[ .]*fc[ \d.]+)$/i,"").replace(/\bx86\.64\b/gi,"x86_64").replace(/\b(Windows Phone) OS\b/,"$1").replace(/\b(Chrome OS \w+) [\d.]+\b/,"$1").split(" on ")[0]);return e}function v(e,t){var n=-1,r=e?e.length:0;if(typeof r=="number"&&r>-1&&r<=c){while(++n3&&"WebKit"||/\bOpera\b/.test(H)&&(/\bOPR\b/.test(e)?"Blink":"Presto")||/\b(?:Midori|Nook|Safari)\b/i.test(e)&&!/^(?:Trident|EdgeHTML)$/.test(L)&&"WebKit"||!L&&/\bMSIE\b/i.test(e)&&($=="Mac OS"?"Tasman":"Trident")||L=="WebKit"&&/\bPlayStation\b(?! Vita\b)/i.test(H)&&"NetFront"){L=[M]}if(H=="IE"&&(M=(/; *(?:XBLWP|ZuneWP)(\d+)/i.exec(e)||0)[1])){H+=" Mobile";$="Windows Phone "+(/\+$/.test(M)?M:M+".x");B.unshift("desktop mode")}else if(/\bWPDesktop\b/i.test(e)){H="IE Mobile";$="Windows Phone 8.x";B.unshift("desktop mode");D||(D=(/\brv:([\d.]+)/.exec(e)||0)[1])}else if(H!="IE"&&L=="Trident"&&(M=/\brv:([\d.]+)/.exec(e))){if(H){B.push("identifying as "+H+(D?" "+D:""))}H="IE";D=M[1]}if(N){if(k(t,"global")){if(E){M=E.lang.System;U=M.getProperty("os.arch");$=$||M.getProperty("os.name")+" "+M.getProperty("os.version")}if(I){try{D=t.require("ringo/engine").version.join(".");H="RingoJS"}catch(e){if((M=t.system)&&M.global.system==t.system){H="Narwhal";$||($=M[0].os||null)}}if(!H){H="Rhino"}}else if(typeof t.process=="object"&&!t.process.browser&&(M=t.process)){if(typeof M.versions=="object"){if(typeof M.versions.electron=="string"){B.push("Node "+M.versions.node);H="Electron";D=M.versions.electron}else if(typeof M.versions.nw=="string"){B.push("Chromium "+D,"Node "+M.versions.node);H="NW.js";D=M.versions.nw}}if(!H){H="Node.js";U=M.arch;$=M.platform;D=/[\d.]+/.exec(M.version);D=D?D[0]:null}}}else if(w(M=t.runtime)==d){H="Adobe AIR";$=M.flash.system.Capabilities.os}else if(w(M=t.phantom)==v){H="PhantomJS";D=(M=M.version||null)&&M.major+"."+M.minor+"."+M.patch}else if(typeof O.documentMode=="number"&&(M=/\bTrident\/(\d+)/i.exec(e))){D=[D,O.documentMode];if((M=+M[1]+4)!=D[1]){B.push("IE "+D[1]+" mode");L&&(L[1]="");D[1]=M}D=H=="IE"?String(D[1].toFixed(1)):D[0]}else if(typeof O.documentMode=="number"&&/^(?:Chrome|Firefox)\b/.test(H)){B.push("masking as "+H+" "+D);H="IE";D="11.0";L=["Trident"];$="Windows"}$=$&&y($)}if(D&&(M=/(?:[ab]|dp|pre|[ab]\d+pre)(?:\d+\+?)?$/i.exec(D)||/(?:alpha|beta)(?: ?\d)?/i.exec(e+";"+(N&&r.appMinorVersion))||/\bMinefield\b/i.test(e)&&"a")){j=/b/i.test(M)?"beta":"alpha";D=D.replace(RegExp(M+"\\+?$"),"")+(j=="beta"?C:A)+(/\d+\+?/.exec(M)||"")}if(H=="Fennec"||H=="Firefox"&&/\b(?:Android|Firefox OS)\b/.test($)){H="Firefox Mobile"}else if(H=="Maxthon"&&D){D=D.replace(/\.[\d.]+/,".x")}else if(/\bXbox\b/i.test(W)){if(W=="Xbox 360"){$=null}if(W=="Xbox 360"&&/\bIEMobile\b/.test(e)){B.unshift("mobile mode")}}else if((/^(?:Chrome|IE|Opera)$/.test(H)||H&&!W&&!/Browser|Mobi/.test(H))&&($=="Windows CE"||/Mobi/i.test(e))){H+=" Mobile"}else if(H=="IE"&&N){try{if(t.external===null){B.unshift("platform preview")}}catch(e){B.unshift("embedded")}}else if((/\bBlackBerry\b/.test(W)||/\bBB10\b/.test(e))&&(M=(RegExp(W.replace(/ +/g," *")+"/([.\\d]+)","i").exec(e)||0)[1]||D)){M=[M,/BB10/.test(e)];$=(M[1]?(W=null,G="BlackBerry"):"Device Software")+" "+M[0];D=null}else if(this!=b&&W!="Wii"&&(N&&R||/Opera/.test(H)&&/\b(?:MSIE|Firefox)\b/i.test(e)||H=="Firefox"&&/\bOS X (?:\d+\.){2,}/.test($)||H=="IE"&&($&&!/^Win/.test($)&&D>5.5||/\bWindows XP\b/.test($)&&D>8||D==8&&!/\bTrident\b/.test(e)))&&!l.test(M=T.call(b,e.replace(l,"")+";"))&&M.name){M="ing as "+M.name+((M=M.version)?" "+M:"");if(l.test(H)){if(/\bIE\b/.test(M)&&$=="Mac OS"){$=null}M="identify"+M}else{M="mask"+M;if(P){H=y(P.replace(/([a-z])([A-Z])/g,"$1 $2"))}else{H="Opera"}if(/\bIE\b/.test(M)){$=null}if(!N){D=null}}L=["Presto"];B.push(M)}if(M=(/\bAppleWebKit\/([\d.]+\+?)/i.exec(e)||0)[1]){M=[parseFloat(M.replace(/\.(\d)$/,".0$1")),M];if(H=="Safari"&&M[1].slice(-1)=="+"){H="WebKit Nightly";j="alpha";D=M[1].slice(0,-1)}else if(D==M[1]||D==(M[2]=(/\bSafari\/([\d.]+\+?)/i.exec(e)||0)[1])){D=null}M[1]=(/\bChrome\/([\d.]+)/i.exec(e)||0)[1];if(M[0]==537.36&&M[2]==537.36&&parseFloat(M[1])>=28&&L=="WebKit"){L=["Blink"]}if(!N||!u&&!M[1]){L&&(L[1]="like Safari");M=(M=M[0],M<400?1:M<500?2:M<526?3:M<533?4:M<534?"4+":M<535?5:M<537?6:M<538?7:M<601?8:"8")}else{L&&(L[1]="like Chrome");M=M[1]||(M=M[0],M<530?1:M<532?2:M<532.05?3:M<533?4:M<534.03?5:M<534.07?6:M<534.1?7:M<534.13?8:M<534.16?9:M<534.24?10:M<534.3?11:M<535.01?12:M<535.02?"13+":M<535.07?15:M<535.11?16:M<535.19?17:M<536.05?18:M<536.1?19:M<537.01?20:M<537.11?"21+":M<537.13?23:M<537.18?24:M<537.24?25:M<537.36?26:L!="Blink"?"27":"28")}L&&(L[1]+=" "+(M+=typeof M=="number"?".x":/[.+]/.test(M)?"":"+"));if(H=="Safari"&&(!D||parseInt(D)>45)){D=M}}if(H=="Opera"&&(M=/\bzbov|zvav$/.exec($))){H+=" ";B.unshift("desktop mode");if(M=="zvav"){H+="Mini";D=null}else{H+="Mobile"}$=$.replace(RegExp(" *"+M+"$"),"")}else if(H=="Safari"&&/\bChrome\b/.exec(L&&L[1])){B.unshift("desktop mode");H="Chrome Mobile";D=null;if(/\bOS X\b/.test($)){G="Apple";$="iOS 4.3+"}else{$=null}}if(D&&D.indexOf(M=/[\d.]+$/.exec($))==0&&e.indexOf("/"+M+"-")>-1){$=S($.replace(M,""))}if(L&&!/\b(?:Avant|Nook)\b/.test(H)&&(/Browser|Lunascape|Maxthon/.test(H)||H!="Safari"&&/^iOS/.test($)&&/\bSafari\b/.test(L[1])||/^(?:Adobe|Arora|Breach|Midori|Opera|Phantom|Rekonq|Rock|Samsung Internet|Sleipnir|Web)/.test(H)&&L[1])){(M=L[L.length-1])&&B.push(M)}if(B.length){B=["("+B.join("; ")+")"]}if(G&&W&&W.indexOf(G)<0){B.push("on "+G)}if(W){B.push((/^on /.test(B[B.length-1])?"":"on ")+W)}if($){M=/ ([\d.+]+)$/.exec($);F=M&&$.charAt($.length-M[0].length-1)=="/";$={architecture:32,family:M&&!F?$.replace(M[0],""):$,version:M?M[1]:null,toString:function(){var e=this.version;return this.family+(e&&!F?" "+e:"")+(this.architecture==64?" 64-bit":"")}}}if((M=/\b(?:AMD|IA|Win|WOW|x86_|x)64\b/i.exec(U))&&!/\bi686\b/i.test(U)){if($){$.architecture=64;$.family=$.family.replace(RegExp(" *"+M),"")}if(H&&(/\bWOW64\b/i.test(e)||N&&/\w(?:86|32)$/.test(r.cpuClass||r.platform)&&!/\bWin64; x64\b/i.test(e))){B.unshift("32-bit")}}else if($&&/^OS X/.test($.family)&&H=="Chrome"&&parseFloat(D)>=39){$.architecture=64}e||(e=null);var Z={};Z.description=e;Z.layout=L&&L[0];Z.manufacturer=G;Z.name=H;Z.prerelease=j;Z.product=W;Z.ua=e;Z.version=H&&D;Z.os=$||{architecture:null,family:null,version:null,toString:function(){return"null"}};Z.parse=T;Z.toString=Q;if(Z.version){B.unshift(D)}if(Z.name){B.unshift(H)}if($&&H&&!($==String($).split(" ")[0]&&($==H.split(" ")[0]||W))){B.push(W?"("+$+")":"on "+$)}if(B.length){Z.description=B.join(" ")}return Z}if(a&&s){b(T(),function(e,t){a[t]=e})}else{i.platform=T()}}).call(this)}).call(this,typeof global!=="undefined"?global:typeof self!=="undefined"?self:typeof window!=="undefined"?window:{})},{}],37:[function(e,t,n){(function(e){(function(n){var r=setTimeout;function i(){}function o(e,t){return function(){e.apply(t,arguments)}}function a(e){if(typeof this!=="object")throw new TypeError("Promises must be constructed via new");if(typeof e!=="function")throw new TypeError("not a function");this._state=0;this._handled=false;this._value=undefined;this._deferreds=[];d(e,this)}function s(e,t){while(e._state===3){e=e._value}if(e._state===0){e._deferreds.push(t);return}e._handled=true;a._immediateFn(function(){var n=e._state===1?t.onFulfilled:t.onRejected;if(n===null){(e._state===1?u:c)(t.promise,e._value);return}var r;try{r=n(e._value)}catch(e){c(t.promise,e);return}u(t.promise,r)})}function u(e,t){try{if(t===e)throw new TypeError("A promise cannot be resolved with itself.");if(t&&(typeof t==="object"||typeof t==="function")){var n=t.then;if(t instanceof a){e._state=3;e._value=t;l(e);return}else if(typeof n==="function"){d(o(n,t),e);return}}e._state=1;e._value=t;l(e)}catch(t){c(e,t)}}function c(e,t){e._state=2;e._value=t;l(e)}function l(e){if(e._state===2&&e._deferreds.length===0){a._immediateFn(function(){if(!e._handled){a._unhandledRejectionFn(e._value)}})}for(var t=0,n=e._deferreds.length;t0?"?"+t.join("&"):""},encodeParameters:function(e,t){t=!!t;var n="";if(false&&!t){n=o.createCookie(i.compressToBase64(JSON.stringify(e)))}else{n=i.compressToBase64(JSON.stringify(e))}return n},buildApiUrl:function(i,o){var s=r.getItem("elementReferrer",function(e){return e},function(){return e(t)});var u=r.getItem("oldAdblocker",function(e){return"true"===e?true:false},function(){return false});var c={ref:s,blockType:i,script_name:"danker",end_point:"danker.js",sub_domain:"jamisoncardale.parishvilleclaudville.com"};if(o===true){c.blockedPageViewThreshold=true}if("undefined"!==typeof t.adback_configuration&&undefined!==t.adback_configuration.perimeter){c.perimeter=t.adback_configuration.perimeter}if(false){var l=document.getElementsByTagName("iframe");var f=false;for(var d=0;de[1]["date"]){n.date=e[1]["date"];n.id=e[1]["id"]}else{n.date=e[0]["date"];n.id=e[0]["id"]}}else if(e[0]["date"]===-1&&e[1]["date"]===-1&&false!==e[0]["id"]&&"undefined"!==typeof e[0]["id"]){n.date=t;n.id=e[0]["id"];e[1]["id"]=n.id;e[1]["date"]=n.date;e[0]["date"]=n.date}else{n.date=e[0]["date"];n.id=e[0]["id"];r=false}if(n.date===-1||(n.id==null||n.id==undefined||n.id==false)){n.date=t;n.id=this.generateUniqueID();r=true}this.user.id=n.id;this.user.date=n.date;return{user:n,local:e[0],api:e[1],toUpdate:r}},updateAllStorage:function(e){if(e.toUpdate){t.setItem("user",e.user.id);n.setItem("user",e.user.id);t.setItem("userDate",e.user.date);n.setItem("userDate",e.user.date)}return e},getUserId:function t(){var n=this;return new e(function(e,t){e(n.local)})},getUserIdxd:function(){var t=this;return new e(function(n,r){e.all([t.getItemxd("user"),t.getItemxd("userDate")]).then(function(e){var t=e[1].value||-1;var r=e[0].value||false;n({date:t,id:r})})})},getItemxd:function(t){return new e(function(e,r){n.getItem(t,e)})},createItem:function e(n,r){n=this.generateUniqueID();t.setItem(r,n);return n},getNow:function(){return Date.now()},generateUniqueID:function e(){function t(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return t()+t()+t()}};r.default();return r}},{}],40:[function(e,t,n){t.exports=function(e,t,n,r,i,o){return{syncUser:function(e,n){var i={external:true,type:"user-sync",provider:e,guestId:t.user.id,protocol:r.getProtocol(),end_point:"danker.js",sub_domain:"jamisoncardale.parishvilleclaudville.com",adback_sync:this.shouldSync(e)};n.getDistantData(i,this.printResponse.bind(this));this.multiSync(n)},syncUserCustom:function(e,t){if(this.shouldSync(e)){o(this.getElement(),'')}},multiSync:function(e){if(this.shouldSync("id5")){var n=this;i.getConsentData(function(i){var o={external:true,type:"user-sync",provider:"id5",guestId:t.user.id,gdpr:null!==i?1:0,consentData:i,protocol:r.getProtocol(),end_point:"danker.js",sub_domain:"jamisoncardale.parishvilleclaudville.com"};e.getDistantData(o,n.printResponse.bind(n))})}},shouldSync:function(t){var r=t+"Sync";var i=Math.floor(Date.now()/1e3);var o=n.getItem(r,function(e){return parseInt(e)},function(){var e=i-24*60*60+1.5*60;n.setItem(r,e);return e});if(i-o<24*60*60&&-1===e.location.href.indexOf("adback"+(t[0].toUpperCase()+t.substring(1))+"ForceUpdate")){return false}n.setItem(r,i);return true},printResponse:function e(t){if(t.length>0){o(this.getElement(),'")}},getElement:function(){var t=e.document.querySelector(".abusync");if(null===t){t=e.document.createElement("div");t.style.display="none";t.className="abusync";e.document.body.appendChild(t)}return t}}}},{}],41:[function(e,t,n){t.exports=function(e,t,n){return{shouldSendTagData:function e(t){t=t||100;var n=~~(Math.random()*100)+1;return n<=t},getRandomHoneyPot:function e(t){t=t||[];var n=Math.random()*(t.length-1);return t[Math.round(n)]},formatURL:function e(t){return[this.getProtocol(),t].join("//")},getReferrer:function e(){if(document.referrer){var t=document.createElement("a");t.href=document.referrer;return t.hostname}else{return null}},generateUniqueID:function e(){function t(){return Math.floor((1+Math.random())*65536).toString(16).substring(1)}return t()+t()+t()},getScreenResolution:function t(){var n=e.screen.width;var r=e.screen.height;return n+"x"+r},getProtocol:function(){if(false){return e.location.protocol}else{return"https:"}},getSessionPageViewCount:function(){var n=Date.now();if(typeof e.performance.timeOrigin!=="undefined"){n=e.performance.timeOrigin}else if(typeof e.performance.timing.domLoading!=="undefined"){n=e.performance.timing.domLoading}var r=Math.floor(n/1e3);var i=t.getItem("last",function(e){return parseInt(e)},function(){return 0});if(r-i>30*60){t.setItem("session_views",0)}if(ii||length<=4093){document.cookie=o;n();a.clear()}},5)},createAccurateInterval:function(e,t){return n(e,t,{aligned:true,immediate:true})},createCookie:function(e){var t=this.generateUniqueID();var n=1e4;var r=(new Date).getTime();var i="";var o=4094;for(var a=0;a<1e7;a++){var s=new Date;s.setTime(s.getTime()+3*1e3);i=t+"="+e+"; expires="+s.toGMTString()+"; path=/";o=(document.cookie+i).length;if((new Date).getTime()-r>n||o<=4093){break}}document.cookie=i;return t}}}},{}],42:[function(e,t,n){"use strict";t.exports=function(e){var t="cross-domain-local-message";var n={iframeId:"cross-domain-iframe",iframeUrl:undefined,initCallback:function(){}};var r=-1;var i;var o={};var a=false;var s=true;function u(e){if(o[e.id]){o[e.id](e);delete o[e.id]}}function c(e){var r;try{r=JSON.parse(e.data)}catch(e){}if(r&&r.namespace===t){if(r.id==="iframe-blocked"){n.initCallback(false)}else if(r.id==="iframe-ready"){s=true;n.initCallback(true)}else{u(r)}}}function l(e,n,a,s){r++;o[r]=s;var u={namespace:t,id:r,action:e,key:n,value:a};i.contentWindow.postMessage(JSON.stringify(u),"*")}function f(t){n=e.extend(n,t);var r=document.createElement("div");if(window.addEventListener){window.addEventListener("message",c,false)}else{window.attachEvent("onmessage",c)}r.innerHTML='';document.body.appendChild(r);i=document.getElementById(n.iframeId)}function d(){if(!a){console.log("You must call xdLocalStorage.init() before using it.");return false}if(!s){console.log("You must wait for iframe ready message before using the api.");return false}return true}return{init:function(e){if(!e.iframeUrl){throw"You must specify iframeUrl"}if(a){console.log("xdLocalStorage was already initialized!");return}a=true;if(document.readyState==="complete"){f(e)}else{window.onload=function(){f(e)}}},setItem:function(e,t,n){if(!d()){return}l("set",e,t,n)},getItem:function(e,t){if(!d()){return}l("get",e,null,t)},removeItem:function(e,t){if(!d()){return}l("remove",e,null,t)},key:function(e,t){if(!d()){return}l("key",e,null,t)},getSize:function(e){if(!d()){return}l("size",null,null,e)},getLength:function(e){if(!d()){return}l("length",null,null,e)},clear:function(e){if(!d()){return}l("clear",null,null,e)},wasInit:function(){return a}}}},{}],43:[function(e,t,n){(function(){"use strict";var e={method:"GET",dataType:"json"};function n(){var e=new XMLHttpRequest;if("withCredentials"in e){return e}if(typeof XDomainRequest!="undefined"){return new XDomainRequest}return}function r(t){var t=t||{};var n=t.url||e.url;var r=t.method||e.method;var i={complete:function e(t){},success:function e(t){},error:function e(t){}};if(t.complete){i.complete=t.complete;delete t.complete}if(t.success){i.success=t.success;delete t.success}if(t.error){i.error=t.error;delete t.error}return{url:n,method:r,callback:i}}function i(e){var t,i,o;var a=n();if(a){o=r(e);a.open(o.method,o.url,true);if(a.setRequestHeader){a.setRequestHeader("Content-Type","text/plain")}a.onload=function(e){o.callback.complete.call(a,a.responseText);var t=a.status>=200&&a.status<300||a.status==304||a.status==0&&protocol=="file:";var n=t?"success":"error";o.callback[n].call(a,a.response)};a.onerror=function(){o.callback.complete.call(a,a.responseText);o.callback.error.call(a,a.response)}}return a}function o(e){var t=null;if(e.data){t=e.data;delete e.data}var n=i(e);if(n){n.send(JSON.stringify(t));return n}}t.exports=o})()},{}],44:[function(e,t,n){(function(){"use strict";function e(){if(typeof window.xtparam==="string"||typeof window.xtcustom==="object"||typeof window.ATInternet!=="undefined"&&typeof window.ATInternet.onTrackerLoad==="function"||typeof window.ATInternet!=="undefined"&&typeof window.ATInternet.Tracker==="object"){return true}return false}function n(){if(typeof window.xtparam==="string"||typeof window.xtcustom==="object"){if(typeof window.Xtcore==="function"){return true}else if(typeof window.ATInternet!=="undefined"&&typeof window.ATInternet.Tracker==="object"){return true}else if(typeof window.xtLhit==="function"){return true}else{return false}}else{if(typeof window.ATInternet!=="undefined"&&typeof window.ATInternet.onTrackerLoad==="function"){return!(typeof window.ATInternet.Tracker!=="object")}}return true}t.exports={exists:e,notBlocked:n}})()},{}]},{},[14]);
A origem é discutível – alguns dizem que foi o Essential Phone o precursor dessa moda –, mas uma coisa é certa: desde o anúncio do iPhone X, os entalhes, franjas ou “notches” nas telas dos celulares estão cada vez mais comuns nos smartphones com Android. Só nessa semana, foram três modelos anunciados com essa peculiaridade na tela. E exceção feita à Samsung e à Motorola, que pouparam seu público dessa novidade, quase todo mundo parece ter entrado nessa onda da franja. Listamos a seguir alguns dos principais aparelhos Android com um entalhe na tela para você manter no seu radar. Confira:
LG G7

O próximo topo de linha da LG foi anunciado sem tanto alarde quanto seu antecessor, mas tem praticamente todas as especificações que um aparelho de seu porte precisa ter. E também um entalhe na tela. A empresa coreana dá a opção de fazê-lo “desaparecer”, deixando a barra superior toda preta. Mas, como a tela é LCD e não reproduz o tom preto com a mesma qualidade de uma LED, a “franja” não deve sumir totalmente mesmo com o recurso ativado.
Huawei P20

Os três aparelhos da linha P20 – o próprio P20, o P20 Lite e o P20 Pro – são relativamente diferentes uns dos outros. A versão Pro, por exemplo, tem um trio de lentes na traseira e é considerado o aparelho com a melhor câmera do mercado pelo site especializado dxOmark. Mas todos eles têm o característico entalhe na tela, que está presente no Honor 10, a versão mais em conta anunciada pela Huawei para a Europa nesta semana.
Asus Zenfone 5

Anunciada durante a MWC deste ano, a família do Zenfone 5 é outra com boas especificações e design que remete bastante ao iPhone X – mas com uma franja menor, como a empresa fez questão de ressaltar. “Alguns vão dizer que isso é copiar a Apple, mas não podemos fugir do que os usuários querem”, admitiu Marcel Campos, head de marketing global da Asus, ao The Verge.
OnePlus 6

Outra novidade desta semana, a nova geração do aparelho da OnePlus chegou com opções de 6 e 8 GB de RAM e um entalhe obrigatório em sua tela de 6,28 polegadas. O conjunto da obra manteve o bom custo-benefício de seu antecessor, começando nos 530 dólares.
Nokia X6

Duas câmeras na traseira, processador intermediário (um Snapdragon 636), opções de 4 ou 6 GB de RAM e tela quase infinita são as características do aparelho anunciado pela Nokia nessa última quarta-feira (16). O “quase” está ali graças não só à pouca borda: o smartphone da marca finlandesa é mais um com um entalhe na tela.
Oppo R15

Um tanto menos conhecida do que as anteriores, a Oppo não ficou atrás na hora de seguir a tendência lançada pela Apple. Seu R15 tem especificações de topo de linha, aquele preço mais em conta característico dos aparelhos chineses e, claro, uma franja no topo da tela.
Bônus: ZTE Iceberg e os dois entalhes

A ZTE não se contentou com apenas um entalhe e quis ir além. Em um conceito batizado de Iceberg, a empresa da China resolveu testar um visual com dois “notches”. O de cima abriga a câmera frontal, enquanto o de baixo serve como uma segunda caixa de som. A ideia não deve sair do papel tão cedo, dada a situação da marca, mas o próprio Google parece ter ciência do que estar por vir – e deve dar suporte a dois entalhes no Android P.
Apple Android Smartphones LG ZTE Huawei iPhone X
Compartilhe com seus seguidores
Compras na
Internet? Para aproveitar as melhores ofertas, baixe a nova extensão do
Olhar Digital. Além da garantia do melhor preço, você ainda ganha descontos em várias lojas. Clique
aqui para instalar.