UNPKG

gsl-sf

Version:

special functions of GNU Scientific Library for JS

1 lines 842 kB
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_NODE=typeof process==="object"&&typeof require==="function";var ENVIRONMENT_IS_WEB=typeof window==="object";var ENVIRONMENT_IS_WORKER=typeof importScripts==="function";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){return Module["read"](filename,true)};Module["load"]=function load(f){globalEval(read(f))};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}}))}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}this["Module"]=Module}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_WEB){window["Module"]=Module}else{Module["load"]=importScripts}}else{throw"Unknown runtime environment. Where are we?"}function globalEval(x){eval.call(null,x)}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,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:[],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}),getAsmConst:(function(code,numArgs){if(!Runtime.asmConstCache)Runtime.asmConstCache={};var func=Runtime.asmConstCache[code];if(func)return func;var args=[];for(var i=0;i<numArgs;i++){args.push(String.fromCharCode(36)+i)}var source=Pointer_stringify(code);if(source[0]==='"'){if(source.indexOf('"',1)===source.length-1){source=source.substr(1,source.length-2)}else{abort("invalid EM_ASM input |"+source+"|. Please use EM_ASM(..code..) (no quotes) or EM_ASM({ ..code($0).. }, input) (to input values)")}}try{var evalled=eval("(function(Module, FS) { return function("+args.join(",")+"){ "+source+" } })")(Module,typeof FS!=="undefined"?FS:null)}catch(e){Module.printErr("error in executing inline EM_ASM code: "+e+" on: \n\n"+source+"\n\nwith args |"+args+"| (make sure to use the right one out of EM_ASM, EM_ASM_ARGS, etc.)");throw e}return Runtime.asmConstCache[code]=evalled}),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]}),UTF8Processor:(function(){var buffer=[];var needed=0;this.processCChar=(function(code){code=code&255;if(buffer.length==0){if((code&128)==0){return String.fromCharCode(code)}buffer.push(code);if((code&224)==192){needed=1}else if((code&240)==224){needed=2}else{needed=3}return""}if(needed){buffer.push(code);needed--;if(needed>0)return""}var c1=buffer[0];var c2=buffer[1];var c3=buffer[2];var c4=buffer[3];var ret;if(buffer.length==2){ret=String.fromCharCode((c1&31)<<6|c2&63)}else if(buffer.length==3){ret=String.fromCharCode((c1&15)<<12|(c2&63)<<6|c3&63)}else{var codePoint=(c1&7)<<18|(c2&63)<<12|(c3&63)<<6|c4&63;ret=String.fromCharCode(((codePoint-65536)/1024|0)+55296,(codePoint-65536)%1024+56320)}buffer.length=0;return ret});this.processJSString=function processJSString(string){string=unescape(encodeURIComponent(string));var ret=[];for(var i=0;i<string.length;i++){ret.push(string.charCodeAt(i))}return ret}}),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)enlargeMemory();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){try{func=eval("_"+ident)}catch(e){}}assert(func,"Cannot call unknown function "+ident+" (perhaps LLVM optimizations or closure removed it?)");return func}var cwrap,ccall;((function(){var stack=0;var JSfuncs={"stackSave":(function(){stack=Runtime.stackSave()}),"stackRestore":(function(){Runtime.stackRestore(stack)}),"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){var func=getCFunc(ident);var cArgs=[];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)JSfuncs["stackRestore"]();return ret};var sourceRegex=/^function\s*\(([^)]*)\)\s*{\s*([^*]*?)[\s;]*(?:return\s*(.*?)[;\s]*)?}$/;function parseJSFunc(jsfunc){var parsed=jsfunc.toString().match(sourceRegex).slice(1);return{arguments:parsed[0],body:parsed[1],returnValue:parsed[2]}}var JSsource={};for(var fun in JSfuncs){if(JSfuncs.hasOwnProperty(fun)){JSsource[fun]=parseJSFunc(JSfuncs[fun])}}cwrap=function cwrap(ident,returnType,argTypes){argTypes=argTypes||[];var cfunc=getCFunc(ident);var numericArgs=argTypes.every((function(type){return type==="number"}));var numericRet=returnType!=="string";if(numericRet&&numericArgs){return cfunc}var argNames=argTypes.map((function(x,i){return"$"+i}));var funcstr="(function("+argNames.join(",")+") {";var nargs=argTypes.length;if(!numericArgs){funcstr+=JSsource["stackSave"].body+";";for(var i=0;i<nargs;i++){var arg=argNames[i],type=argTypes[i];if(type==="number")continue;var convertCode=JSsource[type+"ToC"];funcstr+="var "+convertCode.arguments+" = "+arg+";";funcstr+=convertCode.body+";";funcstr+=arg+"="+convertCode.returnValue+";"}}var cfuncname=parseJSFunc((function(){return cfunc})).returnValue;funcstr+="var ret = "+cfuncname+"("+argNames.join(",")+");";if(!numericRet){var strgfy=parseJSFunc((function(){return Pointer_stringify})).returnValue;funcstr+="ret = "+strgfy+"(ret);"}if(!numericArgs){funcstr+=JSsource["stackRestore"].body+";"}funcstr+="return ret})";return eval(funcstr)}}))();Module["cwrap"]=cwrap;Module["ccall"]=ccall;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 Pointer_stringify(ptr,length){if(length===0||!ptr)return"";var hasUtf=false;var t;var i=0;while(1){t=HEAPU8[ptr+i>>0];if(t>=128)hasUtf=true;else if(t==0&&!length)break;i++;if(length&&i==length)break}if(!length)length=i;var ret="";if(!hasUtf){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}var utf8=new Runtime.UTF8Processor;for(i=0;i<length;i++){t=HEAPU8[ptr+i>>0];ret+=utf8.processCChar(t)}return ret}Module["Pointer_stringify"]=Pointer_stringify;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){for(var i=0;i<str.length;++i){var codeUnit=str.charCodeAt(i);HEAP16[outPtr+i*2>>1]=codeUnit}HEAP16[outPtr+str.length*2>>1]=0}Module["stringToUTF16"]=stringToUTF16;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){var iChar=0;for(var iCodeUnit=0;iCodeUnit<str.length;++iCodeUnit){var codeUnit=str.charCodeAt(iCodeUnit);if(codeUnit>=55296&&codeUnit<=57343){var trailSurrogate=str.charCodeAt(++iCodeUnit);codeUnit=65536+((codeUnit&1023)<<10)|trailSurrogate&1023}HEAP32[outPtr+iChar*4>>2]=codeUnit;++iChar}HEAP32[outPtr+iChar*4>>2]=0}Module["stringToUTF32"]=stringToUTF32;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 final=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()"}final=parse()}catch(e){final+="?"}if(final.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 final}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){return x+4095&-4096}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(){abort("Cannot enlarge memory arrays. Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value "+TOTAL_MEMORY+", (2) compile with ALLOW_MEMORY_GROWTH which adjusts the size at runtime but prevents some optimizations, or (3) set Module.TOTAL_MEMORY before the program runs.")}var TOTAL_STACK=Module["TOTAL_STACK"]||5242880;var TOTAL_MEMORY=Module["TOTAL_MEMORY"]||16777216;var FAST_MEMORY=Module["FAST_MEMORY"]||2097152;var totalMemory=64*1024;while(totalMemory<TOTAL_MEMORY||totalMemory<2*TOTAL_STACK){if(totalMemory<16*1024*1024){totalMemory*=2}else{totalMemory+=16*1024*1024}}if(totalMemory!==TOTAL_MEMORY){Module.printErr("increasing TOTAL_MEMORY to "+totalMemory+" to be compliant with the asm.js spec");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=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"]=Module.addOnPreRun=addOnPreRun;function addOnInit(cb){__ATINIT__.unshift(cb)}Module["addOnInit"]=Module.addOnInit=addOnInit;function addOnPreMain(cb){__ATMAIN__.unshift(cb)}Module["addOnPreMain"]=Module.addOnPreMain=addOnPreMain;function addOnExit(cb){__ATEXIT__.unshift(cb)}Module["addOnExit"]=Module.addOnExit=addOnExit;function addOnPostRun(cb){__ATPOSTRUN__.unshift(cb)}Module["addOnPostRun"]=Module.addOnPostRun=addOnPostRun;function intArrayFromString(stringy,dontAddNull,length){var ret=(new Runtime.UTF8Processor).processJSString(stringy);if(length){ret.length=length}if(!dontAddNull){ret.push(0)}return ret}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+i>>0]=array[i]}}Module["writeArrayToMemory"]=writeArrayToMemory;function writeAsciiToMemory(str,buffer,dontAddNull){for(var i=0;i<str.length;i++){HEAP8[buffer+i>>0]=str.charCodeAt(i)}if(!dontAddNull)HEAP8[buffer+str.length>>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"];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 runDependencies=0;var runDependencyWatcher=null;var dependenciesFulfilled=null;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;STATIC_BASE=8;STATICTOP=STATIC_BASE+73040;__ATINIT__.push({func:(function(){__GLOBAL__I_a()})},{func:(function(){__GLOBAL__I_a908()})});allocate([69,82,82,79,82,0,0,0,68,101,102,97,117,108,116,32,71,83,76,32,101,114,114,111,114,32,104,97,110,100,108,101,114,32,105,110,118,111,107,101,100,46,10,0,0,0,0,0,0,0,0,0,0,0,0,0,103,115,108,58,32,37,115,58,37,100,58,32,37,115,58,32,37,115,10,0,0,0,0,0,97,105,114,121,46,99,0,0,103,115,108,95,115,102,95,97,105,114,121,95,65,105,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,103,115,108,95,115,102,95,97,105,114,121,95,65,105,95,115,99,97,108,101,100,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,0,103,115,108,95,115,102,95,97,105,114,121,95,66,105,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,103,115,108,95,115,102,95,97,105,114,121,95,66,105,95,115,99,97,108,101,100,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,0,170,54,221,0,173,20,189,191,37,84,160,123,41,243,112,63,82,235,95,105,126,189,33,63,221,252,1,125,31,222,229,62,72,28,242,241,114,155,182,62,1,248,88,21,66,197,134,62,230,218,73,44,156,174,69,190,134,178,69,33,119,246,81,190,8,218,121,221,115,173,51,190,35,195,69,174,163,173,249,61,45,42,19,67,165,208,3,62,221,155,104,22,158,23,209,61,247,204,44,129,237,101,209,189,244,90,117,119,54,102,176,189,18,79,235,65,118,89,161,61,73,37,53,156,155,244,133,61,20,131,151,110,230,86,117,189,208,177,80,237,69,82,90,189,116,112,33,221,66,126,79,61,72,83,125,33,15,188,42,61,149,35,154,77,226,122,41,189,204,30,222,132,48,45,235,188,162,249,193,229,34,129,4,61,193,170,215,157,232,173,209,188,56,223,66,249,137,152,221,188,59,19,255,175,74,239,195,60,253,72,136,107,85,88,175,60,110,239,187,29,102,8,169,188,172,67,210,209,93,114,50,188,16,1,0,0,28,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,10,0,0,0,0,0,0,0,13,7,137,225,239,77,181,191,117,179,212,200,246,120,135,63,78,65,155,25,212,28,60,63,138,28,150,146,214,137,35,191,238,180,237,215,113,108,235,190,239,77,203,0,53,138,218,62,128,169,251,197,125,86,156,190,138,99,98,81,236,178,137,190,46,95,143,118,138,82,113,62,181,119,140,36,193,216,64,190,23,169,18,73,133,129,16,190,183,40,53,255,173,13,8,62,85,165,16,145,209,94,232,189,213,247,244,170,92,251,184,61,26,54,21,73,34,25,125,61,215,244,191,35,174,73,128,189,145,179,250,7,33,246,100,61,105,231,117,252,89,41,65,189,242,69,13,135,252,9,14,61,170,45,111,150,25,252,222,60,211,60,156,217,241,30,218,188,195,58,206,201,115,167,193,60,79,100,161,64,145,180,159,188,151,212,70,70,245,14,103,60,24,2,0,0,23,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,14,0,0,0,0,0,0,0,65,139,95,147,112,13,161,63,12,176,191,197,199,165,196,63,122,190,206,155,245,225,121,63,230,53,39,130,228,35,31,63,29,55,243,242,238,226,181,62,32,217,184,242,122,33,68,62,61,66,134,83,31,23,202,61,117,199,155,236,81,24,73,61,49,88,127,97,183,157,194,60,214,176,205,102,154,74,52,60,248,2,0,0,9,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,9,0,0,0,0,0,0,0,56,65,216,83,125,143,185,63,239,25,190,168,202,161,222,63,253,169,198,178,73,194,153,63,44,73,109,126,192,18,67,63,240,58,139,248,207,116,223,62,246,96,2,192,170,119,112,62,10,241,234,181,189,203,247,61,121,47,97,41,39,35,121,61,181,107,226,2,196,63,244,60,177,138,32,147,72,152,105,60,104,3,0,0,9,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,9,0,0,0,0,0,0,0,165,19,120,184,98,1,151,63,35,171,47,209,121,33,163,63,197,151,7,15,223,37,61,63,56,242,182,210,4,186,196,62,108,202,94,55,151,1,65,62,134,9,0,59,203,35,178,61,133,162,155,255,59,37,27,61,151,212,70,70,245,14,119,60,216,3,0,0,7,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,7,0,0,0,0,0,0,0,180,162,104,210,185,33,145,191,222,55,40,135,248,62,186,63,165,135,65,23,43,253,91,63,169,102,168,213,167,224,232,62,184,158,154,30,136,31,104,62,227,63,9,171,49,104,221,61,34,212,2,189,16,154,72,61,209,164,31,238,136,253,173,60,104,138,36,46,53,144,10,60,56,4,0,0,8,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,8,0,0,0,0,0,0,0,249,178,142,180,180,51,147,191,152,157,31,142,74,186,130,191,104,213,185,250,132,134,77,63,210,1,212,11,27,70,34,191,124,215,81,245,47,182,252,62,193,70,21,113,198,81,218,190,210,80,71,76,204,243,186,62,80,0,109,23,98,10,158,190,168,72,99,33,198,233,129,62,138,0,236,218,138,150,102,190,1,159,198,146,208,218,77,62,79,98,4,213,42,139,52,190,131,126,165,170,190,73,29,62,127,125,18,217,187,137,5,190,76,133,16,249,9,73,240,61,222,125,202,193,92,64,217,189,105,83,191,196,195,6,196,61,135,226,250,87,17,55,176,189,253,146,211,217,54,195,154,61,131,203,209,7,249,121,134,189,253,122,8,200,181,47,115,61,122,222,245,128,175,160,96,189,126,133,176,214,17,59,77,61,15,102,11,243,39,9,58,189,43,69,246,76,255,122,39,61,57,199,102,119,255,108,21,189,5,66,174,180,201,196,3,61,219,173,113,69,160,110,242,188,253,152,245,17,155,91,225,60,11,3,25,107,101,128,208,188,226,146,166,90,179,168,191,60,71,15,70,211,184,161,174,188,86,218,214,11,193,225,157,60,196,75,12,10,253,96,141,188,252,227,133,178,218,24,125,60,239,117,1,18,130,1,109,188,160,4,0,0,35,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,17,0,0,0,0,0,0,0,186,130,16,162,136,150,146,63,35,216,39,53,30,23,150,63,103,50,230,8,29,212,48,63,97,37,54,225,220,238,183,62,59,212,204,240,23,163,51,62,91,69,127,170,49,242,164,61,253,72,136,107,85,88,15,61,151,212,70,70,245,14,103,60,224,5,0,0,7,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,7,0,0,0,0,0,0,0,81,20,219,93,251,112,163,191,15,124,233,50,102,78,174,63,84,178,21,214,207,40,80,63,53,12,158,218,227,185,220,62,14,131,211,201,227,218,91,62,89,1,182,163,103,250,208,61,188,186,254,40,97,104,60,61,111,223,239,55,98,80,161,60,172,210,182,79,201,131,253,59,64,6,0,0,8,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,8,0,0,0,0,0,0,0,253,78,246,150,67,11,114,63,146,101,72,173,212,40,159,191,90,173,100,226,217,179,86,191,204,192,233,131,181,166,39,191,93,74,150,56,178,185,1,191,185,50,120,130,49,26,224,190,172,86,203,44,231,129,192,190,206,4,113,88,124,102,162,190,228,38,168,25,11,209,133,190,95,246,58,232,219,32,107,190,103,96,123,217,218,132,81,190,120,120,173,121,248,86,55,190,183,234,186,218,236,232,31,190,73,208,245,48,60,76,6,190,65,169,171,198,174,193,239,189,176,247,172,242,34,253,214,189,218,157,15,249,82,226,192,189,26,186,190,89,244,30,169,189,86,191,174,220,61,231,146,189,88,34,203,234,98,190,124,189,252,95,99,40,226,14,102,189,148,160,47,7,75,18,81,189,117,189,241,116,94,161,58,189,94,194,1,5,82,235,36,189,60,142,136,174,26,138,16,189,124,202,40,196,15,77,250,188,125,119,246,60,157,252,228,188,117,118,15,53,222,192,208,188,206,229,65,153,75,169,186,188,77,103,226,241,5,158,165,188,113,31,181,244,55,75,145,188,151,212,70,70,245,14,119,188,168,6,0,0,31,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,16,0,0,0,0,0,0,0,206,31,82,45,231,0,144,191,10,15,106,252,114,225,127,63,196,237,75,98,104,105,76,63,246,242,1,5,234,146,36,63,88,81,15,55,120,175,2,63,139,191,169,70,230,99,227,62,178,3,131,218,197,252,197,62,167,67,230,104,55,146,170,62,1,21,230,80,220,216,144,62,191,186,129,113,209,47,118,62,56,215,209,15,72,32,94,62,247,40,193,119,33,250,68,62,44,51,159,189,148,215,45,62,230,19,43,210,250,157,21,62,49,162,85,193,249,208,255,61,82,151,193,195,85,189,231,61,251,78,107,205,73,238,209,61,167,150,153,123,13,98,187,61,20,134,14,160,50,29,165,61,195,201,59,147,166,108,144,61,109,146,83,20,9,194,121,61,96,75,76,199,128,88,100,61,92,230,132,187,176,45,80,61,27,245,109,13,35,227,57,61,137,123,187,15,67,212,36,61,74,189,85,42,237,215,16,61,115,28,116,67,195,97,251,60,242,157,20,156,125,86,230,60,191,227,115,137,205,49,210,60,97,192,10,66,42,139,189,60,224,65,171,154,228,127,168,60,4,250,125,157,22,45,148,60,151,212,70,70,245,14,119,60,200,7,0,0,32,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,15,0,0,0,0,0,0,0,119,190,191,51,253,61,178,191,107,24,208,38,140,47,120,191,219,229,200,210,238,193,31,191,52,166,3,60,141,187,228,190,99,215,220,180,170,42,183,190,125,190,87,121,69,139,145,190,98,82,136,91,211,61,112,190,91,65,213,62,185,96,81,190,143,91,226,190,192,195,52,190,228,51,130,143,192,21,27,190,236,224,43,56,55,250,2,190,66,184,2,207,200,60,236,189,92,199,155,74,12,28,214,189,112,99,161,128,6,24,194,189,149,36,52,125,152,200,174,189,239,118,79,88,62,25,155,189,254,73,203,247,88,152,136,189,127,111,196,117,244,241,118,189,114,135,203,117,15,242,101,189,52,52,80,163,141,120,85,189,99,137,41,170,109,114,69,189,243,179,189,103,58,214,53,189,37,4,57,57,110,161,38,189,128,247,196,73,214,213,23,189,2,77,176,36,137,125,9,189,241,240,70,35,240,166,251,188,218,61,131,225,176,90,238,188,31,4,156,31,252,238,224,188,99,26,166,51,69,234,210,188,77,103,226,241,5,158,197,188,224,65,171,154,228,127,184,188,188,137,216,151,178,210,172,188,79,100,161,64,145,180,159,188,4,250,125,157,22,45,148,188,151,212,70,70,245,14,135,188,151,212,70,70,245,14,119,188,240,8,0,0,35,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,15,0,0,0,0,0,0,0,188,17,58,10,152,244,122,63,111,49,195,191,54,101,99,63,3,16,19,110,24,93,33,63,125,33,120,42,145,134,240,62,17,196,203,104,245,23,199,62,71,39,214,78,41,122,164,62,41,97,129,167,174,104,133,62,118,58,163,93,215,73,105,62,192,119,199,113,208,107,80,62,126,238,1,185,92,4,55,62,119,66,162,34,63,46,33,62,71,2,222,144,138,12,11,62,100,22,9,191,83,73,246,61,44,115,55,44,0,27,227,61,13,12,49,52,212,245,208,61,159,59,3,46,106,15,191,61,193,26,9,92,13,62,173,61,135,249,112,35,237,58,156,61,236,3,134,165,135,225,139,61,57,98,68,219,51,29,124,61,215,47,12,221,156,229,108,61,118,156,66,80,252,58,94,61,206,254,43,22,125,18,80,61,219,66,88,111,191,86,65,61,203,252,151,57,227,255,50,61,156,44,235,116,232,13,37,61,252,160,143,128,214,164,23,61,13,80,43,9,226,203,10,61,88,18,86,193,221,159,254,60,239,243,135,212,100,144,241,60,255,162,35,93,112,183,228,60,233,239,95,27,49,107,215,60,188,137,216,151,178,210,204,60,22,86,231,158,175,3,194,60,77,103,226,241,5,158,181,60,188,137,216,151,178,210,156,60,188,137,216,151,178,210,156,60,48,10,0,0,36,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,20,0,0,0,0,0,0,0,97,105,114,121,95,100,101,114,46,99,0,0,0,0,0,0,103,115,108,95,115,102,95,97,105,114,121,95,65,105,95,100,101,114,105,118,95,115,99,97,108,101,100,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,103,115,108,95,115,102,95,97,105,114,121,95,65,105,95,100,101,114,105,118,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,0,0,103,115,108,95,115,102,95,97,105,114,121,95,66,105,95,100,101,114,105,118,95,115,99,97,108,101,100,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,103,115,108,95,115,102,95,97,105,114,121,95,66,105,95,100,101,114,105,118,95,101,40,120,44,32,109,111,100,101,44,32,38,114,101,115,117,108,116,41,0,0,0,0,0,0,0,0,158,153,137,146,55,252,192,191,250,161,91,61,144,72,119,191,247,68,160,26,31,129,36,191,105,48,106,183,207,214,231,190,141,114,138,56,191,17,184,190,185,221,129,163,155,74,136,190,37,77,42,187,182,227,67,62,199,235,161,99,109,92,82,62,9,168,113,11,90,121,52,62,224,75,116,225,146,47,248,189,137,118,82,190,18,60,4,190,115,177,169,136,147,91,210,189,44,189,155,149,122,148,209,61,89,254,242,128,156,23,177,61,119,135,70,109,204,108,161,189,110,27,95,103,253,184,134,189,33,137,183,53,219,102,117,61,151,171,116,218,222,60,91,61,37,174,8,210,207,165,79,189,35,88,43,115,182,226,43,189,143,217,9,95,26,177,41,61,63,156,25,62,105,254,237,60,252,97,114,232,134,193,4,189,248,94,254,166,57,246,208,60,90,49,33,30,158,28,222,60,64,115,177,196,54,221,195,188,202,239,150,40,90,30,176,188,207,234,38,116,144,51,169,60,123,67,42,57,166,23,67,60,72,12,0,0,28,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,14,0,0,0,0,0,0,0,235,193,19,124,51,34,198,191,107,4,51,194,175,150,142,191,147,195,142,215,126,237,65,191,200,114,114,252,142,40,36,63,106,62,250,2,101,47,240,62,20,78,208,57,239,113,219,190,29,193,146,251,203,4,153,62,169,181,216,108,155,207,139,62,150,130,73,199,238,170,113,190,64,102,145,53,36,23,64,62,117,18,150,106,107,18,19,62,100,147,224,54,124,246,8,190,95,147,209,161,102,128,232,61,248,224,17,133,193,229,183,189,233,111,14,163,156,219,129,189,189,56,54,8,163,252,128,61,30,182,248,66,207,68,101,189,74,165,34,187,128,5,65,61,238,238,164,246,10,44,12,189,137,165,93,42,140,240,225,188,11,209,194,138,140,76,219,60,174,10,54,230,120,238,193,188,16,187,84,168,50,165,160,60,17,213,234,67,192,113,117,188,80,13,0,0,23,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,13,0,0,0,0,0,0,0,6,18,147,146,103,179,249,63,224,95,212,38,75,214,231,63,1,253,97,213,51,18,168,63,169,253,116,198,117,32,84,63,115,29,89,90,231,41,242,62,139,150,185,217,54,109,132,62,151,232,186,83,95,80,15,62,220,48,204,32,179,100,145,61,117,17,103,66,248,70,13,61,216,30,168,55,186,79,131,60,48,14,0,0,9,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,9,0,0,0,0,0,0,0,167,108,77,32,32,180,212,63,240,171,245,7,158,23,182,63,47,25,160,58,237,134,104,63,104,71,173,127,227,246,10,63,252,232,67,240,238,164,161,62,85,44,35,197,95,152,46,62,15,251,0,196,105,218,178,61,181,82,16,44,83,91,49,61,101,203,38,125,101,198,168,60,193,203,1,167,198,47,28,60,160,14,0,0,9,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,9,0,0,0,0,0,0,0,28,81,224,172,221,225,184,191,28,149,150,230,238,34,195,63,94,128,208,54,137,129,105,63,11,36,136,10,168,232,249,62,185,198,22,1,165,162,123,62,99,172,191,224,208,35,242,61,59,66,165,13,208,31,96,61,162,157,59,101,211,176,196,60,4,133,175,74,239,17,36,60,16,15,0,0,8,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,8,0,0,0,0,0,0,0,171,87,34,151,209,135,189,63,225,46,37,176,40,254,148,63,121,239,16,98,216,252,43,63,4,87,73,2,173,23,178,62,233,131,248,123,179,145,43,62,225,14,244,124,85,173,155,61,5,108,41,158,112,174,3,61,33,140,12,140,169,192,100,60,120,15,0,0,7,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,7,0,0,0,0,0,0,0,194,28,48,138,188,207,122,63,85,202,12,82,75,134,99,63,75,174,245,147,196,148,6,191,133,224,180,143,168,56,186,62,46,85,147,21,129,227,117,190,145,217,72,215,196,60,55,62,128,41,91,6,185,112,253,189,45,220,8,78,178,105,197,61,247,178,36,220,43,109,145,189,20,28,138,108,27,41,95,61,148,95,136,179,218,48,46,189,178,218,217,40,25,94,255,60,147,8,158,35,113,84,209,188,147,222,251,8,40,56,164,60,239,138,242,17,174,201,120,188,216,15,0,0,14,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,9,0,0,0,0,0,0,0,203,163,192,115,183,95,162,63,96,151,194,145,239,123,135,63,18,38,56,99,177,224,72,191,244,86,126,225,59,203,22,63,191,160,211,243,175,228,234,190,65,84,166,133,237,129,194,62,59,40,166,15,217,85,156,190,139,204,151,157,204,122,119,62,200,239,98,136,235,178,84,190,31,73,22,96,89,47,51,62,172,42,65,42,138,137,18,190,46,118,64,41,241,141,242,61,163,29,158,5,11,37,211,189,44,116,220,225,237,72,180,61,70,198,180,166,161,0,150,189,158,57,89,226,126,94,120,61,241,16,70,110,107,128,91,189,53,187,146,193,132,145,63,61,230,44,170,238,147,102,34,189,213,70,196,197,180,193,5,61,252,193,97,237,244,15,234,188,233,168,230,179,229,152,207,60,65,250,79,28,124,94,179,188,44,139,196,144,19,251,151,60,247,173,245,116,216,249,125,188,112,16,0,0,24,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,14,0,0,0,0,0,0,0,245,218,230,112,85,190,149,63,21,223,233,1,205,24,182,63,94,196,69,162,168,115,93,63,99,145,167,95,187,234,237,62,149,142,210,138,24,233,111,62,185,29,45,125,55,242,228,61,173,90,87,54,99,158,82,61,131,98,154,70,61,228,183,60,128,234,85,212,74,43,23,60,88,17,0,0,8,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,8,0,0,0,0,0,0,0,160,82,199,232,70,243,186,63,105,222,235,81,139,61,136,63,154,231,188,21,160,40,32,63,11,189,186,212,50,228,164,62,22,13,112,1,136,213,31,62,195,30,201,90,112,245,143,61,176,74,23,67,229,185,246,60,110,29,209,49,176,18,88,60,192,17,0,0,7,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,7,0,0,0,0,0,0,0,120,32,105,115,32,103,114,101,97,116,101,114,32,116,104,97,110,32,49,46,48,0,0,0,14,84,210,22,171,84,202,191,183,233,76,236,209,157,165,63,88,213,27,24,129,199,96,63,1,169,31,227,41,23,49,63,216,160,14,195,251,228,8,63,55,52,252,72,169,10,230,62,0,175,166,218,96,27,198,62,13,232,28,90,85,48,168,62,196,108,235,136,170,58,140,62,53,151,190,34,61,80,113,62,48,192,210,123,13,25,86,62,118,121,185,92,173,34,61,62,80,227,89,21,10,188,35,62,126,255,180,232,214,90,11,62,209,209,210,40,50,86,243,61,84,75,8,18,141,207,219,61,194,116,7,192,135,77,196,61,85,175,210,151,190,10,174,61,194,168,145,111,41,126,150,61,236,105,128,235,156,5,129,61,18,203,141,179,145,3,106,61,196,71,153,151,186,13,84,61,225,222,38,236,204,42,63,61,195,41,106,12,32,102,40,61,57,102,14,239,0,59,19,61,170,238,95,78,21,129,254,60,127,74,219,48,178,85,232,60,90,91,99,5,195,132,211,60,60,251,108,113,177,119,191,60,185,202,250,66,117,126,169,60,108,158,184,153,72,185,148,60,249,250,197,152,172,242,128,60,56,18,0,0,31,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,16,0,0,0,0,0,0,0,206,71,180,175,13,132,171,63,25,255,190,3,181,240,137,191,109,149,23,160,109,137,83,191,229,42,135,35,92,163,42,191,216,227,18,173,103,104,7,191,173,149,105,186,234,197,231,190,244,54,49,190,237,138,202,190,175,133,190,64,169,178,175,190,43,148,145,222,131,232,147,190,231,133,25,252,187,3,122,190,52,166,168,148,208,139,97,190,139,80,11,243,48,76,72,190,19,167,61,141,189,50,49,190,15,22,243,8,237,206,24,190,40,161,57,181,164,47,2,190,122,243,248,173,115,11,235,189,230,108,132,208,234,92,212,189,169,154,229,180,13,2,191,189,229,182,247,12,162,216,167,189,248,82,102,146,51,129,146,189,51,112,90,204,138,244,124,189,148,234,15,120,208,210,102,189,226,5,203,202,19,29,82,189,66,201,43,136,184,238,60,189,155,236,152,230,188,61,39,189,129,130,125,15,30,197,18,189,100,68,156,46,82,120,254,188,198,5,45,254,170,216,232,188,64,140,117,75,92,89,212,188,228,1,155,157,65,188,192,188,242,128,61,79,123,160,171,188,91,66,79,152,175,226,150,188,201,213,96,192,240,5,131,188,88,19,0,0,32,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,18,0,0,0,0,0,0,0,239,113,144,2,5,56,186,191,212,166,37,19,1,94,125,63,114,71,142,91,230,183,31,63,142,5,246,232,33,197,222,62,204,217,79,60,216,72,169,62,215,225,157,198,251,244,123,62,85,47,234,121,188,184,82,62,13,159,73,78,177,176,44,62,253,27,151,239,138,77,8,62,95,246,52,117,2,65,230,61,141,112,189,23,168,176,197,61,240,96,168,121,158,64,166,61,193,5,156,81,192,212,135,61,176,164,249,139,215,120,106,61,52,212,131,90,35,89,78,61,91,57,162,74,178,225,49,61,171,188,220,235,4,151,21,61,25,38,111,65,185,162,250,60,44,152,87,30,45,192,224,60,164,217,85,7,232,111,197,60,114,229,6,91,51,223,171,60,66,104,42,237,155,99,146,60,128,20,0,0,21,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,10,0,0,0,0,0,0,0,237,30,125,14,169,78,148,63,169,15,223,92,165,16,104,191,169,211,244,2,81,201,29,191,230,79,57,218,121,22,229,190,155,67,249,80,105,228,181,190,80,141,165,91,154,129,140,190,4,232,16,171,196,152,101,190,171,167,184,218,190,64,66,190,26,49,106,203,91,195,32,190,208,21,131,181,238,111,0,190,103,148,248,242,94,255,224,189,22,214,123,42,145,94,194,189,18,145,169,2,0,155,164,189,215,135,82,102,41,221,135,189,35,192,21,53,44,106,108,189,222,231,215,244,84,85,81,189,114,53,122,96,139,155,53,189,164,7,250,233,114,117,27,189,42,213,196,57,76,192,1,189,95,115,202,157,251,79,231,188,55,130,246,213,159,13,207,188,18,12,88,44,80,244,180,188,203,9,141,247,11,159,156,188,34,250,230,92,201,197,131,188,80,21,0,0,23,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,12,0,0,0,0,0,0,0,52,172,24,194,228,232,181,191,171,202,16,195,166,95,82,63,212,55,143,182,34,235,209,62,88,180,219,29,142,242,117,62,129,112,163,183,94,32,45,62,254,184,196,41,248,247,238,61,12,176,252,96,98,174,182,61,243,36,251,11,132,252,132,61,62,156,143,142,170,59,87,61,106,5,7,184,3,171,45,61,212,237,58,130,185,74,5,61,37,88,125,110,0,218,224,60,248,27,208,69,248,254,188,60,85,138,229,84,48,206,154,60,116,138,78,20,227,102,122,60,48,22,0,0,14,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,7,0,0,0,0,0,0,0,33,117,100,6,107,244,137,63,224,8,130,98,218,20,65,191,199,213,105,247,159,23,214,190,114,55,176,201,117,218,133,190,40,60,231,181,78,138,67,190,157,93,214,107,26,143,9,190,103,150,141,242,203,221,213,189,45,79,235,34,140,225,166,189,22,31,213,167,83,7,124,189,64,151,70,221,39,127,83,189,171,253,1,16,27,35,46,189,188,208,109,159,148,117,9,189,66,242,201,92,158,54,231,188,147,235,198,214,110,158,198,188,128,20,184,54,111,92,167,188,117,248,40,229,2,108,137,188,200,22,0,0,15,0,0,0,0,0,0,0,0,0,240,191,0,0,0,0,0,0,240,63,8,0,0,0,0,0,0,0,115,32,105,115,32,108,101,115,115,32,116,104,97,110,32,49,0,0,0,0,0,0,0,0,97,105,114,121,95,122,101,114,111,46,99,0,0,0,0,0,0,0,0,0,0,0,0,0,249,173,115,168,113,180,2,192,192,249,72,107,15,90,16,192,137,32,181,162,13,21,22,192,100,109,57,206,150,37,27,192,249,244,126,244,202,198,31,192,234,166,132,228,152,11,34,192,184,66,54,187,145,20,36,192,213,130,43,76,93,4,38,192,37,75,145,110,61,223,39,192,172,124,50,109,85,168,41,192,150,139,207,217,10,98,43,192,218,114,57,186,63,14,45,192,102,240,9,117,119,174,46,192,41,191,137,167,247,33,48,192,123,27,49,161,215,231,48,192,106,207,182,246,74,169,49,192,60,244,66,160,176,102,50,192,95,190,131,120,90,32,51,192,110,190,58,174,143,214,51,192,44,138,65,166,142,137,52,192,181,26,135,116,142,57,53,192,89,182,216,6,192,230,53,192,68,111,133,20,79,145,54,192,181,185,164,224,98,57,55,192,0,226,32,217,30,223,55,192,210,66,18,26,163,130,56,192,195,49,31,219,12,36,57,192,164,176,60,203,118,195,57,192,46,125,46,94,249,96,58,192,255,252,103,14,171,252,58,192,103,207,96,149,160,150,59,192,235,251,2,28,237,46,60,192,52,232,132,100,162,197,60,192,145,35,192,238,208,90,61,192,33,16,227,23,136,238,61,192,84,37,51,54,214,128,62,192,176,118,117,177,200,17,63,192,222,120,121,24,108,161,63,192,103,163,22,26,230,23,64,192,92,236,72,12,122,94,64,192,238,242,235,25,119,164,64,192,115,115,241,45,226,233,64,192,68,50,51,237,191,46,65,192,19,5,229,187,20,115,65,192,6,69,125,194,228,182,65,192,78,1,36,242,51,250,65,192,165,8,183,8,6,61,66,192,32,249,110,148,94,127,66,192,83,233,47,247,64,193,66,192,44,223,142,105,176,2,67,192,211,29,148,253,175,67,67,192,237,83,65,161,66,132,67,192,212,215,225,32,107,196,67,192,224,97,42,41,44,4,68,192,127,17,45,73,136,67,68,192,236,251,37,244,129,130,68,192,82,8,36,131,27,193,68,192,209,113,145,54,87,255,68,192,65,234,158,55,55,61,69,192,120,6,148,153,189,122,69,192,222,84,7,91,236,183,69,192,233,63,0,103,197,244,69,192,16,166,4,150,74,49,70,192,188,223,19,175,125,109,70,192,234,191,144,104,96,169,70,192,125,245,27,105,244,228,70,192,244,16,96,72,59,32,71,192,118,83,208,143,54,91,71,192,225,80,91,187,231,149,71,192,37,86,18,58,80,208,71,192,62,111,198,110,113,10,72,192,171,212,155,176,76,68,72,192,138,118,148,75,227,125,72,192,191,75,18,129,54,183,72,192,56,253,81,136,71,240,72,192,161,120,222,142,23,41,73,192,26,234,253,184,167,97,73,192,21,146,24,34,249,153,73,192,251,226,25,221,12,210,73,192,132,73,204,244,227,9,74,192,237,250,47,108,127,65,74,192,7,29,205,62,224,120,74,192,144,149,1,97,7,176,74,192,127,200,74,192,245,230,74,192,99,135,139,67,172,29,75,192,10,111,78,203,43,84,75,192,64,236,4,50,117,138,75,192,36,28,67,76,137,192,75,192,237,184,248,232,104,246,75,192,117,64,167,209,20,44,76,192,157,126,149,202,141,97,76,192,202,162,0,147,212,150,76,192,250,4,75,229,233,203,76,192,95,188,40,119,206,0,77,192,90,39,202,249,130,53,77,192,69,130,4,26,8,106,77,192,214,168,120,128,94,158,77,192,216,27,184,209,134,210,77,192,118,99,104,174,129,6,78,192,160,228,100,179,79,58,78,192,0,0,0,0,0,0,0,0,13,178,38,132,135,199,242,191,42,198,46,247,50,43,10,192,178,243,213,240,172,82,19,192,125,254,96,183,237,173,24,192,174,7,37,235,205,129,29,192,32,32,30,184,224,251,32,192,193,93,180,54,142,19,35,192,49,4,186,210,80,15,37,192,38,232,128,65,51,244,38,192,77,167,153,119,216,197,40,192,170,239,113,194,251,134,42,192,209,179,174,66,187,57,44,192,98,90,55,253,197,223,45,192,162,116,118,199,121,122,47,192,61,120,109,192,123,133,48,192,217,140,189,153,24,73,49,192,199,177,197,28,122,8,50,192,181,168,214,89,248,195,50,192,118,95,130,145,223,123,51,192,25,55,164,88,114,48,52,192,35,233,233,65,235,225,52,192,179,224,234,44,126,144,53,192,27,198,92,81,89,60,54,192,252,189,145,22,166,229,54,192,98,81,11,195,137,140,55,192,171,204,220,12,38,49,56,192,8,80,106,145,153,211,56,192,244,55,127,57,0,116,57,192,84,192,143,141,115,18,58,192,56,41,31,253,10,175,58,192,181,150,159,27,220,73,59,192,131,111,164,212,250,226,59,192,42,156,224,152,121,122,60,192,128,63,32,133,105,16,61,192,185,236,51,132,218,164,61,192,251,17,150,108,219,55,62,192,64,100,111,26,122,201,62,192,197,107,130,134,195,89,63,192,167,66,111,218,195,232,63,192,95,248,86,65,67,59,64,192,28,81,71,31,139,129,64,192,13,69,65,151,62,199,64,192,144,4,115,112,98,12,65,192,119,30,190,46,251,80,65,192,177,138,226,23,13,149,65,192,21,152,40,56,156,216,65,192,246,231,152,102,172,27,66,192,58,144,207,72,65,94,66,192,182,188,117,86,94,160,66,192,102,172,107,220,6,226,66,192,141,163,171,255,61,35,67,192,34,87,237,191,6,100,67,192,212,104,16,250,99,164,67,192,15,191,83,106,88,228,67,192,109,212,94,174,230,35,68,192,215,129,33,71,17,99,68,192,135,66,142,154,218,161,68,192,51,126,50,245,68,224,68,192,122,1,176,139,82,30,69,192,255,116,26,124,5,92,69,192,235,86,59,207,95,153,69,192,229,182,190,121,99,214,69,192,77,185,74,93,18,19,70,192,253,177,131,73,110,79,70,192,129,120,254,252,120,139,70,192,141,110,34,38,52,199,70,192,15,141,252,99,161,2,71,192,181,171,4,71,194,61,71,192,222,25,214,81,152,120,71,192,19,134,220,249,36,