forked from ruzyysmartt/vocaloid-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvar Module;if(!Modul.txt
More file actions
1 lines (1 loc) · 78.1 KB
/
var Module;if(!Modul.txt
File metadata and controls
1 lines (1 loc) · 78.1 KB
1
var Module;if(!Module)Module=(typeof Module!=="undefined"?Module:null)||{};var moduleOverrides={};for(var key in Module){if(Module.hasOwnProperty(key)){moduleOverrides[key]=Module[key]}}var ENVIRONMENT_IS_WEB=typeof window==="object";var ENVIRONMENT_IS_WORKER=typeof importScripts==="function";var ENVIRONMENT_IS_NODE=typeof process==="object"&&typeof require==="function"&&!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_WORKER;var ENVIRONMENT_IS_SHELL=!ENVIRONMENT_IS_WEB&&!ENVIRONMENT_IS_NODE&&!ENVIRONMENT_IS_WORKER;if(ENVIRONMENT_IS_NODE){if(!Module["print"])Module["print"]=function print(x){process["stdout"].write(x+"\n")};if(!Module["printErr"])Module["printErr"]=function printErr(x){process["stderr"].write(x+"\n")};var nodeFS=require("fs");var nodePath=require("path");Module["read"]=function read(filename,binary){filename=nodePath["normalize"](filename);var ret=nodeFS["readFileSync"](filename);if(!ret&&filename!=nodePath["resolve"](filename)){filename=path.join(__dirname,"..","src",filename);ret=nodeFS["readFileSync"](filename)}if(ret&&!binary)ret=ret.toString();return ret};Module["readBinary"]=function readBinary(filename){var ret=Module["read"](filename,true);if(!ret.buffer){ret=new Uint8Array(ret)}assert(ret.buffer);return ret};Module["load"]=function load(f){globalEval(read(f))};if(!Module["thisProgram"]){if(process["argv"].length>1){Module["thisProgram"]=process["argv"][1].replace(/\\/g,"/")}else{Module["thisProgram"]="unknown-program"}}Module["arguments"]=process["argv"].slice(2);if(typeof module!=="undefined"){module["exports"]=Module}process["on"]("uncaughtException",(function(ex){if(!(ex instanceof ExitStatus)){throw ex}}));Module["inspect"]=(function(){return"[Emscripten Module object]"})}else if(ENVIRONMENT_IS_SHELL){if(!Module["print"])Module["print"]=print;if(typeof printErr!="undefined")Module["printErr"]=printErr;if(typeof read!="undefined"){Module["read"]=read}else{Module["read"]=function read(){throw"no read() available (jsc?)"}}Module["readBinary"]=function readBinary(f){if(typeof readbuffer==="function"){return new Uint8Array(readbuffer(f))}var data=read(f,"binary");assert(typeof data==="object");return data};if(typeof scriptArgs!="undefined"){Module["arguments"]=scriptArgs}else if(typeof arguments!="undefined"){Module["arguments"]=arguments}}else if(ENVIRONMENT_IS_WEB||ENVIRONMENT_IS_WORKER){Module["read"]=function read(url){var xhr=new XMLHttpRequest;xhr.open("GET",url,false);xhr.send(null);return xhr.responseText};if(typeof arguments!="undefined"){Module["arguments"]=arguments}if(typeof console!=="undefined"){if(!Module["print"])Module["print"]=function print(x){console.log(x)};if(!Module["printErr"])Module["printErr"]=function printErr(x){console.log(x)}}else{var TRY_USE_DUMP=false;if(!Module["print"])Module["print"]=TRY_USE_DUMP&&typeof dump!=="undefined"?(function(x){dump(x)}):(function(x){})}if(ENVIRONMENT_IS_WORKER){Module["load"]=importScripts}if(typeof Module["setWindowTitle"]==="undefined"){Module["setWindowTitle"]=(function(title){document.title=title})}}else{throw"Unknown runtime environment. Where are we?"}function globalEval(x){throw"NO_DYNAMIC_EXECUTION was set, cannot eval"}if(!Module["load"]&&Module["read"]){Module["load"]=function load(f){globalEval(Module["read"](f))}}if(!Module["print"]){Module["print"]=(function(){})}if(!Module["printErr"]){Module["printErr"]=Module["print"]}if(!Module["arguments"]){Module["arguments"]=[]}if(!Module["thisProgram"]){Module["thisProgram"]="./this.program"}Module.print=Module["print"];Module.printErr=Module["printErr"];Module["preRun"]=[];Module["postRun"]=[];for(var key in moduleOverrides){if(moduleOverrides.hasOwnProperty(key)){Module[key]=moduleOverrides[key]}}var Runtime={setTempRet0:(function(value){tempRet0=value}),getTempRet0:(function(){return tempRet0}),stackSave:(function(){return STACKTOP}),stackRestore:(function(stackTop){STACKTOP=stackTop}),getNativeTypeSize:(function(type){switch(type){case"i1":case"i8":return 1;case"i16":return 2;case"i32":return 4;case"i64":return 8;case"float":return 4;case"double":return 8;default:{if(type[type.length-1]==="*"){return Runtime.QUANTUM_SIZE}else if(type[0]==="i"){var bits=parseInt(type.substr(1));assert(bits%8===0);return bits/8}else{return 0}}}}),getNativeFieldSize:(function(type){return Math.max(Runtime.getNativeTypeSize(type),Runtime.QUANTUM_SIZE)}),STACK_ALIGN:16,prepVararg:(function(ptr,type){if(type==="double"||type==="i64"){if(ptr&7){assert((ptr&7)===4);ptr+=4}}else{assert((ptr&3)===0)}return ptr}),getAlignSize:(function(type,size,vararg){if(!vararg&&(type=="i64"||type=="double"))return 8;if(!type)return Math.min(size,8);return Math.min(size||(type?Runtime.getNativeFieldSize(type):0),Runtime.QUANTUM_SIZE)}),dynCall:(function(sig,ptr,args){if(args&&args.length){if(!args.splice)args=Array.prototype.slice.call(args);args.splice(0,0,ptr);return Module["dynCall_"+sig].apply(null,args)}else{return Module["dynCall_"+sig].call(null,ptr)}}),functionPointers:[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],addFunction:(function(func){for(var i=0;i<Runtime.functionPointers.length;i++){if(!Runtime.functionPointers[i]){Runtime.functionPointers[i]=func;return 2*(1+i)}}throw"Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS."}),removeFunction:(function(index){Runtime.functionPointers[(index-2)/2]=null}),warnOnce:(function(text){if(!Runtime.warnOnce.shown)Runtime.warnOnce.shown={};if(!Runtime.warnOnce.shown[text]){Runtime.warnOnce.shown[text]=1;Module.printErr(text)}}),funcWrappers:{},getFuncWrapper:(function(func,sig){assert(sig);if(!Runtime.funcWrappers[sig]){Runtime.funcWrappers[sig]={}}var sigCache=Runtime.funcWrappers[sig];if(!sigCache[func]){sigCache[func]=function dynCall_wrapper(){return Runtime.dynCall(sig,func,arguments)}}return sigCache[func]}),getCompilerSetting:(function(name){throw"You must build with -s RETAIN_COMPILER_SETTINGS=1 for Runtime.getCompilerSetting or emscripten_get_compiler_setting to work"}),stackAlloc:(function(size){var ret=STACKTOP;STACKTOP=STACKTOP+size|0;STACKTOP=STACKTOP+15&-16;return ret}),staticAlloc:(function(size){var ret=STATICTOP;STATICTOP=STATICTOP+size|0;STATICTOP=STATICTOP+15&-16;return ret}),dynamicAlloc:(function(size){var ret=DYNAMICTOP;DYNAMICTOP=DYNAMICTOP+size|0;DYNAMICTOP=DYNAMICTOP+15&-16;if(DYNAMICTOP>=TOTAL_MEMORY){var success=enlargeMemory();if(!success){DYNAMICTOP=ret;return 0}}return ret}),alignMemory:(function(size,quantum){var ret=size=Math.ceil(size/(quantum?quantum:16))*(quantum?quantum:16);return ret}),makeBigInt:(function(low,high,unsigned){var ret=unsigned?+(low>>>0)+ +(high>>>0)*+4294967296:+(low>>>0)+ +(high|0)*+4294967296;return ret}),GLOBAL_BASE:8,QUANTUM_SIZE:4,__dummy__:0};Module["Runtime"]=Runtime;var __THREW__=0;var ABORT=false;var EXITSTATUS=0;var undef=0;var tempValue,tempInt,tempBigInt,tempInt2,tempBigInt2,tempPair,tempBigIntI,tempBigIntR,tempBigIntS,tempBigIntP,tempBigIntD,tempDouble,tempFloat;var tempI64,tempI64b;var tempRet0,tempRet1,tempRet2,tempRet3,tempRet4,tempRet5,tempRet6,tempRet7,tempRet8,tempRet9;function assert(condition,text){if(!condition){abort("Assertion failed: "+text)}}var globalScope=this;function getCFunc(ident){var func=Module["_"+ident];if(!func){abort("NO_DYNAMIC_EXECUTION was set, cannot eval - ccall/cwrap are not functional")}assert(func,"Cannot call unknown function "+ident+" (perhaps LLVM optimizations or closure removed it?)");return func}var cwrap,ccall;((function(){var JSfuncs={"stackSave":(function(){Runtime.stackSave()}),"stackRestore":(function(){Runtime.stackRestore()}),"arrayToC":(function(arr){var ret=Runtime.stackAlloc(arr.length);writeArrayToMemory(arr,ret);return ret}),"stringToC":(function(str){var ret=0;if(str!==null&&str!==undefined&&str!==0){ret=Runtime.stackAlloc((str.length<<2)+1);writeStringToMemory(str,ret)}return ret})};var toC={"string":JSfuncs["stringToC"],"array":JSfuncs["arrayToC"]};ccall=function ccallFunc(ident,returnType,argTypes,args,opts){var func=getCFunc(ident);var cArgs=[];var stack=0;if(args){for(var i=0;i<args.length;i++){var converter=toC[argTypes[i]];if(converter){if(stack===0)stack=Runtime.stackSave();cArgs[i]=converter(args[i])}else{cArgs[i]=args[i]}}}var ret=func.apply(null,cArgs);if(returnType==="string")ret=Pointer_stringify(ret);if(stack!==0){if(opts&&opts.async){EmterpreterAsync.asyncFinalizers.push((function(){Runtime.stackRestore(stack)}));return}Runtime.stackRestore(stack)}return ret};cwrap=function cwrap(ident,returnType,argTypes){return(function(){return ccall(ident,returnType,argTypes,arguments)})}}))();Module["ccall"]=ccall;Module["cwrap"]=cwrap;function setValue(ptr,value,type,noSafe){type=type||"i8";if(type.charAt(type.length-1)==="*")type="i32";switch(type){case"i1":HEAP8[ptr>>0]=value;break;case"i8":HEAP8[ptr>>0]=value;break;case"i16":HEAP16[ptr>>1]=value;break;case"i32":HEAP32[ptr>>2]=value;break;case"i64":tempI64=[value>>>0,(tempDouble=value,+Math_abs(tempDouble)>=+1?tempDouble>+0?(Math_min(+Math_floor(tempDouble/+4294967296),+4294967295)|0)>>>0:~~+Math_ceil((tempDouble- +(~~tempDouble>>>0))/+4294967296)>>>0:0)],HEAP32[ptr>>2]=tempI64[0],HEAP32[ptr+4>>2]=tempI64[1];break;case"float":HEAPF32[ptr>>2]=value;break;case"double":HEAPF64[ptr>>3]=value;break;default:abort("invalid type for setValue: "+type)}}Module["setValue"]=setValue;function getValue(ptr,type,noSafe){type=type||"i8";if(type.charAt(type.length-1)==="*")type="i32";switch(type){case"i1":return HEAP8[ptr>>0];case"i8":return HEAP8[ptr>>0];case"i16":return HEAP16[ptr>>1];case"i32":return HEAP32[ptr>>2];case"i64":return HEAP32[ptr>>2];case"float":return HEAPF32[ptr>>2];case"double":return HEAPF64[ptr>>3];default:abort("invalid type for setValue: "+type)}return null}Module["getValue"]=getValue;var ALLOC_NORMAL=0;var ALLOC_STACK=1;var ALLOC_STATIC=2;var ALLOC_DYNAMIC=3;var ALLOC_NONE=4;Module["ALLOC_NORMAL"]=ALLOC_NORMAL;Module["ALLOC_STACK"]=ALLOC_STACK;Module["ALLOC_STATIC"]=ALLOC_STATIC;Module["ALLOC_DYNAMIC"]=ALLOC_DYNAMIC;Module["ALLOC_NONE"]=ALLOC_NONE;function allocate(slab,types,allocator,ptr){var zeroinit,size;if(typeof slab==="number"){zeroinit=true;size=slab}else{zeroinit=false;size=slab.length}var singleType=typeof types==="string"?types:null;var ret;if(allocator==ALLOC_NONE){ret=ptr}else{ret=[_malloc,Runtime.stackAlloc,Runtime.staticAlloc,Runtime.dynamicAlloc][allocator===undefined?ALLOC_STATIC:allocator](Math.max(size,singleType?1:types.length))}if(zeroinit){var ptr=ret,stop;assert((ret&3)==0);stop=ret+(size&~3);for(;ptr<stop;ptr+=4){HEAP32[ptr>>2]=0}stop=ret+size;while(ptr<stop){HEAP8[ptr++>>0]=0}return ret}if(singleType==="i8"){if(slab.subarray||slab.slice){HEAPU8.set(slab,ret)}else{HEAPU8.set(new Uint8Array(slab),ret)}return ret}var i=0,type,typeSize,previousType;while(i<size){var curr=slab[i];if(typeof curr==="function"){curr=Runtime.getFunctionIndex(curr)}type=singleType||types[i];if(type===0){i++;continue}if(type=="i64")type="i32";setValue(ret+i,curr,type);if(previousType!==type){typeSize=Runtime.getNativeTypeSize(type);previousType=type}i+=typeSize}return ret}Module["allocate"]=allocate;function getMemory(size){if(!staticSealed)return Runtime.staticAlloc(size);if(typeof _sbrk!=="undefined"&&!_sbrk.called||!runtimeInitialized)return Runtime.dynamicAlloc(size);return _malloc(size)}Module["getMemory"]=getMemory;function Pointer_stringify(ptr,length){if(length===0||!ptr)return"";var hasUtf=0;var t;var i=0;while(1){t=HEAPU8[ptr+i>>0];hasUtf|=t;if(t==0&&!length)break;i++;if(length&&i==length)break}if(!length)length=i;var ret="";if(hasUtf<128){var MAX_CHUNK=1024;var curr;while(length>0){curr=String.fromCharCode.apply(String,HEAPU8.subarray(ptr,ptr+Math.min(length,MAX_CHUNK)));ret=ret?ret+curr:curr;ptr+=MAX_CHUNK;length-=MAX_CHUNK}return ret}return Module["UTF8ToString"](ptr)}Module["Pointer_stringify"]=Pointer_stringify;function AsciiToString(ptr){var str="";while(1){var ch=HEAP8[ptr++>>0];if(!ch)return str;str+=String.fromCharCode(ch)}}Module["AsciiToString"]=AsciiToString;function stringToAscii(str,outPtr){return writeAsciiToMemory(str,outPtr,false)}Module["stringToAscii"]=stringToAscii;function UTF8ArrayToString(u8Array,idx){var u0,u1,u2,u3,u4,u5;var str="";while(1){u0=u8Array[idx++];if(!u0)return str;if(!(u0&128)){str+=String.fromCharCode(u0);continue}u1=u8Array[idx++]&63;if((u0&224)==192){str+=String.fromCharCode((u0&31)<<6|u1);continue}u2=u8Array[idx++]&63;if((u0&240)==224){u0=(u0&15)<<12|u1<<6|u2}else{u3=u8Array[idx++]&63;if((u0&248)==240){u0=(u0&7)<<18|u1<<12|u2<<6|u3}else{u4=u8Array[idx++]&63;if((u0&252)==248){u0=(u0&3)<<24|u1<<18|u2<<12|u3<<6|u4}else{u5=u8Array[idx++]&63;u0=(u0&1)<<30|u1<<24|u2<<18|u3<<12|u4<<6|u5}}}if(u0<65536){str+=String.fromCharCode(u0)}else{var ch=u0-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}}}Module["UTF8ArrayToString"]=UTF8ArrayToString;function UTF8ToString(ptr){return UTF8ArrayToString(HEAPU8,ptr)}Module["UTF8ToString"]=UTF8ToString;function stringToUTF8Array(str,outU8Array,outIdx,maxBytesToWrite){if(!(maxBytesToWrite>0))return 0;var startIdx=outIdx;var endIdx=outIdx+maxBytesToWrite-1;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127){if(outIdx>=endIdx)break;outU8Array[outIdx++]=u}else if(u<=2047){if(outIdx+1>=endIdx)break;outU8Array[outIdx++]=192|u>>6;outU8Array[outIdx++]=128|u&63}else if(u<=65535){if(outIdx+2>=endIdx)break;outU8Array[outIdx++]=224|u>>12;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else if(u<=2097151){if(outIdx+3>=endIdx)break;outU8Array[outIdx++]=240|u>>18;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else if(u<=67108863){if(outIdx+4>=endIdx)break;outU8Array[outIdx++]=248|u>>24;outU8Array[outIdx++]=128|u>>18&63;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}else{if(outIdx+5>=endIdx)break;outU8Array[outIdx++]=252|u>>30;outU8Array[outIdx++]=128|u>>24&63;outU8Array[outIdx++]=128|u>>18&63;outU8Array[outIdx++]=128|u>>12&63;outU8Array[outIdx++]=128|u>>6&63;outU8Array[outIdx++]=128|u&63}}outU8Array[outIdx]=0;return outIdx-startIdx}Module["stringToUTF8Array"]=stringToUTF8Array;function stringToUTF8(str,outPtr,maxBytesToWrite){return stringToUTF8Array(str,HEAPU8,outPtr,maxBytesToWrite)}Module["stringToUTF8"]=stringToUTF8;function lengthBytesUTF8(str){var len=0;for(var i=0;i<str.length;++i){var u=str.charCodeAt(i);if(u>=55296&&u<=57343)u=65536+((u&1023)<<10)|str.charCodeAt(++i)&1023;if(u<=127){++len}else if(u<=2047){len+=2}else if(u<=65535){len+=3}else if(u<=2097151){len+=4}else if(u<=67108863){len+=5}else{len+=6}}return len}Module["lengthBytesUTF8"]=lengthBytesUTF8;function UTF16ToString(ptr){var i=0;var str="";while(1){var codeUnit=HEAP16[ptr+i*2>>1];if(codeUnit==0)return str;++i;str+=String.fromCharCode(codeUnit)}}Module["UTF16ToString"]=UTF16ToString;function stringToUTF16(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<2)return 0;maxBytesToWrite-=2;var startPtr=outPtr;var numCharsToWrite=maxBytesToWrite<str.length*2?maxBytesToWrite/2:str.length;for(var i=0;i<numCharsToWrite;++i){var codeUnit=str.charCodeAt(i);HEAP16[outPtr>>1]=codeUnit;outPtr+=2}HEAP16[outPtr>>1]=0;return outPtr-startPtr}Module["stringToUTF16"]=stringToUTF16;function lengthBytesUTF16(str){return str.length*2}Module["lengthBytesUTF16"]=lengthBytesUTF16;function UTF32ToString(ptr){var i=0;var str="";while(1){var utf32=HEAP32[ptr+i*4>>2];if(utf32==0)return str;++i;if(utf32>=65536){var ch=utf32-65536;str+=String.fromCharCode(55296|ch>>10,56320|ch&1023)}else{str+=String.fromCharCode(utf32)}}}Module["UTF32ToString"]=UTF32ToString;function stringToUTF32(str,outPtr,maxBytesToWrite){if(maxBytesToWrite===undefined){maxBytesToWrite=2147483647}if(maxBytesToWrite<4)return 0;var startPtr=outPtr;var endPtr=startPtr+maxBytesToWrite-4;for(var i=0;i<str.length;++i){var codeUnit=str.charCodeAt(i);if(codeUnit>=55296&&codeUnit<=57343){var trailSurrogate=str.charCodeAt(++i);codeUnit=65536+((codeUnit&1023)<<10)|trailSurrogate&1023}HEAP32[outPtr>>2]=codeUnit;outPtr+=4;if(outPtr+4>endPtr)break}HEAP32[outPtr>>2]=0;return outPtr-startPtr}Module["stringToUTF32"]=stringToUTF32;function lengthBytesUTF32(str){var len=0;for(var i=0;i<str.length;++i){var codeUnit=str.charCodeAt(i);if(codeUnit>=55296&&codeUnit<=57343)++i;len+=4}return len}Module["lengthBytesUTF32"]=lengthBytesUTF32;function demangle(func){var hasLibcxxabi=!!Module["___cxa_demangle"];if(hasLibcxxabi){try{var buf=_malloc(func.length);writeStringToMemory(func.substr(1),buf);var status=_malloc(4);var ret=Module["___cxa_demangle"](buf,0,0,status);if(getValue(status,"i32")===0&&ret){return Pointer_stringify(ret)}}catch(e){}finally{if(buf)_free(buf);if(status)_free(status);if(ret)_free(ret)}}var i=3;var basicTypes={"v":"void","b":"bool","c":"char","s":"short","i":"int","l":"long","f":"float","d":"double","w":"wchar_t","a":"signed char","h":"unsigned char","t":"unsigned short","j":"unsigned int","m":"unsigned long","x":"long long","y":"unsigned long long","z":"..."};var subs=[];var first=true;function dump(x){if(x)Module.print(x);Module.print(func);var pre="";for(var a=0;a<i;a++)pre+=" ";Module.print(pre+"^")}function parseNested(){i++;if(func[i]==="K")i++;var parts=[];while(func[i]!=="E"){if(func[i]==="S"){i++;var next=func.indexOf("_",i);var num=func.substring(i,next)||0;parts.push(subs[num]||"?");i=next+1;continue}if(func[i]==="C"){parts.push(parts[parts.length-1]);i+=2;continue}var size=parseInt(func.substr(i));var pre=size.toString().length;if(!size||!pre){i--;break}var curr=func.substr(i+pre,size);parts.push(curr);subs.push(curr);i+=pre+size}i++;return parts}function parse(rawList,limit,allowVoid){limit=limit||Infinity;var ret="",list=[];function flushList(){return"("+list.join(", ")+")"}var name;if(func[i]==="N"){name=parseNested().join("::");limit--;if(limit===0)return rawList?[name]:name}else{if(func[i]==="K"||first&&func[i]==="L")i++;var size=parseInt(func.substr(i));if(size){var pre=size.toString().length;name=func.substr(i+pre,size);i+=pre+size}}first=false;if(func[i]==="I"){i++;var iList=parse(true);var iRet=parse(true,1,true);ret+=iRet[0]+" "+name+"<"+iList.join(", ")+">"}else{ret=name}paramLoop:while(i<func.length&&limit-->0){var c=func[i++];if(c in basicTypes){list.push(basicTypes[c])}else{switch(c){case"P":list.push(parse(true,1,true)[0]+"*");break;case"R":list.push(parse(true,1,true)[0]+"&");break;case"L":{i++;var end=func.indexOf("E",i);var size=end-i;list.push(func.substr(i,size));i+=size+2;break};case"A":{var size=parseInt(func.substr(i));i+=size.toString().length;if(func[i]!=="_")throw"?";i++;list.push(parse(true,1,true)[0]+" ["+size+"]");break};case"E":break paramLoop;default:ret+="?"+c;break paramLoop}}}if(!allowVoid&&list.length===1&&list[0]==="void")list=[];if(rawList){if(ret){list.push(ret+"?")}return list}else{return ret+flushList()}}var parsed=func;try{if(func=="Object._main"||func=="_main"){return"main()"}if(typeof func==="number")func=Pointer_stringify(func);if(func[0]!=="_")return func;if(func[1]!=="_")return func;if(func[2]!=="Z")return func;switch(func[3]){case"n":return"operator new()";case"d":return"operator delete()"}parsed=parse()}catch(e){parsed+="?"}if(parsed.indexOf("?")>=0&&!hasLibcxxabi){Runtime.warnOnce("warning: a problem occurred in builtin C++ name demangling; build with -s DEMANGLE_SUPPORT=1 to link in libcxxabi demangling")}return parsed}function demangleAll(text){return text.replace(/__Z[\w\d_]+/g,(function(x){var y=demangle(x);return x===y?x:x+" ["+y+"]"}))}function jsStackTrace(){var err=new Error;if(!err.stack){try{throw new Error(0)}catch(e){err=e}if(!err.stack){return"(no stack trace available)"}}return err.stack.toString()}function stackTrace(){return demangleAll(jsStackTrace())}Module["stackTrace"]=stackTrace;var PAGE_SIZE=4096;function alignMemoryPage(x){if(x%4096>0){x+=4096-x%4096}return x}var HEAP;var HEAP8,HEAPU8,HEAP16,HEAPU16,HEAP32,HEAPU32,HEAPF32,HEAPF64;var STATIC_BASE=0,STATICTOP=0,staticSealed=false;var STACK_BASE=0,STACKTOP=0,STACK_MAX=0;var DYNAMIC_BASE=0,DYNAMICTOP=0;function enlargeMemory(){var OLD_TOTAL_MEMORY=TOTAL_MEMORY;var LIMIT=Math.pow(2,31);if(DYNAMICTOP>=LIMIT)return false;while(TOTAL_MEMORY<=DYNAMICTOP){if(TOTAL_MEMORY<LIMIT/2){TOTAL_MEMORY=alignMemoryPage(2*TOTAL_MEMORY)}else{var last=TOTAL_MEMORY;TOTAL_MEMORY=alignMemoryPage((3*TOTAL_MEMORY+LIMIT)/4);if(TOTAL_MEMORY<=last)return false}}TOTAL_MEMORY=Math.max(TOTAL_MEMORY,16*1024*1024);if(TOTAL_MEMORY>=LIMIT)return false;try{if(ArrayBuffer.transfer){buffer=ArrayBuffer.transfer(buffer,TOTAL_MEMORY)}else{var oldHEAP8=HEAP8;buffer=new ArrayBuffer(TOTAL_MEMORY)}}catch(e){return false}var success=_emscripten_replace_memory(buffer);if(!success)return false;Module["buffer"]=buffer;Module["HEAP8"]=HEAP8=new Int8Array(buffer);Module["HEAP16"]=HEAP16=new Int16Array(buffer);Module["HEAP32"]=HEAP32=new Int32Array(buffer);Module["HEAPU8"]=HEAPU8=new Uint8Array(buffer);Module["HEAPU16"]=HEAPU16=new Uint16Array(buffer);Module["HEAPU32"]=HEAPU32=new Uint32Array(buffer);Module["HEAPF32"]=HEAPF32=new Float32Array(buffer);Module["HEAPF64"]=HEAPF64=new Float64Array(buffer);if(!ArrayBuffer.transfer){HEAP8.set(oldHEAP8)}return true}var byteLength;try{byteLength=Function.prototype.call.bind(Object.getOwnPropertyDescriptor(ArrayBuffer.prototype,"byteLength").get);byteLength(new ArrayBuffer(4))}catch(e){byteLength=(function(buffer){return buffer.byteLength})}var TOTAL_STACK=Module["TOTAL_STACK"]||5242880;var TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;var totalMemory=64*1024;while(totalMemory<TOTAL_MEMORY||totalMemory<2*TOTAL_STACK){if(totalMemory<16*1024*1024){totalMemory*=2}else{totalMemory+=16*1024*1024}}totalMemory=Math.max(totalMemory,16*1024*1024);if(totalMemory!==TOTAL_MEMORY){TOTAL_MEMORY=totalMemory}assert(typeof Int32Array!=="undefined"&&typeof Float64Array!=="undefined"&&!!(new Int32Array(1))["subarray"]&&!!(new Int32Array(1))["set"],"JS engine does not provide full typed array support");var buffer;buffer=new ArrayBuffer(TOTAL_MEMORY);HEAP8=new Int8Array(buffer);HEAP16=new Int16Array(buffer);HEAP32=new Int32Array(buffer);HEAPU8=new Uint8Array(buffer);HEAPU16=new Uint16Array(buffer);HEAPU32=new Uint32Array(buffer);HEAPF32=new Float32Array(buffer);HEAPF64=new Float64Array(buffer);HEAP32[0]=255;assert(HEAPU8[0]===255&&HEAPU8[3]===0,"Typed arrays 2 must be run on a little-endian system");Module["HEAP"]=HEAP;Module["buffer"]=buffer;Module["HEAP8"]=HEAP8;Module["HEAP16"]=HEAP16;Module["HEAP32"]=HEAP32;Module["HEAPU8"]=HEAPU8;Module["HEAPU16"]=HEAPU16;Module["HEAPU32"]=HEAPU32;Module["HEAPF32"]=HEAPF32;Module["HEAPF64"]=HEAPF64;function callRuntimeCallbacks(callbacks){while(callbacks.length>0){var callback=callbacks.shift();if(typeof callback=="function"){callback();continue}var func=callback.func;if(typeof func==="number"){if(callback.arg===undefined){Runtime.dynCall("v",func)}else{Runtime.dynCall("vi",func,[callback.arg])}}else{func(callback.arg===undefined?null:callback.arg)}}}var __ATPRERUN__=[];var __ATINIT__=[];var __ATMAIN__=[];var __ATEXIT__=[];var __ATPOSTRUN__=[];var runtimeInitialized=false;var runtimeExited=false;function preRun(){if(Module["preRun"]){if(typeof Module["preRun"]=="function")Module["preRun"]=[Module["preRun"]];while(Module["preRun"].length){addOnPreRun(Module["preRun"].shift())}}callRuntimeCallbacks(__ATPRERUN__)}function ensureInitRuntime(){if(runtimeInitialized)return;runtimeInitialized=true;callRuntimeCallbacks(__ATINIT__)}function preMain(){callRuntimeCallbacks(__ATMAIN__)}function exitRuntime(){callRuntimeCallbacks(__ATEXIT__);runtimeExited=true}function postRun(){if(Module["postRun"]){if(typeof Module["postRun"]=="function")Module["postRun"]=[Module["postRun"]];while(Module["postRun"].length){addOnPostRun(Module["postRun"].shift())}}callRuntimeCallbacks(__ATPOSTRUN__)}function addOnPreRun(cb){__ATPRERUN__.unshift(cb)}Module["addOnPreRun"]=addOnPreRun;function addOnInit(cb){__ATINIT__.unshift(cb)}Module["addOnInit"]=addOnInit;function addOnPreMain(cb){__ATMAIN__.unshift(cb)}Module["addOnPreMain"]=addOnPreMain;function addOnExit(cb){__ATEXIT__.unshift(cb)}Module["addOnExit"]=addOnExit;function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}Module["addOnPostRun"]=addOnPostRun;function intArrayFromString(stringy,dontAddNull,length){var len=length>0?length:lengthBytesUTF8(stringy)+1;var u8array=new Array(len);var numBytesWritten=stringToUTF8Array(stringy,u8array,0,u8array.length);if(dontAddNull)u8array.length=numBytesWritten;return u8array}Module["intArrayFromString"]=intArrayFromString;function intArrayToString(array){var ret=[];for(var i=0;i<array.length;i++){var chr=array[i];if(chr>255){chr&=255}ret.push(String.fromCharCode(chr))}return ret.join("")}Module["intArrayToString"]=intArrayToString;function writeStringToMemory(string,buffer,dontAddNull){var array=intArrayFromString(string,dontAddNull);var i=0;while(i<array.length){var chr=array[i];HEAP8[buffer+i>>0]=chr;i=i+1}}Module["writeStringToMemory"]=writeStringToMemory;function writeArrayToMemory(array,buffer){for(var i=0;i<array.length;i++){HEAP8[buffer++>>0]=array[i]}}Module["writeArrayToMemory"]=writeArrayToMemory;function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;++i){HEAP8[buffer++>>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer>>0]=0}Module["writeAsciiToMemory"]=writeAsciiToMemory;function unSign(value,bits,ignore){if(value>=0){return value}return bits<=32?2*Math.abs(1<<bits-1)+value:Math.pow(2,bits)+value}function reSign(value,bits,ignore){if(value<=0){return value}var half=bits<=32?Math.abs(1<<bits-1):Math.pow(2,bits-1);if(value>=half&&(bits<=32||value>half)){value=-2*half+value}return value}if(!Math["imul"]||Math["imul"](4294967295,5)!==-5)Math["imul"]=function imul(a,b){var ah=a>>>16;var al=a&65535;var bh=b>>>16;var bl=b&65535;return al*bl+(ah*bl+al*bh<<16)|0};Math.imul=Math["imul"];if(!Math["clz32"])Math["clz32"]=(function(x){x=x>>>0;for(var i=0;i<32;i++){if(x&1<<31-i)return i}return 32});Math.clz32=Math["clz32"];var Math_abs=Math.abs;var Math_cos=Math.cos;var Math_sin=Math.sin;var Math_tan=Math.tan;var Math_acos=Math.acos;var Math_asin=Math.asin;var Math_atan=Math.atan;var Math_atan2=Math.atan2;var Math_exp=Math.exp;var Math_log=Math.log;var Math_sqrt=Math.sqrt;var Math_ceil=Math.ceil;var Math_floor=Math.floor;var Math_pow=Math.pow;var Math_imul=Math.imul;var Math_fround=Math.fround;var Math_min=Math.min;var Math_clz32=Math.clz32;var runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;function getUniqueRunDependency(id){return id}function addRunDependency(id){runDependencies++;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}}Module["addRunDependency"]=addRunDependency;function removeRunDependency(id){runDependencies--;if(Module["monitorRunDependencies"]){Module["monitorRunDependencies"](runDependencies)}if(runDependencies==0){if(runDependencyWatcher!==null){clearInterval(runDependencyWatcher);runDependencyWatcher=null}if(dependenciesFulfilled){var callback=dependenciesFulfilled;dependenciesFulfilled=null;callback()}}}Module["removeRunDependency"]=removeRunDependency;Module["preloadedImages"]={};Module["preloadedAudios"]={};var memoryInitializer=null;var ASM_CONSTS=[];STATIC_BASE=8;STATICTOP=STATIC_BASE+240496;__ATINIT__.push({func:(function(){__GLOBAL__sub_I_CompilerUtils_cpp()})},{func:(function(){__GLOBAL__sub_I_Types_cpp()})},{func:(function(){__GLOBAL__sub_I_ASTJsonConverter_cpp()})},{func:(function(){__GLOBAL__sub_I_Natspec_cpp()})},{func:(function(){__GLOBAL__sub_I_ABI_cpp()})},{func:(function(){__GLOBAL__sub_I_GasEstimator_cpp()})},{func:(function(){__GLOBAL__sub_I_DeclarationContainer_cpp()})},{func:(function(){__GLOBAL__sub_I_ReferencesResolver_cpp()})},{func:(function(){__GLOBAL__sub_I_ConstantEvaluator_cpp()})},{func:(function(){__GLOBAL__sub_I_CompilerContext_cpp()})},{func:(function(){__GLOBAL__sub_I_AST_cpp()})},{func:(function(){__GLOBAL__sub_I_ContractCompiler_cpp()})},{func:(function(){__GLOBAL__sub_I_ArrayUtils_cpp()})},{func:(function(){__GLOBAL__sub_I_ABIFunctions_cpp()})},{func:(function(){__GLOBAL__sub_I_LValue_cpp()})},{func:(function(){__GLOBAL__sub_I_ExpressionCompiler_cpp()})},{func:(function(){___cxx_global_var_init_12()})},{func:(function(){__GLOBAL__sub_I_Instruction_cpp()})},{func:(function(){__GLOBAL__sub_I_json_value_cpp()})},{func:(function(){__GLOBAL__sub_I_error_code_cpp()})},{func:(function(){__GLOBAL__sub_I_NameAndTypeResolver_cpp()})},{func:(function(){__GLOBAL__sub_I_StandardCompiler_cpp()})},{func:(function(){__GLOBAL__sub_I_Version_cpp()})},{func:(function(){__GLOBAL__sub_I_ErrorReporter_cpp()})},{func:(function(){__GLOBAL__sub_I_CompilerStack_cpp()})},{func:(function(){__GLOBAL__sub_I_GlobalContext_cpp()})},{func:(function(){__GLOBAL__sub_I_TypeChecker_cpp()})},{func:(function(){__GLOBAL__sub_I_SyntaxChecker_cpp()})},{func:(function(){__GLOBAL__sub_I_StaticAnalyzer_cpp()})},{func:(function(){__GLOBAL__sub_I_DocStringAnalyser_cpp()})},{func:(function(){__GLOBAL__sub_I_jsonCompiler_cpp()})},{func:(function(){__GLOBAL__sub_I_PostTypeChecker_cpp()})},{func:(function(){__GLOBAL__sub_I_ViewPureChecker_cpp()})},{func:(function(){__GLOBAL__sub_I_Compiler_cpp()})},{func:(function(){__GLOBAL__sub_I_AsmAnalysis_cpp()})},{func:(function(){__GLOBAL__sub_I_SMTChecker_cpp()})},{func:(function(){__GLOBAL__sub_I_SMTLib2Interface_cpp()})},{func:(function(){__GLOBAL__sub_I_DocStringParser_cpp()})},{func:(function(){__GLOBAL__sub_I_Parser_cpp()})});allocate([0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,0,0,0,212,2,0,0,213,2,0,0,50,0,0,0,236,255,255,255,236,255,255,255,216,0,0,0,214,2,0,0,215,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,8,98,1,0,40,165,0,0,73,97,1,0,88,0,0,0,0,0,0,0,0,165,0,0,152,98,1,0,0,165,0,0,14,101,1,0,80,165,0,0,203,100,1,0,0,0,0,0,2,0,0,0,8,39,0,0,2,0,0,0,120,0,0,0,2,8,0,0,0,165,0,0,33,101,1,0,80,165,0,0,117,100,1,0,0,0,0,0,2,0,0,0,128,0,0,0,2,0,0,0,160,0,0,0,3,244,255,255,40,165,0,0,206,112,1,0,192,38,0,0,0,0,0,0,80,165,0,0,184,112,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,156,112,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,125,112,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,86,112,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,43,112,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,40,165,0,0,139,106,1,0,176,35,0,0,0,0,0,0,40,165,0,0,117,106,1,0,176,35,0,0,0,0,0,0,80,165,0,0,44,107,1,0,0,0,0,0,2,0,0,0,32,1,0,0,2,0,0,0,160,0,0,0,3,224,255,255,40,165,0,0,123,107,1,0,160,1,0,0,0,0,0,0,0,165,0,0,229,107,1,0,40,165,0,0,153,108,1,0,216,1,0,0,0,0,0,0,40,165,0,0,17,108,1,0,48,40,0,0,0,0,0,0,40,165,0,0,83,108,1,0,80,40,0,0,0,0,0,0,0,165,0,0,207,108,1,0,40,165,0,0,0,109,1,0,240,1,0,0,0,0,0,0,0,165,0,0,138,109,1,0,40,165,0,0,99,110,1,0,160,1,0,0,0,0,0,0,40,165,0,0,250,110,1,0,32,2,0,0,0,0,0,0,0,165,0,0,178,110,1,0,0,165,0,0,182,111,1,0,80,165,0,0,67,113,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,49,114,1,0,0,0,0,0,2,0,0,0,240,0,0,0,2,0,0,0,160,0,0,0,3,224,255,255,40,165,0,0,117,114,1,0,160,1,0,0,0,0,0,0,40,165,0,0,214,114,1,0,240,1,0,0,0,0,0,0,40,165,0,0,210,115,1,0,240,1,0,0,0,0,0,0,40,165,0,0,124,116,1,0,224,39,0,0,0,0,0,0,80,165,0,0,143,131,1,0,0,0,0,0,1,0,0,0,184,2,0,0,3,224,255,255,80,165,0,0,113,131,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,93,126,1,0,0,0,0,0,2,0,0,0,240,2,0,0,0,0,0,0,248,2,0,0,2,4,0,0,0,165,0,0,170,126,1,0,0,165,0,0,114,126,1,0,80,165,0,0,188,128,1,0,0,0,0,0,2,0,0,0,32,3,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,19,129,1,0,0,0,0,0,2,0,0,0,40,39,0,0,2,0,0,0,120,0,0,0,2,8,0,0,80,165,0,0,136,129,1,0,0,0,0,0,2,0,0,0,168,37,0,0,2,0,0,0,160,0,0,0,3,228,255,255,40,165,0,0,193,129,1,0,104,40,0,0,0,0,0,0,80,165,0,0,6,130,1,0,0,0,0,0,2,0,0,0,8,1,0,0,2,0,0,0,160,0,0,0,3,224,255,255,40,165,0,0,77,130,1,0,224,39,0,0,0,0,0,0,40,165,0,0,42,131,1,0,224,39,0,0,0,0,0,0,40,165,0,0,174,131,1,0,224,39,0,0,0,0,0,0,40,165,0,0,183,132,1,0,216,3,0,0,0,0,0,0,0,165,0,0,250,131,1,0,0,165,0,0,46,133,1,0,40,165,0,0,118,133,1,0,224,39,0,0,0,0,0,0,40,165,0,0,200,133,1,0,224,39,0,0,0,0,0,0,40,165,0,0,23,135,1,0,16,4,0,0,0,0,0,0,40,165,0,0,65,135,1,0,40,12,0,0,0,0,0,0,40,165,0,0,94,135,1,0,224,39,0,0,0,0,0,0,40,165,0,0,195,135,1,0,224,39,0,0,0,0,0,0,40,165,0,0,32,136,1,0,224,39,0,0,0,0,0,0,40,165,0,0,113,136,1,0,224,39,0,0,0,0,0,0,40,165,0,0,193,136,1,0,224,39,0,0,0,0,0,0,40,165,0,0,48,138,1,0,224,39,0,0,0,0,0,0,80,165,0,0,129,138,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,0,165,0,0,234,175,1,0,40,165,0,0,11,176,1,0,224,39,0,0,0,0,0,0,40,165,0,0,94,176,1,0,224,39,0,0,0,0,0,0,40,165,0,0,171,176,1,0,224,39,0,0,0,0,0,0,40,165,0,0,53,177,1,0,224,39,0,0,0,0,0,0,40,165,0,0,130,177,1,0,224,39,0,0,0,0,0,0,40,165,0,0,244,177,1,0,224,39,0,0,0,0,0,0,80,165,0,0,160,183,1,0,0,0,0,0,2,0,0,0,32,5,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,245,183,1,0,0,0,0,0,2,0,0,0,248,38,0,0,2,0,0,0,120,0,0,0,2,8,0,0,40,165,0,0,55,184,1,0,224,39,0,0,0,0,0,0,40,165,0,0,74,188,1,0,144,5,0,0,0,0,0,0,0,165,0,0,148,184,1,0,80,165,0,0,6,188,1,0,0,0,0,0,2,0,0,0,16,4,0,0,2,0,0,0,136,5,0,0,2,44,0,0,0,165,0,0,43,188,1,0,0,165,0,0,248,188,1,0,40,165,0,0,9,190,1,0,176,5,0,0,0,0,0,0,0,165,0,0,199,189,1,0,0,165,0,0,169,190,1,0,80,165,0,0,108,192,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,80,165,0,0,241,197,1,0,0,0,0,0,1,0,0,0,168,37,0,0,0,0,0,0,80,165,0,0,14,198,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,80,165,0,0,214,201,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,165,0,0,113,202,1,0,0,0,0,0,1,0,0,0,64,6,0,0,0,0,0,0,0,165,0,0,51,213,1,0,40,165,0,0,187,214,1,0,224,39,0,0,0,0,0,0,80,165,0,0,46,215,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,80,165,0,0,63,217,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,40,165,0,0,79,222,1,0,160,6,0,0,0,0,0,0,0,165,0,0,8,222,1,0,0,165,0,0,246,222,1,0,0,0,0,0,0,0,0,0,40,165,0,0,24,230,1,0,200,6,0,0,0,0,0,0,0,165,0,0,213,229,1,0,0,165,0,0,164,230,1,0,40,165,0,0,92,231,1,0,232,6,0,0,0,0,0,0,0,165,0,0,238,230,1,0,0,165,0,0,229,231,1,0,40,165,0,0,157,232,1,0,8,7,0,0,0,0,0,0,0,165,0,0,44,232,1,0,0,165,0,0,41,233,1,0,80,165,0,0,115,233,1,0,0,0,0,0,2,0,0,0,48,7,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,196,233,1,0,0,0,0,0,2,0,0,0,80,7,0,0,2,0,0,0,120,0,0,0,2,4,0,0,40,165,0,0,2,234,1,0,192,38,0,0,0,0,0,0,0,165,0,0,106,234,1,0,0,165,0,0,69,234,1,0,0,165,0,0,222,226,1,0,40,165,0,0,249,234,1,0,200,6,0,0,0,0,0,0,0,165,0,0,146,234,1,0,40,165,0,0,196,235,1,0,232,6,0,0,0,0,0,0,0,165,0,0,131,235,1,0,40,165,0,0,140,236,1,0,8,7,0,0,0,0,0,0,0,165,0,0,75,236,1,0,80,165,0,0,64,237,1,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,80,165,0,0,187,249,1,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,169,250,1,0,0,0,0,0,2,0,0,0,16,8,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,253,250,1,0,0,0,0,0,2,0,0,0,24,39,0,0,2,0,0,0,120,0,0,0,2,8,0,0,40,165,0,0,66,251,1,0,224,39,0,0,0,0,0,0,80,165,0,0,155,251,1,0,0,0,0,0,2,0,0,0,96,8,0,0,2,0,0,0,240,2,0,0,2,0,0,0,0,165,0,0,186,253,1,0,80,165,0,0,223,253,1,0,0,0,0,0,2,0,0,0,216,7,0,0,2,0,0,0,160,0,0,0,3,224,255,255,40,165,0,0,128,5,2,0,64,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,133,6,2,0,240,8,0,0,0,0,0,0,80,165,0,0,155,5,2,0,0,0,0,0,2,0,0,0,208,8,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,246,5,2,0,0,0,0,0,2,0,0,0,136,8,0,0,2,0,0,0,120,0,0,0,2,12,0,0,40,165,0,0,186,6,2,0,0,9,0,0,0,0,0,0,40,165,0,0,54,7,2,0,16,9,0,0,0,0,0,0,40,165,0,0,178,7,2,0,32,9,0,0,0,0,0,0,0,165,0,0,46,8,2,0,40,165,0,0,139,9,2,0,224,39,0,0,0,0,0,0,40,165,0,0,162,23,2,0,184,14,0,0,0,0,0,0,40,165,0,0,232,18,2,0,224,39,0,0,0,0,0,0,40,165,0,0,60,19,2,0,224,39,0,0,0,0,0,0,40,165,0,0,135,19,2,0,224,39,0,0,0,0,0,0,40,165,0,0,216,19,2,0,224,39,0,0,0,0,0,0,40,165,0,0,40,20,2,0,224,39,0,0,0,0,0,0,40,165,0,0,44,21,2,0,224,39,0,0,0,0,0,0,40,165,0,0,56,22,2,0,224,39,0,0,0,0,0,0,40,165,0,0,255,22,2,0,224,39,0,0,0,0,0,0,40,165,0,0,80,23,2,0,224,39,0,0,0,0,0,0,40,165,0,0,197,23,2,0,224,39,0,0,0,0,0,0,40,165,0,0,38,24,2,0,224,39,0,0,0,0,0,0,40,165,0,0,126,24,2,0,224,39,0,0,0,0,0,0,40,165,0,0,214,24,2,0,224,39,0,0,0,0,0,0,40,165,0,0,55,25,2,0,224,39,0,0,0,0,0,0,40,165,0,0,138,25,2,0,224,39,0,0,0,0,0,0,40,165,0,0,219,25,2,0,224,39,0,0,0,0,0,0,40,165,0,0,46,26,2,0,224,39,0,0,0,0,0,0,40,165,0,0,126,26,2,0,224,39,0,0,0,0,0,0,40,165,0,0,215,26,2,0,224,39,0,0,0,0,0,0,40,165,0,0,32,27,2,0,224,39,0,0,0,0,0,0,40,165,0,0,106,27,2,0,224,39,0,0,0,0,0,0,40,165,0,0,179,27,2,0,224,39,0,0,0,0,0,0,40,165,0,0,255,27,2,0,224,39,0,0,0,0,0,0,40,165,0,0,74,28,2,0,224,39,0,0,0,0,0,0,40,165,0,0,73,29,2,0,224,39,0,0,0,0,0,0,40,165,0,0,152,29,2,0,224,39,0,0,0,0,0,0,40,165,0,0,239,29,2,0,224,39,0,0,0,0,0,0,40,165,0,0,60,30,2,0,224,39,0,0,0,0,0,0,40,165,0,0,133,30,2,0,224,39,0,0,0,0,0,0,40,165,0,0,215,30,2,0,224,39,0,0,0,0,0,0,40,165,0,0,46,31,2,0,224,39,0,0,0,0,0,0,40,165,0,0,134,31,2,0,224,39,0,0,0,0,0,0,40,165,0,0,220,31,2,0,224,39,0,0,0,0,0,0,40,165,0,0,48,32,2,0,224,39,0,0,0,0,0,0,40,165,0,0,190,32,2,0,128,11,0,0,0,0,0,0,0,165,0,0,135,32,2,0,0,165,0,0,41,33,2,0,40,165,0,0,75,33,2,0,224,39,0,0,0,0,0,0,40,165,0,0,158,33,2,0,224,39,0,0,0,0,0,0,40,165,0,0,243,33,2,0,224,39,0,0,0,0,0,0,40,165,0,0,72,34,2,0,224,39,0,0,0,0,0,0,40,165,0,0,159,34,2,0,224,39,0,0,0,0,0,0,40,165,0,0,248,34,2,0,224,39,0,0,0,0,0,0,40,165,0,0,36,36,2,0,224,39,0,0,0,0,0,0,40,165,0,0,123,36,2,0,224,39,0,0,0,0,0,0,40,165,0,0,207,36,2,0,224,39,0,0,0,0,0,0,40,165,0,0,35,37,2,0,224,39,0,0,0,0,0,0,80,165,0,0,114,37,2,0,0,0,0,0,1,0,0,0,240,2,0,0,0,0,0,0,40,165,0,0,138,37,2,0,40,12,0,0,0,0,0,0,40,165,0,0,166,37,2,0,16,4,0,0,0,0,0,0,80,165,0,0,198,37,2,0,0,0,0,0,2,0,0,0,16,4,0,0,2,0,0,0,16,17,0,0,2,44,0,0,40,165,0,0,234,37,2,0,40,12,0,0,0,0,0,0,40,165,0,0,11,38,2,0,16,4,0,0,0,0,0,0,40,165,0,0,44,38,2,0,40,12,0,0,0,0,0,0,40,165,0,0,82,38,2,0,40,12,0,0,0,0,0,0,40,165,0,0,117,38,2,0,16,4,0,0,0,0,0,0,40,165,0,0,151,38,2,0,16,4,0,0,0,0,0,0,40,165,0,0,177,38,2,0,40,12,0,0,0,0,0,0,80,165,0,0,208,38,2,0,0,0,0,0,3,0,0,0,104,5,0,0,2,0,0,0,16,17,0,0,2,72,0,0,24,17,0,0,2,80,0,0,40,165,0,0,244,38,2,0,16,4,0,0,0,0,0,0,80,165,0,0,25,39,2,0,0,0,0,0,2,0,0,0,104,5,0,0,2,0,0,0,16,17,0,0,2,72,0,0,40,165,0,0,61,39,2,0,40,12,0,0,0,0,0,0,80,165,0,0,97,39,2,0,0,0,0,0,2,0,0,0,104,5,0,0,2,0,0,0,16,17,0,0,2,72,0,0,40,165,0,0,130,39,2,0,40,12,0,0,0,0,0,0,40,165,0,0,155,39,2,0,120,13,0,0,0,0,0,0,40,165,0,0,191,39,2,0,120,13,0,0,0,0,0,0,40,165,0,0,228,39,2,0,120,13,0,0,0,0,0,0,40,165,0,0,6,40,2,0,120,13,0,0,0,0,0,0,40,165,0,0,30,40,2,0,120,13,0,0,0,0,0,0,80,165,0,0,61,40,2,0,0,0,0,0,2,0,0,0,40,12,0,0,2,0,0,0,16,17,0,0,2,28,0,0,40,165,0,0,87,40,2,0,216,13,0,0,0,0,0,0,40,165,0,0,119,40,2,0,216,13,0,0,0,0,0,0,40,165,0,0,141,40,2,0,216,13,0,0,0,0,0,0,40,165,0,0,179,40,2,0,216,13,0,0,0,0,0,0,40,165,0,0,208,40,2,0,32,17,0,0,0,0,0,0,40,165,0,0,240,40,2,0,32,17,0,0,0,0,0,0,40,165,0,0,14,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,39,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,61,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,84,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,106,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,152,41,2,0,216,13,0,0,0,0,0,0,40,165,0,0,189,41,2,0,40,12,0,0,0,0,0,0,40,165,0,0,217,41,2,0,184,14,0,0,0,0,0,0,40,165,0,0,246,41,2,0,184,14,0,0,0,0,0,0,40,165,0,0,18,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,51,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,83,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,116,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,146,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,177,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,207,42,2,0,184,14,0,0,0,0,0,0,40,165,0,0,236,42,2,0,56,9,0,0,0,0,0,0,40,165,0,0,8,43,2,0,56,9,0,0,0,0,0,0,40,165,0,0,54,43,2,0,56,9,0,0,0,0,0,0,0,165,0,0,130,52,2,0,40,165,0,0,92,52,2,0,136,15,0,0,0,0,0,0,40,165,0,0,58,52,2,0,136,15,0,0,0,0,0,0,80,165,0,0,15,51,2,0,0,0,0,0,2,0,0,0,224,15,0,0,2,0,0,0,48,17,0,0,2,16,0,0,40,165,0,0,235,50,2,0,136,15,0,0,0,0,0,0,40,165,0,0,113,50,2,0,136,15,0,0,0,0,0,0,80,165,0,0,247,49,2,0,0,0,0,0,2,0,0,0,136,15,0,0,2,0,0,0,48,17,0,0,2,4,0,0,80,165,0,0,120,49,2,0,0,0,0,0,2,0,0,0,136,15,0,0,2,0,0,0,48,17,0,0,2,4,0,0,80,165,0,0,77,49,2,0,0,0,0,0,2,0,0,0,136,15,0,0,2,0,0,0,48,17,0,0,2,4,0,0,40,165,0,0,30,49,2,0,208,15,0,0,0,0,0,0,40,165,0,0,239,48,2,0,136,15,0,0,0,0,0,0,80,165,0,0,202,48,2,0,0,0,0,0,2,0,0,0,136,15,0,0,2,0,0,0,48,17,0,0,2,4,0,0,40,165,0,0,160,48,2,0,112,16,0,0,0,0,0,0,40,165,0,0,126,48,2,0,112,16,0,0,0,0,0,0,40,165,0,0,32,48,2,0,112,16,0,0,0,0,0,0,40,165,0,0,250,47,2,0,136,15,0,0,0,0,0,0,40,165,0,0,210,47,2,0,192,16,0,0,0,0,0,0,40,165,0,0,167,47,2,0,192,16,0,0,0,0,0,0,40,165,0,0,127,47,2,0,192,16,0,0,0,0,0,0,40,165,0,0,89,47,2,0,192,16,0,0,0,0,0,0,0,165,0,0,61,47,2,0,0,165,0,0,21,47,2,0,40,165,0,0,241,46,2,0,216,13,0,0,0,0,0,0,0,165,0,0,88,48,2,0,40,165,0,0,166,49,2,0,224,39,0,0,0,0,0,0,40,165,0,0,37,50,2,0,224,39,0,0,0,0,0,0,40,165,0,0,156,50,2,0,224,39,0,0,0,0,0,0,40,165,0,0,235,51,2,0,224,39,0,0,0,0,0,0,40,165,0,0,161,52,2,0,208,2,0,0,0,0,0,0,40,165,0,0,190,52,2,0,208,2,0,0,0,0,0,0,40,165,0,0,222,52,2,0,208,2,0,0,0,0,0,0,40,165,0,0,2,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,37,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,69,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,99,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,130,53,2,0,216,17,0,0,0,0,0,0,40,165,0,0,156,53,2,0,216,17,0,0,0,0,0,0,40,165,0,0,184,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,209,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,235,53,2,0,208,2,0,0,0,0,0,0,40,165,0,0,9,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,38,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,63,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,93,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,121,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,147,54,2,0,208,2,0,0,0,0,0,0,40,165,0,0,8,78,2,0,176,18,0,0,0,0,0,0,0,165,0,0,218,77,2,0,0,165,0,0,110,78,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,203,78,2,0,216,38,0,0,0,0,0,0,40,165,0,0,120,79,2,0,208,2,0,0,0,0,0,0,40,165,0,0,161,79,2,0,224,39,0,0,0,0,0,0,40,165,0,0,253,79,2,0,224,39,0,0,0,0,0,0,40,165,0,0,83,80,2,0,224,39,0,0,0,0,0,0,40,165,0,0,170,80,2,0,224,39,0,0,0,0,0,0,80,165,0,0,253,80,2,0,0,0,0,0,2,0,0,0,216,0,0,0,2,0,0,0,160,0,0,0,3,224,255,255,40,165,0,0,59,81,2,0,152,4,0,0,0,0,0,0,80,165,0,0,160,96,2,0,0,0,0,0,2,0,0,0,128,19,0,0,2,0,0,0,160,0,0,0,3,224,255,255,80,165,0,0,231,96,2,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,40,165,0,0,20,97,2,0,224,39,0,0,0,0,0,0,40,165,0,0,101,97,2,0,224,39,0,0,0,0,0,0,80,165,0,0,190,99,2,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,40,165,0,0,138,106,2,0,144,5,0,0,0,0,0,0,0,165,0,0,229,105,2,0,40,165,0,0,63,107,2,0,224,39,0,0,0,0,0,0,80,165,0,0,143,107,2,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,40,165,0,0,133,116,2,0,32,2,0,0,0,0,0,0,0,165,0,0,232,115,2,0,40,165,0,0,79,119,2,0,64,20,0,0,0,0,0,0,0,165,0,0,86,117,2,0,0,165,0,0,97,120,2,0,40,165,0,0,123,121,2,0,144,5,0,0,0,0,0,0,0,165,0,0,222,120,2,0,80,165,0,0,55,123,2,0,0,0,0,0,2,0,0,0,128,20,0,0,2,0,0,0,160,0,0,0,3,224,255,255,80,165,0,0,127,123,2,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,40,165,0,0,154,135,2,0,176,20,0,0,0,0,0,0,0,165,0,0,153,134,2,0,0,165,0,0,36,136,2,0,40,165,0,0,166,136,2,0,176,20,0,0,0,0,0,0,0,165,0,0,102,136,2,0,80,165,0,0,205,137,2,0,0,0,0,0,2,0,0,0,56,1,0,0,2,0,0,0,160,0,0,0,3,224,255,255,80,165,0,0,32,138,2,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,40,165,0,0,29,146,2,0,64,20,0,0,0,0,0,0,0,165,0,0,86,144,2,0,40,165,0,0,44,147,2,0,144,5,0,0,0,0,0,0,0,165,0,0,231,146,2,0,40,165,0,0,44,148,2,0,128,11,0,0,0,0,0,0,0,165,0,0,223,147,2,0,40,165,0,0,90,152,2,0,176,20,0,0,0,0,0,0,0,165,0,0,73,151,2,0,40,165,0,0,209,153,2,0,176,20,0,0,0,0,0,0,0,165,0,0,236,152,2,0,40,165,0,0,127,155,2,0,176,20,0,0,0,0,0,0,0,165,0,0,111,154,2,0,40,165,0,0,131,157,2,0,176,20,0,0,0,0,0,0,0,165,0,0,9,156,2,0,40,165,0,0,101,166,2,0,200,21,0,0,0,0,0,0,0,165,0,0,205,164,2,0,0,165,0,0,25,167,2,0,40,165,0,0,201,169,2,0,200,21,0,0,0,0,0,0,0,165,0,0,116,167,2,0,40,165,0,0,134,172,2,0,200,21,0,0,0,0,0,0,0,165,0,0,122,170,2,0,40,165,0,0,207,173,2,0,200,21,0,0,0,0,0,0,0,165,0,0,53,173,2,0,40,165,0,0,136,175,2,0,200,21,0,0,0,0,0,0,0,165,0,0,106,174,2,0,40,165,0,0,38,177,2,0,200,21,0,0,0,0,0,0,0,165,0,0,39,176,2,0,40,165,0,0,171,179,2,0,200,21,0,0,0,0,0,0,0,165,0,0,195,177,2,0,40,165,0,0,58,181,2,0,200,21,0,0,0,0,0,0,0,165,0,0,75,180,2,0,40,165,0,0,244,182,2,0,200,21,0,0,0,0,0,0,0,165,0,0,7,182,2,0,40,165,0,0,177,187,2,0,200,21,0,0,0,0,0,0,0,165,0,0,193,183,2,0,40,165,0,0,148,195,2,0,200,21,0,0,0,0,0,0,0,165,0,0,108,188,2,0,40,165,0,0,98,198,2,0,200,21,0,0,0,0,0,0,0,165,0,0,89,196,2,0,40,165,0,0,226,203,2,0,200,21,0,0,0,0,0,0,0,165,0,0,35,199,2,0,40,165,0,0,135,206,2,0,200,21,0,0,0,0,0,0,0,165,0,0,159,204,2,0,40,165,0,0,108,209,2,0,200,21,0,0,0,0,0,0,0,165,0,0,65,207,2,0,40,165,0,0,127,211,2,0,200,21,0,0,0,0,0,0,0,165,0,0,39,210,2,0,40,165,0,0,9,213,2,0,200,21,0,0,0,0,0,0,0,165,0,0,45,212,2,0,40,165,0,0,121,214,2,0,200,21,0,0,0,0,0,0,0,165,0,0,181,213,2,0,40,165,0,0,95,218,2,0,200,21,0,0,0,0,0,0,0,165,0,0,45,215,2,0,40,165,0,0,66,222,2,0,200,21,0,0,0,0,0,0,0,165,0,0,10,219,2,0,40,165,0,0,58,225,2,0,200,21,0,0,0,0,0,0,0,165,0,0,232,222,2,0,40,165,0,0,10,226,2,0,16,24,0,0,0,0,0,0,40,165,0,0,41,226,2,0,16,24,0,0,0,0,0,0,40,165,0,0,69,226,2,0,16,24,0,0,0,0,0,0,40,165,0,0,98,226,2,0,16,24,0,0,0,0,0,0,40,165,0,0,139,226,2,0,16,24,0,0,0,0,0,0,40,165,0,0,175,226,2,0,16,24,0,0,0,0,0,0,0,165,0,0,84,233,2,0,80,165,0,0,107,233,2,0,0,0,0,0,1,0,0,0,152,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,49,0,3,0,176,20,0,0,0,0,0,0,0,165,0,0,236,255,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,119,6,3,0,224,39,0,0,0,0,0,0,40,165,0,0,31,8,3,0,224,39,0,0,0,0,0,0,0,165,0,0,7,11,3,0,0,165,0,0,230,10,3,0,0,165,0,0,198,10,3,0,0,165,0,0,153,10,3,0,0,165,0,0,107,10,3,0,0,165,0,0,59,10,3,0,0,165,0,0,20,10,3,0,0,165,0,0,239,9,3,0,0,165,0,0,236,1,3,0,0,165,0,0,197,9,3,0,0,165,0,0,166,9,3,0,0,165,0,0,71,3,3,0,0,165,0,0,249,0,3,0,40,165,0,0,38,11,3,0,224,39,0,0,0,0,0,0,40,165,0,0,147,12,3,0,224,39,0,0,0,0,0,0,40,165,0,0,229,12,3,0,224,39,0,0,0,0,0,0,40,165,0,0,1,15,3,0,40,25,0,0,0,0,0,0,0,165,0,0,22,15,3,0,40,165,0,0,16,16,3,0,224,39,0,0,0,0,0,0,40,165,0,0,210,27,3,0,88,25,0,0,0,0,0,0,0,165,0,0,225,26,3,0,0,165,0,0,99,28,3,0,40,165,0,0,244,28,3,0,120,25,0,0,0,0,0,0,0,165,0,0,172,28,3,0,0,165,0,0,130,29,3,0,40,165,0,0,16,30,3,0,152,25,0,0,0,0,0,0,0,165,0,0,200,29,3,0,0,165,0,0,161,30,3,0,40,165,0,0,237,31,3,0,88,25,0,0,0,0,0,0,0,165,0,0,234,30,3,0,40,165,0,0,236,32,3,0,120,25,0,0,0,0,0,0,0,165,0,0,145,32,3,0,40,165,0,0,129,34,3,0,152,25,0,0,0,0,0,0,0,165,0,0,141,33,3,0,40,165,0,0,111,35,3,0,88,25,0,0,0,0,0,0,0,165,0,0,37,35,3,0,40,165,0,0,243,36,3,0,120,25,0,0,0,0,0,0,0,165,0,0,2,36,3,0,40,165,0,0,95,38,3,0,152,25,0,0,0,0,0,0,0,165,0,0,131,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,80,165,0,0,117,39,3,0,0,0,0,0,2,0,0,0,160,2,0,0,2,0,0,0,160,0,0,0,3,220,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,150,40,3,0,224,39,0,0,0,0,0,0,40,165,0,0,3,44,3,0,64,27,0,0,0,0,0,0,40,165,0,0,124,42,3,0,56,27,0,0,0,0,0,0,0,165,0,0,56,43,3,0,0,165,0,0,248,44,3,0,40,165,0,0,132,46,3,0,64,27,0,0,0,0,0,0,40,165,0,0,201,45,3,0,56,27,0,0,0,0,0,0,40,165,0,0,52,48,3,0,64,27,0,0,0,0,0,0,40,165,0,0,120,47,3,0,56,27,0,0,0,0,0,0,40,165,0,0,233,49,3,0,64,27,0,0,0,0,0,0,40,165,0,0,41,49,3,0,56,27,0,0,0,0,0,0,40,165,0,0,155,51,3,0,64,27,0,0,0,0,0,0,40,165,0,0,226,50,3,0,56,27,0,0,0,0,0,0,40,165,0,0,168,52,3,0,224,27,0,0,0,0,0,0,0,165,0,0,141,52,3,0,0,165,0,0,3,53,3,0,40,165,0,0,81,53,3,0,224,27,0,0,0,0,0,0,0,165,0,0,54,53,3,0,40,165,0,0,199,53,3,0,224,27,0,0,0,0,0,0,0,165,0,0,172,53,3,0,40,165,0,0,61,54,3,0,224,27,0,0,0,0,0,0,0,165,0,0,34,54,3,0,40,165,0,0,179,54,3,0,224,27,0,0,0,0,0,0,0,165,0,0,152,54,3,0,40,165,0,0,41,55,3,0,224,27,0,0,0,0,0,0,0,165,0,0,14,55,3,0,40,165,0,0,159,55,3,0,224,27,0,0,0,0,0,0,0,165,0,0,132,55,3,0,40,165,0,0,21,56,3,0,224,27,0,0,0,0,0,0,0,165,0,0,250,55,3,0,40,165,0,0,139,56,3,0,224,27,0,0,0,0,0,0,0,165,0,0,112,56,3,0,40,165,0,0,1,57,3,0,224,27,0,0,0,0,0,0,0,165,0,0,230,56,3,0,40,165,0,0,119,57,3,0,224,27,0,0,0,0,0,0,0,165,0,0,92,57,3,0,40,165,0,0,237,57,3,0,224,27,0,0,0,0,0,0,0,165,0,0,210,57,3,0,40,165,0,0,99,58,3,0,224,27,0,0,0,0,0,0,0,165,0,0,72,58,3,0,40,165,0,0,217,58,3,0,224,27,0,0,0,0,0,0,0,165,0,0,190,58,3,0,40,165,0,0,79,59,3,0,224,27,0,0,0,0,0,0,0,165,0,0,52,59,3,0,40,165,0,0,197,59,3,0,224,27,0,0,0,0,0,0,0,165,0,0,170,59,3,0,40,165,0,0,59,60,3,0,224,27,0,0,0,0,0,0,0,165,0,0,32,60,3,0,40,165,0,0,177,60,3,0,224,27,0,0,0,0,0,0,0,165,0,0,150,60,3,0,40,165,0,0,39,61,3,0,224,27,0,0,0,0,0,0,0,165,0,0,12,61,3,0,40,165,0,0,157,61,3,0,224,27,0,0,0,0,0,0,0,165,0,0,130,61,3,0,40,165,0,0,19,62,3,0,224,27,0,0,0,0,0,0,0,165,0,0,248,61,3,0,40,165,0,0,137,62,3,0,224,27,0,0,0,0,0,0,0,165,0,0,110,62,3,0,40,165,0,0,255,62,3,0,224,27,0,0,0,0,0,0,0,165,0,0,228,62,3,0,40,165,0,0,117,63,3,0,224,27,0,0,0,0,0,0,0,165,0,0,90,63,3,0,40,165,0,0,235,63,3,0,224,27,0,0,0,0,0,0,0,165,0,0,208,63,3,0,40,165,0,0,97,64,3,0,224,27,0,0,0,0,0,0,0,165,0,0,70,64,3,0,40,165,0,0,215,64,3,0,224,27,0,0,0,0,0,0,0,165,0,0,188,64,3,0,40,165,0,0,77,65,3,0,224,27,0,0,0,0,0,0,0,165,0,0,50,65,3,0,40,165,0,0,195,65,3,0,224,27,0,0,0,0,0,0,0,165,0,0,168,65,3,0,40,165,0,0,57,66,3,0,224,27,0,0,0,0,0,0,0,165,0,0,30,66,3,0,40,165,0,0,175,66,3,0,224,27,0,0,0,0,0,0,0,165,0,0,148,66,3,0,40,165,0,0,37,67,3,0,224,27,0,0,0,0,0,0,0,165,0,0,10,67,3,0,40,165,0,0,155,67,3,0,224,27,0,0,0,0,0,0,0,165,0,0,128,67,3,0,40,165,0,0,17,68,3,0,224,27,0,0,0,0,0,0,0,165,0,0,246,67,3,0,40,165,0,0,135,68,3,0,224,27,0,0,0,0,0,0,0,165,0,0,108,68,3,0,40,165,0,0,253,68,3,0,224,27,0,0,0,0,0,0,0,165,0,0,226,68,3,0,40,165,0,0,115,69,3,0,224,27,0,0,0,0,0,0,0,165,0,0,88,69,3,0,40,165,0,0,233,69,3,0,224,27,0,0,0,0,0,0,0,165,0,0,206,69,3,0,40,165,0,0,95,70,3,0,224,27,0,0,0,0,0,0,0,165,0,0,68,70,3,0,40,165,0,0,213,70,3,0,224,27,0,0,0,0,0,0,0,165,0,0,186,70,3,0,40,165,0,0,75,71,3,0,224,27,0,0,0,0,0,0,0,165,0,0,48,71,3,0,40,165,0,0,193,71,3,0,224,27,0,0,0,0,0,0,0,165,0,0,166,71,3,0,40,165,0,0,55,72,3,0,224,27,0,0,0,0,0,0,0,165,0,0,28,72,3,0,40,165,0,0,173,72,3,0,224,27,0,0,0,0,0,0,0,165,0,0,146,72,3,0,40,165,0,0,35,73,3,0,224,27,0,0,0,0,0,0,0,165,0,0,8,73,3,0,40,165,0,0,153,73,3,0,224,27,0,0,0,0,0,0,0,165,0,0,126,73,3,0,40,165,0,0,15,74,3,0,224,27,0,0,0,0,0,0,0,165,0,0,244,73,3,0,40,165,0,0,133,74,3,0,224,27,0,0,0,0,0,0,0,165,0,0,106,74,3,0,40,165,0,0,251,74,3,0,224,27,0,0,0,0,0,0,0,165,0,0,224,74,3,0,40,165,0,0,113,75,3,0,224,27,0,0,0,0,0,0,0,165,0,0,86,75,3,0,40,165,0,0,231,75,3,0,224,27,0,0,0,0,0,0,0,165,0,0,204,75,3,0,40,165,0,0,93,76,3,0,224,27,0,0,0,0,0,0,0,165,0,0,66,76,3,0,40,165,0,0,211,76,3,0,224,27,0,0,0,0,0,0,0,165,0,0,184,76,3,0,40,165,0,0,73,77,3,0,224,27,0,0,0,0,0,0,0,165,0,0,46,77,3,0,40,165,0,0,191,77,3,0,224,27,0,0,0,0,0,0,0,165,0,0,164,77,3,0,40,165,0,0,53,78,3,0,224,27,0,0,0,0,0,0,0,165,0,0,26,78,3,0,40,165,0,0,171,78,3,0,224,27,0,0,0,0,0,0,0,165,0,0,144,78,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,33,79,3,0,224,27,0,0,0,0,0,0,0,165,0,0,6,79,3,0,40,165,0,0,151,79,3,0,224,27,0,0,0,0,0,0,0,165,0,0,124,79,3,0,40,165,0,0,12,80,3,0,224,27,0,0,0,0,0,0,0,165,0,0,242,79,3,0,40,165,0,0,128,80,3,0,224,27,0,0,0,0,0,0,0,165,0,0,102,80,3,0,40,165,0,0,153,82,3,0,224,27,0,0,0,0,0,0,0,165,0,0,218,80,3,0,40,165,0,0,13,83,3,0,224,27,0,0,0,0,0,0,0,165,0,0,243,82,3,0,40,165,0,0,129,83,3,0,224,27,0,0,0,0,0,0,0,165,0,0,103,83,3,0,40,165,0,0,245,83,3,0,224,27,0,0,0,0,0,0,0,165,0,0,219,83,3,0,40,165,0,0,105,84,3,0,224,27,0,0,0,0,0,0,0,165,0,0,79,84,3,0,40,165,0,0,221,84,3,0,224,27,0,0,0,0,0,0,0,165,0,0,195,84,3,0,40,165,0,0,81,85,3,0,224,27,0,0,0,0,0,0,0,165,0,0,55,85,3,0,40,165,0,0,197,85,3,0,224,27,0,0,0,0,0,0,0,165,0,0,171,85,3,0,80,165,0,0,217,88,3,0,0,0,0,0,2,0,0,0,184,2,0,0,2,0,0,0,160,0,0,0,3,224,255,255,80,165,0,0,63,93,3,0,0,0,0,0,1,0,0,0,160,2,0,0,3,220,255,255,80,165,0,0,25,93,3,0,0,0,0,0,1,0,0,0,160,2,0,0,3,220,255,255,40,165,0,0,186,94,3,0,200,34,0,0,0,0,0,0,0,165,0,0,136,94,3,0,0,165,0,0,33,95,3,0,80,165,0,0,238,99,3,0,0,0,0,0,2,0,0,0,128,34,0,0,2,0,0,0,160,0,0,0,3,216,255,255,80,165,0,0,56,100,3,0,0,0,0,0,2,0,0,0,152,34,0,0,2,0,0,0,160,0,0,0,3,216,255,255,40,165,0,0,202,100,3,0,128,11,0,0,0,0,0,0,0,165,0,0,134,100,3,0,40,165,0,0,177,102,3,0,64,35,0,0,0,0,0,0,0,165,0,0,102,102,3,0,0,165,0,0,220,103,3,0,40,165,0,0,42,109,3,0,112,35,0,0,0,0,0,0,40,165,0,0,68,109,3,0,112,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,95,109,3,0,40,165,0,0,134,109,3,0,112,35,0,0,0,0,0,0,40,165,0,0,149,113,3,0,56,40,0,0,0,0,0,0,0,0,0,0,0,0,0,128,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,255,40,165,0,0,219,113,3,0,192,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,143,118,3,0,40,165,0,0,123,118,3,0,224,35,0,0,0,0,0,0,80,165,0,0,79,119,3,0,0,0,0,0,2,0,0,0,40,2,0,0,2,0,0,0,160,0,0,0,3,224,255,255,1,0,0,0,0,0,0,0,130,128,0,0,0,0,0,0,138,128,0,0,0,0,0,128,0,128,0,128,0,0,0,128,139,128,0,0,0,0,0,0,1,0,0,128,0,0,0,0,129,128,0,128,0,0,0,128,9,128,0,0,0,0,0,128,138,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,9,128,0,128,0,0,0,0,10,0,0,128,0,0,0,0,139,128,0,128,0,0,0,0,139,0,0,0,0,0,0,128,137,128,0,0,0,0,0,128,3,128,0,0,0,0,0,128,2,128,0,0,0,0,0,128,128,0,0,0,0,0,0,128,10,128,0,0,0,0,0,0,10,0,0,128,0,0,0,128,129,128,0,128,0,0,0,128,128,128,0,0,0,0,0,128,1,0,0,128,0,0,0,0,8,128,0,128,0,0,0,128,0,0,0,0,0,0,0,0,80,165,0,0,112,121,3,0,0,0,0,0,2,0,0,0,0,37,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,201,121,3,0,0,0,0,0,2,0,0,0,232,38,0,0,2,0,0,0,120,0,0,0,2,8,0,0,40,165,0,0,15,122,3,0,240,1,0,0,0,0,0,0,80,165,0,0,242,123,3,0,0,0,0,0,2,0,0,0,80,37,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,70,124,3,0,0,0,0,0,2,0,0,0,200,38,0,0,2,0,0,0,120,0,0,0,2,8,0,0,80,165,0,0,135,124,3,0,0,0,0,0,2,0,0,0,144,37,0,0,2,0,0,0,160,0,0,0,3,224,255,255,80,165,0,0,197,124,3,0,0,0,0,0,1,0,0,0,168,37,0,0,3,228,255,255,80,165,0,0,233,124,3,0,0,0,0,0,2,0,0,0,192,38,0,0,3,236,255,255,120,0,0,0,3,232,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,50,125,3,0,240,1,0,0,0,0,0,0,40,165,0,0,252,134,3,0,240,1,0,0,0,0,0,0,40,165,0,0,124,135,3,0,240,1,0,0,0,0,0,0,40,165,0,0,235,135,3,0,48,40,0,0,0,0,0,0,40,165,0,0,110,136,3,0,8,39,0,0,0,0,0,0,80,165,0,0,209,136,3,0,0,0,0,0,2,0,0,0,72,38,0,0,2,0,0,0,160,0,0,0,3,244,255,255,80,165,0,0,39,137,3,0,0,0,0,0,2,0,0,0,24,38,0,0,2,0,0,0,120,0,0,0,2,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,219,144,3,0,136,38,0,0,0,0,0,0,40,165,0,0,16,145,3,0,240,2,0,0,0,0,0,0,40,165,0,0,77,145,3,0,136,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,131,145,3,0,192,38,0,0,0,0,0,0,0,165,0,0,144,145,3,0,40,165,0,0,174,145,3,0,192,38,0,0,0,0,0,0,40,165,0,0,157,145,3,0,200,38,0,0,0,0,0,0,40,165,0,0,190,145,3,0,200,38,0,0,0,0,0,0,40,165,0,0,211,145,3,0,200,38,0,0,0,0,0,0,40,165,0,0,244,145,3,0,192,38,0,0,0,0,0,0,40,165,0,0,228,145,3,0,8,39,0,0,0,0,0,0,40,165,0,0,6,146,3,0,8,39,0,0,0,0,0,0,0,165,0,0,25,146,3,0,40,165,0,0,38,146,3,0,192,38,0,0,0,0,0,0,40,165,0,0,50,146,3,0,192,38,0,0,0,0,0,0,40,165,0,0,65,146,3,0,56,39,0,0,0,0,0,0,40,165,0,0,98,146,3,0,96,39,0,0,0,0,0,0,40,165,0,0,168,146,3,0,96,39,0,0,0,0,0,0,40,165,0,0,132,146,3,0,128,39,0,0,0,0,0,0,40,165,0,0,202,146,3,0,96,39,0,0,0,0,0,0,228,164,0,0,238,139,3,0,40,165,0,0,242,146,3,0,112,39,0,0,0,0,0,0,40,165,0,0,23,147,3,0,112,39,0,0,0,0,0,0,0,165,0,0,152,160,3,0,80,165,0,0,177,160,3,0,0,0,0,0,1,0,0,0,216,39,0,0,0,0,0,0,40,165,0,0,207,160,3,0,192,38],"i8",ALLOC_NONE,Runtime.GLOBAL_BASE);allocate([40,165,0,0,249,160,3,0,144,47,0,0,0,0,0,0,0,165,0,0,19,161,3,0,40,165,0,0,37,161,3,0,24,40,0,0,0,0,0,0,0,165,0,0,79,161,3,0,80,165,0,0,128,161,3,0,0,0,0,0,1,0,0,0,32,40,0,0,3,244,255,255,80,165,0,0,175,161,3,0,0,0,0,0,1,0,0,0,32,40,0,0,3,244,255,255,80,165,0,0,222,161,3,0,3,0,0,0,2,0,0,0,56,40,0,0,2,0,0,0,80,40,0,0,2,8,0,0,40,165,0,0,14,162,3,0,168,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,165,0,0,138,162,3,0,216,39,0,0,0,0,0,0,80,165,0,0,160,162,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,192,46,0,0,2,0,0,0,80,165,0,0,178,162,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,200,46,0,0,2,0,0,0,80,165,0,0,212,162,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,200,46,0,0,2,0,0,0,80,165,0,0,247,162,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,200,46,0,0,2,0,0,0,40,165,0,0,26,163,3,0,16,41,0,0,0,0,0,0,40,165,0,0,60,163,3,0,16,41,0,0,0,0,0,0,80,165,0,0,95,163,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,200,46,0,0,2,0,0,0,40,165,0,0,129,163,3,0,160,40,0,0,0,0,0,0,40,165,0,0,151,163,3,0,160,40,0,0,0,0,0,0,40,165,0,0,171,163,3,0,160,40,0,0,0,0,0,0,80,165,0,0,191,163,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,192,46,0,0,2,0,0,0,40,165,0,0,209,163,3,0,160,40,0,0,0,0,0,0,40,165,0,0,230,163,3,0,160,40,0,0,0,0,0,0,80,165,0,0,251,163,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,208,46,0,0,0,0,0,0,80,165,0,0,63,164,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,232,46,0,0,0,0,0,0,80,165,0,0,131,164,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,0,47,0,0,0,0,0,0,80,165,0,0,199,164,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,24,47,0,0,0,0,0,0,80,165,0,0,11,165,3,0,0,0,0,0,3,0,0,0,160,40,0,0,2,0,0,0,48,47,0,0,2,0,0,0,56,47,0,0,0,8,0,0,80,165,0,0,80,165,3,0,0,0,0,0,3,0,0,0,160,40,0,0,2,0,0,0,48,47,0,0,2,0,0,0,64,47,0,0,0,8,0,0,80,165,0,0,149,165,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,72,47,0,0,0,8,0,0,80,165,0,0,218,165,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,72,47,0,0,0,8,0,0,80,165,0,0,31,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,80,47,0,0,2,0,0,0,80,165,0,0,59,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,80,47,0,0,2,0,0,0,80,165,0,0,87,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,80,47,0,0,2,0,0,0,80,165,0,0,115,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,80,47,0,0,2,0,0,0,80,165,0,0,143,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,88,47,0,0,0,0,0,0,80,165,0,0,213,166,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,96,47,0,0,0,0,0,0,80,165,0,0,27,167,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,104,47,0,0,0,0,0,0,80,165,0,0,97,167,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,112,47,0,0,0,0,0,0,80,165,0,0,167,167,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,120,47,0,0,2,0,0,0,80,165,0,0,188,167,3,0,0,0,0,0,2,0,0,0,160,40,0,0,2,0,0,0,120,47,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,22,171,3,0,0,165,0,0,255,170,3,0,80,165,0,0,233,170,3,0,0,0,0,0,1,0,0,0,136,47,0,0,0,0,0,0,80,165,0,0,186,170,3,0,0,0,0,0,1,0,0,0,136,47,0,0,0,0,0,0,80,165,0,0,164,170,3,0,0,0,0,0,1,0,0,0,128,47,0,0,0,0,0,0,80,165,0,0,117,170,3,0,0,0,0,0,1,0,0,0,128,47,0,0,0,0,0,0,0,165,0,0,98,170,3,0,0,165,0,0,64,170,3,0,0,165,0,0,30,170,3,0,0,165,0,0,9,170,3,0,0,165,0,0,244,169,3,0,0,165,0,0,219,169,3,0,0,165,0,0,194,169,3,0,0,165,0,0,169,169,3,0,0,165,0,0,144,169,3,0,0,165,0,0,120,169,3,0,0,165,0,0,139,170,3,0,0,165,0,0,208,170,3,0,40,165,0,0,43,171,3,0,8,39,0,0,0,0,0,0,0,165,0,0,66,171,3,0,40,165,0,0,91,171,3,0,160,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,0,42,0,0,0,43,0,0,0,42,0,0,0,42,0,0,0,44,0,0,0,45,0,0,0,42,0,0,0,42,0,0,0,43,0,0,0,28,0,0,0,0,0,0,0,168,0,0,0,46,0,0,0,47,0,0,0,44,0,0,0,45,0,0,0,48,0,0,0,248,255,255,255,168,0,0,0,49,0,0,0,50,0,0,0,228,255,255,255,228,255,255,255,228,255,255,255,228,255,255,255,168,0,0,0,46,0,0,0,51,0,0,0,52,0,0,0,53,0,0,0,0,0,0,0,160,0,0,0,42,0,0,0,42,0,0,0,54,0,0,0,55,0,0,0,0,0,0,0,128,0,0,0,56,0,0,0,57,0,0,0,44,0,0,0,248,255,255,255,128,0,0,0,58,0,0,0,59,0,0,0,0,0,0,0,120,0,0,0,42,0,0,0,42,0,0,0,10,0,0,0,100,0,0,0,232,3,0,0,16,39,0,0,160,134,1,0,64,66,15,0,128,150,152,0,0,225,245,5,0,202,154,59,0,0,0,0,200,0,0,0,60,0,0,0,61,0,0,0,47,0,0,0,0,0,0,0,8,2,0,0,62,0,0,0,63,0,0,0,48,0,0,0,43,0,0,0,64,0,0,0,65,0,0,0,43,0,0,0,44,0,0,0,49,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,1,0,0,66,0,0,0,67,0,0,0,50,0,0,0,252,255,255,255,252,255,255,255,32,1,0,0,68,0,0,0,69,0,0,0,0,0,0,0,144,1,0,0,44,0,0,0,70,0,0,0,71,0,0,0,24,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,1,0,0,72,0,0,0,73,0,0,0,50,0,0,0,51,0,0,0,74,0,0,0,252,255,255,255,252,255,255,255,112,1,0,0,75,0,0,0,76,0,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,112,1,0,0,52,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,0,0,0,0,168,1,0,0,45,0,0,0,43,0,0,0,44,0,0,0,80,0,0,0,53,0,0,0,54,0,0,0,56,0,0,0,0,0,0,0,200,1,0,0,81,0,0,0,82,0,0,0,200,255,255,255,200,255,255,255,200,1,0,0,83,0,0,0,84,0,0,0,0,0,0,0,184,1,0,0,85,0,0,0,86,0,0,0,45,0,0,0,42,0,0,0,42,0,0,0,42,0,0,0,55,0,0,0,56,0,0,0,43,0,0,0,57,0,0,0,58,0,0,0,46,0,0,0,44,0,0,0,47,0,0,0,0,50,0,0,44,55,0,0,64,55,0,0,20,50,0,0,0,0,0,0,224,1,0,0,87,0,0,0,88,0,0,0,89,0,0,0,90,0,0,0,48,0,0,0,59,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,2,0,0,91,0,0,0,92,0,0,0,60,0,0,0,252,255,255,255,252,255,255,255,40,2,0,0,93,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,1,0,0,46,0,0,0,95,0,0,0,96,0,0,0,0,0,0,0,96,2,0,0,47,0,0,0,97,0,0,0,98,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,0,0,0,99,0,0,0,100,0,0,0,50,0,0,0,252,255,255,255,252,255,255,255,240,0,0,0,101,0,0,0,102,0,0,0,24,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,2,0,0,103,0,0,0,104,0,0,0,50,0,0,0,61,0,0,0,105,0,0,0,252,255,255,255,252,255,255,255,64,2,0,0,106,0,0,0,107,0,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,64,2,0,0,62,0,0,0,108,0,0,0,109,0,0,0,110,0,0,0,0,0,0,0,112,2,0,0,87,0,0,0,111,0,0,0,112,0,0,0,90,0,0,0,49,0,0,0,63,0,0,0,0,0,0,0,128,2,0,0,87,0,0,0,113,0,0,0,114,0,0,0,90,0,0,0,50,0,0,0,64,0,0,0,0,0,0,0,144,2,0,0,115,0,0,0,116,0,0,0,117,0,0,0,51,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,240,3,0,0,119,0,0,0,120,0,0,0,121,0,0,0,51,0,0,0,122,0,0,0,0,0,0,0,224,3,0,0,123,0,0,0,124,0,0,0,125,0,0,0,51,0,0,0,126,0,0,0,0,0,0,0,192,3,0,0,127,0,0,0,128,0,0,0,65,0,0,0,48,0,0,0,129,0,0,0,130,0,0,0,49,0,0,0,52,0,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,1,0,0,131,0,0,0,132,0,0,0,50,0,0,0,252,255,255,255,252,255,255,255,8,1,0,0,133,0,0,0,134,0,0,0,64,0,0,0,0,0,0,0,96,3,0,0,135,0,0,0,136,0,0,0,56,0,0,0,248,255,255,255,96,3,0,0,137,0,0,0,138,0,0,0,192,255,255,255,192,255,255,255,96,3,0,0,139,0,0,0,140,0,0,0,64,0,0,0,0,0,0,0,56,40,0,0,141,0,0,0,142,0,0,0,192,255,255,255,192,255,255,255,56,40,0,0,143,0,0,0,144,0,0,0,0,53,0,0,240,54,0,0,60,53,0,0,80,53,0,0,44,55,0,0,64,55,0,0,24,55,0,0,4,55,0,0,40,53,0,0,20,53,0,0,0,0,0,0,208,2,0,0,42,0,0,0,42,0,0,0,53,0,0,0,54,0,0,0,45,0,0,0,43,0,0,0,55,0,0,0,56,0,0,0,57,0,0,0,67,0,0,0,68,0,0,0,69,0,0,0,50,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,51,0,0,0,58,0,0,0,46,0,0,0,42,0,0,0,52,0,0,0,47,0,0,0,48,0,0,0,53,0,0,0,54,0,0,0,49,0,0,0,59,0,0,0,50,0,0,0,1,0,0,0,0,0,0,0,32,3,0,0,145,0,0,0,146,0,0,0,44,0,0,0,248,255,255,255,32,3,0,0,147,0,0,0,148,0,0,0,28,0,0,0,0,0,0,0,0,3,0,0,149,0,0,0,150,0,0,0,44,0,0,0,75,0,0,0,151,0,0,0,248,255,255,255,0,3,0,0,152,0,0,0,153,0,0,0,228,255,255,255,228,255,255,255,228,255,255,255,228,255,255,255,0,3,0,0,76,0,0,0,154,0,0,0,155,0,0,0,156,0,0,0,24,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,3,0,0,157,0,0,0,158,0,0,0,50,0,0,0,77,0,0,0,159,0,0,0,252,255,255,255,252,255,255,255,64,3,0,0,160,0,0,0,161,0,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,64,3,0,0,78,0,0,0,162,0,0,0,163,0,0,0,164,0,0,0,64,0,0,0,0,0,0,0,104,40,0,0,165,0,0,0,166,0,0,0,56,0,0,0,248,255,255,255,104,40,0,0,167,0,0,0,168,0,0,0,192,255,255,255,192,255,255,255,104,40,0,0,169,0,0,0,170,0,0,0,56,0,0,0,0,0,0,0,80,40,0,0,171,0,0,0,172,0,0,0,200,255,255,255,200,255,255,255,80,40,0,0,173,0,0,0,174,0,0,0,24,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,3,0,0,175,0,0,0,176,0,0,0,50,0,0,0,79,0,0,0,177,0,0,0,252,255,255,255,252,255,255,255,112,3,0,0,178,0,0,0,179,0,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,112,3,0,0,80,0,0,0,180,0,0,0,181,0,0,0,182,0,0,0,0,0,0,0,160,3,0,0,183,0,0,0,184,0,0,0,185,0,0,0,51,0,0,0,186,0,0,0,0,0,0,0,144,3,0,0,187,0,0,0,188,0,0,0,189,0,0,0,51,0,0,0,190,0,0,0,0,0,0,0,176,3,0,0,191,0,0,0,192,0,0,0,193,0,0,0,51,0,0,0,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,4,0,0,195,0,0,0,196,0,0,0,197,0,0,0,51,0,0,0,198,0,0,0,0,0,0,0,96,4,0,0,199,0,0,0,200,0,0,0,201,0,0,0,51,0,0,0,202,0,0,0,0,0,0,0,80,4,0,0,203,0,0,0,204,0,0,0,205,0,0,0,51,0,0,0,206,0,0,0,0,0,0,0,64,4,0,0,207,0,0,0,208,0,0,0,209,0,0,0,51,0,0,0,210,0,0,0,0,0,0,0,48,4,0,0,211,0,0,0,212,0,0,0,213,0,0,0,51,0,0,0,214,0,0,0,0,0,0,0,32,4,0,0,215,0,0,0,216,0,0,0,217,0,0,0,51,0,0,0,218,0,0,0,0,0,0,0,16,4,0,0,219,0,0,0,220,0,0,0,42,0,0,0,42,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,42,0,0,0,51,0,0,0,85,0,0,0,0,0,0,0,0,4,0,0,221,0,0,0,222,0,0,0,55,0,0,0,56,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,57,0,0,0,51,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,4,0,0,60,0,0,0,61,0,0,0,62,0,0,0,63,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,68,0,0,0,69,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,86,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,94,0,0,0,95,0,0,0,96,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,100,0,0,0,101,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,62,0,0,0,63,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,68,0,0,0,69,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,86,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,94,0,0,0,95,0,0,0,96,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,100,0,0,0,101,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,152,5,0,0,223,0,0,0,224,0,0,0,86,0,0,0,103,0,0,0,225,0,0,0,226,0,0,0,52,0,0,0,105,0,0,0,87,0,0,0,0,0,0,0,80,5,0,0,227,0,0,0,228,0,0,0,88,0,0,0,104,0,0,0,229,0,0,0,230,0,0,0,42,0,0,0,106,0,0,0,89,0,0,0,0,0,0,0,64,5,0,0,231,0,0,0,232,0,0,0,233,0,0,0,51,0,0,0,234,0,0,0,0,0,0,0,240,4,0,0,235,0,0,0,236,0,0,0,237,0,0,0,51,0,0,0,238,0,0,0,0,0,0,0,224,4,0,0,239,0,0,0,240,0,0,0,241,0,0,0,51,0,0,0,242,0,0,0,0,0,0,0,192,4,0,0,243,0,0,0,244,0,0,0,245,0,0,0,51,0,0,0,246,0,0,0,0,0,0,0,160,4,0,0,247,0,0,0,248,0,0,0,249,0,0,0,51,0,0,0,250,0,0,0,0,0,0,0,176,4,0,0,251,0,0,0,252,0,0,0,253,0,0,0,51,0,0,0,254,0,0,0,0,0,0,0,208,4,0,0,255,0,0,0,0,1,0,0,1,1,0,0,51,0,0,0,2,1,0,0,1,0,0,0,0,0,0,0,32,5,0,0,3,1,0,0,4,1,0,0,90,0,0,0,248,255,255,255,32,5,0,0,5,1,0,0,6,1,0,0,28,0,0,0,0,0,0,0,0,5,0,0,7,1,0,0,8,1,0,0,90,0,0,0,91,0,0,0,9,1,0,0,248,255,255,255,0,5,0,0,10,1,0,0,11,1,0,0,228,255,255,255,228,255,255,255,228,255,255,255,228,255,255,255,0,5,0,0,92,0,0,0,12,1,0,0,13,1,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,5,0,0,107,0,0,0,108,0,0,0,62,0,0,0,109,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,112,0,0,0,113,0,0,0,114,0,0,0,73,0,0,0,115,0,0,0,75,0,0,0,76,0,0,0,116,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,117,0,0,0,118,0,0,0,119,0,0,0,120,0,0,0,121,0,0,0,122,0,0,0,123,0,0,0,88,0,0,0,124,0,0,0,125,0,0,0,91,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,129,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,102,0,0,0,103,0,0,0,105,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,68,0,0,0,69,0,0,0,108,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,110,0,0,0,111,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,88,0,0,0,113,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,114,0,0,0,95,0,0,0,115,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,116,0,0,0,117,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,5,0,0,15,1,0,0,16,1,0,0,50,0,0,0,252,255,255,255,252,255,255,255,208,5,0,0,17,1,0,0,18,1,0,0,0,0,0,0,232,5,0,0,60,0,0,0,61,0,0,0,62,0,0,0,134,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,135,0,0,0,136,0,0,0,72,0,0,0,73,0,0,0,115,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,118,0,0,0,137,0,0,0,138,0,0,0,85,0,0,0,139,0,0,0,87,0,0,0,140,0,0,0,89,0,0,0,125,0,0,0,141,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,142,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,143,0,0,0,132,0,0,0,144,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,118,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,119,0,0,0,69,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,88,0,0,0,113,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,114,0,0,0,95,0,0,0,115,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,116,0,0,0,117,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,60,0,0,0,61,0,0,0,62,0,0,0,145,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,146,0,0,0,113,0,0,0,147,0,0,0,73,0,0,0,148,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,118,0,0,0,137,0,0,0,138,0,0,0,85,0,0,0,122,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,125,0,0,0,91,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,142,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,68,0,0,0,69,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,88,0,0,0,113,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,114,0,0,0,95,0,0,0,115,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,116,0,0,0,117,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,6,0,0,149,0,0,0,150,0,0,0,151,0,0,0,152,0,0,0,153,0,0,0,154,0,0,0,155,0,0,0,156,0,0,0,157,0,0,0,158,0,0,0,159,0,0,0,160,0,0,0,161,0,0,0,162,0,0,0,163,0,0,0,164,0,0,0,165,0,0,0,166,0,0,0,167,0,0,0,168,0,0,0,169,0,0,0,170,0,0,0,171,0,0,0,172,0,0,0,173,0,0,0,174,0,0,0,175,0,0,0,176,0,0,0,177,0,0,0,178,0,0,0,179,0,0,0,180,0,0,0,181,0,0,0,182,0,0,0,183,0,0,0,184,0,0,0,185,0,0,0,186,0,0,0,187,0,0,0,188,0,0,0,189,0,0,0,190,0,0,0,191,0,0,0,192,0,0,0,120,0,0,0,121,0,0,0,122,0,0,0,123,0,0,0,124,0,0,0,125,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,129,0,0,0,130,0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,134,0,0,0,135,0,0,0,136,0,0,0,137,0,0,0,138,0,0,0,139,0,0,0,140,0,0,0,141,0,0,0,142,0,0,0,143,0,0,0,144,0,0,0,145,0,0,0,146,0,0,0,147,0,0,0,148,0,0,0,149,0,0,0,150,0,0,0,151,0,0,0,152,0,0,0,153,0,0,0,154,0,0,0,155,0,0,0,156,0,0,0,157,0,0,0,158,0,0,0,159,0,0,0,160,0,0,0,161,0,0,0,162,0,0,0,163,0,0,0,193,0,0,0,164,0,0,0,0,0,0,0,72,6,0,0,187,0,0,0,19,1,0,0,20,1,0,0,194,0,0,0,21,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,6,0,0,60,0,0,0,61,0,0,0,62,0,0,0,195,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,196,0,0,0,197,0,0,0,72,0,0,0,73,0,0,0,115,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,118,0,0,0,137,0,0,0,138,0,0,0,85,0,0,0,122,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,125,0,0,0,91,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,142,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,131,0,0,0,132,0,0,0,198,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,165,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,68,0,0,0,166,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,88,0,0,0,113,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,114,0,0,0,95,0,0,0,115,0,0,0,97,0,0,0,98,0,0,0,99,0,0,0,116,0,0,0,117,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,6,0,0,60,0,0,0,61,0,0,0,62,0,0,0,109,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,199,0,0,0,113,0,0,0,200,0,0,0,73,0,0,0,115,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,118,0,0,0,137,0,0,0,138,0,0,0,85,0,0,0,122,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,125,0,0,0,91,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,142,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,167,0,0,0,69,0,0,0,168,0,0,0,169,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,170,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,88,0,0,0,113,0,0,0,90,0,0,0,91,0,0,0,92,0,0,0,93,0,0,0,114,0,0,0,171,0,0,0,115,0,0,0,172,0,0,0,173,0,0,0,174,0,0,0,116,0,0,0,117,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,136,6,0,0,22,1,0,0,23,1,0,0,93,0,0,0,175,0,0,0,24,1,0,0,25,1,0,0,53,0,0,0,201,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,168,7,0,0,26,1,0,0,27,1,0,0,95,0,0,0,176,0,0,0,28,1,0,0,29,1,0,0,177,0,0,0,202,0,0,0,96,0,0,0,0,0,0,0,144,7,0,0,30,1,0,0,31,1,0,0,97,0,0,0,178,0,0,0,32,1,0,0,33,1,0,0,179,0,0,0,203,0,0,0,98,0,0,0,0,0,0,0,120,7,0,0,34,1,0,0,35,1,0,0,99,0,0,0,180,0,0,0,36,1,0,0,37,1,0,0,181,0,0,0,204,0,0,0,100,0,0,0,0,0,0,0,80,7,0,0,60,0,0,0,38,1,0,0,101,0,0,0,0,0,0,0,240,6,0,0,26,1,0,0,39,1,0,0,102,0,0,0,182,0,0,0,40,1,0,0,41,1,0,0,183,0,0,0,205,0,0,0,103,0,0,0,0,0,0,0,208,6,0,0,30,1,0,0,42,1,0,0,104,0,0,0,184,0,0,0,43,1,0,0,44,1,0,0,185,0,0,0,206,0,0,0,105,0,0,0,0,0,0,0,176,6,0,0,34,1,0,0,45,1,0,0,106,0,0,0,186,0,0,0,46,1,0,0,47,1,0,0,187,0,0,0,207,0,0,0,107,0,0,0,0,0,0,0,48,7,0,0,48,1,0,0,49,1,0,0,101,0,0,0,252,255,255,255,48,7,0,0,50,1,0,0,51,1,0,0,24,0,0,0,0,0,0,0,16,7,0,0,52,1,0,0,53,1,0,0,101,0,0,0,108,0,0,0,54,1,0,0,252,255,255,255,16,7,0,0,55,1,0,0,56,1,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,16,7,0,0,109,0,0,0,57,1,0,0,58,1,0,0,59,1,0,0,0,0,0,0,192,7,0,0,60,0,0,0,61,0,0,0,62,0,0,0,109,0,0,0,64,0,0,0,110,0,0,0,66,0,0,0,111,0,0,0,68,0,0,0,69,0,0,0,208,0,0,0,113,0,0,0,72,0,0,0,73,0,0,0,115,0,0,0,75,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,209,0,0,0,210,0,0,0,138,0,0,0,85,0,0,0,122,0,0,0,87,0,0,0,88,0,0,0,89,0,0,0,125,0,0,0,91,0,0,0,126,0,0,0,127,0,0,0,128,0,0,0,142,0,0,0,96,0,0,0,130,0,0,0,98,0,0,0,131,0,0,0,132,0,0,0,133,0,0,0,102,0,0,0,103,0,0,0,58,0,0,0,59,0,0,0,60,0,0,0,61,0,0,0,106,0,0,0,107,0,0,0,64,0,0,0,65,0,0,0,66,0,0,0,67,0,0,0,188,0,0,0,189,0,0,0,70,0,0,0,71,0,0,0,72,0,0,0,73,0,0,0,74,0,0,0,109,0,0,0,76,0,0,0,77,0,0,0,78,0,0,0,79,0,0,0,80,0,0,0,81,0,0,0,82,0,0,0,83,0,0,0,84,0,0,0,85,0,0,0,112,0,0,0,87,0,0,0,190,0,0,0,191,0,0,0,90,0,0,0,192,0,0,0,193,0,0,0,93,0,0,0,194,0,0,0,195,0,0,0,115,0,0,0,97,0,0,0,98,0,0,0,196,0,0,0,116,0,0,0,197,0,0,0,104,0,0,0,102,0,0,0,0,0,0,0,48,8,0,0,60,1,0,0,61,1,0,0,62,1,0,0,51,0,0,0,63,1,0,0,0,0,0,0,16,8,0,0,64,1,0,0,65,1,0,0,44,0,0,0,248,255,255,255,16,8,0,0,66,1,0,0,67,1,0,0,28,0,0,0,0,0,0,0,240,7,0,0,68,1,0,0,69,1,0,0,44,0,0,0,110,0,0,0,70,1,0,0,248,255,255,255,240,7,0,0,71,1,0,0,72,1,0,0,228,255,255,255,228,255,255,255,228,255,255,255,228,255,255,255,240,7,0,0,111,0,0,0,73,1,0,0,74,1,0,0,75,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,0,0,76,1,0,0,77,1,0,0,78,1,0,0,42,0,0,0,54,0,0,0,55,0,0,0,198,0,0,0,56,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,216,7,0,0,79,1,0,0,80,1,0,0,112,0,0,0,252,255,255,255,252,255,255,255,216,7,0,0,81,1,0,0,82,1,0,0,24,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104,8,0,0,83,1,0,0,84,1,0,0,112,0,0,0,113,0,0,0,85,1,0,0,252,255,255,255,252,255,255,255,104,8,0,0,86,1,0,0,87,1,0,0,232,255,255,255,232,255,255,255,232,255,255,255,232,255,255,255,104,8,0,0,114,0,0,0,88,1,0,0,89,1,0,0,90,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,1,2,0,50,1,2,0,57,1,2,0,64,1,2,0,71,1,2,0,78,1,2,0,85,1,2,0,92,1,2,0,98,1,2,0,108,1,2,0,121,88,2,0,115,1,2,0,121,1,2,0,128,1,2,0,140,1,2,0,153,1,2,0,166,1,2,0,176,1,2,0,186,1,2,0,196,1,2,0,206,1,2,0,216,1,2,0,226,1,2,0,236,1,2,0,246,1,2,0,252,1,2,0,255,1,2,0,3,2,2,0,9,2,2,0,16,2,2,0,23,2,2,0,27,2,2,0,31,2,2,0,35,2,2,0,39,2,2,0,43,2,2,0,47,2,2,0,51,2,2,0,55,2,2,0,59,2,2,0,65,2,2,0,74,2,2,0,83,2,2,0,95,2,2,0,111,2,2,0,130,2,2,0,134,2,2,0,141,2,2,0,59,169,3,0,145,2,2,0,152,2,2,0,162,2,2,0,165,2,2,0,223,87,2,0,174,2,2,0,214,87,2,0,183,2,2,0,192,2,2,0,195,2,2,0,200,2,2,0,205,2,2,0,211,2,2,0,220,2,2,0,224,2,2,0,233,2,2,0,237,2,2,0,240,2,2,0,248,2,2,0,2,3,2,0,11,3,2,0,18,3,2,0,21,3,2,0,233,86,2,0,29,3,2,0,36,3,2,0,45,3,2,0,49,3,2,0,57,3,2,0,64,3,2,0,71,3,2,0,79,3,2,0,229,87,2,0,84,3,2,0,92,3,2,0,100,3,2,0,160,81,2,0,107,3,2,0,113,3,2,0,117,3,2,0,122,3,2,0,128,3,2,0,135,3,2,0,144,3,2,0,154,3,2,0,163,3,2,0,173,3,2,0,183,3,2,0,191,3,2,0,198,3,2,0,206,3,2,0,214,3,2,0,218,3,2,0,223,3,2,0,229,3,2,0,234,3,2,0,241,3,2,0,249,3,2,0,254,3,2,0,4,4,2,0,11,4,2,0,16,4,2,0,22,4,2,0,29,4,2,0,38,4,2,0,48,4,2,0,57,4,2,0,69,4,2,0,82,4,2,0,89,4,2,0,103,4,2,0,116,90,2,0,118,4,2,0,127,4,2,0,133,4,2,0,138,4,2,0,144,4,2,0,152,4,2,0,158,4,2,0,161,4,2,0,168,4,2,0,172,4,2,0,178,4,2,0,190,4,2,0,193,4,2,0,205,4,2,0,212,4,2,0,219,4,2,0,223,4,2,0,228,4,2,0,235,4,2,0,243,4,2,0,46,1,2,0,150,144,3,0,152,144,3,0,162,144,3,0,164,144,3,0,174,144,3,0,176,144,3,0,203,144,3,0,254,4,2,0,150,160,3,0,160,144,3,0,0,5,2,0,205,144,3,0,3,5,2,0,6,5,2,0,9,5,2,0,12,5,2,0,16,5,2,0,20,5,2,0,25,5,2,0,28,5,2,0,31,5,2,0,34,5,2,0,37,5,2,0,201,144,3,0,40,5,2,0,43,5,2,0,166,144,3,0,156,144,3,0,46,5,2,0,48,5,2,0,51,5,2,0,54,5,2,0,158,144,3,0,172,144,3,0,91,168,3,0,250,124,3,0,58,5,2,0,60,5,2,0,63,5,2,0,66,5,2,0,189,144,3,0,191,144,3,0,69,5,2,0,72,5,2,0,207,144,3,0,75,5,2,0,77,5,2,0,80,5,2,0,254,255,1,0,245,94,2,0,5,0,2,0,8,0,2,0,17,0,2,0,170,94,2,0,23,0,2,0,247,83,2,0,32,0,2,0,35,0,2,0,40,0,2,0,239,94,2,0,85,70,2,0,45,0,2,0,161,94,2,0,49,0,2,0,53,0,2,0,255,94,2,0,237,83,2,0,76,70,2,0,56,0,2,0,63,0,2,0,0,84,2,0,66,0,2,0,228,163,2,0,74,0,2,0,83,0,2,0,179,94,2,0,87,0,2,0,94,0,2,0,101,0,2,0,109,0,2,0,234,3,3,0,129,71,2,0,169,85,2,0,114,0,2,0,121,0,2,0,127,0,2,0,133,0,2,0,137,0,2,0,142,0,2,0,148,0,2,0,152,0,2,0,158,0,2,0,165,0,2,0,171,0,2,0,179,0,2,0,187,0,2,0,193,0,2,0,198,0,2,0,204,0,2,0,181,57,2,0,185,57,2,0,101,63,2,0,241,3,3,0,227,90,2,0,246,3,3,0,234,90,2,0,147,58,2,0,153,58,2,0,83,5,2,0,88,5,2,0,94,5,2,0,101,5,2,0,110,5,2,0,0,0,0,0,93,168,3,0,98,168,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,2,0,219,0,2,0,225,0,2,0,230,0,2,0,161,85,2,0,236,0,2,0,242,0,2,0,245,0,2,0,252,0,2,0,0,1,2,0,184,118,3,0,6,1,2,0,9,1,2,0,21,1,2,0,28,1,2,0,35,1,2,0,156,94,2,0,39,1,2,0,120,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,8,0,0,91,1,0,0,92,1,0,0,115,0,0,0,0,0,0,0,208,8,0,0,93,1,0,0,94,1,0,0,115,0,0,0,244,255,255,255,208,8,0,0,95,1,0,0,96,1,0,0,32,0,0,0,0,0,0,0,176,8,0,0,97,1,0,0,98,1,0,0,115,0,0,0,116,0,0,0,99,1,0,0,244,255,255,255,176,8,0,0,100,1,0,0,101,1,0,0,224,255,255,255,224,255,255,255,224,255,255,255,224,255,255,255,176,8,0,0,117,0,0,0,102,1,0,0,103,1,0,0,104,1,0,0,0,0,0,0,40,9,0,0,105,1,0,0,106,1,0,0,107,1,0,0,51,0,0,0,108,1],"i8",ALLOC_NONE,Runtime.GLOBAL_BASE+10240);allocate([8,12,0,0,109,1,0,0,110,1,0,0,111,1,0,0,51,0,0,0,112,1,0,0,0,0,0,0,248,11,0,0,113,1,0,0,114,1,0,0,115,1,0,0,51,0,0,0,116,1,0,0,0,0,0,0,232,11,0,0,117,1,0,0,118,1,0,0,119,1,0,0,51,0,0,0,120,1,0,0,0,0,0,0,184,11,0,0,121,1,0,0,122,1,0,0,123,1,0,0,51,0,0,0,124,1,0,0,0,0,0,0,168