var catvm = {}; //框架运行内存 catvm.memory = { config: {print: false, proxy:false} }; //默认关闭打印 catvm.memory.htmlelements = {} catvm.memory.listeners = {} catvm.memory.PluginArray = {} catvm.memory.RunElementList = []; catvm.memory.setTimeout_func = {}; catvm.memory.setInterval_func = {}; catvm.memory.document = {}; //主要用来保护伪造的函数 让其更难被识破 ;;;; (() => { "use strict"; const $toString = Function.toString; const myFunction_toString_symbol = Symbol('('.concat('', ')_', (Math.random() + '').toString(36))); const myToString = function() { return typeof this == 'function' && this[myFunction_toString_symbol] || $toString.call(this); }; function set_native(func, key, value) { Object.defineProperty(func, key, { "enumerable": false, "configurable": true, "writable": true, "value": value }) }; delete Function.prototype['toString']; //删除原型链上的toString set_native(Function.prototype, "toString", myToString); //自己定义个getter方法 set_native(Function.prototype.toString, myFunction_toString_symbol, "function toString() { [native code] }"); //套个娃 保护一下我们定义的toString 否则就暴露了 this.catvm.safefunction = (func) => { set_native(func, myFunction_toString_symbol, `function ${myFunction_toString_symbol,func.name || ''}() { [native code] }`); }; //导出函数到globalThis }).call(this); //框架日志功能 catvm.print = {} catvm.print.open = false; catvm.memory.print = []; catvm.print.log = function (logType,target,property,value) { if (catvm.print.open && catvm.memory.config.print) { //开始保存日志 // if( catvm.memory.print.length == 111){ // debugger; // } catvm.memory.print.push({"类型":logType,"调用者":target,"属性":property,"值":value}); } } catvm.print.getall = function () { console.table(catvm.memory.print,["类型","调用者","属性","值"]); } //框架代理功能 catvm.proxy = function(o){ // if(catvm.memory.config.proxy == false){return o}; return new Proxy(o, { set(target, property, value) { catvm.print.log("set",target,property,value); console.log("set",target,property,value); return Reflect.set(...arguments); }, get(target, property, receiver) { console.log("get",target,property,target[property]); catvm.print.log("get",target,property,target[property]); return target[property]; } }); } //更改浏览器的某些参数 常用的 //catvm.memory.Plugin.new({description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]}) //在此文件下的代码 必须要框架run方法执行后执行 catvm.AddPlugin = function(data){ //{description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]} if(catvm.memory.PluginArray.temp == undefined) { catvm.memory.PluginArray.temp = [] } catvm.memory.PluginArray.temp.push(data); } catvm.memory.config.proxy=true; catvm.memory.config.print=true; catvm.AddPlugin({description:"npAliSSOLogin Plugin",filename:"npalissologin.dll",name:"AliSSOLogin plugin",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]}); catvm.AddPlugin({description:"npAliSSOLogin Plugin",filename:"npalissologin1.dll",name:"AliSSOLogin plugin2",MimeTypes:[{description: "AliSSOLogin",suffixes: "AliSSOLogin",type: "application/npalissologin"},{description: "AliSSOLogin1",suffixes: "AliSSOLogin",type: "application1/npalissologin"}]}); ; var EventTarget =function EventTarget() //构造函数 { debugger; }; catvm.safefunction(EventTarget); Object.defineProperties(EventTarget.prototype , { [Symbol.toStringTag]: { value: "EventTarget", configurable: true } }); EventTarget.prototype.addEventListener = function addEventListener(type, callback){ if(!(type in catvm.memory.listeners)) { catvm.memory.listeners[type] = []; } catvm.memory.listeners[type].push(callback); };catvm.safefunction(EventTarget.prototype.addEventListener); //保护代码 EventTarget.prototype.dispatchEvent = function dispatchEvent(){ debugger; };catvm.safefunction(EventTarget.prototype.dispatchEvent); //保护代码 EventTarget.prototype.removeEventListener = function removeEventListener(){ debugger; };catvm.safefunction(EventTarget.prototype.removeEventListener); //保护代码 var WindowProperties = function WindowProperties(){ }; catvm.safefunction(WindowProperties); //保护代码 Object.defineProperties(WindowProperties.prototype , { [Symbol.toStringTag]: { value: "WindowProperties", configurable: true } }); WindowProperties.prototype.__proto__ = EventTarget.prototype; window = this; var Window = function Window(){ //容易被检测到的 堆栈 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Window); Object.defineProperties(Window.prototype , { [Symbol.toStringTag]: { value: "Window", configurable: true } }); // catvm.memory.setTimeout = setTimeout; window.setTimeout = function setTimeout(func,time){ if(catvm.memory.setTimeout_func[time] == undefined){ catvm.memory.setTimeout_func[time] = []; } catvm.memory.setTimeout_func[time].push(func); };catvm.safefunction(window.setTimeout); // catvm.memory.setInterval = setInterval; window.setInterval = function setInterval(func,time){ if(catvm.memory.setInterval_func[time] == undefined){ catvm.memory.setInterval_func[time] = []; } catvm.memory.setInterval_func[time].push(func); };catvm.safefunction(window.setInterval); //// // window.setTimeout = function setTimeout(x,d) // { // //x 有可能是方法 也有可能是文本 // // debugger; // // typeof(x) == "function"?x():undefined; // // typeof(x) == "string"?eval(x) :undefined; // //正确应该 生成UUID 并且保存到内存 // debugger; // if(!catvm.memory.setTimeout_func[d.toString()]){ // catvm.memory.setTimeout_func[d.toString()] = []; // } // catvm.memory.setTimeout_func[d.toString()].push(x); // return 0; // };catvm.safefunction(window.setTimeout); // window.setInterval = function setInterval(x,d){ // //x 有可能是方法 也有可能是文本 // // typeof(x) == "function" ? x() : undefined; // // typeof(x) == "string" ? eval(x) : undefined; // //正确应该 生成UUID 并且保存到内存 // catvm.memory.setInterval_func[d.toString()] = x // return 0; // };catvm.safefunction(window.setInterval); Window.prototype.PERSISTENT = 1 Window.prototype.TEMPORARY = 0 window.top = window; window.origin = 'http://epub.cnipa.gov.cn'; window.name = '' window.open = function open(){debugger;};catvm.safefunction(window.open); window.webkitRTCPeerConnection = function RTCPeerConnection(){debugger};catvm.safefunction(window.webkitRTCPeerConnection); //chrome可以参照localStorange window.chrome = class chrome{}; window.chrome.loadTimes = function loadTimes(){debugger;};catvm.safefunction(window.chrome.loadTimes); window.chrome.csi = function csi(){debugger;};catvm.safefunction(window.chrome.csi); window.chrome.app = class app{}; window.chrome.app.InstallState = { DISABLED: "disabled", INSTALLED: "installed", NOT_INSTALLED: "not_installed", } window.chrome.app = catvm.proxy(window.chrome.app); window.chrome.app.InstallState = catvm.proxy(window.chrome.app.InstallState); window.chrome = catvm.proxy(window.chrome); window.Element = function Element(){debugger;};catvm.safefunction(window.Element); window.DeviceOrientationEvent = function DeviceOrientationEvent(){debugger};catvm.safefunction(window.DeviceOrientationEvent); window.DeviceMotionEvent = function DeviceMotionEvent(){debugger};catvm.safefunction(window.DeviceMotionEvent); window.XMLHttpRequest = function XMLHttpRequest(){debugger;};catvm.safefunction(window.XMLHttpRequest); // window.localStorange = class localStorange{} // window.localStorange.getItem = function getItem(){debugger;};catvm.safefunction(window.localStorange.getItem); // window.localStorange.setItem = function setItem(){debugger;};catvm.safefunction(window.localStorange.setItem); // window.localStorange = catvm.proxy(window.localStorange) //没问题 window.IDBFactory = function IDBFactory(){ debugger; };catvm.safefunction(window.IDBFactory); window.IDBFactory.prototype.open = function open(){ debugger; var open_ = { error: "", onblocked: null, onerror: null, onsuccess: null, onupgradeneeded: null, readyState: "pending", result: "", source: null, transaction: null, } return catvm.proxy(open_) };catvm.safefunction(window.IDBFactory.prototype.open); window.indexedDB = {}; window.indexedDB.__proto__ = window.IDBFactory.prototype; window.indexedDB = catvm.proxy(window.indexedDB); window.DOMParser = function DOMParser(){ debugger; };catvm.safefunction(window.DOMParser); //没问题 window.webkitRequestFileSystem = function webkitRequestFileSystem(){ debugger; };catvm.safefunction(window.webkitRequestFileSystem); window.clearInterval = function clearInterval(){ debugger; };catvm.safefunction(window.clearInterval); window.HTMLFormElement = function HTMLFormElement(){ debugger; };catvm.safefunction(window.HTMLFormElement); // Object.defineProperties(HTMLFormElement.prototype , { // [Symbol.toStringTag]: { // value: "HTMLFormElement", // configurable: true // } // }); window.HTMLFormElement.prototype.submit = function submit(){ debugger; };catvm.safefunction(window.HTMLFormElement.prototype.submit); window.HTMLFormElement.prototype = catvm.proxy(window.HTMLFormElement.prototype) window.HTMLFormElement = catvm.proxy(window.HTMLFormElement); window.fetch = function fetch(){ debugger; };catvm.safefunction(fetch); window.openDatabase = function openDatabase(){ debugger; };catvm.safefunction(window.openDatabase); window.self = window; window.Request = function Request(){ debugger; };catvm.safefunction(window.Request); // window.MutationObserver = function MutationObserver(){ // debugger; // };catvm.safefunction(window.MutationObserver); window.webkitResolveLocalFileSystemURL = function webkitResolveLocalFileSystemURL(){ debugger; };catvm.safefunction(window.webkitResolveLocalFileSystemURL); //没问题 window.MutationObserver = function MutationObserver(){ debugger; this.disconnect = function disconnect(){debugger;} this.observe = function observe(){debugger;} this.takeRecords = function takeRecords(){debugger;} return catvm.proxy(this) };catvm.safefunction(window.MutationObserver); window.Error = new Proxy(window.Error,{ construct: function (a,s){ res = new a(s) res.stack = ` Error at _$e2 (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:20609) at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:26991) at _$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:22738) at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:26104) at _$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:22738) at _$nr (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:24525) at Array._$dg (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:22738) at eval (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :2:158543) at eval (eval at _$c5 (http://credit.customs.gov.cn/ccppwebserver/ZCQq7Fzuhp12/BSrw3csEQORp.f141528.js:5:170106), :9:2637) at eval () ` debugger return res; } }); window.addEventListener = function addEventListener(X,func){ debugger; if(!catvm.memory.listeners[X.toString()]){ catvm.memory.listeners[X.toString()] = []; } catvm.memory.listeners[X.toString()].push(func); };catvm.safefunction(window.addEventListener); /////////////// window.defaultStatus = ""; window.onmessage = null; window.personalbar = window.scrollbars = window.statusbar = window.toolbar = window.locationbar = window.menubar = catvm.proxy({visible: true}); window.devicePixelRatio = 1.25; window.WebSocket = function WebSocket(){ debugger; };catvm.safefunction(window.WebSocket); window.Path2D = function Path2D(){ debugger; };catvm.safefunction(window.Path2D); window.SourceBuffer = function SourceBuffer(){ debugger; };catvm.safefunction(window.SourceBuffer); window.external = catvm.proxy(class external{}); window.external.IsSearchProviderInstalled = function IsSearchProviderInstalled(){ debugger; };catvm.safefunction(window.external.IsSearchProviderInstalled); window.SVGPatternElement = function SVGPatternElement(){ debugger; };catvm.safefunction(window.SVGPatternElement); window.CDATASection = function CDATASection(){ debugger; };catvm.safefunction(window.CDATASection); window.CloseEvent = function CloseEvent(){ debugger; };catvm.safefunction(window.CloseEvent); window.Notification = function Notification(){ debugger; };catvm.safefunction(window.Notification); window.HTMLFrameSetElement = function HTMLFrameSetElement(){ debugger; };catvm.safefunction(window.HTMLFrameSetElement); window.TextTrackList = function TextTrackList(){ debugger; };catvm.safefunction(window.TextTrackList); window.ScreenOrientation = function ScreenOrientation(){ debugger; };catvm.safefunction(window.ScreenOrientation); window.SpeechSynthesisUtterance = function SpeechSynthesisUtterance(){ debugger; };catvm.safefunction(window.SpeechSynthesisUtterance); window.onerror = null; window.PerformancePaintTiming = function PerformancePaintTiming(){ debugger; };catvm.safefunction(window.PerformancePaintTiming); window.SVGGraphicsElement = function SVGGraphicsElement(){ debugger; };catvm.safefunction(window.SVGGraphicsElement); window.MediaEncryptedEvent = function MediaEncryptedEvent(){ debugger; };catvm.safefunction(window.MediaEncryptedEvent); window.OffscreenCanvasRenderingContext2D = function OffscreenCanvasRenderingContext2D(){ debugger; };catvm.safefunction(window.OffscreenCanvasRenderingContext2D); window.matchMedia = function matchMedia(X){ debugger; if(X === '(any-pointer: fine )'){ var result = { matches: true, media: "(any-pointer: fine)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-pointer: coarse )'){ var result = { matches: false, media: "(any-pointer: coarse)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-pointer: none )'){ var result = { matches: false, media: "(any-pointer: none)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-pointer )'){ var result = { matches: true, media: "(any-pointer)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-hover: hover )'){ var result = { matches: true, media: "(any-hover: hover)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-hover: on-demand )'){ var result = { matches: false, media: "not all", onchange: null, } return catvm.proxy(result); }else if(X === '(any-hover: none )'){ var result = { matches: false, media: "(any-hover: none)", onchange: null, } return catvm.proxy(result); }else if(X === '(any-hover )'){ var result = { matches: true, media: "(any-hover)", onchange: null, } return catvm.proxy(result); }else if(X === '(color-gamut: srgb )'){ var result = { matches: true, media: "(color-gamut: srgb)", onchange: null, } return catvm.proxy(result); }else if(X === '(color-gamut: p3 )'){ var result = { matches: false, media: "(color-gamut: p3)", onchange: null, } return catvm.proxy(result); }else if(X === '(color-gamut: rec2020 )'){ var result = { matches: false, media: "(color-gamut: rec2020)", onchange: null, } return catvm.proxy(result); }else if(X === '(color-gamut )'){ var result = { matches: true, media: "(color-gamut)", onchange: null, } return catvm.proxy(result); } return catvm.proxy(result); };catvm.safefunction(window.matchMedia); window.BeforeInstallPromptEvent = function BeforeInstallPromptEvent(){ debugger; };catvm.safefunction(window.BeforeInstallPromptEvent); window.HTMLInputElement = function HTMLInputElement(){ debugger; };catvm.safefunction(window.HTMLInputElement); window.HTMLInputElement = catvm.proxy(window.HTMLInputElement) window.HTMLAnchorElement = function HTMLAnchorElement(){ debugger; };catvm.safefunction(window.HTMLAnchorElement); window.HTMLAnchorElement.prototype = catvm.proxy(window.HTMLAnchorElement.prototype); window.HTMLAnchorElement = catvm.proxy(window.HTMLAnchorElement); Window.prototype.__proto__ = WindowProperties.prototype; window.__proto__ = Window.prototype; window = catvm.proxy(window) var Location =function Location() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Location); Object.defineProperties(Location.prototype , { [Symbol.toStringTag]: { value: "Location", configurable: false } }); //// location = {}; location.ancestorOrigins = catvm.proxy(class ancestorOrigins{}); location.href = 'http://zxgk.court.gov.cn/'; location.host = 'zxgk.court.gov.cn'; //如果url中包含了:端口号,则就要加上,但是hostname不用加 location.hostname = location.host; location.protocol = 'http:'; location.port = ''; location.origin = 'http://zxgk.court.gov.cn'; location.pathname = '/' location.search = ""; location.hash = ""; location.replace = function replace(){ debugger; };catvm.safefunction(location.replace); ////////////////////////////////////// location.__proto__ = Location.prototype; location = catvm.proxy(location); catvm.memory.navigator = {} var Navigator =function Navigator() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Navigator); Object.defineProperties(Navigator.prototype , { [Symbol.toStringTag]: { value: "Navigator", configurable: true } }); //// navigator = {}; navigator.__proto__ = Navigator.prototype; Navigator.prototype.appCodeName = 'Mozilla'; Navigator.prototype.appName = 'Netscape'; Navigator.prototype.userAgent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'; Navigator.prototype.languages = ['zh-CN']; Navigator.prototype.platform = 'Win32'; Navigator.prototype.plugins = []; var NetworkInformation = new(class NetworkInformation{}); NetworkInformation.downlink = 10; NetworkInformation.effectiveType = "4g"; NetworkInformation.onchange = null; NetworkInformation.rtt = 150; NetworkInformation.saveData = false; Navigator.prototype.connection = catvm.proxy(NetworkInformation); Navigator.prototype.appVersion = '5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36 Edg/103.0.1264.62'; Navigator.prototype.webkitPersistentStorage = class DeprecatedStorageQuota{}; Navigator.prototype.webkitPersistentStorage = catvm.proxy(Navigator.prototype.webkitPersistentStorage); Navigator.prototype.mimeTypes = { length:0 } Navigator.prototype.mimeTypes = catvm.proxy(Navigator.prototype.mimeTypes); Navigator.prototype.webdriver = false; catvm.memory.navigator.getwebdriver = function webdriver(){ return false; };catvm.safefunction(catvm.memory.navigator.getwebdriver); Object.defineProperty(catvm.memory.navigator.getwebdriver, 'name', { value: "get webdriver" }); Object.defineProperty(Navigator.prototype, 'webdriver', { configurable: true, enumerable: true, get: catvm.memory.navigator.getwebdriver }); Navigator.prototype.hardwareConcurrency = 6; Navigator.prototype.productSub = '20030107'; Navigator.prototype.product = "Gecko"; Navigator.prototype.doNotTrack = null; Navigator.prototype.maxTouchPoints = 0; Navigator.prototype.vibrate = function vibrate(){ debugger; };catvm.safefunction(Navigator.prototype.vibrate); Navigator.prototype.language = 'zh-CN'; Navigator.prototype.getBattery = function getBattery(){ var BatteryManager_ = new (function BatteryManager(){}); BatteryManager_.charging = false; BatteryManager_.chargingTime = Infinity; BatteryManager_.dischargingTime = Infinity; BatteryManager_.level = 1; BatteryManager_.onchargingchange = null; BatteryManager_.onchargingtimechange = null; BatteryManager_.ondischargingtimechange = null; BatteryManager_.onlevelchange = null; return new Promise((resolve,reject) => { resolve(BatteryManager_); }) };catvm.safefunction(Navigator.prototype.getBattery); //Navigator.prototype.getBattery = catvm.proxy(Navigator.prototype.getBattery); for (catvm.memory.navigator.temp in Navigator.prototype) { if(catvm.memory.navigator.temp === "webdriver"){ continue; } navigator[catvm.memory.navigator.temp] = Navigator.prototype[catvm.memory.navigator.temp]; Navigator.prototype.__defineGetter__(catvm.memory.navigator.temp, function() { throw new TypeError("Illegal constructor"); }); } //// window.clientInformation = navigator; navigator = catvm.proxy(navigator); var History =function History() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(History); Object.defineProperties(History.prototype , { [Symbol.toStringTag]: { value: "History", configurable: true } }); //// History.prototype.back = function back(){debugger};catvm.safefunction(History.prototype.back); ///// history = {}; history.__proto__ = History.prototype; history = catvm.proxy(history); var Screen =function Screen() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Screen); Object.defineProperties(Screen.prototype , { [Symbol.toStringTag]: { value: "Screen", configurable: true } }); //// Screen.prototype.availHeight = 824; Screen.prototype.availWidth = 1536; Screen.prototype.availLeft = 0; Screen.prototype.availTop = 0; Screen.prototype.colorDepth = 24; Screen.prototype.height = 864; Screen.prototype.width = 1536; Screen.prototype.pixelDepth = 24; //// screen = {}; screen.__proto__ = Screen.prototype; screen = catvm.proxy(screen); var Storage =function Storage() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Storage); Object.defineProperties(Storage.prototype , { [Symbol.toStringTag]: { value: "Storage", configurable: true } }); ///// Storage.prototype.length=0; Storage.prototype.clear=function clear(){ debugger; var temp = Object.keys(this) for (var i=0;temp.length>i;i++) { delete this[temp[i]]; } }; catvm.safefunction(Storage.prototype.clear); Storage.prototype.getItem=function getItem(k){ debugger; return this[k]; }; catvm.safefunction(Storage.prototype.getItem); Storage.prototype.key=function key(index){ debugger; return Object.keys(this)[index] }; catvm.safefunction(Storage.prototype.key); Storage.prototype.removeItem=function removeItem(k){ debugger; delete this[k]; }; catvm.safefunction(Storage.prototype.removeItem); Storage.prototype.setItem=function setItem(k,v){ debugger; debugger; this[k] = v; }; catvm.safefunction(Storage.prototype.setItem); ////容易被检测 Storage.prototype.__defineGetter__('length',function(){ return Object.keys(this).length; }) ////// var localStorage = { "$_YVTX": "Wq", "$_YWTU": "1x1u9wsfI.Dr_GUS19l9Omk7l4J_KMlrmg82nIqvd.7", "_$rc": "256mYX1vwbvl.xgreLtinsZZe1QyRyyY3DYaTvtmwChYpzZAMlFgCSaNPJ9", "__#classType": "localStorage", length: 4, }; localStorage.__proto__ = Storage.prototype; localStorage = catvm.proxy(localStorage); var sessionStorage = { "$_YVTX": "Wq", "$_YWTU": "1x1u9wsfI.Dr_GUS19l9Omk7l4J_KMlrmg82nIqvd.7", length: 2 }; sessionStorage.__proto__ = Storage.prototype; sessionStorage = catvm.proxy(sessionStorage); catvm.memory.Plugin = {} var Plugin =function Plugin() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Plugin); catvm.memory.Plugin.iterator = function values(){ debugger; }; catvm.safefunction(catvm.memory.Plugin.iterator); Object.defineProperties(Plugin.prototype , { [Symbol.toStringTag]: { value: "Plugin", configurable: true }, [Symbol.iterator]: { value: catvm.memory.Plugin.iterator, configurable: true } }); /////////// ////////// catvm.memory.Plugin.new = function (data){ var plugin = {}; plugin.__proto__ = Plugin.prototype; if(data != undefined){ plugin.description = data.description; plugin.filename = data.filename; plugin.name = data.name; } return plugin; } var Performance = function Performance(){ //容易被检测到的 堆栈 throw new TypeError("Illegal constructor"); }; catvm.safefunction(Performance); Object.defineProperties(Performance.prototype , { [Symbol.toStringTag]: { value: "Performance", configurable: true } }); //// performance = {}; window.xxxxx = 0; performance.now = function now(){ if(window.xxxxx == 0){ window.xxxxx++; return 460272.40000009537; }else{ return 521235.3000000715 } };catvm.safefunction(performance.now); performance.__proto__ = Performance.prototype; Performance.prototype = function getEntriesByName(){debugger};catvm.safefunction(Performance.prototype); ///// Performance.prototype.__proto__ = EventTarget.prototype; performance = catvm.proxy(performance); var BatteryManager = function BatteryManager(){ //容易被检测到的 堆栈 throw new TypeError("Illegal constructor"); }; catvm.safefunction(BatteryManager); Object.defineProperties(BatteryManager.prototype , { [Symbol.toStringTag]: { value: "BatteryManager", configurable: true } }); /// BatteryManager.prototype.charging = true; BatteryManager.prototype.chargingTime = Infinity; BatteryManager.prototype.dischargingTime = Infinity; BatteryManager.prototype.level = 1; BatteryManager.prototype.onchargingchange = null; BatteryManager.prototype.onchargingtimechange = null; BatteryManager.prototype.ondischargingtimechange = null; BatteryManager.prototype.onlevelchange = null; BatteryManager.prototype.__proto__ = EventTarget.prototype ///// catvm.memory.navigator = {} var HTMLDivElement =function HTMLDivElement() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(HTMLDivElement); Object.defineProperties(HTMLDivElement.prototype , { [Symbol.toStringTag]: { value: "HTMLDivElement", configurable: true } }); HTMLDivElement.prototype.getElementsByTagName = function getElementsByTagName(){ debugger };catvm.safefunction(HTMLDivElement.prototype.getElementsByTagName); var HTMLMetaElement =function HTMLMetaElement() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(HTMLMetaElement); Object.defineProperties(HTMLMetaElement.prototype , { [Symbol.toStringTag]: { value: "HTMLMetaElement", configurable: true } }); var HTMLHtmlElement =function HTMLHtmlElement() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(HTMLHtmlElement); Object.defineProperties(HTMLHtmlElement.prototype , { [Symbol.toStringTag]: { value: "HTMLHtmlElement", configurable: true } }); catvm.memory.canvas = {}; var CanvasRenderingContext2D =function CanvasRenderingContext2D() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(CanvasRenderingContext2D); Object.defineProperties(CanvasRenderingContext2D.prototype , { [Symbol.toStringTag]: { value: "CanvasRenderingContext2D", configurable: true } }); /////////////////////////////////////////////////////////////////////////////////////////////// CanvasRenderingContext2D.prototype.rect=function rect(a_,b_,c_,d_){ debugger; };catvm.safefunction(CanvasRenderingContext2D.prototype.rect); CanvasRenderingContext2D.prototype.isPointInPath=function isPointInPath(x_,y_,z_){ debugger; return false; };catvm.safefunction(CanvasRenderingContext2D.prototype.isPointInPath); CanvasRenderingContext2D.prototype.fillRect=function fillRect(x, y, width, height){ //绘制一个填充了内容的矩形,填充样式由当前的 fillStyle 决定 //x->矩阵的起始x y->矩阵的起始y width->矩阵的宽度 height->矩阵的高度 debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.fillRect); CanvasRenderingContext2D.prototype.fillText=function fillText(a_,b_,c_){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.fillText); CanvasRenderingContext2D.prototype.beginPath=function beginPath(){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.beginPath); CanvasRenderingContext2D.prototype.closePath=function closePath(){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.closePath); CanvasRenderingContext2D.prototype.fill=function fill(x_){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.fill); CanvasRenderingContext2D.prototype.arc=function arc(x_,y_,z_,a_,b_,c_){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.arc); CanvasRenderingContext2D.prototype.stroke=function stroke(x_,y_,z_,a_,b_,c_){ debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.stroke); CanvasRenderingContext2D.prototype.strokeRect=function strokeRect(x, y, width, height){ //绘制空心矩阵其 debugger; return undefined; };catvm.safefunction(CanvasRenderingContext2D.prototype.strokeRect); /* CanvasRenderingContext2D.fillStyle 设置或返回用于填充绘画的颜色、渐变或模式 可以 CanvasRenderingContext2D.fillStyle = 'yellow' 颜色-color 绘图填充色的css颜色(默认是#000000) 渐变-gradient 用于填充绘图的渐变对象 模式-pattern */ //////////////////////////////////////////////////////////////////////////////////////////////////////// catvm.memory.canvas.canvasRenderingContext2D = {}; catvm.memory.canvas.canvasRenderingContext2D.__proto__ = CanvasRenderingContext2D.prototype; catvm.memory.canvas.canvasRenderingContext2D = catvm.proxy(catvm.memory.canvas.canvasRenderingContext2D); catvm.memory.webgl = {}; var WebGLRenderingContext =function WebGLRenderingContext() {//构造函数 throw new TypeError("Illegal constructor"); }; catvm.safefunction(WebGLRenderingContext); Object.defineProperties(WebGLRenderingContext.prototype , { [Symbol.toStringTag]: { value: "WebGLRenderingContext", configurable: true } }); window.xxxxx = 0; WebGLRenderingContext.prototype.canvas=catvm.proxy(class canvas{}); WebGLRenderingContext.prototype.canvas.toDataURL = function toDataURL(){ debugger; return "data:image/png;base64,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"; } WebGLRenderingContext.prototype.drawingBufferWidth=300; WebGLRenderingContext.prototype.drawingBufferHeight=150; WebGLRenderingContext.prototype.DEPTH_BUFFER_BIT=256; WebGLRenderingContext.prototype.STENCIL_BUFFER_BIT=1024; WebGLRenderingContext.prototype.COLOR_BUFFER_BIT=16384; WebGLRenderingContext.prototype.POINTS=0; WebGLRenderingContext.prototype.LINES=1; WebGLRenderingContext.prototype.LINE_LOOP=2; WebGLRenderingContext.prototype.LINE_STRIP=3; WebGLRenderingContext.prototype.TRIANGLES=4; WebGLRenderingContext.prototype.TRIANGLE_STRIP=5; WebGLRenderingContext.prototype.TRIANGLE_FAN=6; WebGLRenderingContext.prototype.ZERO=0; WebGLRenderingContext.prototype.ONE=1; WebGLRenderingContext.prototype.SRC_COLOR=768; WebGLRenderingContext.prototype.ONE_MINUS_SRC_COLOR=769; WebGLRenderingContext.prototype.SRC_ALPHA=770; WebGLRenderingContext.prototype.ONE_MINUS_SRC_ALPHA=771; WebGLRenderingContext.prototype.DST_ALPHA=772; WebGLRenderingContext.prototype.ONE_MINUS_DST_ALPHA=773; WebGLRenderingContext.prototype.DST_COLOR=774; WebGLRenderingContext.prototype.ONE_MINUS_DST_COLOR=775; WebGLRenderingContext.prototype.SRC_ALPHA_SATURATE=776; WebGLRenderingContext.prototype.FUNC_ADD=32774; WebGLRenderingContext.prototype.BLEND_EQUATION=32777; WebGLRenderingContext.prototype.BLEND_EQUATION_RGB=32777; WebGLRenderingContext.prototype.BLEND_EQUATION_ALPHA=34877; WebGLRenderingContext.prototype.FUNC_SUBTRACT=32778; WebGLRenderingContext.prototype.FUNC_REVERSE_SUBTRACT=32779; WebGLRenderingContext.prototype.BLEND_DST_RGB=32968; WebGLRenderingContext.prototype.BLEND_SRC_RGB=32969; WebGLRenderingContext.prototype.BLEND_DST_ALPHA=32970; WebGLRenderingContext.prototype.BLEND_SRC_ALPHA=32971; WebGLRenderingContext.prototype.CONSTANT_COLOR=32769; WebGLRenderingContext.prototype.ONE_MINUS_CONSTANT_COLOR=32770; WebGLRenderingContext.prototype.CONSTANT_ALPHA=32771; WebGLRenderingContext.prototype.ONE_MINUS_CONSTANT_ALPHA=32772; WebGLRenderingContext.prototype.BLEND_COLOR=32773; WebGLRenderingContext.prototype.ARRAY_BUFFER=34962; WebGLRenderingContext.prototype.ELEMENT_ARRAY_BUFFER=34963; WebGLRenderingContext.prototype.ARRAY_BUFFER_BINDING=34964; WebGLRenderingContext.prototype.ELEMENT_ARRAY_BUFFER_BINDING=34965; WebGLRenderingContext.prototype.STREAM_DRAW=35040; WebGLRenderingContext.prototype.STATIC_DRAW=35044; WebGLRenderingContext.prototype.DYNAMIC_DRAW=35048; WebGLRenderingContext.prototype.BUFFER_SIZE=34660; WebGLRenderingContext.prototype.BUFFER_USAGE=34661; WebGLRenderingContext.prototype.CURRENT_VERTEX_ATTRIB=34342; WebGLRenderingContext.prototype.FRONT=1028; WebGLRenderingContext.prototype.BACK=1029; WebGLRenderingContext.prototype.FRONT_AND_BACK=1032; WebGLRenderingContext.prototype.TEXTURE_2D=3553; WebGLRenderingContext.prototype.CULL_FACE=2884; WebGLRenderingContext.prototype.BLEND=3042; WebGLRenderingContext.prototype.DITHER=3024; WebGLRenderingContext.prototype.STENCIL_TEST=2960; WebGLRenderingContext.prototype.DEPTH_TEST=2929; WebGLRenderingContext.prototype.SCISSOR_TEST=3089; WebGLRenderingContext.prototype.POLYGON_OFFSET_FILL=32823; WebGLRenderingContext.prototype.SAMPLE_ALPHA_TO_COVERAGE=32926; WebGLRenderingContext.prototype.SAMPLE_COVERAGE=32928; WebGLRenderingContext.prototype.NO_ERROR=0; WebGLRenderingContext.prototype.INVALID_ENUM=1280; WebGLRenderingContext.prototype.INVALID_VALUE=1281; WebGLRenderingContext.prototype.INVALID_OPERATION=1282; WebGLRenderingContext.prototype.OUT_OF_MEMORY=1285; WebGLRenderingContext.prototype.CW=2304; WebGLRenderingContext.prototype.CCW=2305; WebGLRenderingContext.prototype.LINE_WIDTH=2849; WebGLRenderingContext.prototype.ALIASED_POINT_SIZE_RANGE=33901; WebGLRenderingContext.prototype.ALIASED_LINE_WIDTH_RANGE=33902; WebGLRenderingContext.prototype.CULL_FACE_MODE=2885; WebGLRenderingContext.prototype.FRONT_FACE=2886; WebGLRenderingContext.prototype.DEPTH_RANGE=2928; WebGLRenderingContext.prototype.DEPTH_WRITEMASK=2930; WebGLRenderingContext.prototype.DEPTH_CLEAR_VALUE=2931; WebGLRenderingContext.prototype.DEPTH_FUNC=2932; WebGLRenderingContext.prototype.STENCIL_CLEAR_VALUE=2961; WebGLRenderingContext.prototype.STENCIL_FUNC=2962; WebGLRenderingContext.prototype.STENCIL_FAIL=2964; WebGLRenderingContext.prototype.STENCIL_PASS_DEPTH_FAIL=2965; WebGLRenderingContext.prototype.STENCIL_PASS_DEPTH_PASS=2966; WebGLRenderingContext.prototype.STENCIL_REF=2967; WebGLRenderingContext.prototype.STENCIL_VALUE_MASK=2963; WebGLRenderingContext.prototype.STENCIL_WRITEMASK=2968; WebGLRenderingContext.prototype.STENCIL_BACK_FUNC=34816; WebGLRenderingContext.prototype.STENCIL_BACK_FAIL=34817; WebGLRenderingContext.prototype.STENCIL_BACK_PASS_DEPTH_FAIL=34818; WebGLRenderingContext.prototype.STENCIL_BACK_PASS_DEPTH_PASS=34819; WebGLRenderingContext.prototype.STENCIL_BACK_REF=36003; WebGLRenderingContext.prototype.STENCIL_BACK_VALUE_MASK=36004; WebGLRenderingContext.prototype.STENCIL_BACK_WRITEMASK=36005; WebGLRenderingContext.prototype.VIEWPORT=2978; WebGLRenderingContext.prototype.SCISSOR_BOX=3088; WebGLRenderingContext.prototype.COLOR_CLEAR_VALUE=3106; WebGLRenderingContext.prototype.COLOR_WRITEMASK=3107; WebGLRenderingContext.prototype.UNPACK_ALIGNMENT=3317; WebGLRenderingContext.prototype.PACK_ALIGNMENT=3333; WebGLRenderingContext.prototype.MAX_TEXTURE_SIZE=3379; WebGLRenderingContext.prototype.MAX_VIEWPORT_DIMS=3386; WebGLRenderingContext.prototype.SUBPIXEL_BITS=3408; WebGLRenderingContext.prototype.RED_BITS=3410; WebGLRenderingContext.prototype.GREEN_BITS=3411; WebGLRenderingContext.prototype.BLUE_BITS=3412; WebGLRenderingContext.prototype.ALPHA_BITS=3413; WebGLRenderingContext.prototype.DEPTH_BITS=3414; WebGLRenderingContext.prototype.STENCIL_BITS=3415; WebGLRenderingContext.prototype.POLYGON_OFFSET_UNITS=10752; WebGLRenderingContext.prototype.POLYGON_OFFSET_FACTOR=32824; WebGLRenderingContext.prototype.TEXTURE_BINDING_2D=32873; WebGLRenderingContext.prototype.SAMPLE_BUFFERS=32936; WebGLRenderingContext.prototype.SAMPLES=32937; WebGLRenderingContext.prototype.SAMPLE_COVERAGE_VALUE=32938; WebGLRenderingContext.prototype.SAMPLE_COVERAGE_INVERT=32939; WebGLRenderingContext.prototype.COMPRESSED_TEXTURE_FORMATS=34467; WebGLRenderingContext.prototype.DONT_CARE=4352; WebGLRenderingContext.prototype.FASTEST=4353; WebGLRenderingContext.prototype.NICEST=4354; WebGLRenderingContext.prototype.GENERATE_MIPMAP_HINT=33170; WebGLRenderingContext.prototype.BYTE=5120; WebGLRenderingContext.prototype.UNSIGNED_BYTE=5121; WebGLRenderingContext.prototype.SHORT=5122; WebGLRenderingContext.prototype.UNSIGNED_SHORT=5123; WebGLRenderingContext.prototype.INT=5124; WebGLRenderingContext.prototype.UNSIGNED_INT=5125; WebGLRenderingContext.prototype.FLOAT=5126; WebGLRenderingContext.prototype.DEPTH_COMPONENT=6402; WebGLRenderingContext.prototype.ALPHA=6406; WebGLRenderingContext.prototype.RGB=6407; WebGLRenderingContext.prototype.RGBA=6408; WebGLRenderingContext.prototype.LUMINANCE=6409; WebGLRenderingContext.prototype.LUMINANCE_ALPHA=6410; WebGLRenderingContext.prototype.UNSIGNED_SHORT_4_4_4_4=32819; WebGLRenderingContext.prototype.UNSIGNED_SHORT_5_5_5_1=32820; WebGLRenderingContext.prototype.UNSIGNED_SHORT_5_6_5=33635; WebGLRenderingContext.prototype.FRAGMENT_SHADER=35632; WebGLRenderingContext.prototype.VERTEX_SHADER=35633; WebGLRenderingContext.prototype.MAX_VERTEX_ATTRIBS=34921; WebGLRenderingContext.prototype.MAX_VERTEX_UNIFORM_VECTORS=36347; WebGLRenderingContext.prototype.MAX_VARYING_VECTORS=36348; WebGLRenderingContext.prototype.MAX_COMBINED_TEXTURE_IMAGE_UNITS=35661; WebGLRenderingContext.prototype.MAX_VERTEX_TEXTURE_IMAGE_UNITS=35660; WebGLRenderingContext.prototype.MAX_TEXTURE_IMAGE_UNITS=34930; WebGLRenderingContext.prototype.MAX_FRAGMENT_UNIFORM_VECTORS=36349; WebGLRenderingContext.prototype.SHADER_TYPE=35663; WebGLRenderingContext.prototype.DELETE_STATUS=35712; WebGLRenderingContext.prototype.LINK_STATUS=35714; WebGLRenderingContext.prototype.VALIDATE_STATUS=35715; WebGLRenderingContext.prototype.ATTACHED_SHADERS=35717; WebGLRenderingContext.prototype.ACTIVE_UNIFORMS=35718; WebGLRenderingContext.prototype.ACTIVE_ATTRIBUTES=35721; WebGLRenderingContext.prototype.SHADING_LANGUAGE_VERSION=35724; WebGLRenderingContext.prototype.CURRENT_PROGRAM=35725; WebGLRenderingContext.prototype.NEVER=512; WebGLRenderingContext.prototype.LESS=513; WebGLRenderingContext.prototype.EQUAL=514; WebGLRenderingContext.prototype.LEQUAL=515; WebGLRenderingContext.prototype.GREATER=516; WebGLRenderingContext.prototype.NOTEQUAL=517; WebGLRenderingContext.prototype.GEQUAL=518; WebGLRenderingContext.prototype.ALWAYS=519; WebGLRenderingContext.prototype.KEEP=7680; WebGLRenderingContext.prototype.REPLACE=7681; WebGLRenderingContext.prototype.INCR=7682; WebGLRenderingContext.prototype.DECR=7683; WebGLRenderingContext.prototype.INVERT=5386; WebGLRenderingContext.prototype.INCR_WRAP=34055; WebGLRenderingContext.prototype.DECR_WRAP=34056; WebGLRenderingContext.prototype.VENDOR=7936; WebGLRenderingContext.prototype.RENDERER=7937; WebGLRenderingContext.prototype.VERSION=7938; WebGLRenderingContext.prototype.NEAREST=9728; WebGLRenderingContext.prototype.LINEAR=9729; WebGLRenderingContext.prototype.NEAREST_MIPMAP_NEAREST=9984; WebGLRenderingContext.prototype.LINEAR_MIPMAP_NEAREST=9985; WebGLRenderingContext.prototype.NEAREST_MIPMAP_LINEAR=9986; WebGLRenderingContext.prototype.LINEAR_MIPMAP_LINEAR=9987; WebGLRenderingContext.prototype.TEXTURE_MAG_FILTER=10240; WebGLRenderingContext.prototype.TEXTURE_MIN_FILTER=10241; WebGLRenderingContext.prototype.TEXTURE_WRAP_S=10242; WebGLRenderingContext.prototype.TEXTURE_WRAP_T=10243; WebGLRenderingContext.prototype.TEXTURE=5890; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP=34067; WebGLRenderingContext.prototype.TEXTURE_BINDING_CUBE_MAP=34068; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_X=34069; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_X=34070; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_Y=34071; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_Y=34072; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_POSITIVE_Z=34073; WebGLRenderingContext.prototype.TEXTURE_CUBE_MAP_NEGATIVE_Z=34074; WebGLRenderingContext.prototype.MAX_CUBE_MAP_TEXTURE_SIZE=34076; WebGLRenderingContext.prototype.TEXTURE0=33984; WebGLRenderingContext.prototype.TEXTURE1=33985; WebGLRenderingContext.prototype.TEXTURE2=33986; WebGLRenderingContext.prototype.TEXTURE3=33987; WebGLRenderingContext.prototype.TEXTURE4=33988; WebGLRenderingContext.prototype.TEXTURE5=33989; WebGLRenderingContext.prototype.TEXTURE6=33990; WebGLRenderingContext.prototype.TEXTURE7=33991; WebGLRenderingContext.prototype.TEXTURE8=33992; WebGLRenderingContext.prototype.TEXTURE9=33993; WebGLRenderingContext.prototype.TEXTURE10=33994; WebGLRenderingContext.prototype.TEXTURE11=33995; WebGLRenderingContext.prototype.TEXTURE12=33996; WebGLRenderingContext.prototype.TEXTURE13=33997; WebGLRenderingContext.prototype.TEXTURE14=33998; WebGLRenderingContext.prototype.TEXTURE15=33999; WebGLRenderingContext.prototype.TEXTURE16=34000; WebGLRenderingContext.prototype.TEXTURE17=34001; WebGLRenderingContext.prototype.TEXTURE18=34002; WebGLRenderingContext.prototype.TEXTURE19=34003; WebGLRenderingContext.prototype.TEXTURE20=34004; WebGLRenderingContext.prototype.TEXTURE21=34005; WebGLRenderingContext.prototype.TEXTURE22=34006; WebGLRenderingContext.prototype.TEXTURE23=34007; WebGLRenderingContext.prototype.TEXTURE24=34008; WebGLRenderingContext.prototype.TEXTURE25=34009; WebGLRenderingContext.prototype.TEXTURE26=34010; WebGLRenderingContext.prototype.TEXTURE27=34011; WebGLRenderingContext.prototype.TEXTURE28=34012; WebGLRenderingContext.prototype.TEXTURE29=34013; WebGLRenderingContext.prototype.TEXTURE30=34014; WebGLRenderingContext.prototype.TEXTURE31=34015; WebGLRenderingContext.prototype.ACTIVE_TEXTURE=34016; WebGLRenderingContext.prototype.REPEAT=10497; WebGLRenderingContext.prototype.CLAMP_TO_EDGE=33071; WebGLRenderingContext.prototype.MIRRORED_REPEAT=33648; WebGLRenderingContext.prototype.FLOAT_VEC2=35664; WebGLRenderingContext.prototype.FLOAT_VEC3=35665; WebGLRenderingContext.prototype.FLOAT_VEC4=35666; WebGLRenderingContext.prototype.INT_VEC2=35667; WebGLRenderingContext.prototype.INT_VEC3=35668; WebGLRenderingContext.prototype.INT_VEC4=35669; WebGLRenderingContext.prototype.BOOL=35670; WebGLRenderingContext.prototype.BOOL_VEC2=35671; WebGLRenderingContext.prototype.BOOL_VEC3=35672; WebGLRenderingContext.prototype.BOOL_VEC4=35673; WebGLRenderingContext.prototype.FLOAT_MAT2=35674; WebGLRenderingContext.prototype.FLOAT_MAT3=35675; WebGLRenderingContext.prototype.FLOAT_MAT4=35676; WebGLRenderingContext.prototype.SAMPLER_2D=35678; WebGLRenderingContext.prototype.SAMPLER_CUBE=35680; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_ENABLED=34338; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_SIZE=34339; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_STRIDE=34340; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_TYPE=34341; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_NORMALIZED=34922; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_POINTER=34373; WebGLRenderingContext.prototype.VERTEX_ATTRIB_ARRAY_BUFFER_BINDING=34975; WebGLRenderingContext.prototype.IMPLEMENTATION_COLOR_READ_TYPE=35738; WebGLRenderingContext.prototype.IMPLEMENTATION_COLOR_READ_FORMAT=35739; WebGLRenderingContext.prototype.COMPILE_STATUS=35713; WebGLRenderingContext.prototype.LOW_FLOAT=36336; WebGLRenderingContext.prototype.MEDIUM_FLOAT=36337; WebGLRenderingContext.prototype.HIGH_FLOAT=36338; WebGLRenderingContext.prototype.LOW_INT=36339; WebGLRenderingContext.prototype.MEDIUM_INT=36340; WebGLRenderingContext.prototype.HIGH_INT=36341; WebGLRenderingContext.prototype.FRAMEBUFFER=36160; WebGLRenderingContext.prototype.RENDERBUFFER=36161; WebGLRenderingContext.prototype.RGBA4=32854; WebGLRenderingContext.prototype.RGB5_A1=32855; WebGLRenderingContext.prototype.RGB565=36194; WebGLRenderingContext.prototype.DEPTH_COMPONENT16=33189; WebGLRenderingContext.prototype.STENCIL_INDEX8=36168; WebGLRenderingContext.prototype.DEPTH_STENCIL=34041; WebGLRenderingContext.prototype.RENDERBUFFER_WIDTH=36162; WebGLRenderingContext.prototype.RENDERBUFFER_HEIGHT=36163; WebGLRenderingContext.prototype.RENDERBUFFER_INTERNAL_FORMAT=36164; WebGLRenderingContext.prototype.RENDERBUFFER_RED_SIZE=36176; WebGLRenderingContext.prototype.RENDERBUFFER_GREEN_SIZE=36177; WebGLRenderingContext.prototype.RENDERBUFFER_BLUE_SIZE=36178; WebGLRenderingContext.prototype.RENDERBUFFER_ALPHA_SIZE=36179; WebGLRenderingContext.prototype.RENDERBUFFER_DEPTH_SIZE=36180; WebGLRenderingContext.prototype.RENDERBUFFER_STENCIL_SIZE=36181; WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE=36048; WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_OBJECT_NAME=36049; WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL=36050; WebGLRenderingContext.prototype.FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE=36051; WebGLRenderingContext.prototype.COLOR_ATTACHMENT0=36064; WebGLRenderingContext.prototype.DEPTH_ATTACHMENT=36096; WebGLRenderingContext.prototype.STENCIL_ATTACHMENT=36128; WebGLRenderingContext.prototype.DEPTH_STENCIL_ATTACHMENT=33306; WebGLRenderingContext.prototype.NONE=0; WebGLRenderingContext.prototype.FRAMEBUFFER_COMPLETE=36053; WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_ATTACHMENT=36054; WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT=36055; WebGLRenderingContext.prototype.FRAMEBUFFER_INCOMPLETE_DIMENSIONS=36057; WebGLRenderingContext.prototype.FRAMEBUFFER_UNSUPPORTED=36061; WebGLRenderingContext.prototype.FRAMEBUFFER_BINDING=36006; WebGLRenderingContext.prototype.RENDERBUFFER_BINDING=36007; WebGLRenderingContext.prototype.MAX_RENDERBUFFER_SIZE=34024; WebGLRenderingContext.prototype.INVALID_FRAMEBUFFER_OPERATION=1286; WebGLRenderingContext.prototype.UNPACK_FLIP_Y_WEBGL=37440; WebGLRenderingContext.prototype.UNPACK_PREMULTIPLY_ALPHA_WEBGL=37441; WebGLRenderingContext.prototype.CONTEXT_LOST_WEBGL=37442; WebGLRenderingContext.prototype.UNPACK_COLORSPACE_CONVERSION_WEBGL=37443; WebGLRenderingContext.prototype.BROWSER_DEFAULT_WEBGL=37444; WebGLRenderingContext.prototype.activeTexture=function activeTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.activeTexture); WebGLRenderingContext.prototype.attachShader=function attachShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.attachShader); WebGLRenderingContext.prototype.bindAttribLocation=function bindAttribLocation(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindAttribLocation); WebGLRenderingContext.prototype.bindRenderbuffer=function bindRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindRenderbuffer); WebGLRenderingContext.prototype.blendColor=function blendColor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendColor); WebGLRenderingContext.prototype.blendEquation=function blendEquation(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendEquation); WebGLRenderingContext.prototype.blendEquationSeparate = function blendEquationSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendEquationSeparate); WebGLRenderingContext.prototype.blendFunc=function blendFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendFunc); WebGLRenderingContext.prototype.blendFuncSeparate=function blendFuncSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.blendFuncSeparate); WebGLRenderingContext.prototype.bufferData=function bufferData(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bufferData); WebGLRenderingContext.prototype.bufferSubData=function bufferSubData(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bufferSubData); WebGLRenderingContext.prototype.checkFramebufferStatus=function checkFramebufferStatus(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.checkFramebufferStatus); WebGLRenderingContext.prototype.compileShader=function compileShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compileShader); WebGLRenderingContext.prototype.compressedTexImage2D=function compressedTexImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compressedTexImage2D); WebGLRenderingContext.prototype.compressedTexSubImage2D=function compressedTexSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.compressedTexSubImage2D); WebGLRenderingContext.prototype.copyTexImage2D=function copyTexImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.copyTexImage2D); WebGLRenderingContext.prototype.copyTexSubImage2D=function copyTexSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.copyTexSubImage2D); WebGLRenderingContext.prototype.createBuffer=function createBuffer(){ debugger; var WebGLBuffer = class WebGLBuffer{} return catvm.proxy(WebGLBuffer); }; catvm.safefunction(WebGLRenderingContext.prototype.createBuffer); WebGLRenderingContext.prototype.createFramebuffer=function createFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createFramebuffer); WebGLRenderingContext.prototype.createProgram=function createProgram(){ debugger; if(window.xxxxx == 0){ window.xxxxx++; return class create01{}; }else{ debugger; return class create02{}; } }; catvm.safefunction(WebGLRenderingContext.prototype.createProgram); WebGLRenderingContext.prototype.createRenderbuffer=function createRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createRenderbuffer); window.ywbywbywb = 0; WebGLRenderingContext.prototype.createShader=function createShader(){ debugger; if(window.ywbywbywb === 0){ window.ywbywbywb++; return class Shader01{} }else{ return class Shader02{} } }; catvm.safefunction(WebGLRenderingContext.prototype.createShader); WebGLRenderingContext.prototype.createTexture=function createTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.createTexture); WebGLRenderingContext.prototype.cullFace=function cullFace(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.cullFace); WebGLRenderingContext.prototype.deleteBuffer=function deleteBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteBuffer); WebGLRenderingContext.prototype.deleteFramebuffer=function deleteFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteFramebuffer); WebGLRenderingContext.prototype.deleteProgram=function deleteProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteProgram); WebGLRenderingContext.prototype.deleteRenderbuffer=function deleteRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteRenderbuffer); WebGLRenderingContext.prototype.deleteShader=function deleteShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteShader); WebGLRenderingContext.prototype.deleteTexture=function deleteTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.deleteTexture); WebGLRenderingContext.prototype.depthFunc=function depthFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthFunc); WebGLRenderingContext.prototype.depthMask=function depthMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthMask); WebGLRenderingContext.prototype.depthRange=function depthRange(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.depthRange); WebGLRenderingContext.prototype.detachShader=function detachShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.detachShader); WebGLRenderingContext.prototype.disable=function disable(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.disable); WebGLRenderingContext.prototype.enable=function enable(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.enable); WebGLRenderingContext.prototype.finish=function finish(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.finish); WebGLRenderingContext.prototype.flush=function flush(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.flush); WebGLRenderingContext.prototype.framebufferRenderbuffer=function framebufferRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.framebufferRenderbuffer); WebGLRenderingContext.prototype.framebufferTexture2D=function framebufferTexture2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.framebufferTexture2D); WebGLRenderingContext.prototype.frontFace=function frontFace(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.frontFace); WebGLRenderingContext.prototype.generateMipmap=function generateMipmap(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.generateMipmap); WebGLRenderingContext.prototype.getActiveAttrib=function getActiveAttrib(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getActiveAttrib); WebGLRenderingContext.prototype.getActiveUniform=function getActiveUniform(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getActiveUniform); WebGLRenderingContext.prototype.getAttachedShaders=function getAttachedShaders(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getAttachedShaders); WebGLRenderingContext.prototype.getAttribLocation=function getAttribLocation(){debugger;return 0;}; catvm.safefunction(WebGLRenderingContext.prototype.getAttribLocation); WebGLRenderingContext.prototype.getBufferParameter=function getBufferParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getBufferParameter); WebGLRenderingContext.prototype.getContextAttributes=function getContextAttributes(){ debugger; return { alpha: true, antialias: true, depth: true, desynchronized: false, failIfMajorPerformanceCaveat: false, powerPreference: "default", premultipliedAlpha: true, preserveDrawingBuffer: false, stencil: false, xrCompatible: false } }; catvm.safefunction(WebGLRenderingContext.prototype.getContextAttributes); WebGLRenderingContext.prototype.getError=function getError(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getError); WebGLRenderingContext.prototype.getExtension=function getExtension(){ debugger; return catvm.proxy(class WebGLDebugRendererInfo{}) }; catvm.safefunction(WebGLRenderingContext.prototype.getExtension); WebGLRenderingContext.prototype.getFramebufferAttachmentParameter=function getFramebufferAttachmentParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getFramebufferAttachmentParameter); WebGLRenderingContext.prototype.getParameter=function getParameter(a){ debugger; if(a === 37445){ debugger; return "Google Inc. (Intel)" }else if(a === 37446){ debugger; return "ANGLE (Intel, Intel(R) UHD Graphics 630 Direct3D11 vs_5_0 ps_5_0, D3D11-30.0.101.1340)" }else if(a === 7937){ debugger; return 'WebKit WebGL' }else if(a === 35724){ debugger; return "WebGL GLSL ES 1.0 (OpenGL ES GLSL ES 1.0 Chromium)" }else if(a === 7936){ debugger; return "WebKit" }else if(a === 7938){ debugger; return "WebGL 1.0 (OpenGL ES 2.0 Chromium)" } }; catvm.safefunction(WebGLRenderingContext.prototype.getParameter); WebGLRenderingContext.prototype.getProgramInfoLog=function getProgramInfoLog(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getProgramInfoLog); WebGLRenderingContext.prototype.getProgramParameter=function getProgramParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getProgramParameter); WebGLRenderingContext.prototype.getRenderbufferParameter=function getRenderbufferParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getRenderbufferParameter); WebGLRenderingContext.prototype.getShaderInfoLog=function getShaderInfoLog(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderInfoLog); WebGLRenderingContext.prototype.getShaderParameter=function getShaderParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderParameter); WebGLRenderingContext.prototype.getShaderPrecisionFormat=function getShaderPrecisionFormat(X,Y){ debugger; if(X===35633){ if( Y===36338 || Y===36337 || Y===36336 ){ var WebGLShaderPrecisionFormat = { precision: 23, rangeMax: 127, rangeMin: 127, } return catvm.proxy(WebGLShaderPrecisionFormat); }else if( Y===36341 || Y===36340 || Y===36339 ){ var WebGLShaderPrecisionFormat = { precision: 0, rangeMax: 30, rangeMin: 31, } return catvm.proxy(WebGLShaderPrecisionFormat); } }else if(X===35632){ if( Y===36338 || Y===36337 || Y===36336 ){ var WebGLShaderPrecisionFormat = { precision: 23, rangeMax: 127, rangeMin: 127, } return catvm.proxy(WebGLShaderPrecisionFormat); }else if( Y===36341 || Y===36340 || Y===36339 ){ var WebGLShaderPrecisionFormat = { precision: 0, rangeMax: 30, rangeMin: 31, } return catvm.proxy(WebGLShaderPrecisionFormat); } } }; catvm.safefunction(WebGLRenderingContext.prototype.getShaderPrecisionFormat); WebGLRenderingContext.prototype.getShaderSource=function getShaderSource(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getShaderSource); WebGLRenderingContext.prototype.getSupportedExtensions=function getSupportedExtensions(){ debugger; return [ "ANGLE_instanced_arrays", "EXT_blend_minmax", "EXT_color_buffer_half_float", "EXT_disjoint_timer_query", "EXT_float_blend", "EXT_frag_depth", "EXT_shader_texture_lod", "EXT_texture_compression_bptc", "EXT_texture_compression_rgtc", "EXT_texture_filter_anisotropic", "WEBKIT_EXT_texture_filter_anisotropic", "EXT_sRGB", "KHR_parallel_shader_compile", "OES_element_index_uint", "OES_fbo_render_mipmap", "OES_standard_derivatives", "OES_texture_float", "OES_texture_float_linear", "OES_texture_half_float", "OES_texture_half_float_linear", "OES_vertex_array_object", "WEBGL_color_buffer_float", "WEBGL_compressed_texture_s3tc", "WEBKIT_WEBGL_compressed_texture_s3tc", "WEBGL_compressed_texture_s3tc_srgb", "WEBGL_debug_renderer_info", "WEBGL_debug_shaders", "WEBGL_depth_texture", "WEBKIT_WEBGL_depth_texture", "WEBGL_draw_buffers", "WEBGL_lose_context", "WEBKIT_WEBGL_lose_context", "WEBGL_multi_draw" ] }; catvm.safefunction(WebGLRenderingContext.prototype.getSupportedExtensions); WebGLRenderingContext.prototype.getTexParameter=function getTexParameter(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getTexParameter); WebGLRenderingContext.prototype.getUniform=function getUniform(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getUniform); WebGLRenderingContext.prototype.getUniformLocation=function getUniformLocation(){ debugger; return class getUniformLocation{}; }; catvm.safefunction(WebGLRenderingContext.prototype.getUniformLocation); WebGLRenderingContext.prototype.getVertexAttrib=function getVertexAttrib(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getVertexAttrib); WebGLRenderingContext.prototype.getVertexAttribOffset=function getVertexAttribOffset(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.getVertexAttribOffset); WebGLRenderingContext.prototype.hint=function hint(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.hint); WebGLRenderingContext.prototype.isBuffer=function isBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isBuffer); WebGLRenderingContext.prototype.isContextLost=function isContextLost(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isContextLost); WebGLRenderingContext.prototype.isEnabled=function isEnabled(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isEnabled); WebGLRenderingContext.prototype.isFramebuffer=function isFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isFramebuffer); WebGLRenderingContext.prototype.isProgram=function isProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isProgram); WebGLRenderingContext.prototype.isRenderbuffer=function isRenderbuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isRenderbuffer); WebGLRenderingContext.prototype.isShader=function isShader(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isShader); WebGLRenderingContext.prototype.isTexture=function isTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.isTexture); WebGLRenderingContext.prototype.lineWidth=function lineWidth(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.lineWidth); WebGLRenderingContext.prototype.linkProgram=function linkProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.linkProgram); WebGLRenderingContext.prototype.pixelStorei=function pixelStorei(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.pixelStorei); WebGLRenderingContext.prototype.polygonOffset=function polygonOffset(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.polygonOffset); WebGLRenderingContext.prototype.readPixels=function readPixels(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.readPixels); WebGLRenderingContext.prototype.renderbufferStorage=function renderbufferStorage(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.renderbufferStorage); WebGLRenderingContext.prototype.sampleCoverage=function sampleCoverage(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.sampleCoverage); WebGLRenderingContext.prototype.shaderSource=function shaderSource(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.shaderSource); WebGLRenderingContext.prototype.stencilFunc=function stencilFunc(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilFunc); WebGLRenderingContext.prototype.stencilFuncSeparate=function stencilFuncSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilFuncSeparate); WebGLRenderingContext.prototype.stencilMask=function stencilMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilMask); WebGLRenderingContext.prototype.stencilMaskSeparate=function stencilMaskSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilMaskSeparate); WebGLRenderingContext.prototype.stencilOp=function stencilOp(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilOp); WebGLRenderingContext.prototype.stencilOpSeparate=function stencilOpSeparate(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.stencilOpSeparate); WebGLRenderingContext.prototype.texImage2D=function texImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texImage2D); WebGLRenderingContext.prototype.texParameterf=function texParameterf(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texParameterf); WebGLRenderingContext.prototype.texParameteri=function texParameteri(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texParameteri); WebGLRenderingContext.prototype.texSubImage2D=function texSubImage2D(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.texSubImage2D); WebGLRenderingContext.prototype.uniform1fv=function uniform1fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1fv); WebGLRenderingContext.prototype.uniform1iv=function uniform1iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1iv); WebGLRenderingContext.prototype.uniform2fv=function uniform2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2fv); WebGLRenderingContext.prototype.uniform2iv=function uniform2iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2iv); WebGLRenderingContext.prototype.uniform3fv=function uniform3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3fv); WebGLRenderingContext.prototype.uniform3iv=function uniform3iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3iv); WebGLRenderingContext.prototype.uniform4fv=function uniform4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4fv); WebGLRenderingContext.prototype.uniform4iv=function uniform4iv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4iv); WebGLRenderingContext.prototype.uniformMatrix2fv=function uniformMatrix2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix2fv); WebGLRenderingContext.prototype.uniformMatrix3fv=function uniformMatrix3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix3fv); WebGLRenderingContext.prototype.uniformMatrix4fv=function uniformMatrix4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniformMatrix4fv); WebGLRenderingContext.prototype.useProgram=function useProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.useProgram); WebGLRenderingContext.prototype.validateProgram=function validateProgram(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.validateProgram); WebGLRenderingContext.prototype.vertexAttrib1fv=function vertexAttrib1fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib1fv); WebGLRenderingContext.prototype.vertexAttrib2fv=function vertexAttrib2fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib2fv); WebGLRenderingContext.prototype.vertexAttrib3fv=function vertexAttrib3fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib3fv); WebGLRenderingContext.prototype.vertexAttrib4fv=function vertexAttrib4fv(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib4fv); WebGLRenderingContext.prototype.vertexAttribPointer=function vertexAttribPointer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttribPointer); WebGLRenderingContext.prototype.bindBuffer=function bindBuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindBuffer); WebGLRenderingContext.prototype.bindFramebuffer=function bindFramebuffer(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindFramebuffer); WebGLRenderingContext.prototype.bindTexture=function bindTexture(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.bindTexture); WebGLRenderingContext.prototype.clear=function clear(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clear); WebGLRenderingContext.prototype.clearColor=function clearColor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearColor); WebGLRenderingContext.prototype.clearDepth=function clearDepth(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearDepth); WebGLRenderingContext.prototype.clearStencil=function clearStencil(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.clearStencil); WebGLRenderingContext.prototype.colorMask=function colorMask(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.colorMask); WebGLRenderingContext.prototype.disableVertexAttribArray=function disableVertexAttribArray(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.disableVertexAttribArray); WebGLRenderingContext.prototype.drawArrays=function drawArrays(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.drawArrays); WebGLRenderingContext.prototype.drawElements=function drawElements(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.drawElements); WebGLRenderingContext.prototype.enableVertexAttribArray=function enableVertexAttribArray(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.enableVertexAttribArray); WebGLRenderingContext.prototype.scissor=function scissor(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.scissor); WebGLRenderingContext.prototype.uniform1f=function uniform1f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1f); WebGLRenderingContext.prototype.uniform1i=function uniform1i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform1i); WebGLRenderingContext.prototype.uniform2f=function uniform2f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2f); WebGLRenderingContext.prototype.uniform2i=function uniform2i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform2i); WebGLRenderingContext.prototype.uniform3f=function uniform3f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3f); WebGLRenderingContext.prototype.uniform3i=function uniform3i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform3i); WebGLRenderingContext.prototype.uniform4f=function uniform4f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4f); WebGLRenderingContext.prototype.uniform4i=function uniform4i(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.uniform4i); WebGLRenderingContext.prototype.vertexAttrib1f=function vertexAttrib1f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib1f); WebGLRenderingContext.prototype.vertexAttrib2f=function vertexAttrib2f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib2f); WebGLRenderingContext.prototype.vertexAttrib3f=function vertexAttrib3f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib3f); WebGLRenderingContext.prototype.vertexAttrib4f=function vertexAttrib4f(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.vertexAttrib4f); WebGLRenderingContext.prototype.viewport=function viewport(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.viewport); WebGLRenderingContext.prototype.makeXRCompatible=function makeXRCompatible(){debugger;}; catvm.safefunction(WebGLRenderingContext.prototype.makeXRCompatible); catvm.memory.webgl = {}; catvm.memory.webgl.__proto__ = WebGLRenderingContext.prototype; catvm.memory.webgl = catvm.proxy(catvm.memory.webgl); var Document = function Document(){ }; catvm.safefunction(Document); Object.defineProperties(Document.prototype , { [Symbol.toStringTag]: { value: "Document", configurable: true } }); document = {}; document.__proto__ = Document.prototype; ////// document.characterSet = 'UTF-8' document.charset = 'UTF-8' //没问题 document.getElementById = function getElementById(id){ debugger; return null; };catvm.safefunction(document.getElementById); //没问题 document.addEventListener = function addEventListener(type,listener,options,useCapture){ debugger; if(!catvm.memory.document[type]){ catvm.memory.document[type] = []; } catvm.memory.document[type].push(listener); return undefined; };catvm.safefunction(document.addEventListener); document.exitFullscreen = function exitFullscreen(){debugger;};catvm.safefunction(document.exitFullscreen); window.xxx = 0; //没问题 document.createElement = function createElement(X){ debugger; if(X === "div"){ var div = class div{}; div.getElementsByTagName = function(){ var i = class i{}; i.length = 0; return catvm.proxy(i); };catvm.safefunction(div.getElementsByTagName); div.style = { "accentColor": "", "additiveSymbols": "", "alignContent": "", "alignItems": "", "alignSelf": "", "alignmentBaseline": "", "all": "", "animation": "", "animationDelay": "", "animationDirection": "", "animationDuration": "", "animationFillMode": "", "animationIterationCount": "", "animationName": "", "animationPlayState": "", "animationTimingFunction": "", "appRegion": "", "appearance": "", "ascentOverride": "", "aspectRatio": "", "backdropFilter": "", "backfaceVisibility": "", "background": "", "backgroundAttachment": "", "backgroundBlendMode": "", "backgroundClip": "", "backgroundColor": "", "backgroundImage": "", "backgroundOrigin": "", "backgroundPosition": "", "backgroundPositionX": "", "backgroundPositionY": "", "backgroundRepeat": "", "backgroundRepeatX": "", "backgroundRepeatY": "", "backgroundSize": "", "baselineShift": "", "blockSize": "", "border": "", "borderBlock": "", "borderBlockColor": "", "borderBlockEnd": "", "borderBlockEndColor": "", "borderBlockEndStyle": "", "borderBlockEndWidth": "", "borderBlockStart": "", "borderBlockStartColor": "", "borderBlockStartStyle": "", "borderBlockStartWidth": "", "borderBlockStyle": "", "borderBlockWidth": "", "borderBottom": "", "borderBottomColor": "", "borderBottomLeftRadius": "", "borderBottomRightRadius": "", "borderBottomStyle": "", "borderBottomWidth": "", "borderCollapse": "", "borderColor": "", "borderEndEndRadius": "", "borderEndStartRadius": "", "borderImage": "", "borderImageOutset": "", "borderImageRepeat": "", "borderImageSlice": "", "borderImageSource": "", "borderImageWidth": "", "borderInline": "", "borderInlineColor": "", "borderInlineEnd": "", "borderInlineEndColor": "", "borderInlineEndStyle": "", "borderInlineEndWidth": "", "borderInlineStart": "", "borderInlineStartColor": "", "borderInlineStartStyle": "", "borderInlineStartWidth": "", "borderInlineStyle": "", "borderInlineWidth": "", "borderLeft": "", "borderLeftColor": "", "borderLeftStyle": "", "borderLeftWidth": "", "borderRadius": "", "borderRight": "", "borderRightColor": "", "borderRightStyle": "", "borderRightWidth": "", "borderSpacing": "", "borderStartEndRadius": "", "borderStartStartRadius": "", "borderStyle": "", "borderTop": "", "borderTopColor": "", "borderTopLeftRadius": "", "borderTopRightRadius": "", "borderTopStyle": "", "borderTopWidth": "", "borderWidth": "", "bottom": "", "boxShadow": "", "boxSizing": "", "breakAfter": "", "breakBefore": "", "breakInside": "", "bufferedRendering": "", "captionSide": "", "caretColor": "", "clear": "", "clip": "", "clipPath": "", "clipRule": "", "color": "", "colorInterpolation": "", "colorInterpolationFilters": "", "colorRendering": "", "colorScheme": "", "columnCount": "", "columnFill": "", "columnGap": "", "columnRule": "", "columnRuleColor": "", "columnRuleStyle": "", "columnRuleWidth": "", "columnSpan": "", "columnWidth": "", "columns": "", "contain": "", "containIntrinsicBlockSize": "", "containIntrinsicHeight": "", "containIntrinsicInlineSize": "", "containIntrinsicSize": "", "containIntrinsicWidth": "", "content": "", "contentVisibility": "", "counterIncrement": "", "counterReset": "", "counterSet": "", "cursor": "", "cx": "", "cy": "", "d": "", "descentOverride": "", "direction": "", "display": "", "dominantBaseline": "", "emptyCells": "", "fallback": "", "fill": "", "fillOpacity": "", "fillRule": "", "filter": "", "flex": "", "flexBasis": "", "flexDirection": "", "flexFlow": "", "flexGrow": "", "flexShrink": "", "flexWrap": "", "float": "", "floodColor": "", "floodOpacity": "", "font": "", "fontDisplay": "", "fontFamily": "", "fontFeatureSettings": "", "fontKerning": "", "fontOpticalSizing": "", "fontSize": "", "fontStretch": "", "fontStyle": "", "fontVariant": "", "fontVariantCaps": "", "fontVariantEastAsian": "", "fontVariantLigatures": "", "fontVariantNumeric": "", "fontVariationSettings": "", "fontWeight": "", "forcedColorAdjust": "", "gap": "", "grid": "", "gridArea": "", "gridAutoColumns": "", "gridAutoFlow": "", "gridAutoRows": "", "gridColumn": "", "gridColumnEnd": "", "gridColumnGap": "", "gridColumnStart": "", "gridGap": "", "gridRow": "", "gridRowEnd": "", "gridRowGap": "", "gridRowStart": "", "gridTemplate": "", "gridTemplateAreas": "", "gridTemplateColumns": "", "gridTemplateRows": "", "height": "", "hyphens": "", "imageOrientation": "", "imageRendering": "", "inherits": "", "initialValue": "", "inlineSize": "", "inset": "", "insetBlock": "", "insetBlockEnd": "", "insetBlockStart": "", "insetInline": "", "insetInlineEnd": "", "insetInlineStart": "", "isolation": "", "justifyContent": "", "justifyItems": "", "justifySelf": "", "left": "", "letterSpacing": "", "lightingColor": "", "lineBreak": "", "lineGapOverride": "", "lineHeight": "", "listStyle": "", "listStyleImage": "", "listStylePosition": "", "listStyleType": "", "margin": "", "marginBlock": "", "marginBlockEnd": "", "marginBlockStart": "", "marginBottom": "", "marginInline": "", "marginInlineEnd": "", "marginInlineStart": "", "marginLeft": "", "marginRight": "", "marginTop": "", "marker": "", "markerEnd": "", "markerMid": "", "markerStart": "", "mask": "", "maskType": "", "maxBlockSize": "", "maxHeight": "", "maxInlineSize": "", "maxWidth": "", "maxZoom": "", "minBlockSize": "", "minHeight": "", "minInlineSize": "", "minWidth": "", "minZoom": "", "mixBlendMode": "", "negative": "", "objectFit": "", "objectPosition": "", "offset": "", "offsetDistance": "", "offsetPath": "", "offsetRotate": "", "opacity": "", "order": "", "orientation": "", "orphans": "", "outline": "", "outlineColor": "", "outlineOffset": "", "outlineStyle": "", "outlineWidth": "", "overflow": "", "overflowAnchor": "", "overflowClipMargin": "", "overflowWrap": "", "overflowX": "", "overflowY": "", "overscrollBehavior": "", "overscrollBehaviorBlock": "", "overscrollBehaviorInline": "", "overscrollBehaviorX": "", "overscrollBehaviorY": "", "pad": "", "padding": "", "paddingBlock": "", "paddingBlockEnd": "", "paddingBlockStart": "", "paddingBottom": "", "paddingInline": "", "paddingInlineEnd": "", "paddingInlineStart": "", "paddingLeft": "", "paddingRight": "", "paddingTop": "", "page": "", "pageBreakAfter": "", "pageBreakBefore": "", "pageBreakInside": "", "pageOrientation": "", "paintOrder": "", "perspective": "", "perspectiveOrigin": "", "placeContent": "", "placeItems": "", "placeSelf": "", "pointerEvents": "", "position": "", "prefix": "", "quotes": "", "r": "", "range": "", "resize": "", "right": "", "rowGap": "", "rubyPosition": "", "rx": "", "ry": "", "scrollBehavior": "", "scrollMargin": "", "scrollMarginBlock": "", "scrollMarginBlockEnd": "", "scrollMarginBlockStart": "", "scrollMarginBottom": "", "scrollMarginInline": "", "scrollMarginInlineEnd": "", "scrollMarginInlineStart": "", "scrollMarginLeft": "", "scrollMarginRight": "", "scrollMarginTop": "", "scrollPadding": "", "scrollPaddingBlock": "", "scrollPaddingBlockEnd": "", "scrollPaddingBlockStart": "", "scrollPaddingBottom": "", "scrollPaddingInline": "", "scrollPaddingInlineEnd": "", "scrollPaddingInlineStart": "", "scrollPaddingLeft": "", "scrollPaddingRight": "", "scrollPaddingTop": "", "scrollSnapAlign": "", "scrollSnapStop": "", "scrollSnapType": "", "scrollbarGutter": "", "shapeImageThreshold": "", "shapeMargin": "", "shapeOutside": "", "shapeRendering": "", "size": "", "sizeAdjust": "", "speak": "", "speakAs": "", "src": "", "stopColor": "", "stopOpacity": "", "stroke": "", "strokeDasharray": "", "strokeDashoffset": "", "strokeLinecap": "", "strokeLinejoin": "", "strokeMiterlimit": "", "strokeOpacity": "", "strokeWidth": "", "suffix": "", "symbols": "", "syntax": "", "system": "", "tabSize": "", "tableLayout": "", "textAlign": "", "textAlignLast": "", "textAnchor": "", "textCombineUpright": "", "textDecoration": "", "textDecorationColor": "", "textDecorationLine": "", "textDecorationSkipInk": "", "textDecorationStyle": "", "textDecorationThickness": "", "textIndent": "", "textOrientation": "", "textOverflow": "", "textRendering": "", "textShadow": "", "textSizeAdjust": "", "textTransform": "", "textUnderlineOffset": "", "textUnderlinePosition": "", "top": "", "touchAction": "", "transform": "", "transformBox": "", "transformOrigin": "", "transformStyle": "", "transition": "", "transitionDelay": "", "transitionDuration": "", "transitionProperty": "", "transitionTimingFunction": "", "unicodeBidi": "", "unicodeRange": "", "userSelect": "", "userZoom": "", "vectorEffect": "", "verticalAlign": "", "visibility": "", "webkitAlignContent": "", "webkitAlignItems": "", "webkitAlignSelf": "", "webkitAnimation": "", "webkitAnimationDelay": "", "webkitAnimationDirection": "", "webkitAnimationDuration": "", "webkitAnimationFillMode": "", "webkitAnimationIterationCount": "", "webkitAnimationName": "", "webkitAnimationPlayState": "", "webkitAnimationTimingFunction": "", "webkitAppRegion": "", "webkitAppearance": "", "webkitBackfaceVisibility": "", "webkitBackgroundClip": "", "webkitBackgroundOrigin": "", "webkitBackgroundSize": "", "webkitBorderAfter": "", "webkitBorderAfterColor": "", "webkitBorderAfterStyle": "", "webkitBorderAfterWidth": "", "webkitBorderBefore": "", "webkitBorderBeforeColor": "", "webkitBorderBeforeStyle": "", "webkitBorderBeforeWidth": "", "webkitBorderBottomLeftRadius": "", "webkitBorderBottomRightRadius": "", "webkitBorderEnd": "", "webkitBorderEndColor": "", "webkitBorderEndStyle": "", "webkitBorderEndWidth": "", "webkitBorderHorizontalSpacing": "", "webkitBorderImage": "", "webkitBorderRadius": "", "webkitBorderStart": "", "webkitBorderStartColor": "", "webkitBorderStartStyle": "", "webkitBorderStartWidth": "", "webkitBorderTopLeftRadius": "", "webkitBorderTopRightRadius": "", "webkitBorderVerticalSpacing": "", "webkitBoxAlign": "", "webkitBoxDecorationBreak": "", "webkitBoxDirection": "", "webkitBoxFlex": "", "webkitBoxOrdinalGroup": "", "webkitBoxOrient": "", "webkitBoxPack": "", "webkitBoxReflect": "", "webkitBoxShadow": "", "webkitBoxSizing": "", "webkitClipPath": "", "webkitColumnBreakAfter": "", "webkitColumnBreakBefore": "", "webkitColumnBreakInside": "", "webkitColumnCount": "", "webkitColumnGap": "", "webkitColumnRule": "", "webkitColumnRuleColor": "", "webkitColumnRuleStyle": "", "webkitColumnRuleWidth": "", "webkitColumnSpan": "", "webkitColumnWidth": "", "webkitColumns": "", "webkitFilter": "", "webkitFlex": "", "webkitFlexBasis": "", "webkitFlexDirection": "", "webkitFlexFlow": "", "webkitFlexGrow": "", "webkitFlexShrink": "", "webkitFlexWrap": "", "webkitFontFeatureSettings": "", "webkitFontSmoothing": "", "webkitHighlight": "", "webkitHyphenateCharacter": "", "webkitJustifyContent": "", "webkitLineBreak": "", "webkitLineClamp": "", "webkitLocale": "", "webkitLogicalHeight": "", "webkitLogicalWidth": "", "webkitMarginAfter": "", "webkitMarginBefore": "", "webkitMarginEnd": "", "webkitMarginStart": "", "webkitMask": "", "webkitMaskBoxImage": "", "webkitMaskBoxImageOutset": "", "webkitMaskBoxImageRepeat": "", "webkitMaskBoxImageSlice": "", "webkitMaskBoxImageSource": "", "webkitMaskBoxImageWidth": "", "webkitMaskClip": "", "webkitMaskComposite": "", "webkitMaskImage": "", "webkitMaskOrigin": "", "webkitMaskPosition": "", "webkitMaskPositionX": "", "webkitMaskPositionY": "", "webkitMaskRepeat": "", "webkitMaskRepeatX": "", "webkitMaskRepeatY": "", "webkitMaskSize": "", "webkitMaxLogicalHeight": "", "webkitMaxLogicalWidth": "", "webkitMinLogicalHeight": "", "webkitMinLogicalWidth": "", "webkitOpacity": "", "webkitOrder": "", "webkitPaddingAfter": "", "webkitPaddingBefore": "", "webkitPaddingEnd": "", "webkitPaddingStart": "", "webkitPerspective": "", "webkitPerspectiveOrigin": "", "webkitPerspectiveOriginX": "", "webkitPerspectiveOriginY": "", "webkitPrintColorAdjust": "", "webkitRtlOrdering": "", "webkitRubyPosition": "", "webkitShapeImageThreshold": "", "webkitShapeMargin": "", "webkitShapeOutside": "", "webkitTapHighlightColor": "", "webkitTextCombine": "", "webkitTextDecorationsInEffect": "", "webkitTextEmphasis": "", "webkitTextEmphasisColor": "", "webkitTextEmphasisPosition": "", "webkitTextEmphasisStyle": "", "webkitTextFillColor": "", "webkitTextOrientation": "", "webkitTextSecurity": "", "webkitTextSizeAdjust": "", "webkitTextStroke": "", "webkitTextStrokeColor": "", "webkitTextStrokeWidth": "", "webkitTransform": "", "webkitTransformOrigin": "", "webkitTransformOriginX": "", "webkitTransformOriginY": "", "webkitTransformOriginZ": "", "webkitTransformStyle": "", "webkitTransition": "", "webkitTransitionDelay": "", "webkitTransitionDuration": "", "webkitTransitionProperty": "", "webkitTransitionTimingFunction": "", "webkitUserDrag": "", "webkitUserModify": "", "webkitUserSelect": "", "webkitWritingMode": "", "whiteSpace": "", "widows": "", "width": "", "willChange": "", "wordBreak": "", "wordSpacing": "", "wordWrap": "", "writingMode": "", "x": "", "y": "", "zIndex": "", "zoom": "" } var div_span = class div_span{}; div_span.length = 1; div_span[0] = catvm.proxy(class span{}); div_span[0].style = { "0": "font-family", "1": "font-size", "accentColor": "", "additiveSymbols": "", "alignContent": "", "alignItems": "", "alignSelf": "", "alignmentBaseline": "", "all": "", "animation": "", "animationDelay": "", "animationDirection": "", "animationDuration": "", "animationFillMode": "", "animationIterationCount": "", "animationName": "", "animationPlayState": "", "animationTimingFunction": "", "appRegion": "", "appearance": "", "ascentOverride": "", "aspectRatio": "", "backdropFilter": "", "backfaceVisibility": "", "background": "", "backgroundAttachment": "", "backgroundBlendMode": "", "backgroundClip": "", "backgroundColor": "", "backgroundImage": "", "backgroundOrigin": "", "backgroundPosition": "", "backgroundPositionX": "", "backgroundPositionY": "", "backgroundRepeat": "", "backgroundRepeatX": "", "backgroundRepeatY": "", "backgroundSize": "", "baselineShift": "", "blockSize": "", "border": "", "borderBlock": "", "borderBlockColor": "", "borderBlockEnd": "", "borderBlockEndColor": "", "borderBlockEndStyle": "", "borderBlockEndWidth": "", "borderBlockStart": "", "borderBlockStartColor": "", "borderBlockStartStyle": "", "borderBlockStartWidth": "", "borderBlockStyle": "", "borderBlockWidth": "", "borderBottom": "", "borderBottomColor": "", "borderBottomLeftRadius": "", "borderBottomRightRadius": "", "borderBottomStyle": "", "borderBottomWidth": "", "borderCollapse": "", "borderColor": "", "borderEndEndRadius": "", "borderEndStartRadius": "", "borderImage": "", "borderImageOutset": "", "borderImageRepeat": "", "borderImageSlice": "", "borderImageSource": "", "borderImageWidth": "", "borderInline": "", "borderInlineColor": "", "borderInlineEnd": "", "borderInlineEndColor": "", "borderInlineEndStyle": "", "borderInlineEndWidth": "", "borderInlineStart": "", "borderInlineStartColor": "", "borderInlineStartStyle": "", "borderInlineStartWidth": "", "borderInlineStyle": "", "borderInlineWidth": "", "borderLeft": "", "borderLeftColor": "", "borderLeftStyle": "", "borderLeftWidth": "", "borderRadius": "", "borderRight": "", "borderRightColor": "", "borderRightStyle": "", "borderRightWidth": "", "borderSpacing": "", "borderStartEndRadius": "", "borderStartStartRadius": "", "borderStyle": "", "borderTop": "", "borderTopColor": "", "borderTopLeftRadius": "", "borderTopRightRadius": "", "borderTopStyle": "", "borderTopWidth": "", "borderWidth": "", "bottom": "", "boxShadow": "", "boxSizing": "", "breakAfter": "", "breakBefore": "", "breakInside": "", "bufferedRendering": "", "captionSide": "", "caretColor": "", "clear": "", "clip": "", "clipPath": "", "clipRule": "", "color": "", "colorInterpolation": "", "colorInterpolationFilters": "", "colorRendering": "", "colorScheme": "", "columnCount": "", "columnFill": "", "columnGap": "", "columnRule": "", "columnRuleColor": "", "columnRuleStyle": "", "columnRuleWidth": "", "columnSpan": "", "columnWidth": "", "columns": "", "contain": "", "containIntrinsicBlockSize": "", "containIntrinsicHeight": "", "containIntrinsicInlineSize": "", "containIntrinsicSize": "", "containIntrinsicWidth": "", "content": "", "contentVisibility": "", "counterIncrement": "", "counterReset": "", "counterSet": "", "cursor": "", "cx": "", "cy": "", "d": "", "descentOverride": "", "direction": "", "display": "", "dominantBaseline": "", "emptyCells": "", "fallback": "", "fill": "", "fillOpacity": "", "fillRule": "", "filter": "", "flex": "", "flexBasis": "", "flexDirection": "", "flexFlow": "", "flexGrow": "", "flexShrink": "", "flexWrap": "", "float": "", "floodColor": "", "floodOpacity": "", "font": "", "fontDisplay": "", "fontFamily": "mmllii", "fontFeatureSettings": "", "fontKerning": "", "fontOpticalSizing": "", "fontSize": "114px", "fontStretch": "", "fontStyle": "", "fontVariant": "", "fontVariantCaps": "", "fontVariantEastAsian": "", "fontVariantLigatures": "", "fontVariantNumeric": "", "fontVariationSettings": "", "fontWeight": "", "forcedColorAdjust": "", "gap": "", "grid": "", "gridArea": "", "gridAutoColumns": "", "gridAutoFlow": "", "gridAutoRows": "", "gridColumn": "", "gridColumnEnd": "", "gridColumnGap": "", "gridColumnStart": "", "gridGap": "", "gridRow": "", "gridRowEnd": "", "gridRowGap": "", "gridRowStart": "", "gridTemplate": "", "gridTemplateAreas": "", "gridTemplateColumns": "", "gridTemplateRows": "", "height": "", "hyphens": "", "imageOrientation": "", "imageRendering": "", "inherits": "", "initialValue": "", "inlineSize": "", "inset": "", "insetBlock": "", "insetBlockEnd": "", "insetBlockStart": "", "insetInline": "", "insetInlineEnd": "", "insetInlineStart": "", "isolation": "", "justifyContent": "", "justifyItems": "", "justifySelf": "", "left": "", "letterSpacing": "", "lightingColor": "", "lineBreak": "", "lineGapOverride": "", "lineHeight": "", "listStyle": "", "listStyleImage": "", "listStylePosition": "", "listStyleType": "", "margin": "", "marginBlock": "", "marginBlockEnd": "", "marginBlockStart": "", "marginBottom": "", "marginInline": "", "marginInlineEnd": "", "marginInlineStart": "", "marginLeft": "", "marginRight": "", "marginTop": "", "marker": "", "markerEnd": "", "markerMid": "", "markerStart": "", "mask": "", "maskType": "", "maxBlockSize": "", "maxHeight": "", "maxInlineSize": "", "maxWidth": "", "maxZoom": "", "minBlockSize": "", "minHeight": "", "minInlineSize": "", "minWidth": "", "minZoom": "", "mixBlendMode": "", "negative": "", "objectFit": "", "objectPosition": "", "offset": "", "offsetDistance": "", "offsetPath": "", "offsetRotate": "", "opacity": "", "order": "", "orientation": "", "orphans": "", "outline": "", "outlineColor": "", "outlineOffset": "", "outlineStyle": "", "outlineWidth": "", "overflow": "", "overflowAnchor": "", "overflowClipMargin": "", "overflowWrap": "", "overflowX": "", "overflowY": "", "overscrollBehavior": "", "overscrollBehaviorBlock": "", "overscrollBehaviorInline": "", "overscrollBehaviorX": "", "overscrollBehaviorY": "", "pad": "", "padding": "", "paddingBlock": "", "paddingBlockEnd": "", "paddingBlockStart": "", "paddingBottom": "", "paddingInline": "", "paddingInlineEnd": "", "paddingInlineStart": "", "paddingLeft": "", "paddingRight": "", "paddingTop": "", "page": "", "pageBreakAfter": "", "pageBreakBefore": "", "pageBreakInside": "", "pageOrientation": "", "paintOrder": "", "perspective": "", "perspectiveOrigin": "", "placeContent": "", "placeItems": "", "placeSelf": "", "pointerEvents": "", "position": "", "prefix": "", "quotes": "", "r": "", "range": "", "resize": "", "right": "", "rowGap": "", "rubyPosition": "", "rx": "", "ry": "", "scrollBehavior": "", "scrollMargin": "", "scrollMarginBlock": "", "scrollMarginBlockEnd": "", "scrollMarginBlockStart": "", "scrollMarginBottom": "", "scrollMarginInline": "", "scrollMarginInlineEnd": "", "scrollMarginInlineStart": "", "scrollMarginLeft": "", "scrollMarginRight": "", "scrollMarginTop": "", "scrollPadding": "", "scrollPaddingBlock": "", "scrollPaddingBlockEnd": "", "scrollPaddingBlockStart": "", "scrollPaddingBottom": "", "scrollPaddingInline": "", "scrollPaddingInlineEnd": "", "scrollPaddingInlineStart": "", "scrollPaddingLeft": "", "scrollPaddingRight": "", "scrollPaddingTop": "", "scrollSnapAlign": "", "scrollSnapStop": "", "scrollSnapType": "", "scrollbarGutter": "", "shapeImageThreshold": "", "shapeMargin": "", "shapeOutside": "", "shapeRendering": "", "size": "", "sizeAdjust": "", "speak": "", "speakAs": "", "src": "", "stopColor": "", "stopOpacity": "", "stroke": "", "strokeDasharray": "", "strokeDashoffset": "", "strokeLinecap": "", "strokeLinejoin": "", "strokeMiterlimit": "", "strokeOpacity": "", "strokeWidth": "", "suffix": "", "symbols": "", "syntax": "", "system": "", "tabSize": "", "tableLayout": "", "textAlign": "", "textAlignLast": "", "textAnchor": "", "textCombineUpright": "", "textDecoration": "", "textDecorationColor": "", "textDecorationLine": "", "textDecorationSkipInk": "", "textDecorationStyle": "", "textDecorationThickness": "", "textIndent": "", "textOrientation": "", "textOverflow": "", "textRendering": "", "textShadow": "", "textSizeAdjust": "", "textTransform": "", "textUnderlineOffset": "", "textUnderlinePosition": "", "top": "", "touchAction": "", "transform": "", "transformBox": "", "transformOrigin": "", "transformStyle": "", "transition": "", "transitionDelay": "", "transitionDuration": "", "transitionProperty": "", "transitionTimingFunction": "", "unicodeBidi": "", "unicodeRange": "", "userSelect": "", "userZoom": "", "vectorEffect": "", "verticalAlign": "", "visibility": "", "webkitAlignContent": "", "webkitAlignItems": "", "webkitAlignSelf": "", "webkitAnimation": "", "webkitAnimationDelay": "", "webkitAnimationDirection": "", "webkitAnimationDuration": "", "webkitAnimationFillMode": "", "webkitAnimationIterationCount": "", "webkitAnimationName": "", "webkitAnimationPlayState": "", "webkitAnimationTimingFunction": "", "webkitAppRegion": "", "webkitAppearance": "", "webkitBackfaceVisibility": "", "webkitBackgroundClip": "", "webkitBackgroundOrigin": "", "webkitBackgroundSize": "", "webkitBorderAfter": "", "webkitBorderAfterColor": "", "webkitBorderAfterStyle": "", "webkitBorderAfterWidth": "", "webkitBorderBefore": "", "webkitBorderBeforeColor": "", "webkitBorderBeforeStyle": "", "webkitBorderBeforeWidth": "", "webkitBorderBottomLeftRadius": "", "webkitBorderBottomRightRadius": "", "webkitBorderEnd": "", "webkitBorderEndColor": "", "webkitBorderEndStyle": "", "webkitBorderEndWidth": "", "webkitBorderHorizontalSpacing": "", "webkitBorderImage": "", "webkitBorderRadius": "", "webkitBorderStart": "", "webkitBorderStartColor": "", "webkitBorderStartStyle": "", "webkitBorderStartWidth": "", "webkitBorderTopLeftRadius": "", "webkitBorderTopRightRadius": "", "webkitBorderVerticalSpacing": "", "webkitBoxAlign": "", "webkitBoxDecorationBreak": "", "webkitBoxDirection": "", "webkitBoxFlex": "", "webkitBoxOrdinalGroup": "", "webkitBoxOrient": "", "webkitBoxPack": "", "webkitBoxReflect": "", "webkitBoxShadow": "", "webkitBoxSizing": "", "webkitClipPath": "", "webkitColumnBreakAfter": "", "webkitColumnBreakBefore": "", "webkitColumnBreakInside": "", "webkitColumnCount": "", "webkitColumnGap": "", "webkitColumnRule": "", "webkitColumnRuleColor": "", "webkitColumnRuleStyle": "", "webkitColumnRuleWidth": "", "webkitColumnSpan": "", "webkitColumnWidth": "", "webkitColumns": "", "webkitFilter": "", "webkitFlex": "", "webkitFlexBasis": "", "webkitFlexDirection": "", "webkitFlexFlow": "", "webkitFlexGrow": "", "webkitFlexShrink": "", "webkitFlexWrap": "", "webkitFontFeatureSettings": "", "webkitFontSmoothing": "", "webkitHighlight": "", "webkitHyphenateCharacter": "", "webkitJustifyContent": "", "webkitLineBreak": "", "webkitLineClamp": "", "webkitLocale": "", "webkitLogicalHeight": "", "webkitLogicalWidth": "", "webkitMarginAfter": "", "webkitMarginBefore": "", "webkitMarginEnd": "", "webkitMarginStart": "", "webkitMask": "", "webkitMaskBoxImage": "", "webkitMaskBoxImageOutset": "", "webkitMaskBoxImageRepeat": "", "webkitMaskBoxImageSlice": "", "webkitMaskBoxImageSource": "", "webkitMaskBoxImageWidth": "", "webkitMaskClip": "", "webkitMaskComposite": "", "webkitMaskImage": "", "webkitMaskOrigin": "", "webkitMaskPosition": "", "webkitMaskPositionX": "", "webkitMaskPositionY": "", "webkitMaskRepeat": "", "webkitMaskRepeatX": "", "webkitMaskRepeatY": "", "webkitMaskSize": "", "webkitMaxLogicalHeight": "", "webkitMaxLogicalWidth": "", "webkitMinLogicalHeight": "", "webkitMinLogicalWidth": "", "webkitOpacity": "", "webkitOrder": "", "webkitPaddingAfter": "", "webkitPaddingBefore": "", "webkitPaddingEnd": "", "webkitPaddingStart": "", "webkitPerspective": "", "webkitPerspectiveOrigin": "", "webkitPerspectiveOriginX": "", "webkitPerspectiveOriginY": "", "webkitPrintColorAdjust": "", "webkitRtlOrdering": "", "webkitRubyPosition": "", "webkitShapeImageThreshold": "", "webkitShapeMargin": "", "webkitShapeOutside": "", "webkitTapHighlightColor": "", "webkitTextCombine": "", "webkitTextDecorationsInEffect": "", "webkitTextEmphasis": "", "webkitTextEmphasisColor": "", "webkitTextEmphasisPosition": "", "webkitTextEmphasisStyle": "", "webkitTextFillColor": "", "webkitTextOrientation": "", "webkitTextSecurity": "", "webkitTextSizeAdjust": "", "webkitTextStroke": "", "webkitTextStrokeColor": "", "webkitTextStrokeWidth": "", "webkitTransform": "", "webkitTransformOrigin": "", "webkitTransformOriginX": "", "webkitTransformOriginY": "", "webkitTransformOriginZ": "", "webkitTransformStyle": "", "webkitTransition": "", "webkitTransitionDelay": "", "webkitTransitionDuration": "", "webkitTransitionProperty": "", "webkitTransitionTimingFunction": "", "webkitUserDrag": "", "webkitUserModify": "", "webkitUserSelect": "", "webkitWritingMode": "", "whiteSpace": "", "widows": "", "width": "", "willChange": "", "wordBreak": "", "wordSpacing": "", "wordWrap": "", "writingMode": "", "x": "", "y": "", "zIndex": "", "zoom": "" } div_span[0].offsetHeight = 0; div_span[0].offsetWidth = 0; div_span[0].__defineGetter__("offsetHeight",function(){ if(this.style.fontFamily === "SimHei" || this.style.fontFamily === "SimSun" || this.style.fontFamily === "NSimSun" || this.style.fontFamily === "FangSong" || this.style.fontFamily === "KaiTi"){ return 114 } if(this.style.fontFamily === this.style.fontFamily === "FangSongGB2312"||this.style.fontFamily === "KaiTiGB2312"||this.style.fontFamily === "Microsoft YaHei"||this.style.fontFamily === "Hiragino Sans GB"||this.style.fontFamily === "STHeiti Light"||this.style.fontFamily === "STHeiti"){ return 150; } if(this.style.fontFamily === this.style.fontFamily === "STKaiti"||this.style.fontFamily === "STSong"||this.style.fontFamily === "STFangsong"){ return 128; } return 0; }) div_span[0].__defineGetter__("offsetWidth",function(){ if(this.style.fontFamily === "SimHei" || this.style.fontFamily === "SimSun" || this.style.fontFamily === "NSimSun" || this.style.fontFamily === "FangSong" || this.style.fontFamily === "KaiTi"){ return 912; } if(this.style.fontFamily === this.style.fontFamily === "FangSongGB2312"||this.style.fontFamily === "KaiTiGB2312"||this.style.fontFamily === "Microsoft YaHei"||this.style.fontFamily === "Hiragino Sans GB"||this.style.fontFamily === "STHeiti Light"||this.style.fontFamily === "STHeiti"||""){ return 1326; } if(this.style.fontFamily === this.style.fontFamily === "STKaiti"||this.style.fontFamily === "STSong"||this.style.fontFamily === "STFangsong"){ return 1098; } return 0; }) div_span = catvm.proxy(div_span); div.children = div_span; return catvm.proxy(div); }else if(X === "canvas"){ if(window.xxx === 0){ window.xxx++ ; let canvas_2d = class canvas_2d{}; canvas_2d.getContext = function getContext(X){ debugger; if(X=='2d'){ return catvm.memory.canvas.canvasRenderingContext2D; } };catvm.safefunction(canvas_2d.getContext); canvas_2d.toDataURL = function toDataURL(){ debugger; return "data:image/png;base64,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"; };catvm.safefunction(canvas_2d.toDataURL); return catvm.proxy(canvas_2d); }else{ let canvas_webgl = class canvas_webgl{}; canvas_webgl.getContext = function getContext(X){ debugger; if(X=="webgl" || X=="experimental-webgl"){ debugger; return catvm.memory.webgl; } };catvm.safefunction(canvas_webgl.getContext); canvas_webgl.toDataURL = function toDataURL(){ debugger; return "data:image/png;base64,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" } return catvm.proxy(canvas_webgl); } }else if(X=="video"){ let video = class video{}; video.canPlayType = function(X){ if(X === 'video/ogg; codecs="theora"'){ return 'probably'; }else if(X === 'video/mp4; codecs="avc1.42E01E"'){ return 'probably'; }else if(X === 'video/webm; codecs="vp8, vorbis"'){ return 'probably'; }else if(X === 'video/mp4; codecs="mp4v.20.8, mp4a.40.2"'){ return ""; }else if(X === 'video/mp4; codecs="mp4v.20.240, mp4a.40.2"'){ return ""; }else if(X === 'video/x-matroska; codecs="theora, vorbis"'){ return ""; } };catvm.safefunction(video.canPlayType); return catvm.proxy(video); }else if(X=="audio"){ let audio = class audio{}; audio.canPlayType = function(X){ if(X === 'audio/ogg; codecs=\"vorbis\"'){ return 'probably'; }else if(X === 'audio/wav; codecs="1"'){ return 'probably'; }else if(X === 'audio/mpeg;'){ return 'probably'; }else if(X === 'audio/x-m4a;audio/aac;'){ return 'maybe'; } };catvm.safefunction(audio.canPlayType); return catvm.proxy(audio); }else if(X==="a"){ var a = new(class a{}); a.protocol = "http:"; a.pathname = "/shixin/checkyzm"; a.hostname = "zxgk.court.gov.cn"; a.search = "?captchaId="+window.captchaId+"&pCode="+window.Code+""; a.hash = ""; a.port = ""; return catvm.proxy(a); }else if(X === "form"){ var form = class form{}; form.__proto__ = HTMLFormElement.prototype; return catvm.proxy(form); } };catvm.safefunction(document.createElement); window.zhiyuan = 1; //没问题 document.getElementsByTagName = function getElementsByTagName(name){ //返回HTMLCollection if(name === "base"){ var result = { length: 0 } return catvm.proxy(result); }else if(name === "script" && window.zhiyuan === 1){ window.zhiyuan++; var script01 = class script01{}; script01.getAttribute = function getAttribute(X){ if(X === "r"){ return "m" } debugger; return null; };catvm.safefunction(script01.getAttribute); script01.parentElement = class script01_parentElement{}; script01.parentElement.removeChild = function removeChild(){ debugger; };catvm.safefunction(script01.parentElement.removeChild); script01.parentElement = catvm.proxy(script01.parentElement); script01 = catvm.proxy(script01); var script02 = class script02{}; script02.getAttribute = function getAttribute(X){ if(X === "r"){ return "m" } debugger; return null; };catvm.safefunction(script02.getAttribute); script02.parentElement = class script02_parentElement{}; script02.parentElement.removeChild = function removeChild(){ debugger; };catvm.safefunction(script02.parentElement.removeChild); script02.parentElement = catvm.proxy(script02.parentElement); script02 = catvm.proxy(script02); return catvm.proxy({ 0: script01, 1: script02, length: 2, }) }else if(name === "meta"){ var meta01 = class meta01{}; meta01.getAttribute = function(X){ return null; };catvm.safefunction(meta01.getAttribute); meta01 = catvm.proxy(meta01); var meta02 = class meta02{}; meta02.getAttribute = function(X){ return null; };catvm.safefunction(meta02.getAttribute); meta02 = catvm.proxy(meta02); var meta03 = class meta03{}; meta03.getAttribute = function(X){ return null; };catvm.safefunction(meta03.getAttribute); meta03 = catvm.proxy(meta03); var meta04 = class meta04{}; meta04.getAttribute = function(X){ return null; };catvm.safefunction(meta04.getAttribute); meta04 = catvm.proxy(meta04); var meta05 = class meta05{}; meta05.getAttribute = function(X){ return null; };catvm.safefunction(meta05.getAttribute); meta05 = catvm.proxy(meta05); var meta06 = class meta06{}; meta06.getAttribute = function(X){ return null; };catvm.safefunction(meta06.getAttribute); meta06 = catvm.proxy(meta06); var meta07 = class meta07{}; meta07.content = "5gupwXmXa2QhRWdyTUEJCHOn8albdGtGwdaCTdRTlhZ.vQidWm8lUa9HZ5VwAJV3"; meta07.getAttribute = function(X){ debugger; if(X === "r"){ return "m" } return null; };catvm.safefunction(meta07.getAttribute); meta07.parentNode = class meta07_parentNode{}; meta07.parentNode.removeChild = function removeChild(){ debugger; };catvm.safefunction(meta07.parentNode.removeChild); meta07.parentNode = catvm.proxy(meta07.parentNode); meta07 = catvm.proxy(meta07); return catvm.proxy({ 0: meta01, 1: meta02, 2: meta03, 3: meta04, 4: meta05, 5: meta06, 6: meta07, length: 7 }) }else if(name === "script" && window.zhiyuan === 2){ var script0 = catvm.proxy(class script0{}); script0.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script0.getAttribute); var script1 = catvm.proxy(class script1{}); script1.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script1.getAttribute); var script2 = catvm.proxy(class script2{}); script2.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script2.getAttribute); var script3 = catvm.proxy(class script3{}); script3.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script3.getAttribute); var script4 = catvm.proxy(class script4{}); script4.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script4.getAttribute); var script5 = catvm.proxy(class script5{}); script5.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script5.getAttribute); var script6 = catvm.proxy(class script6{}); script6.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script6.getAttribute); var script7 = catvm.proxy(class script7{}); script7.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script7.getAttribute); var script8 = catvm.proxy(class script8{}); script8.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script8.getAttribute); var script9 = catvm.proxy(class script9{}); script9.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script9.getAttribute); var script10 = catvm.proxy(class script10{}); script10.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script10.getAttribute); var script11 = catvm.proxy(class script11{}); script11.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script11.getAttribute); var script12 = catvm.proxy(class script12{}); script12.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script12.getAttribute); var script13 = catvm.proxy(class script13{}); script13.getAttribute = function(X){ if(X=="r"){ return null; } debugger; };catvm.safefunction(script13.getAttribute); var script14 = catvm.proxy(class script14{}); script14.getAttribute = function(X){ debugger; if(X=="r"){ return null; } debugger; };catvm.safefunction(script14.getAttribute); var script = { 0 : script0, 1 : script1, 2 : script2, 3 : script3, 4 : script4, 5 : script5, 6 : script6, 7 : script7, 8 : script8, 9 : script9, 10 : script10, 11 : script11, 12 : script12, 13 : script13, 14 : script14, length: 15 } return catvm.proxy(script); } };catvm.safefunction(document.getElementsByTagName); var html = class html{}; html.onresize = null; html.style = { "accentColor": "", "additiveSymbols": "", "alignContent": "", "alignItems": "", "alignSelf": "", "alignmentBaseline": "", "all": "", "animation": "", "animationDelay": "", "animationDirection": "", "animationDuration": "", "animationFillMode": "", "animationIterationCount": "", "animationName": "", "animationPlayState": "", "animationTimingFunction": "", "appRegion": "", "appearance": "", "ascentOverride": "", "aspectRatio": "", "backdropFilter": "", "backfaceVisibility": "", "background": "", "backgroundAttachment": "", "backgroundBlendMode": "", "backgroundClip": "", "backgroundColor": "", "backgroundImage": "", "backgroundOrigin": "", "backgroundPosition": "", "backgroundPositionX": "", "backgroundPositionY": "", "backgroundRepeat": "", "backgroundRepeatX": "", "backgroundRepeatY": "", "backgroundSize": "", "baselineShift": "", "blockSize": "", "border": "", "borderBlock": "", "borderBlockColor": "", "borderBlockEnd": "", "borderBlockEndColor": "", "borderBlockEndStyle": "", "borderBlockEndWidth": "", "borderBlockStart": "", "borderBlockStartColor": "", "borderBlockStartStyle": "", "borderBlockStartWidth": "", "borderBlockStyle": "", "borderBlockWidth": "", "borderBottom": "", "borderBottomColor": "", "borderBottomLeftRadius": "", "borderBottomRightRadius": "", "borderBottomStyle": "", "borderBottomWidth": "", "borderCollapse": "", "borderColor": "", "borderEndEndRadius": "", "borderEndStartRadius": "", "borderImage": "", "borderImageOutset": "", "borderImageRepeat": "", "borderImageSlice": "", "borderImageSource": "", "borderImageWidth": "", "borderInline": "", "borderInlineColor": "", "borderInlineEnd": "", "borderInlineEndColor": "", "borderInlineEndStyle": "", "borderInlineEndWidth": "", "borderInlineStart": "", "borderInlineStartColor": "", "borderInlineStartStyle": "", "borderInlineStartWidth": "", "borderInlineStyle": "", "borderInlineWidth": "", "borderLeft": "", "borderLeftColor": "", "borderLeftStyle": "", "borderLeftWidth": "", "borderRadius": "", "borderRight": "", "borderRightColor": "", "borderRightStyle": "", "borderRightWidth": "", "borderSpacing": "", "borderStartEndRadius": "", "borderStartStartRadius": "", "borderStyle": "", "borderTop": "", "borderTopColor": "", "borderTopLeftRadius": "", "borderTopRightRadius": "", "borderTopStyle": "", "borderTopWidth": "", "borderWidth": "", "bottom": "", "boxShadow": "", "boxSizing": "", "breakAfter": "", "breakBefore": "", "breakInside": "", "bufferedRendering": "", "captionSide": "", "caretColor": "", "clear": "", "clip": "", "clipPath": "", "clipRule": "", "color": "", "colorInterpolation": "", "colorInterpolationFilters": "", "colorRendering": "", "colorScheme": "", "columnCount": "", "columnFill": "", "columnGap": "", "columnRule": "", "columnRuleColor": "", "columnRuleStyle": "", "columnRuleWidth": "", "columnSpan": "", "columnWidth": "", "columns": "", "contain": "", "containIntrinsicBlockSize": "", "containIntrinsicHeight": "", "containIntrinsicInlineSize": "", "containIntrinsicSize": "", "containIntrinsicWidth": "", "content": "", "contentVisibility": "", "counterIncrement": "", "counterReset": "", "counterSet": "", "cursor": "", "cx": "", "cy": "", "d": "", "descentOverride": "", "direction": "", "display": "", "dominantBaseline": "", "emptyCells": "", "fallback": "", "fill": "", "fillOpacity": "", "fillRule": "", "filter": "", "flex": "", "flexBasis": "", "flexDirection": "", "flexFlow": "", "flexGrow": "", "flexShrink": "", "flexWrap": "", "float": "", "floodColor": "", "floodOpacity": "", "font": "", "fontDisplay": "", "fontFamily": "", "fontFeatureSettings": "", "fontKerning": "", "fontOpticalSizing": "", "fontSize": "", "fontStretch": "", "fontStyle": "", "fontVariant": "", "fontVariantCaps": "", "fontVariantEastAsian": "", "fontVariantLigatures": "", "fontVariantNumeric": "", "fontVariationSettings": "", "fontWeight": "", "forcedColorAdjust": "", "gap": "", "grid": "", "gridArea": "", "gridAutoColumns": "", "gridAutoFlow": "", "gridAutoRows": "", "gridColumn": "", "gridColumnEnd": "", "gridColumnGap": "", "gridColumnStart": "", "gridGap": "", "gridRow": "", "gridRowEnd": "", "gridRowGap": "", "gridRowStart": "", "gridTemplate": "", "gridTemplateAreas": "", "gridTemplateColumns": "", "gridTemplateRows": "", "height": "", "hyphens": "", "imageOrientation": "", "imageRendering": "", "inherits": "", "initialValue": "", "inlineSize": "", "inset": "", "insetBlock": "", "insetBlockEnd": "", "insetBlockStart": "", "insetInline": "", "insetInlineEnd": "", "insetInlineStart": "", "isolation": "", "justifyContent": "", "justifyItems": "", "justifySelf": "", "left": "", "letterSpacing": "", "lightingColor": "", "lineBreak": "", "lineGapOverride": "", "lineHeight": "", "listStyle": "", "listStyleImage": "", "listStylePosition": "", "listStyleType": "", "margin": "", "marginBlock": "", "marginBlockEnd": "", "marginBlockStart": "", "marginBottom": "", "marginInline": "", "marginInlineEnd": "", "marginInlineStart": "", "marginLeft": "", "marginRight": "", "marginTop": "", "marker": "", "markerEnd": "", "markerMid": "", "markerStart": "", "mask": "", "maskType": "", "maxBlockSize": "", "maxHeight": "", "maxInlineSize": "", "maxWidth": "", "maxZoom": "", "minBlockSize": "", "minHeight": "", "minInlineSize": "", "minWidth": "", "minZoom": "", "mixBlendMode": "", "negative": "", "objectFit": "", "objectPosition": "", "offset": "", "offsetDistance": "", "offsetPath": "", "offsetRotate": "", "opacity": "", "order": "", "orientation": "", "orphans": "", "outline": "", "outlineColor": "", "outlineOffset": "", "outlineStyle": "", "outlineWidth": "", "overflow": "", "overflowAnchor": "", "overflowClipMargin": "", "overflowWrap": "", "overflowX": "", "overflowY": "", "overscrollBehavior": "", "overscrollBehaviorBlock": "", "overscrollBehaviorInline": "", "overscrollBehaviorX": "", "overscrollBehaviorY": "", "pad": "", "padding": "", "paddingBlock": "", "paddingBlockEnd": "", "paddingBlockStart": "", "paddingBottom": "", "paddingInline": "", "paddingInlineEnd": "", "paddingInlineStart": "", "paddingLeft": "", "paddingRight": "", "paddingTop": "", "page": "", "pageBreakAfter": "", "pageBreakBefore": "", "pageBreakInside": "", "pageOrientation": "", "paintOrder": "", "perspective": "", "perspectiveOrigin": "", "placeContent": "", "placeItems": "", "placeSelf": "", "pointerEvents": "", "position": "", "prefix": "", "quotes": "", "r": "", "range": "", "resize": "", "right": "", "rowGap": "", "rubyPosition": "", "rx": "", "ry": "", "scrollBehavior": "", "scrollMargin": "", "scrollMarginBlock": "", "scrollMarginBlockEnd": "", "scrollMarginBlockStart": "", "scrollMarginBottom": "", "scrollMarginInline": "", "scrollMarginInlineEnd": "", "scrollMarginInlineStart": "", "scrollMarginLeft": "", "scrollMarginRight": "", "scrollMarginTop": "", "scrollPadding": "", "scrollPaddingBlock": "", "scrollPaddingBlockEnd": "", "scrollPaddingBlockStart": "", "scrollPaddingBottom": "", "scrollPaddingInline": "", "scrollPaddingInlineEnd": "", "scrollPaddingInlineStart": "", "scrollPaddingLeft": "", "scrollPaddingRight": "", "scrollPaddingTop": "", "scrollSnapAlign": "", "scrollSnapStop": "", "scrollSnapType": "", "scrollbarGutter": "", "shapeImageThreshold": "", "shapeMargin": "", "shapeOutside": "", "shapeRendering": "", "size": "", "sizeAdjust": "", "speak": "", "speakAs": "", "src": "", "stopColor": "", "stopOpacity": "", "stroke": "", "strokeDasharray": "", "strokeDashoffset": "", "strokeLinecap": "", "strokeLinejoin": "", "strokeMiterlimit": "", "strokeOpacity": "", "strokeWidth": "", "suffix": "", "symbols": "", "syntax": "", "system": "", "tabSize": "", "tableLayout": "", "textAlign": "", "textAlignLast": "", "textAnchor": "", "textCombineUpright": "", "textDecoration": "", "textDecorationColor": "", "textDecorationLine": "", "textDecorationSkipInk": "", "textDecorationStyle": "", "textDecorationThickness": "", "textIndent": "", "textOrientation": "", "textOverflow": "", "textRendering": "", "textShadow": "", "textSizeAdjust": "", "textTransform": "", "textUnderlineOffset": "", "textUnderlinePosition": "", "top": "", "touchAction": "", "transform": "", "transformBox": "", "transformOrigin": "", "transformStyle": "", "transition": "", "transitionDelay": "", "transitionDuration": "", "transitionProperty": "", "transitionTimingFunction": "", "unicodeBidi": "", "unicodeRange": "", "userSelect": "", "userZoom": "", "vectorEffect": "", "verticalAlign": "", "visibility": "", "webkitAlignContent": "", "webkitAlignItems": "", "webkitAlignSelf": "", "webkitAnimation": "", "webkitAnimationDelay": "", "webkitAnimationDirection": "", "webkitAnimationDuration": "", "webkitAnimationFillMode": "", "webkitAnimationIterationCount": "", "webkitAnimationName": "", "webkitAnimationPlayState": "", "webkitAnimationTimingFunction": "", "webkitAppRegion": "", "webkitAppearance": "", "webkitBackfaceVisibility": "", "webkitBackgroundClip": "", "webkitBackgroundOrigin": "", "webkitBackgroundSize": "", "webkitBorderAfter": "", "webkitBorderAfterColor": "", "webkitBorderAfterStyle": "", "webkitBorderAfterWidth": "", "webkitBorderBefore": "", "webkitBorderBeforeColor": "", "webkitBorderBeforeStyle": "", "webkitBorderBeforeWidth": "", "webkitBorderBottomLeftRadius": "", "webkitBorderBottomRightRadius": "", "webkitBorderEnd": "", "webkitBorderEndColor": "", "webkitBorderEndStyle": "", "webkitBorderEndWidth": "", "webkitBorderHorizontalSpacing": "", "webkitBorderImage": "", "webkitBorderRadius": "", "webkitBorderStart": "", "webkitBorderStartColor": "", "webkitBorderStartStyle": "", "webkitBorderStartWidth": "", "webkitBorderTopLeftRadius": "", "webkitBorderTopRightRadius": "", "webkitBorderVerticalSpacing": "", "webkitBoxAlign": "", "webkitBoxDecorationBreak": "", "webkitBoxDirection": "", "webkitBoxFlex": "", "webkitBoxOrdinalGroup": "", "webkitBoxOrient": "", "webkitBoxPack": "", "webkitBoxReflect": "", "webkitBoxShadow": "", "webkitBoxSizing": "", "webkitClipPath": "", "webkitColumnBreakAfter": "", "webkitColumnBreakBefore": "", "webkitColumnBreakInside": "", "webkitColumnCount": "", "webkitColumnGap": "", "webkitColumnRule": "", "webkitColumnRuleColor": "", "webkitColumnRuleStyle": "", "webkitColumnRuleWidth": "", "webkitColumnSpan": "", "webkitColumnWidth": "", "webkitColumns": "", "webkitFilter": "", "webkitFlex": "", "webkitFlexBasis": "", "webkitFlexDirection": "", "webkitFlexFlow": "", "webkitFlexGrow": "", "webkitFlexShrink": "", "webkitFlexWrap": "", "webkitFontFeatureSettings": "", "webkitFontSmoothing": "", "webkitHighlight": "", "webkitHyphenateCharacter": "", "webkitJustifyContent": "", "webkitLineBreak": "", "webkitLineClamp": "", "webkitLocale": "", "webkitLogicalHeight": "", "webkitLogicalWidth": "", "webkitMarginAfter": "", "webkitMarginBefore": "", "webkitMarginEnd": "", "webkitMarginStart": "", "webkitMask": "", "webkitMaskBoxImage": "", "webkitMaskBoxImageOutset": "", "webkitMaskBoxImageRepeat": "", "webkitMaskBoxImageSlice": "", "webkitMaskBoxImageSource": "", "webkitMaskBoxImageWidth": "", "webkitMaskClip": "", "webkitMaskComposite": "", "webkitMaskImage": "", "webkitMaskOrigin": "", "webkitMaskPosition": "", "webkitMaskPositionX": "", "webkitMaskPositionY": "", "webkitMaskRepeat": "", "webkitMaskRepeatX": "", "webkitMaskRepeatY": "", "webkitMaskSize": "", "webkitMaxLogicalHeight": "", "webkitMaxLogicalWidth": "", "webkitMinLogicalHeight": "", "webkitMinLogicalWidth": "", "webkitOpacity": "", "webkitOrder": "", "webkitPaddingAfter": "", "webkitPaddingBefore": "", "webkitPaddingEnd": "", "webkitPaddingStart": "", "webkitPerspective": "", "webkitPerspectiveOrigin": "", "webkitPerspectiveOriginX": "", "webkitPerspectiveOriginY": "", "webkitPrintColorAdjust": "", "webkitRtlOrdering": "", "webkitRubyPosition": "", "webkitShapeImageThreshold": "", "webkitShapeMargin": "", "webkitShapeOutside": "", "webkitTapHighlightColor": "", "webkitTextCombine": "", "webkitTextDecorationsInEffect": "", "webkitTextEmphasis": "", "webkitTextEmphasisColor": "", "webkitTextEmphasisPosition": "", "webkitTextEmphasisStyle": "", "webkitTextFillColor": "", "webkitTextOrientation": "", "webkitTextSecurity": "", "webkitTextSizeAdjust": "", "webkitTextStroke": "", "webkitTextStrokeColor": "", "webkitTextStrokeWidth": "", "webkitTransform": "", "webkitTransformOrigin": "", "webkitTransformOriginX": "", "webkitTransformOriginY": "", "webkitTransformOriginZ": "", "webkitTransformStyle": "", "webkitTransition": "", "webkitTransitionDelay": "", "webkitTransitionDuration": "", "webkitTransitionProperty": "", "webkitTransitionTimingFunction": "", "webkitUserDrag": "", "webkitUserModify": "", "webkitUserSelect": "", "webkitWritingMode": "", "whiteSpace": "", "widows": "", "width": "", "willChange": "", "wordBreak": "", "wordSpacing": "", "wordWrap": "", "writingMode": "", "x": "", "y": "", "zIndex": "", "zoom": "" } html.style = catvm.proxy(html.style); catvm.memory.html = {}; html.addEventListener = function addEventListener(type,func){ debugger; if(!catvm.memory.html[type]){ catvm.memory.html[type] = []; } catvm.memory.html[type].push(func); return undefined; };catvm.safefunction(html.addEventListener); //没问题 html.getAttribute = function getAttribute(){ debugger; return null };catvm.safefunction(html.getAttribute); document.scrollingElement = html; document.documentElement = catvm.proxy(html) document.body = class body{}; document.body.removeChild = function removeChild(){ debugger; };catvm.safefunction(document.body.removeChild); document.body.appendChild = function appendChild(){ debugger; };catvm.safefunction(document.body.appendChild); document.body = catvm.proxy(document.body); document.body.tagName = 'BODY'; document.body.getAttribute = function getAttribute(){ debugger; };catvm.safefunction(document.body.getAttribute); document.body.style = { "accentColor": "", "additiveSymbols": "", "alignContent": "", "alignItems": "", "alignSelf": "", "alignmentBaseline": "", "all": "", "animation": "", "animationDelay": "", "animationDirection": "", "animationDuration": "", "animationFillMode": "", "animationIterationCount": "", "animationName": "", "animationPlayState": "", "animationTimingFunction": "", "appRegion": "", "appearance": "", "ascentOverride": "", "aspectRatio": "", "backdropFilter": "", "backfaceVisibility": "", "background": "", "backgroundAttachment": "", "backgroundBlendMode": "", "backgroundClip": "", "backgroundColor": "", "backgroundImage": "", "backgroundOrigin": "", "backgroundPosition": "", "backgroundPositionX": "", "backgroundPositionY": "", "backgroundRepeat": "", "backgroundRepeatX": "", "backgroundRepeatY": "", "backgroundSize": "", "baselineShift": "", "blockSize": "", "border": "", "borderBlock": "", "borderBlockColor": "", "borderBlockEnd": "", "borderBlockEndColor": "", "borderBlockEndStyle": "", "borderBlockEndWidth": "", "borderBlockStart": "", "borderBlockStartColor": "", "borderBlockStartStyle": "", "borderBlockStartWidth": "", "borderBlockStyle": "", "borderBlockWidth": "", "borderBottom": "", "borderBottomColor": "", "borderBottomLeftRadius": "", "borderBottomRightRadius": "", "borderBottomStyle": "", "borderBottomWidth": "", "borderCollapse": "", "borderColor": "", "borderEndEndRadius": "", "borderEndStartRadius": "", "borderImage": "", "borderImageOutset": "", "borderImageRepeat": "", "borderImageSlice": "", "borderImageSource": "", "borderImageWidth": "", "borderInline": "", "borderInlineColor": "", "borderInlineEnd": "", "borderInlineEndColor": "", "borderInlineEndStyle": "", "borderInlineEndWidth": "", "borderInlineStart": "", "borderInlineStartColor": "", "borderInlineStartStyle": "", "borderInlineStartWidth": "", "borderInlineStyle": "", "borderInlineWidth": "", "borderLeft": "", "borderLeftColor": "", "borderLeftStyle": "", "borderLeftWidth": "", "borderRadius": "", "borderRight": "", "borderRightColor": "", "borderRightStyle": "", "borderRightWidth": "", "borderSpacing": "", "borderStartEndRadius": "", "borderStartStartRadius": "", "borderStyle": "", "borderTop": "", "borderTopColor": "", "borderTopLeftRadius": "", "borderTopRightRadius": "", "borderTopStyle": "", "borderTopWidth": "", "borderWidth": "", "bottom": "", "boxShadow": "", "boxSizing": "", "breakAfter": "", "breakBefore": "", "breakInside": "", "bufferedRendering": "", "captionSide": "", "caretColor": "", "clear": "", "clip": "", "clipPath": "", "clipRule": "", "color": "", "colorInterpolation": "", "colorInterpolationFilters": "", "colorRendering": "", "colorScheme": "", "columnCount": "", "columnFill": "", "columnGap": "", "columnRule": "", "columnRuleColor": "", "columnRuleStyle": "", "columnRuleWidth": "", "columnSpan": "", "columnWidth": "", "columns": "", "contain": "", "containIntrinsicBlockSize": "", "containIntrinsicHeight": "", "containIntrinsicInlineSize": "", "containIntrinsicSize": "", "containIntrinsicWidth": "", "content": "", "contentVisibility": "", "counterIncrement": "", "counterReset": "", "counterSet": "", "cursor": "", "cx": "", "cy": "", "d": "", "descentOverride": "", "direction": "", "display": "", "dominantBaseline": "", "emptyCells": "", "fallback": "", "fill": "", "fillOpacity": "", "fillRule": "", "filter": "", "flex": "", "flexBasis": "", "flexDirection": "", "flexFlow": "", "flexGrow": "", "flexShrink": "", "flexWrap": "", "float": "", "floodColor": "", "floodOpacity": "", "font": "", "fontDisplay": "", "fontFamily": "", "fontFeatureSettings": "", "fontKerning": "", "fontOpticalSizing": "", "fontSize": "", "fontStretch": "", "fontStyle": "", "fontVariant": "", "fontVariantCaps": "", "fontVariantEastAsian": "", "fontVariantLigatures": "", "fontVariantNumeric": "", "fontVariationSettings": "", "fontWeight": "", "forcedColorAdjust": "", "gap": "", "grid": "", "gridArea": "", "gridAutoColumns": "", "gridAutoFlow": "", "gridAutoRows": "", "gridColumn": "", "gridColumnEnd": "", "gridColumnGap": "", "gridColumnStart": "", "gridGap": "", "gridRow": "", "gridRowEnd": "", "gridRowGap": "", "gridRowStart": "", "gridTemplate": "", "gridTemplateAreas": "", "gridTemplateColumns": "", "gridTemplateRows": "", "height": "", "hyphens": "", "imageOrientation": "", "imageRendering": "", "inherits": "", "initialValue": "", "inlineSize": "", "inset": "", "insetBlock": "", "insetBlockEnd": "", "insetBlockStart": "", "insetInline": "", "insetInlineEnd": "", "insetInlineStart": "", "isolation": "", "justifyContent": "", "justifyItems": "", "justifySelf": "", "left": "", "letterSpacing": "", "lightingColor": "", "lineBreak": "", "lineGapOverride": "", "lineHeight": "", "listStyle": "", "listStyleImage": "", "listStylePosition": "", "listStyleType": "", "margin": "", "marginBlock": "", "marginBlockEnd": "", "marginBlockStart": "", "marginBottom": "", "marginInline": "", "marginInlineEnd": "", "marginInlineStart": "", "marginLeft": "", "marginRight": "", "marginTop": "", "marker": "", "markerEnd": "", "markerMid": "", "markerStart": "", "mask": "", "maskType": "", "maxBlockSize": "", "maxHeight": "", "maxInlineSize": "", "maxWidth": "", "maxZoom": "", "minBlockSize": "", "minHeight": "", "minInlineSize": "", "minWidth": "", "minZoom": "", "mixBlendMode": "", "negative": "", "objectFit": "", "objectPosition": "", "offset": "", "offsetDistance": "", "offsetPath": "", "offsetRotate": "", "opacity": "", "order": "", "orientation": "", "orphans": "", "outline": "", "outlineColor": "", "outlineOffset": "", "outlineStyle": "", "outlineWidth": "", "overflow": "", "overflowAnchor": "", "overflowClipMargin": "", "overflowWrap": "", "overflowX": "", "overflowY": "", "overscrollBehavior": "", "overscrollBehaviorBlock": "", "overscrollBehaviorInline": "", "overscrollBehaviorX": "", "overscrollBehaviorY": "", "pad": "", "padding": "", "paddingBlock": "", "paddingBlockEnd": "", "paddingBlockStart": "", "paddingBottom": "", "paddingInline": "", "paddingInlineEnd": "", "paddingInlineStart": "", "paddingLeft": "", "paddingRight": "", "paddingTop": "", "page": "", "pageBreakAfter": "", "pageBreakBefore": "", "pageBreakInside": "", "pageOrientation": "", "paintOrder": "", "perspective": "", "perspectiveOrigin": "", "placeContent": "", "placeItems": "", "placeSelf": "", "pointerEvents": "", "position": "", "prefix": "", "quotes": "", "r": "", "range": "", "resize": "", "right": "", "rowGap": "", "rubyPosition": "", "rx": "", "ry": "", "scrollBehavior": "", "scrollMargin": "", "scrollMarginBlock": "", "scrollMarginBlockEnd": "", "scrollMarginBlockStart": "", "scrollMarginBottom": "", "scrollMarginInline": "", "scrollMarginInlineEnd": "", "scrollMarginInlineStart": "", "scrollMarginLeft": "", "scrollMarginRight": "", "scrollMarginTop": "", "scrollPadding": "", "scrollPaddingBlock": "", "scrollPaddingBlockEnd": "", "scrollPaddingBlockStart": "", "scrollPaddingBottom": "", "scrollPaddingInline": "", "scrollPaddingInlineEnd": "", "scrollPaddingInlineStart": "", "scrollPaddingLeft": "", "scrollPaddingRight": "", "scrollPaddingTop": "", "scrollSnapAlign": "", "scrollSnapStop": "", "scrollSnapType": "", "scrollbarGutter": "", "shapeImageThreshold": "", "shapeMargin": "", "shapeOutside": "", "shapeRendering": "", "size": "", "sizeAdjust": "", "speak": "", "speakAs": "", "src": "", "stopColor": "", "stopOpacity": "", "stroke": "", "strokeDasharray": "", "strokeDashoffset": "", "strokeLinecap": "", "strokeLinejoin": "", "strokeMiterlimit": "", "strokeOpacity": "", "strokeWidth": "", "suffix": "", "symbols": "", "syntax": "", "system": "", "tabSize": "", "tableLayout": "", "textAlign": "", "textAlignLast": "", "textAnchor": "", "textCombineUpright": "", "textDecoration": "", "textDecorationColor": "", "textDecorationLine": "", "textDecorationSkipInk": "", "textDecorationStyle": "", "textDecorationThickness": "", "textIndent": "", "textOrientation": "", "textOverflow": "", "textRendering": "", "textShadow": "", "textSizeAdjust": "", "textTransform": "", "textUnderlineOffset": "", "textUnderlinePosition": "", "top": "", "touchAction": "", "transform": "", "transformBox": "", "transformOrigin": "", "transformStyle": "", "transition": "", "transitionDelay": "", "transitionDuration": "", "transitionProperty": "", "transitionTimingFunction": "", "unicodeBidi": "", "unicodeRange": "", "userSelect": "", "userZoom": "", "vectorEffect": "", "verticalAlign": "", "visibility": "", "webkitAlignContent": "", "webkitAlignItems": "", "webkitAlignSelf": "", "webkitAnimation": "", "webkitAnimationDelay": "", "webkitAnimationDirection": "", "webkitAnimationDuration": "", "webkitAnimationFillMode": "", "webkitAnimationIterationCount": "", "webkitAnimationName": "", "webkitAnimationPlayState": "", "webkitAnimationTimingFunction": "", "webkitAppRegion": "", "webkitAppearance": "", "webkitBackfaceVisibility": "", "webkitBackgroundClip": "", "webkitBackgroundOrigin": "", "webkitBackgroundSize": "", "webkitBorderAfter": "", "webkitBorderAfterColor": "", "webkitBorderAfterStyle": "", "webkitBorderAfterWidth": "", "webkitBorderBefore": "", "webkitBorderBeforeColor": "", "webkitBorderBeforeStyle": "", "webkitBorderBeforeWidth": "", "webkitBorderBottomLeftRadius": "", "webkitBorderBottomRightRadius": "", "webkitBorderEnd": "", "webkitBorderEndColor": "", "webkitBorderEndStyle": "", "webkitBorderEndWidth": "", "webkitBorderHorizontalSpacing": "", "webkitBorderImage": "", "webkitBorderRadius": "", "webkitBorderStart": "", "webkitBorderStartColor": "", "webkitBorderStartStyle": "", "webkitBorderStartWidth": "", "webkitBorderTopLeftRadius": "", "webkitBorderTopRightRadius": "", "webkitBorderVerticalSpacing": "", "webkitBoxAlign": "", "webkitBoxDecorationBreak": "", "webkitBoxDirection": "", "webkitBoxFlex": "", "webkitBoxOrdinalGroup": "", "webkitBoxOrient": "", "webkitBoxPack": "", "webkitBoxReflect": "", "webkitBoxShadow": "", "webkitBoxSizing": "", "webkitClipPath": "", "webkitColumnBreakAfter": "", "webkitColumnBreakBefore": "", "webkitColumnBreakInside": "", "webkitColumnCount": "", "webkitColumnGap": "", "webkitColumnRule": "", "webkitColumnRuleColor": "", "webkitColumnRuleStyle": "", "webkitColumnRuleWidth": "", "webkitColumnSpan": "", "webkitColumnWidth": "", "webkitColumns": "", "webkitFilter": "", "webkitFlex": "", "webkitFlexBasis": "", "webkitFlexDirection": "", "webkitFlexFlow": "", "webkitFlexGrow": "", "webkitFlexShrink": "", "webkitFlexWrap": "", "webkitFontFeatureSettings": "", "webkitFontSmoothing": "", "webkitHighlight": "", "webkitHyphenateCharacter": "", "webkitJustifyContent": "", "webkitLineBreak": "", "webkitLineClamp": "", "webkitLocale": "", "webkitLogicalHeight": "", "webkitLogicalWidth": "", "webkitMarginAfter": "", "webkitMarginBefore": "", "webkitMarginEnd": "", "webkitMarginStart": "", "webkitMask": "", "webkitMaskBoxImage": "", "webkitMaskBoxImageOutset": "", "webkitMaskBoxImageRepeat": "", "webkitMaskBoxImageSlice": "", "webkitMaskBoxImageSource": "", "webkitMaskBoxImageWidth": "", "webkitMaskClip": "", "webkitMaskComposite": "", "webkitMaskImage": "", "webkitMaskOrigin": "", "webkitMaskPosition": "", "webkitMaskPositionX": "", "webkitMaskPositionY": "", "webkitMaskRepeat": "", "webkitMaskRepeatX": "", "webkitMaskRepeatY": "", "webkitMaskSize": "", "webkitMaxLogicalHeight": "", "webkitMaxLogicalWidth": "", "webkitMinLogicalHeight": "", "webkitMinLogicalWidth": "", "webkitOpacity": "", "webkitOrder": "", "webkitPaddingAfter": "", "webkitPaddingBefore": "", "webkitPaddingEnd": "", "webkitPaddingStart": "", "webkitPerspective": "", "webkitPerspectiveOrigin": "", "webkitPerspectiveOriginX": "", "webkitPerspectiveOriginY": "", "webkitPrintColorAdjust": "", "webkitRtlOrdering": "", "webkitRubyPosition": "", "webkitShapeImageThreshold": "", "webkitShapeMargin": "", "webkitShapeOutside": "", "webkitTapHighlightColor": "", "webkitTextCombine": "", "webkitTextDecorationsInEffect": "", "webkitTextEmphasis": "", "webkitTextEmphasisColor": "", "webkitTextEmphasisPosition": "", "webkitTextEmphasisStyle": "", "webkitTextFillColor": "", "webkitTextOrientation": "", "webkitTextSecurity": "", "webkitTextSizeAdjust": "", "webkitTextStroke": "", "webkitTextStrokeColor": "", "webkitTextStrokeWidth": "", "webkitTransform": "", "webkitTransformOrigin": "", "webkitTransformOriginX": "", "webkitTransformOriginY": "", "webkitTransformOriginZ": "", "webkitTransformStyle": "", "webkitTransition": "", "webkitTransitionDelay": "", "webkitTransitionDuration": "", "webkitTransitionProperty": "", "webkitTransitionTimingFunction": "", "webkitUserDrag": "", "webkitUserModify": "", "webkitUserSelect": "", "webkitWritingMode": "", "whiteSpace": "", "widows": "", "width": "", "willChange": "", "wordBreak": "", "wordSpacing": "", "wordWrap": "", "writingMode": "", "x": "", "y": "", "zIndex": "", "zoom": "" } document.body.style = catvm.proxy(document.body.style); document.body.onmouseenter = null; document.onmousemove = null; document.visibilityState = 'visible'; document.createEvent = function createEvent(){ debugger; };catvm.safefunction(document.createEvent); document.onselectionchange = null; document.documentElement.__proto__ = HTMLHtmlElement.prototype; document.cookie = 'WEB=20111132; wIlwQR28aVgbT=GMJN1aFzEg1u26fLHaZvmrlRSp1r_6hF6dWuOzbbRiWuzjKTC_EEJVsiSK2SYnwfcNm6kPJ3KxkMdU_j6SpXlByvhor2Iixjl53F7ZGPrBVf24BsdgdjssR0d1VFDAJubmtLGqHAVKzYM6KGH.SZcwfiHpb9OrbAqYVF5t1EL74KPbRXjOJBc3iAjb0vLeL2c9hkJLP66Eh8BNQkQ85zxMHLL7UuhkXO0kblN2KV3m9EmLTlINOyVArpqQwnzZPTD4R8EG7xOTgIwF1aaHVPS60Ui3t0GUQK43sRTng5ZVWAE.EQPGoRWlqYS9IQkE6_grHcEA5DGmpZPAuPyLv19IVq4hiBv5D1thBEHuEK3Z0m4UpptGcs3ayjTsQSYTYAlKTwQWK8aocbi3TxDKrXGkGp12OnPf39D76hAzaG.aQ'; ////// document = catvm.proxy(document) catvm.print.open=true; debugger; HTMLFormElement.prototype.submit = function submit(){ debugger; };catvm.safefunction(HTMLFormElement.prototype.submit); XMLHttpRequest.prototype.open = function open(){ debugger; window.ywb = arguments[1]; };catvm.safefunction(XMLHttpRequest.prototype.open); XMLHttpRequest.prototype.send = function send(){ debugger; };catvm.safefunction(XMLHttpRequest.prototype.send); delete window.VMError; delete window.Buffer; $_ts = window['$_ts']; if (!$_ts) $_ts = {}; $_ts.nsd = 57064; $_ts.cd = "qtlZrpAlEOqlirGmxGqarsqciqQbqrgFcc3XofLxxGqaqkqriqQIrAVEtf7bqkqDWqQgrn3qWqVaqf3oxGqaqkqriqQarGVxrr7EqkqcWqWgrn3qWqlarOGocqqarkqmiqQaqGVtrrgaqr33rsqDqaGbqkqlWqVgrn3XofLhWqWgDqAaqAVhrrLatkG3qn3qWqAarsGoWqqgDqVRruG3rkqlr1jFqsVSqGVSHRLO3zIXHqCJLHWV2xqybY8knkavV06ijI9vhm.AWzju6ulkrAEoraPTq0m881YcF_xXM0yYJUJg0Oq4HKRmwChnFuzlEkTQR5eBMn27Qbz2zbTCFKg.FUuCMne.wCz.xIpCMC2I8Pzv4CeBKqGoN2oQA9rjwoxuWjJrJCp2RoTPLsxEIC06MkkHilw7V09a1HSWiD2uVmmzn62912p5ROhHJOm.RkJD3z2PpCGysCYEuKzcp9GSUOonikLCYsJ1VIpF3sTpp19gjCx23DQCtKHNiDYQMbYdQdrpQCx_An9gjCx23DQCtKHNilqSFvYBUQJMYYRqMuSfTuYvwvVTRvPziCL5FTZT3ImY3OSzMC0ybGWkrkEorOnFlbzSwvQeij9nJsVTWslSLk7urAACJbOZRb3mqs3SiyLxWOV_Jk35LuWuHAEkWubOJAWY11zjAbeA3nH3BN4_4a5n8aEUau0UT_5jytqi9y9qrGQmqqQNTdgbH3fEZyTfwV4dpoSPlO6OCVM1oTh2Je61gem1rFKFcu30WuECij90qaAura0g.kV0HsE0JkbBqaWmqGQocR7uqaATrAZ5gcePRDl.RbsLhCxCMnzbIdWB3KpNtCYL4PefFoE.RKk0hCqN3KR2xI2aQc2fwol25KSXtKm6wnU53vQNRbz.xIy73c2bFoW2dbSGI1yPICnCRbSShbm.FhR2MC3X3KfvzbY7Q1yfFDIXhCpf3czG3HaBRoZX3DebzbzBw1yBw6bCF6wbhby9R.RjMKaXMb2BzbNzwPyXwDFCFUqNFDRTxIruRc2LwCxXzb2aFba.MKO73PeNFCV.RIY9hCfOwnz9ZCQBFoEutCsj3PeLJb3.RiLahCfn3cz9ZUVBFDTOtCsTw1eLFCL.RiNuhCfSMPz9_bR9tKT2M1UT3o7NMKrGxIYB312zFCE2eUw2tUx5t6vO3ceT36A.8ITXh6YnFPzy_vqBwUxut6v5R1eTQvJdx8NzRc2nMbA2_bejtUx03nU.FbVNQ6Jdx8fPh6wBt6YLeneSFop2t6BdRce6R6A.85y2h6wOw1z_e1eaRCg.wDdPh6rn3nz0IBaBQoJ2t6pa_1e6Roq.QCOGh6w7Rczu3HS2h6mzwUY7eoQBQUNut66XR1euQKW.I52ah6JSQczdgbQBQbTf31UzMDYOWczaRiaBwDfOt6rL4ce0wUl.ICB6h6zTMnzdR89B8C2SInzS_KZBIKe.t6iC8KNThbR63.RuMCSSQnzG_bEBQKYet6vy3vWNRCN.cRLkrTLbKDgxv2avK9WoqTF5x63mr2GOYXZkqsQ0raV5.G"; if ($_ts.lcd) $_ts.lcd(); (function(_$ak, _$a1) { var _$_W = 0; function _$m7() { var _$_i = [28]; Array.prototype.push.apply(_$_i, arguments); return _$hP.apply(this, _$_i); } function _$nx(_$fF) { return _$m7; function _$m7() { _$fF = 0x3d3f * (_$fF & 0xFFFF) + 0x269ec3; return _$fF; } } function _$cs(_$m7, _$__) { var _$hC, _$bS, _$lK; !_$__ ? _$__ = _$fb : 0, _$hC = _$m7.length; while (_$hC > 1) _$hC--, _$lK = _$__() % _$hC, _$bS = _$m7[_$hC], _$m7[_$hC] = _$m7[_$lK], _$m7[_$lK] = _$bS; function _$fb() { return Math.floor(_$aT() * 0xFFFFFFFF); } } var _$__, _$$u, _$aD, _$$K, _$_c, _$ii, _$aT, _$$a, _$kB; var _$ju, _$fq, _$je = _$_W, _$a0 = _$a1[0]; while (1) { _$fq = _$a0[_$je++]; if (_$fq < 12) { if (_$fq < 4) { if (_$fq === 0) { _$kB = _$$K['$_ts']; } else if (_$fq === 1) { _$ju = _$kB; } else if (_$fq === 2) { _$kB = _$$K['$_ts'] = {}; } else { !_$ju ? _$je += 2 : 0; } } else if (_$fq < 8) { if (_$fq === 4) { _$kB.lcd = _$m7; } else if (_$fq === 5) { _$ju = !_$$a; } else if (_$fq === 6) { _$hP(28); } else { !_$ju ? _$je += 0 : 0; } } else { if (_$fq === 8) { _$je += 2; } else if (_$fq === 9) { _$$K = window, _$_c = String, _$ii = Array, _$__ = document, _$aT = Math.random, _$$a = Date; } else if (_$fq === 10) { return; } else { _$$u = [4, 16, 64, 256, 1024, 4096, 16384, 65536]; } } } else ; } function _$hP(_$iy, _$nb, _$gy) { function _$kQ() { return _$aC.charCodeAt(_$_O++); } function _$bY(_$m7, _$__) { var _$hC, _$bS; _$hC = _$m7.length, _$hC -= 1; for (_$bS = 0; _$bS < _$hC; _$bS += 2) _$__.push(_$_Y[_$m7[_$bS]], _$l2[_$m7[_$bS + 1]]); _$__.push(_$_Y[_$m7[_$hC]]); } var _$m7, _$__, _$hC, _$bS, _$lK, _$fb, _$_W, _$je, _$ju, _$_i, _$fq, _$a0, _$$S, _$bZ, _$iX, _$l2, _$dV, _$aC, _$jf, _$_O, _$f5, _$i5, _$_Y; var _$_I, _$nB, _$jv = _$iy, _$et = _$a1[1]; while (1) { _$nB = _$et[_$jv++]; if (_$nB < 95) { if (_$nB < 64) { if (_$nB < 16) { if (_$nB < 4) { if (_$nB === 0) { _$kB.scj = []; } else if (_$nB === 1) { _$ju = 0; } else if (_$nB === 2) { _$hC[5] = _$hP(26) - _$m7; } else { _$_I = !_$bZ; } } else if (_$nB < 8) { if (_$nB === 4) { _$hC[6] = ""; } else if (_$nB === 5) { !_$_I ? _$jv += -27 : 0; } else if (_$nB === 6) { !_$_I ? _$jv += 1 : 0; } else { !_$_I ? _$jv += 2 : 0; } } else if (_$nB < 12) { if (_$nB === 8) { _$f5 = _$kQ(); } else if (_$nB === 9) { !_$_I ? _$jv += -18 : 0; } else if (_$nB === 10) { _$dV = _$kB.aebi = []; } else { _$_I = !_$_i; } } else { if (_$nB === 12) { _$_I = !_$_Y; } else if (_$nB === 13) { _$kB.cp = _$hC; } else if (_$nB === 14) { _$bS = _$kQ(); } else { _$lK = 0; } } } else if (_$nB < 32) { if (_$nB < 20) { if (_$nB === 16) { _$je = _$kQ() * 55295 + _$kQ(); } else if (_$nB === 17) { !_$_I ? _$jv += 70 : 0; } else if (_$nB === 18) { _$lK++; } else { for (_$ju = 0; _$ju < _$a0.length; _$ju += 100) { _$$S += _$a0.charCodeAt(_$ju); } } } else if (_$nB < 24) { if (_$nB === 20) { _$m7 = _$__.call(_$$K, _$nb); } else if (_$nB === 21) { _$_I = _$$K.execScript; } else if (_$nB === 22) { _$_W = _$kQ(); } else { _$lK = _$kQ(); } } else if (_$nB < 28) { if (_$nB === 24) { _$_I = !_$_O; } else if (_$nB === 25) { _$i5 = _$kQ(); } else if (_$nB === 26) { _$_I = _$nb === undefined || _$nb === ""; } else { _$__ = _$$K.eval; } } else { if (_$nB === 28) { _$_I = _$bS % 10 != 0 || !_$hC; } else if (_$nB === 29) { _$_I = !_$m7; } else if (_$nB === 30) { _$a0 = _$_i.join(''); } else { _$ju++; } } } else if (_$nB < 48) { if (_$nB < 36) { if (_$nB === 32) { _$fq = '\n\n\n\n\n'; } else if (_$nB === 33) { _$cs(_$__, _$gy); } else if (_$nB === 34) { !_$_I ? _$jv += 11 : 0; } else { _$_i.push('}}}}}}}}}}'.substr(_$_W - 1)); } } else if (_$nB < 40) { if (_$nB === 36) { _$m7 = _$hP(26); } else if (_$nB === 37) { _$__ = []; } else if (_$nB === 38) { _$hC++; } else { !_$_I ? _$jv += 3 : 0; } } else if (_$nB < 44) { if (_$nB === 40) { _$j9(21, _$ju, _$_i); } else if (_$nB === 41) { _$fb = _$kQ(); } else if (_$nB === 42) { _$hC = 0, _$bS = 0; } else { _$j9(9, _$_i); } } else { if (_$nB === 44) { _$hC[2] = "g2+3,`,,.`/`.,3.301,30`,.*`3`,//`0//-/`+3`,`+2`+,`,*31+/+`2`0*`0*.2**`+3,`+**`,*`3,`./`0`-1`+,0`3*`.,3.301,3/`.*`,*+`*(*+`,+`0-`+1`/2`+,1`0.`2,`+***`0//-0`+-`,/0`3-`20`*(/`+*`-.`--`1`.`-`[+`-,`-+`+0`-*`+*,.`.2`,1`+/`,**`,.`+,2`++`+-.,+11,2`+-.,+11,1`+*****`+.`/3`31`//,30`//`,*.2`33`2*`,02.-/.//`+0-2-`/0`1,`,*.1`[+**`-3`-,102`,1+1--212`,/-+*++`20.*****`.-`-/`,.2`[*(*+`,****`+,*`,2`++,`+02.-**3`,0`,0/..-/103`-**`.*30*`.0`,*-`*(2`13`*(0`*(.`+02.-**2`+-+*1,`,2-`/+,`+0.`1/`/+`,-`[*(3`+2*`,/1`+*,`0//-1`+,,`/0-,*`/1`/***`,3`02`23`0/`,***`/,`*(,0`,.**3/31*2`+1-,/2.+3-`+*.2/1/`-322,3,-2.`+/+2/**,.3`*(3`-****`/****`*(,`[,`-0*`.*,-,--.+1`[*(,`[*(,0`-,2/-11/,*`+/**`[+2*`+**+`[1`*(+`[.`,/0,-2-+*,`---1/0/32.`,/.`/*23`+2/311/-3-`,/,`[3*`+0111,+/`*(-/`--3/.0312,`*(2+-,0./.-`+/013`+2**`+/2`+-0`+-3`+-.`+.*`+,3`+--`+//`+.,`+./`+0*"; } else if (_$nB === 45) { _$l2 = _$hP(0, 1003, _$nx(_$__)); } else if (_$nB === 46) { _$jf = _$aC.length; } else { _$hP(94, _$a0); } } } else { if (_$nB < 52) { if (_$nB === 48) { _$hC[4] = _$hP(26) - _$m7; } else if (_$nB === 49) { !_$_I ? _$jv += -50 : 0; } else if (_$nB === 50) { _$aC = "ķñȦȧñम\x00催,ā=ā[ā(āā.ā;ā],ā);ā?ā),ā(){return ā<ā){var ā+ā[11]](ā=0,ā;}function ā=0;ā]=ā[ --ā !ā(){ā++ ]=ā:ā[ ++ā&&ā>>ā&ā(),ā+=ā.push(ā= !ā):ā[27]](ā=(ā++ )ā);}function ā||ā!==ā=[],ā=new ā){ā(){var ā===ā!=āfunction ā[35]];ā)ā));ā[0],ā-ā&& !ā?(ā>ā>>>ā&&(ā){return ā;return ā<=āreturn ā*ā();ā[1],ā|| !ā[6],ā][ā&&( !ā;for(ā[12][ā[6]),ā[27]]((ā<<ā++ ){ā[12]](ā==ā-=ā;function ā){if(ā={},ā):(ā||(ā[9];ā++ ]=(ā/ā[2],ā[35]],ā[43]]==ā:0,ā[6]]^ā[35]]===ā[13])&ā++ ]<<ā^ā[2][ā[47],ā>=ā):0,ā[52])&ā,0,ā[47];ā];if(ā]):ā);return ā[10][ā++ ;ā in ā[59])&ā[3],ā,true);ā)return ā(){return +ā){}ā+1],ā({ā))&&ā[4],ā);if(ā))|| !ā= !(ā[14]][ā;}ā=1;ā](ā||( !ā++ ),ā:1,ā=0;for(ā|=ā)):ā<0?ā[9]),ā=[];for(ā});ā]===ā;}}function ā[50]](ā.y-ā[35]]>ā+=1,ā[49]](ā; ++ā.length;ā.x-ā(107)-ā[13]),ā=[ā[52]&ā++ ],ā[19][ā=((ā[2]](ā[13]&ā[13];ā];}function ā[35]]-ā]],ā=0:ā];ā))||ā.slice(ā[52]||ā&& !(ā=( !ā){ typeof ā);}ā=true,ā()[ā);function ā[9],ā[9]?ā=this.ā(0);ā[24][ā.x*ā[13])|ā++ ,ā+=1:0;ā.y*ā[52];ā(107);āreturn;ātry{ā;if(ā){}}function ā[10]](ā[21],ā[25],ā[12]](0,ā ++ā=0;if(ā=1,ā[35]]/ā]|ā[15][ā[15];ā; typeof ā[18][ā++ ):ā()),ā=[];ā-- ,ā[1]?ā[57])<<ā[5],ā[63]+ā[23]](ā[(ā[59]^ā[32],ā.x)+(āfor(ā[52])|(ā[3];ā[29]]((ātry{if(ā;)ā[30])<<ā[7];ā+=2:0;ā|| !(ā[21]](ā)?ā===0?(ā);}catch(ā%ā[4];ā));}function ā[0];ā[61]](ā-1],ā[49];ā[43]]=ā[47]^((ā[17];ā[67],ā[12]](0),ā();if(ā[1]+ā[43];ā[48])]))&ā[52]);ā+1])):ā[21]][ā[13]);ā.y),ā)){ā);}}function ā[6]);}function ā);for(ā[39];ā=0;while(ā[6]]<<ā]=(ā[17]),ā)),ā[3]+ā[25];ā-=3,ā[35]]-1;ā[46]](ā[13]^ā[13],ā){return(ā.length,ā=false,ā[2]=ā[2])&ā=0:0,ā[9]&&ā]^=ā)|0,ā[2];ā]=68,ā[47]),ā[35]]%ā]]:ā;if( !ā[13]);}function ā].ā)+ā)%ā)&ā[47]+ā+=4:0;ā[27]=ā[35]]+ā[71],ā.join('');}function ā,this.ā]);ā[16]](ā+=1;ā-=2,ā[59])|(ā], !ā[18];ā[4]=ā[9]],ā[48],ā[63]))+ā[57]](ā[59]]^ā]):(ā+1)%ā>0;ā('');ā+=(ā[78]](ā[50],ā[4]&&ā[10];ā[95]);}function ā[38],ā()?ā[17]+ā))return ā[27]));ā[89]](ā[55]);}function ā[1];ā[5];ā[5]+ā[75]);}function ā[24],ā[63],ā[22]][ā++ ];else if((ā[((ā[80]+ā.x+ā(107),ā);else if(ā[80]);}function ā;try{ā};function ā.x,ā[36]=ā[9]);}function ā[30]);}function ā);while(ā])):ā[31],ā[10]);ā[12];ā(114,ā,{ā[40]),ā[19]?ā?0:ā+1]&ā[6]][ā[15]];ā)||(ā=false:0,ā[2]];ā[56]](ā[13])),ā[12]];ā[7]:0,ā[7]?ā[33]](null,ā[35]]),ā[6]);ā[6])|ā]!==ā())in ā[27]]({ā)===ā[6]:0,ā[48])<<ā[93],ā[1]);ā[17]);ā.x),ā[6]?ā[6];ā;){ā[70],ā[43]);ā[2]+ā= !( !ā[52]),ā[62]][ā):0;return ā]<ā]:ā))ā[76]](ā[86]);}function ā[47]?ā[23],ā[27];ā[23][ā():0,ā,'');}function ā[49]||ā];}}function ā):0;for(ā[30]),ā);else return ā[25]),ā[323](ā[21])|(ā]),ā++ )if(ā!=null?(ā[29][ā:0;ā[27]](((ā>0||ā[0]^ā[0][ā[8]][ā.split('');for(ā]=\"\",ā[48]](ā.y)/(ā[1]];ā[35]];for(ā[7]]=ā[48]?ā();}function ā[89]);}function ā[45]](ā[58]](ā[21];return ā.charCodeAt(ā>0?ā);}}catch(ā[68]);}function ā[75]:0,ā[63]);}function ā<<1^(ā:0;return ā[33]?ā[8]);ā[50]+ā]>=ā[37],ā)&&ā[47])],ā[9]?(ā()*ā+1]=ā];}catch(ā[0]<=ā):0):ā[87]]([ā[28]),ā();for(ā();return ā[51]);return ā[4]),ā.z;ā[6]]]^ā)try{if(ā[49])return[ā(1,0),ā+(ā[11])|((ā(42,ā[113]^ā[4];for(ā[4]));ā]);}function ā)):0;if(ā[9]|ā[61]](0,ā[9]*ā[65]&&ā[1]>ā[1]=ā[21]];ā[40],ā[1][ā&& !( !ā[1]^ā[87]);}function ā(65,ā[84]),ā[43]]==0?ā[24];ā[20];ā[36]&&ā[56]];}catch(ā[5]);return ā[3]);return ā||0,ā[27]];ā+2])):ā[37]],ā[6])):ā[47])|(ā[36]](ā[79]][ā[24]](ā>0)for(ā[36]];ā;return[ā[70]),ā[79]];ā++ ):0):0;ā(){return[ā[84],ā[31]);ā()];ā:(ā].apply(ā[43]);}function ā)?(ā[14]);}function ā[17]):0,ā?1:ā[68]]=ā]()):ā[79],ā[52]);}function ā]=1,ā[59],ā[32]=ā[32];ā[48]);ā[63]),ā[24]);}function ā[52]^ā.y;ā, ++ā):0;}function ā[73]);}function ā[59]]<<ā[10]),ā[31]+ā[12],ā[66]);}function ā[7]&&ā[91]);}function ā[19];ā[92]);}function ā[40];return ā[0];return ā-((ā[10]);}ā[24]),ā[62];return ā[54]);return ā[41]](0,ā+=9;ā[21]);return ā[27]|| !ā[90]),ā[15]](ā(20,ā)if(ā){this.ā[46]];ā[47];for(ā[47])),ā)==ā};ā)):0;return ā[10]];ā[52]][ā[14]||(ā[29]],ā>>>0),ā[3]=ā[25]=ā[50]];ā[17]]==ā>=0;ā[46]+ā[3][ā[62],ā[9],( ++ā]=79,ā+=7:0;ā=null,ā.split(''),ā()?(ā)<<ā[71];return ā++ ):0,ā]=48,ā(1,ā[55]];ā){return[ā+=3:0;ā)!==true?(ā(134);ā[17]*(ā[16];return ā]);else if(ā.apply(ā+=1:0,ā=2;ā];}return ā[5])+ā[27]||ā[5]),ā[48]);}function ā+=0:0;ā.x&&ā[35]]>=ā[1]),ā];}ā+=5;ā});return;function ā)try{ā]]):ā>>(ā[34],ā]!=ā[34]+ā[325](ā[2]||ā[35]]);}}function ā[74],ā<=16?(ā|=1;ā[2]?ā[2]^ā+1},ā[0]&&ā());ā]]]=ā[16]);}function ā[30]];ā]]=ā[43]]==1&&ā,1,ā]^ā[34])this.ā]);return ā+((ā]>ā]&ā]-ā]+ā]*ā)(ā)*ā)-ā)/ā[20]];ā){return((ā[20]](ā[6],(ā[76]],ā)[ā){}function ā+=-4;ā[93]);}function ā[43],ā(){this.ā[30])[0],ā[70]);}function ā[1])return[];ā[12]);ā[12])&ā[27]&&ā+=13;ā.y))*ā[35],ā,false);}function ā[94];for(ā;if( typeof ā.apply(null,ā[48];while(ā[35]](ā[6];return ā=null;ā++ ];}function ā+=-9;ā[46]][ā[13](ā[52]?ā[16];ā[0]);ā[52],ā-1),ā[87]](ā={};for(ā[10]);}function ā[1]=[ā[11]]();ā[23]]((ā[51]);}function ā[47]||ā[44]](ā[(((ā.y))),ā[13]](ā[13])return ā[46])*ā<=34?(ā)>1?ā-1+ā[51]?ā[0]);}function ā[92]+ā[10]]()));ā()][ā<=46?(ā[5]=ā[0]=ā[71]);}function ā[4].ā[67]](ā|| !( !ā=null, !this.ā[7]][ā[61],ā+2]=ā[48]]^ā[65]?ā[34]);return ā[48]]=ā+=4;ā(9,ā[9]]&ā[9]]=ā,true);}function ā[4]](ā[4]];ā]/ā+=68:0;ā()):ā[85]);}function ā[7]);}function ā[35]];while(ā():0;}function ā[18]);ā<=26?(ā[45]],ā[36]]||ā+=3;ā[41]+ā[49]?ā=[[],[],[],[],[]],ā[49],ā){return[(ā[41]][ā]++ :ā[69]](ā]++ ,ā[61]),ā[61])&ā[11]](this,ā.substr(ā)|(ā);}}}catch(ā[35]]:0,ā[5]);else if(ā[47]]){ā[74]?(ā]=Number(ā[35]='';ā)for(ā[47]+1)continue;if(ā[39]);return ā[42]];ā[84]])return ā[143],ā[49];for(ā[83]);}function ā[33]+ā[14],ā[33],ā!==null&&( typeof ā)||[];else return ā[14]>ā[0]=this,ā[14]=ā[14];ā[33]=ā[50]>ā[50];ā:'\\\\u'+ā[21]||ā[39]);}function ā[3]]();}function ā-52:0):ā[59]);}function ā[20],ā[1].concat([arguments]),ā[2])|(ā[2];}catch(ā+=60:0;ā[47]]()[ā.x!=ā){try{ā='href';ā[74]),ā[79]);}function ā[10],ā[74]);ā[10]=ā<=96?(ā]):( --ā=true;ā):0);else{switch(ā.x?(ā===252?ā[48])):ā<=92?(ā[29]);}ā[38]=ā[48])),ā[34];return ā<=55?ā():ā[84]===ā()%ā[77]+ā[148],ā[77],ā[17],ā[30];ā[144],ā=true:0:0;return ā[20]),ā[17]?ā[15]||ā[17]:ā[20]);ā>=40&&ā[56]],this[ā<=48?ā[0]);else if(ā[1][2]))&&ā[9];else return 0;}ā]);}ā+=-24:0;ā[22]];ā[65]),ā[13]]){ā[48]& -ā)):0,ā[93]];ā++ ])>>>0;}function ā+=98:0;ā;break;}}ā+1));ā>1)ā[3]);else{ā(364);ā()?this.ā+1))[ā[91]),ā[124]?ā[1][2]==ā()):0;}}function ā[86]](ā[1][0];ā[88]);ā[4]){ā))return[true,ā[47]);ā,'');}else return'';}function ā[32]===ā[0];}function ā[7]|| !(ā[88]),ā))return false;ā[14]));ā(85);ā<=12?ā+=107:0;ā[47]?(ā[46];return ā<=85)debugger;else ā[4]);ā[11]||( !ā[35]]<=ā[55]&&ā);}return ā[13];}for(ā[3]);else if(ā[10]]();return ā+=190:0;ā+=-92:0;ā[50]; ++ā[17]:0):ā= ++ā-- )ā[67]+ā=false;for(ā=Array.prototype.slice.call(arguments,1);ā; !ā[0])return;try{ā[57]);ā[43]];ā+=-51;ā<=83)ā?0:0,ā[54])+ā[35]]];function ā[34])));return this;}function ā[21]);if(ā>>>1)):(ā[10]))||ā+1));}}function ā=1;}}if(( !ā<=10?(ā[29]]==ā<<1)+1,ā[52])+1,ā='#';ā++ )==='1',ā]-- ;else if(ā!==''){if(ā-=1):0;return[ā=window;ā[17]];ā[17]]=ā))&& !ā<=14?(ā[153]?(ā[27]]||ā[6]]&&ā[1]);else if(ā[49]){ā++ :0;}return ā):0;}catch(ā[3]===ā[92]?ā[36]);ā[58]?(ā=this;try{ā[35]]&&ā>>>0);}}function ā[71]](ā[1][0]));ā[40]&&ā='protocol';ā[36])[ā>=92?ā;else if((ā[30])[1];return ā])):(ā[30]=ā<=18?(ā[49]),ā));}else ā=0, !ā[94]);return ā[3]=(ā];}if(ā+1],16));return ā<=65?(ā[1][0]===ā&= ~(ā[48];for(ā<=61?(ā[35]]-1];ā++ );}function ā[23]]({name:ā>=97&&ā[90]]||ā+=21:0;ā[80]),ā++ :0;return ā[0]=(ā[3]=[ā;while(ā=0:0;break;default:break;}ā[42];return ā[2]);else if(ā!==''?ā(352,ā[331]();ā[25])];}function ā[75]](ā[8]]||ā+=11:0;ā[37]=ā[9]^ā[0];for(ā=unescape;ā[45])!==ā[12]);return ā[9]+ā[9]:ā|=1:0,ā[1]:0,ā.y>0?ā[84]);}function ā[44]+ā+='r2mKa'.length,ā[48]^ā.fromCharCode(255));return[];}function ā[60]][ā];return[ā[20];return ā[1])return((ā-=4)ā[42])return 1;else if(ā[48]/ā[83],ā[22]);return ā[60]]-ā[83];ā[48];ā++ )this.ā+1,ā[28]](ā=0):ā],0),ā=[], !ā+=78:0;ā})):0,ā[24]=ā[76];}}return ā[24]);return ā[21];}return ā[2]);ā});return ā[5]&&( !ā[9]]),ā));function ā[159]*(ā+=-108:0;ā[33]](ā[6])|((ā[0]!==0?(ā[3])];}function ā[22]](ā[35]]);return ā[32]](ā[35]];)ā[38]='';ā[86]?(ā[2])+ā[26]);return +(ā.x==ā[64]],ā[9]:0,ā[2]]={};ā[85]),ā<=87?(ā+=-3;ā[64]);}ā[80]);ā=0;}ā[5]=null;ā=true;}}if(ā-1]),ā[63]]=ā[20]);return ā[85]]);break;}ā<=86?(ā+1)];}function ā[21]],ā[47]:0,ā[37]][ā[4]=2,ā[43])continue;ā=0):0;break;case 3:ā[21]]=ā[83]:0):ā<=59?ā[9])|(ā[138],ā[93]]!=ā[71]);return ā[48]?( !ā);}else{ā[28].ā=[];if(ā[21])!==ā,true);}ā[28],ā[58]));for(ā<=82?(ā].y-ā.y);}function ā[6])),ā]+this.ā[27]](this.ā[18]);}function ā[37]];ā[1]===0||ā),this.ā[35]]];}function ā,0);if( !ā[123]<=ā[32]](\"\");ā={'\\b':'\\\\b','\\t':'\\\\t','\\n':'\\\\n','\\f':'\\\\f','\\r':'\\\\r','\"':'\\\\\"','\\\\':'\\\\\\\\'};return ā(){return(ā<=80?(ā.charAt(0)==='~'?ā+=111:0;ā[37]]);ā[24]][ā,1):ā[8]&ā[35]]<=1)return ā.x<ā[25]]?ā.x;ā[26]],ā[25]](ā[9]||ā[14]);return +(ā[31]),ā[56]);}function ā[40])?(ā[4]);if(ā):0;ā())!==ā,'');}ā[330]();ā[73]),ā(95);ā>1){for(ā[121];for(ā[43])):ā++ )try{ā[86])==ā[35]]===0;ā],0)!==ā[14]);ā[6]];if(ā(22,ā[14]),ā[12]))&&ā){ !ā!=true)?ā[40],{keyPath:ā[23]);ā[94];ā[77]);}function ā<=53?(ā==null?ā[16])==ā,false);}return null;}function ā))(ā+=-431:0;ā[13])+ā[2];return ā]]+1:0;for(ā);case'number':return ā<=57?(ā<=9?(ā[23]){ā[30]])/ā[13])^ā[19]?(ā,0)===\" \")ā[12]](0);}function ā|| typeof(ā.x),0<=ā))[ā[55]]+ā<=69?ā[332]();ā[24]&&(ā[1]+(new ā[47]);for(ā=true;break;}}ā[83]]);ā[10]&& !ā()==1?ā<=49?(ā++ ]= ~ā[47]);}function ā[26];return +(ā[1]=arguments,ā[19]|| !ā[23]|| !ā=false;}function ā[92]);if(ā[48];return ā[17]];}function ā=0):0;break;case 2:ā[45]])/ā[7]||ā++ ]= !ā[13]);for(ā[68]]-ā[68]],ā[43]]==1?(ā[68]](ā,0);return ā[89]),ā<=3?ā[65]),'');}function ā[79]?ā].x-ā||1,ā[12]?(ā= delete ā[17])[0],ā<=67?ā+=-72:0;ā[21]?(ā>=127?ā[85]],this[ā[48]),ā[50]<=ā<=11?ā[32]?ā[48]):ā]))return true;return false;}ā++ ;break;}ā[87]:0,ā[4]);else if(ā++ :ā[5]||ā[3]]();function ā[17]);}function ā||0);ā>0?(ā+=-121:0;ā.y<ā[36]+ā-=1):0,ā)|( ~ā.y+ā.y,ā[77]),ā[63]);}ā[23];return ā[36]))||ā<=104?(ā[35]||ā[56],ā(){return((ā);}if(ā.length===3)return new ā[54];return ā[2]]=ā[33]?(ā[39],ā[39]+ā[53];return +(ā[52]-ā];for(ā[17]&& !(ā<=102?(ā;}else return ā)return;try{ā))):0):0;}catch(ā[73]](new ā<=0)return;ā.lastIndexOf('/'),ā[72]);return ā<92?(ā){if( !ā[12]=ā[32]?(ā[91],ā<=100?(ā[50]](this.ā[35]];}function ā[17])[0];}function ā[25]],ā[26]&&ā[18])])|0,ā+=37;ā);}else{return;}}catch(ā++ ]=false:ā[72]?ā==0?ā[99],ā=true;if(ā[52]));return ā+=39:0;ā[40])?ā[35]);}function ā()]()[ā<=95){if(ā-- ):ā[18]));ā[19]+ā++ ]=[]:ā[146]?ā.length===6)return new ā[20]===ā[52]-(ā<=68?ā[52]!==0?ā]===\"..\"?ā+=203:0;ā,' ')),ā){return false;}}function ā<=37?(ā]+=ā[68],(ā[9]):ā[47]]||ā[11]);ā[9])+ā[52]?(ā<<(ā+=-188:0;ā<=7?(ā:0},ā(117));if(ā+1]);ā[4]]||ā<=5?(ā<=33?(ā[72]];ā[49])>>>0;}function ā+1]-ā[4];return ā(460,ā[9]);}ā[6]],ā[0]=[],ā>>=1,ā[21]];}function ā+1]=(ā[65]]^ā[52])){ā<=28?āreturn{ā[60]);for(ā<=27?ā)===0)return ā[131],ā))return\"\";for(āreturn(ā+=-338:0;ā; --ā[11]&& !ā=false;if(ā[73]?(ā[94]],\"; \");for(ā[130]^(ā[96],ā+=204:0;ā[11]&&ā.x)*(ā[115]^ā='pathname';ā[51]&&(ā<=41?(ā[18]);return;}ā[72];return ā[85]]==0&&ā<=89)(ā[71]](new ā[65];ā[46]);ā[59]),ā=[0,1,ā[14]]=new ā[17]), !ā[59]);ā[9]:(ā,[{\"0\":0,\"1\":13,\"2\":31,\"3\":54}],ā)/(ā(57,ā[61]);}function ā[36]&& !(ā<=45?(ā[94]),ā(109)))return ā<=103?ā[14]];ā[2]]?ā+=24:0;ā();}return ā.y==ā[56]]=ā){this[ā])):0;return ā++ );return ā[2]][ā){return(new ā[53];if(ā[87],ā[83]:0):0,ā);case'object':if( !ā[35]&&ā), !ā>>>1));ā<=47?ā(193,ā[88]]=ā[105])^ā[16])return((ā[88]];ā.y)return true;return false;}function ā+1));else return\"\";}return\"\";}function ā[40]);}function ā){for(ā[69]+ā=[],this.ā[1]);return ā+2);for(ā[24]));ā[24]||ā[54]]=ā.y);break;case 1:case 2:ā+=5:0;ā+=-179:0;ā(0,ā='';do ā[19])))return null;ā]==ā[35]]>1)ā+=9:0;ā[81]]!=ā++ ;for(ā[93]);return ā[49];return ā[90];ā[52]],ā[10]]=ā+=384:0;ā]!==null&&ā[9];while(ā+=289:0;ā[10]][ā[6])<<ā)):0;}}function ā]=[ā.PI-ā.length===7)return new ā[29]];ā;'use strict',ā]||1)ā[18]);if(ā===0)return[];return ā>>0;else return ā[35]]?(ā.length=0,ā=1<<ā[6])===0;ā&& ! !(ā[74]),\"\");ā[67]),ā[91]]/ā<=29?(ā<=78?(ā[64]);}function ā:0):(ā<=79)ā[4]++ :ā[86]);ā-1].x,ā[1]++ :ā();}else{for(ā=String;ā<=70?(ā[90]];ā[19]&&ā-1]===\"..\"?(ā[18]+ā[35]]>0?ā[101]?ā<=76?(ā[35]]>0;ā[25]);return ā=0; !ā<=32?(ā[6]]];return[ā[65]))&&( !ā[89]);return ā;switch( typeof ā<=72?(ā[0]){for(ā[13]|0),this.ā], typeof ā[0])return true;else try{ā[91]])return ā<=74?(ā[18]),ā[18])/ā=Array;ā));else{ā[11]]();}function ā]<<ā]<=ā[86]+ā[8]);}ā[6]^ā<=25?ā[86]?ā[56]),ā+=-334:0;ā[15]&&( !ā[62]);return +(ā[116])||(ā[0]=arguments,ā[18]){ā];while(ā[2]?(ā[108],ā=[0,0,0,0],ā[78]?ā:false;ā:0))/ā[13];}ā+=-145:0;ā<=51?ā[47])===0){ā[34]);ā(109);for(ā++ ;}if(ā[0]];}}}function ā-30:0):0,ā[78]);return ā]='\"':ā[100];ā[100]?ā[127],ā[6]<<(ā,0);for(ā[26]);ā[68]])),ā]>>ā[26]),ā[43]]){case 0:case 3:case 4:ā[4]?(āreturn false;ā[95]);return ā[147]);}}function ā.charCodeAt(0)-97;for(ā[12]]||ā[77]],this.y=ā[84]](ā<=97?(ā[46]]&&ā={'tests':ā]):0;return ā+=83:0;ā[2]):ā<=93?(ā[1]);}function ā[117])):ā+=-6;ā=parseInt;ā):0;if( !ā[3].concat([ā))continue;else if(ā(207,1);ā[18]&&( !ā[91]]&&(ā[25]);}}function ā[11]))&& !ā[13]]||ā()]){ā[58],ā[36]||ā[22]),ā]-=ā-1; ++ā[1])+ā[54]);}function ā)):(ā++ ]={}:ā.y<0?ā<=63)ā;}if( !ā[52]]&&ā[57]+ā[57],ā[1][2]))|| !ā===0)return'';ā)):0):0,ā[7],ā[13])));ā[118]);}function ā]();}catch(ā[27]]){ā){}}return[false,null];}ā+2]));}else ā[1][0]))&&ā[53];ā<=7?ā.x||ā[128],ā[35]?( !ā[58]);}ā<=24?ā)return false;return ā+1];if(ā[90]+ā-1;}else(ā[43]]){case 0:case 3:case 4:case 1:case 2:return true;default:return false;}}function ā[34]=ā<=87){if(ā[11]));ā[42],ā[63]);return ā[25]&&ā[94]];ā[27]](0);while(ā[91]]();else return ā[46]);}function ā[9])));ā[64]);if(ā[74]+ā[33]),ā[19])return false;return true;}function ā.x)+ā,'\\n'));}function ā[44]);}function ā[70]]=ā[78],ā[25]);}function ā[47])):0,ā[78]+ā[95])||[];return[];}function ā(){}function ā[64]),ā[78]:ā+=-90:0;ā[151])/ā]:(ā-1].y),ā[41],'');ā[7]||(ā[6]);else if(ā;}return'';}function ā[6]&ā];return[0,ā[52]);if(ā()];if(ā[73]](ā[13]&&ā[70]+ā<=17?(ā<=19?(ā=':';ā+=186:0;ā[82]),ā[66]];ā.split(ā<=13?(ā]));}function ā++ ]=null;}ā[72]](ā[1][2]||ā[38]);}function ā+=-85;ā[43])+ā[43]?(ā+=-5;ā[0]]():ā[50];return ā<127?(ā++ ])&ā[6]));}function ā)return[true,ā[46];while(ā<=68?(ā[43]){ā(159);ā[0][1]?ā[66]][ā.substr(0,ā)){if(ā(72);}catch(ā===1)return ā<=62?(ā){}return false;}function ā='on'+ā):0):0):0;}catch(ā<=64?(ā[30]][ā<=60?(ā]]],ā++ ];}ā[18]||ā[1]];}function ā[89]):0,ā=[];for(;ā=Error;ā[76])!==ā[62]+ā+3],ā,true);}if(ā[35];}for(ā+3]=ā[36]|| !( !ā[16]=ā[35]]<ā<=66?(ā[16]?ā[12]](0),this.ā[35]]:ā;}return ā[47]):ā[35]]*ā[91]]());}}function ā]='';}ā[61]](),ā[83]);ā[123]&&ā<<1,ā,true);}}}catch(ā<=75?ā[24];case'boolean':case'null':return ā='//';ā[71]];ā[21])],ā[57]]){ā(18);ā?0:1))+ā[48])return 0;for(ā[1]];try{ā<<1^ā[76])return ā[87]),ā[53])|(ā[37]);}function ā[53];return ā[63]]:\"{}\");ā)return true;}function ā[2]]&& !(ā[79]);return ā[12]||( !ā]===0?(ā):0;return[ā[56]);return ā);}finally{ā[2]=(ā=0^ā;}}catch(ā[329]());ā[14])==ā[12]],'\\n');ā[24]);if((ā.substr(1)):0;return ā(new ā]?ā[78]);}function ā[74]];ā]%ā(){if(ā[19]===ā+=341:0;ā).ā[47])?(ā++ ]=true:ā(){ typeof(ā){this.x=ā(156);ā<=81?ā[77]](ā[53]);}ā[77]];ā[22]]||ā[57]]-ā[57]],ā[87]+ā[7]/(ā[49]];}function ā++ <ā]):0):0;return ā[57]]=ā[87]<ā();else if(ā[35]]);if(ā[57]];ā++ ):0;for(ā[4]=(ā<=98?( --ā[76]];ā[68]]),ā<=43?ā[15]);}function ā.length=39;ā[47]],this[ā-1]===ā[81]]+ā[112],ā().concat(ā[9]);return ā[30]]===ā[91]);return ā[2]),(ā[35]]));}}function ā={};if(ā[2];}}}function ā[96])),ā));for(ā[89]],ā,0)):0;}function ā[89]];ā[96]));ā[154],ā);else return[];}function ā]='\\'':ā(65,0,ā[47]):0,ā[47]*ā[47]/ā[47]-ā[83]],ā[26],ā++ ]=((ā[43]?ā[68]]))),ā[61]);}ā[28]];ā[53]](ā.length;return{ā=Object;ā[88]+ā=encodeURIComponent;ā[88],ā[9];break;}ā(96);ā[35]]-1)return ā[6]);return ā[43]:0):0,ā[28]?ā[28]=ā[28]:ā+=-18:0;ā[67]<=ā<=83?(ā){return;}ā[23]=ā[23]?ā[23];ā[23]+ā=String.fromCharCode,ā+=31:0;ā+=96){ā[27],ā[149];for(ā)|ā(77);}catch(ā[3])),ā[27][ā[60]?ā[87]);}ā.reverse();return ā[103];for(ā==0||ā<=35?ā='/';ā(67);ā[60])return((ā[25]:0,ā<=19?ā.id;if(ā[4])==ā=1:0;}else ā=0;}function ā,1)===ā[67]);}ā<=99?ā[64],ā[64]+ā+=220:0;ā.length-2;ā[35]+ā[4])return((ā[12]||(ā[31];}catch(ā[1]||ā[19]&& !(ā):0;}}}}function ā[32]));ā[56]],ā<=50?(ā[28]);}function ā<=54?(ā]instanceof ā+=12;ā]);}else if(ā);return;}ā);}}ā<=84)(ā<=58?(ā+=6;ā.length===5)return new ā[47])>ā[15]=ā()){if(ā<=52?(ā))continue;ā():0;return ā='port';ā.charAt(ā[3]);}catch(ā[75];ā[11]]()/ā[75],ā[11]=ā[11];ā[75]+ā+=65:0;ā[52]);return ā)):0;}function ā&= ~(1|ā[56]);}ā+=67:0;ā++ ];if((ā[9]]=(ā[6])):(ā.push(parseInt(ā='hostname';ā[68];return ā[85]]=ā<=1?(ā(201,ā[30])?ā):0;}return ā[9],unique:false});}function ā===1?ā+=-7;ā[60]]){ā[82];return ā+=299:0;ā[18]=ā[74]]/ā= -ā[20]])return ā+=-82:0;ā,''];return[ā,this[ā++ ;}return null;}function ā-1)*ā[15]);ā,true),ā[0].y):0,ā[51]);}ā[137],ā[4]?ā,value:ā&1;ā[1]=(ā(216);ā[0]++ :ā<=105?(ā[92]),ā[46])<<ā[60],1];ā[12]](0);for(ā[105]):0):0,ā[28])!==ā[92]);ā-1){ā)return false;ā<=2?(ā[88])[0],ā.y)*(ā[38]){ā<=94?ā[3]++ :ā(114);ā<=101?(ā<=8?(ā[35]])===ā<=38?ā[7]?(ā[13]];ā[7])+ā[3]);ā));if(ā[32]||(ā[7]);ā.length===8)return new ā[73]](\"id\",ā[57],{},ā[4]===0?(ā[38]),ā[1][0]||(ā[1])return;ā[92]||ā)!=ā<=90){ā[95]+ā[95],ā[1];if(ā[13]]^ā[13]][ā){case'string':return ā[95]]||ā[69];return ā[31]=ā[58]){ā[81]);}function ā)return false;else if(ā+=313:0;ā(6,ā<=36?(ā[2]++ :ā[67]);}function ā]in ā[48]};if(ā[72]]();}function ā[21]),ā[60]),ā+=-227:0;ā[19]||ā<=6?(ā[42]]('');ā==null?(ā[18],ā+=-221:0;ā<=0?(ā[42]]('\\x00')+ā)return;ā<=30?(ā+=1)ā,1):(ā[46]),ā[48]:1]^ā[13])|(ā[17]]();ā-=2)ā<=4?(ā[84];return +(ā-1,ā-1;ā[51];ā[48]);return ā)return[ā[25]&&( !ā,0)===ā(131);āreturn new ā[13];}function ā[1]===ā[23]&& !(ā===0||(ā[9]), !ā,this.x=ā[29]], !ā[79]),ā[9]];}return[0,0];}function ā[25]];ā){try{if(ā[80],0);if(ā[40]]),ā[92]^ā.y));}function ā(172);ā++ ):0;}ā().getTime(),ā;else return ā.length===2)return new ā[36]||( !ā[0]),(ā[42])return ā[50]]!==ā[8])];for(ā[45]);}ā)? !ā[150]?(ā^=ā[63]]?ā)>0?(ā[2]);}function ā[35];return ā]>>>ā[44]:0):ā.length-4;ā[8]?ā[8];ā[1])==ā[85]]==0){ā<=44?(ā:0;}catch(ā)0;else{if(ā<=42?(ā[29]+ā(){return new ā[61];ā[25]]||ā<=40?(ā<=39?ā[8]));ā[7]((ā[22]+ā[2]&&ā={ā[0]+ā=Function;ā==0){ā[22];ā[22]=ā[90]]*ā[10]])){ā[9]]:0):0;return ā[26]+ā+=49:0;ā[4]+ā){switch(ā[26]:ā);}while(ā[5]++ ;for(ā++ ]));return ā[4].cp;ā[2])if(ā+2],ā+=-84:0;ā[1],1));if(ā===250?ā[33]](this,ā)|0;}}ā[4]=1,ā+96));}ā[10])|((ā[31]];ā[20]];if(ā[30]];for(ā[25]in ā+=-139:0;ā[31]],ā[3]&&ā[1][1]|| !ā[72]](),ā.length===4)return new ā)return 0;ā[60]);}ā+=-54:0;ā[39]],ā[0]]?ā[48]],ā[9]&&(ā[5]|| !ā[0]],ā[48]]&ā[65]];ā[0].x,ā[19]);ā(arguments[ā+=2;ā[8]];ā+=2)ā[55]<=ā[9]){ā>0&&ā[32]&&(ā[4]&& !(ā+2])):(ā]='\\\\':0;return ā[9]];ā[9])if(ā]&=ā[94]);}function ā]&&ā[49]]=ā[49]];ā+=-189:0;ā[20]+( ++ā[47]],ā[97]===ā[19]=ā[56]:0):ā+=292:0;ā[25]));ā,this.y=ā[83]](0);return ā[4]],ā=this,ā+=8:0;ā=Math;ā[1]);for(ā[60]](ā[49]);}function ā<<1)|(ā===''))&&ā[26]]);}else if(ā++ );ā)): !ā()){ā=0;return{ā[42]);return ā[29]);return ā=\"\",ā[83]]===ā[1]),(ā(58);ā+=-6:0;ā[6]);}ā()).ā())/ā[35]]-1){ā<=91){if(ā[9]=1;ā))|(ā[95]),ā[18])while(ā(109)+ā[13];return ā[6]];return(ā[85]+ā[5]);}function ā+=64:0;ā[0]>>>0;}function ā&& typeof ā[41]);}function ā[42]);}function ā[31]);}function ā!=null)return ā[103],ā<=24?(ā[39]](ā[14]|| !ā[60])===0)return ā-=1:0,ā[1]:null;ā[85]);return ā[13]-(ā[31]);if(ā===251?ā[17]);}ā[0][0]&& !ā[4]=0,ā=false;ā<=22?(ā[152],ā[82]],ā[82]);}function ā[1];function ā):0, typeof ā[0])+ā[9]](ā).split(ā=1:0;ā<=20?(ā]|=ā+1),ā[11]);}function ā[58]];ā[45],ā[45]];ā(111);return ā.y||ā<=15?ā={};}ā=Date;ā.charCodeAt?ā[16]),ā={};for(;ā[52]&&ā(34);ā));return ā.length===1)return new ā[10]]){ā){case 0:ā[88]);}function ā[6];}function ā++ :0;}function ā[59]]]^ā]);}return ā<=73?(ā[19]),ā[49]+ā+=349:0;ā[82],ā[82]+ā)?0:ā=1):0;break;case 1:ā(136,ā[47]];ā[78]){ā[9]);continue;}}ā&1)?(ā[8]);}function ā>0)ā[1]?(ā[324](ā<=77?(ā[80]);return ā+=-22:0;ā[57]);}function ā[43]));ā[3]);}ā[41]];ā)||ā[34])));ā]: ++ā[41]](ā[17])[1]||'';return ā[40]],ā[17],0);for(\x00遾(\"r2mKa0\\x00\\x00\\x00[Ƙ\\x00Y[76451'%_\\nS$08L +0\\x008M 10@\\x00 00$\\x000\\x0058N0\\x0081P8T0\\x0088V0\\x008W0\\x008Y:ƒ 0\\x00  +0\\r\\x008 0 +02\\x008 0 +0<\\x008 0 +0 \\x008 0 +0L\\x008 0 8 00\\x008 0 +0\\r\\x008 +00\\x008 +(¢\\x008 +0 \\x008$ . 30]\\x00 +0w\\x00-\\x00\\x00· 7 +0.\\x00 +0 \\x008 +0\\r\\x00I2  +09\\x00 +0\\x008 +0 \\x00` +(ª\\x004 +01\\x008 0\\x007 A 0\\x00  +0\\r\\x00I`< 0\\x00  8 0 R 30H\\x00 +0+\\x0052 0\\x00 +0k\\x00 0 +0<\\x008 0 +07\\x00 0\\x00 +0 \\x00 2\\x00\\x00\\x00 &\\x00'%\\n.<+÷ K΁8  48S΁ +09\\x00'8 +0A\\x00'8F +0&\\x00'8G +0]\\x00'8E +0\\x00'8 +0 \\x0015)4 +0.\\x00*8m  30 \\x00 30X\\x008 30#\\x00\\x00 +0 \\x00 \\x000\\x00\\x008<0\\x008=0\\x008>0\\x008?0\\x008@0\\x008A0 \\x008B0\\n\\x008C0 \\x008D<\\x00 +08\\x00*8  30 \\x00 30\\x008</8\\x00\\x00\\x00Ž/8&b80\\x008 +0/\\x00418&87“8 +0\\x008&\\x00 30#\\x00\\x004@&\\x00 30#\\x00\\x008 +04\\x00 +04\\x008@8&\\x00\\x00g +04\\x002M&\\x00\\x00\\x00 \\x00[0\\x008 I=8&\\x00 8\\x00&\\x00ˆ8\\x0018180\\x0084#18\\x00 +0/\\x008.+\\x0018.$7* ;\\x00\\\"G\\x00\\x00\\x00/1\\\"81\\\"862;\\x00 30 \\x00688\\\"\\x00\\x00\\x00 +0 \\x002LLN8MML 8N\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x000\\x00\\x00\\x00$$$ $\\n$ $ $\\r$$$$$$\\x00\\x00 R 301\\x00&\\x005 +0\\r\\x00@\\x00\\x00\\x00\\x00\\x00´/80\\x008 +0\\r\\x004\\r870\\x00L80\\x00\\x00 +0+\\x00!0M 80\\x000\\x00\\n 8<0N\\n80\\x008 +0\\r\\x0043\\x000\\x004 \\x00f8\\x00 +0\\x00  +0\\x0087=\\x00\\x00 ²&\\x00k8\\x000\\x008&\\x00G\\x00 +0\\r\\x00R&\\x00G\\x00T8&\\x00 30 \\x00&\\x00 30 \\x0058\\x00$18&\\x00)–08/80\\x008 +0U\\x004@&\\x00G\\x008&\\x00G\\x008 +0\\r\\x00RT8&\\x00 30 \\x00827J\\x00\\x00\\x00, . 30\\x00\\x00\\x008 . 10$\\x00\\x008 . 10R\\x00\\x008&\\x00'%\\n.<+ +06\\x000' 8\\\"$\\\" $\\\"$\\\"$\\\"\\x00\\x00\\x00o6j6 30\\x00\\x008O 30,\\x00\\x008 30N\\x00\\x008G0#8  +0\\x00\\x00#8$\\\"< 30,\\x00 \\x008 30N\\x00 8< . 30\\x00\\x00 8\\x000$X0\\x00\\\"80(8\\x00?8.?  30!\\x00\\x00\\x00\\x00!$X0\\x00\\x000\\x00\\x005.?8  30!\\x00\\x00\\x00\\x00\\n\\x00\\\"\\\"\\x00\\x00E +0'\\x008?Ē&\\x00\\\"8 00B\\x00\\x00 00B\\x00\\x00 )0\\x00X\\n +0%\\x00%< +0j\\x00%\\x00\\x00\\x00#6:+ . 10R\\x00 \\x008 . 10R\\x00\\x00 30\\n\\x00 8\\x00\\x00ƒ 48&\\x00 30\\x00=D&\\\"8&\\x00\\\"8(8\\x00& & 30<\\x00\\x00 *& 30<\\x00& 30<\\x00\\x005.?8`>58<& 305\\x00 . 106\\x00' 306\\x00>`86 30!\\x00\\x00/&\\x00!&!8 . -05\\x00 \\x008\\x00\\x006 30W\\x00 \\x005 30W\\x00 \\n\\x00&\\x00 -0\\\"\\x00\\r8\\\"&\\x00 306\\x00\\r\\x00\\x00ã&\\x00 30#\\x00\\x000\\x00C6W\\x00+< 30/\\x008&\\x00`³&\\x006V\\\"\\r8 . /0\\x008 . )0D\\x00'6 305\\x00\\x00>56 30\\x00\\x00>6 10\\x00\\x00>n8 J -0K\\x00''6KͿ>§>΂>Ϳ'6 20J\\x00\\x00>§>΂>ʊ'6 B0\\n\\x00\\x00>§>΂>ͪ'6 30+\\x00\\x00>§>΂>+'6 )0=\\x00\\x00>§>΂>ȝ-W\\x00<6W\\x00\\x00\\x00 20B\\x00\\x00\\x00\\x00 . 10$\\x00\\x00 . 10$\\x00 \\x008\\x00j&\\\"8&\\x00\\\"8(8\\x00&& 10C\\x00\\x00 00!\\x00X & 30<\\x00\\x00 *& 30<\\x00& 30<\\x00\\x005.?8&\\x00&\\\"88.#\\x00\\x00Y&\\x00&O0\\x008&\\x00 30#\\x00\\x004=3333&\\x00\\x0080\\x00\\x000\\x00?Ē< 10P\\x00(8 30\\x00&57J\\x00\\x00J&\\x00N&\\x00\\\"8&\\x005&\\x009&\\x003V•80\\x00\\x000\\x000\\x00&\\x000\\x00&\\x00\\\"\\x00\\x00  +0P\\x00#&\\x00 +0\\x00\\\"\\x00\\x00  +0P\\x00#&\\x000\\\"\\x00\\x00 &\\x000\\x00\\\"\\x00\\x00\\x00  +0F\\x00#8 <9\\r \\x00 +0=\\x00=:c/ 00Y\\x00! 50\\x00! B0\\x00! 20A\\x00! /0\\x00! 20R\\x00! -0H\\x00! -0P\\x00! )0\\x00! )0L\\x00! )0Y\\x00! )0F\\x00! /0D\\x00! 50W\\x00!8 . 30\\x00 \\x008\\x00D0\\x0086 30#\\x00\\x004&\\x006\\x00X &\\x00<\\\"Q+& &\\x00&<&\\x00<\\x00\\x00©  30 \\x00&\\x00& 30#\\x00\\x008 30#\\x00\\x00 +04\\x004 +0 \\x00 10]\\x00&()?Ē3Tii+8&A0\\x00* A&A*3 +0/\\x00 20*\\x00&A -0\\x00A?ͼ&()  +0 \\x00#:?Ē2 +0 \\x00 10]\\x00&()?Ē\\x00\\x00s< 30/\\x008&\\x00`\\r&\\x00&V\\\"\\r8&\\x00 30\\x00\\x00 10;\\x00= h& 307\\x00\\x00 30#\\x00\\x000\\x00  +0\\x00\\x00#K&\\x00 307\\x00& 307\\x00\\x00& 30\\x00\\x00&\\x00JV\\\"83$$&\\x00 30\\x00 ^ 10\\x00&\\x00 307\\x00\\x0058&\\x00 30\\x00j8+&\\x00 30\\x00& 30\\x00\\x008&\\x008?Ē=ƍ& 30\\x00\\x00 4=9 & 30\\x00\\x00?Ē=9& 30\\x00\\x00 306\\x00=ţ& 307\\x00\\x00& 30\\x00\\x00=8& 307\\x00\\x00 30#\\x00\\x000\\x00  +0\\x00\\x00#IJ&\\x00 307\\x00& 307\\x00\\x00& 30\\x00\\x00&\\x00JV\\\"8&\\x00 30\\x00&\\x00 307\\x00\\x008& 003\\x00 /0$\\x0058& 30\\x00\\x00 4=9 & 30\\x00\\x00?Ē=* 30-\\x00 60[\\x005 +01\\x00*9 30-\\x00 10Z\\x005 +01\\x00*  . 50\\x00\\x00A\\x00 /0H\\x00&\\x00 307\\x00\\x00 10Z\\x008 30L\\x00 /0\\x005 30#\\x00\\x000\\x00= &\\x00 30Q\\x008&\\x00(?7PB\\nA*Ĝ3DEE;\\x00 30\\x00 ?Ē2W\\x00; +0'\\x00# . /0\\x00;\\x0058W\\x00;\\x00e8\\\";\\x006-8W\\x00+ +0\\x00\\r6j=9 6L +0/\\x00+6\\\" +6N8;\\x00:8;90\\x008W +02\\x00%W  +0\\x00\\x00# +0<\\x00%W 30#\\x00\\x000\\x00J \\x00 \\x00 +0\\r\\x00Cn868.N  +06\\x00#:n86 30\\x008.\\\"< +0h\\x00%W118\\\"\\n6;6\\n0P)(8W\\x00\\x00\\x00\\r6&\\x006\\nV\\\"\\x00\\x006\\n 4*\\x00\\x00¯&\\x00 30\\x00\\x008  30 \\x00&\\x00.581\\\" 500\\x00 G0#  +0\\x00\\x00#6 6L +0\\x0046\\\" U66\\x008.*8R +0&\\x00\\r\\x00\\x00\\n1>QR\\x00\\x00\\x00C )0<\\x00@ /09\\x00881? 10\\x00\\x00 30\\x00= 50\\x002&\\x00'%@\\n.< \\x008\\r+\\x00Q +0=\\x00*8 30\\x00`@ 10\\\\\\x008\\\"< @ 60&\\x008\\\"$\\\" 1\\\" 8\\\"H)\\\" \\x008\\r\\x000&\\x0081\\\" 8;\\x0005.!81g0P 86)\\\"\\x00\\x00D$\\\"\\n +0 \\x00\\r , 30C\\x006iF , 10&\\x006iF , 10W\\x006iF6 +(¤\\x00)8\\x00\\x00 +0+\\x00\\r\\x00\\x00'&\\x00 30U\\x00\\x008 +02\\x00=9 +0&\\x00= +0\\x00\\r\\x00\\x00 +0/\\x00\\r\\x00\\x00 +00\\x00\\r\\x00\\x005 +0\\x00'8&\\x000&\\x000C&\\x0008Q&\\x00&8R< 8Q1>8R\\x00\\x00$3 . 00\\x00\\x00 . 10\\x00\\x00= , 30^\\x0068\\x00\\x00Ë3ÆÆÆ . 00\\x00\\x00 . 10\\x00\\x00=³  30 \\x00 , 30^\\x00\\x006 +01\\x00=8\\x00V8 )0;\\x00 10 \\x00\\r +0@\\x00\\n , 30^\\x006 00(\\x00 00.\\x00\\r8:9$ \\x00: , 30^\\x00\\x00 30#\\x00\\x0009 .1C\\x00 60,\\x00\\x00+0 )0\\x00)  +0 \\x00#:  +0'\\x00# . 60E\\x00 )0\\x00\\n<\\x00\\x00\\x00./8 R 30\\x00Q5)= R 30\\x00R5)=S)f\\x00\\x00L3EEE6‹8  30#\\x00\\x000\\x00+1g\\\"8U'W0W&ŽH'\\x00\\x00j&\\x00 +0S\\x00 81P8 00(\\x00V 00.\\x00\\r8  30 \\x0066 30#\\x00\\x000 10\\\\\\x00= 50\\x0020 +0\\x00' 50\\x002\\x00\\x00?Ē\\x00\\x00& , 30^\\x00&\\x00 30/\\x00&1\\\" 50)\\x00E\\\"\\r8\\x00\\x00”&9?Ē8S . 30\\x00\\x008 102\\x00\\x008:\\\" 10\\x00\\x00 30\\x00=\\n 30S\\x008< 30K\\x008  30 \\x00&\\x00 30\\x000\\x008:0 )S 30#\\x00\\x008 +0Y\\x0040\\x00 30X\\x002S2S\\x00\\x00\\x00\\x00\\x00<S6  30 \\x00S 30X\\x0080\\x008 30#\\x00\\x004&\\x00\\x00=7\\x00\\x00*&\\x00&\\x00 30#\\x00\\x00 +04\\x00@0\\x00*&\\x0078\\x00&\\x0068\\x00&\\x00\\x00\\x00Æ08& \\x00:(&\\\"8 30#\\x00\\x00& 30#\\x00\\x004\\r +0 \\x0088&8&\\x00:/8\\x00/!8&\\x00)T +0 \\x008)T& 30#\\x00\\x00 +04\\x00a & +04\\x00,l&1oŠ)T&8E8/8)=)7&\\n&8N\\x00\\x00G&\\x00k8&&‘8:  30 \\x00 +0/\\x005E8UW* \\x00\\x00.&\\x00&!8 c80* +0 \\x00*+I\\x00\\x003&\\x00&&&P$8$u\\x00\\x00 Í&\\x00&!8:+c80* +0 \\x00*+I8I8I81o‡8 +04\\x00,l +0 \\x00!8&U¥Kc8I80\\x008  & 30#\\x00\\x004'3 & \\x008\\n\\nO U\\n\\n.F 74R\\x00\\x00\\r\\x00Œ/8\\n/8 '%E<!,8 $ . 10K\\x00,F  ¤ œ   & ¦ : › 8 ; ™ 2 Ÿ ž   ¢ 3 ?6\\n 30\\r\\x006 580\\x008 30#\\x00\\x004\\r\\x00h.%70\\r6 +0$\\x00)8\\x00\\x00B$\\\" 6\\n 30\\r\\x006 580\\x008 30#\\x00\\x004\\x00@8 4 $7&$u\\x00\\x00 6\\n 30\\x00&\\x00\\n\\x00\\x00 6 30\\x00&\\x00\\n\\x00\\x00 6 1Pb)—\\x00\\x00&&6 30\\r\\x00/&!58<6 8&\\x00\\\"\\x00\\x00¡/80\\x008& 30#\\x00\\x004ˆ&\\x0084&\\x00#r3mmmj8)0\\x00  00\\x00O;8:1/8\\n.; 30#\\x00\\x00)0\\x00 ) 00\\x00O,@ 30#\\x00\\x00O)9)T7•\\x00\\x00f , 30L\\x00 10\\x0058 30#\\x00\\x00080\\x00a5\\x00 308\\x00 00\\x005 005\\x00=\\x00 -0:\\x00\\x00 30 \\x00\\x00\\nX< +0 \\x0015)4\\x00\\x00\\x00\\x00&\\x00'%@\\n.<+\\x00\\x00\\x00( +00\\x00'0\\x008  +0%\\x00# +0:\\x008')A\\x00\\x00\\x00\\x00V +0 \\x00t80\\x00t8?$1?8 30 \\x00 10\\x00\\x00 10F\\x00 10L\\x00\\x00B8 )<¶1? 30@\\x00\\x00 30\\x00h0\\x0081? 30Y\\x00\\x008&\\x00 30\\x00h0\\x008=m .1C\\x008 30\\x00\\x008  30 \\x00 10\\x00 +01\\x00*99  30 \\x00&\\x00 30\\x00 +01\\x00 \\n 30?\\x002\\x00< 30\\x002\\x00D 30/\\x001P2\\x001? 10 \\x00&\\x00\\n\\x00\\x00– , 30\\x00 10*\\x0058 30I\\x00 10C\\x00 /0)\\x00- 50O\\x00&\\x008 , 30\\x00 10M\\x0058 30 \\x00<8 10G\\x00&8 30\\x00\\n08.- 30>\\x00\\x00 101\\x00 10 \\x008 , 30<\\x00\\x00 30\\x00\\n 10^\\x00h\\x00\\x00\\x00u&\\x00e8j L +0 \\x00=9L0=9\\nL +0/\\x00=C&/?Ē 9\\nC 30\\x00=D=//<C<0\\x000\\x000P)(&\\x00\\x00\\x00\\nė$X&\\x00N8&\\x00\\\":8&\\x006 +0\\r\\x00% +0%\\x00% +0j\\x00AH +0 \\x008& +0%\\x00#0%,8ša¡£E8&:1188& +0h\\x00#:?Ē8<?Ē8&&&Pr8  .! 0#P 8< 30/\\x008 30?\\x008?Ē8 &\\x00L +0 \\x00=&\\x00G2 a&\\x00/2 ' (< 30/\\x00'&A\\x00\\x00(&\\x00 40\\x00&&Pr8   +0/\\x00.! 8\\x00\\x001˜8&\\x00& 4/!P#\\x00\\x00Æ&\\x00:&\\x00&\\x00 O 30Y\\x00\\x00 30 \\x0005= &:< 30/\\x008&\\x00 30.\\x00 30?\\x0058\\x00/80\\x008&\\x00 30#\\x00\\x004>&\\x00\\x008M?Ē 30)\\x00 30#\\x00\\x0058<  30\\x00\\n7K+82\\r 30\\x002\\n 30*\\x00 30?\\x005\\x00\\x003ŠŠŠ&\\x00?Ē=&\\x00& =9& 4=9 & 10V\\x00 &\\x00e8&j=&\\x00&L +0/\\x00a&.&D=6 30 \\x00&N&\\\"&/\\\\8&L0=< 30 \\x00&G&.\\x00\\x00/&\\x00\\\"$&\\x00\\\":8,8&\\x00Ca&\\x00/&\\x00C\\x00\\x00#&\\x0008+8AA<\\x00<\\x00\\x00\\x00 &\\x00:<­\\x00\\x0061P8T8T<T7T +0\\x00#0\\x00d1¨ +(¦\\x00 +0\\x00 \\x00\\x00\\x00%'8&\\x00' +0 \\x00O04 +0 \\x00)%;\\n.E+6\\\"\\x00\\x00>&\\x00 30\\x006 +0x\\x00*\\r6 +05\\x00*\\r6 +03\\x00*\\r6 +02\\x00*\\r_\\x00\\x00\\x00Œ&\\x00 \\x008.\\x00&\\x00 8.&\\x00 8.&\\x00 8.\\n&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8.&\\x00 \\n8.\\r&\\x00 8.&\\x00 8.&\\x00 \\r8. &\\x00 8.&\\x00 8.&\\x00 8.&\\x00 8. &\\x00 8.&\\x00 8.$&\\x00 +0 \\x0040&\\x000\\\"&\\x00 +0 \\x00\\\"\\x00\\x00&\\x00 +0 \\x0040&\\x00&\\x000\\\" \\x00\\x000\\x00808&\\x004\\n2Q\\x00\\x00 +0\\x008\\x00 +00\\x008 .j&\\x00\\x00\\x00 ,0\\x00<0\\x00\\x00 , 30\\x00 30P\\x005 +0r\\x00< +0=\\x00\\x00\\x00 \\x00: . 30O\\x00\\x00: +0\\x00 +0b\\x00\\x00\\x00U08\\x00 +0 \\x008 +00\\x008 .1C\\x00 30\\x00\\x00 30\\x00\\\"&\\x00&&& && +0 \\x00 +0/\\x00\\\"&\\x00&& \\x00\\x00 +0=\\x00\\\" +0\\x00\\x00\\x00 +0\\x00\\\" +00\\x00\\\" +0 \\x00 \\x00\\x00 +0\\x00\\\" +00\\x00I\\x00\\x00 +09\\x00\\\" +0/\\x00\\x00\\x00 +04\\x00\\\" +0/\\x00\\\"0\\x00\\\"\\x00\\x00% +0\\x008\\x00 +00\\x008 . 10\\x00\\x00j&\\x00\\x00\\x00 . 10\\x00\\x00 +0=\\x00<0\\x00\\x00 , 30\\x00 10*\\x005 +0r\\x00< +0=\\x00\\x00\\x00 \\x00: . /0.\\x00\\x00: +0\\x00 +0b\\x00\\x00\\x00X08\\x00 +0 \\x008 +00\\x008 .1C\\x00 30\\x00\\x00 30\\x00%&\\x00&&& && +0 \\x00 +0/\\x00\\\"&\\x00&\\x00&& \\x00\\x00 +0\\x008\\x00 +0=\\x008&\\\"&\\x00\\x00\\x00 +0\\x00\\\" +00\\x00\\\" +0 \\x00  +0\\x00\\x00\\x00 +0\\x00\\\" +0/\\x00I\\x00\\x00 +09\\x00\\\" +0\\x00\\x00\\x00$ +04\\x00\\\" +0/\\x00\\\"0\\x00\\\"0 +0\\x00#\\x00\\x00\\x00 \\x00!&\\x00' +0&\\x00O04 +0_\\x00)%;\\n.E+ \\x00: 10\\x00;8\\\"$\\\"\\x00\\x00P \\x00+0\\x008&\\x00 30#\\x00\\x008&\\x00)96\\r0%&\\x006)f1\\\"8 +0 \\x00%&\\x00)m&\\x008\\x00\\x00 . 10U\\x00 )0\\x00?Ē&\\x00[\\x00\\x00* . 00\\x00\\x00\\r . 00\\x00\\x008<3  -0)\\x00S8\\x00\\x00/?Ē83\\\"\\\"\\\" . 00\\\"\\x00\\x00\\r . 00\\\"\\x00\\x008< 50@\\x00S8\\x00\\x00\\x00p 10\\x00;8\\\"6: +0n\\x00*8\\\"6\\r0 10\\x006,@31\\\"88\\\"0 10\\x00,@ . 50\\x00 \\x008 . 50\\x00\\x00 . 50\\x00h\\x00\\x00P . 10U\\x00\\x00+ . 50\\x00\\x00 60!\\x008'808/8 . 10U\\x00 \\x008 . /0I\\x00 8 . 20 \\x00 8 \\\"\\x00Æ6:9 , 30\\x00 20X\\x0058\\\"6 30>\\x00\\x00 /0S\\x00 -0!\\x008 , 30%\\x00\\x00 30\\x006\\n?Έ\\\"G /04\\x00\\x00V 10 \\x00\\r8'8 20^\\x00&\\x008 108\\x00&8 -0*\\x0086&866 10:\\x00 )0,\\x00 ^ 30T\\x0058<6 30\\x00\\n6 10:\\x00 B0\\x008\\x00\\x00 ^ 30T\\x00658/8\\\"\\x00\\x006&\\x00\\x008 &6&\\x00^\\x00\\x00&\\x008\\\"0 10\\x00&\\x00,@ +0\\r\\x00\\r\\x00\\x00\\x00 &&\\x00%\\x00\\x00\\x00¨V+8V0\\x00)A K\\x00K8‰ 10\\x00\\x008:+ 30\\n\\x00\\r8  30 \\x00?΃8 10=\\x00\\r8?Ē=  30#\\x00\\x000\\x00  10=\\x00\\r8  30 \\x00 )0\\x00 +01\\x00 9\\n )0A\\x00M9 /0\\x00=8V\\x00\\x00\\x00n . 10\\x00\\x00 30G\\x00 . 10\\x00\\x00 30H\\x00\\r +0'\\x00 58&\\x00 30\\r\\x001>°58\\x000\\x008&\\x00 30#\\x00\\x004\\r&\\x00g7 +0 \\x0015)4&\\x008&\\x00\\x00\\x00\\nü&\\x00 30 \\x000\\x0058 30#\\x00\\x00 +0\\x004+ 10=\\x00\\r80\\x008 30#\\x00\\x0084 Gg 30#\\x00\\x00 +0/\\x0081> 30 \\x005ª0\\x00\\x008W8W 30 \\x000\\x008 +(«\\x00 . 20-\\x00 )0S\\x0058I 50[\\x00 8  30#\\x00\\x0080\\x0084 G\\x00T8 +0\\r\\x00 )4\\x00\\x00\\x0000\\x0081®8$\\r&\\x00' +0.\\x00O040\\x00)%@;\\n.E+$\\\"\\n$\\\"$\\\" $\\\" $\\\"\\x00\\x00q0 +0\\x00'd/ 10\\\"\\x00! 10T\\x00! 10?\\x00! 30C\\x00! 00\\x00! 00F\\x00! 10&\\x00! 10W\\x00! 10M\\x00! 50\\x00!80\\x008 30#\\x00\\x004 ,\\x006 ,F7\\x00\\x00»6: +0-\\x00*8 +0,\\x00*8 %\\x00 30\\n\\x00\\rE80\\x008 L 30\\x00\\x00 30\\n\\x00\\x00 30!\\x001¶58 30#\\x00\\x00 +0\\x00IH8 30)\\x00 E8M +0\\x00#8\\\" +0 \\x0015)4 +0/\\x006)4&\\x00 )=&\\x00W)=&\\x006)j&\\x006)j\\x00\\x007 K΀80\\x00 +0X\\x009 0\\x00 +(§\\x00\\r \\x00:9 \\x00 +0+\\x0000)4\\x00\\x001? 30@\\x00\\x00 60S\\x00M:\\n O8. ,8O\\x00\\x00 . 10O\\x001²58698\\\"\\x00\\x00U\\x00\\x00!\\x00V8$\\\"69\\r\\x00V +0\\x008\\\"\\x00\\x00#0 +0\\x00'6 +0|\\x00)86 +(©\\x00)8\\x00\\x000 +0\\x00' 6 +0M\\x00)8\\x00\\x00\\x00r \\x008\\\"/6!6!6! \\\\!8 \\r \\x00 \\x00 +0\\r\\x00C: 30\\x00 . 10\\x00\\x00\\n/80\\x008 30#\\x00\\x004\\x008 30\\n\\x00\\rE8Q,\\x00E3@@@0\\x0086 30#\\x00\\x004-6\\x008 30\\n\\x00\\rE86\\x00 8\\\"Q;\\x00\\x00\\x00 \\x008X\\x00\\x00(61\\\"<1\\\\\\\"8\\\"69 \\x000\\x00A::8\\\"\\x00\\n 4Y\\\"8\\\"\\x00\\x00v0 +0\\x00'i S . 10O\\x00\\x00)\\\" L . /0O\\x00\\x00)\\\" \\x00:9 \\x00 +0\\r\\x00 A . 00\\x00\\x00)\\\" ¬ . 30]\\x00\\x00)\\\"$\\\"6 \\x00 49 \\x00 +0\\r\\x0060\\x00)A\\x00\\x00\\n ,8. O8,\\x00\\x00I3DDD $ 30!\\x00&\\x00581¯(8&\\x00 303\\x00 9  30\\x005:9 & 4*&\\x00& 8\\\"\\x00\\x00\\x000 +0\\x00' \\x00\\x00$1\\\\;\\x008 +0w\\x0060\\x00)A1\\\\\\\"\\x00\\x00\\x00KZ 4*Z333 . 30\\x001p8 .1C\\x001q\\x0081«\\x0081©\\x008 4 YZ\\x00\\x00 \\x00@0\\x008?Ē80\\x0080\\x0080\\x0080\\x008&\\x00' +00\\x00O040\\x00)%@;\\n.E+E \\x00:$\\\"$\\\" , 30\\x00\\x00! ,1µ6 ,F ,1´6 ,F ,1³6 ,F . 00\\x006,F\\x00\\x00 $\\\"$\\\" $\\\"\\x00\\x007$\\\" $\\\"&\\x00Y)9&\\x006)v&\\x006)v&\\x006)9&\\x006)=&\\x006)f\\x00\\x00\\n +0%\\x000)4\\x00\\x00 &\\x00&\\x00 4 \\x00\\x00:  30 \\x00& 30\\x0080\\x008& 30#\\x00\\x004&\\x00&\\x00\\x00 4 07\\\"\\x00\\x00! .1§\\\"0 .Z\\r1±M0\\x00\\x000\\x00&\\x00)\\\"\\n\\x00\\x00\\\" 8&\\x000)4 +0>\\x00#Y+<&8Y\\x00\\x00\\x00ú \\x00% ,1¹\\x009 ,1·\\x0008\\\" +0>\\x00 +03\\x00)\\\"\\n+0\\x0081s81¿81Ã8/1À!1Â!!8 .1i\\x008 .1»\\x008 .1Æ\\x008\\n1½8 1Å8 ::\\n . 50E\\x00\\x00::1 30-\\x00 -0#\\x0050\\x00 +0>\\x00 +0m\\x00)\\\"\\n   10\\x00 59\\n \\n 10\\x00 5 +0>\\x00 +0E\\x00)\\\"\\n3\\r$08\\\" +0>\\x00 +03\\x00)\\\"\\n\\r\\x00Į .6\\\"8 ,6\\\"80\\x008 .1¼\\x0086\\x00\\r6\\x0008 .1C\\x008 30\\x00\\x008 30$\\x001†(58\\n\\n\\n0\\x00H +0z\\x0041\\\"\\r68 <1\\\"\\r6\\x008 9996\\x009 8\\\"6+ , Z- 0\\x00\\x00 60P\\x00=  30$\\x001¸5 , \\x001¾\\x0008\\\"+0\\x008  6 30#\\x00\\x004# , 30%\\x00\\x00 308\\x006 \\x00508\\\"+ 71108\\\"ą J 002\\x0066 J 002\\x006 -0%\\x00\\x0068F 10G\\x001Á(8 309\\x00\\x00 303\\x00= 30\\x00 309\\x00\\x00 30\\n\\x00\\r5:<Ž6 30$\\x001Ä5:~6 30$\\x001†(580\\x00H +0z\\x00a6 30$\\x001º(580\\x00H +0\\x00a6 30$\\x001Ê(580\\x00H +0 \\x00a\\x00\\x00\\x00\\x00\\x00 \\x0081Ó\\x00\\x00\\x00\\x00\\x00D8'8 \\x001b818 303\\x00\\x00N\\n 10\\x0081\\\" :\\x003 K\\x00\\x00/ , 30:\\x001È51Ñ81Ç8 .\\\"9 ,\\\"\\x00\\x00i0\\x008 -0 \\x00K8  30 \\x00 20\\\\\\x00 30\\x0080\\x008 30#\\x00\\x004\\x00\\x00 4 0R%7'1 K 0 +0.\\x00R%\\x00\\x00† .1C\\x0081y\\x0081d81Y8 30\\x00\\x00 30\\x00\\x00E8\\\"8\\\" . 10O\\x00\\x00 30\\n\\x00\\r 30#\\x00\\x008\\\" \\x008\\\"< \\x008\\\"<\\x001\\\"8\\\"\\x00\\x00\\x00֎3εεε .1C\\x008 30\\x00\\x0081Ö\\x00 4 ¾1‚%1Ð%1x% .1Ë\\\" +09\\x00\\\" <•  30 \\x00 10\\x00 +01\\x00* 1…\\\" \\x001â)\\\"\\n<0\\\" .1G\\x00 .1G\\x001ä\\x00:˜ .1G\\x001ã\\x00:<‰ .1{\\x00 4  . 10\\x00\\x001{\\x00 4  .1á\\x00: .1Ø\\x00: +0;\\x00\\\"

\\x00\\x00 1ó +0 \\x00)\\\"\\n .1ô\\\" +09\\x00\\\" < .1ç\\\" +04\\x00\\\" \\x00 +05\\x00)\\\"\\n<Ƴ .1è\\\" +0>\\x00 +0-\\x00)\\\"\\n<Ƙ .1ì\\\" +0>\\x001ò)\\\"\\n<ſ .1ê\\\" +0>\\x00 +0,\\x00)\\\"\\n<Ť1\\\" +0>\\x00 +02\\x00)\\\"\\n<Ŏ .1î\\\" .1ü\\x00< +0>\\x00 +0U\\x00)\\\"\\n<ĩ6 +0>\\x00 +03\\x00)\\\"\\n<Ĕ .1€\\x00 .1Ą\\x00: +0>\\x00 +0\\x00)\\\"\\n<ó .1ÿ\\x009 .1ø\\x00 +0>\\x001Ă)\\\"\\n<Õ1÷( 30\\x0059 1Ā\\x00 #= +0>\\x00 +0O\\x00)\\\"\\n<©1\\\" +0>\\x00 +0\\x00)\\\"\\n<“1\\\" +0>\\x001ý)\\\"\\n<1\\\" +0>\\x001w)\\\"\\n\\x00 +07\\x00)\\\"\\n\\x001Ć)\\\"\\n<*1ù . +0>\\x001[)\\\"\\n<1\\\" +0>\\x00 +0}\\x00)\\\"\\n \\x00\\\"\\x00\\n&\\x001ă%\\x00\\x00 +0>\\x00&\\x00)\\\"\\n +09\\x00\\r\\x00\\x00 Ǯ080\\x008&\\x00 30#\\x00\\x004Ǘ&\\x00\\x008 00*\\x00 30+\\x00\\x00‚ 30\\x00\\x00 10'\\x00\\x00 10X\\x00\\r 30<\\x00  50\\x00\\x001ą +0K\\x00\\\"+\\x0058 )0B\\x00( 30\\x005\\n +0 \\x00\\\"+<  10\\x00– , 30%\\x00\\x00 308\\x001ć5 10\\x00 -0\\x00( 30\\x00 107\\x00\\x005\\n +0v\\x00\\\"+ 30_\\x00\\x00 30_\\x00\\x00 30#\\x00\\x00 +0$\\x0049 )0U\\x00( 30\\x00 30_\\x00\\x0059 -00\\x00( 30\\x00 30_\\x00\\x0051w\\\"7ģ7Ǥ\\x00\\x00\\n¯ .1č\\x008 .1ċ\\x008 .1i\\x008 .1ď\\x008  303\\x008  303\\x008:: +0>\\x00 +0K\\x00)\\\"\\n::I68'8  00*\\x008 006\\x008 60)\\x008 20K\\x00 , 30%\\x00\\x009 , 30<\\x00\\x00 -\\x00\\x00C .1Ė\\x008 1Ĉ\\\"8 . 30,\\x00\\x00 30\\n\\x00\\r 30-\\x001ĕ5089\\x00\\x00X J )0>\\x00\\x008 .1Č\\x00 4* .1Ē\\x00 4* .1Ĕ\\x00 4* . 10\\x00\\x00 . 10\\x00\\x00 30\\n\\x00\\r 30-\\x001ē508\\x00\\x00:33331\\\"\\r-1ĉL1b81ĐL1b81ĎL1b8:\\x00\\x00\\x00Ē \\x008 83Āăă .1C\\x008 .1ƒ\\x001~\\x001đ( 30\\x001~\\x005: .1ƒ .1Ċ\\x000_<»1| , 30%\\x00\\x00 30>\\x00\\x00/ . 10\\r\\x00\\x00 30,\\x00 30(\\x0058 300\\x008 10\\x008\\x00 +0\\x00)\\\"\\n +0 \\x00\\r\\x00\\x00\\x00\\x00&\\x00'0\\x00O040\\x00)%@;\\n.E+ < 00\\x00;8\\\" 00I\\x00;8\\\" 00\\x00;8\\\" 00;\\x00;8\\\" 10Q\\x00;8\\\"\\x00\\x006\\r0\\x00)A\\x00\\x00…0\\x008&\\x00 30#\\x00\\x008&\\x00)96\\r0%&\\x006)76 +0 \\x00%&\\x006)76 +0/\\x00%&\\x006)76 +0\\r\\x00%&\\x006)76 +02\\x00%&\\x006)7&\\x008\\x00\\x00ˆ \\x00 +0\\r\\x00~66/8\\\"/1p!1Ĝ!1Ġ!1ě!1Ħ!1Ę!1Ģ!1ģ!1Ě!1ę!1ĝ!1ė!1Ĥ!80\\x008 30#\\x00\\x004\\\"3\\x00F<6 30\\x00\\x00\\n7/6\\x00\\x00.&: 50\\x008&\\x00&\\x00Q8\\\" +0\\x00 00;\\x006,@\\x00\\x00\\x00Ɋ . 60;\\x0068 \\x00§ , 30\\x00 30F\\x0058 30M\\x001Ğ8 , 30<\\x00\\x00 30\\x00\\n , 30:\\x00 50,\\x0058 10A\\x00\\x00K/808 10A\\x00\\x00 B0\\x00\\x004 30\\x00 10A\\x005\\n7, \\n 30 \\x00 30\\x00?·)\\\" , 30<\\x00\\x00 30 \\x00\\n<Ɠ19‡ , 30\\x00 30F\\x0058 +0\\x00*8 30I\\x00?Ά 001\\x00- 30M\\x00 50I\\x00C -0>\\x00A 30\\x00C 60\\x008 , 30<\\x00\\x00 30\\x00\\n0\\x0088 . 30]\\x00 \\x00 +0\\x008 <ć3ĂĂĂ\\x00ğ8\\n1ĭ8  1Ī 30.\\x00 30X\\x0058 , 30\\x00 30F\\x0058 30>\\x00\\x00 101\\x00 10 \\x008 30M\\x001Ĩ8 , 30<\\x00\\x00 30\\x00\\n 00T\\x00\\x000\\x00\\x008\\r\\r 00\\x00\\x008\\r 00&\\x00\\x0080\\x008 30#\\x00\\x004A\\r 30>\\x00\\x00 20U\\x00 \\x008\\r 00\\x00\\x00*9 \\r 00&\\x00\\x00*\\n 30\\x00 \\x00\\nQN \\n 30 \\x00\\n 30X\\x00?΅)\\\" , 30<\\x00\\x00 30 \\x00\\n\\x00…3>>> , 30:\\x00C58 10(\\x00\\x00 303\\x00= 10(\\x00 -0@\\x005 10(\\x00\\\"8\\\"\\\"76961[0  30 \\x00 .6 - , 30:\\x00 001\\x005 , 30<\\x00\\x00 30 \\x006\\n\\x00\\x00æ3ááá , 30\\x00 10\\x0058 10!\\x00\\x00 10[\\x00 +0:\\x008 10J\\x001[8 10!\\x00?ͽ58 30\\x008 50 \\x00?~8 20\\x00 60 \\x008 10H\\x00 /0 \\x008 B0 \\x000\\x000\\x00 +0\\x00 +05\\x00_ 10H\\x00 -0 \\x008 007\\x00 +00\\x00 +04\\x00[ 10H\\x00 20!\\x008 007\\x00 +0\\x00 +0\\n\\x00[ 00N\\x00\\rQ\\x00\\x00\\x00̎3233 , 30\\x00 10\\x0058 10!\\x00 60\\x0059 10!\\x00 50R\\x0058+3ʽʽʽ/8 60\\x008 60]\\x008  20/\\x00\\r8\\n -0&\\x00 00\\x00\\x00\\n- . )0\\x00/ +(£\\x00! +0o\\x00!0\\x00! +0f\\x00! +(¥\\x00!0\\x00!0\\x00! +(¡\\x00!0\\x00!8  -0^\\x00 00\\x00\\x00  -0L\\x00\\x00[\\n 00\\\\\\x00 +00\\x008\\n 00 \\x00 +00\\x008 )0+\\x00\\r8  00A\\x00 00%\\x00\\x0058\\r 50\\x00\\r- 10I\\x00\\r\\n 00A\\x00 00_\\x00\\x0058 50\\x00 - 10I\\x00\\n 50\\x00 \\r- 50\\x00 - 50\\x00 \\n -0\\x00 \\n 00\\x00 20 \\x00 B0\\x008 009\\x00 -0A\\x00 -0E\\x008 -0J\\x00 -0Q\\x00\\x00\\n )0-\\x00 00\\x00\\x00\\n 00\\\\\\x00\\x00 )0/\\x00\\x000:0\\x000\\x00_ -0\\x00 009\\x00\\x0000[ 204\\x00 B0\\x00\\x000\\x00\\n 00 \\x00\\x00[ 10\\x00\\x00j* 30\\x00 10\\x00\\x00 00N\\x00\\r\\n$ 00'\\x00\\x00µ/ 00%\\x00\\x00! 00_\\x00\\x00!8/ )0.\\x00\\x00! 60:\\x00\\x00! 20\\x00\\x00! 50Q\\x00\\x00! 50%\\x00\\x00! /0\\x00\\x00!80\\x008 30#\\x00\\x004S0\\x008 30#\\x00\\x004< 00'\\x00\\x00\\x008 30\\x00 20\\x00\\x00 /06\\x00\\x00 20E\\x00\\x00[7I7` \\n 30 \\x00 30\\x00Q_&\\x00ZY  30 \\x005=I&\\x00\\x00 30\\x00;6 50D\\x00&\\x00\\x0058 4*\\\" 304\\x00= +(¨\\x00a: 6 30\\x00\\n\\x00\\x00M6 50B\\x00\\r80\\x008 30#\\x00\\x004.\\x0086 60\\x00586 30\\x00\\n\\\"7;\\x00\\x00\\x00ì . 60\\x00\\x00 20<\\x00\\x00 20\\x00\\r8/ 00=\\x00\\x00 4 \\n 00=\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 00:\\x00\\x00 4 \\n 00:\\x00\\x00<?Ē! 00D\\x00\\x00 4 \\n 00D\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 00\\x00\\x00 4 \\n 00\\x00\\x00<?Ē! 10>\\x00\\x00 4 \\n 10>\\x00\\x00<?Ē! 00-\\x00\\x00 4 \\n 00-\\x00\\x00<?Ē!\\x00\\x00\\x00в/8 .1C\\x008 30\\x001Ķ\\x00\\n 30\\x001Į\\x00\\n 30\\x001ĩ\\x00\\n 30\\x001y\\x00\\n 30\\x001ij\\x00\\n 30\\x001ı\\x00\\n 30\\x001ĵ\\x00\\n \\x001b8 30\\x00\\n 30\\x001\\\"\\n 1b8 30\\x00\\n3 \\n1\\\"\\n8 ?Ē8  30\\x00 \\n/8 /01\\x008 , 30\\x00 )0@\\x0058\\r\\r\\r 30V\\x00\\x00 \\r 30V\\x00\\x00_? 30.\\x00 10\\x00580\\x008 30#\\x00\\x004 30\\x00\\r 30V\\x00\\x005\\n7) 30\\x00 \\n/8 )0$\\x008 , 30\\x00 50'\\x0058 30V\\x00\\x00  30V\\x00\\x00_? 30.\\x00 10\\x00580\\x008 30#\\x00\\x004 30\\x00 30V\\x00\\x005\\n7) 30\\x00\\n . 30B\\x00\\x00 . 30B\\x00\\x00_œ/8 60H\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 20,\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n/8 -0\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 -0\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n/8 )0\\x00 30.\\x00 10\\x00580\\x008 30#\\x00\\x004< 30\\x00 . 30B\\x00 20\\x00\\x00?ͻ\\x00 \\n?;\\x00<?Ē?΄5 10,\\x00\\x00\\n7I 30\\x00\\n6 30\\x006N\\n 1b8 30\\x00\\n6 30\\x006N\\n6 30\\x006N\\n 1b8 30\\x00\\n 30\\x001s\\n1\\x0091ī\\x009 .1\\x00::8 30\\x00\\n 30\\x001Ĵ\\n1ħ8  30 \\x00 30\\x0080\\x008 30#\\x00\\x004 30\\x00\\x000<0\\x00\\n7+ \\n 30 \\x00 30\\x00Q$3&\\x00&\\\"9&&\\x009 &\\x00 10\\x00&5\\x00\\x00\\\\  30 \\x00&\\x00 30\\\\\\x008 .80\\x008 30#\\x00\\x0004\\x00\\\"8:Q* 30#\\x00\\x000\\x00\\\"\\x00\\x00\\r3&\\x00&\\x00j\\x00\\x00w/86 501\\x00\\x008`0\\x008 30#\\x00\\x004N\\x008 \\n 30 \\x00/ 30 \\x00\\x00! 105\\x00\\x00! 20\\x00\\x00! 50-\\x00\\x00! 30\\x008 30\\x00\\n7[\\x00\\x00g/861q\\x008R0\\x008 30#\\x00\\x004@\\x008 30\\x00 \\n 30 \\x00/ 30+\\x00\\x00! )0\\x00\\x00! 105\\x00\\x00! 30\\x00\\n7M\\x00\\x00l0\\x00861d\\x00 30\\x00  61d\\x008<61Y\\x00 30\\x00 \\n61Y\\x0083 , -0\\x00 60Q\\x00\\n88 )0N\\x00 .8/!!!\\x00\\x00}/83LL 60^\\x00S 30\\x00 00 \\x00\\x00\\n 30\\x00 60\\x00\\x00\\n 30\\x00 105\\x00\\x00\\n 30\\x00 )0\\x00\\x00\\n3  . /0#\\x00 /0&\\x00F 30\\x00 00 \\x00\\x00\\n\\x00\\x00 Ǧ6:?Ē/8 .1į\\x008 30\\x001D\\x00\\n .1İ\\x008 30\\x001D\\x00\\n .1IJ\\x008 30\\x001D\\x00\\n .1Ĭ\\x008 30\\x001D\\x00\\n .1ĺ\\x008 30\\x001D\\x00\\n .1ĸ\\x008 30\\x001D\\x00\\n 30\\x00 .1Ĺ\\x00\\n .1C\\x008  30\\x00 30\\x00\\x00\\n 30\\x00 1”\\x00\\n 1”\\x001Ľ\\x00\\n 30\\x00 1’\\x00\\r 1’\\x00 30\\n\\x00\\r\\n 30\\x00 1‰\\x00\\r 1‰\\x00 30\\n\\x00\\r\\n 30\\x00 1Ł\\x00\\n .1ļ\\x008\\n 30\\x00\\n1Ŀ\\x00\\n 30\\x00\\n1Ļ\\x00\\n 30\\x00\\n1ķ\\x00\\n 30\\x00\\n1ŀ\\x00\\n 30\\x00\\n1ľ\\x00\\n 30\\x00\\n 10J\\x00\\x00\\n 30\\x00\\n 10[\\x00\\x00\\n 30\\x00\\n1ł\\x00\\n6 30*\\x00 30\\x005Q8\\\"6\\x00\\x00«6:$\\\"6:1\\\"8\\\" +0\\x00 00I\\x006,@6:1\\\" 8\\\" +0\\x00 00\\x006,@6:96:9 00\\x00;:N1\\\" 8\\\"1\\\" 8\\\" +0\\x00 00\\x006,@ +0\\x00 10Q\\x006,@666 +0\\x00 00\\x000,@\\x00\\x00\\x00\\x00\",ìëíîǷȞïð\x00kãäåæçèéêşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſƀƁƂƃƄƅƆƇƈƉƊƋƌƍƎƏƐƑƒƓƔƕƖƗƘƙƚƛƜƝƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿǀǁ(µ$¶&·º¸eĆg¹kºm»r¼uȾÉÆÊÉ×ÑØÔّیÜ{Ý}ހ߅óƔ[Ò(³ê+Óy3Kº¾uròòñS¾`6»òòñ]Íò“5 ™ƒ&òYUáò–o•òFH<òÐ\ròaXœò›cò”Ü z&òY} ð¬&òYeÝò¯v&ސ\x00òëMÕòòò|=òÉ9òQ.lòq¦&Þs£òª¾ BTòñ_ - &òYï:ò{×Pò„àòÖ°ò¥ã¾V/òòñÌòµŠò´…¾OËCòòñ#¹&ނ ÅÂ&òY1ò橾ێTòÁñ;dò†Çhòjâòb¾^2Tò7ñí ¨ &òYtòÔ!‰òx¡4òÈk wÑ&òY‡«òRZäòʟ$ò½î 0&òYéÀ&ÞÄ*ò'~¶ò˜>ò\nÚ¾šˆTòÎñ‘Ïò—Gn&Þi)ògDòJ\\¾ØI€òòñìÙò‹LN&Þç ò’§¸?E¿¼¤Æp\"@8,&Œ­žf%A³®±·èW¢måß Ĺ.ñ\r\x00 \x00\n\x00 \x00 \x00\rĈ\n)Šʨ ظ \rz\r \r0 ƫ\r\n ̺ Ӡ  \x00 Ω  ̎ ξ ڴ  \x00 ҭ  ا\n  :şʛ\n%ò\rɂݱĠó\r\x00 \x00\nƞ\nބ\nȺ\nࠡ \n\n\nq\nƼ :Ġô\r\x00 \x00\nƞ\nࡐ\nȺ\nϤ \n\n\nq\nƼ\nے\nە\nࡶ\nˉ :Ġõ\r\x00 \x00\nɂ „\n\n Ž\n࢙ ޲\nɾ\nεşʛ %öNnñࣳš݂ƕūȔŨğƢŨڍŨɏƕƢ÷ƐŬߺŬٺƕū،ŨțƐƕżñūљƢŨȻũɏżƢ óŬ؍I.\n õŬȚ ƩóŧڥƐƩū࣑ƩƐ oóŭڈ\r óŬ˘ õŭՌ òūࣘ ôūʯ óŬƧ òŬʐ óūܘm.ƃŦ࡬ūƷƩũ̮ŪࠣƃƩ% ôŪǿø óũ̏ ñŪœƧòũĒơòŪުƧơƩòŨҡżòũ׼ƩżƢŪɥŪӋƃŬڃūࡍƢƃ ôŮһ òũʯ òŬݰm. ñũȌ ñŧȘƕóŮDžƧŪऑũ޴ƕƧ ôŮܭùƩūîũëƧòŪհƩƧ!ơòũžżôŭ۾ơż\" ôŬʻ# òūٗ$ƕôŬȦżóūȤƕż% óŭ̦m.& óūȘ'ƐóũزƧõŪDŽƐƧ( ôŨƅ) òũࣔ* óŭ˘+ƐôŪǁƢôŬˌƐƢ,ƃòūऐƕóŪࣁƃƕ-ơòŬүƢòŦЊơƢ%. òŪɘ/oôŭࢊ‘.0ƧóŬ࠴ƃũܝŬҏƧƃ%1 òŬӶ2 òŭĖ3ƃóŬࠝƕòŧडƃƕ4ƧòŭٓżŧӻŪӏƧż5żŬżūëƐóŪǧżƐ6Ɛñũ˪ơõũݙƐơ7ƧòŬȓƃóũبƧƃ8ơõũǠżòŭǦơż9 òŭࡆU.: òūư; ôŭɘ<ƢóŭǁƃõŭܶƢƃ=żôūɗƃòūؔżƃ%> òŬŒ? óŭø@ ôŬĖA óŮɲB òŭऊCoôŭȞa.DƐũϜūȇơŭ֖ūɅƐơE õŬưF òŬŃG õŨĸHƢóŭśƩôũȡƢƩI òŪʫú õŪƅJ õũլKƕñūڐƢòŪЩƕƢL òūथm.û õūޏMƩŭʼnũȄżŬۑŨԛƩżN òūɲO óũǽP ôūࢸQƩŮĀũtƕôũȤƩƕRƕõŭɜƧŪݓŭࠁƕƧS óŬȑTƃóŮࠎƕŪޅŭڳƃƕü ôŪԝy.U ôūƧV òŪōW ñŧࢤXƕòŨ̓ƧŧٴūѴƕƧY óŭŃZ òūǞ[ƃôũίƩôūˌƃƩ\\ƧõŧЏƐóŨȡƧƐ]ƃõū˪ƕóū׷ƃƕ^żóūǴƩôūࠧżƩyy._ ñŮࡌ`ƃòūȓƢťʼnŮȜƃƢýoñŭȚaơóŪ۳ƃôŬǧơƃb óŭŒcơôūѥƃñŭDŽơƃdƩôّƢŦʼnŨƪƩƢe óŭ܊fƐñŬסƢŮϖŪțƐƢg ôŭВI.h ñŨʐi óŭࠊj ñŬȖkƐóūȦżũऔŭӔƐż%l õũڀm òŪȑn òŬ࣮þ òūणo ôūƮp óŭӆa.q ôŬȌr òŬϛs òūڭtƕŭݥŮƇƃòŨٻƕƃuƕòũȋƩóŪβƕƩv óũ̌w òŭƧx òūĿyƃŬłŭɩƕñŨࣣƃƕzoòŨȞI.{ õŭǞ| õŬѬ} òŬҎÿoôŬђ~ ñŪ۵ ôŬ˂€ òūʌƢòŪڄơŭěŭɅƢơ‚ õŪࣸƒ ñūࣧU.„ ôūœ… óŨǿ†oóŬڋ‡ơŨʼŧȄƢõŮϕơƢˆoóū˽‰żũƵŧŖƩŧނŭȠżƩŠ òŭȖ‹ óŪь òŬك ôũޭ‘.Ž õũŒƧñūƒơŪࡡūӇƧơƐõŨՏơŭڠŧԽƐơ‘żóŬёƩôūۺżƩ’Ƨòŭ؅ơŪծūϢƧơ“ƐòūFơūӓŭ̩Ɛơ”żŨͶūĵƃòŭࣀżƃ•ƃũ࣓ŧŖƕūȻŭȜƃƕ– ôũĖĀoòūٰm.—oñūō˜ ñŬƮ™żõŨ‘ƧóŪրżƧšơòũߕżŭżŬ۶ơż› ôū˙œƕū࡙ŬаƃóŮϨƕƃżŨłŧųƃŨިŬցżƃž óŨĿŸ õũʫ  óŪݿm.¡ ôŪ̚¢ òũࣚ£ òŬǽ¤ ñŬץāƕòŨՃƩòŭЙƕƩ¥ òŭजĂƕôŪ͑żòŮѐƕż%¦ƩũĀŭųƢòūӟƩƢ§ƕŨłŧųƩõūضƕƩ¨ óŬݎU.©oóŭƅª óũ˂«ƃóŮ̵ƢŪٞŨȠƃƢ¬ òŨōă ôŮи­ơôŭӅƃŬƵŨχơƃĄ óŧࠄ® ôŬĿ¯ ôŪĸ° òŨߌÉ.± ôũ׎² òũœ³ óũʌ´ ñũĸą ôŨʻ9ƠťŒęŢ࠭ć ƞťԡĈ+\x00ƞťНİťЌťΫźEťŦࢲŦźŦʈŦ˞źĹ%½\r\x00 \x00\nť_źÂťƒťԲ  ť/ I\n eĭ\n\x00ļƁť\n\x00ťɨĉ+\x00\x00 \x00\n„  Ţú I D\n\n ޙ\n$–छŢԳ΄գ ۝yʅ.Ċ\r\x00 \x00\n\x00 Ä,ťÊīaź˃æQź˃æĉÇ ܁Ţˤ\nťƣ  \nØ # 7ŢѻÏ ] ڵŢ࣒ ]Ţԙċ\x00\x00 \x00\n*ťՓť—\x00 \x00\nPۄ\x00Ũˆ\x00 ãČ\x00\r \x00\n ťƣ\n\n \nƕ\n†۸č\x00\r D j0  š¾\r\x00 \x00\n\x00 ťV )Šù\n\n \n$ ƀť\x00\n\nŢ̈ & 6Ţݣ \nƨź­ť\x00\n \nź­ť\x00\ngźhť ƋĎ\r\x00 \x00\n\x00 \x00 źÂť\x00Ũ֒ťщD z ť/ I\n e\nťɛŢ࢛ Ɓť\ncރ ƞŧ˄ \x00ŢڜŢҰ  ;Ţѹ ſŧJ ĘƁť\n\x00Ţच Ũײ ɔźhťƋ¿\rչ\x00ĎŔ-nź֟ť%ď\r\x00 \x00\n\x00 \x00 \x00\rࣂ į\x00ťþ ťZŢª ϙ\n ƜťĄťȟ \nťV\n ܰť߷\n ױ\n Ɵ ܧ  Ø\n ԃ ß\n Ɵ Æ ޻\nťå ࠜ\nťå ࠤރ ӹ\n †ťΞ ß\n Ɵ Æ\nťå ч i\rźhť\n\x00ťȟť׳\rťĻƲ\rĐ\r\x00 \x00\n\x00 \x00 \x00\rťV \n ť۟Ţ_\r)Š Ŕ 0  ”\r\nS 7ŢkŢA\r\nS 7ŢbŢA\r\nS 7Ţ[ŢA\r\n Ţʞ\rđ˥7ŢkŢʇ7ŢbŢʇ7Ţ[ŢAŢֶǯ.Ē\r(ŀgࣖē+\x00ƒŮ࡜ƒũࢀ*ź•ťu'ŮӪ'Ũč'Ŭ۲ڙÀ+ƞŦѣť؃ƞŦşťٿȞƴĔ\r\x00 ʚ-ťʑ„  ť/ $ť\"ƀť\x00 आĕ\r\x00 \x00\nį\x00ťߟ źƉť\x00ťҔ 'ŢΚ\nźƉť\x00ť܆\n,Ţƌ\n Ƹ ťݘź•ťƁť\x00 ΆĖ\rŎĕgČ\x00źޢ Ԇė+\x00\x00 \x00\nƒťƄŪɗû ť֭ BťŤťڂ  ΏźɯźƾŢϺĮ \x00ť׻Į \x00ťպ\nś gğ \x00\nЯ߇Á\r·'Ɲ́,ťމťࡪωĬaśբ4Ƙ4Ž Ƙėޟğ\x00ѰĘ+ıŢ΃ȩƱƱŦ߃ƱŦʆ̂ƪŦˡŦڎę\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00ť܎ \nŦࡰ\nŦށ Ę  2\r ߼ *ģł\nƋƋ ÿ eڷδ\r˶ \rť/I\reťۘŢ˷ࢅΝ Ķּ\nɠ)Ʀєťȧ͙ƽ٨ӿ.Ě\x00\x00 \r\n\x00 \x00 \x00\r\x00\nę\x00\x00 u\n؂ ıŢ֨ * źÂť \x00ťࣥ ťŠŢࢢ ηūङ\r)ƦźÅť ࡸ\rťȧļźɦ ЫĊʉťͯ ࠮źɦ ˯ۃěʅŢݟ;ŢؕŢо;ŢֵĜćŢ࢚;Ţ٥ĝ\r\x00 \x00\nƀťнěԫ  ť/ I\nƀť\x00 uě\nधĜ\nšŢࢫ\nšŢӿ\nšŢ̬\nىŢ͜\nnź•ťźÅťc իĞ\x00\x00 \r\n·'ťǖ'ťފ,Ƌ͠\nĝ u\n\n'ťǖ\n'ťڅğ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\nO\nC\x00\nr\nG\n5\n9\n3\nN\n\"\n/źʗ\nDĉ\n6ĉ\náźׄĭ\x00Ɖࡇ Ƙ Ƙr\nLŢО ć  Ɗħ & ß Ƒ†ťˋ ťƯ Ƒ†ťŜ ť՟,źٯ Ƙ ƘrĈז\rƒťģťρ\rƚ\x00\rƚ\rƚe\rƚŭźաĮ\rƚŬԤ\nLŢƪ\ny\rƑe,Ũߡ\nLŢͦ\nٜĞ\x00ź2\nCö\nLŢƪ\nyźEť ƑƤ\x00 ƈƋ\x00 \nŝź­ťࠪƇ ź­ťݾƇ5¦źÅť\x00Ţ࠱ Ƙ \rƚźEťƘ5\x00Ƥ\x00!\rƚźEť ƑƤ\x00ࢽ Ƙ \rƚźEťƘG\x00!\rƚźEť\x00Pĭ\x00ťՆ Ƙ  \rƚźEťƘG\x00ƘN\x00!\rƚźEťƘG\x00ŜƘN\n!&ĭ\x00ť޸\rƚźEť\x00 ƌ!\rƚźEť\x00Ŝ ƌƔÿ\n5\rƑ\n9\rƈ\rƊ†źӊ\rƊۼ\rƑ†ťˋ\n3ťƯ\rƑ†ťŜ\n3ťФ\n3\rƊź­ť\rƌѡƇ \nNźEťƇ\x00\rƌf\nN\rƌ\n\"\rťܽ\n/\rŭ࣭\nGźEť\n5\x00Ƥ\x00\n9\x00Ƌ\x00\n3\n\nrźEť\nG\x00\nN\x00\n\"\x00\n/\nźEť ŦܜƋ\x00 \nźEť\n9\x00Ƌ\x00\n3u,&Ě\n5\x00\n9\x00\n3ö\n6'\x00źEť\x00\nN\x00\n\"\nźEť\x00 ƌźߴ\nD,\x00\náď\nNuĖ\nNö\nLŢҕ\ny \nLŢϗ\nL-ŢƆ\nLݼ\nLŢ̓*\nLŢϷ\nĠNƱƱť˺Ʊťػ¨ǂ\r\x00DŽƦŬȕť̙DŽрŧîƂť\x00\x00 Ęŧ࣯ \r\x00 DŽ ƀťҠ ̊źÅťŪʼ ť¹ŢžŢطǃ\r\x00 \x00\n\x00 ׽߿ǂѶƅÞſ!ŧۨſՠnŧǢ ƆťϿ\n\nЭ ,ŧ׿ ť/ࠛ\nǃɹŨ˾źhť\n\x00ťɕŧ۔ j0ƓťxŦцť\x00 Þ\nť\"ǂ ĘťȔǃ ՙŨɥźhť\n\x00ťɕŭϵǃ%ÂܓưȮťʺư˛ġ9ƠťˆƟƻ%Ģ\r\x00 )Š\n û 0 ġŢ˸yЗ.Ãǂ9MǂŢϽǂŢ߫Ţ޾ǂ‡Ä\x00\r \x00\n\x00 ͹  X ť˚ ͌ É ̭ \x00\n    \nM ƠťˆƟƻŢٍÅ+\x00D;ŢŸ$ƺŢ˼ ƻť/$ƀťƻϰƵHŢ©ƶŢ_ƷýŢËŢ_ƸŢ©ƹýŢŲŢºƺģ\x00\r \x00\n\x00 \x00 \x00\r\x00Ä,ťÊīa&ƻ\x00\n  ťV )ŠƠťΤ =Ţ݇Ţ̨ ť›Ţև\n 0\r\n”  \rŢĪ\n”  ň\rŢŲŢǭŢƹ\r\n”  ňŢËŢЦ\rŢ۫  \rŢɳ\n ťכ\r\n  \rŢĪ\n  ň\rŢŲŢǭŢƹ'Ɲ  ÏŢËŢ࡫źhť ƋĤ\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00ĕѿ߸ťʑťV )ŠƠťˆ=ŢϦŢȭ3Ţι Ø\nƀť\x00} ƀť\x00} ƀť\x00}\rƀť\x00} Ƶ\nÁƶ  Ʒ ÁƸ  ƹ Áƺ\rž 5\nƀť\x00} ƀť\x00} Ƶ\nÁƶ  5 ƀť\x00\n Ʒ ÁƸ ܡ ĥ\rĤgĨ%Ħ\r\x00 \x00\n\x00 \x00 \x00\r ťV\n)Š ʨ ƀť֪Ţќ \rz\r \r0ƀť\x00\r\n`ŢΦ Ţӑ \x00`ŢƳLŢࡏ`Ţۤ ŢѼ \x00`ŢŜLŢࢭ`Ţͫ Ţӣ \x00`ŢҲLŢݚ\n :şťũ\n%ħ\r\x00 \x00\n\x00 \x00 ( ƀťťभ  ťІ\n \n Ţݯ \n\n Ţۚ  \n Ţञ –\nŢÙŢƓ ŞŢƏ Æ\n Ţش –\nŢËŢnj ŞŢÙŢƓ ŢːŢƏ ŢԊ\n ŢЈ –\nŢߖŢࡾ ŞŢÙŢnj ŢːŢÙŢƓ Ţ࢒ŢƏ Ţҳ\n ŢΖ  \x00 Ţ۞\n Ţࡈ  \x00 Ţف  \x00 ° 6Ţߩ LŢƷťG ŢگŢԉ áŢ΀Ţلť\" gĨ9ĩħãĩ\x00\x00 \r\n\x00 \x00 Ǩ ,Ɲ ť˰\n)ŠƏťÀŢܻ  3ŢԴ û 0\n şťũťJ\x00Ţ݀ \n şťũťJ\x00 Ȱźhť\nї̩.Ī9ƭƨãī\r\x00 \x00\n Ī\n\nťV)Š\n\n\nLŢʜ \n0 ƀť\x00 } ƀť\x00 } ƀť\x00 } ƀť\x00 ࢼ\nŢʜ \n0 ƀť\x00 ՚Ĭ9Ʋ Ʋť!Ƃť\x00ƦŪtť֛ĭ\x009źÅťcťߧĮ\x00\r ĕ@ߝ źÅťcťЄź•ť Űź•ť%Æ\x00ӡ@ٲź•ťŰź•ť%į\x00\r  ź^ť\x00u ,ŢljϡƁťc \nƁť\x00 Мİ\x00\r  ź^ť\x00u ,Ţlj߅Ɓťc \nƁť\x00 ֢Ç+ǂ\x00ǃ\x00DŽǃDŽODžǃŚoXlԒDŽ\nǂDŽ\nźٷ \x00ź̇\nM+Lj\x00\x00 \x00\n\x00 Lj„z ŢŸ$Ljťů‡~…Ljťů‡ŢºŢְLjťů‡Ţ̐֩\rD Ljť/ƕ‡;Ljė‡*LjťåcޔLjť\"ࡱLjťռ Ljť¼Ţƒ\n 2  ?LjLjťJރr‡\n‡ ‡\x00[\n\x00 ϹLj͝Dž\x00\x00 *ࠔDž[Śooۥllɮ \nDžŚoǻoΊllɮ  \rDjȩėl`Ţʵėoɢėl3ŢĖdž\x00\r \x00\n\x00 \x00 \x00\r\x00 (\nťV  \r\r \n\rI\rœ # Hlݫo\x00 lυ `Ţ׏ ť\" ɢ 3Ţť θŢح 3Ţť LŢ؟ Ƭ ťG ԏŢג ࣍ǂ Ȱ LJ\x00\r \x00\n\x00 \x00 \x00\r\x00 (\n\x00 ťV \r I \rםŢڸ\rझ \r \n\n\n\n[\x00\rԠ\nƖ ť\"\n\n\n޹  9dž\x00DŽ%\n9LJǃ\x00÷ı\rźƗenĩ¥׹.IJ9źƗšij9ƔĩźƗکĴ\x00\x00 \r\n\x00 \x00 \x00\r\x00\n2 ? \rŢʙ Ţ̉$\n#\nɺ HŢé ŢċŢĬ ]  Ï ŢðŢ» # \rĚŢ» # ɺ\nHŢé\nŢċŢĬ\n]  ʲ Ţ˫ŢʓŢðŢāť\"\n\x00 %ĵ\x00Ɋƛ2ǝیĶ\x00\r \x00\n\x00 \x00 \x00\r\x00\x00ŀ\n ƠťˆťÀޑ ( (\rŢࣤťēޑŀĢŢť ťߘ\n\n \n$ ť\"ŀťJ\n=ŢĆ\n=ŢבŢ٤ťJ =Ţқ\n\n \r\n$ť\"\r ť\"ŀܼ\n\n ť/\n$Ĵĵ \n\n \x00\n ťJ ť›ŢܴĐ %ķ\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 )Šť›Ţ‘\nŀ\nŀ\n2?ťׅŢʙ ŢR Ź  qŢݪ\r\r ŢͲ\r0#ȝHŢéŢċŢĬ]ʲŢ˫ŢʓŢðŢ»#3ĚŢ»#ȝHŢéŢċŢĬ]ÏŢðŢā]\x00]\x00 \nSŢkŢA \nSŢbŢA \nSŢ[ŢA \nSĚŢA \nSŢkŢA \nSŢbŢA \nSŢ[ŢA \nSĚŢA ” ۊ \næ ťå\n3\x00g Ë+ǂ\x00ǃǂˣǃˣǀMɊǂ\x00ǃƍĸ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\n\x00ťēŢԂ\nźƒa ŀ\n\nt ťV¿ ťì„  Ţ݆Ţւ $ æ á࠰,Ţڟ á,Ţܑ7ŢȒŢÐޓŢüŢȍޘŢüŢąŢԞ áßHŢą7ŢÐHŢȇƱŢʶŢߙ  3ɷD\r \r° ͵\rŢƥ  3Ţࢪ ;Ţʰ\r ŢƆ\r\r Ɯ7Ţऍ ǛޓŢLJ ^ޘŢLJ ȼŢ׺\x00šĹ\x00\x00 \r\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\nt  t(„  Ţú $Ï  Ʊ ŢʶŢէ  D\r׸\n\rž\rࡉҦ֑]۱HŢϑHŢϞHŢ_ŢąŢ؎Ţğ\n\r\x00 \r\x00\rӖ  Ţú $ \n ɴ D\r\r Ţú\rI\n\r\rۉ=Ţ࠺=ŢԸ=Ţǎ\r=ŢࣜɿŢǎ=Ţݲ  Ţd $ B\rHŢÐ7ŢĆ  BHŢÐ7Ţͭ  ŢĐ $  Bťì    BťѾĺ\x00\x00 \x00\n\r \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00   ƛ 2\r Ţࠞ ?ɭ U ȁŢˊ l ťÀŢ݈Ţ©Ţ_؛\n2\n?\nU\nl\nǏ $ 7ŢĮ\rޓŢYޘŢYŢY \r7ŢĮޓŢYޘŢY ŢY q7ŢĮޓŢY ޘŢY\rŢY ŢĪ7ŢĮ ޓŢY\rޘŢYŢY ŢࢎŢ_ \x00\r\x00D Ţd$ Ţͅ 7ŢȒŢÐ\rޓŢüŢȍޘŢüŢąŢY ” \x00 \r\x00\r\x00\x00:yɣ.Ļ\x00˥ƛࡂǝࣄɭܷ֧ЂļǷġŢƑġŢƑġŢƑġŢόĽ\x00\r \x00ǂ\x00ǃ\x00DŽ\x00  ǀǂ 2ǃ ׁǂࣨǂڼĹ\x00ǂ\x00ǃaDŽĸ\x00ǂ\x00ǃ¨\n\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00 ƠťˆťÀŢ΋ (\rŢԀťēŢž ļƊťìťĞ\rD\nť/\n Ø\n\rŀù\n\n ŹťJ\nHŢȾ\nɄރ Ļ\x00!\x00ĺDŽ\x00cǂù  ť/ $ ť\" ऎĐ % \x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00(ŀ\n5ť¼ŢĒťJŢڌ ťÀŢȬ\n\n Ź\rťJ\nHŢȾ\nɄރ ĺDŽ\x00\rɶǃ\n Ļ \x00Ǝ  ť/ $ť\"  Ģ\ryĐ\nť֘ť¼ť›¥ O ª\n\x00 Ï : Ì\x00\x00 \r\nÄ,ťÊīa\nĽ\x00 g\nª˒ľ\x00\x00 \r\n\nĽ\x00 g\nÏ˒Í\x00\r Ä,ťÊīa Ľg ªʘÎ\x00\r  Ľg ÏʘĿ\x00\x00 9ľĤ\n\x00 %ŀ\r\x00 \x00\n\x00 \x00 ťÀŢ_ \n ťV )ŠŔ 0 \n݋ \\ŢĦ \\ŢÔ \\Ţࠟ ࡳ Łʎ¯«%ťۛRկlДŁ.ł+\x00)Łǂ֔$”࢖ɹº§ť¼ŢȅŃ՜Łࣈ”ܐºƦń\x00ѧ Čb:Ï9b ťӧŅ9bʠņćb\\Ţ¯bʠŇ\rbޯŢ࣠ΪŢѯŢݷŢÙŢ¯bŇŢࡓŢըŢִŢÔb\\Ţ¯bŇŢݻŢϣŢËŢĦb\\ŢÔb\\Ţ¯bŇŢџŢކb\\ŢĦb\\ŢÔb\\Ţ¯bךňʅb\\ŢĦb\\ŢÔb\\Ţ¯b͈ʼn9ňʁŢĀň%Ŋ\r\x00 Ň\n b\x00b:ťJ \x00b¥ȳ.Ð\r\x00 Ņ\n b\x00b:ĨťJ \x00bãŋ\r\x00 Ň\n b\x00b:ĨťJ \x00bãŌ\x00¤'ť¡‚6ŢŷŢűť\"%ō\x00¤'ť¡‚6ŢŷŢűť\"%Ŏ\x00*6ŢŨŢŧŏ\x00%ŏ\x00¤'ť¡‚6Ţ֗Ţݸ;ŢƳť\"!;Ţ˳ťƙŢ[ŢŬŢࠏť\"ŢǬ;ŢҧťƙŢbŢŬŢंťGŢ[ŢFť\"ŢǬ;ŢԱťƙŢkŢŬŢɜťGŢbŢFťGŢ[ŢFť\"Ţޱť\"ŢDžťGŢkŢFťGŢbŢFťGŢ[ŢFť\"ŢڶŐ\x00¤'ť¡‚6ŢŨŢŧť\"ޑť\"Ţøő\x00¤'ť¡‚6ŢŨŢŧť\"ޑť\"ŢøŒ\x00¤'ťʤČťGŢkŢFťGŢbŢFťGŢ[ŢFť\"Ţøœ\x00\r \x00\nÄ'ť¡‚Č TŢl\náŢlťG ŢkŢFťG ŢbŢFťG Ţ[ŢFť\" ŢFťG\nŢkŢFťG\nŢbŢFťG\nŢ[ŢFť\"\nŢࣇɳ.Ŕ\x00*īťȢŢеŌ\x00ťŪŗ\x00%ŕ\x00*ī\nŏ\x00ťŪŗ\x00%Ŗ\x00*ŏ\x00ťŪŗ\x00%ŗ\x00\r \x00\nD  ť/ $\n ؁\n'ť¡\n‚\n\n6Ţŷ\nŢűť\" ǑŘ\x00\x00 ¤ 'ťʤ Čý ŢkŢAԢ ŢbŢAŢް Ţ[ŢAŢˍ ŢऋÑ* -x> q ڿ -uࢾǰDZǞ‹ \n\nDZ°Ƕť\"‹ ߭ǜ‹ \nޞǴdzǝ‹ \n\nǴdzƁŢΠDzǴdzdz࠽‹ \nǵť\"÷ ǷDz\x00dzš\n\r\x00 \x00\n\x00 \x00 Ţº (\nǛ \x00خ  dz 0 Ǵ  ;Ţª ߓ ;Ţ݌ ׫ ;Ăĺ ࠉ ;ÿĺ ߣ ;Ţӯ ר ࡲ   0  ܉\nς\n \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00Ţʍ \n O \r¾DZ n û DZߜ((\n ः DZٕ*ǰqǰeݳ6Ţࠃ֕ࡦŢݖ3\x00Č\x00Ɍ Ȇ\nÆ ˩\x00إ ŢС  ʪ ࠥ$ԚČ\x00Ɍ Ȇ Æ ˩Dj 0 ˕ťŠŢ״ ࣴ\n6 \r \r\n\x00 ƠŦ¹\r\x00 ͬ  \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00¦  \rĉ¾ǵťŠŢ࣏ Ƕť࣊ێ Ƕťă I Ƕ \nǶ ٳǜ \x00\nö ҵ ̖\n̢ # ‰\nơ \nҀ  Ţݛ ŢݝŢܣ  ‚ ŢҶ Ţ؜ Ţڑ 6Ţ̶ Ţͳ ‰\nϚ Ţ̸ Ţڊť\" ӍťŠŢںŦۢŨࢇ ť/$žTťV ť/$ƠťŒɽ\nӰTťۜ#TťĞʃŢ©6ŢӽŢ\rЖ\rࠨ\x00ڛŢܟ\r\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00Ţٟ ¦\n¦ ¦ ӲǵťŠ*\r¿z ǵťă$ǵǵqъŐ -5\r‹6Ţª\n X !‹ҿӄ -5\r‹6Ţª  X !‹6Ţč\n- 5\n \x00\rӁ6Ţč - 5  \x00\rΐ\r\x00ǵť›Ţ࠵+\x00\x00 \x00 \x00 \x00\r( ¾ǵťͪŢ֜\x00ť΁\n\x00N36Ţϥ36ŢࡃŢ̿ǡǵ\n \n2ࢶ ŢR ť/ $\r\n  З '\r5‹ 6Ţɬ࣡ ϯ ‹ \rdz\x00ťм\x00\r \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00 Ţׂ\n ǵ\x00 Ɣ = ť֫Ɲ\x00¾ Ţۯ ťă` ť› Ԯ0)ǧ ҥ ת г ڕ-Ɲ5ǟ\x00\n\x00ƠŦ¹\x00͆–3Պ ߈ŢΨũࢱ\x00\x00 \r\n\n԰-ǂࢉ}ҋ ťɵǜ‹uÇ Þ\n̴\n+\x00\x00 \x00\n\x00 \x00 \x00\r\x00\x00ǵ2)ǧNJ Ɲ\x00\n  \rz\r ǵťă\r$ǵ\rǞ\x00ࡋ)ǧŐ‰õ\nǠ\x00\n 'Ɲ\n' ɒ ‹ \n\x00۽ \x00 š\r\x00 \x00\n\x00 \x00 \x00\r\x00 \n αǙŒ ǙŒ)ǧǵ࢔ǵߋ Ǚš ǙšǙŒ\x00ǵťƣ\r\r \r$ǵ\r ijǙŒŶ\nij‰ǙŒõ ǝ\x00 \n Ǚš dz \x00\n\x00 \x00ƍǣ+\x00ǰ\x00DZ\x00DzOǰ(DZDz²\x00£ \x00±\n\x00“ :M\r\x00 DZDzu>-x>qƃ ‹\n ťWŢɧ ťWŢҬǰDZ \x00DZɆ ťWŢɬDzऌ Dz\n\r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00Ţ̱ Ţӱ\nɁ  (\r¾DZћ DZ0ǰťWŢؙ\nƖ  ťҜ\nťҝ Ɇ\nƎ 0 Ɓ \rΛ\r \r\x00 \x00\n\x00  ͷ\n\n DZ\nN\n* ǰ\neťWŢ̋ ťWŢࡵťԾ ťࡔ ҈ǰ\nɔ ‡Ǥ+\x00ǰ\x00DZ\x00Dz\x00dzOǰǢDZǣDzdzŦȂ:M\x00\x00 \r\n\x00 \x00 \x00\r\nܹKǃխ jǰ0ǰŦǰ Ǿ ǰ {Ǎ\x00\x00 \n 'Ɲ5\n  \x00DzǶǍ§׬ jDZ0DZŦǰ Ǿ\rDZ {ǎ\n\r'Ɲ5\n \r\x00dzǶǎ§Օ\n‡ǥ\r\x00ǰ\x00DZ\x00DzOǰDZǚ\nDzǚ\nÇ \x00Ó\n\x00Ø \x00Ú :M \x00\x00 NӝKǃ5DZg \nǰÆDzg лÚƦ\n\x00NKƝn: 9Ɣ=ŢӀŢࣙ +\x00\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 \x00!\x00\"\x00#\x00$\x00%\x00&\x00'\x00(\x00)\x00*\x00+ \n  \rLj\x00 Lj\x00!DZ}\"Dz}í!DZ#DZu>#-DZx>#DZq#ƃ$DZ‹#\n%$£\x00 %2%? ƠŦ¹$›\x00 \n ƠŦ¹$®\x00 \n$Á-Ɲ5&$Á\x00&Ё‹&?&2 ɒŢɎT\nŢɎT٢'$Ò\x00'2'?($¦\x00(2(?)$¾\x00)2)?)U)l\rƠŦ¹$°\x00\r\n$ƒ-Ɲ KLj $ƒ$ƒƘƬƠťˆT=ŢȀƬƠťˆT=ŢȀ6Ţڰ–TʂŢ؆Ţࣺ–Tʂÿࣉý#3ŢړŢӤƠťÎ=ŢþƠťÎ=ŢþƠťÎ=Ţѝ¾\"DZ#Dzu>#-Dzx>#Dzq#ƃ*Dz‹#\n\n*£\x00*±\x00*“-Ɲ ,Lj *“  *“ƘKLj Ţ KLj Ţ#LJ(+ +Ϙ +€ŢЍŌLJ\x00+\nőLJ\x00ƠťÎ ÿőLJ\x00\nőLJ\x00ǰ\nőLJ\x00 \nőLJ\x00\nőLJ\x00 \nőLJ\x00\nőLJ\x00\nőLJ\x00\r\nőLJ\x00\n\nőLJ\x00\nōLJ\x00\nŒLJ\x00ȵŒLJ\x00ȵŒLJ\x00ΣǦ\x00\x00 ՘ťè࠲ŨغŨܯťȂ ߆ť޵ťҮŦ՗Ŧ̻ŦΓŦҖǧ\x00ܔࢰǨ9ȞǗǩ࡯ťٶǪ\x00\r  )Ǧ\x00\x00Ǩťذlj Ǭ هǩ ѱǘKǃ ǫǃaǎg \nǘDŽ\x00ǎ•ĺǫDŽ̡ǖउ ťǡǍg ! ťҞǫǃ\x00ǂ\x00 \n ŦȹDž ǖŢՈǕǖŢ̤ ťWŢͥǔ \x00ǖख ťWŢЪǜǔ\x00 Þǫǃaǖҗ ťWŢªǖ ťɵ Ŧȹdž5ǖŢīǕТ ťǡǕҸǕǕ`Ţªǖφǘǃ‡ǫ\x00\x00 \r\n\x00 \x00  ’ŭّŨ݉Kǃ Ǎ}̫ ǎ} ҽ\nNjŦҟ\x00\x00 \nnjÇ\x00 \x00\nޫǬ\r(ť\"ť׈ťسť\"Ŷť\"յť\"Ŷť\"õť\"Ŧ֞ť\"ťКť\"ťܫǏť\"źhťԅǏť΢ȞǑ`Ţ͒Ǯ˛ǭ+\x00\x00 ’ \x00 \x00\r\x00’ıŢࡅ  ť/ ў  ٦\n* ۡźhť\x00ťǦģŃϼ +·ƞŧईƞŧ։ũӜƞŪݐŢӳźhť͛ Ơťࠍ\r࡚Ƭ§Ŧ؉ ƞŦΘƞŦşťٌƞŦşť۠Ǯ+ϱǐ ǐǭƊǓ°ť\"ǐ\nť\"Ǔ\nť\"NJ\nťʴǏ\nǏ(ǑȞŋǯźhťڇǯ\rɁƞťࢍ)ƞťڲƞťы)ƞťюŧۍƖťʱŧ̀ǒߊťĴ֋ŝ+ǂ\x00ǃǂ(ǃࢿÉ\x00_ŏ܍ǃ֓ǂǃš*לǂǃ‡Şǂ\x00ǃ\rDŽDŽǂݑb\x00¡Dž\x00¥\x00¢ \x00©\nŏDž ǂƫǃμ ǃ+\x00Dží١ǂ˭ǃ\x00\nǃ: +«¥ínڧſϟ\n\r\x00 ǂ\x00DŽĈǃ„ ǃ DŽ $ Džǃ‡à\x00ǂ\x00ǃ\x00DŽ\x00Dž\x00dž\x00LJ\r\x00Lj\x00lj)Ƭ࠾ \nLJέ\x00ljLj©\x00\n¨ \r\x00 \x00Nj\x00nj\x00\n Oϝ ¸ޡ΍ ¸ͿLjŞ\x00\nNjLj¡\x00njLj¥\x00\nnj\x00 Âǂ\x00 DŽ\x00 –ǃ\x00 ÈLj¢ܳLj¢Ç äNj žNj IǍǃ MǍ+\x00\x00 \x00\n\x00 O+Nj»Nj$nj Nj\n)Š ձ $\nˉǍ> Nj )Š ù $ Ǎ>=\n\x00Ê :‡NJ\x00Nֻܤइ̽ࡀ2Ιӎ2?ψ࢈2?Uͮޙ2?UlҷӾ2?Ult˱֎2?UltÌژ߰2?UltÌA˙\n\r\x00Nj\x00nj\x00 \x00\n\x00Ǎ\x00 \x00 \x00\r\x00ǎ\x00\x00I\x00NjÂ\x00nj–\x00 \x00\nÈ\x00Ǎŝǂ  Ž $ Ǐ  Ɣ\r Ӟ  Ʀ ھ\r\n ˭\r͋ǎ)Š+\nǎˁƞ\x00ǎäƞ\x00ǎžLJ\x00\n\n(ԟʬ࢑Ċǎ\x00τǎ=D ɓ Ž $ǎ Ǒ $lj$\nǒc$Ĉ¨\rD Ž$ǏǑǏ*ñ\nуǐ܇ǐ\r\x00 \x00\nƞ  Ž $\nƫ \n\nࡹ ة\nࣦ ݃\ṇ ࢠĠǑǔ\x00Ǖ9M+\x00\x00 \x00\n\x00 \x00 ·ǔ»ʀǍÉǍÉǘǕ?ȶǕ͍()Šǔ+\nǘǕ̑ȶǕوƔ ǔ=D\nɓ\n Ž\n$\nǑ \n¥ؖĊ\x00̄Ґǔ$ँǔ$ljǔ$aǒǔcǔ$Ĉ\n t Ìǔ»5Ǎ_\nǍ_ǒ ہ ‡ǒ\x00\x00 \x00\n\rǔ\x00 \x00Ǖ\x00ǖ\x00 \x00Ǘ\x00\r\x00ǘ\x00Ǚ\x00ǚ\x00Ǜ\x00ǜ\x00ǝ\x00Ǟ\x00ǘ$\x00Ǚ\nUǚ\nlǛ\n2ǜ\n?ǝǍÉǞǔǔ ǔI ǘǔe ٛ ࣾ Ң ࠗ ǝǞǕǝǞǝǞǕ f ޶Ǟĥ Ǟ\x00ǝǞǕǖ{ǝ ǝ ò ߞǘǔȿǖDžǘǔœǘǔǖ\x00 ǝǞǝǞ ǖį ǝǞ\rǘǔ ŝǔ\r! ٬ ࠢ\rǘǔǝ Ǟ3\r\x00Ǟ\nǞL\r\x00ǝǞNJǕǖ Ԗ ǝǞ\nࡼ\nˀ \x00ǔ ! ࠒ הǝǞǝǞ PǖǝǞǕǝǞf ұ ߦǞĥ Ǟ\x00ǕǕǖǝǞǕǝ ǝ ò Ѹ ǝǞ ǝǞɿ \x00ǝǞ ! ΈǞÉ Ǟ\x00 Ǖǖ{ǝ άǖǘǔǝǞǑÊǖ\n ͣǝǞLJǘǔĔ ڨǝǞǕǖȃ Ε ǝǞ ǝǞࠋ \x00ǝǞ P ǝǞ ǝǞɽ \x00ǝǞ ! ֥ ݹ ɪǖǘǔǕLJ! ڡǖǘǔ ǝǞħ 5ǔǖȏǞƿ ή ǝǞǕǝǞæǕDžǘǔɱ PǖǘǔǕǛ! ַ ࣵ\rǘǔǔL\r! וǞÉ Ǟ\x00ǕǕǖ Ǖǝ ŕ ࣫ ǝǞ ǝǞջ \x00ǝǞ !ǝǞӮ Ԩ ࣝǖǘǔǕǙ! ؏ǝǞܒ ˝ǖǘǔǕǎP ǝǞ ǝǞɻ \x00ǝǞ ! ԥǝǞǎǘǔĔ ף ǝǞ ǝǞɾ \x00ǝǞ ! ࠚǞÉ Ǟ\x00ǕǕǖǝǞǕǝ ŕǝǞǙǘǔĔ դ ݴ ׹ ǝǞ ǝǞŭ \x00ǝǞ ! ԗ ǝǞǕǝǞæǕ  ʷǗǘǔǖǘǔǕǚǗį ǝǞ ǝǞɼ \x00ǝǞ ! ࡞ ࠈǕǕǖ Ǖ˗ ԇ ǝǞ Ǖǖࣶ ! ߨǝǞǛǘǔĔǝǞٙ ܬ ࡝ǘǔɇǖǘǔ njǖǘǔ \x00ǝǞ ! ԻǞĥ Ǟ\x00ǕǕǖ Ǖǝ ǝ ò ࡘ ǝǞ ǝǞɤ \x00ǝǞ P\nРǔ ! ࡕǞĂ Ǟ\x00ǕǕǖ Ǖǝ ǝ qǝ Ǫ ՎǞĥ Ǟ\x00 Ǖǖ{ǝ ǝ ò ʿǘǔđǖDžǘǔœǘǔǖ\x00ǕǝǞfǝǞӼ ء ̼ǝǞǘǔƂ ҌǕǕǖǝǞǕ˗ ގ ǝǞ ǕǖԈ PǓ\x00ǘǔǘǔ\rǘǔǘǔǔϭǙ\x00\n\n\nߎǔ ǔ\r! ̪ ޝ ǝǞ ǝǞƁ \x00ǝǞ ! ѭǞÉ Ǟ\x00ǝǞǕǖ{ǝ ŕ ސǗǘǔǝǞǚǗBǘǔɡ Ǖǖ˧ Х ֽ ǝǞǕǖ ! ѷǖǘǔ ǝǞ 5ǔǖȏǞƿ ޗ ǝǞǝǞҚ PǗǘǔǝǞǜǗBǘǔɡ ۈ\rǘǔǔ\r! κ ǝǞ ǝǞ† \x00ǝǞ ! ۂ ǝǞǕǝǞæǕNjǘǔɱ Pǘǔɇǖǘǔ Njǖǘǔ \x00ǝǞ Ō ק Ҫ ۆ ǝǞ ǝǞ܌ \x00ǝǞ ! ζ ǝǞǝǞҍ ! ۙ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǝǞǕǖǼǕ\x00٘ ǝǞ ǝǞ؋ \x00ǝǞ ! ט ڹǖǘǔǕǝǞf ҃ ǘǔƂ ׮\rǘǔǝ Ǟ3\r\x00Ǟ\nǞL\r\x00 NJǕǖǝǞǕǖ˧ ۧ ׾ ǝǞ Ǖǖࢣ ! ए ǝǞ ǝǞ˕ \x00ǝǞ ! ؄ǖǘǔ  ǖįǘǔȿǖNjǘǔœǘǔǖ\x00 ǝǞǝǞ ǖf ׵ǖǘǔǝǞ ǖf ठ ǝǞ ǝǞɷ \x00ǝǞ ! פǖǘǔ ǝǞħ ǔǖצǖǘǔ ǝǞǝǞ ǖɐ Ӹ ; т\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǕǕǖǝǞǕɑƞ\x00 ܖ ʹǕǖƂ в ǝǞ ǝǞ؊ \x00ǝǞ PǘǔđǖNjǘǔœǘǔǖ\x00ǕǝǞɐ ٸ ޖ ǝǞ ǝǞÁ \x00ǝǞ Ō ͧ ЛǞĂ Ǟ\x00ǕǕǖǝǞǕǝ ǝ qǝ ࢟ǗǘǔǖǘǔǕǜǗޓ ࣋ ֱ ǕǖΎ Կ ǝǞǕǖ \x00ǝǞ Ō ߹\rǘǔ ǝǞǔտǗj *ǕǖǗ\x00ǒ\x00ǔ\x00ǔ\r\x00\nu\n͘ǔ ͊ǔ\rٵǞĂ Ǟ\x00 Ǖǖ{ǝ ǝ qǝ ٩ ̥ǞĂ Ǟ\x00ǝǞǕǖ{ǝ ǝ qǝ Ǫ ق ǝǞ ǝǞޑ \x00ǝǞ ! ߢ ҨǕǖڔ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\n ǕǖǼǕ\x00ΰ ހ ̞ ǝǞ Ǖǖٔ ! ؼ ǝǞ ǝǞƶ \x00ǝǞ ! ܩǞ\x00Ǖǝ\x00ǖǞP ǝǞǖǘǔǕdžǖ\rǕ \rKƝ \rǘǔऩǔ\x00ǔ\r! Ց ӥ ǝǞ ǝǞࡎ \x00ǝǞ ! ߥǖǘǔ ǝǞ  ǖf Ә ߂ǝǞǝǞ P ǝǞ ǕǖĎ ! Ӊ Ǖǖȃ ߔ\rǘǔǞL\r\x00ǝ Ǟ\x00Ǟ\r\nǕǕǖ Ǖɑƞ\x00ǝǞڪǍ_ǝ¨+ǘǔٱԑǖǝǞǕǝǞfɪǖǘǔǕLJ!ڢǖǘǔǕǛPǖǘǔǕǙ!ԁ˝ǖǘǔǕǎ!ʷǗǘǔǖǘǔǕǚǗfʿǘǔđǖDžǘǔœǘǔǖ\x00ǕǝǞįǖǘǔǕǝǞfݠǘǔđǖNjǘǔœǘǔǖ\x00ǕǝǞfАǗǘǔǖǘǔǕǜǗ̟Ǟ\x00Ǖǝ\x00ǖǞ÷Ǔ\x00\x00 \x00\n\x00 \x00 \x00\r\x00\r\x00\nL \x00 LŎǒ\x00 \x00 \x00à*\r \x00ǒ\x00 \x00  \x00ۿÌtࣩ  \x00ǒ\x00 \x00 \n\x00\n߳ĩ\x00ˀދáǂ\rǃ\x00DŽ\x00Dž\x00dž\x00LJ\x00Lj\x00lj\x00֐ǃǂŦ۰DŽǂťĪDžǂŦࢄdžǂŪࢌLJǂŧލLjǂŦُǂŬܚǂŭࠀǂŨǥpljؾŢࠌǂŦܵǂ̗ǒŧʧDŽ\n'Ɲ ǂťˑࡖ pċǂ\x00Ů٣ ¥ƽ\nM\nȪÐ&ljġˆࣿ\nťxťܢ \x00\nťxŦУ\rMNJǕ\x00ǖ\x00Ǘ\x00ǘ\x00Ǚ\x00\rǚ\x00\x00 \x00\n\x00 \x00 ǚࢳǘǘǨǘßǚˆîNjǕ\x00ǖ\nǚˆènjǕ\x00ǖ\nǚˆÙǍǕ\x00ǖ\nǚˆÕǎǕ\x00ǖ\nǚˆÛǏǕ\x00ǖ\nǐťǚ\x00Ǖ\x00ǖǒǖ'Ɲࡗ8Lj8ǚˆ],Ɲ&ǚˆ]ࢺǘܠǚÐŬ۬ƫ\r\x00ŢԼǚˆ\x00 (\nǚˆʪ j0 ࢥ ֆ ɤƝ  ɴ  ֬Ɲȁ  ѵ j 0  ɻ\n5\n    ѕ 'Ɲ8Ǚ,Ɲ&ǙѨǚŦÝǕ\x00 ࣰǗ,ťʺǗ \x00Ȑ\rNJťǚ\x00Ǖ\x00ǖ\x00Ǘ\x00ǘ\x00Ǚ÷Nj\x00࠷'Ɲ0DŽǑDŽ\x00\x00Ɛǒ\x00DŽà ¸nj\x00NLJLj'Ɲ0LJŦƠ\x00ƐLJŦľà ¸Ǎ\x00\r ·džɠ Ǔí'Ɲ0dž B࠿dž Bƽ\n¸ǎ\x00NDžLj'Ɲ0DžŦƠ\x00ƐDžŦľà ¸Ǐ\x00\r ĕźͺ ǔťźť࠸ Ũ٧ ťſŪИŨ՝'Ɲʀ ťڞ\x00\n Ŭࣞ؈ Ŧύg ťŤ˯\n¸ǐǕ\x00ǖ\rǗ\x00\x00ǗΡLj5¿Ljťʱťǚ\nťˍ\n\x00Ũè \x00ǖ'Ɲ ŦƤ ŦƤ\rΜ ʊ\nʊ \r\x00 ťƝŦȴ ū˓ťѩť޺ \r\x00 \x00\n\x00 ťƝŦȴŧ˦Ŧʝťѓ ŧǀťबŭǠ\n ŨJťś \nŪνǕߏǖϳŦ̍\r\r\x00 \x00\n\x00ǘťƝŦ࠳ŧ˦ŦʝťӵǗˆ]Ɲǻ ŧǀť࠹\n ŨJťśǘ\nťĭǕ\nǘŦƤ \nŦҺ *ǘŦΉƝ Ǘˆ]ƝǗˆ]ǘŦ׀ũئǑ\x00\x00 \r\n\x00 \x00 \x00\r ǂŨϮ uź^ť\x00ťÍťޚŢƌź^ť\x00ťآ\nź^ť\x00ťÍťĒ\n,Ţˢ\nź^ť\x00ť݅ ź^ť\x00ťŅ\nࣷ\rƁťc\n\n 'Ţˢ \rƁť\x00 Nj\nۮťÍťě  \rťÍťě : әťÍťě ǒ\x00\r \x00\n\x00 \x00 ʚ'ť߶ ť_ źÂť\x00ƦŪб\n\n ť/\nI  \nؘź­ť ѽ ƥť ɶ ťܥź^ť \x00 ԩǂŪÝƥť \x00 ťV ťܸǓ ƂťǂťóŦʈƦŬңǔ\x00\x00 \r\n'ƝǃťƩÞ\nǃťƩ!\nǃťģ\n\nťſŦࢦŦȕ\nťſŬմũU \nť߱a ǃťϠť˓\nƀ\n DŽǑDŽ\x00ŧʧǂťϻǂťˑDŽ \x00\x00 \x00\n*NJťˬ\x00Ɲ\x00\x00Ɲ\x00 \x00\n%\r\x00*NJťˬ\x00\x00Ɲޕȋ.âʎ”ġºġ%’ŢٮŢЧŢ̯Ţ֤Ţ־’ŢԪŢ࣬ŢجŢֲ¤ M\r\x00 Ä,ťÊīƎ ť/ϬRť\"Ģ «Rġlť˚ ťɛŢɸ¤ŀ ťǔŢ΂+\x00\x00 \x00\n\x00 \x00 \x00\r «R\x00\n«¯\x00 ťʗ ť\"Ţԧ ťĞŢǕŢdŢ̲$ ťپ  ƶŢɸ¤ŀ ťǔŢन ŀ \n ť\"ƠťӦl=ŢדŢݭ ťзl=Ţ؀¤ \n \nťV )Š =Ţ҇ Ø\r\n” S\r7ŢkŢA S\r7ŢbŢA S\r7Ţ[ŢA \rŢʞ  \r\x00 \x00\n\x00 \x00 \x00\r\x00\x00\x00\x00\x00\x00ťì«¯\x00ťĵ\n2 ? U\rlǏ;Ţت$`ŢԎ3Ţˊ3Ţ߽3Ţԣ3Ţփýࢹ7Ţ׊#\nHŢ̒\n7Ţؑ;Ţࡑ#  ӂ \r!;ŢҤ ] ]\r;Ţ֠#  ˮ \rˮ \r!;Ţث ] ]\rX #жƠ{TŢӫ\r\x00\r \x00 # HŢ۴ 7ރ \n\x00\n σࡤ\nďߑî ď܀ż ďγĀ\rďܨ࡮ࡻó ƯƞŦۇťǙƀƍŧDz íź߮Ɨ¢Ư4źǐȞ¬ƎƞŨݏ í#ƠQƒ4ƣΔƞƮƞūܙ íwƢCƬ&ƌsƠãźÚƌԹƙťâí ìն íwŽ˅ƌ4äŸƆƙñŦôźĩźÃ í#ƪ8źґƎsźŘƧťÃƏƠť۪ź࣌źަŢçí ìÛ\ràमţ\x00Ţ\x00Ť\x00ƛՉź í#Ƙ˅ƕ&ævƠíźҹƬí Ʀ4ƕƓݒƐťêáƞ1źЕƬñŦŴƓƥź߀ƍťŦƫƞŧ͂ íƯ|å¢ƨ4Ɣ1\rƵ(ƶ(Ʒ(Ƹ(ƹ(ƺÈƍſťՒƟŽí źࢆƎí ì± ź̝Šťxť˹íƤ۩źőťÃóIJí źäƙƞť͇ í ƀCƙ8ź֦ž1 펟ՍƨåvƮ ƆƓťxťȱ í ä8źۻźࡢƜ1í źټçźÈżƌí Ə4ŽíźǤãźȈñŦŗÅ>ƒťäźȷťâ íŽƤ¢ƒžŸƆƠࢵƔñŦ˜źĝƞŦţéƞťөƱƞŭэƲƍŭ࢓ ƻźÂťŪږíƙ4Ƒí Ž4ƥźĝƪíƙ4å źࡨƱƱŦʄåźÚƉΌí Ƨ4Ɠ íwƮǜä@Ʈvƍƚ̘ŻÈƊޠí Ư&ží Ƌ@ƒźĩƞŧţƏƘź֚ƠťȸźࢬƍŦթ íƭQźࡁƨ&Ʀ1ìˠ íƠ8źؓźْƠ1ƅƞŪɉźܮí ƅ&ƕì޼ í£Ƣ8ƜƎŸƭşݦŠ؇ í Ƣ8ž8ƍƋ1íƠƟƂƍŦࢡí źҊæſ׭ƔنæƍťDzí źۋźāżñŦƴ íƟCźއƖƠ1ƼÈƗñŦ߯źݢƍŮƢíæ&ƕíźȗźÃ í#ƣCƊ4ź΅źȉźȈƠŭǩźݜź҄íƐźĐí ź̷Ɖ ê’ŢńŢؚŢ˿ŢʄèñŦôƈƏí Ɯ4ƣíƑ&Ə í#źۖźճƭŸƍƒƞŦƢƥƍũ֡ƇťÕõIJƭϓƪƞŦǵçƠťࢧ í ƑCơ8źҒƜ1íƢ&Ɓíƣ&źâƯťäƜƞťǙ í#ƏCƮ@ƫvżí Ɵ&źÚ í#ſ8ƍ&ƤsƐ íźڗƐQƞ4Ƥ1źĊƍťࣻ í#źًƙƅvƔíźǤźȉźޛƍťȫƦƞŪŦƈ޳Ç>ȞњíƞƬƞñŦѢí ƀ&ží źɖźŁƟñŦͨƞΑźĝñŦūèۏŽ࣪ƋڣíèƖƘʟƇݵơťʥƬऀƖƠŬɳí ìə í#ź࠯ƪ&ƈvƥíźĶſ íƊCƇ¢ŽźތȻźij\x00Ʀ\x00Ū\x00ı\x00Ţ\x00ƒ\x00ũ\x00ƞ\x00ŭ\x00ŧ\x00Ŧ\x00ū\x00ť\x00Ɲ\x00Ũ\x00Ŭ\x00ŗ\x00¸\x00Ō\x00Ö\x00ř\x00é\x00Œ\x00º\x00ć\x00Ś\x00ƫ\x00Ů\x00ą\x00$\x00Ċ\x00ċ\x00o\x00Ɣ\x00Ŋ\x00Ɠ\x00è\x00ã\x00ĭ\x00ģ\x00Ɯ\x00¹\x00Ń\x00Ơ\x00ƪ\x00Ŗ\x00ń\x00Ƭ\x00ň\x00Æ\x00D\x00j\x00ÿ\x00À\x00`\x00Ʊ\x00·\x00Į\x00Ó\x00Ã\x00Ņ\x007\x00Á\x00Ŕ\x00¼\x00İ\x00p\x00Ő\x00Ĥ\x00Ò\x00ŕ\x00¾\x00»\x00Ÿ\x00x\x00Ü\x00\x00Ê\x00Â\x00ō\x00C\x000\x00>\x00v\x00{\x00X\x00|\x00}\x00 \x00\"\x005\x00Ā\x00@\x00”\x00ý\x00F\x00Î\x00ħ\x004\x00Í\x00½\x00Ī\x00¬\x00Ð\x00Ì\x00IJ\x00ľ\x00q\x00Đ\x00)\x00ę\x00È\x00Ä\x00ß\x00Ú\x00ď\x00Ø\x00É\x00Ô\x00Þ\x00Û\x00Ù\x00ƨ\x00×\x00¿\x00Ñ\x00Ï\x00Ý\x00 \x00Ɵ\x00E\x00ŀ\x00R\x00ƙ\x00Õ\x00¶\x00’\x00đ\x00‹\x00\x00š\x00‘\x001\x00µ\x00\x00\x00'\x00<\x00\x00\x00¦\x00£\x00V\x00U\x00Œ\x00L\x00°\x00±\x00;\x00i\x00Q\x00\x00\x00\x009\x00^\x00…\x00„\x00€\x00\x002\x00©\x00d\x00²\x00¡\x00™\x00­\x00‚\x00k\x00–\x00,\x00\x00w\x00H\x00/\x00\x00T\x00Ă\x00s\x00ƒ\x00(\x00®\x00 \x00]\x00h\x00a\x00:\x00\x00[\x00\x00Z\x00›\x00‡\x00ˆ\x00†\x00¯\x00 \x00O\x00t\x00e\x00\x00&\x00g\x00u\x00-\x00r\x00Y\x00n\x00%\x00=\x00—\x00\x00.\x00z\x00l\x00\x00S\x00\n\x00¢\x00\r\x00\x00œ\x00+\x00?\x00W\x00\x003\x008\x00Š\x00m\x00c\x00ž\x00A\x00¥\x00~\x00«\x00“\x00\x00Š\x00\x00_\x00I\x00!\x00N\x00 \x00´\x00*\x00f\x00¤\x00³\x00\\\x00‰\x00Ž\x00\x00B\x00J\x00\x00y\x006\x00þ\x00•\x00P\x00K\x00ª\x00G\x00b\x00\x00¨\x00#\x00˜\x00\x00§\x00\x00MƗƠť֏ź̅ŢïƍƍíƏ4źÚưƞŨ܋äƍťܿ íwſ8źĶžsƀ í ƕ¢Ƣ|Ɣ&źǐƈťê íƆÜƅCƉ4źࢯí ƒ@ƎË>ãࡥƣƞŭ˔ŁťՅâ>ƐñŦ࢕í ìĜƀñŦŗíźҙźķžÈíźԯźƈźࠂƞŨƢ íƌ8ƣCſ&źղźϐŻƑťŀ źʬŢ̛ŢĵŢߗ åŠťxťǩí ìɀź˵ í#ãCźװƟsƏƞƨíƆ&ƫƟƠťԘ íźࠩƒQźȥƨ1źϴƍŬŠƳƔ í£Ʀ8źɧƣŸźǢƁƍťदíæèźőñŦʒ í#ƐÜƁ@żŸźƈíƧ&źÃƕñŦʒƟťķƤťâƩñŦ߉ íƍ|Ə8ź࢐Ɛ1šşݗôIJźĩťĨƌƉí ƀƮíƥżƑΧƉç íƜCƢCƧƜ1źӢƍťߪ íƬǜſQźȗè1ƍñŦƴìʋµƏťŁźĊñŦԌžèí Ʃ4żźȷƍŧܪȞߒƍñŦŴ íź࢝ƣQƯƟ1í ìࣆ źőãťxťȱòIJźĝñŦŴ í£ź͞Ɩ&źѦƊ í#ź࢞Ƨ&źӈžíƎ&ƚ 펟҅ƓƙŸźݤƨݔìʡìĤ\"!#$Ȟȡ%&șȚțȜȝ ȅȆȇȈȉȊȋȌȍȎȏȐȑȒȓȔȕȖȗȘFƌ Ǝ\nƫ Ư ƹ\rŰűćĈZǸƖǹƚǺƝǻĕǼĜǽĠǾiǿlȀȁȂȃFȄNľƿǀLJǐǒ)¢Ǘ¯ß€l|j¬S¨«”khqUvˆ5Kb'†A‘.rw8:¡\r ‰#=$^!m‡˜[„zFŒVD­–œ®W-o¦,¢%‹T;ŸIP4eužRi\\d›C\"(s©1n ašaJp* @•G“9x£]Zt}™_O?~‚ŽyQ&EY©M>\n6—X/¤`B7©\x00¥©\" ©Šc©§Lag3/ª) f0©+\"{…2<Hƒ/N’\x00¯\"БŻÓ ގIŢ˴Ţ̀ŻȃȞࣅ֝# \"ढȞअԦOŢˈ4ŢǓŢ_)X;ȯƴȞ´#ƞť࠶חźࡴșť/șErOŢʍ4~)X%\r\x00;… #ƈ8ƚCƯ@ƒ1 ƠťŒ ԔŻȀȕŭࡒ\"ʋŤöū# \"ڒŻ#ƞťǵ<ƳࠬƬ§Ŧʭ ș##ť׃ŬࢩĘŨŖʦƳȞ ȅࡣOŢˈFȯՄŢ©ŢīŢ_ŢUŢºŢȫŻ<ȅ#Ƌ4ƌźˁȞ࠼ȖșErOŢĆ4~)X%\x00@\x00;…ŵʥŢīƒťģťǴťƄŦГאșŰťԺș֣ťƨŨېŢçŻ ¶ƾƞŦࡿƿƞŧǥpŻ ȊźЬ%>ŻIJŢñűŘ# Ż@źR¶ƾŦèŦïƾŨЃŦŻƾũډŦވ*ƾƝy ȅƞťǯťxŦٽȒȓȔŻƛƄŻÓ ţŽݨţ \x00ࡽŻŬÚŻ Żǹ\r#ƞŦ۹źɯźƾŢô#ƾșErOŢ_4~)X%\x00@\x00;… ԬŢЀŢ֊Ţôȡ¬Șʟ ȏȐȑ ƞŦ՛ťք<źटŲ™\r#ƞŪࡄƝ&ťࢂƞ# ƫ@ƤŻƼșžșť›șťēޙŪŁŻţöșũâȞࠇϸ# \"Ĝ\r<ƞŦņťՀƬ§ŦޤŢΟŻǻ# \"˖ūŸŸș # Čș\x00ž #wƤQƍ4ź̾źƈŻŮRŹǣ# Ɖ@ƤƄŀŻ<ƼșžŢöș\rȅȆȇȈȉȊȗŻǼȞˏʦµ# źֺƑƞŧЎŻșErOŢU4~)X%\n\x00@ \x00; …Ŵà ƠťŒ Ģůķ<ŢïŻȂŻ\nŻ# \"ݞ\"م# \"ҫŶê ƞťǯťxŦ֯șErOŢº4~)X%\x00@\x00;…ŨÕȆȇŻ ċƞ\x00Ŧޥ ŢR ȋȌȍȎIJŢǹ# \"יŻťäŻŻȄIJŢŗ\x00Żǿ# \"ϲƞŦӐĆ#6ŢdŻǽ<Ţ࡛Ŧŀ# \"±Ó ޙ°IșĎȚɝŧĐÈŻ\rŻǸȡȣ \rȟȠ\nDF 9\n\r śǛ*¡®HŃp?.œéAØ Xŏğ\x00p\\jppįp7Œp>ŀ»‹g«ĶBµÿp>9»Jĉ#ŽĺAtČžċŒÖÀ|ИpÁpî@p[ĄÖPhčăpMÖâ¼ļpðĩnĸp°YŐ'T…\r‰ÂĔÓĴĕêpŋlpRAĈāpý ¾Ėþ¬ŇA¯VĪ†ÀVp÷ÚpzpC¨=AÅĭŁúZ=ąkœ ġõcĠpÈppU(pÜ8ĂĐÄÚÙĻÚĚÆÚޟ¦ìĝëňãÚöp¤ęr„ŖpÛÚpŊçĀøtŒqiĞIû¢Ĺ“İÚ+6ĦˆIJńyûķņÚĢ™²:ùł±ĵ\"ħĘoGbf2ěύŗĮQ~³=Ë·dŘpp0KOEå5ď<àLpÎÖxĎĜvpDŋĊpŋ^¶Ēģ­ä¥ Ì´ijėߍ_đĿ!Ś–m‘>ôpĆ́ԠÚp>ŀ»t`ª¬ŎA$Īī$Ŕñ—“Ú1Ģp€ŅÝńőAá²Õupƒŕppp>ŀ»ĥæ2óćíw\nÚtAī’3‚a¯F&¹p›pľÑĨNıÇSpŋ%{pŋspŌÊ/šÃō¿©ř)p£ï‡pWÚpĬÚ§Ú-peèʼnŠpp¸AĤ}•pò½×pÒēĽpºpüÉ]”p,4;p\x00śȘƔƗƖŨϩ\x00ŢԍƖŨܛ\x00ŢځȡࠫȓijȞȒ ċƒ\x00ŦǸǺm ȅ-Ɲ&ȉ-ƝȊ-Ɲȋ-ƝȌ-Ɲť/ ȅÝň 8 ťZŢʰ ťZŢñ ـȎ z \rӃ\rŦ߁ŢRŎ\x00ȉ ؠ ȅťZŢ³ț€ŢR €ŢRȌŨŠ-Ɲ  ƯÜƇQź׍Ʀ1½Ȍȣ¬ wźȳźɖƣsƑ ȟƒťƩũͻ  Ţऄ\r^ť׶\r ڮȍijȞȋ½Ȗ  ƮQƜןź͓ź͡ Ԑ\r ũࠠ Ţd фƞŦņťʮȇNjȈ \r3Ȇ؞Ţŵŗ\x00ȅȈi ԭŎ\x00ȇ ȟťĭŧȽ Ó IƼŊ\r¥ŻťϪ ͸ȡ͎ ƣCƯ|źࣟŻ1 ȎƔȍTȌ ċƒ\x00ŦɣǸm\r<\r҆ŠŢӕ͐ť࠘\rÕŒ\x00ź̹ő\x00ȉźʣŢՂ ċƒ\x00ŧźǾm ƫƉȡݶ ȅÑŅ\r)Ƭ§Ŧʭʡȅťࡺ  ċƒ\x00Ŧ՞Ȁm\r Ƙė>× ŧ׆ȣՋ ŧࢻ þِ þӷťʩ ӭ\rp ɋ ܏ſŧŦȏȞ´ ċƒ\x00ŧğǻm £ƈÜƋƯsƉŒ\x00țŻ\n ȅ,ƝŝƞŦņťʮ\r3ȅʃŢŵ ċƒ\x00ŦŅǹmȋȊ-ŧׇȋ-ŧԋȌ-ŨŠŎ\x00Ȏ ċƒ\x00ťëǼmȆ ьșȒı Ŏ\x00ȘѮŢ֙ȘŎ\x00Ȉȟ)ƽ>ŗ\x00ȆwźшŢأࢗ ࠆ \rťǮ   Ūοũׯ½ȕ Ѳ  źȳƫ¢ƪ&ƚ1 Ţϫŗ\x00ȇ ؒŌ\x00ȝƊ4ƫ  Ě\x00\x00 Ҿ Ő\x00ijŢत ऒȇ Ȏ ƞťóŦ˔ȡřzȊi ŢĐ ċƒ\x00Ŧ̰Ȃm ť/µ ƞťóŦܦ \rťŤŧ܄ŧ٫ȇi ɫ< ȐƔȑTȆ ő\x00ƠťÎȏ1 Ȟȏ  \rBť//×ƞŦؽƞŦʢŧ޽ƞŦʢŧࢷ¥ ƞąڝ Ŧٝ ŦȲŦ˲ ŦȲŦ̕ťʩƭ\rpȋȞ´ Ő\x00ȡ݄ŢߍȊ1źјŕ\x00ș ࣕ ¶ ȡगà\rݡ #ƤCƉź٠ƈȡ͢Ƞ \rŦڽťЅ\rŎ\x00Ȋ ȆťZŢ³Ȇřŧ̜ޒŎ\x00ȗ Ř\x00 \x00țȍ'ןښĀޜƞūվƝ*ȅƞť—ŬƇȃۓƞŨШƝ*ȉƞť—ŨÑȄۦ p Ûő\x00 ȇȇťZŢĨ ރĤő\x00ȅˠ ȅìŋ ċȟ\x00ũ»\n ťWŨê<\rî\rÕ\rŐ\x00ȡǟŢ݁ŢńȌ1\rB\rBرŢѳ\rBɼŢū £ŻQƪ4ƚvƪ<Ŭࠦ Ţdŗ\x00ȉ Ư@Ɯ Ţä wȇ&ȅ&ȆŻ,ťՁȇřŧѪ  ƒťƄũש ťWŪǣ ࢮ ȅ@Ȇ \rťǮƦū࡟Ň\rȅŌ\x00ȍ սŻ  €Ţ™ ȅƚȗƚȕƚȖı \rǛťĞ\rȼť/i\rē> ťWŨāȆȅ ࢨ ڤȟŽ̠ȡڻŌ\x00 ȋŧघŖ\x00ȅ  ź࢏ƊQƋ&źĽń\r €Ţ³\r<źࡠ3ʁŢܞ31Ŏ\x00ȕ źƒ  ߐ \r\rƜťĄťߛ ŢdŎ\x00Ȕ¶ȣݬ p źʔƜ ࢃ Ͱ֮ț€Ţ³ȏıȚ-Ɲ\rŐ\x00ȡǟŢ˻Ţܲȋ1Ǝ4ƒ ȆĔĦ1 #Ż8ź̃ź٪Ư ࡷڱ ĜŖ\x00Ȇ \rŊ\rŦעŢR ȅàň ±  ň )Š ťָ ȅêŋ ťWũࡧź׋Ɗ\rƀť \x00Ȋŧͼ  π ċƒ\x00ŧࠕǽmŒ\x00źֿĤț€Ţd\rɚ\rȎȒȞ´źЇ #ƙ|ƣźَƊ շ ƞąǺȅřŦۣ £Ƥ|Ƥ@ƑsƊ ࠐȅȆœ\x00ź܃<  ޮź̧ťĻ ƞąʾťˇťƨüіŢƌƞąʾťˇťƨŦߚŢç ࢜ ޙ \r\rBťࠓ ƦŬ͗ ɀȅȞ´  ťώŨࣹȆȡܕ ƋźRȒ ȅÞņ½ȅȆ- ٭ȇ- ࣽȈ- dž ԄțެŢǓŢ͚ijŢՇ ȔƔȓTȉő\x00Ȇi ͉ő\x00ȊҼȈ džȏ ċƒ\x00ŦĹǿm ȅAʼnȣ\rƞąǺźʣŢȊŎ\x00Ȗȉi Ͼʕ ͤ \r  ťλ ȅ2ŋœ\x00Ȝȑ  ֈ ƞťóŦȸ\r#\rŭܱ\rŦѺŢR \r,Ţя\rBťѠص\rūع\rŬΗ\rŪΒȅȞيŌ\x00źد Ӵ ƙƫ ࠖ Եˎ €Ţd ȇ\r\rࣱ\rٖ\rЉ\r߬Œ\x00Ț½ȗ,ťșŎ\x00Ȑ\r\r\rBťĄťǹ ŢR ޿,Ţ³ #ƚCƯ@ƜvƎ\rBƞŧ˄\rBŢñ ċƒ\x00Ũ݊ȁmťޣ ȉȉťZޙ ŢR½ȉźϋȡեȡֹ ťWŭѫ\rť/ <\rťZŢƆ\r؝iŻ  ࢴ\rƞŦĴ\rBĢ ȆťZŢd Ȟ޷ŢȊŕ\x00\r Ȟߤȅiȋı \rķ\x00  ȅťZŢd\r#\rŭ҂\rŬҘŢRŎ\x00Ȇ  ť/Ō\x00 օ Ɗ@ƚ¶ȣۀ p<\rŪţțɫ Ŕ\x00ťȢŢӺƼ)ŠɞȣȤ Ȣ \n  \r\"k_Eef15#1Q\r[cAi1:1\n(A]1T.=DUIS,hUV1B`D'!dbh'1gGhX0@\x00>1F1F1W*j1&Ch 0; } else if (_$nB === 58) { _$jv += -6; } else { _$_I = !_$f5; } } else { if (_$nB === 60) { _$_i.push(_$fq.substr(0, _$iX() % 5)); } else if (_$nB === 61) { !_$_I ? _$jv += -40 : 0; } else if (_$nB === 62) { return new _$$a().getTime(); } else { _$bZ = _$hP(26); } } } } else { if (_$nB < 80) { if (_$nB < 68) { if (_$nB === 64) { return _$m7; } else if (_$nB === 65) { _$iX = _$nx(_$__); } else if (_$nB === 66) { _$m7 = "_$abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split(''); } else { _$kB.lcd = _$aD; } } else if (_$nB < 72) { if (_$nB === 68) { _$_I = !_$a0; } else if (_$nB === 69) { _$_I = _$ju < _$_W; } else if (_$nB === 70) { _$_I = !_$hC; } else { return _$__; } } else if (_$nB < 76) { if (_$nB === 72) { _$hC[3] = _$$S; } else if (_$nB === 73) { _$_Y.push(_$j9(7, _$kQ() * 55295 + _$kQ())); } else if (_$nB === 74) { _$bS++; } else { !_$_I ? _$jv += -24 : 0; } } else { if (_$nB === 76) { _$__[_$lK] = "_$" + _$m7[_$hC] + _$m7[_$bS]; } else if (_$nB === 77) { return; } else if (_$nB === 78) { !_$_I ? _$jv += 4 : 0; } else { _$_O = 0; } } } else { if (_$nB < 84) { if (_$nB === 80) { _$$S = 0; } else if (_$nB === 81) { _$jv += -19; } else if (_$nB === 82) { _$bS = 0; } else { _$_i.push("})($_ts.scj,$_ts.aebi);"); } } else if (_$nB < 88) { if (_$nB === 84) { _$_Y = _$aC.substr(_$_O, _$je).split(_$_c.fromCharCode(257)); } else if (_$nB === 85) { _$m7 = _$$K.execScript(_$nb); } else if (_$nB === 86) { !_$_I ? _$jv += 40 : 0; } else { _$hC[0] = "iPED@llhJ{im{kl`kljaf}`wzz=n{flDakl{f{j`{pl{jfwd`whh{fz;~adz`X`mfz{|af{z`mk{j9}{fl`lwj}{l`fwe{`lgKljaf}`ywdd`kday{`ygfywl`hjglglqh{`l{kl`yj{wl{=d{e{fl`7`gfdgwz`~llhk2`j{khgfk{Lqh{`dgywlagf`klwlmk`jgmfz`[`9ylan{PGxb{yl`j{wzqKlwl{`hmk~`j{khgfk{`kijl`#`2`j{egn{;~adz`whhdq`=n{flLwj}{l`d{f}l~`ewly~`zgyme{fl=d{e{fl`gfj{wzqklwl{y~wf}{`j{egn{=n{flDakl{f{j`=cyH`kmxklj`bgaf`lqh{`gh{f`afz{pG|`khdal`5`gf{jjgj`wxk`|dggj`|mfylagf`fmex{j`~{wz{jk`l{pl`j{khgfk{L{pl`}{l9lljaxml{`}{l`}{l=d{e{fl:qAz`gflae{gml`xgzq`khday{`klqd{`&`~j{|`~llh2`ewly~E{zaw`c{qzgof`lae{Klweh`gfdgwzklwjl`zan`y{ad`jwfzge`k{l9lljaxml{`}`0(`}{l=d{e{flk:qLw}Fwe{`aff{j@LED`k{fz`@LED>gje=d{e{fl`w`j{khgfk{PED`PED@llhJ{im{kl=n{flLwj}{l`,,+`kljaf}a|q`c{q;gz{`ywfHdwqLqh{`l~{f`3`k{wjy~`{n{fl`fgo`Z`k{lAfl{jnwd`yggca{`l{pl;gfl{fl`J{khgfk{YLqh{`zgyme{fl`yd{wjAfl{jnwd`ydgk{`hjglgygd`gfwxgjl`h{j|gjewfy{`gfkmyy{kk`gfdgwz{fz`j{hdwy{`ewp`}{lLae{`~azz{f`afz{p{z<:`klwlmkL{pl`afl{jfwd`ywfnwk`xmllgf`gfhjg}j{kk`h||(`hwjk{`k{l`Ewl~`klwyc`~wkGofHjgh{jlq`kyjahl`)`t`EayjgE{kk{f}{j`j{kmdl`lgh`dgywdKlgjw}{`$_QNLP`}{l;gfl{pl`egmk{zgof`ygflwafk`J{im{kl`ywfzazwl{`lgmy~{fz`fgz{Fwe{`?{lNwjawxd{`T`|gje`___LK___`ewly~{k`hwl~fwe{`E{zawKlj{weLjwyc`{fme{jwl{<{nay{k`k{lAl{e`nakaxadalq`hgjl`=d{e{fl`e{zaw<{nay{k`z{kyjahlagf`@{wz{jk`gml{j@LED`zwlw`~gklfwe{`kjy`bkgf`whh{fz`hgh`egfl~`egmk{egn{`(`|gflk`hwj{flFgz{`e{l~gz`jmf`Gn{jjaz{Eae{Lqh{`[[`nwdm{`|addKlqd{`ygehad{K~wz{j`~{a}~l`dgwz`~gkl`afhml`akFwF`{nwd`a`h|x*_(`|{ly~`jox(`egmk{mh`$x_ywdd@wfzd{j`gxb{yl`ydayc`lgDgo{j;wk{`}{lAl{e`whhdaywlagf[ped`oazl~`H`9bwp j{khgfk{ xgzq z{yjqhlagf |wad{z Y `kmxeal`U`Sgxb{yl 9jjwq]`\"`$_lk`|jwylagfwdK{ygfz(wPRdJedNqM@B`xwll{jq`9JJ9Q_:M>>=J`h|w(`lw}Fwe{`n{jl{pHgk9lljax`jg`fmeAl{ek`HGKL`$FO=-FrJcQb~eQrE,`]`y~wj;gz{9l`N=JL=P_K@9<=J`g||k{l@{a}~l`}{lK~wz{jHj{yakagf>gjewl`3 {phaj{k5`gxb{ylKlgj{Fwe{k`wlljaxml{k`wdh~w`wzz{zFgz{k`zwq`lg?ELKljaf}`x{lw`gn{jjaz{Eae{Lqh{`+b{9D{Kkw.`}{lGofHjgh{jlq<{kyjahlgj`}{lJ{khgfk{@{wz{j`nz>e`e`y~adzDakl`|addL{pl`k{kkagfKlgjw}{`g||k{lMfa|gje`dgywd{`h|{(`}{lKgmjy{k`ywd{fzwj`$_QOLM`wfy~gj`ddx`yj{wl{K~wz{j`yj{z{flawdk`hwjk{Afl`fmex{jaf}Kqkl{e`wygk`lgmy~egn{`c{qmh`}{`h|y(`joy(`?{l9ddJ{khgfk{@{wz{jk`lgMhh{j;wk{`\\sTZW7U\\u`lgf=7f=-2GK`>J9?E=FL_K@9<=J`faw}ngwjl`dwk~`oafzgokY)*-*`1,`l{pl:wk{daf{`gxb{ylKlgj{`/+/,.).{`{KgE>xda>djgLeggXdgKg}Em{k`}weew`n{j`oaewp`%`k~wz{jKgmjy{`3 Kwe{Kal{5Fgf{`lq`j{egn{Al{e`$x_k{lmh`~llh2[[`y{ddmdwj`kyjgdd`wzz:{~wnagj`{kywh{`Eayjgkg|lZPED@LLHZ)Z(`3 K{ymj{`]64a64[a64!S{fza|]YY6`z{nay{gja{flwlagf`S`s`}{l9ddJ{khgfk{@{wz{jk`z{nay{Az`E=`{egj~;kk{d`R0P@BBQZFO=-FrJcQb~eQrE,TU`9rgE`}{lKmhhgjl{z=pl{fkagfk`EK`}{lHwjwe{l{j`~wfzd{j`a7sd>shdBsa94`xz`k~a|l`4=E:=< az5`;gdd{yl?wjxw}{`d@{`Sfwlan{ ygz{]`kyj{{fP`ja`wylagf`cywjLlgFgz`@A?@_AFL`{ph{jae{flwdYo{x}d`C{qxgwjz`j{khgfk{:gzq`npobmcbs`o{xlcHak{aj{kflllgK}j{w`Ekped+ZPED@LLH`gfx{|gj{mfdgwz`af__`d{n{d`)Z*+,`?{`<{nay{Gja{flwlagf=n{fl`.y.).{./`.,.-/..1.+.--(.1/0.-.y-*.)/,.1.|`ndwm{`~gn{jtgfYz{ewfztfgf{twfq`wxkgdml{`J{`{j~{wztzgyme`{nwjx`,{.).z.-`mfa|gje*|`X z{yjqhl{z KF2 `-+.1.z,0.-.1+x-+.1.z-+/-.{+x,{-+.1.z-+/-.{+x,..).{./-+.|.{./+x,x.).1-,.1+x,..).{./-+.|.{./,/,*+*+++)+*+x,x.).1-,.1,/,*+*+++)+*+x,z.1.+/*.|/+.|../,*(-1.),0.-.1+x,0.1/*.)./.1.{.|*(-+.).{/+*(,/,*+x-+-,,0.-.1/,.1*(,y.1./.0/,+x-+-,,0.-.1/,.1+x-+-,,x.).1/,.1+x-+-,-+.|.{./+x-+-,,..).{.//+.|.{./+x,y.1-+/-+x-1.|/--1/-.).{+x-+-,-0.1.0.-.1+x-+-,-w.0.|.{.//+.|.{./+x,.-w-+.0/--,.1+x,.-w-1.).|/,.1+x-+-,,+.).1/1/-.{+x-+-,,0/-/(.|+x-+-,,y.1/,.1+x-+-,-0.1.{./.x.).1+x-+-,-0.1.{//.-.1+x`-+.0.|.+.x//.)/..-,..y.)/+.0*{-+.0.|.+.x//.)/..-,..y.)/+.0`kmxkljaf}`#)/{`n>{wgAfynBwwlA{fwjy|b{{Xgkfa`ijycdeEIo0A?|HG1*xnDFbY/rP:wKfm(L;.}q_,R{-zv!8$%^&VTUW546Z7[23suS]t `TwfqY~gn{j`kyjahl_|f`}{l:gmfzaf};da{flJ{yl`)*/Z(Z(Z)`(Z(Z(Z(`y~wjk{l`{Yfylj~kwX{~lew{e{jw~zzgtey{mYfmlYjjdg{dkjnX{e~ew~{{jtw{zed{{Yfdlla{kff}anY{{kfYlgkjl{wY}ghhjwXe~je~{z{twydwgglfajYwo{hjh`{l~{jf{l`mk{Hjg}jwe`dypa~{l}vp}M__y~M__y~.{{pyoApeaMpzDpm/}zd~p}`zxdydayc`__{ozxaj`yj{wl{=n{fl`zwlwYhjgehlYwfko{j`j{khgfk{MJD`j{zdam:xgd:KE`{}wkk{Ezf{Kfgdwlwc`yda{fl {jjgj`fgf{`ydgf{`jggl`Egdx{a`__hjglg__`xafz:m||{j`mh~kgFala|wyalfg`.z.-.{/-.*.)/*`R0P@BBQZxe>(wPRdJedNqM@BTU`ywddxwyc`{??lf{j{dwAEX<{?ElzaAXDk}gfaz{DX}gfa9Xlmg~aj{r?Xl{w:{kkMj{fAg|JXl{wDfm~y`ek` kj|dp `.,.)/,.)*z.x.).{/,/-`Z>ap{z`.|.y.,-(`h`e{lw`00`lae{gml`{jwel~}`wyy{d{jwlagfAfydmzaf}?jwnalq`j{lmjf wSx]T`{d{k`><~Hd{{nalwyL3xal{fwE ywa~{fM af;3ggbdrw3r{Nzjfw3w{@ndl{ya w{F{mD LjH g-+L a~3fwlg~weD3 ?eKjw_l @{llkJ }{dmjw<3FAjHYgad~}3l{@ndl{ya wLD, +aD~} lp={lzfz{@3d{{n_EfAaz3w=KJ;xglgDg}al~: dg3zJGE ~gfwqlM afgy{zJ }{dmjw<3gjzaK fw k~LawC3fwwfwzK fww} eFE<3;ddwxcyK3ewmk}fe=bg3a{Lmdm}K fww} eFE;3jwgjka? lga~ y;K>3qd{eD }al~J xglg gaD~}3lgK9EaEgwmO?_):(0(+~3d{{nfYm{Y{{jm}wd3jKK L{Eazem;3mgajj{F o{C3e~j{E fgmzcdja ag:zd@3d{{nalwyD L+*M ldwjD }al~= lpf{{z3z{@ndl{ya wLD* -dMjl waD~}3lgJgxglE z{ma3ejzfj{f3lgYgwkkfyYcbeYz{ma3eaeamE3gJcy qJH ;g:zd93zfgjzad;yg c{Jm}wd3jwKkefmK}fwFkem,Y DaD~}3lwkkfkYj{|alYa~3fw9wH}fwQj{y3kwwm3dF:E ~gfwqlLG: dg3zYpkk3lgFglwKkfqEfwweRjowq}3a{@ndl{ya wLD+ +~Lfa= lpf{{z3zk9d~q{yKajlhLE9 ldF3lg gwKkf< n{fw}wjw aAMJ3xglg gg;zff{{k zg:zdJ3xglg g{EazemA wlad3yaeamp{F3lg gwKkf? jmme~c aAMK3LKN {aflewk{ {aD~}3l?DG_ajwq~3yq|g{|3{YpkkYldmjldw}al~<3@>a{O9Y/39R>OR:PGL_LfMyazg3{{YQRfa:}Caaw~KYm)KY-*N*ZD3Y?R>aQ}fa:wCKam~KY-)NYZ*3+{@ndl{yaFwm{D{ LjH g-+L 3~aEjykg|g la@wewdwqK3ewmk}fwKkfw>ddwxcyK3LKE z{ma elAdwya93zfgjzae=bg3awKkefmK}fwFkem+Y3JLA ;lKfg {{Kaj3|wkkfkYj{|akYweddwykhp3kYlkeYz{ma3e?DK_faw~{d{kJ3xglg g~LfaA wlad3y{ylfjmYqg}~lya;3gdcyhgwaD3emfamg_kwKkf>3gdajazfwK jyha ld93lgFglK fw km?ejcma~: dg3zLDQ@RK Cg:zd?3_K~LawK3ewmk}f{FFgem+__L3*j9xwya~3fwYkwkkffYjgwe3dgDa~ l{Lmdm}@3IQ@aa{-YK(D }al~D3fakzq{| jgK ewmk}f93 Jj;kqwl~da{< 3:wKkefm }wKkfE z{ma3ewkkefmY}wkkffYem-,~3fwYkwkkfxYdg3zmDaegfkmK_jyha3lKK Lg;zff{{k3zwKkefm<}n{fw}wjwJa}{dmjw93bfdwE dwqwdwewE 3FwKkefmL}w~Ta{llk3UR>wDLffa@}a{EY?Y):(0(+@3x{{j oLG3KK?-,9_wjTxf9jzagGzUKK3ewmk}fK fw kaD~}3l~;yg ggycg3q{~ndY{{f{mlYa~3fFHE ~gfwqlLGE z{ma3e?D>YCRLwfgY})EY1*N,Z<3gjzaK j{|aK3ewmk}faK~fdwJw}{dmjw~3d{{nalwyD3Y?R>wCgL}fEY1)NYZ*3*gFglK fw k{e=bg3a{olw{~|jfgflo{J }{dmjwJ3xglgFgemJ+<3FAjHYg{eazemK3ewmk}fK fw kmF-e3-KK L{@nw qlAdwyaD3d?yg,cJ }{dmjw(_(03-{?jga}3wgfglkYfwYkby3c{Lmdm}K fww} eFE: dg3zAEAM= PgFejdw@3IQ@aa{/YK-: dg3zgFglwKkfqEfwweRjowq} ag:zdq3fmkgjhYgdxyw3c{~ndY{{f{mfYjgwe3dmDaegfkmK_j{|aL3 EgEw~lfGq LgFejdwK3ewmk}fwKkfmFYeD+ naD~}3lwKkefm }wKkfF em-,K3weljg?~lyaE z{ma3e{}jga}3wwymkdw|YfgYlql{hK3ewmk}fK fw kg:zdk3weddyYhwladw3k>Efafw{yH ;J: dg3zR>wDLffa@}a{?_):(0(+K3ewmk}fj9{eaffwJ3xglg gg:zdy3f{mlqj}Ylga~Yygxzdp3kYlk~Yw{qnK3LKD }al~A wlad3y~LjwgD3fYpkkYlad~}3la9CBL3Ogyjm{a j{f3owKkefm=}geab{Jm}wd3jAEAM= Pg:zd93zfgjza= geabF3lg gwFck ~j9xwyaM 3A;D mlwjE z{ma eL:N3naYgp{jlyw3lw:}fwdK fww} eFE: dg3zw~kfkYfwYk{jm}wd3jFKem+Y3JFKem+Y3Lw~kfkYfw3kKK LdMjl waD~}3lgJgxglJ }{dmjwJ3xglg gaD~}3lw@mfwe3f{fdo}}lga~3y><{@9a-O9Y~3fwYkwkkfdY}al~H3wd{l? lga~3yFKem+Y3D{@ndl{ya wLD, -aD~}3lqEfwwe jwK}fewR owq} ag:zdd3Y}wkkfkYj{|adY}al~E3MA AP=D }al~J3xglg g~LfaK3Eg 9g:zdH3zwmw3cwKkefm }wKkfK3whaymg_keKdw;dhwk3fwYk{kaj3|N3qd{eDY}al~|3rrkqzYkgqhK3jy{{Kffw3kdyyg*c)(3.gJgxgl; fg{zkfz{: dg zlAdwya93ajdwC3 FgEw~lf q{EazemE3lgqgDwwEmjO +gegf@3fwkzl{; fg{zkfz{J3xglg glAdwya@3;L@ fw3zKK LdMjl waD~} llAdwyaK3LKN {aflewk{ {gJwe3fgFglF kw~c9 wjax yAM: dg3z~y|fprY~{eazemK3mF;efgYzL+y3f{mlqj}Ylga~Yy{jm}wd3j{zw|dm_lgjgxgldY}al~F3lg gwKkfE wqefjwE3wqefjwK fww} eFE93hh{d; dgjg= geabo3w{~lj{g|lf{J3}wKkefmE}dwqwdwew{Jm}wd3jjwwa3djcfg l9+J3xglg gg;zff{{k z{Jm}wd3jwkkefmY}{fYgmf+e3JB?E ~gfwqlLGE z{ma3e~;dmg~F m{ {gDcyj3xglgYgmf+e3D{~ndY{{f{mmYldwjaD~}{llpf{{z3zwKkefmG}ajwq{Jm}wd3jwKkefmK}fwFkem,YnDD }al~E3aQ}f{@_a0)+(_(*;:Ydg3z>~RfmmQfw?_):(0(+f3lgYgwkkfyYcbdY}al~y3dgjgkgF3lg gwKkf? jmme~c3agFglK fw kqKxedg3kgJgxglD }al~A wlad3ygDa~ lwLae3dmykjna3{{zw|dm_lgjgxgl:3w~~kla;wegdhp{wKkf: dg3z?DF_em{x_jgJgxglL a~3fgegfhkywz{oYlag~lmkYj{|a3k{@ndl{ya wLD+ -~Lfak3ewmk}fkYfwYkmf+eND<3FAjH3ggBge~djw3awkkfkYj{|adY}al~~3d{{nfYm{Y{dxyw3cgDa~ l{:}fdw3aqEfwwe jwK}fewR owq}3ajgQ@ma{JY?Y):(0(+D3~glaH fmwbaxx3kw{cnjda{dk3ewmk}fkYfwYkmf,enLk3ewmk}fkYfwYk~lfaD3 ?e=bg3af9wbad{FDoha3awKkefmK}fwFkem,Y L~LfaK3ewmk}fgC{jfw:Ydg3zaeamp{dY}al~F3lg gwKkfC fwwfwzJ3xglg ggFejdwA wlad3y{?jga} wlAdwyak3fwYk{kajY|{eazemK3weljR owq}3agJgxgl; fg{zkfz{A wlad3ygFglK fw kwCffzw wAM: dg3z>< HyKK fw k{@{m(+)_+(D3_?mFxej{J_xglg gg:zdH3zwmw cg:cgp3kYlkyYfg{zkfz{K3fm~kfaY{yM{~3fgJgxgl: wdcyA wlad3yaJ}f gg;gd je=bg3a{wDLffa@}a{EY?YC:93zfgjzad;ygYcwD}j {{Jm}wd3jjhhgjgalfgdwqdkYwh{yYzao~lmgYl{kajk|;3lmna {gEgfl3eak{D3 ?eKjw_l @{llk: dg3zA~RfmmQfwEY*(NYZ*3*qEfwweMj{F o{Jm}wd3jgFglF kw~c9 wjax yg:zdK3ewmk}fm?wbwj~lJa}{dmjw|3fwwlqk~3d{{nfYm{Y{ad~}3l{@ndl{ya w{F{mG KL: dg3zgfglkYfwYkbyYcgxzdk3ewmk}fkYfwYkmf+e3JaDzf{k qwKkefm3}wkkefmY}wkkffYemL+K3jy{{Kfj{|agEgf=3jLem hqEfwwe_jOR~3d{{nfYm{Y{~lfap{{lzfz{F3lg gwFck ~j9xwyaD3_?m?wbwjalK3weljE_fgkgwh{y3zwLae dwK}fewE 3F?D= geabF fgE93=gJgxgl; fg{zkfz{D }al~A wlad3ye}b_fac}aw>3DRfwaL}fwC@fa{?_):(0(+d3l}wj{n3dwhwdalgf?3g{}jwa: dg3zj3DRfwaL}f{@YaYJ:?0)+(3(J9; qjlkdw{~@aKCK;< 3:{kaj3|LJKOmQJ{mg?z?gn(Y){Jm}wd3jaEgwmOh_{j3nR>)Q3C?DF_em{x_jgJgxglJ }{dmjw93zfgjzad;yg3cgK9EJ }{dmjw@3IQ@aa{,YK(D }al~3p}dkYfwYk{kaj3|w3QRfa:}PafaK}m~KY.)J3xglgFgemD+D }al~e3fgkgwh{yYzao~lkYj{|a3kwkkefmY}wkkffYem-+;3gg dwbrrK3ewmk}f{FFgem+Y3DLKaP}fwc3ayK{jf{wKkfgEgf<3H>wOwO-O?Y3:wKkefmK}fwFkem+Y DaD~}3lw:}fwdK fww} eFE?3jmme~c awK}fewE 3F=KJ;xglgDg}al~~3|qfgjpaw3fQEfa@}a{:?0)+(;(:Ydg3zwkkefmY}wkkfdY}al~@3d{{nalwyD L-.E z{ma3ej dwxdyw3cgJgxglL k{)l: dg3zgFglK fw kqEfwwe jg:zdk3fwYk{kajY|gyzff{{kYzmylkegK3ewmk}f{FFgem+Y3LwKkefm }wKkfF em-+e3fgkgwh{yL3 DgEw~lf q{Eazem~3d{{nfYm{Y{{eazemD3@LKQCRJ3xglg gg;zff{{k zmylkeg {g:zdE3wqefjw3+jwDLffa@}a{=YYD:?3Cmqgf3kwkkefmY}{fYgmf+e3LaL{e k{F ogJwe3f{~ndY{{f{mxYdg3zgfglkYfwYkbyYc{jm}wd3jgFglK fw km?ejcma~M Ag:zd<3FAjHYgdxyw3cR>wDLffa@}a{=YYD:?0)+(3(KK LaNl{wf{e{kE z{ma3egJgxgl; fg{zkfz{D }al~K3LKN {aflewk{ {g:zd93 JBwDLffa@}a{YKYJ:?@3d{{nalwyF m{ {LG3KwCla_ajhn{J3xglgYga:;}gdcy>3QRC:BK3Ow@zf{k lg;zff{{k zg:zdK3ewmk}f{?jga}fw<3fway}fK jyha3lwkkfkYj{|ayYfg{zkfz{~3fwYkwkkflYa~3fwKkefmK}fwFkem,YnLL a~3fgDa~ lzGwa:3w~~kla;wegdhp{wKkf`xm||{jaJd{{{wjz`Hd{wk{ {fwxd{ yggca{ af qgmj xjgok{j x{|gj{ qgm ygflafm{Z`GH=F`o{xcal;gff{ylagf`EkpedZdgwl+*9jjwq`xdm{lggl~`mf{kywh{`gf|`hml`Ekped*ZPED@LLH`Gxb{ylZAfb{yl{zKyjahlZ{nwdmwl{`km||ap{k`kj}xth+tj{y*(*(twfq`lEwm`9hdd`nqspevdu6vc`geal`yj{wl{EIo0A?|HG1*xnDFbZ/rP:wKfm(L;.}q_,R{-zsutv !#$%TUVWXY3578S]^`DG9L`>DG9L`}wd|}faqwdhp{{zak`flAf`ek;jqhlg`/..-/*-|.-/..).y/-.)/,.-`djl;|zH`Mafl09jjwq`ck`ak>afal{`$S`H<>`S3&]`k{lLae{`{fwxd{_`j{zaj{yl{z`}{lGofHjgh{jlqFwe{k`x{~wnagj`wmzag`8z{xm}}{j`!aehgjlwfl3 nakaxadalq2 nakaxd{ !aehgjlwfl3 oazl~2 )((% !aehgjlwfl3 rYafz{p2 *),/,0+.,. !aehgjlwfl3`i_xjxza{}iXxxggkc{~|d`J{khgfk{`lan{`Ekped*ZPED@LLHZ-Z(`hgLd`{p{y`fwabf{~k`zakhwly~=n{fl`Ox{EPgDE}}kM_AFMI_=`Ekped*ZPED@LLHZ+Z(`yj{wl{G||{j`gflgmy~klwjl`__|{a|j_g_p|Xa_|jg{Jp{_{wjzzE{g`emaf{d{KddwyXemaf{d{k_Xj{zjgy{J_=DG9L`aje`|ad{fwe{`$d$hk$Xd$jkXx~$pzX$j$w{qzg;{zd9{jzw=q{pmy{lAzLfa~>kwj{e$Xzk$p$Xam${`jwf}{Eaf`X mjd2 `//.-.*.x.1/,,0.1.,.,.-.{`ljqs`_l_le{;wj>lj{{wXele;lkmleBgKe`o{`$x_gfFwlan{J{khgfk{`j}xwT*,(X))(X-+X(Z,U`flwglfa`]zy_`K{fz`(,`{jglkx{o`wq{j`~llh2\\\\`lhajyKfmJfgdwlwc`9bwp j{khgfk{ xgzq j{hdwqX {ph{yl{z KF2 `K=F<`TwfqYhgafl{j`hwjk{>dgwl`zm`yj{wl{:m||{j`l{gqCaHjw`~wjwzjog{f;jyjmy{qf`Hg`jlgYge~ew~{{jYwkzz~gwmoaY`zjwo9jjwqk`9zz{Kjw~yjHngzaj{`{nwj:ka`k{hqL{eae`YokYzwlwYhj{na{oY{d{e{fl`qj{llw:l{}`,*0),/+/()`Ew`gjewl`*,.0.|.|.x*,*y*,*,.y.|././.-/**y`0`p=gwx{aDq|algFXgwx{aDq|algFX>glm9gwx{aDXdjM~ylwEz9gwx{aD`jf{fn`Ekped*ZK{jn{jPED@LLHZ+Z(`|mfylagf |{ly~TU s Sfwlan{ ygz{] u`hl`y~ej{g`hj{yakagf`j;hq`y~Hgaflk`zAkk{ygjHj{`z__lxuwg|`xgzqMk{z`gxk{jn{`K{lJ{im{kl@{wz{j`Fmex{j`v`jYw{dnlm{w`nIMIHKK`<{nay{Eglagf=n{fl`Ekped*ZK{jn{jPED@LLHZ-Z(`.+`Gh{f`|gfl>weadq`dalq`wl{efa~hdgzXg|fafa~hdgzXfa~hdgz`a|jwe{`dk{{mfea`00+`Bnw=wyph{alfg`daf{Fmex{jXygdmefFmex{jX|ad{Fwe{Xdaf{XygdmefXz{kyjahlagf`x{Oj;}__Xx{Ojy__`|mfy`.y-/.1.,/,.0`=fllqa`]\\{zgy {nalwfS\\`yw`zl{af{|ja`egrJL;H{{j;gff{ylagf`h{`w5ywfzazwl{2`Afld`gHfa{l=j{nlf`ejg|lwdh`Lpwe`9bwp j{khgfk{ xgzq ak fgl {fyjqhl{zX j{khgfk{ d{f}l~2 `S\\\\\\\"\\m((((Y\\m(()|\\m((/|Y\\m((1|\\m((wz\\m(.((Y\\m(.(,\\m(/(|\\m)/x,\\m)/x-\\m*((yY\\m*((|\\m*(*0Y\\m*(*|\\m*(.(Y\\m*(.|\\m|{||\\m|||(Y\\m||||]`o{xlcJam{{i>kalKdq{{kel`}{l=pl{fkagf`y~wj9l`daf{Fmex{j`6`dgwz{z`o{x}d`4!YYSa| }l A= ` ~gkl `egrAfz{p{z<:`z{nay{eglagf`naxlj{w`++--,,*+`.,`egr;gff{ylagf`j{lm`wlljaxml{ n{y* wlljN{jl{p3nwjqaf} n{y* nwjqafL{p;ggjzafwl{3mfa|gje n{y* mfa|gjeG||k{l3ngaz ewafTUsnwjqafL{p;ggjzafwl{5wlljN{jl{pWmfa|gjeG||k{l3}d_Hgkalagf5n{y,TwlljN{jl{pX(X)U3u`hgo`{ozxaj{n`)0hp '9jawd'`wfzjgaz`glfakG{x{jjn`{lwmdwn{Yj{najz`JL;H{{j;gff{ylagf`{jjgj;gz{`L`kwn{`xggd{wf`kmxlj{{`kaxa`_{~ywy`yggca{=fwxd{z`d{|l`D=;=JLFG`fgakj{Nhhw`,`a}~l`qk{j`|mfylagf yd{wjAfl{jnwdTU s Sfwlan{ ygz{] u`zwlw2`Y{nwdmwl{`hgkalagf` }=[z`-(`l{klk`E=DG9L`$x|01w().$`ygfkgd{`yk{jf{`d<{`.-.{.).*.y.-.,-(.y/-./.1.{`kswgty`2\\zW`}eqvqdy`sNol{j h{jcO\"vd\" `jhtqtw+juym`wd{jl`{ewj>fgalweaf9lk{mi{JrgeX:jw};gdgj5n{y,TnwjqafL{p;ggjzafwl{X(X)U3u`$_ygf|a}__Zz{lwad__ W5 )`ekna`yl`.)/(/(.y.1.+.)/,`fame`{nwdmwl{`z{ygz{MJA;gehgf{fl`lhegj`lqjjsl{jm f__a|{dwf{eu3wyylT~U{us`{fygz{MJA`j{qwdHdw{J`kwlmlxkjw`-+`#|0*`kzh`%fgalweglm9{|w;lk{l%X%j{naj<{ewj|A{|w;lk{l%X%j{naj<{|w;lk{l%X%{jg;{|w;lk{l%X%zw{~j{eew~%`Kljaf}`dgwzPED`k{lDgywd<{kyjahlagf`hwjk{j{jjgj`wfS\\Vk\\s`Ekped*ZK{jn{jPED@LLHZ,Z(`{}fw~yqladaxak`pLgm`gd`@{`ydwkk`T^\\kVUtT\\kV$U`BKGF`dg}`a>{j`w;dd`~llhk2\\\\`DGO_AFL`Aew}{`ygehd{l{`ZG;P`O{xKgyc{l`ygfl{flYlqh{`oal~;j{z{flawdk`alk}gffw|wad`egmk{{fl{j`p{{h`hgkl`lf{n=j{lfa`gfay{ywfzazwl{`)*/,0,.+0,`j{lf{;{}wkk{Ej{kogj:;MXyakkwd;j{kogj:;M{jH$`@LED9fy~gj=d{e{fl`~w`j{fjzH{yj{gAkzk`wmzag[g}}3 ygz{yk5\"ngjxak\"twmzag[own3 ygz{yk5\")\"twmzag[eh{}3twmzag[pYe,w3wmzag[wwy3`xk{jn{j`hsK*n,vu{yvs`_`(0`jwf}{Ewp`ja}~l`gzT{Ul el9ayPn {f;lgdj g*TY+lxUa`5ljm{`Egmk{`?{lJ{khgfk{@{wz{j`/)/.)/.*`-+.|./.|/-`wjk`{}>lwj{egDwyalfg`xwgzqx`ljae`DD9_C9=DZ`{yK|w~hj`Ekped*ZPED@LLHZ.Z(`gycown{Y|dwk~`mw`jh`hwjk{>jgeKljaf}`$x_|{ly~Im{m{`jk`LI_HH=_=G@CG`u`w9df`__LI_H@_GG_CGFALA>J=`>mfylagf`ha`xgllge`~wk~`zakhdwq`j{wzojal{`9zmgajLywDckaXl{zw|dmKlwlmlXkxG{blykZl{jHlglghqG{X|wlxggjkoj{=_{nlfoXx{acJli{{mlka>{dqKlke{gXgf{hwj{zwl~yz{ano{~yfw{}HXlw*~Zgnaj{lKX}gmggDa}MfalkdKXmgyj:{|m{|Xj~koggEwzXfmlygaZfjhlglghqZ{axzfyXj~egZ{hwZhfAlkdwKdwl{laXFkzgO{a~{lhkywX{xG{blykZw{Xdgzmy{elfzZ|{mwld~;jw{kXl__a|{jg|_pX_fg{ekk}wX{__gkg}_m{kmy{ja_hflm;Xgd{kn=f{ZljhlglghqZ{falad;kg={{nlf}Xl{wEyl{~;zKKmJ{dXkgFala|wyalfg@XEL>Dwj{e{K=l{d{elfhZgjglql{h~ZkwgHfa{l;jhwml{jzXygemf{ZlgxqzgZefmg{kf{{lXj|Gk|jy{{;ffwwnJkf{{zaj}fg;lfp{*lX<~ygj{eGXbxy{ZljhlglghqZ{__{za|{f{Kllj{__zXygemf{Zla|{dj;w{{llwdk}JXw{{zEjzg9{ljya{dwH{}_Xg_{hwjHXj{g|ejfw{ywHfaLleafaX}{h|jjgweyfX{gzmy{elfxZzgZqlkdqZ{ke{LlpaK{rz9mblkzXygemf{ZlgxqzgZhf}wX{NK??wj~hya=k{d{elfhZgjglql{heZrg{Jmik{Hlaglfj{gDcy;XadcywewK{l{d=e{f{ZljhlglghqZ{{ocxla{Jmik{>ldmKdjy{{Xfp{{lfjdw`*-*,00`.|.{.)/-/,.|.+.|.z/(.y.-/,.-`jwxfgalwygd`[JHG `z{lwy~=n{fl`...|/0-y*|*0-y.,*x*1`aVV`fz`oa|a`o{xcalAfz{p{z<:`dc`dwklAfz{pG|`nFFcvsqFgbwjdpoEjdp`~wee`dy{a`Ekped*ZK{jn{jPED@LLH`LJA9F?D=_KLJAH`mfdgwz`wlljN{jl{p`klqd{5\"|gflY|wea`mjd`|addJ{yl`/*.1./.1.{.).y--/*.y`wj`-`hwKhfy;wydcahXhwwKfyy>mgmklGhXhwwKfyqC<{fgXohwKhfyCwM{hqhXhwwKfyfKz{hJd{{weyl{XfhwKhfyGw{fwJKzlq{w;lf~}w{{hJyd{wfel{hXhwwKfywDzgf@zwjdX{hwKhfyKwH{wlD}g{{wzz`K;OdlKZ;Odl`;kjkgdocw`egrknaadxaayl~q}w{f`bxky~{e{2[[im{m{_~wk_e{kkw}{`y9gj`{H|jjgwe`fj_ z_jawf{eu3wyylT~U{us`wz`;gmfl`y~wjwyl{jK{l`ml|Y0`wfq` Y `*z`2 `gc`yh`yz`{fme{jwxd{`\n` U`;KK`az`A=`yx_"; } } else if (_$nB < 92) { if (_$nB === 88) { _$kB.nsd = _$aD; } else if (_$nB === 89) { !_$_I ? _$jv += 17 : 0; } else if (_$nB === 90) { _$__ = _$kB.nsd; } else { _$_I = _$lK < _$nb; } } else { if (_$nB === 92) { _$jv += -5; } else if (_$nB === 93) { _$hC[1] = _$l2; } else { !_$_I ? _$jv += 7 : 0; } } } } } else ; } function _$j9(_$_i, _$je, _$ju) { function _$mI(_$m7, _$__) { var _$hC, _$bS; _$hC = _$m7[0], _$bS = _$m7[1], _$__.push("function ", _$l2[_$hC], "(){var ", _$l2[_$kR], "=[", _$bS, "];Array.prototype.push.apply(", _$l2[_$kR], ",arguments);return ", _$l2[_$_u], ".apply(this,", _$l2[_$kR], ");}"); } function _$e4(_$m7, _$__) { var _$hC, _$bS, _$lK; _$hC = _$lB[_$m7], _$bS = _$hC.length, _$bS -= _$bS % 2; for (_$lK = 0; _$lK < _$bS; _$lK += 2) _$__.push(_$_Y[_$hC[_$lK]], _$l2[_$hC[_$lK + 1]]); _$hC.length != _$bS ? _$__.push(_$_Y[_$hC[_$bS]]) : 0; } function _$iB(_$m7, _$__, _$hC) { var _$bS, _$lK, _$fb, _$_W; _$fb = _$__ - _$m7; if (_$fb == 0) return; else if (_$fb == 1) _$e4(_$m7, _$hC); else if (_$fb <= 4) { _$_W = "if(", _$__--; for (; _$m7 < _$__; _$m7++) _$hC.push(_$_W, _$l2[_$$E], "===", _$m7, "){"), _$e4(_$m7, _$hC), _$_W = "}else if("; _$hC.push("}else{"), _$e4(_$m7, _$hC), _$hC.push("}"); } else { _$lK = 0; for (_$bS = 1; _$bS < 7; _$bS++) if (_$fb <= _$$u[_$bS]) { _$lK = _$$u[_$bS - 1]; break; } _$_W = "if("; for (; _$m7 + _$lK < _$__; _$m7 += _$lK) _$hC.push(_$_W, _$l2[_$$E], "<", _$m7 + _$lK, "){"), _$iB(_$m7, _$m7 + _$lK, _$hC), _$_W = "}else if("; _$hC.push("}else{"), _$iB(_$m7, _$__, _$hC), _$hC.push("}"); } } function _$_P(_$m7, _$__, _$hC) { var _$bS, _$lK; _$bS = _$__ - _$m7, _$bS == 1 ? _$e4(_$m7, _$hC) : _$bS == 2 ? (_$hC.push(_$l2[_$$E], "==", _$m7, "?"), _$e4(_$m7, _$hC), _$hC.push(":"), _$e4(_$m7 + 1, _$hC)) : (_$lK = ~~((_$m7 + _$__) / 2), _$hC.push(_$l2[_$$E], "<", _$lK, "?"), _$_P(_$m7, _$lK, _$hC), _$hC.push(":"), _$_P(_$lK, _$__, _$hC)); } var _$m7, _$__, _$hC, _$bS, _$lK, _$f8, _$_4, _$nG, _$kR, _$k$, _$_u, _$$E, _$bL, _$_1, _$c6, _$eO, _$_S, _$ly, _$lB; var _$a0, _$bZ, _$fq = _$_i, _$nb = _$a1[2]; while (1) { _$bZ = _$nb[_$fq++]; if (_$bZ < 56) { if (_$bZ < 16) { if (_$bZ < 4) { if (_$bZ === 0) { _$cs(_$ly, _$iX); } else if (_$bZ === 1) { _$a0 = _$__ < _$eO.length; } else if (_$bZ === 2) { _$__ += 2; } else { _$__ = new _$ii(_$m7); } } else if (_$bZ < 8) { if (_$bZ === 4) { _$a0 = !_$ly; } else if (_$bZ === 5) { _$_Y = _$j9(7, _$kQ()); } else if (_$bZ === 6) { _$lB[_$__] = _$j9(0); } else { !_$a0 ? _$fq += 3 : 0; } } else if (_$bZ < 12) { if (_$bZ === 8) { _$m7 = []; } else if (_$bZ === 9) { _$_u = _$kQ(); } else if (_$bZ === 10) { _$bS = _$kQ(); } else { _$m7 = _$kQ(); } } else { if (_$bZ === 12) { _$_1 = _$j9(0); } else if (_$bZ === 13) { _$jf = _$aC.length; } else if (_$bZ === 14) { _$lK = _$kQ(); } else { _$a0 = !(_$bL + 1); } } } else if (_$bZ < 32) { if (_$bZ < 20) { if (_$bZ === 16) { _$a0 = !_$eO; } else if (_$bZ === 17) { return _$__; } else if (_$bZ === 18) { _$a0 = !_$lB; } else { _$hC = _$j9(0); } } else if (_$bZ < 24) { if (_$bZ === 20) { _$_O = 0; } else if (_$bZ === 21) { _$eO = _$j9(0); } else if (_$bZ === 22) { _$__++; } else { _$ly = []; } } else if (_$bZ < 28) { if (_$bZ === 24) { _$kR = _$kQ(); } else if (_$bZ === 25) { _$__ = _$j9(0); } else if (_$bZ === 26) { _$aC = "#Śfunction ā(ā){var ā=3;var ā=2;if(ā[ā(7,8)]){if(2){ā(1,8)]=7;}}ā(7,8)]=2-0;var ā=ā(2,8)];ā[0]=ā(7,8)];if(ā(3,8)]){if(6){ā(5,8)]=3;}}ā[0]=7+5;}function ā){ā[4]=3+1;ā[4]=ā(3,8)];var ā=7;var ā(7,8)]){if(2){var ā=5;}}ā=2-0;}function ā){if(7+5){ā[0]=6;}ā[0]=6;ā[4]=2;ā[0]=7+5;ā[4]=2;}function ā){if(6){ā[4]=2;}ā(7,8)];if(2){ā[0]=6;}}function ā[0]=7+5;}‰\x00)+,)))* )\n) ) )\r))\x00))))+,),),))))))))))))))))))) ) )!)))))))\""; } else { _$_4 = _$kQ(); } } else { if (_$bZ === 28) { return; } else if (_$bZ === 29) { _$dV[_$je] = _$hC; } else if (_$bZ === 30) { _$m7 = _$aC.substr(_$_O, _$je); _$_O += _$je; return _$m7; } else { _$__ = 0; } } } else if (_$bZ < 48) { if (_$bZ < 36) { if (_$bZ === 32) { _$bL = _$kQ(); } else if (_$bZ === 33) { _$a0 = _$__ < _$lK; } else if (_$bZ === 34) { _$fq += -5; } else { _$$E = _$kQ(); } } else if (_$bZ < 40) { if (_$bZ === 36) { for (_$hC = 0; _$hC < _$m7; _$hC++) { _$__[_$hC] = _$kQ(); } } else if (_$bZ === 37) { _$k$ = _$kQ(); } else if (_$bZ === 38) { _$m7.push([_$eO[_$__], _$eO[_$__ + 1]]); } else { _$hC = []; } } else if (_$bZ < 44) { if (_$bZ === 40) { _$hC = _$hC.join(''); } else if (_$bZ === 41) { _$c6 = _$j9(0); } else if (_$bZ === 42) { _$a0 = !_$__; } else { _$nG = _$kQ(); } } else { if (_$bZ === 44) { _$dK(0, _$ju, _$je); } else if (_$bZ === 45) { _$eO = _$m7; } else if (_$bZ === 46) { _$cs(_$eO, _$iX); } else { _$_Y = _$_Y.split(_$_c.fromCharCode(257)); } } } else { if (_$bZ < 52) { if (_$bZ === 48) { _$f8 = _$kQ(); } else if (_$bZ === 49) { _$lB = []; } else if (_$bZ === 50) { _$bY(_$__, _$hC); } else { _$_S = _$kQ(); } } else { if (_$bZ === 52) { _$je.push(_$hC); } else if (_$bZ === 53) { !_$a0 ? _$fq += 0 : 0; } else if (_$bZ === 54) { _$ly[_$__] = _$j9(0); } else { _$a0 = _$__ < _$bS; } } } } else ; } function _$dK(_$bS, _$__, _$hC) { var _$m7; var _$fb, _$je, _$lK = _$bS, _$ju = _$a1[3]; while (1) { _$je = _$ju[_$lK++]; if (_$je < 43) { if (_$je < 16) { if (_$je < 4) { if (_$je === 0) { _$__.push("){"); } else if (_$je === 1) { _$fb = _$c6.length; } else if (_$je === 2) { _$__.push("while(1){", _$l2[_$$E], "=", _$l2[_$bL], "[", _$l2[_$f8], "++];"); } else { _$lK += 26; } } else if (_$je < 8) { if (_$je === 4) { _$fb = _$m7 < _$_1.length; } else if (_$je === 5) { !_$fb ? _$lK += 1 : 0; } else if (_$je === 6) { _$__.push(",", _$l2[_$_1[_$m7]]); } else { _$fb = !_$l2; } } else if (_$je < 12) { if (_$je === 8) { !_$fb ? _$lK += 14 : 0; } else if (_$je === 9) { _$__.push("var ", _$l2[_$c6[0]]); } else if (_$je === 10) { _$m7 = 0; } else { !_$fb ? _$lK += 11 : 0; } } else { if (_$je === 12) { _$m7++; } else if (_$je === 13) { _$__.push("}else "); } else if (_$je === 14) { _$fb = _$__.length == 0; } else { _$__.push("if(", _$l2[_$$E], "<", _$_S, "){"); } } } else if (_$je < 32) { if (_$je < 20) { if (_$je === 16) { for (_$m7 = 1; _$m7 < _$c6.length; _$m7++) { _$__.push(",", _$l2[_$c6[_$m7]]); } } else if (_$je === 17) { _$lK += -5; } else if (_$je === 18) { !_$fb ? _$lK += -28 : 0; } else { _$__.push("(function(", _$l2[_$f5], ",", _$l2[_$i5], "){var ", _$l2[_$_4], "=0;"); } } else if (_$je < 24) { if (_$je === 20) { !_$fb ? _$lK += -19 : 0; } else if (_$je === 21) { _$__.push("function ", _$l2[_$k$], "(", _$l2[_$_4]); } else if (_$je === 22) { !_$fb ? _$lK += 22 : 0; } else { _$fb = !_$__.length; } } else if (_$je < 28) { if (_$je === 24) { _$__.push(_$l2[_$_4], ",", _$l2[_$bL], "=", _$l2[_$i5], "[", _$hC, "];"); } else if (_$je === 25) { _$__.push("}"); } else if (_$je === 26) { !_$fb ? _$lK += 0 : 0; } else { return; } } else { if (_$je === 28) { !_$fb ? _$lK += 6 : 0; } else if (_$je === 29) { _$__.push(";"); } else if (_$je === 30) { !_$fb ? _$lK += 33 : 0; } else { _$__.push("var ", _$l2[_$nG], ",", _$l2[_$$E], ",", _$l2[_$f8], "="); } } } else { if (_$je < 36) { if (_$je === 32) { !_$fb ? _$lK += 3 : 0; } else if (_$je === 33) { _$_P(_$_S, _$lB.length, _$__); } else if (_$je === 34) { _$fb = _$_S < _$lB.length; } else { _$fb = !_$eO; } } else if (_$je < 40) { if (_$je === 36) { _$fb = _$lB.length; } else if (_$je === 37) { !_$fb ? _$lK += 4 : 0; } else if (_$je === 38) { _$fb = _$f8 < 0; } else { _$fb = _$hC == 0; } } else { if (_$je === 40) { _$fb = _$_1.length; } else if (_$je === 41) { for (_$m7 = 0; _$m7 < _$eO.length; _$m7++) { _$mI(_$eO[_$m7], _$__); } for (_$m7 = 0; _$m7 < _$ly.length; _$m7++) { _$bY(_$ly[_$m7], _$__); } } else { _$iB(0, _$_S, _$__); } } } } else ; } } } } } )([], [[11, 9, 5, 7, 0, 1, 3, 6, 8, 2, 4, 10, ], [66, 37, 42, 15, 91, 89, 76, 74, 53, 34, 82, 38, 28, 94, 48, 80, 19, 72, 63, 3, 17, 18, 81, 33, 71, 77, 62, 77, 36, 90, 67, 88, 29, 55, 22, 16, 57, 6, 84, 51, 24, 86, 93, 10, 0, 50, 46, 79, 87, 44, 4, 14, 23, 8, 25, 41, 59, 75, 35, 43, 83, 30, 68, 49, 54, 32, 22, 1, 69, 78, 60, 40, 31, 58, 11, 9, 65, 45, 52, 13, 70, 61, 22, 1, 69, 39, 73, 31, 92, 12, 5, 47, 2, 77, 26, 6, 77, 21, 7, 85, 56, 27, 20, 64, 77, ], [11, 3, 42, 53, 36, 17, 28, 30, 28, 26, 13, 20, 11, 5, 47, 25, 39, 50, 40, 52, 28, 48, 27, 43, 24, 37, 9, 35, 32, 15, 53, 12, 41, 21, 8, 31, 1, 7, 38, 2, 34, 45, 16, 53, 46, 51, 19, 29, 10, 23, 31, 55, 7, 54, 22, 34, 4, 53, 0, 14, 49, 31, 33, 7, 6, 22, 34, 18, 53, 44, 28, ], [39, 37, 19, 14, 26, 3, 21, 14, 8, 24, 36, 30, 2, 38, 22, 41, 1, 32, 9, 16, 29, 23, 11, 40, 28, 10, 4, 32, 6, 12, 17, 0, 35, 20, 31, 7, 18, 15, 42, 13, 34, 5, 33, 29, 25, 27, ], ]); debugger; console.log(document.cookie); debugger; catvm.memory.listeners.load[0](); catvm.memory.listeners.load[1](); debugger; debugger; screenXs2 = [ 409, 409, 408, 407, 406, 404, 404, 402, 402, 401, 400, 399, 398, 397, 396, 395, 393, 392, 391, 388, 387, 385, 384, 380, 378, 376, 373, 372, 368, 365, 361, 358, 355, 352, 350, 347, 345, 344, 341, 340, 339, 337, 336, 335, 334, 333, 332, 332, 331, 330, 327, 323, 319, 313, 310, 304, 300, 295, 289, 283, 280, 275, 271, 267, 264, 259, 255, 252, 249, 246, 241, 236, 232, 227, 222, 219, 215, 212, 208, 204, 201, 199, 195, 192, 189, 185, 183, 180, 176, 172, 168, 164, 160, 158, 155, 152, 150, 146, 143, 140, 136, 134, 132, 130, 127, 124, 122, 120, 118, 116, 112, 111, 109, 105, 104, 101, 99, 95, 92, 89, 88, 86, 83, 81, 80, 78, 76, 76, 74, 72, 70, 69, 68, 68, 67, 67, 66, 66, 66, 66, 66, 66, 66, 67, 67, 68, 70, 73, 77, 82, 87, 92, 98, 104, 108, 112, 118, 121, 127, 132, 136, 140, 146, 149, 156, 160, 164, 168, 172, 178, 182, 186, 192, 196, 202, 207, 212, 219, 224, 230, 236, 243, 249, 256, 262, 271, 277, 284, 291, 298, 304, 311, 318, 324, 330, 338, 346, 352, 360, 364, 369, 375, 378, 381, 384, 388, 393, 398, 402, 408, 412, 416, 420, 424, 428, 432, 436, 439, 442, 444, 446, 448, 448, 450, 451, 452, 452, 452, 452, 452, 451, 450, 448, 447, 444, 443, 440, 438, 434, 428, 423, 418, 411, 406, 398, 392, 384, 378, 371, 362, 354, 347, 341, 335, 330, 323, 316, 310, 303, 296, 288, 280, 273, 268, 261, 256, 249, 242, 233, 225, 219, 210, 204, 198, 192, 186, 180, 173, 168, 161, 155, 150, 145, 142, 137, 132, 128, 124, 120, 118, 115, 112, 108, 106, 103, 100, 97, 94, 92, 89, 87, 84, 83, 81, 80, 79, 76, 76, 76, 76, 76, 76, 76, 76, 76, 77, 79, 79, 81, 82, 85, 88, 92, 96, 100, 106, 112, 120, 124, 129, 135, 140, 144, 149, 156, 162, 168, 174, 180, 188, 193, 201, 207, 212, 219, 225, 231, 238, 245, 249, 256, 262, 268, 275, 284, 290, 296, 303, 309, 317, 324, 331, 340, 348, 356, 362, 368, 374, 379, 385, 392, 397, 403, 408, 414, 419, 423, 426, 428, 432, 435, 436, 438, 440, 441, 442, 444, 445, 447, 448, 448, 449, 450, 450, 450, 448, 445, 442, 436, 430, 423, 413, 404, 396, 387, 378, 369, 357, 348, 337, 328, 321, 315, 309, 301, 294, 288, 280, 275, 268, 261, 255, 248, 240, 234, 228, 222, 215, 208, 201, 192, 186, 179, 172, 167, 160, 152, 146, 142, 137, 132, 128, 124, 121, 118, 116, 114, 112, 112, 112, 112, 112, 112, 112, 113, 115, 116, 119, 123, 126, 132, 137, 143, 150, 157, 167, 175, 181, 187, 194, 200, 204, 211, 217, 223, 229, 236, 243, 249, 254, 260, 265, 268, 272, 276, 280, 283, 288, 290, 294, 296, 298, 301, 304, 306, 308, 312, 315, 317, 320, 324, 326, 329, 332, 333, 336, 339, 341, 344, 348, 352, 356, 359, 364, 368, 373, 380, 385, 390, 395, 400, 404, 407, 410, 413, 418, 422, 425, 431, 434, 436, 440, 442, 443, 444, 447, 448, 451, 453, 456, 459, 460, 462, 465, 467, 468, 470, 471, 472, 472, 472, 472, 472, 472, 472, 471, 469, 468, 466, 464, 461, 458, 455, 452, 449, 445, 442, 438, 434, 429, 424, 419, 413, 408, 403, 396, 392, 387, 381, 376, 368, 362, 354, 348, 341, 335, 328, 322, 317, 311, 304, 297, 290, 282, 276, 268, 260, 254, 249, 244, 237, 232, 226, 220, 214, 208, 204, 199, 195, 192, 188, 184, 181, 180, 178, 176, 175, 174, 172, 172, 172, 172, 172, 172, 173, 174, 176, 177, 180, 182, 185, 188, 192, 196, 200, 205, 209, 216, 224, 230, 236, 244, 252, 260, 266, 272, 279, 287, 293, 300, 308, 315, 322, 328, 335, 341, 345, 350, 354, 356, 360, 364, 367, 369, 373, 376, 377, 382, 384, 385, 388, 392, 396, 399, 401, 405, 408, 412, 415, 419, 423, 427, 431, 433, 437, 440, 444, 447, 449, 452, 456, 458, 460, 463, 466, 468, 469, 472, 473, 475, 476, 478, 479, 480, 481, 482, 484, 484, 486, 487, 488, 490, 490, 491, 492, 493, 494, 495, 496, 496, 497, 498, 499, 499, 499, 500, 500, 500, 500, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 501, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 501, 501, 501, 502, 503, 503, 504, 504, 504, 505, 505, 506, 507, 508, 508, 508, 509, 510, 510, 511, 511, 512, 512, 512, 513, 513, 514, 514, 515, 516, 516, 516, 516, 516, 517, 518, 519, 520, 520, 520, 521, 522, 523, 523, 524, 525, 526, 527, 528, 528, 529, 530, 531, 532, 532, 533, 534, 535, 536, 536, 537, 537 ] screenYs2 = [ 102, 103, 103, 104, 105, 105, 106, 107, 108, 108, 108, 108, 109, 110, 110, 111, 112, 113, 114, 116, 116, 117, 118, 120, 121, 123, 124, 125, 127, 128, 131, 132, 135, 136, 137, 138, 139, 140, 140, 142, 143, 144, 144, 145, 146, 146, 147, 148, 148, 148, 150, 152, 153, 155, 156, 159, 161, 164, 167, 170, 172, 175, 177, 181, 184, 186, 190, 192, 195, 197, 200, 204, 207, 211, 213, 217, 220, 223, 225, 228, 232, 235, 236, 240, 244, 247, 249, 252, 255, 260, 264, 267, 269, 272, 274, 276, 280, 284, 288, 290, 296, 298, 301, 304, 308, 311, 313, 316, 319, 322, 326, 327, 330, 334, 337, 340, 344, 349, 354, 360, 364, 366, 372, 375, 378, 381, 385, 389, 394, 400, 404, 408, 412, 416, 418, 421, 424, 425, 427, 428, 429, 430, 432, 432, 433, 434, 436, 436, 438, 439, 439, 440, 440, 440, 440, 439, 438, 436, 434, 432, 428, 427, 422, 418, 413, 408, 400, 395, 389, 383, 377, 368, 360, 352, 345, 339, 331, 322, 315, 307, 300, 292, 286, 280, 273, 264, 257, 251, 244, 238, 231, 224, 220, 213, 208, 203, 196, 192, 187, 184, 180, 179, 176, 175, 174, 173, 173, 172, 172, 171, 170, 170, 169, 168, 168, 168, 168, 168, 168, 168, 168, 168, 169, 169, 169, 169, 170, 171, 172, 173, 175, 178, 180, 183, 186, 188, 191, 194, 196, 202, 208, 212, 218, 224, 231, 237, 244, 253, 260, 267, 275, 280, 285, 291, 295, 301, 308, 312, 318, 322, 328, 334, 339, 343, 348, 352, 356, 360, 366, 370, 375, 380, 385, 391, 397, 401, 406, 411, 416, 421, 425, 429, 433, 436, 441, 446, 451, 456, 460, 463, 467, 470, 474, 477, 480, 484, 488, 492, 495, 500, 504, 508, 511, 514, 519, 522, 526, 529, 532, 533, 535, 537, 538, 540, 541, 541, 543, 544, 544, 545, 547, 548, 548, 548, 548, 548, 547, 544, 543, 540, 537, 534, 529, 524, 518, 511, 502, 492, 482, 469, 460, 445, 435, 424, 416, 401, 390, 373, 360, 349, 338, 328, 317, 308, 295, 284, 276, 268, 261, 251, 244, 237, 228, 220, 214, 209, 205, 202, 200, 197, 196, 192, 191, 190, 189, 188, 187, 187, 187, 187, 187, 187, 187, 188, 188, 188, 189, 190, 192, 192, 194, 195, 197, 200, 204, 208, 215, 220, 228, 236, 247, 257, 267, 279, 288, 295, 305, 314, 322, 331, 337, 344, 349, 356, 360, 366, 371, 376, 380, 385, 391, 396, 401, 405, 410, 416, 421, 427, 432, 438, 442, 448, 455, 461, 468, 475, 484, 491, 497, 503, 509, 516, 521, 528, 533, 538, 542, 547, 550, 552, 555, 558, 560, 562, 564, 566, 568, 571, 574, 576, 578, 580, 582, 583, 585, 585, 585, 584, 583, 581, 578, 575, 570, 565, 560, 551, 543, 532, 520, 510, 498, 484, 470, 458, 447, 436, 423, 410, 401, 392, 384, 378, 370, 364, 358, 353, 349, 343, 338, 331, 325, 320, 316, 312, 308, 304, 301, 295, 291, 283, 278, 275, 272, 266, 261, 257, 255, 249, 247, 244, 242, 240, 239, 238, 237, 236, 234, 234, 234, 234, 234, 233, 233, 233, 233, 233, 234, 236, 241, 244, 249, 252, 256, 262, 265, 268, 272, 275, 278, 281, 283, 285, 288, 289, 292, 295, 297, 300, 304, 307, 310, 315, 319, 324, 328, 332, 336, 339, 344, 348, 352, 357, 363, 366, 372, 379, 384, 388, 393, 399, 405, 411, 417, 421, 428, 434, 440, 447, 452, 459, 467, 472, 480, 487, 492, 501, 510, 519, 525, 532, 540, 546, 552, 560, 568, 578, 584, 590, 597, 604, 611, 616, 623, 628, 634, 640, 645, 651, 656, 661, 665, 667, 670, 672, 675, 676, 677, 678, 680, 680, 681, 682, 682, 682, 682, 681, 680, 677, 674, 670, 665, 660, 652, 644, 638, 631, 624, 610, 600, 589, 576, 565, 554, 544, 528, 513, 502, 491, 482, 473, 460, 451, 440, 432, 423, 415, 409, 400, 395, 389, 384, 377, 370, 363, 357, 351, 345, 340, 336, 329, 324, 319, 314, 311, 304, 301, 296, 292, 290, 287, 284, 283, 280, 279, 277, 276, 275, 274, 274, 274, 273, 273, 273, 273, 273, 273, 273, 274, 275, 275, 276, 277, 278, 279, 280, 281, 283, 284, 285, 286, 287, 288, 291, 292, 294, 295, 296, 299, 300, 302, 304, 306, 309, 310, 312, 313, 314, 317, 318, 321, 324, 326, 328, 331, 333, 336, 339, 340, 344, 348, 349, 351, 353, 356, 357, 360, 361, 362, 364, 365, 368, 370, 372, 374, 375, 376, 378, 380, 381, 383, 384, 385, 386, 387, 388, 390, 392, 393, 394, 395, 396, 397, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 415, 416, 416, 417, 418, 419, 420, 420, 421, 422, 423, 424, 425, 426, 427, 428, 428, 428, 428, 429, 430, 430, 431, 431, 432, 432, 432, 432, 432, 433, 434, 435, 435, 435, 435, 436, 436, 436, 437, 437, 438, 438, 439 ] timeStamps2 = [ 91162.5, 91171.30000007153, 91177.70000004768, 91185.70000004768, 91200.70000004768, 91207.5, 91223.80000007153, 91228.20000004768, 91237, 91242.5, 91252.30000007153, 91257.80000007153, 91266.80000007153, 91273.60000002384, 91281.20000004768, 91287.70000004768, 91295.20000004768, 91304, 91308.89999997616, 91319.39999997616, 91323.39999997616, 91331.70000004768, 91339.89999997616, 91347.30000007153, 91354.70000004768, 91361.10000002384, 91367.20000004768, 91375, 91384.10000002384, 91390.39999997616, 91398.5, 91406.5, 91412.60000002384, 91420.5, 91427.30000007153, 91435, 91440.70000004768, 91448.30000007153, 91457, 91464.30000007153, 91472.89999997616, 91478.5, 91486.70000004768, 91493.70000004768, 91502.39999997616, 91508.60000002384, 91516.89999997616, 91522.70000004768, 91530.70000004768, 91544.89999997616, 91817.70000004768, 91825.10000002384, 91832.70000004768, 91839.60000002384, 91846.70000004768, 91853.89999997616, 91862.30000007153, 91868.80000007153, 91876.80000007153, 91883.60000002384, 91891.20000004768, 91898.20000004768, 91906.60000002384, 91913, 91919.30000007153, 91927, 91935.10000002384, 91941.60000002384, 91950.80000007153, 91957.30000007153, 91965.10000002384, 91972, 91979.70000004768, 91985.5, 91992.70000004768, 92002.30000007153, 92007.5, 92016.30000007153, 92023.30000007153, 92030.30000007153, 92038.70000004768, 92045.20000004768, 92053, 92060.30000007153, 92067.5, 92075.30000007153, 92082.60000002384, 92087.80000007153, 92096.80000007153, 92104.70000004768, 92109.80000007153, 92118.89999997616, 92126.89999997616, 92133.30000007153, 92140.80000007153, 92149.20000004768, 92155.70000004768, 92163, 92170.60000002384, 92178.39999997616, 92184.20000004768, 92193.70000004768, 92198.30000007153, 92206.80000007153, 92214.60000002384, 92222.60000002384, 92228.60000002384, 92236.20000004768, 92243.89999997616, 92252, 92258.20000004768, 92266.39999997616, 92273.80000007153, 92280.80000007153, 92289, 92295.20000004768, 92302.5, 92310.10000002384, 92318.70000004768, 92323.60000002384, 92332.60000002384, 92339.39999997616, 92347.39999997616, 92354.10000002384, 92361.20000004768, 92369.70000004768, 92375.89999997616, 92384.39999997616, 92390.70000004768, 92398, 92406.89999997616, 92412.39999997616, 92420.5, 92428, 92434.39999997616, 92442.70000004768, 92448.70000004768, 92457.20000004768, 92464.30000007153, 92473.10000002384, 92478.30000007153, 92486.39999997616, 92493.39999997616, 92502, 92508.60000002384, 92515, 92524.5, 92529.10000002384, 92540.10000002384, 92544, 92553.89999997616, 92558.80000007153, 92567.89999997616, 92574, 92582.89999997616, 92587.70000004768, 92596.89999997616, 92604.30000007153, 92610.30000007153, 92619.39999997616, 92626, 92633.80000007153, 92640.70000004768, 92649.89999997616, 92655, 92663.70000004768, 92670.20000004768, 92677.89999997616, 92684.70000004768, 92691.89999997616, 92700.20000004768, 92706.89999997616, 92713.89999997616, 92722.30000007153, 92729.10000002384, 92735.70000004768, 92744.20000004768, 92751.20000004768, 92758.70000004768, 92766.30000007153, 92773.20000004768, 92780.89999997616, 92788.70000004768, 92795.20000004768, 92802.89999997616, 92810.30000007153, 92817.80000007153, 92823.80000007153, 92833.20000004768, 92837.5, 92845.80000007153, 92855.10000002384, 92860, 92869.80000007153, 92875.60000002384, 92884, 92889.30000007153, 92897.70000004768, 92904.89999997616, 92911.30000007153, 92918.89999997616, 92927.80000007153, 92935.60000002384, 92940.60000002384, 92948.80000007153, 92957.30000007153, 92964.20000004768, 92973.10000002384, 92978.30000007153, 92986.39999997616, 92994.20000004768, 93000.60000002384, 93009.30000007153, 93015.70000004768, 93023.89999997616, 93030, 93039.10000002384, 93044.60000002384, 93053.39999997616, 93059.80000007153, 93067.70000004768, 93074.39999997616, 93081.39999997616, 93089.70000004768, 93104.70000004768, 93126, 93133.89999997616, 93140.39999997616, 93148.30000007153, 93155.70000004768, 93163.10000002384, 93170.89999997616, 93177.10000002384, 93185.70000004768, 93192.10000002384, 93201.60000002384, 93205.70000004768, 93215.30000007153, 93221.60000002384, 93228.89999997616, 93237.20000004768, 93242.5, 93250.70000004768, 93258.70000004768, 93264.39999997616, 93273.70000004768, 93279.60000002384, 93288.5, 93295.5, 93300.89999997616, 93309.30000007153, 93317.70000004768, 93324.39999997616, 93332.10000002384, 93339, 93346.80000007153, 93354.5, 93360.60000002384, 93368.80000007153, 93376.5, 93384, 93390.5, 93397.5, 93406.60000002384, 93412.10000002384, 93420.60000002384, 93426, 93435, 93441.89999997616, 93448.30000007153, 93457.10000002384, 93464.20000004768, 93472.10000002384, 93479.5, 93486.20000004768, 93493.70000004768, 93501.60000002384, 93508.30000007153, 93516.5, 93522.60000002384, 93531.20000004768, 93537.60000002384, 93545.39999997616, 93551.89999997616, 93560.10000002384, 93567.80000007153, 93574.60000002384, 93582.39999997616, 93589.70000004768, 93596.30000007153, 93604.70000004768, 93610.10000002384, 93620, 93625.89999997616, 93634.20000004768, 93640, 93649.30000007153, 93656.30000007153, 93662.5, 93671.20000004768, 93676.20000004768, 93686.10000002384, 93692.20000004768, 93699.70000004768, 93707.39999997616, 93715, 93721.70000004768, 93729.5, 93737, 93742.80000007153, 93752.30000007153, 93757.60000002384, 93767.39999997616, 93773, 93781.30000007153, 93788.60000002384, 93793.70000004768, 93803, 93808.89999997616, 93817.5, 93824, 93832.30000007153, 93839.80000007153, 93847.20000004768, 93853, 93861.5, 93868.20000004768, 93876.30000007153, 93884.10000002384, 93890, 93898.20000004768, 93906.20000004768, 93912.39999997616, 93920.10000002384, 93926.70000004768, 93935.89999997616, 93941.89999997616, 93950.60000002384, 93957, 93965.10000002384, 93972, 93979.10000002384, 93984.89999997616, 93993.70000004768, 93999.70000004768, 94009.5, 94015.5, 94023.60000002384, 94030.60000002384, 94038.30000007153, 94045.10000002384, 94056.20000004768, 94058.20000004768, 94066.70000004768, 94075.20000004768, 94082.60000002384, 94088.89999997616, 94095.70000004768, 94104, 94111.5, 94118.89999997616, 94124.30000007153, 94134.20000004768, 94139.89999997616, 94148.89999997616, 94155.70000004768, 94163.39999997616, 94168.60000002384, 94176, 94184.89999997616, 94192.70000004768, 94199.5, 94207.5, 94213.80000007153, 94222, 94229.5, 94236.20000004768, 94242.89999997616, 94252.10000002384, 94258, 94266.60000002384, 94273.30000007153, 94280.70000004768, 94288.89999997616, 94293.30000007153, 94302.60000002384, 94310.10000002384, 94317.70000004768, 94332.20000004768, 94339.39999997616, 94354.39999997616, 94360.70000004768, 94376.30000007153, 94384.10000002384, 94389.89999997616, 94398.39999997616, 94403.80000007153, 94411.39999997616, 94421.30000007153, 94426.89999997616, 94434.39999997616, 94442.89999997616, 94448.20000004768, 94456.70000004768, 94464.39999997616, 94472.60000002384, 94478.30000007153, 94486.80000007153, 94493.10000002384, 94501.60000002384, 94507.39999997616, 94516.89999997616, 94522.70000004768, 94530.5, 94538.70000004768, 94545.20000004768, 94553.20000004768, 94559.30000007153, 94568, 94573.89999997616, 94581.30000007153, 94590.10000002384, 94596.60000002384, 94605.20000004768, 94610.89999997616, 94619.10000002384, 94625.89999997616, 94634.20000004768, 94639.80000007153, 94647.60000002384, 94656.10000002384, 94662.5, 94670.80000007153, 94676.60000002384, 94686, 94692, 94700.60000002384, 94706.20000004768, 94714.70000004768, 94722.10000002384, 94729.10000002384, 94735.30000007153, 94743.80000007153, 94751.80000007153, 94758.20000004768, 94764, 94773.89999997616, 94780.5, 94787.20000004768, 94795.70000004768, 94802.30000007153, 94810.10000002384, 94817.89999997616, 94824.10000002384, 94832.30000007153, 94839.20000004768, 94847.10000002384, 94860.89999997616, 94868.89999997616, 94875.39999997616, 94883.39999997616, 94891.80000007153, 94897.39999997616, 94905.80000007153, 94913.20000004768, 94920, 94928, 94934.80000007153, 94942.70000004768, 94949.5, 94956.60000002384, 94965.10000002384, 94971.60000002384, 94979, 94987.70000004768, 94992.20000004768, 95001.60000002384, 95008.89999997616, 95015.5, 95022.5, 95031, 95036.70000004768, 95044.89999997616, 95052, 95059.70000004768, 95067.10000002384, 95075.39999997616, 95080.80000007153, 95089.39999997616, 95097.39999997616, 95104.39999997616, 95110.89999997616, 95119.30000007153, 95125.5, 95133.89999997616, 95140.20000004768, 95148.39999997616, 95155.80000007153, 95162.80000007153, 95170.5, 95177.60000002384, 95184.5, 95192.60000002384, 95199.70000004768, 95207.20000004768, 95213.70000004768, 95222.5, 95229, 95236.60000002384, 95243.70000004768, 95251.80000007153, 95258.10000002384, 95266.20000004768, 95273, 95280.70000004768, 95288.80000007153, 95294.10000002384, 95304.20000004768, 95309, 95315.5, 95324.20000004768, 95332.20000004768, 95337.89999997616, 95347.5, 95352.20000004768, 95360.80000007153, 95369.39999997616, 95375.70000004768, 95382.5, 95390.39999997616, 95398.10000002384, 95405.70000004768, 95412.89999997616, 95420.39999997616, 95427.80000007153, 95433.80000007153, 95743.70000004768, 95751.5, 95758.39999997616, 95766.5, 95772.30000007153, 95779, 95788.60000002384, 95795.10000002384, 95803, 95808.30000007153, 95818.30000007153, 95823.39999997616, 95833.10000002384, 95839.5, 95847.20000004768, 95853.89999997616, 95860.89999997616, 95868.10000002384, 95875.39999997616, 95883.30000007153, 95891.30000007153, 95898.10000002384, 95905.10000002384, 95913.80000007153, 95919.5, 95926.60000002384, 95935.70000004768, 95942.10000002384, 95950.10000002384, 95956, 95964.30000007153, 95972, 95979.10000002384, 95986.39999997616, 95992.20000004768, 96001.60000002384, 96008.60000002384, 96014.70000004768, 96023.80000007153, 96029.70000004768, 96038.60000002384, 96045.5, 96051.20000004768, 96060.20000004768, 96067.5, 96074.10000002384, 96082.20000004768, 96089.89999997616, 96095.10000002384, 96105.5, 96109.89999997616, 96119.20000004768, 96125.80000007153, 96132.39999997616, 96141.39999997616, 96146.60000002384, 96153.80000007153, 96162.30000007153, 96171, 96177, 96185.30000007153, 96191.60000002384, 96200.5, 96205.89999997616, 96215.10000002384, 96221.30000007153, 96229, 96236.70000004768, 96243, 96252.10000002384, 96257.80000007153, 96266.20000004768, 96272.10000002384, 96281.10000002384, 96287.70000004768, 96294.70000004768, 96303.30000007153, 96308.89999997616, 96317.70000004768, 96324.5, 96332.5, 96338.60000002384, 96347, 96354, 96361.30000007153, 96369.20000004768, 96376, 96381.60000002384, 96392.20000004768, 96397.30000007153, 96405.20000004768, 96412.10000002384, 96421.30000007153, 96425.89999997616, 96435.39999997616, 96441.5, 96450.39999997616, 96455.80000007153, 96465.10000002384, 96471.5, 96479.30000007153, 96486.10000002384, 96493.70000004768, 96501.5, 96508, 96516.39999997616, 96521.89999997616, 96531.20000004768, 96538.20000004768, 96545, 96553, 96558.70000004768, 96568.10000002384, 96574.30000007153, 96582.5, 96588.5, 96597.5, 96602.30000007153, 96611.89999997616, 96618.60000002384, 96625.89999997616, 96633.70000004768, 96641.30000007153, 96648.30000007153, 96655.10000002384, 96662.89999997616, 96668.39999997616, 96675.80000007153, 96683.10000002384, 96690.5, 96697.80000007153, 96705.10000002384, 96712.60000002384, 96719.80000007153, 96727.10000002384, 96734.5, 96741.60000002384, 96749.10000002384, 96756.70000004768, 96763.80000007153, 96771.30000007153, 96778.5, 96786.10000002384, 96793.30000007153, 96800.60000002384, 96808.20000004768, 96815.39999997616, 96822.89999997616, 96830.39999997616, 96837.5, 96846.10000002384, 96853.5, 96860.89999997616, 96868.20000004768, 96876.10000002384, 96883.70000004768, 96890.80000007153, 96898.30000007153, 96905.10000002384, 96912.70000004768, 96919.60000002384, 96926.60000002384, 96935.70000004768, 96941.5, 96948.89999997616, 96957.60000002384, 96964.10000002384, 96970.60000002384, 96978.89999997616, 96993.60000002384, 97000.39999997616, 97016.10000002384, 97022, 97030.30000007153, 97038.20000004768, 97044.60000002384, 97053.39999997616, 97059, 97068, 97074, 97082.70000004768, 97088.20000004768, 97097.20000004768, 97104.80000007153, 97110.89999997616, 97119.5, 97125.20000004768, 97133.30000007153, 97140.39999997616, 97148.89999997616, 97154.80000007153, 97163.5, 97170.39999997616, 97177.80000007153, 97183.89999997616, 97191.70000004768, 97200.5, 97205.30000007153, 97214.80000007153, 97221.70000004768, 97229.5, 97235.89999997616, 97243.80000007153, 97251.39999997616, 97258.30000007153, 97266.20000004768, 97272.60000002384, 97280.10000002384, 97288.20000004768, 97295.80000007153, 97300.70000004768, 97309.5, 97318, 97331.30000007153, 97339.89999997616, 97346.60000002384, 97354.30000007153, 97361.39999997616, 97369.30000007153, 97375, 97384, 97388.80000007153, 97398.89999997616, 97404.39999997616, 97413.39999997616, 97421.30000007153, 97425.89999997616, 97442.89999997616, 97449.39999997616, 97457.30000007153, 97464.20000004768, 97479.60000002384, 97492.89999997616, 97500.10000002384, 97508.80000007153, 97515.30000007153, 97521.70000004768, 97530.70000004768, 97537.39999997616, 97553.10000002384, 97559.20000004768, 97574.5, 97582.5, 97588.39999997616, 97595.80000007153, 97611.60000002384, 97616.80000007153, 97634.10000002384, 97640.10000002384, 97655.20000004768, 97663.20000004768, 97670.39999997616, 97690.89999997616, 97697.80000007153, 97707.60000002384, 97714, 97738.20000004768, 97742.89999997616, 97751.39999997616, 97758.20000004768, 97781.5, 97787.20000004768, 97803.30000007153, 97808.80000007153, 97815.70000004768, 97824.20000004768, 97833.60000002384, 97838.20000004768, 97853.70000004768, 97861.70000004768, 97868, 97883.10000002384, 97891.30000007153, 97897.80000007153, 97920.5, 97950.20000004768, 97964.20000004768, 97971.39999997616, 98008.60000002384, 98016.10000002384, 98074.10000002384, 98104.39999997616, 98118.70000004768, 98125.60000002384, 98141, 98170.89999997616, 98207.70000004768, 98212.80000007153, 98221.20000004768, 98259.10000002384, 98280.70000004768, 98318, 98354.20000004768, 98398.5, 98403.89999997616, 98427.30000007153, 98457.5, 98471, 98478.60000002384, 98546, 98566.39999997616, 98589.60000002384, 98604.5, 98610.70000004768, 98671, 98691.39999997616 ] function update_cookie(cookie){ document.cookie = cookie; for(var i=0;i