mxdrawassembly_min-CfChv3Vg.js 1008 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. var mxdrawassembly = (() => {
  2. var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined;
  3. if (typeof __filename !== 'undefined') _scriptDir = _scriptDir || __filename;
  4. return (
  5. function(mxdrawassembly = {}) {
  6. function aa(){ba.buffer!=da.buffer&&ea();return da}function ha(){ba.buffer!=da.buffer&&ea();return ka}function la(){ba.buffer!=da.buffer&&ea();return na}function oa(){ba.buffer!=da.buffer&&ea();return pa}function qa(){ba.buffer!=da.buffer&&ea();return ra}function sa(){ba.buffer!=da.buffer&&ea();return ta}function ua(){ba.buffer!=da.buffer&&ea();return va}var b;b||(b=typeof mxdrawassembly !== 'undefined' ? mxdrawassembly : {});var wa,xa;b.ready=new Promise(function(a,c){wa=a;xa=c});
  7. var ya=Object.assign({},b),za="./this.program",Aa=(a,c)=>{throw c;},Ba="object"==typeof window,Ca="function"==typeof importScripts,Da="object"==typeof process&&"object"==typeof process.versions&&"string"==typeof process.versions.node,Ea=b.ENVIRONMENT_IS_PTHREAD||!1,Fa="";function Ga(a){return b.locateFile?b.locateFile(a,Fa):Fa+a}var Ha,Ka,La;
  8. if(Da){var fs=require("fs"),Oa=require("path");Fa=Ca?Oa.dirname(Fa)+"/":__dirname+"/";Ha=(c,d)=>{c=c.startsWith("file://")?new URL(c):Oa.normalize(c);return fs.readFileSync(c,d?void 0:"utf8")};La=c=>{c=Ha(c,!0);c.buffer||(c=new Uint8Array(c));return c};Ka=(c,d,e)=>{c=c.startsWith("file://")?new URL(c):Oa.normalize(c);fs.readFile(c,function(f,l){f?e(f):d(l.buffer)})};!b.thisProgram&&1<process.argv.length&&(za=process.argv[1].replace(/\\/g,"/"));process.argv.slice(2);Aa=(c,d)=>{process.exitCode=c;throw d;
  9. };b.inspect=function(){return"[Emscripten Module object]"};let a;try{a=require("worker_threads")}catch(c){throw console.error('The "worker_threads" module is not supported in this node.js build - perhaps a newer version is needed?'),c;}global.Worker=a.Worker}else if(Ba||Ca)Ca?Fa=self.location.href:"undefined"!=typeof document&&document.currentScript&&(Fa=document.currentScript.src),_scriptDir&&(Fa=_scriptDir),Fa=0!==Fa.indexOf("blob:")?Fa.substr(0,Fa.replace(/[?#].*/,"").lastIndexOf("/")+1):"",Da||
  10. (Ha=a=>{var c=new XMLHttpRequest;c.open("GET",a,!1);c.send(null);return c.responseText},Ca&&(La=a=>{var c=new XMLHttpRequest;c.open("GET",a,!1);c.responseType="arraybuffer";c.send(null);return new Uint8Array(c.response)}),Ka=(a,c,d)=>{var e=new XMLHttpRequest;e.open("GET",a,!0);e.responseType="arraybuffer";e.onload=()=>{200==e.status||0==e.status&&e.response?c(e.response):d()};e.onerror=d;e.send(null)});Da&&"undefined"==typeof performance&&(global.performance=require("perf_hooks").performance);
  11. var Ra=console.log.bind(console),Sa=console.warn.bind(console);Da&&(Ra=a=>fs.writeSync(1,a+"\n"),Sa=a=>fs.writeSync(2,a+"\n"));var Ta=b.print||Ra,Ua=b.printErr||Sa;Object.assign(b,ya);ya=null;b.thisProgram&&(za=b.thisProgram);b.quit&&(Aa=b.quit);var Va;b.wasmBinary&&(Va=b.wasmBinary);var noExitRuntime=b.noExitRuntime||!0;"object"!=typeof WebAssembly&&Wa("no native wasm support detected");var ba,Xa,Ya=!1,Za,da,ka,$a,na,pa,ra,ta,va;
  12. function ea(){var a=ba.buffer;b.HEAP8=da=new Int8Array(a);b.HEAP16=$a=new Int16Array(a);b.HEAP32=pa=new Int32Array(a);b.HEAPU8=ka=new Uint8Array(a);b.HEAPU16=na=new Uint16Array(a);b.HEAPU32=ra=new Uint32Array(a);b.HEAPF32=ta=new Float32Array(a);b.HEAPF64=va=new Float64Array(a)}var ab=b.INITIAL_MEMORY||16777216;4194304<=ab||Wa("INITIAL_MEMORY should be larger than STACK_SIZE, was "+ab+"! (STACK_SIZE=4194304)");
  13. if(Ea)ba=b.wasmMemory;else if(b.wasmMemory)ba=b.wasmMemory;else if(ba=new WebAssembly.Memory({initial:ab/65536,maximum:32768,shared:!0}),!(ba.buffer instanceof SharedArrayBuffer))throw Ua("requested a shared WebAssembly.Memory but the returned buffer is not a SharedArrayBuffer, indicating that while the browser has SharedArrayBuffer it does not have WebAssembly threads support - you may need to set a flag"),Da&&Ua("(on node you may need: --experimental-wasm-threads --experimental-wasm-bulk-memory and/or recent version)"),
  14. Error("bad memory");ea();ab=ba.buffer.byteLength;var bb,cb=[],db=[],eb=[],fb=0;function gb(){return noExitRuntime||0<fb}function hb(){Ea||(b.noFSInit||ib||(ib=!0,jb(),b.stdin=b.stdin,b.stdout=b.stdout,b.stderr=b.stderr,b.stdin?kb("stdin",b.stdin):lb("/dev/tty","/dev/stdin"),b.stdout?kb("stdout",null,b.stdout):lb("/dev/tty","/dev/stdout"),b.stderr?kb("stderr",null,b.stderr):lb("/dev/tty1","/dev/stderr"),nb("/dev/stdin",0),nb("/dev/stdout",1),nb("/dev/stderr",1)),ob=!1,pb(db))}
  15. function aaa(){var a=b.preRun.shift();cb.unshift(a)}var qb=0,rb=null,sb=null;function tb(){qb++;b.monitorRunDependencies&&b.monitorRunDependencies(qb)}function ub(){qb--;b.monitorRunDependencies&&b.monitorRunDependencies(qb);if(0==qb&&(null!==rb&&(clearInterval(rb),rb=null),sb)){var a=sb;sb=null;a()}}function Wa(a){if(b.onAbort)b.onAbort(a);a="Aborted("+a+")";Ua(a);Za=1;a=new WebAssembly.RuntimeError(a+". Build with -sASSERTIONS for more info.");xa(a);throw a;}
  16. function vb(a){return a.startsWith("data:application/octet-stream;base64,")}var wb;wb="mxdrawassembly_min.wasm";vb(wb)||(wb=Ga(wb));function yb(a){try{if(a==wb&&Va)return new Uint8Array(Va);if(La)return La(a);throw"both async and sync fetching of the wasm failed";}catch(c){Wa(c)}}
  17. function baa(a){if(!Va&&(Ba||Ca)){if("function"==typeof fetch&&!a.startsWith("file://"))return fetch(a,{credentials:"same-origin"}).then(function(c){if(!c.ok)throw"failed to load wasm binary file at '"+a+"'";return c.arrayBuffer()}).catch(function(){return yb(a)});if(Ka)return new Promise(function(c,d){Ka(a,function(e){c(new Uint8Array(e))},d)})}return Promise.resolve().then(function(){return yb(a)})}
  18. function zb(a,c,d){return baa(a).then(function(e){return WebAssembly.instantiate(e,c)}).then(function(e){return e}).then(d,function(e){Ua("failed to asynchronously prepare wasm: "+e);Wa(e)})}
  19. function caa(a,c){var d=wb;return Va||"function"!=typeof WebAssembly.instantiateStreaming||vb(d)||d.startsWith("file://")||Da||"function"!=typeof fetch?zb(d,a,c):fetch(d,{credentials:"same-origin"}).then(function(e){return WebAssembly.instantiateStreaming(e,a).then(c,function(f){Ua("wasm streaming compile failed: "+f);Ua("falling back to ArrayBuffer instantiation");return zb(d,a,c)})})}
  20. var Ab,Bb,Hb={381714:()=>"undefined"!==typeof Ca&&Ca?1:0,381806:(a,c)=>{window.MxCustomEntityManager_freeObject(a,c)},381862:(a,c)=>window.MxCustomEntityManager_relationObject(a,c),381929:(a,c,d)=>{"undefined"!=typeof window?window.MxCustomEntityManager_syncData(a,c,d):console.log("Mx:McDbCustomEntity::syncData failed")},382088:(a,c,d,e,f,l)=>{"undefined"!=typeof window?window.MxCustomEntityManager_worldDraw(a,c,d,e,f,l):console.log("Mx:McDbCustomEntity::worldDraw failed")},382256:(a,c,d,e,f,l)=>
  21. {"undefined"!=typeof window?window.MxCustomEntityManager_worldDraw(a,c,d,e,f,l):console.log("Mx:McDbCustomEntity::worldDraw failed")},382424:(a,c,d,e,f,l)=>{"undefined"!=typeof window?window.MxCustomEntityManager_worldDraw(a,c,d,e,f,l):console.log("Mx:McDbCustomEntity::worldDraw failed")},382592:(a,c,d,e,f,l)=>{"undefined"!=typeof window?window.MxCustomEntityManager_worldDraw(a,c,d,e,f,l):console.log("Mx:McDbCustomEntity::worldDraw failed")},382760:(a,c,d,e)=>{"undefined"!=typeof window?window.MxCustomEntityManager_transformBy(a,
  22. c,d,e):console.log("Mx:MxCustomEntityManager_transformBy failed")},382930:(a,c,d,e)=>{"undefined"!=typeof window?window.MxCustomEntityManager_transformBy(a,c,d,e):console.log("Mx:MxCustomEntityManager_transformBy failed")},383103:a=>{"undefined"!=typeof window?window.MxCustomEntityManager_freeDatabase(a):console.log("Mx:freeDatabaseidIndex failed")},383251:()=>aa().length,383271:a=>{a=g(a);if(window.mx_saveFile_call){var c=c||"binary";if("utf8"!==c&&"binary"!==c)throw Error('Invalid encoding type "'+
  23. c+'"');var d;var e=nb(a,e||0);a=Cb(a,{fa:!0}).node;if(!a)throw new Db(44);if(!a.j.u)throw new Db(63);a=a.j.u(a).size;var f=new Uint8Array(a);Eb(e,f,0,a,0);"utf8"===c?d=Fb(f,0):"binary"===c&&(d=f);Gb(e);window.mx_saveFile_call(d)}else console.log("window.mx_saveFile_call undefined")},383470:a=>{window.loadFonts_complete(a)}};function Ib(a){this.name="ExitStatus";this.message="Program terminated with exit("+a+")";this.status=a}function Jb(a){a.terminate();a.onmessage=()=>{}}
  24. function Kb(a){(a=Lb.F[a])||Wa();Lb.qb(a)}function Mb(a){var c=Lb.$a();if(!c)return 6;Lb.I.push(c);Lb.F[a.A]=c;c.A=a.A;var d={cmd:"run",start_routine:a.Eb,arg:a.Ua,pthread_ptr:a.A};Da&&c.ref();c.postMessage(d,a.Kb);return 0}
  25. var Nb=(a,c)=>{for(var d=0,e=a.length-1;0<=e;e--){var f=a[e];"."===f?a.splice(e,1):".."===f?(a.splice(e,1),d++):d&&(a.splice(e,1),d--)}if(c)for(;d;d--)a.unshift("..");return a},Ob=a=>{var c="/"===a.charAt(0),d="/"===a.substr(-1);(a=Nb(a.split("/").filter(e=>!!e),!c).join("/"))||c||(a=".");a&&d&&(a+="/");return(c?"/":"")+a},daa=a=>{var c=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/.exec(a).slice(1);a=c[0];c=c[1];if(!a&&!c)return".";c&&(c=c.substr(0,c.length-1));return a+c},Pb=a=>
  26. {if("/"===a)return"/";a=Ob(a);a=a.replace(/\/$/,"");var c=a.lastIndexOf("/");return-1===c?a:a.substr(c+1)};function eaa(){if("object"==typeof crypto&&"function"==typeof crypto.getRandomValues)return d=>(d.set(crypto.getRandomValues(new Uint8Array(d.byteLength))),d);if(Da)try{var a=require("crypto");if(a.randomFillSync)return d=>a.randomFillSync(d);var c=a.randomBytes;return d=>(d.set(c(d.byteLength)),d)}catch(d){}Wa("initRandomDevice")}function Qb(a){return(Qb=eaa())(a)}
  27. function Rb(){for(var a="",c=!1,d=arguments.length-1;-1<=d&&!c;d--){c=0<=d?arguments[d]:"/";if("string"!=typeof c)throw new TypeError("Arguments to path.resolve must be strings");if(!c)return"";a=c+"/"+a;c="/"===c.charAt(0)}a=Nb(a.split("/").filter(e=>!!e),!c).join("/");return(c?"/":"")+a||"."}function Sb(a){for(var c=0,d=0;d<a.length;++d){var e=a.charCodeAt(d);127>=e?c++:2047>=e?c+=2:55296<=e&&57343>=e?(c+=4,++d):c+=3}return c}
  28. function Tb(a,c,d,e){if(!(0<e))return 0;var f=d;e=d+e-1;for(var l=0;l<a.length;++l){var n=a.charCodeAt(l);if(55296<=n&&57343>=n){var p=a.charCodeAt(++l);n=65536+((n&1023)<<10)|p&1023}if(127>=n){if(d>=e)break;c[d++]=n}else{if(2047>=n){if(d+1>=e)break;c[d++]=192|n>>6}else{if(65535>=n){if(d+2>=e)break;c[d++]=224|n>>12}else{if(d+3>=e)break;c[d++]=240|n>>18;c[d++]=128|n>>12&63}c[d++]=128|n>>6&63}c[d++]=128|n&63}}c[d]=0;return d-f}
  29. function Ub(a,c){var d=Array(Sb(a)+1);a=Tb(a,d,0,d.length);c&&(d.length=a);return d}var Vb=[];function Wb(a,c){Vb[a]={input:[],output:[],O:c};Xb(a,faa)}
  30. var faa={open:function(a){var c=Vb[a.node.rdev];if(!c)throw new Db(43);a.tty=c;a.seekable=!1},close:function(a){a.tty.O.fsync(a.tty)},fsync:function(a){a.tty.O.fsync(a.tty)},read:function(a,c,d,e){if(!a.tty||!a.tty.O.Ea)throw new Db(60);for(var f=0,l=0;l<e;l++){try{var n=a.tty.O.Ea(a.tty)}catch(p){throw new Db(29);}if(void 0===n&&0===f)throw new Db(6);if(null===n||void 0===n)break;f++;c[d+l]=n}f&&(a.node.timestamp=Date.now());return f},write:function(a,c,d,e){if(!a.tty||!a.tty.O.la)throw new Db(60);
  31. try{for(var f=0;f<e;f++)a.tty.O.la(a.tty,c[d+f])}catch(l){throw new Db(29);}e&&(a.node.timestamp=Date.now());return f}},gaa={Ea:function(a){if(!a.input.length){var c=null;if(Da){c=Buffer.alloc(256);var d=0;try{d=fs.readSync(process.stdin.fd,c,0,256,-1)}catch(e){if(e.toString().includes("EOF"))d=0;else throw e;}c=0<d?c.slice(0,d).toString("utf-8"):null}else"undefined"!=typeof window&&"function"==typeof window.prompt?(c=window.prompt("Input: "),null!==c&&(c+="\n")):"function"==typeof readline&&(c=readline(),
  32. null!==c&&(c+="\n"));if(!c)return null;a.input=Ub(c,!0)}return a.input.shift()},la:function(a,c){null===c||10===c?(Ta(Fb(a.output,0)),a.output=[]):0!=c&&a.output.push(c)},fsync:function(a){a.output&&0<a.output.length&&(Ta(Fb(a.output,0)),a.output=[])}},haa={la:function(a,c){null===c||10===c?(Ua(Fb(a.output,0)),a.output=[]):0!=c&&a.output.push(c)},fsync:function(a){a.output&&0<a.output.length&&(Ua(Fb(a.output,0)),a.output=[])}},Yb={v:null,D:function(){return Yb.createNode(null,"/",16895,0)},createNode:function(a,
  33. c,d,e){if(24576===(d&61440)||4096===(d&61440))throw new Db(63);Yb.v||(Yb.v={dir:{node:{u:Yb.j.u,B:Yb.j.B,lookup:Yb.j.lookup,Z:Yb.j.Z,rename:Yb.j.rename,unlink:Yb.j.unlink,rmdir:Yb.j.rmdir,readdir:Yb.j.readdir,symlink:Yb.j.symlink},stream:{H:Yb.m.H}},file:{node:{u:Yb.j.u,B:Yb.j.B},stream:{H:Yb.m.H,read:Yb.m.read,write:Yb.m.write,ua:Yb.m.ua,Ia:Yb.m.Ia,Ka:Yb.m.Ka}},link:{node:{u:Yb.j.u,B:Yb.j.B,readlink:Yb.j.readlink},stream:{}},wa:{node:{u:Yb.j.u,B:Yb.j.B},stream:iaa}});d=Zb(a,c,d,e);16384===(d.mode&
  34. 61440)?(d.j=Yb.v.dir.node,d.m=Yb.v.dir.stream,d.l={}):32768===(d.mode&61440)?(d.j=Yb.v.file.node,d.m=Yb.v.file.stream,d.o=0,d.l=null):40960===(d.mode&61440)?(d.j=Yb.v.link.node,d.m=Yb.v.link.stream):8192===(d.mode&61440)&&(d.j=Yb.v.wa.node,d.m=Yb.v.wa.stream);d.timestamp=Date.now();a&&(a.l[c]=d,a.timestamp=d.timestamp);return d},Tb:function(a){return a.l?a.l.subarray?a.l.subarray(0,a.o):new Uint8Array(a.l):new Uint8Array(0)},Ba:function(a,c){var d=a.l?a.l.length:0;d>=c||(c=Math.max(c,d*(1048576>d?
  35. 2:1.125)>>>0),0!=d&&(c=Math.max(c,256)),d=a.l,a.l=new Uint8Array(c),0<a.o&&a.l.set(d.subarray(0,a.o),0))},pb:function(a,c){if(a.o!=c)if(0==c)a.l=null,a.o=0;else{var d=a.l;a.l=new Uint8Array(c);d&&a.l.set(d.subarray(0,Math.min(c,a.o)));a.o=c}},j:{u:function(a){var c={};c.dev=8192===(a.mode&61440)?a.id:1;c.ino=a.id;c.mode=a.mode;c.nlink=1;c.uid=0;c.gid=0;c.rdev=a.rdev;c.size=16384===(a.mode&61440)?4096:32768===(a.mode&61440)?a.o:40960===(a.mode&61440)?a.link.length:0;c.atime=new Date(a.timestamp);c.mtime=
  36. new Date(a.timestamp);c.ctime=new Date(a.timestamp);c.Va=4096;c.blocks=Math.ceil(c.size/c.Va);return c},B:function(a,c){void 0!==c.mode&&(a.mode=c.mode);void 0!==c.timestamp&&(a.timestamp=c.timestamp);void 0!==c.size&&Yb.pb(a,c.size)},lookup:function(){throw $b[44];},Z:function(a,c,d,e){return Yb.createNode(a,c,d,e)},rename:function(a,c,d){if(16384===(a.mode&61440)){try{var e=ac(c,d)}catch(l){}if(e)for(var f in e.l)throw new Db(55);}delete a.parent.l[a.name];a.parent.timestamp=Date.now();a.name=d;
  37. c.l[d]=a;c.timestamp=a.parent.timestamp;a.parent=c},unlink:function(a,c){delete a.l[c];a.timestamp=Date.now()},rmdir:function(a,c){var d=ac(a,c),e;for(e in d.l)throw new Db(55);delete a.l[c];a.timestamp=Date.now()},readdir:function(a){var c=[".",".."],d;for(d in a.l)a.l.hasOwnProperty(d)&&c.push(d);return c},symlink:function(a,c,d){a=Yb.createNode(a,c,41471,0);a.link=d;return a},readlink:function(a){if(40960!==(a.mode&61440))throw new Db(28);return a.link}},m:{read:function(a,c,d,e,f){var l=a.node.l;
  38. if(f>=a.node.o)return 0;a=Math.min(a.node.o-f,e);if(8<a&&l.subarray)c.set(l.subarray(f,f+a),d);else for(e=0;e<a;e++)c[d+e]=l[f+e];return a},write:function(a,c,d,e,f,l){c.buffer===aa().buffer&&(l=!1);if(!e)return 0;a=a.node;a.timestamp=Date.now();if(c.subarray&&(!a.l||a.l.subarray)){if(l)return a.l=c.subarray(d,d+e),a.o=e;if(0===a.o&&0===f)return a.l=c.slice(d,d+e),a.o=e;if(f+e<=a.o)return a.l.set(c.subarray(d,d+e),f),e}Yb.Ba(a,f+e);if(a.l.subarray&&c.subarray)a.l.set(c.subarray(d,d+e),f);else for(l=
  39. 0;l<e;l++)a.l[f+l]=c[d+l];a.o=Math.max(a.o,f+e);return e},H:function(a,c,d){1===d?c+=a.position:2===d&&32768===(a.node.mode&61440)&&(c+=a.node.o);if(0>c)throw new Db(28);return c},ua:function(a,c,d){Yb.Ba(a.node,c+d);a.node.o=Math.max(a.node.o,c+d)},Ia:function(a,c,d,e,f){if(32768!==(a.node.mode&61440))throw new Db(43);a=a.node.l;if(f&2||a.buffer!==aa().buffer){if(0<d||d+c<a.length)a=a.subarray?a.subarray(d,d+c):Array.prototype.slice.call(a,d,d+c);d=!0;Wa();c=void 0;if(!c)throw new Db(48);aa().set(a,
  40. c)}else d=!1,c=a.byteOffset;return{g:c,Nb:d}},Ka:function(a,c,d,e){Yb.m.write(a,c,0,e,d,!1);return 0}}},bc=null,cc={},dc=[],jaa=1,fc=null,ob=!0,Db=null,$b={},Cb=(a,c={})=>{a=Rb(a);if(!a)return{path:"",node:null};c=Object.assign({Ca:!0,ma:0},c);if(8<c.ma)throw new Db(32);a=a.split("/").filter(n=>!!n);for(var d=bc,e="/",f=0;f<a.length;f++){var l=f===a.length-1;if(l&&c.parent)break;d=ac(d,a[f]);e=Ob(e+"/"+a[f]);d.M&&(!l||l&&c.Ca)&&(d=d.M.root);if(!l||c.fa)for(l=0;40960===(d.mode&61440);)if(d=kaa(e),
  41. e=Rb(daa(e),d),d=Cb(e,{ma:c.ma+1}).node,40<l++)throw new Db(32);}return{path:e,node:d}},gc=a=>{for(var c;;){if(a===a.parent)return a=a.D.Ja,c?"/"!==a[a.length-1]?a+"/"+c:a+c:a;c=c?a.name+"/"+c:a.name;a=a.parent}},hc=(a,c)=>{for(var d=0,e=0;e<c.length;e++)d=(d<<5)-d+c.charCodeAt(e)|0;return(a+d>>>0)%fc.length},ic=a=>{var c=hc(a.parent.id,a.name);if(fc[c]===a)fc[c]=a.N;else for(c=fc[c];c;){if(c.N===a){c.N=a.N;break}c=c.N}},ac=(a,c)=>{var d;if(d=(d=jc(a,"x"))?d:a.j.lookup?0:2)throw new Db(d,a);for(d=
  42. fc[hc(a.id,c)];d;d=d.N){var e=d.name;if(d.parent.id===a.id&&e===c)return d}return a.j.lookup(a,c)},Zb=(a,c,d,e)=>{a=new kc(a,c,d,e);c=hc(a.parent.id,a.name);a.N=fc[c];return fc[c]=a},laa={r:0,"r+":2,w:577,"w+":578,a:1089,"a+":1090},lc=a=>{var c=["r","w","rw"][a&3];a&512&&(c+="w");return c},jc=(a,c)=>{if(ob)return 0;if(!c.includes("r")||a.mode&292){if(c.includes("w")&&!(a.mode&146)||c.includes("x")&&!(a.mode&73))return 2}else return 2;return 0},mc=(a,c)=>{try{return ac(a,c),20}catch(d){}return jc(a,
  43. "wx")},nc=(a,c,d)=>{try{var e=ac(a,c)}catch(f){return f.s}if(a=jc(a,"wx"))return a;if(d){if(16384!==(e.mode&61440))return 54;if(e===e.parent||"/"===gc(e))return 10}else if(16384===(e.mode&61440))return 31;return 0},maa=(a=0)=>{for(;4096>=a;a++)if(!dc[a])return a;throw new Db(33);},pc=(a,c)=>{oc||(oc=function(){this.$={}},oc.prototype={},Object.defineProperties(oc.prototype,{object:{get:function(){return this.node},set:function(d){this.node=d}},flags:{get:function(){return this.$.flags},set:function(d){this.$.flags=
  44. d}},position:{get:function(){return this.$.position},set:function(d){this.$.position=d}}}));a=Object.assign(new oc,a);c=maa(c);a.fd=c;return dc[c]=a},iaa={open:a=>{a.m=cc[a.node.rdev].m;a.m.open&&a.m.open(a)},H:()=>{throw new Db(70);}},Xb=(a,c)=>{cc[a]={m:c}},qc=(a,c)=>{var d="/"===c,e=!c;if(d&&bc)throw new Db(10);if(!d&&!e){var f=Cb(c,{Ca:!1});c=f.path;f=f.node;if(f.M)throw new Db(10);if(16384!==(f.mode&61440))throw new Db(54);}c={type:a,Xb:{},Ja:c,nb:[]};a=a.D(c);a.D=c;c.root=a;d?bc=a:f&&(f.M=c,
  45. f.D&&f.D.nb.push(c))},rc=(a,c,d)=>{var e=Cb(a,{parent:!0}).node;a=Pb(a);if(!a||"."===a||".."===a)throw new Db(28);var f=mc(e,a);if(f)throw new Db(f);if(!e.j.Z)throw new Db(63);return e.j.Z(e,a,c,d)},sc=(a,c,d)=>{"undefined"==typeof d&&(d=c,c=438);rc(a,c|8192,d)},lb=(a,c)=>{if(!Rb(a))throw new Db(44);var d=Cb(c,{parent:!0}).node;if(!d)throw new Db(44);c=Pb(c);var e=mc(d,c);if(e)throw new Db(e);if(!d.j.symlink)throw new Db(63);d.j.symlink(d,c,a)},tc=a=>{var c=Cb(a,{parent:!0}).node;a=Pb(a);var d=ac(c,
  46. a),e=nc(c,a,!0);if(e)throw new Db(e);if(!c.j.rmdir)throw new Db(63);if(d.M)throw new Db(10);c.j.rmdir(c,a);ic(d)},kaa=a=>{a=Cb(a).node;if(!a)throw new Db(44);if(!a.j.readlink)throw new Db(28);return Rb(gc(a.parent),a.j.readlink(a))},nb=(a,c,d)=>{if(""===a)throw new Db(44);if("string"==typeof c){var e=laa[c];if("undefined"==typeof e)throw Error("Unknown file open mode: "+c);c=e}d=c&64?("undefined"==typeof d?438:d)&4095|32768:0;if("object"==typeof a)var f=a;else{a=Ob(a);try{f=Cb(a,{fa:!(c&131072)}).node}catch(l){}}e=
  47. !1;if(c&64)if(f){if(c&128)throw new Db(20);}else f=rc(a,d,0),e=!0;if(!f)throw new Db(44);8192===(f.mode&61440)&&(c&=-513);if(c&65536&&16384!==(f.mode&61440))throw new Db(54);if(!e&&(d=f?40960===(f.mode&61440)?32:16384===(f.mode&61440)&&("r"!==lc(c)||c&512)?31:jc(f,lc(c)):44))throw new Db(d);if(c&512&&!e){d=f;d="string"==typeof d?Cb(d,{fa:!0}).node:d;if(!d.j.B)throw new Db(63);if(16384===(d.mode&61440))throw new Db(31);if(32768!==(d.mode&61440))throw new Db(28);if(e=jc(d,"w"))throw new Db(e);d.j.B(d,
  48. {size:0,timestamp:Date.now()})}c&=-131713;f=pc({node:f,path:gc(f),flags:c,seekable:!0,position:0,m:f.m,Lb:[],error:!1});f.m.open&&f.m.open(f);!b.logReadFiles||c&1||(uc||(uc={}),a in uc||(uc[a]=1));return f},Gb=a=>{if(null===a.fd)throw new Db(8);a.ja&&(a.ja=null);try{a.m.close&&a.m.close(a)}catch(c){throw c;}finally{dc[a.fd]=null}a.fd=null},vc=(a,c,d)=>{if(null===a.fd)throw new Db(8);if(!a.seekable||!a.m.H)throw new Db(70);if(0!=d&&1!=d&&2!=d)throw new Db(28);a.position=a.m.H(a,c,d);a.Lb=[]},Eb=(a,
  49. c,d,e,f)=>{if(0>e||0>f)throw new Db(28);if(null===a.fd)throw new Db(8);if(1===(a.flags&2097155))throw new Db(8);if(16384===(a.node.mode&61440))throw new Db(31);if(!a.m.read)throw new Db(28);var l="undefined"!=typeof f;if(!l)f=a.position;else if(!a.seekable)throw new Db(70);c=a.m.read(a,c,d,e,f);l||(a.position+=c);return c},jb=()=>{Db||(Db=function(a,c){this.name="ErrnoError";this.node=c;this.rb=function(d){this.s=d};this.rb(a);this.message="FS error"},Db.prototype=Error(),Db.prototype.constructor=
  50. Db,[44].forEach(a=>{$b[a]=new Db(a);$b[a].stack="<generic error, no stack>"}))},ib,naa=(a,c)=>{var d=0;a&&(d|=365);c&&(d|=146);return d},kb=(a,c,d)=>{a=Ob("/dev/"+a);var e=naa(!!c,!!d);wc||(wc=64);var f=wc++<<8|0;Xb(f,{open:l=>{l.seekable=!1},close:()=>{d&&d.buffer&&d.buffer.length&&d(10)},read:(l,n,p,R)=>{for(var O=0,ma=0;ma<R;ma++){try{var Ja=c()}catch(Ia){throw new Db(29);}if(void 0===Ja&&0===O)throw new Db(6);if(null===Ja||void 0===Ja)break;O++;n[p+ma]=Ja}O&&(l.node.timestamp=Date.now());return O},
  51. write:(l,n,p,R)=>{for(var O=0;O<R;O++)try{d(n[p+O])}catch(ma){throw new Db(29);}R&&(l.node.timestamp=Date.now());return O}});sc(a,e,f)},wc,xc={},oc,uc,yc="undefined"!=typeof TextDecoder?new TextDecoder("utf8"):void 0;
  52. function Fb(a,c,d){var e=c+d;for(d=c;a[d]&&!(d>=e);)++d;if(16<d-c&&a.buffer&&yc)return yc.decode(a.buffer instanceof SharedArrayBuffer?a.slice(c,d):a.subarray(c,d));for(e="";c<d;){var f=a[c++];if(f&128){var l=a[c++]&63;if(192==(f&224))e+=String.fromCharCode((f&31)<<6|l);else{var n=a[c++]&63;f=224==(f&240)?(f&15)<<12|l<<6|n:(f&7)<<18|l<<12|n<<6|a[c++]&63;65536>f?e+=String.fromCharCode(f):(f-=65536,e+=String.fromCharCode(55296|f>>10,56320|f&1023))}}else e+=String.fromCharCode(f)}return e}
  53. function g(a,c){return a?Fb(ha(),a,c):""}function zc(a,c){if("/"===c.charAt(0))return c;a=-100===a?"/":Ac(a).path;if(0==c.length)throw new Db(44);return Ob(a+"/"+c)}var Bc=void 0;function Cc(){Bc+=4;return oa()[Bc-4>>2]}function Ac(a){a=dc[a];if(!a)throw new Db(8);return a}function Dc(a){if(Ea)return Ec(1,1,a);Za=a;if(!gb()){Lb.Fb();if(b.onExit)b.onExit(a);Ya=!0}Aa(a,new Ib(a))}function Fc(a){Za=a;if(Ea)throw Gc(a),"unwind";Dc(a)}function Hc(a){a instanceof Ib||"unwind"==a||Aa(1,a)}
  54. var Lb={G:[],I:[],Pa:[],F:{},ka:function(){Ea?Lb.kb():Lb.jb()},jb:function(){for(var a=1;a--;)Lb.va()},kb:function(){Lb.receiveObjectTransfer=Lb.ob;Lb.threadInitTLS=Lb.Oa;Lb.setExitStatus=Lb.Ma;noExitRuntime=!1},Ma:function(a){Za=a},bc:["$terminateWorker"],Fb:function(){for(var a of Lb.I)Jb(a);for(a of Lb.G)Jb(a);Lb.G=[];Lb.I=[];Lb.F=[]},qb:function(a){var c=a.A;delete Lb.F[c];Lb.G.push(a);Lb.I.splice(Lb.I.indexOf(a),1);a.A=0;Da&&a.unref();Ic(c)},ob:function(){},Oa:function(){Lb.Pa.forEach(a=>a())},
  55. Fa:a=>new Promise(c=>{a.onmessage=l=>{l=l.data;var n=l.cmd;a.A&&(Lb.Ya=a.A);if(l.targetThread&&l.targetThread!=Jc()){var p=Lb.F[l.ac];p?p.postMessage(l,l.transferList):Ua('Internal error! Worker sent a message "'+n+'" to target pthread '+l.targetThread+", but that thread no longer exists!")}else if("checkMailbox"===n)Kc();else if("spawnThread"===n)Mb(l);else if("cleanupThread"===n)Kb(l.thread);else if("killThread"===n)l=l.thread,n=Lb.F[l],delete Lb.F[l],Jb(n),Ic(l),Lb.I.splice(Lb.I.indexOf(n),1),
  56. n.A=0;else if("cancelThread"===n)Lb.F[l.thread].postMessage({cmd:"cancel"});else if("loaded"===n)a.loaded=!0,Da&&!a.A&&a.unref(),c(a);else if("print"===n)Ta("Thread "+l.threadId+": "+l.text);else if("printErr"===n)Ua("Thread "+l.threadId+": "+l.text);else if("alert"===n)alert("Thread "+l.threadId+": "+l.text);else if("setimmediate"===l.target)a.postMessage(l);else if("callHandler"===n)b[l.handler](...l.args);else n&&Ua("worker sent an unknown command "+n);Lb.Ya=void 0};a.onerror=l=>{Ua("worker sent an error! "+
  57. l.filename+":"+l.lineno+": "+l.message);throw l;};Da&&(a.on("message",function(l){a.onmessage({data:l})}),a.on("error",function(l){a.onerror(l)}),a.on("detachedExit",function(){}));var d=[],e=["onExit","onAbort","print","printErr"],f;for(f of e)b.hasOwnProperty(f)&&d.push(f);a.postMessage({cmd:"load",handlers:d,urlOrBlob:b.mainScriptUrlOrBlob||_scriptDir,wasmMemory:ba,wasmModule:Xa})}),mb:function(a){if(Ea)return a();Promise.all(Lb.G.map(Lb.Fa)).then(a)},va:function(){var a=Ga("mxdrawassembly_min.worker.js");
  58. a=new Worker(a);Lb.G.push(a)},$a:function(){0==Lb.G.length&&(Lb.va(),Lb.Fa(Lb.G[0]));return Lb.G.pop()}};b.PThread=Lb;function pb(a){for(;0<a.length;)a.shift()(b)}b.establishStackSpace=function(){var a=Jc(),c=oa()[a+52>>2];a=oa()[a+56>>2];Lc(c,c-a);Mc(c)};function Gc(a){if(Ea)return Ec(2,0,a);Fc(a)}var Nc=[];function Oc(a){var c=Nc[a];c||(a>=Nc.length&&(Nc.length=a+1),Nc[a]=c=bb.get(a));return c}b.invokeEntryPoint=function(a,c){a=Oc(a)(c);gb()?Lb.Ma(a):Pc(a)};
  59. function oaa(a){this.g=a-24;this.Db=function(c){qa()[this.g+4>>2]=c};this.wb=function(c){qa()[this.g+8>>2]=c};this.Bb=function(){oa()[this.g>>2]=0};this.ub=function(){var c=0;aa()[this.g+12>>0]=c};this.Cb=function(){var c=0;aa()[this.g+13>>0]=c};this.ka=function(c,d){this.sb();this.Db(c);this.wb(d);this.Bb();this.ub();this.Cb()};this.sb=function(){qa()[this.g+16>>2]=0}}var Qc=0,paa=0;function Rc(a,c,d,e){return Ea?Ec(3,1,a,c,d,e):Sc(a,c,d,e)}
  60. function Sc(a,c,d,e){if("undefined"==typeof SharedArrayBuffer)return Ua("Current environment does not support SharedArrayBuffer, pthreads are not available!"),6;var f=[];if(Ea&&0===f.length)return Rc(a,c,d,e);a={Eb:d,A:a,Ua:e,Kb:f};return Ea?(a.Ob="spawnThread",postMessage(a,f),0):Mb(a)}
  61. function Tc(a,c,d){if(Ea)return Ec(4,1,a,c,d);Bc=d;try{var e=Ac(a);switch(c){case 0:var f=Cc();return 0>f?-28:pc(e,f).fd;case 1:case 2:return 0;case 3:return e.flags;case 4:return f=Cc(),e.flags|=f,0;case 5:return f=Cc(),ba.buffer!=da.buffer&&ea(),$a[f+0>>1]=2,0;case 6:case 7:return 0;case 16:case 8:return-28;case 9:return oa()[Uc()>>2]=28,-1;default:return-28}}catch(l){if("undefined"==typeof xc||"ErrnoError"!==l.name)throw l;return-l.s}}
  62. function Vc(a,c,d){if(Ea)return Ec(5,1,a,c,d);Bc=d;try{var e=Ac(a);switch(c){case 21509:case 21505:return e.tty?0:-59;case 21510:case 21511:case 21512:case 21506:case 21507:case 21508:return e.tty?0:-59;case 21519:if(!e.tty)return-59;var f=Cc();return oa()[f>>2]=0;case 21520:return e.tty?-28:-59;case 21531:a=f=Cc();if(!e.m.lb)throw new Db(59);return e.m.lb(e,c,a);case 21523:return e.tty?0:-59;case 21524:return e.tty?0:-59;default:return-28}}catch(l){if("undefined"==typeof xc||"ErrnoError"!==l.name)throw l;
  63. return-l.s}}function Wc(a,c,d,e){if(Ea)return Ec(6,1,a,c,d,e);Bc=e;try{c=g(c);c=zc(a,c);var f=e?Cc():0;return nb(c,d,f).fd}catch(l){if("undefined"==typeof xc||"ErrnoError"!==l.name)throw l;return-l.s}}function Xc(a){if(Ea)return Ec(7,1,a);try{return a=g(a),tc(a),0}catch(c){if("undefined"==typeof xc||"ErrnoError"!==c.name)throw c;return-c.s}}
  64. function Yc(a,c,d){if(Ea)return Ec(8,1,a,c,d);try{c=g(c);c=zc(a,c);if(0===d){a=c;var e=Cb(a,{parent:!0}).node;if(!e)throw new Db(44);var f=Pb(a),l=ac(e,f),n=nc(e,f,!1);if(n)throw new Db(n);if(!e.j.unlink)throw new Db(63);if(l.M)throw new Db(10);e.j.unlink(e,f);ic(l)}else 512===d?tc(c):Wa("Invalid flags passed to unlinkat");return 0}catch(p){if("undefined"==typeof xc||"ErrnoError"!==p.name)throw p;return-p.s}}
  65. function Zc(a){if(!Ya)try{if(a(),!gb())try{Ea?Pc(Za):Fc(Za)}catch(c){Hc(c)}}catch(c){Hc(c)}}function $c(a){"function"===typeof Atomics.Mb&&(Atomics.Mb(oa(),a>>2,a).value.then(Kc),a+=128,Atomics.store(oa(),a>>2,1))}b.__emscripten_thread_mailbox_await=$c;function Kc(){var a=Jc();a&&($c(a),Zc(()=>ad()))}b.checkMailbox=Kc;var bd=[];function cd(a){dd||(dd={});dd[a]||(dd[a]=1,Da&&(a="warning: "+a),Ua(a))}var dd,ed;ed=Da?()=>{var a=process.hrtime();return 1E3*a[0]+a[1]/1E6}:()=>performance.timeOrigin+performance.now();
  66. function fd(a,c){if(0>=a)return a;var d=32>=c?Math.abs(1<<c-1):Math.pow(2,c-1);a>=d&&(32>=c||a>d)&&(a=-2*d+a);return a}function gd(a,c){return 0<=a?a:32>=c?2*Math.abs(1<<c-1)+a:Math.pow(2,c)+a}function qaa(a){for(var c=a;ha()[c];)++c;return c-a}
  67. function raa(a,c){function d(Qa){var ja=e;("double"===Qa||"i64"===Qa)&&ja&7&&(ja+=4);e=ja;"double"===Qa?(Qa=ua()[e>>3],e+=8):"i64"==Qa?(Qa=[oa()[e>>2],oa()[e+4>>2]],e+=8):(Qa=oa()[e>>2],e+=4);return Qa}for(var e=c,f=[],l,n;;){var p=a;l=aa()[a>>0];if(0===l)break;n=aa()[a+1>>0];if(37==l){var R=!1,O=c=!1,ma=!1,Ja=!1;a:for(;;){switch(n){case 43:R=!0;break;case 45:c=!0;break;case 35:O=!0;break;case 48:if(ma)break a;else{ma=!0;break}case 32:Ja=!0;break;default:break a}a++;n=aa()[a+1>>0]}var Ia=0;if(42==
  68. n)Ia=d("i32"),a++,n=aa()[a+1>>0];else for(;48<=n&&57>=n;)Ia=10*Ia+(n-48),a++,n=aa()[a+1>>0];var q=!1,ia=-1;if(46==n){ia=0;q=!0;a++;n=aa()[a+1>>0];if(42==n)ia=d("i32"),a++;else for(;;){n=aa()[a+1>>0];if(48>n||57<n)break;ia=10*ia+(n-48);a++}n=aa()[a+1>>0]}0>ia&&(ia=6,q=!1);switch(String.fromCharCode(n)){case "h":n=aa()[a+2>>0];if(104==n){a++;var fa=1}else fa=2;break;case "l":n=aa()[a+2>>0];108==n?(a++,fa=8):fa=4;break;case "L":case "q":case "j":fa=8;break;case "z":case "t":case "I":fa=4;break;default:fa=
  69. null}fa&&a++;n=aa()[a+1>>0];switch(String.fromCharCode(n)){case "d":case "i":case "u":case "o":case "x":case "X":case "p":p=100==n||105==n;fa=fa||4;l=d("i"+8*fa);8==fa&&(l=117==n?(l[0]>>>0)+4294967296*(l[1]>>>0):(l[0]>>>0)+4294967296*l[1]);4>=fa&&(l=(p?fd:gd)(l&Math.pow(256,fa)-1,8*fa));var Ma=Math.abs(l);p="";if(100==n||105==n)var ca=fd(l,8*fa).toString(10);else if(117==n)ca=gd(l,8*fa).toString(10),l=Math.abs(l);else if(111==n)ca=(O?"0":"")+Ma.toString(8);else if(120==n||88==n){p=O&&0!=l?"0x":"";
  70. if(0>l){l=-l;ca=(Ma-1).toString(16);Ma=[];for(O=0;O<ca.length;O++)Ma.push((15-parseInt(ca[O],16)).toString(16));for(ca=Ma.join("");ca.length<2*fa;)ca="f"+ca}else ca=Ma.toString(16);88==n&&(p=p.toUpperCase(),ca=ca.toUpperCase())}else 112==n&&(0===Ma?ca="(nil)":(p="0x",ca=Ma.toString(16)));if(q)for(;ca.length<ia;)ca="0"+ca;0<=l&&(R?p="+"+p:Ja&&(p=" "+p));"-"==ca.charAt(0)&&(p="-"+p,ca=ca.substr(1));for(;p.length+ca.length<Ia;)c?ca+=" ":ma?ca="0"+ca:p=" "+p;ca=p+ca;ca.split("").forEach(function(Qa){f.push(Qa.charCodeAt(0))});
  71. break;case "f":case "F":case "e":case "E":case "g":case "G":l=d("double");if(isNaN(l))ca="nan",ma=!1;else if(isFinite(l)){q=!1;fa=Math.min(ia,20);if(103==n||71==n)q=!0,ia=ia||1,fa=parseInt(l.toExponential(fa).split("e")[1],10),ia>fa&&-4<=fa?(n=(103==n?"f":"F").charCodeAt(0),ia-=fa+1):(n=(103==n?"e":"E").charCodeAt(0),ia--),fa=Math.min(ia,20);if(101==n||69==n)ca=l.toExponential(fa),/[eE][-+]\d$/.test(ca)&&(ca=ca.slice(0,-1)+"0"+ca.slice(-1));else if(102==n||70==n)ca=l.toFixed(fa),0===l&&(0>l||0===
  72. l&&-Infinity===1/l)&&(ca="-"+ca);p=ca.split("e");if(q&&!O)for(;1<p[0].length&&p[0].includes(".")&&("0"==p[0].slice(-1)||"."==p[0].slice(-1));)p[0]=p[0].slice(0,-1);else for(O&&-1==ca.indexOf(".")&&(p[0]+=".");ia>fa++;)p[0]+="0";ca=p[0]+(1<p.length?"e"+p[1]:"");69==n&&(ca=ca.toUpperCase());0<=l&&(R?ca="+"+ca:Ja&&(ca=" "+ca))}else ca=(0>l?"-":"")+"inf",ma=!1;for(;ca.length<Ia;)ca=c?ca+" ":!ma||"-"!=ca[0]&&"+"!=ca[0]?(ma?"0":" ")+ca:ca[0]+"0"+ca.slice(1);97>n&&(ca=ca.toUpperCase());ca.split("").forEach(function(Qa){f.push(Qa.charCodeAt(0))});
  73. break;case "s":ma=(R=d("i8*"))?qaa(R):6;q&&(ma=Math.min(ma,ia));if(!c)for(;ma<Ia--;)f.push(32);if(R)for(O=0;O<ma;O++)f.push(ha()[R++>>0]);else f=f.concat(Ub("(null)".substr(0,ma),!0));if(c)for(;ma<Ia--;)f.push(32);break;case "c":for(c&&f.push(d("i8"));0<--Ia;)f.push(32);c||f.push(d("i8"));break;case "n":c=d("i32*");oa()[c>>2]=f.length;break;case "%":f.push(l);break;default:for(O=p;O<a+2;O++)f.push(aa()[O>>0])}a+=2}else f.push(l),a+=1}return f}
  74. function hd(a){if(!a||!a.callee||!a.callee.name)return[null,"",""];var c=a.callee.name,d="(",e=!0,f;for(f in a){var l=a[f];e||(d+=", ");e=!1;d="number"==typeof l||"string"==typeof l?d+l:d+("("+typeof l+")")}d+=")";a=(a=a.callee.caller)?a.arguments:[];e&&(d="");return[a,c,d]}
  75. function saa(a){a:{var c=Error();if(!c.stack){try{throw Error();}catch(ia){c=ia}if(!c.stack){c="(no stack trace available)";break a}}c=c.stack.toString()}c=c.slice(c.indexOf("\n",Math.max(c.lastIndexOf("_emscripten_log"),c.lastIndexOf("_emscripten_get_callstack")))+1);a&32&&cd("EM_LOG_DEMANGLE is deprecated; ignoring");a&8&&"undefined"==typeof emscripten_source_map&&(cd('Source map information is not available, emscripten_log with EM_LOG_C_STACK will be ignored. Build with "--pre-js $EMSCRIPTEN/src/emscripten-source-map.min.js" linker flag to add source map loading to code.'),
  76. a=a^8|16);var d=null;if(a&128)for(d=hd(arguments);d[1].includes("_emscripten_");)d=hd(d[0]);var e=c.split("\n");c="";var f=RegExp("\\s*(.*?)@(.*?):([0-9]+):([0-9]+)"),l=RegExp("\\s*(.*?)@(.*):(.*)(:(.*))?"),n=RegExp("\\s*at (.*?) \\((.*):(.*):(.*)\\)"),p;for(p in e){var R=e[p],O;if((O=n.exec(R))&&5==O.length){R=O[1];var ma=O[2];var Ja=O[3];O=O[4]}else if((O=f.exec(R))||(O=l.exec(R)),O&&4<=O.length)R=O[1],ma=O[2],Ja=O[3],O=O[4]|0;else{c+=R+"\n";continue}var Ia=!1;if(a&8){var q=emscripten_source_map.Yb({line:Ja,
  77. Wa:O});if(Ia=q&&q.source)a&64&&(q.source=q.source.substring(q.source.replace(/\\/g,"/").lastIndexOf("/")+1)),c+=" at "+R+" ("+q.source+":"+q.line+":"+q.Wa+")\n"}if(a&16||!Ia)a&64&&(ma=ma.substring(ma.replace(/\\/g,"/").lastIndexOf("/")+1)),c+=(Ia?" = "+R:" at "+R)+" ("+ma+":"+Ja+":"+O+")\n";a&128&&d[0]&&(d[1]==R&&0<d[2].length&&(c=c.replace(/\s+$/,""),c+=" with values: "+d[1]+d[2]+"\n"),d=hd(d[0]))}return c=c.replace(/\s+$/,"")}function taa(a){var c=jd();a=a();Mc(c);return a}
  78. function Ec(a,c){var d=arguments.length-2,e=arguments;return taa(()=>{for(var f=kd(8*d),l=f>>3,n=0;n<d;n++){var p=e[2+n];ua()[l+n]=p}return ld(a,d,f,c)})}var md=[];function nd(a,c,d){Tb(a,ha(),c,d)}function od(a){a=eval(g(a));if(null==a)return 0;a+="";var c=Sb(a);if(!od.bufferSize||od.bufferSize<c+1)od.bufferSize&&pd(od.buffer),od.bufferSize=c+1,od.buffer=qd(od.bufferSize);nd(a,od.buffer,od.bufferSize);return od.buffer}var rd={};
  79. function uaa(a,c){try{var d=indexedDB.open("emscripten_filesystem",1)}catch(e){c(e);return}d.onupgradeneeded=e=>{e=e.target.result;e.objectStoreNames.contains("FILES")&&e.deleteObjectStore("FILES");e.createObjectStore("FILES")};d.onsuccess=e=>a(e.target.result);d.onerror=e=>c(e)}var sd;
  80. function td(a,c,d,e,f){function l(){var Pa=0,mb=0;ja.response&&ca&&0===qa()[a+12>>2]&&(mb=ja.response.byteLength);0<mb&&(Pa=qd(mb),ha().set(new Uint8Array(ja.response),Pa));qa()[a+12>>2]=Pa;ud(a+16,mb);ud(a+24,0);(Pa=ja.response?ja.response.byteLength:0)&&ud(a+32,Pa);la()[a+40>>1]=ja.readyState;la()[a+42>>1]=ja.status;ja.statusText&&nd(ja.statusText,a+44,64)}var n=qa()[a+8>>2];if(n){var p=g(n),R=a+112,O=g(R);O||(O="GET");qa();var ma=qa()[R+52>>2],Ja=qa()[R+56>>2],Ia=!!qa()[R+60>>2];qa();var q=qa()[R+
  81. 68>>2],ia=qa()[R+72>>2];n=qa()[R+76>>2];var fa=qa()[R+80>>2],Ma=qa()[R+84>>2];R=qa()[R+88>>2];var ca=!!(ma&1),Qa=!!(ma&2);ma=!!(ma&64);q=q?g(q):void 0;ia=ia?g(ia):void 0;var ja=new XMLHttpRequest;ja.withCredentials=Ia;ja.open(O,p,!ma,q,ia);ma||(ja.timeout=Ja);ja.dc=p;ja.responseType="arraybuffer";fa&&(p=g(fa),ja.overrideMimeType(p));if(n)for(;;){O=qa()[n>>2];if(!O)break;p=qa()[n+4>>2];if(!p)break;n+=8;O=g(O);p=g(p);ja.setRequestHeader(O,p)}var xb=qa()[a+0>>2];rd[xb]=ja;n=Ma&&R?ha().slice(Ma,Ma+R):
  82. null;ja.onload=Pa=>{xb in rd&&(l(),200<=ja.status&&300>ja.status?c&&c(a,ja,Pa):d&&d(a,ja,Pa))};ja.onerror=Pa=>{xb in rd&&(l(),d&&d(a,ja,Pa))};ja.ontimeout=Pa=>{xb in rd&&d&&d(a,ja,Pa)};ja.onprogress=Pa=>{if(xb in rd){var mb=ca&&Qa&&ja.response?ja.response.byteLength:0,Na=0;0<mb&&ca&&Qa&&(Na=qd(mb),ha().set(new Uint8Array(ja.response),Na));qa()[a+12>>2]=Na;ud(a+16,mb);ud(a+24,Pa.loaded-mb);ud(a+32,Pa.total);la()[a+40>>1]=ja.readyState;3<=ja.readyState&&0===ja.status&&0<Pa.loaded&&(ja.status=200);la()[a+
  83. 42>>1]=ja.status;ja.statusText&&nd(ja.statusText,a+44,64);e&&e(a,ja,Pa);Na&&pd(Na)}};ja.onreadystatechange=Pa=>{xb in rd?(la()[a+40>>1]=ja.readyState,2<=ja.readyState&&(la()[a+42>>1]=ja.status),f&&f(a,ja,Pa)):--fb};try{ja.send(n)}catch(Pa){d&&d(a,ja,Pa)}}else d(a,0,"no url specified!")}function ud(a,c){qa()[a>>2]=c;qa()[a+4>>2]=(c-qa()[a>>2])/4294967296}
  84. function vd(a,c,d,e){var f=sd;if(f){var l=a+112;(l=qa()[l+64>>2])||(l=qa()[a+8>>2]);var n=g(l);try{var p=f.transaction(["FILES"],"readwrite").objectStore("FILES").put(c,n);p.onsuccess=()=>{la()[a+40>>1]=4;la()[a+42>>1]=200;nd("OK",a+44,64);d(a,0,n)};p.onerror=R=>{la()[a+40>>1]=4;la()[a+42>>1]=413;nd("Payload Too Large",a+44,64);e(a,0,R)}}catch(R){e(a,0,R)}}else e(a,0,"IndexedDB not available!")}
  85. function vaa(a,c,d){var e=sd;if(e){var f=a+112;(f=qa()[f+64>>2])||(f=qa()[a+8>>2]);f=g(f);try{var l=e.transaction(["FILES"],"readonly").objectStore("FILES").get(f);l.onsuccess=n=>{if(n.target.result){n=n.target.result;var p=n.byteLength||n.length,R=qd(p);ha().set(new Uint8Array(n),R);qa()[a+12>>2]=R;ud(a+16,p);ud(a+24,0);ud(a+32,p);la()[a+40>>1]=4;la()[a+42>>1]=200;nd("OK",a+44,64);c(a,0,n)}else la()[a+40>>1]=4,la()[a+42>>1]=404,nd("Not Found",a+44,64),d(a,0,"no data")};l.onerror=n=>{la()[a+40>>1]=
  86. 4;la()[a+42>>1]=404;nd("Not Found",a+44,64);d(a,0,n)}}catch(n){d(a,0,n)}}else d(a,0,"IndexedDB not available!")}
  87. function waa(a,c,d){var e=sd;if(e){var f=a+112;(f=qa()[f+64>>2])||(f=qa()[a+8>>2]);f=g(f);try{var l=e.transaction(["FILES"],"readwrite").objectStore("FILES").delete(f);l.onsuccess=n=>{n=n.target.result;qa()[a+12>>2]=0;ud(a+16,0);ud(a+24,0);ud(a+32,0);la()[a+40>>1]=4;la()[a+42>>1]=200;nd("OK",a+44,64);c(a,0,n)};l.onerror=n=>{la()[a+40>>1]=4;la()[a+42>>1]=404;nd("Not Found",a+44,64);d(a,0,n)}}catch(n){d(a,0,n)}}else d(a,0,"IndexedDB not available!")}
  88. function xaa(a){var c=a.getExtension("ANGLE_instanced_arrays");c&&(a.vertexAttribDivisor=function(d,e){c.vertexAttribDivisorANGLE(d,e)},a.drawArraysInstanced=function(d,e,f,l){c.drawArraysInstancedANGLE(d,e,f,l)},a.drawElementsInstanced=function(d,e,f,l,n){c.drawElementsInstancedANGLE(d,e,f,l,n)})}
  89. function yaa(a){var c=a.getExtension("OES_vertex_array_object");c&&(a.createVertexArray=function(){return c.createVertexArrayOES()},a.deleteVertexArray=function(d){c.deleteVertexArrayOES(d)},a.bindVertexArray=function(d){c.bindVertexArrayOES(d)},a.isVertexArray=function(d){return c.isVertexArrayOES(d)})}function zaa(a){var c=a.getExtension("WEBGL_draw_buffers");c&&(a.drawBuffers=function(d,e){c.drawBuffersWEBGL(d,e)})}var wd=1,xd=[],yd=[],zd=[],Ad=[],Bd=[],Cd={},Dd=[1,1,2,2,4,4,4,2,3,4,8];
  90. function Ed(a){Fd||(Fd=a)}function Gd(a){for(var c=wd++,d=a.length;d<c;d++)a[d]=null;return c}function Hd(a){return 32-Math.clz32(0===a?0:a-1)}
  91. function Id(a){Jd=!1;for(var c=0;c<Kd.Ha;++c){var d=Kd.V[c];if(d.ea&&d.enabled){Jd=!0;var e=d.qa;e=0<e?a*e:d.size*Dd[d.type-5120]*a;var f=Hd(e);var l=Kd.aa[f],n=Kd.T[f];Kd.T[f]=Kd.T[f]+1&63;var p=l[n];p?f=p:(p=h.getParameter(34964),l[n]=h.createBuffer(),h.bindBuffer(34962,l[n]),h.bufferData(34962,1<<f,35048),h.bindBuffer(34962,p),f=l[n]);h.bindBuffer(34962,f);h.bufferSubData(34962,0,ha().subarray(d.g,d.g+e));d.Sa.call(h,c,d.size,d.type,d.La,d.qa,0)}}}
  92. function Aaa(a,c){a.Da||(a.Da=a.getContext,a.getContext=function(e,f){f=a.Da(e,f);return"webgl"==e==f instanceof WebGLRenderingContext?f:null});var d=1<c.Ga?a.getContext("webgl2",c):a.getContext("webgl",c);return d?Baa(d,c):0}
  93. function Baa(a,c){var d=qd(8);oa()[d+4>>2]=Jc();var e={hb:d,attributes:c,version:c.Ga,L:a};a.canvas&&(a.canvas.Ta=e);Cd[d]=e;("undefined"==typeof c.Aa||c.Aa)&&Caa(e);e.Ha=e.L.getParameter(34921);e.V=[];for(a=0;a<e.Ha;a++)e.V[a]={enabled:!1,ea:!1,size:0,type:0,La:0,qa:0,g:0,Sa:null};a=Hd(2097152);e.T=[];e.Na=[];e.T.length=e.Na.length=a+1;e.aa=[];e.ra=[];e.aa.length=e.ra.length=a+1;e.P=[];e.P.length=a+1;for(c=0;c<=a;++c){e.P[c]=null;e.T[c]=e.Na[c]=0;e.aa[c]=[];e.ra[c]=[];var f=e.aa[c],l=e.ra[c];f.length=
  94. l.length=64;for(var n=0;64>n;++n)f[n]=l[n]=null}return d}
  95. function Caa(a){a||(a=Kd);if(!a.ib){a.ib=!0;var c=a.L;xaa(c);yaa(c);zaa(c);c.Qb=c.getExtension("WEBGL_draw_instanced_base_vertex_base_instance");c.Ub=c.getExtension("WEBGL_multi_draw_instanced_base_vertex_base_instance");2<=a.version&&(c.za=c.getExtension("EXT_disjoint_timer_query_webgl2"));if(2>a.version||!c.za)c.za=c.getExtension("EXT_disjoint_timer_query");c.Wb=c.getExtension("WEBGL_multi_draw");(c.getSupportedExtensions()||[]).forEach(function(d){d.includes("lose_context")||d.includes("debug")||
  96. c.getExtension(d)})}}var Fd,Kd,Jd,Ld=[],Daa={},Eaa=["default","low-power","high-performance"],Faa=[0,"undefined"!=typeof document?document:0,"undefined"!=typeof window?window:0],Md={};
  97. function Nd(){if(!Od){var a={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:("object"==typeof navigator&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",_:za||"./this.program"},c;for(c in Md)void 0===Md[c]?delete a[c]:a[c]=Md[c];var d=[];for(c in a)d.push(c+"="+a[c]);Od=d}return Od}var Od;
  98. function Pd(a,c){if(Ea)return Ec(9,1,a,c);var d=0;Nd().forEach(function(e,f){var l=c+d;f=qa()[a+4*f>>2]=l;for(l=0;l<e.length;++l)aa()[f++>>0]=e.charCodeAt(l);aa()[f>>0]=0;d+=e.length+1});return 0}function Qd(a,c){if(Ea)return Ec(10,1,a,c);var d=Nd();qa()[a>>2]=d.length;var e=0;d.forEach(function(f){e+=f.length+1});qa()[c>>2]=e;return 0}function Rd(a){if(Ea)return Ec(11,1,a);try{var c=Ac(a);Gb(c);return 0}catch(d){if("undefined"==typeof xc||"ErrnoError"!==d.name)throw d;return d.s}}
  99. function Sd(a,c,d,e){if(Ea)return Ec(12,1,a,c,d,e);try{a:{var f=Ac(a);a=c;for(var l,n=c=0;n<d;n++){var p=qa()[a>>2],R=qa()[a+4>>2];a+=8;var O=Eb(f,aa(),p,R,l);if(0>O){var ma=-1;break a}c+=O;if(O<R)break;"undefined"!==typeof l&&(l+=O)}ma=c}qa()[e>>2]=ma;return 0}catch(Ja){if("undefined"==typeof xc||"ErrnoError"!==Ja.name)throw Ja;return Ja.s}}
  100. function Td(a,c,d,e,f){if(Ea)return Ec(13,1,a,c,d,e,f);try{c=d+2097152>>>0<4194305-!!c?(c>>>0)+4294967296*d:NaN;if(isNaN(c))return 61;var l=Ac(a);vc(l,c,e);Bb=[l.position>>>0,(Ab=l.position,1<=+Math.abs(Ab)?0<Ab?(Math.min(+Math.floor(Ab/4294967296),4294967295)|0)>>>0:~~+Math.ceil((Ab-+(~~Ab>>>0))/4294967296)>>>0:0)];oa()[f>>2]=Bb[0];oa()[f+4>>2]=Bb[1];l.ja&&0===c&&0===e&&(l.ja=null);return 0}catch(n){if("undefined"==typeof xc||"ErrnoError"!==n.name)throw n;return n.s}}
  101. function Ud(a,c,d,e){if(Ea)return Ec(14,1,a,c,d,e);try{a:{var f=Ac(a);a=c;for(var l,n=c=0;n<d;n++){var p=qa()[a>>2],R=qa()[a+4>>2];a+=8;var O=f,ma=aa(),Ja=p,Ia=R,q=l;if(0>Ia||0>q)throw new Db(28);if(null===O.fd)throw new Db(8);if(0===(O.flags&2097155))throw new Db(8);if(16384===(O.node.mode&61440))throw new Db(31);if(!O.m.write)throw new Db(28);O.seekable&&O.flags&1024&&vc(O,0,2);var ia="undefined"!=typeof q;if(!ia)q=O.position;else if(!O.seekable)throw new Db(70);var fa=O.m.write(O,ma,Ja,Ia,q,void 0);
  102. ia||(O.position+=fa);var Ma=fa;if(0>Ma){var ca=-1;break a}c+=Ma;"undefined"!==typeof l&&(l+=Ma)}ca=c}qa()[e>>2]=ca;return 0}catch(Qa){if("undefined"==typeof xc||"ErrnoError"!==Qa.name)throw Qa;return Qa.s}}function Vd(a,c,d,e){for(var f=0;f<a;f++){var l=h[d](),n=l&&Gd(e);l?(l.name=n,e[n]=l):Ed(1282);oa()[c+4*f>>2]=n}}
  103. function Gaa(a,c){if(c){var d=void 0;switch(a){case 36346:d=1;break;case 36344:Ed(1280);return;case 34814:case 36345:d=0;break;case 34466:var e=h.getParameter(34467);d=e?e.length:0;break;case 33309:if(2>Kd.version){Ed(1282);return}d=2*(h.getSupportedExtensions()||[]).length;break;case 33307:case 33308:if(2>Kd.version){Ed(1280);return}d=33307==a?3:0}if(void 0===d)switch(e=h.getParameter(a),typeof e){case "number":d=e;break;case "boolean":d=e?1:0;break;case "string":Ed(1280);return;case "object":if(null===
  104. e)switch(a){case 34964:case 35725:case 34965:case 36006:case 36007:case 32873:case 34229:case 36662:case 36663:case 35053:case 35055:case 36010:case 35097:case 35869:case 32874:case 36389:case 35983:case 35368:case 34068:d=0;break;default:Ed(1280);return}else{if(e instanceof Float32Array||e instanceof Uint32Array||e instanceof Int32Array||e instanceof Array){for(a=0;a<e.length;++a)aa()[c+a>>0]=e[a]?1:0;return}try{d=e.name|0}catch(f){Ed(1280);Ua("GL_INVALID_ENUM in glGet4v: Unknown object returned from WebGL getParameter("+
  105. a+")! (error: "+f+")");return}}break;default:Ed(1280);Ua("GL_INVALID_ENUM in glGet4v: Native code calling glGet4v("+a+") and it returns "+e+" of type "+typeof e+"!");return}aa()[c>>0]=d?1:0}else Ed(1281)}function Wd(a){return"]"==a.slice(-1)&&a.lastIndexOf("[")}function Xd(a){var c=h.Xa;if(c){var d=c.U[a];"number"==typeof d&&(c.U[a]=d=h.getUniformLocation(c,c.Qa[a]+(0<d?"["+d+"]":"")));return d}Ed(1282)}var Yd=[];function Zd(a){return 0===a%4&&(0!==a%100||0===a%400)}
  106. var $d=[31,29,31,30,31,30,31,31,30,31,30,31],ae=[31,28,31,30,31,30,31,31,30,31,30,31];function Haa(a,c){aa().set(a,c)}
  107. function Iaa(a,c,d,e){function f(q,ia,fa){for(q="number"==typeof q?q.toString():q||"";q.length<ia;)q=fa[0]+q;return q}function l(q,ia){return f(q,ia,"0")}function n(q,ia){function fa(ca){return 0>ca?-1:0<ca?1:0}var Ma;0===(Ma=fa(q.getFullYear()-ia.getFullYear()))&&0===(Ma=fa(q.getMonth()-ia.getMonth()))&&(Ma=fa(q.getDate()-ia.getDate()));return Ma}function p(q){switch(q.getDay()){case 0:return new Date(q.getFullYear()-1,11,29);case 1:return q;case 2:return new Date(q.getFullYear(),0,3);case 3:return new Date(q.getFullYear(),
  108. 0,2);case 4:return new Date(q.getFullYear(),0,1);case 5:return new Date(q.getFullYear()-1,11,31);case 6:return new Date(q.getFullYear()-1,11,30)}}function R(q){var ia=q.J;for(q=new Date((new Date(q.K+1900,0,1)).getTime());0<ia;){var fa=q.getMonth(),Ma=(Zd(q.getFullYear())?$d:ae)[fa];if(ia>Ma-q.getDate())ia-=Ma-q.getDate()+1,q.setDate(1),11>fa?q.setMonth(fa+1):(q.setMonth(0),q.setFullYear(q.getFullYear()+1));else{q.setDate(q.getDate()+ia);break}}fa=new Date(q.getFullYear()+1,0,4);ia=p(new Date(q.getFullYear(),
  109. 0,4));fa=p(fa);return 0>=n(ia,q)?0>=n(fa,q)?q.getFullYear()+1:q.getFullYear():q.getFullYear()-1}var O=oa()[e+40>>2];e={Ib:oa()[e>>2],Hb:oa()[e+4>>2],ba:oa()[e+8>>2],sa:oa()[e+12>>2],da:oa()[e+16>>2],K:oa()[e+20>>2],C:oa()[e+24>>2],J:oa()[e+28>>2],cc:oa()[e+32>>2],Gb:oa()[e+36>>2],Jb:O?g(O):""};d=g(d);O={"%c":"%a %b %d %H:%M:%S %Y","%D":"%m/%d/%y","%F":"%Y-%m-%d","%h":"%b","%r":"%I:%M:%S %p","%R":"%H:%M","%T":"%H:%M:%S","%x":"%m/%d/%y","%X":"%H:%M:%S","%Ec":"%c","%EC":"%C","%Ex":"%m/%d/%y","%EX":"%H:%M:%S",
  110. "%Ey":"%y","%EY":"%Y","%Od":"%d","%Oe":"%e","%OH":"%H","%OI":"%I","%Om":"%m","%OM":"%M","%OS":"%S","%Ou":"%u","%OU":"%U","%OV":"%V","%Ow":"%w","%OW":"%W","%Oy":"%y"};for(var ma in O)d=d.replace(new RegExp(ma,"g"),O[ma]);var Ja="Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),Ia="January February March April May June July August September October November December".split(" ");O={"%a":function(q){return Ja[q.C].substring(0,3)},"%A":function(q){return Ja[q.C]},"%b":function(q){return Ia[q.da].substring(0,
  111. 3)},"%B":function(q){return Ia[q.da]},"%C":function(q){return l((q.K+1900)/100|0,2)},"%d":function(q){return l(q.sa,2)},"%e":function(q){return f(q.sa,2," ")},"%g":function(q){return R(q).toString().substring(2)},"%G":function(q){return R(q)},"%H":function(q){return l(q.ba,2)},"%I":function(q){q=q.ba;0==q?q=12:12<q&&(q-=12);return l(q,2)},"%j":function(q){for(var ia=0,fa=0;fa<=q.da-1;ia+=(Zd(q.K+1900)?$d:ae)[fa++]);return l(q.sa+ia,3)},"%m":function(q){return l(q.da+1,2)},"%M":function(q){return l(q.Hb,
  112. 2)},"%n":function(){return"\n"},"%p":function(q){return 0<=q.ba&&12>q.ba?"AM":"PM"},"%S":function(q){return l(q.Ib,2)},"%t":function(){return"\t"},"%u":function(q){return q.C||7},"%U":function(q){return l(Math.floor((q.J+7-q.C)/7),2)},"%V":function(q){var ia=Math.floor((q.J+7-(q.C+6)%7)/7);2>=(q.C+371-q.J-2)%7&&ia++;if(ia)53==ia&&(fa=(q.C+371-q.J)%7,4==fa||3==fa&&Zd(q.K)||(ia=1));else{ia=52;var fa=(q.C+7-q.J-1)%7;(4==fa||5==fa&&Zd(q.K%400-1))&&ia++}return l(ia,2)},"%w":function(q){return q.C},"%W":function(q){return l(Math.floor((q.J+
  113. 7-(q.C+6)%7)/7),2)},"%y":function(q){return(q.K+1900).toString().substring(2)},"%Y":function(q){return q.K+1900},"%z":function(q){q=q.Gb;var ia=0<=q;q=Math.abs(q)/60;return(ia?"+":"-")+String("0000"+(q/60*100+q%60)).slice(-4)},"%Z":function(q){return q.Jb},"%%":function(){return"%"}};d=d.replace(/%%/g,"\x00\x00");for(ma in O)d.includes(ma)&&(d=d.replace(new RegExp(ma,"g"),O[ma](e)));d=d.replace(/\0\0/g,"%");ma=Ub(d,!1);if(ma.length>c)return 0;Haa(ma,a);return ma.length-1}Lb.ka();
  114. function kc(a,c,d,e){a||(a=this);this.parent=a;this.D=a.D;this.M=null;this.id=jaa++;this.name=c;this.mode=d;this.j={};this.m={};this.rdev=e}Object.defineProperties(kc.prototype,{read:{get:function(){return 365===(this.mode&365)},set:function(a){a?this.mode|=365:this.mode&=-366}},write:{get:function(){return 146===(this.mode&146)},set:function(a){a?this.mode|=146:this.mode&=-147}}});jb();fc=Array(4096);qc(Yb,"/");rc("/tmp",16895,0);rc("/home",16895,0);rc("/home/web_user",16895,0);
  115. (()=>{rc("/dev",16895,0);Xb(259,{read:()=>0,write:(e,f,l,n)=>n});sc("/dev/null",259);Wb(1280,gaa);Wb(1536,haa);sc("/dev/tty",1280);sc("/dev/tty1",1536);var a=new Uint8Array(1024),c=0,d=()=>{0===c&&(c=Qb(a).byteLength);return a[--c]};kb("random",d);kb("urandom",d);rc("/dev/shm",16895,0);rc("/dev/shm/tmp",16895,0)})();
  116. (()=>{rc("/proc",16895,0);var a=rc("/proc/self",16895,0);rc("/proc/self/fd",16895,0);qc({D:()=>{var c=Zb(a,"fd",16895,73);c.j={lookup:(d,e)=>{var f=dc[+e];if(!f)throw new Db(8);d={parent:null,D:{Ja:"fake"},j:{readlink:()=>f.path}};return d.parent=d}};return c}},"/proc/self/fd")})();Ea||(tb(),uaa(a=>{sd=a;ub()},()=>{sd=!1;ub()}));for(var h,Jaa=new Float32Array(288),be=0;288>be;++be)Yd[be]=Jaa.subarray(0,be+1);
  117. var Kaa=[null,Dc,Gc,Rc,Tc,Vc,Wc,Xc,Yc,Pd,Qd,Rd,Sd,Td,Ud],de={__assert_fail:function(a,c,d,e){Wa("Assertion failed: "+g(a)+", at: "+[c?g(c):"unknown filename",d,e?g(e):"unknown function"])},__cxa_throw:function(a,c,d){(new oaa(a)).ka(c,d);Qc=a;paa++;throw Qc;},__emscripten_init_main_thread_js:function(a){ce(a,!Ca,1,!Ba);Lb.Oa()},__emscripten_thread_cleanup:function(a){Ea?postMessage({cmd:"cleanupThread",thread:a}):Kb(a)},__pthread_create_js:Sc,__syscall_fcntl64:Tc,__syscall_ioctl:Vc,__syscall_openat:Wc,
  118. __syscall_rmdir:Xc,__syscall_unlinkat:Yc,_emscripten_default_pthread_stack_size:function(){return 4194304},_emscripten_fetch_free:function(a){var c=rd[a];c&&(delete rd[a],0<c.readyState&&4>c.readyState&&c.abort())},_emscripten_get_now_is_monotonic:function(){return!0},_emscripten_notify_mailbox_postmessage:function(a,c){a==c?setTimeout(()=>Kc()):Ea?postMessage({targetThread:a,cmd:"checkMailbox"}):(a=Lb.F[a])&&a.postMessage({cmd:"checkMailbox"})},_emscripten_set_offscreencanvas_size:function(){return-1},
  119. _emscripten_thread_mailbox_await:$c,_emscripten_throw_longjmp:function(){throw Infinity;},abort:function(){Wa("")},emscripten_asm_const_int:function(a,c,d){bd.length=0;var e;for(d>>=2;e=ha()[c++];)d+=105!=e&d,bd.push(105==e?oa()[d]:ua()[d++>>1]),++d;return Hb[a].apply(null,bd)},emscripten_check_blocking_allowed:function(){},emscripten_clear_interval:function(a){--fb;clearInterval(a)},emscripten_date_now:function(){return Date.now()},emscripten_exit_with_live_runtime:function(){fb+=1;throw"unwind";
  120. },emscripten_get_now:ed,emscripten_log:function(a,c,d){c=raa(c,d);c=Fb(c,0);a&24&&(c=c.replace(/\s+$/,""),c+=(0<c.length?"\n":"")+saa(a));a&1?a&4?console.error(c):a&2?console.warn(c):a&512?console.info(c):a&256?console.debug(c):console.log(c):a&6?Ua(c):Ta(c)},emscripten_memcpy_big:function(a,c,d){ha().copyWithin(a,c,c+d)},emscripten_receive_on_main_thread_js:function(a,c,d){md.length=c;d>>=3;for(var e=0;e<c;e++)md[e]=ua()[d+e];return(0>a?Hb[-a-1]:Kaa[a]).apply(null,md)},emscripten_resize_heap:function(a){var c=
  121. ha().length;a>>>=0;if(a<=c||2147483648<a)return!1;for(var d=1;4>=d;d*=2){var e=c*(1+.2/d);e=Math.min(e,a+100663296);var f=Math,l=f.min;e=Math.max(a,e);e+=(65536-e%65536)%65536;a:{var n=ba.buffer;try{ba.grow(l.call(f,2147483648,e)-n.byteLength+65535>>>16);ea();var p=1;break a}catch(R){}p=void 0}if(p)return!0}return!1},emscripten_run_script:function(a){eval(g(a))},emscripten_run_script_int:function(a){return eval(g(a))|0},emscripten_run_script_string:od,emscripten_set_interval:function(a,c,d){fb+=1;
  122. return setInterval(function(){Zc(function(){Oc(a)(d)})},c)},emscripten_start_fetch:function(a,c,d,e,f){function l(Na){Ma?Na():Zc(Na)}fb+=1;var n=a+112,p=g(n),R=qa()[n+36>>2],O=qa()[n+40>>2],ma=qa()[n+44>>2],Ja=qa()[n+48>>2],Ia=qa()[n+52>>2],q=!!(Ia&4),ia=!!(Ia&32),fa=!!(Ia&16),Ma=!!(Ia&64),ca=Na=>{--fb;l(()=>{R?Oc(R)(Na):c&&c(Na)})},Qa=Na=>{l(()=>{ma?Oc(ma)(Na):e&&e(Na)})},ja=Na=>{--fb;l(()=>{O?Oc(O)(Na):d&&d(Na)})},xb=Na=>{l(()=>{Ja?Oc(Ja)(Na):f&&f(Na)})};Ia=Na=>{td(Na,ca,ja,Qa,xb)};var Pa=(Na,bea)=>
  123. {vd(Na,bea.response,ec=>{--fb;l(()=>{R?Oc(R)(ec):c&&c(ec)})},ec=>{--fb;l(()=>{R?Oc(R)(ec):c&&c(ec)})})},mb=Na=>{td(Na,Pa,ja,Qa,xb)};if("EM_IDB_STORE"===p)p=qa()[n+84>>2],vd(a,ha().slice(p,p+qa()[n+88>>2]),ca,ja);else if("EM_IDB_DELETE"===p)waa(a,ca,ja);else if(fa){if(ia)return 0;td(a,q?Pa:ca,ja,Qa,xb)}else vaa(a,ca,ia?ja:q?mb:Ia);return a},emscripten_unwind_to_js_event_loop:function(){throw"unwind";},emscripten_webgl_create_context:function(a,c){c>>=2;var d=oa()[c+6];c={alpha:!!oa()[c+0],depth:!!oa()[c+
  124. 1],stencil:!!oa()[c+2],antialias:!!oa()[c+3],premultipliedAlpha:!!oa()[c+4],preserveDrawingBuffer:!!oa()[c+5],powerPreference:Eaa[d],failIfMajorPerformanceCaveat:!!oa()[c+7],Ga:oa()[c+8],Vb:oa()[c+9],Aa:oa()[c+10],Za:oa()[c+11],Zb:oa()[c+12],$b:oa()[c+13]};a=2<a?g(a):a;a=Faa[a]||("undefined"!=typeof document?document.querySelector(a):void 0);return!a||c.Za?0:Aaa(a,c)},emscripten_webgl_destroy_context:function(a){Kd==a&&(Kd=0);Kd===Cd[a]&&(Kd=null);if("object"==typeof Daa)for(var c=Cd[a].L.canvas,
  125. d=0;d<Ld.length;++d)if(Ld[d].target==c){var e=d--,f=Ld[e];f.target.removeEventListener(f.Sb,f.Rb,f.ec);Ld.splice(e,1)}Cd[a]&&Cd[a].L.canvas&&(Cd[a].L.canvas.Ta=void 0);pd(Cd[a].hb);Cd[a]=null},emscripten_webgl_make_context_current:function(a){Kd=Cd[a];b.Pb=h=Kd&&Kd.L;return!a||h?0:-5},environ_get:Pd,environ_sizes_get:Qd,exit:Fc,fd_close:Rd,fd_read:Sd,fd_seek:Td,fd_write:Ud,getentropy:function(a,c){Qb(ha().subarray(a,a+c));return 0},glActiveTexture:function(a){h.activeTexture(a)},glAttachShader:function(a,
  126. c){h.attachShader(yd[a],Ad[c])},glBindAttribLocation:function(a,c,d){h.bindAttribLocation(yd[a],c,g(d))},glBindBuffer:function(a,c){34962==a?h.R=c:34963==a&&(h.S=c);35051==a?h.xa=c:35052==a&&(h.ya=c);h.bindBuffer(a,xd[c])},glBindTexture:function(a,c){h.bindTexture(a,zd[c])},glBindVertexArray:function(a){h.bindVertexArray(Bd[a]);a=h.getParameter(34965);h.S=a?a.name|0:0},glBlendFunc:function(a,c){h.blendFunc(a,c)},glBufferData:function(a,c,d,e){2<=Kd.version?d&&c?h.bufferData(a,ha(),e,d,c):h.bufferData(a,
  127. c,e):h.bufferData(a,d?ha().subarray(d,d+c):c,e)},glClear:function(a){h.clear(a)},glClearColor:function(a,c,d,e){h.clearColor(a,c,d,e)},glClearStencil:function(a){h.clearStencil(a)},glColorMask:function(a,c,d,e){h.colorMask(!!a,!!c,!!d,!!e)},glCompileShader:function(a){h.compileShader(Ad[a])},glCreateProgram:function(){var a=Gd(yd),c=h.createProgram();c.name=a;c.Y=c.W=c.X=0;c.ta=1;yd[a]=c;return a},glCreateShader:function(a){var c=Gd(Ad);Ad[c]=h.createShader(a);return c},glDeleteBuffers:function(a,
  128. c){for(var d=0;d<a;d++){var e=oa()[c+4*d>>2],f=xd[e];f&&(h.deleteBuffer(f),f.name=0,xd[e]=null,e==h.R&&(h.R=0),e==h.S&&(h.S=0),e==h.xa&&(h.xa=0),e==h.ya&&(h.ya=0))}},glDeleteProgram:function(a){if(a){var c=yd[a];c?(h.deleteProgram(c),c.name=0,yd[a]=null):Ed(1281)}},glDeleteShader:function(a){if(a){var c=Ad[a];c?(h.deleteShader(c),Ad[a]=null):Ed(1281)}},glDeleteTextures:function(a,c){for(var d=0;d<a;d++){var e=oa()[c+4*d>>2],f=zd[e];f&&(h.deleteTexture(f),f.name=0,zd[e]=null)}},glDeleteVertexArrays:function(a,
  129. c){for(var d=0;d<a;d++){var e=oa()[c+4*d>>2];h.deleteVertexArray(Bd[e]);Bd[e]=null}},glDepthMask:function(a){h.depthMask(!!a)},glDisable:function(a){h.disable(a)},glDrawArrays:function(a,c,d){Id(c+d);h.drawArrays(a,c,d);Jd&&h.bindBuffer(34962,xd[h.R])},glDrawElements:function(a,c,d,e){if(!h.S){var f=1*Dd[d-5120]*c;var l=Hd(f);var n=Kd.P[l];n?l=n:(n=h.getParameter(34965),Kd.P[l]=h.createBuffer(),h.bindBuffer(34963,Kd.P[l]),h.bufferData(34963,1<<l,35048),h.bindBuffer(34963,n),l=Kd.P[l]);h.bindBuffer(34963,
  130. l);h.bufferSubData(34963,0,ha().subarray(e,e+f));e=0}Id(c);h.drawElements(a,c,d,e);Jd&&h.bindBuffer(34962,xd[h.R]);h.S||h.bindBuffer(34963,null)},glDrawElementsInstanced:function(a,c,d,e,f){h.drawElementsInstanced(a,c,d,e,f)},glEnable:function(a){h.enable(a)},glEnableVertexAttribArray:function(a){Kd.V[a].enabled=!0;h.enableVertexAttribArray(a)},glGenBuffers:function(a,c){Vd(a,c,"createBuffer",xd)},glGenTextures:function(a,c){Vd(a,c,"createTexture",zd)},glGenVertexArrays:function(a,c){Vd(a,c,"createVertexArray",
  131. Bd)},glGetAttribLocation:function(a,c){return h.getAttribLocation(yd[a],g(c))},glGetBooleanv:function(a,c){Gaa(a,c)},glGetError:function(){var a=h.getError()||Fd;Fd=0;return a},glGetProgramiv:function(a,c,d){if(d)if(a>=wd)Ed(1281);else if(a=yd[a],35716==c)a=h.getProgramInfoLog(a),null===a&&(a="(unknown error)"),oa()[d>>2]=a.length+1;else if(35719==c){if(!a.Y)for(c=0;c<h.getProgramParameter(a,35718);++c)a.Y=Math.max(a.Y,h.getActiveUniform(a,c).name.length+1);oa()[d>>2]=a.Y}else if(35722==c){if(!a.W)for(c=
  132. 0;c<h.getProgramParameter(a,35721);++c)a.W=Math.max(a.W,h.getActiveAttrib(a,c).name.length+1);oa()[d>>2]=a.W}else if(35381==c){if(!a.X)for(c=0;c<h.getProgramParameter(a,35382);++c)a.X=Math.max(a.X,h.getActiveUniformBlockName(a,c).length+1);oa()[d>>2]=a.X}else oa()[d>>2]=h.getProgramParameter(a,c);else Ed(1281)},glGetShaderiv:function(a,c,d){d?35716==c?(a=h.getShaderInfoLog(Ad[a]),null===a&&(a="(unknown error)"),a=a?a.length+1:0,oa()[d>>2]=a):35720==c?(a=(a=h.getShaderSource(Ad[a]))?a.length+1:0,oa()[d>>
  133. 2]=a):oa()[d>>2]=h.getShaderParameter(Ad[a],c):Ed(1281)},glGetUniformLocation:function(a,c){c=g(c);if(a=yd[a]){var d=a,e=d.U,f=d.Ra,l;if(!e)for(d.U=e={},d.Qa={},l=0;l<h.getProgramParameter(d,35718);++l){var n=h.getActiveUniform(d,l);var p=n.name;n=n.size;var R=Wd(p);R=0<R?p.slice(0,R):p;var O=d.ta;d.ta+=n;f[R]=[n,O];for(p=0;p<n;++p)e[O]=p,d.Qa[O++]=R}d=a.U;e=0;f=c;l=Wd(c);0<l&&(e=parseInt(c.slice(l+1))>>>0,f=c.slice(0,l));if((f=a.Ra[f])&&e<f[0]&&(e+=f[1],d[e]=d[e]||h.getUniformLocation(a,c)))return e}else Ed(1281);
  134. return-1},glLinkProgram:function(a){a=yd[a];h.linkProgram(a);a.U=0;a.Ra={}},glShaderSource:function(a,c,d,e){for(var f="",l=0;l<c;++l){var n=e?oa()[e+4*l>>2]:-1;f+=g(oa()[d+4*l>>2],0>n?void 0:n)}h.shaderSource(Ad[a],f)},glStencilFunc:function(a,c,d){h.stencilFunc(a,c,d)},glStencilMask:function(a){h.stencilMask(a)},glStencilOp:function(a,c,d){h.stencilOp(a,c,d)},glUniform1f:function(a,c){h.uniform1f(Xd(a),c)},glUniform1i:function(a,c){h.uniform1i(Xd(a),c)},glUniform2fv:function(a,c,d){if(2<=Kd.version)c&&
  135. h.uniform2fv(Xd(a),sa(),d>>2,2*c);else{if(144>=c)for(var e=Yd[2*c-1],f=0;f<2*c;f+=2)e[f]=sa()[d+4*f>>2],e[f+1]=sa()[d+(4*f+4)>>2];else e=sa().subarray(d>>2,d+8*c>>2);h.uniform2fv(Xd(a),e)}},glUniform4fv:function(a,c,d){if(2<=Kd.version)c&&h.uniform4fv(Xd(a),sa(),d>>2,4*c);else{if(72>=c){var e=Yd[4*c-1],f=sa();d>>=2;for(var l=0;l<4*c;l+=4){var n=d+l;e[l]=f[n];e[l+1]=f[n+1];e[l+2]=f[n+2];e[l+3]=f[n+3]}}else e=sa().subarray(d>>2,d+16*c>>2);h.uniform4fv(Xd(a),e)}},glUniformMatrix4fv:function(a,c,d,e){if(2<=
  136. Kd.version)c&&h.uniformMatrix4fv(Xd(a),!!d,sa(),e>>2,16*c);else{if(18>=c){var f=Yd[16*c-1],l=sa();e>>=2;for(var n=0;n<16*c;n+=16){var p=e+n;f[n]=l[p];f[n+1]=l[p+1];f[n+2]=l[p+2];f[n+3]=l[p+3];f[n+4]=l[p+4];f[n+5]=l[p+5];f[n+6]=l[p+6];f[n+7]=l[p+7];f[n+8]=l[p+8];f[n+9]=l[p+9];f[n+10]=l[p+10];f[n+11]=l[p+11];f[n+12]=l[p+12];f[n+13]=l[p+13];f[n+14]=l[p+14];f[n+15]=l[p+15]}}else f=sa().subarray(e>>2,e+64*c>>2);h.uniformMatrix4fv(Xd(a),!!d,f)}},glUseProgram:function(a){a=yd[a];h.useProgram(a);h.Xa=a},
  137. glVertexAttribDivisor:function(a,c){h.vertexAttribDivisor(a,c)},glVertexAttribPointer:function(a,c,d,e,f,l){var n=Kd.V[a];h.R?(n.ea=!1,h.vertexAttribPointer(a,c,d,!!e,f,l)):(n.size=c,n.type=d,n.La=e,n.qa=f,n.g=l,n.ea=!0,n.Sa=function(p,R,O,ma,Ja,Ia){this.vertexAttribPointer(p,R,O,ma,Ja,Ia)})},invoke_ii:Laa,invoke_iii:Maa,invoke_iiii:Naa,invoke_iiiii:Oaa,invoke_vi:Paa,invoke_vii:Qaa,invoke_viiii:Raa,memory:ba||b.wasmMemory,strftime_l:function(a,c,d,e){return Iaa(a,c,d,e)}};
  138. (function(){function a(d,e){d=d.exports;b.asm=d;Lb.Pa.push(b.asm._emscripten_tls_init);bb=b.asm.__indirect_function_table;db.unshift(b.asm.__wasm_call_ctors);Xa=e;Lb.mb(()=>ub());return d}var c={env:de,wasi_snapshot_preview1:de};tb();if(b.instantiateWasm)try{return b.instantiateWasm(c,a)}catch(d){Ua("Module.instantiateWasm callback failed with error: "+d),xa(d)}caa(c,function(d){a(d.instance,d.module)}).catch(xa);return{}})();
  139. var ee=b._emscripten_bind_MdRxObject_getObjectName_0=function(){return(ee=b._emscripten_bind_MdRxObject_getObjectName_0=b.asm.emscripten_bind_MdRxObject_getObjectName_0).apply(null,arguments)},fe=b._emscripten_bind_MdRxObject_getDxf0_0=function(){return(fe=b._emscripten_bind_MdRxObject_getDxf0_0=b.asm.emscripten_bind_MdRxObject_getDxf0_0).apply(null,arguments)},ge=b._emscripten_bind_MdRxObject_getCustomEntityTypeName_0=function(){return(ge=b._emscripten_bind_MdRxObject_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdRxObject_getCustomEntityTypeName_0).apply(null,
  140. arguments)},he=b._emscripten_bind_MdRxObject_getCustomEntityid_0=function(){return(he=b._emscripten_bind_MdRxObject_getCustomEntityid_0=b.asm.emscripten_bind_MdRxObject_getCustomEntityid_0).apply(null,arguments)},ie=b._emscripten_bind_MdRxObject_getCustomEntityTempid_0=function(){return(ie=b._emscripten_bind_MdRxObject_getCustomEntityTempid_0=b.asm.emscripten_bind_MdRxObject_getCustomEntityTempid_0).apply(null,arguments)},je=b._emscripten_bind_MdRxObject_setCustomEntityTempid_1=function(){return(je=
  141. b._emscripten_bind_MdRxObject_setCustomEntityTempid_1=b.asm.emscripten_bind_MdRxObject_setCustomEntityTempid_1).apply(null,arguments)},ke=b._emscripten_bind_MdRxObject_getJson_0=function(){return(ke=b._emscripten_bind_MdRxObject_getJson_0=b.asm.emscripten_bind_MdRxObject_getJson_0).apply(null,arguments)},le=b._emscripten_bind_MdRxObject_setJson_1=function(){return(le=b._emscripten_bind_MdRxObject_setJson_1=b.asm.emscripten_bind_MdRxObject_setJson_1).apply(null,arguments)},me=b._emscripten_bind_MdRxObject_isKindOf_1=
  142. function(){return(me=b._emscripten_bind_MdRxObject_isKindOf_1=b.asm.emscripten_bind_MdRxObject_isKindOf_1).apply(null,arguments)},ne=b._emscripten_bind_MdRxObject_isNull_0=function(){return(ne=b._emscripten_bind_MdRxObject_isNull_0=b.asm.emscripten_bind_MdRxObject_isNull_0).apply(null,arguments)},oe=b._emscripten_bind_MdDbObject_MdDbObject_0=function(){return(oe=b._emscripten_bind_MdDbObject_MdDbObject_0=b.asm.emscripten_bind_MdDbObject_MdDbObject_0).apply(null,arguments)},pe=b._emscripten_bind_MdDbObject_GetObjectID_0=
  143. function(){return(pe=b._emscripten_bind_MdDbObject_GetObjectID_0=b.asm.emscripten_bind_MdDbObject_GetObjectID_0).apply(null,arguments)},qe=b._emscripten_bind_MdDbObject_Erase_0=function(){return(qe=b._emscripten_bind_MdDbObject_Erase_0=b.asm.emscripten_bind_MdDbObject_Erase_0).apply(null,arguments)},re=b._emscripten_bind_MdDbObject_isErased_0=function(){return(re=b._emscripten_bind_MdDbObject_isErased_0=b.asm.emscripten_bind_MdDbObject_isErased_0).apply(null,arguments)},se=b._emscripten_bind_MdDbObject_unErase_0=
  144. function(){return(se=b._emscripten_bind_MdDbObject_unErase_0=b.asm.emscripten_bind_MdDbObject_unErase_0).apply(null,arguments)},te=b._emscripten_bind_MdDbObject_ConnectionTempObject_1=function(){return(te=b._emscripten_bind_MdDbObject_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbObject_ConnectionTempObject_1).apply(null,arguments)},ue=b._emscripten_bind_MdDbObject_GetExtensionDictionary_0=function(){return(ue=b._emscripten_bind_MdDbObject_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbObject_GetExtensionDictionary_0).apply(null,
  145. arguments)},ve=b._emscripten_bind_MdDbObject_CreateExtensionDictionary_0=function(){return(ve=b._emscripten_bind_MdDbObject_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbObject_CreateExtensionDictionary_0).apply(null,arguments)},we=b._emscripten_bind_MdDbObject_IsHaveExtensionDictionary_0=function(){return(we=b._emscripten_bind_MdDbObject_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbObject_IsHaveExtensionDictionary_0).apply(null,arguments)},xe=b._emscripten_bind_MdDbObject_Clone_0=
  146. function(){return(xe=b._emscripten_bind_MdDbObject_Clone_0=b.asm.emscripten_bind_MdDbObject_Clone_0).apply(null,arguments)},ye=b._emscripten_bind_MdDbObject_GetHandle_0=function(){return(ye=b._emscripten_bind_MdDbObject_GetHandle_0=b.asm.emscripten_bind_MdDbObject_GetHandle_0).apply(null,arguments)},ze=b._emscripten_bind_MdDbObject_GetDatabase_0=function(){return(ze=b._emscripten_bind_MdDbObject_GetDatabase_0=b.asm.emscripten_bind_MdDbObject_GetDatabase_0).apply(null,arguments)},Ae=b._emscripten_bind_MdDbObject_GetDatabaseIndexId_0=
  147. function(){return(Ae=b._emscripten_bind_MdDbObject_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbObject_GetDatabaseIndexId_0).apply(null,arguments)},Be=b._emscripten_bind_MdDbObject_GetOwnerID_0=function(){return(Be=b._emscripten_bind_MdDbObject_GetOwnerID_0=b.asm.emscripten_bind_MdDbObject_GetOwnerID_0).apply(null,arguments)},Ce=b._emscripten_bind_MdDbObject_assertObjectModification_1=function(){return(Ce=b._emscripten_bind_MdDbObject_assertObjectModification_1=b.asm.emscripten_bind_MdDbObject_assertObjectModification_1).apply(null,
  148. arguments)},De=b._emscripten_bind_MdDbObject_moveGripPointsAt_4=function(){return(De=b._emscripten_bind_MdDbObject_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbObject_moveGripPointsAt_4).apply(null,arguments)},Ee=b._emscripten_bind_MdDbObject_getGripPoints_0=function(){return(Ee=b._emscripten_bind_MdDbObject_getGripPoints_0=b.asm.emscripten_bind_MdDbObject_getGripPoints_0).apply(null,arguments)},Fe=b._emscripten_bind_MdDbObject_getObjectName_0=function(){return(Fe=b._emscripten_bind_MdDbObject_getObjectName_0=
  149. b.asm.emscripten_bind_MdDbObject_getObjectName_0).apply(null,arguments)},Ge=b._emscripten_bind_MdDbObject_getDxf0_0=function(){return(Ge=b._emscripten_bind_MdDbObject_getDxf0_0=b.asm.emscripten_bind_MdDbObject_getDxf0_0).apply(null,arguments)},He=b._emscripten_bind_MdDbObject_getCustomEntityTypeName_0=function(){return(He=b._emscripten_bind_MdDbObject_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbObject_getCustomEntityTypeName_0).apply(null,arguments)},Ie=b._emscripten_bind_MdDbObject_getCustomEntityid_0=
  150. function(){return(Ie=b._emscripten_bind_MdDbObject_getCustomEntityid_0=b.asm.emscripten_bind_MdDbObject_getCustomEntityid_0).apply(null,arguments)},Je=b._emscripten_bind_MdDbObject_getCustomEntityTempid_0=function(){return(Je=b._emscripten_bind_MdDbObject_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbObject_getCustomEntityTempid_0).apply(null,arguments)},Ke=b._emscripten_bind_MdDbObject_setCustomEntityTempid_1=function(){return(Ke=b._emscripten_bind_MdDbObject_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbObject_setCustomEntityTempid_1).apply(null,
  151. arguments)},Le=b._emscripten_bind_MdDbObject_getJson_0=function(){return(Le=b._emscripten_bind_MdDbObject_getJson_0=b.asm.emscripten_bind_MdDbObject_getJson_0).apply(null,arguments)},Me=b._emscripten_bind_MdDbObject_setJson_1=function(){return(Me=b._emscripten_bind_MdDbObject_setJson_1=b.asm.emscripten_bind_MdDbObject_setJson_1).apply(null,arguments)},Ne=b._emscripten_bind_MdDbObject_isKindOf_1=function(){return(Ne=b._emscripten_bind_MdDbObject_isKindOf_1=b.asm.emscripten_bind_MdDbObject_isKindOf_1).apply(null,
  152. arguments)},Oe=b._emscripten_bind_MdDbObject_isNull_0=function(){return(Oe=b._emscripten_bind_MdDbObject_isNull_0=b.asm.emscripten_bind_MdDbObject_isNull_0).apply(null,arguments)},Pe=b._emscripten_bind_MdDbObject___destroy___0=function(){return(Pe=b._emscripten_bind_MdDbObject___destroy___0=b.asm.emscripten_bind_MdDbObject___destroy___0).apply(null,arguments)},Qe=b._emscripten_bind_MdDbEntity_MdDbEntity_0=function(){return(Qe=b._emscripten_bind_MdDbEntity_MdDbEntity_0=b.asm.emscripten_bind_MdDbEntity_MdDbEntity_0).apply(null,
  153. arguments)},Re=b._emscripten_bind_MdDbEntity_explode_0=function(){return(Re=b._emscripten_bind_MdDbEntity_explode_0=b.asm.emscripten_bind_MdDbEntity_explode_0).apply(null,arguments)},Se=b._emscripten_bind_MdDbEntity_TrueColor_0=function(){return(Se=b._emscripten_bind_MdDbEntity_TrueColor_0=b.asm.emscripten_bind_MdDbEntity_TrueColor_0).apply(null,arguments)},Te=b._emscripten_bind_MdDbEntity_SetTrueColor_1=function(){return(Te=b._emscripten_bind_MdDbEntity_SetTrueColor_1=b.asm.emscripten_bind_MdDbEntity_SetTrueColor_1).apply(null,
  154. arguments)},Ue=b._emscripten_bind_MdDbEntity_ColorIndex_0=function(){return(Ue=b._emscripten_bind_MdDbEntity_ColorIndex_0=b.asm.emscripten_bind_MdDbEntity_ColorIndex_0).apply(null,arguments)},Ve=b._emscripten_bind_MdDbEntity_SetColorIndex_1=function(){return(Ve=b._emscripten_bind_MdDbEntity_SetColorIndex_1=b.asm.emscripten_bind_MdDbEntity_SetColorIndex_1).apply(null,arguments)},We=b._emscripten_bind_MdDbEntity_Layer_0=function(){return(We=b._emscripten_bind_MdDbEntity_Layer_0=b.asm.emscripten_bind_MdDbEntity_Layer_0).apply(null,
  155. arguments)},Xe=b._emscripten_bind_MdDbEntity_SetLayer_1=function(){return(Xe=b._emscripten_bind_MdDbEntity_SetLayer_1=b.asm.emscripten_bind_MdDbEntity_SetLayer_1).apply(null,arguments)},Ye=b._emscripten_bind_MdDbEntity_LinetypeScale_0=function(){return(Ye=b._emscripten_bind_MdDbEntity_LinetypeScale_0=b.asm.emscripten_bind_MdDbEntity_LinetypeScale_0).apply(null,arguments)},Ze=b._emscripten_bind_MdDbEntity_SetLinetypeScale_1=function(){return(Ze=b._emscripten_bind_MdDbEntity_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbEntity_SetLinetypeScale_1).apply(null,
  156. arguments)},$e=b._emscripten_bind_MdDbEntity_Visible_0=function(){return($e=b._emscripten_bind_MdDbEntity_Visible_0=b.asm.emscripten_bind_MdDbEntity_Visible_0).apply(null,arguments)},af=b._emscripten_bind_MdDbEntity_SetVisible_1=function(){return(af=b._emscripten_bind_MdDbEntity_SetVisible_1=b.asm.emscripten_bind_MdDbEntity_SetVisible_1).apply(null,arguments)},bf=b._emscripten_bind_MdDbEntity_Lineweight_0=function(){return(bf=b._emscripten_bind_MdDbEntity_Lineweight_0=b.asm.emscripten_bind_MdDbEntity_Lineweight_0).apply(null,
  157. arguments)},cf=b._emscripten_bind_MdDbEntity_SetLineweight_1=function(){return(cf=b._emscripten_bind_MdDbEntity_SetLineweight_1=b.asm.emscripten_bind_MdDbEntity_SetLineweight_1).apply(null,arguments)},df=b._emscripten_bind_MdDbEntity_TextStyle_0=function(){return(df=b._emscripten_bind_MdDbEntity_TextStyle_0=b.asm.emscripten_bind_MdDbEntity_TextStyle_0).apply(null,arguments)},ef=b._emscripten_bind_MdDbEntity_SetTextStyle_1=function(){return(ef=b._emscripten_bind_MdDbEntity_SetTextStyle_1=b.asm.emscripten_bind_MdDbEntity_SetTextStyle_1).apply(null,
  158. arguments)},ff=b._emscripten_bind_MdDbEntity_Highlight_1=function(){return(ff=b._emscripten_bind_MdDbEntity_Highlight_1=b.asm.emscripten_bind_MdDbEntity_Highlight_1).apply(null,arguments)},gf=b._emscripten_bind_MdDbEntity_Move_2=function(){return(gf=b._emscripten_bind_MdDbEntity_Move_2=b.asm.emscripten_bind_MdDbEntity_Move_2).apply(null,arguments)},hf=b._emscripten_bind_MdDbEntity_Rotate_2=function(){return(hf=b._emscripten_bind_MdDbEntity_Rotate_2=b.asm.emscripten_bind_MdDbEntity_Rotate_2).apply(null,
  159. arguments)},jf=b._emscripten_bind_MdDbEntity_Mirror_2=function(){return(jf=b._emscripten_bind_MdDbEntity_Mirror_2=b.asm.emscripten_bind_MdDbEntity_Mirror_2).apply(null,arguments)},kf=b._emscripten_bind_MdDbEntity_ScaleEntity_2=function(){return(kf=b._emscripten_bind_MdDbEntity_ScaleEntity_2=b.asm.emscripten_bind_MdDbEntity_ScaleEntity_2).apply(null,arguments)},lf=b._emscripten_bind_MdDbEntity_TransformBy_1=function(){return(lf=b._emscripten_bind_MdDbEntity_TransformBy_1=b.asm.emscripten_bind_MdDbEntity_TransformBy_1).apply(null,
  160. arguments)},mf=b._emscripten_bind_MdDbEntity_GetBoundingBox_0=function(){return(mf=b._emscripten_bind_MdDbEntity_GetBoundingBox_0=b.asm.emscripten_bind_MdDbEntity_GetBoundingBox_0).apply(null,arguments)},nf=b._emscripten_bind_MdDbEntity_GetXData_1=function(){return(nf=b._emscripten_bind_MdDbEntity_GetXData_1=b.asm.emscripten_bind_MdDbEntity_GetXData_1).apply(null,arguments)},of=b._emscripten_bind_MdDbEntity_SetXData_1=function(){return(of=b._emscripten_bind_MdDbEntity_SetXData_1=b.asm.emscripten_bind_MdDbEntity_SetXData_1).apply(null,
  161. arguments)},pf=b._emscripten_bind_MdDbEntity_GetxDataString_2=function(){return(pf=b._emscripten_bind_MdDbEntity_GetxDataString_2=b.asm.emscripten_bind_MdDbEntity_GetxDataString_2).apply(null,arguments)},qf=b._emscripten_bind_MdDbEntity_SetxDataString_3=function(){return(qf=b._emscripten_bind_MdDbEntity_SetxDataString_3=b.asm.emscripten_bind_MdDbEntity_SetxDataString_3).apply(null,arguments)},rf=b._emscripten_bind_MdDbEntity_GetxDataDouble_2=function(){return(rf=b._emscripten_bind_MdDbEntity_GetxDataDouble_2=
  162. b.asm.emscripten_bind_MdDbEntity_GetxDataDouble_2).apply(null,arguments)},sf=b._emscripten_bind_MdDbEntity_SetxDataDouble_3=function(){return(sf=b._emscripten_bind_MdDbEntity_SetxDataDouble_3=b.asm.emscripten_bind_MdDbEntity_SetxDataDouble_3).apply(null,arguments)},tf=b._emscripten_bind_MdDbEntity_GetxDataLong_2=function(){return(tf=b._emscripten_bind_MdDbEntity_GetxDataLong_2=b.asm.emscripten_bind_MdDbEntity_GetxDataLong_2).apply(null,arguments)},uf=b._emscripten_bind_MdDbEntity_SetxDataLong_3=function(){return(uf=
  163. b._emscripten_bind_MdDbEntity_SetxDataLong_3=b.asm.emscripten_bind_MdDbEntity_SetxDataLong_3).apply(null,arguments)},vf=b._emscripten_bind_MdDbEntity_GetxDataPoint_2=function(){return(vf=b._emscripten_bind_MdDbEntity_GetxDataPoint_2=b.asm.emscripten_bind_MdDbEntity_GetxDataPoint_2).apply(null,arguments)},wf=b._emscripten_bind_MdDbEntity_SetxDataPoint_3=function(){return(wf=b._emscripten_bind_MdDbEntity_SetxDataPoint_3=b.asm.emscripten_bind_MdDbEntity_SetxDataPoint_3).apply(null,arguments)},xf=b._emscripten_bind_MdDbEntity_DeleteXData_1=
  164. function(){return(xf=b._emscripten_bind_MdDbEntity_DeleteXData_1=b.asm.emscripten_bind_MdDbEntity_DeleteXData_1).apply(null,arguments)},yf=b._emscripten_bind_MdDbEntity_GetAllAppName_0=function(){return(yf=b._emscripten_bind_MdDbEntity_GetAllAppName_0=b.asm.emscripten_bind_MdDbEntity_GetAllAppName_0).apply(null,arguments)},zf=b._emscripten_bind_MdDbEntity_LayerId_0=function(){return(zf=b._emscripten_bind_MdDbEntity_LayerId_0=b.asm.emscripten_bind_MdDbEntity_LayerId_0).apply(null,arguments)},Af=b._emscripten_bind_MdDbEntity_SetLayerId_1=
  165. function(){return(Af=b._emscripten_bind_MdDbEntity_SetLayerId_1=b.asm.emscripten_bind_MdDbEntity_SetLayerId_1).apply(null,arguments)},Bf=b._emscripten_bind_MdDbEntity_LinetypeId_0=function(){return(Bf=b._emscripten_bind_MdDbEntity_LinetypeId_0=b.asm.emscripten_bind_MdDbEntity_LinetypeId_0).apply(null,arguments)},Cf=b._emscripten_bind_MdDbEntity_SetLinetypeId_1=function(){return(Cf=b._emscripten_bind_MdDbEntity_SetLinetypeId_1=b.asm.emscripten_bind_MdDbEntity_SetLinetypeId_1).apply(null,arguments)},
  166. Df=b._emscripten_bind_MdDbEntity_Linetype_0=function(){return(Df=b._emscripten_bind_MdDbEntity_Linetype_0=b.asm.emscripten_bind_MdDbEntity_Linetype_0).apply(null,arguments)},Ef=b._emscripten_bind_MdDbEntity_SetLinetype_1=function(){return(Ef=b._emscripten_bind_MdDbEntity_SetLinetype_1=b.asm.emscripten_bind_MdDbEntity_SetLinetype_1).apply(null,arguments)},Ff=b._emscripten_bind_MdDbEntity_TextStyleId_0=function(){return(Ff=b._emscripten_bind_MdDbEntity_TextStyleId_0=b.asm.emscripten_bind_MdDbEntity_TextStyleId_0).apply(null,
  167. arguments)},Gf=b._emscripten_bind_MdDbEntity_SetTextStyleId_1=function(){return(Gf=b._emscripten_bind_MdDbEntity_SetTextStyleId_1=b.asm.emscripten_bind_MdDbEntity_SetTextStyleId_1).apply(null,arguments)},Hf=b._emscripten_bind_MdDbEntity_IntersectWith_2=function(){return(Hf=b._emscripten_bind_MdDbEntity_IntersectWith_2=b.asm.emscripten_bind_MdDbEntity_IntersectWith_2).apply(null,arguments)},If=b._emscripten_bind_MdDbEntity_getArea_0=function(){return(If=b._emscripten_bind_MdDbEntity_getArea_0=b.asm.emscripten_bind_MdDbEntity_getArea_0).apply(null,
  168. arguments)},Jf=b._emscripten_bind_MdDbEntity_disableUpdateDisplay_1=function(){return(Jf=b._emscripten_bind_MdDbEntity_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbEntity_disableUpdateDisplay_1).apply(null,arguments)},Kf=b._emscripten_bind_MdDbEntity_isPropertiesWindowCustom_0=function(){return(Kf=b._emscripten_bind_MdDbEntity_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbEntity_isPropertiesWindowCustom_0).apply(null,arguments)},Lf=b._emscripten_bind_MdDbEntity_setPropertiesWindowCustom_1=
  169. function(){return(Lf=b._emscripten_bind_MdDbEntity_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbEntity_setPropertiesWindowCustom_1).apply(null,arguments)},Mf=b._emscripten_bind_MdDbEntity_updateDisplay_0=function(){return(Mf=b._emscripten_bind_MdDbEntity_updateDisplay_0=b.asm.emscripten_bind_MdDbEntity_updateDisplay_0).apply(null,arguments)},Nf=b._emscripten_bind_MdDbEntity_DrawOrder_0=function(){return(Nf=b._emscripten_bind_MdDbEntity_DrawOrder_0=b.asm.emscripten_bind_MdDbEntity_DrawOrder_0).apply(null,
  170. arguments)},Of=b._emscripten_bind_MdDbEntity_SetDrawOrder_1=function(){return(Of=b._emscripten_bind_MdDbEntity_SetDrawOrder_1=b.asm.emscripten_bind_MdDbEntity_SetDrawOrder_1).apply(null,arguments)},Pf=b._emscripten_bind_MdDbEntity_normal_0=function(){return(Pf=b._emscripten_bind_MdDbEntity_normal_0=b.asm.emscripten_bind_MdDbEntity_normal_0).apply(null,arguments)},Qf=b._emscripten_bind_MdDbEntity_setNormal_1=function(){return(Qf=b._emscripten_bind_MdDbEntity_setNormal_1=b.asm.emscripten_bind_MdDbEntity_setNormal_1).apply(null,
  171. arguments)},Rf=b._emscripten_bind_MdDbEntity_GetObjectID_0=function(){return(Rf=b._emscripten_bind_MdDbEntity_GetObjectID_0=b.asm.emscripten_bind_MdDbEntity_GetObjectID_0).apply(null,arguments)},Sf=b._emscripten_bind_MdDbEntity_Erase_0=function(){return(Sf=b._emscripten_bind_MdDbEntity_Erase_0=b.asm.emscripten_bind_MdDbEntity_Erase_0).apply(null,arguments)},Tf=b._emscripten_bind_MdDbEntity_isErased_0=function(){return(Tf=b._emscripten_bind_MdDbEntity_isErased_0=b.asm.emscripten_bind_MdDbEntity_isErased_0).apply(null,
  172. arguments)},Uf=b._emscripten_bind_MdDbEntity_unErase_0=function(){return(Uf=b._emscripten_bind_MdDbEntity_unErase_0=b.asm.emscripten_bind_MdDbEntity_unErase_0).apply(null,arguments)},Vf=b._emscripten_bind_MdDbEntity_ConnectionTempObject_1=function(){return(Vf=b._emscripten_bind_MdDbEntity_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbEntity_ConnectionTempObject_1).apply(null,arguments)},Wf=b._emscripten_bind_MdDbEntity_GetExtensionDictionary_0=function(){return(Wf=b._emscripten_bind_MdDbEntity_GetExtensionDictionary_0=
  173. b.asm.emscripten_bind_MdDbEntity_GetExtensionDictionary_0).apply(null,arguments)},Xf=b._emscripten_bind_MdDbEntity_CreateExtensionDictionary_0=function(){return(Xf=b._emscripten_bind_MdDbEntity_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbEntity_CreateExtensionDictionary_0).apply(null,arguments)},Yf=b._emscripten_bind_MdDbEntity_IsHaveExtensionDictionary_0=function(){return(Yf=b._emscripten_bind_MdDbEntity_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbEntity_IsHaveExtensionDictionary_0).apply(null,
  174. arguments)},Zf=b._emscripten_bind_MdDbEntity_Clone_0=function(){return(Zf=b._emscripten_bind_MdDbEntity_Clone_0=b.asm.emscripten_bind_MdDbEntity_Clone_0).apply(null,arguments)},$f=b._emscripten_bind_MdDbEntity_GetHandle_0=function(){return($f=b._emscripten_bind_MdDbEntity_GetHandle_0=b.asm.emscripten_bind_MdDbEntity_GetHandle_0).apply(null,arguments)},ag=b._emscripten_bind_MdDbEntity_GetDatabase_0=function(){return(ag=b._emscripten_bind_MdDbEntity_GetDatabase_0=b.asm.emscripten_bind_MdDbEntity_GetDatabase_0).apply(null,
  175. arguments)},bg=b._emscripten_bind_MdDbEntity_GetDatabaseIndexId_0=function(){return(bg=b._emscripten_bind_MdDbEntity_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbEntity_GetDatabaseIndexId_0).apply(null,arguments)},cg=b._emscripten_bind_MdDbEntity_GetOwnerID_0=function(){return(cg=b._emscripten_bind_MdDbEntity_GetOwnerID_0=b.asm.emscripten_bind_MdDbEntity_GetOwnerID_0).apply(null,arguments)},dg=b._emscripten_bind_MdDbEntity_assertObjectModification_1=function(){return(dg=b._emscripten_bind_MdDbEntity_assertObjectModification_1=
  176. b.asm.emscripten_bind_MdDbEntity_assertObjectModification_1).apply(null,arguments)},eg=b._emscripten_bind_MdDbEntity_moveGripPointsAt_4=function(){return(eg=b._emscripten_bind_MdDbEntity_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbEntity_moveGripPointsAt_4).apply(null,arguments)},fg=b._emscripten_bind_MdDbEntity_getGripPoints_0=function(){return(fg=b._emscripten_bind_MdDbEntity_getGripPoints_0=b.asm.emscripten_bind_MdDbEntity_getGripPoints_0).apply(null,arguments)},gg=b._emscripten_bind_MdDbEntity_getObjectName_0=
  177. function(){return(gg=b._emscripten_bind_MdDbEntity_getObjectName_0=b.asm.emscripten_bind_MdDbEntity_getObjectName_0).apply(null,arguments)},hg=b._emscripten_bind_MdDbEntity_getDxf0_0=function(){return(hg=b._emscripten_bind_MdDbEntity_getDxf0_0=b.asm.emscripten_bind_MdDbEntity_getDxf0_0).apply(null,arguments)},ig=b._emscripten_bind_MdDbEntity_getCustomEntityTypeName_0=function(){return(ig=b._emscripten_bind_MdDbEntity_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbEntity_getCustomEntityTypeName_0).apply(null,
  178. arguments)},jg=b._emscripten_bind_MdDbEntity_getCustomEntityid_0=function(){return(jg=b._emscripten_bind_MdDbEntity_getCustomEntityid_0=b.asm.emscripten_bind_MdDbEntity_getCustomEntityid_0).apply(null,arguments)},kg=b._emscripten_bind_MdDbEntity_getCustomEntityTempid_0=function(){return(kg=b._emscripten_bind_MdDbEntity_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbEntity_getCustomEntityTempid_0).apply(null,arguments)},lg=b._emscripten_bind_MdDbEntity_setCustomEntityTempid_1=function(){return(lg=
  179. b._emscripten_bind_MdDbEntity_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbEntity_setCustomEntityTempid_1).apply(null,arguments)},mg=b._emscripten_bind_MdDbEntity_getJson_0=function(){return(mg=b._emscripten_bind_MdDbEntity_getJson_0=b.asm.emscripten_bind_MdDbEntity_getJson_0).apply(null,arguments)},ng=b._emscripten_bind_MdDbEntity_setJson_1=function(){return(ng=b._emscripten_bind_MdDbEntity_setJson_1=b.asm.emscripten_bind_MdDbEntity_setJson_1).apply(null,arguments)},og=b._emscripten_bind_MdDbEntity_isKindOf_1=
  180. function(){return(og=b._emscripten_bind_MdDbEntity_isKindOf_1=b.asm.emscripten_bind_MdDbEntity_isKindOf_1).apply(null,arguments)},pg=b._emscripten_bind_MdDbEntity_isNull_0=function(){return(pg=b._emscripten_bind_MdDbEntity_isNull_0=b.asm.emscripten_bind_MdDbEntity_isNull_0).apply(null,arguments)},qg=b._emscripten_bind_MdDbEntity___destroy___0=function(){return(qg=b._emscripten_bind_MdDbEntity___destroy___0=b.asm.emscripten_bind_MdDbEntity___destroy___0).apply(null,arguments)},rg=b._emscripten_bind_MdDbCurve_MdDbCurve_0=
  181. function(){return(rg=b._emscripten_bind_MdDbCurve_MdDbCurve_0=b.asm.emscripten_bind_MdDbCurve_MdDbCurve_0).apply(null,arguments)},sg=b._emscripten_bind_MdDbCurve_getStartParam_0=function(){return(sg=b._emscripten_bind_MdDbCurve_getStartParam_0=b.asm.emscripten_bind_MdDbCurve_getStartParam_0).apply(null,arguments)},tg=b._emscripten_bind_MdDbCurve_getEndParam_0=function(){return(tg=b._emscripten_bind_MdDbCurve_getEndParam_0=b.asm.emscripten_bind_MdDbCurve_getEndParam_0).apply(null,arguments)},ug=b._emscripten_bind_MdDbCurve_getDistAtParam_1=
  182. function(){return(ug=b._emscripten_bind_MdDbCurve_getDistAtParam_1=b.asm.emscripten_bind_MdDbCurve_getDistAtParam_1).apply(null,arguments)},vg=b._emscripten_bind_MdDbCurve_getParamAtDist_1=function(){return(vg=b._emscripten_bind_MdDbCurve_getParamAtDist_1=b.asm.emscripten_bind_MdDbCurve_getParamAtDist_1).apply(null,arguments)},wg=b._emscripten_bind_MdDbCurve_getDistAtPoint_1=function(){return(wg=b._emscripten_bind_MdDbCurve_getDistAtPoint_1=b.asm.emscripten_bind_MdDbCurve_getDistAtPoint_1).apply(null,
  183. arguments)},xg=b._emscripten_bind_MdDbCurve_getPointAtDist_1=function(){return(xg=b._emscripten_bind_MdDbCurve_getPointAtDist_1=b.asm.emscripten_bind_MdDbCurve_getPointAtDist_1).apply(null,arguments)},yg=b._emscripten_bind_MdDbCurve_getStartPoint_0=function(){return(yg=b._emscripten_bind_MdDbCurve_getStartPoint_0=b.asm.emscripten_bind_MdDbCurve_getStartPoint_0).apply(null,arguments)},zg=b._emscripten_bind_MdDbCurve_getEndPoint_0=function(){return(zg=b._emscripten_bind_MdDbCurve_getEndPoint_0=b.asm.emscripten_bind_MdDbCurve_getEndPoint_0).apply(null,
  184. arguments)},Ag=b._emscripten_bind_MdDbCurve_getPointAtParam_1=function(){return(Ag=b._emscripten_bind_MdDbCurve_getPointAtParam_1=b.asm.emscripten_bind_MdDbCurve_getPointAtParam_1).apply(null,arguments)},Bg=b._emscripten_bind_MdDbCurve_getParamAtPoint_1=function(){return(Bg=b._emscripten_bind_MdDbCurve_getParamAtPoint_1=b.asm.emscripten_bind_MdDbCurve_getParamAtPoint_1).apply(null,arguments)},Cg=b._emscripten_bind_MdDbCurve_getFirstDeriv_1=function(){return(Cg=b._emscripten_bind_MdDbCurve_getFirstDeriv_1=
  185. b.asm.emscripten_bind_MdDbCurve_getFirstDeriv_1).apply(null,arguments)},Dg=b._emscripten_bind_MdDbCurve_getFirstDerivEx_1=function(){return(Dg=b._emscripten_bind_MdDbCurve_getFirstDerivEx_1=b.asm.emscripten_bind_MdDbCurve_getFirstDerivEx_1).apply(null,arguments)},Eg=b._emscripten_bind_MdDbCurve_getClosestPointTo_2=function(){return(Eg=b._emscripten_bind_MdDbCurve_getClosestPointTo_2=b.asm.emscripten_bind_MdDbCurve_getClosestPointTo_2).apply(null,arguments)},Fg=b._emscripten_bind_MdDbCurve_offsetCurves_2=
  186. function(){return(Fg=b._emscripten_bind_MdDbCurve_offsetCurves_2=b.asm.emscripten_bind_MdDbCurve_offsetCurves_2).apply(null,arguments)},Gg=b._emscripten_bind_MdDbCurve_splitCurves_1=function(){return(Gg=b._emscripten_bind_MdDbCurve_splitCurves_1=b.asm.emscripten_bind_MdDbCurve_splitCurves_1).apply(null,arguments)},Hg=b._emscripten_bind_MdDbCurve_getSamplePoints_1=function(){return(Hg=b._emscripten_bind_MdDbCurve_getSamplePoints_1=b.asm.emscripten_bind_MdDbCurve_getSamplePoints_1).apply(null,arguments)},
  187. Ig=b._emscripten_bind_MdDbCurve_getLength_0=function(){return(Ig=b._emscripten_bind_MdDbCurve_getLength_0=b.asm.emscripten_bind_MdDbCurve_getLength_0).apply(null,arguments)},Jg=b._emscripten_bind_MdDbCurve_explode_0=function(){return(Jg=b._emscripten_bind_MdDbCurve_explode_0=b.asm.emscripten_bind_MdDbCurve_explode_0).apply(null,arguments)},Kg=b._emscripten_bind_MdDbCurve_TrueColor_0=function(){return(Kg=b._emscripten_bind_MdDbCurve_TrueColor_0=b.asm.emscripten_bind_MdDbCurve_TrueColor_0).apply(null,
  188. arguments)},Lg=b._emscripten_bind_MdDbCurve_SetTrueColor_1=function(){return(Lg=b._emscripten_bind_MdDbCurve_SetTrueColor_1=b.asm.emscripten_bind_MdDbCurve_SetTrueColor_1).apply(null,arguments)},Mg=b._emscripten_bind_MdDbCurve_ColorIndex_0=function(){return(Mg=b._emscripten_bind_MdDbCurve_ColorIndex_0=b.asm.emscripten_bind_MdDbCurve_ColorIndex_0).apply(null,arguments)},Ng=b._emscripten_bind_MdDbCurve_SetColorIndex_1=function(){return(Ng=b._emscripten_bind_MdDbCurve_SetColorIndex_1=b.asm.emscripten_bind_MdDbCurve_SetColorIndex_1).apply(null,
  189. arguments)},Og=b._emscripten_bind_MdDbCurve_Layer_0=function(){return(Og=b._emscripten_bind_MdDbCurve_Layer_0=b.asm.emscripten_bind_MdDbCurve_Layer_0).apply(null,arguments)},Pg=b._emscripten_bind_MdDbCurve_SetLayer_1=function(){return(Pg=b._emscripten_bind_MdDbCurve_SetLayer_1=b.asm.emscripten_bind_MdDbCurve_SetLayer_1).apply(null,arguments)},Qg=b._emscripten_bind_MdDbCurve_LinetypeScale_0=function(){return(Qg=b._emscripten_bind_MdDbCurve_LinetypeScale_0=b.asm.emscripten_bind_MdDbCurve_LinetypeScale_0).apply(null,
  190. arguments)},Rg=b._emscripten_bind_MdDbCurve_SetLinetypeScale_1=function(){return(Rg=b._emscripten_bind_MdDbCurve_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbCurve_SetLinetypeScale_1).apply(null,arguments)},Sg=b._emscripten_bind_MdDbCurve_Visible_0=function(){return(Sg=b._emscripten_bind_MdDbCurve_Visible_0=b.asm.emscripten_bind_MdDbCurve_Visible_0).apply(null,arguments)},Tg=b._emscripten_bind_MdDbCurve_SetVisible_1=function(){return(Tg=b._emscripten_bind_MdDbCurve_SetVisible_1=b.asm.emscripten_bind_MdDbCurve_SetVisible_1).apply(null,
  191. arguments)},Ug=b._emscripten_bind_MdDbCurve_Lineweight_0=function(){return(Ug=b._emscripten_bind_MdDbCurve_Lineweight_0=b.asm.emscripten_bind_MdDbCurve_Lineweight_0).apply(null,arguments)},Vg=b._emscripten_bind_MdDbCurve_SetLineweight_1=function(){return(Vg=b._emscripten_bind_MdDbCurve_SetLineweight_1=b.asm.emscripten_bind_MdDbCurve_SetLineweight_1).apply(null,arguments)},Wg=b._emscripten_bind_MdDbCurve_TextStyle_0=function(){return(Wg=b._emscripten_bind_MdDbCurve_TextStyle_0=b.asm.emscripten_bind_MdDbCurve_TextStyle_0).apply(null,
  192. arguments)},Xg=b._emscripten_bind_MdDbCurve_SetTextStyle_1=function(){return(Xg=b._emscripten_bind_MdDbCurve_SetTextStyle_1=b.asm.emscripten_bind_MdDbCurve_SetTextStyle_1).apply(null,arguments)},Yg=b._emscripten_bind_MdDbCurve_Highlight_1=function(){return(Yg=b._emscripten_bind_MdDbCurve_Highlight_1=b.asm.emscripten_bind_MdDbCurve_Highlight_1).apply(null,arguments)},Zg=b._emscripten_bind_MdDbCurve_Move_2=function(){return(Zg=b._emscripten_bind_MdDbCurve_Move_2=b.asm.emscripten_bind_MdDbCurve_Move_2).apply(null,
  193. arguments)},$g=b._emscripten_bind_MdDbCurve_Rotate_2=function(){return($g=b._emscripten_bind_MdDbCurve_Rotate_2=b.asm.emscripten_bind_MdDbCurve_Rotate_2).apply(null,arguments)},ah=b._emscripten_bind_MdDbCurve_Mirror_2=function(){return(ah=b._emscripten_bind_MdDbCurve_Mirror_2=b.asm.emscripten_bind_MdDbCurve_Mirror_2).apply(null,arguments)},bh=b._emscripten_bind_MdDbCurve_ScaleEntity_2=function(){return(bh=b._emscripten_bind_MdDbCurve_ScaleEntity_2=b.asm.emscripten_bind_MdDbCurve_ScaleEntity_2).apply(null,
  194. arguments)},ch=b._emscripten_bind_MdDbCurve_TransformBy_1=function(){return(ch=b._emscripten_bind_MdDbCurve_TransformBy_1=b.asm.emscripten_bind_MdDbCurve_TransformBy_1).apply(null,arguments)},dh=b._emscripten_bind_MdDbCurve_GetBoundingBox_0=function(){return(dh=b._emscripten_bind_MdDbCurve_GetBoundingBox_0=b.asm.emscripten_bind_MdDbCurve_GetBoundingBox_0).apply(null,arguments)},eh=b._emscripten_bind_MdDbCurve_GetXData_1=function(){return(eh=b._emscripten_bind_MdDbCurve_GetXData_1=b.asm.emscripten_bind_MdDbCurve_GetXData_1).apply(null,
  195. arguments)},fh=b._emscripten_bind_MdDbCurve_SetXData_1=function(){return(fh=b._emscripten_bind_MdDbCurve_SetXData_1=b.asm.emscripten_bind_MdDbCurve_SetXData_1).apply(null,arguments)},gh=b._emscripten_bind_MdDbCurve_GetxDataString_2=function(){return(gh=b._emscripten_bind_MdDbCurve_GetxDataString_2=b.asm.emscripten_bind_MdDbCurve_GetxDataString_2).apply(null,arguments)},hh=b._emscripten_bind_MdDbCurve_SetxDataString_3=function(){return(hh=b._emscripten_bind_MdDbCurve_SetxDataString_3=b.asm.emscripten_bind_MdDbCurve_SetxDataString_3).apply(null,
  196. arguments)},ih=b._emscripten_bind_MdDbCurve_GetxDataDouble_2=function(){return(ih=b._emscripten_bind_MdDbCurve_GetxDataDouble_2=b.asm.emscripten_bind_MdDbCurve_GetxDataDouble_2).apply(null,arguments)},jh=b._emscripten_bind_MdDbCurve_SetxDataDouble_3=function(){return(jh=b._emscripten_bind_MdDbCurve_SetxDataDouble_3=b.asm.emscripten_bind_MdDbCurve_SetxDataDouble_3).apply(null,arguments)},kh=b._emscripten_bind_MdDbCurve_GetxDataLong_2=function(){return(kh=b._emscripten_bind_MdDbCurve_GetxDataLong_2=
  197. b.asm.emscripten_bind_MdDbCurve_GetxDataLong_2).apply(null,arguments)},lh=b._emscripten_bind_MdDbCurve_SetxDataLong_3=function(){return(lh=b._emscripten_bind_MdDbCurve_SetxDataLong_3=b.asm.emscripten_bind_MdDbCurve_SetxDataLong_3).apply(null,arguments)},mh=b._emscripten_bind_MdDbCurve_GetxDataPoint_2=function(){return(mh=b._emscripten_bind_MdDbCurve_GetxDataPoint_2=b.asm.emscripten_bind_MdDbCurve_GetxDataPoint_2).apply(null,arguments)},nh=b._emscripten_bind_MdDbCurve_SetxDataPoint_3=function(){return(nh=
  198. b._emscripten_bind_MdDbCurve_SetxDataPoint_3=b.asm.emscripten_bind_MdDbCurve_SetxDataPoint_3).apply(null,arguments)},oh=b._emscripten_bind_MdDbCurve_DeleteXData_1=function(){return(oh=b._emscripten_bind_MdDbCurve_DeleteXData_1=b.asm.emscripten_bind_MdDbCurve_DeleteXData_1).apply(null,arguments)},ph=b._emscripten_bind_MdDbCurve_GetAllAppName_0=function(){return(ph=b._emscripten_bind_MdDbCurve_GetAllAppName_0=b.asm.emscripten_bind_MdDbCurve_GetAllAppName_0).apply(null,arguments)},qh=b._emscripten_bind_MdDbCurve_LayerId_0=
  199. function(){return(qh=b._emscripten_bind_MdDbCurve_LayerId_0=b.asm.emscripten_bind_MdDbCurve_LayerId_0).apply(null,arguments)},rh=b._emscripten_bind_MdDbCurve_SetLayerId_1=function(){return(rh=b._emscripten_bind_MdDbCurve_SetLayerId_1=b.asm.emscripten_bind_MdDbCurve_SetLayerId_1).apply(null,arguments)},sh=b._emscripten_bind_MdDbCurve_LinetypeId_0=function(){return(sh=b._emscripten_bind_MdDbCurve_LinetypeId_0=b.asm.emscripten_bind_MdDbCurve_LinetypeId_0).apply(null,arguments)},th=b._emscripten_bind_MdDbCurve_SetLinetypeId_1=
  200. function(){return(th=b._emscripten_bind_MdDbCurve_SetLinetypeId_1=b.asm.emscripten_bind_MdDbCurve_SetLinetypeId_1).apply(null,arguments)},uh=b._emscripten_bind_MdDbCurve_Linetype_0=function(){return(uh=b._emscripten_bind_MdDbCurve_Linetype_0=b.asm.emscripten_bind_MdDbCurve_Linetype_0).apply(null,arguments)},vh=b._emscripten_bind_MdDbCurve_SetLinetype_1=function(){return(vh=b._emscripten_bind_MdDbCurve_SetLinetype_1=b.asm.emscripten_bind_MdDbCurve_SetLinetype_1).apply(null,arguments)},wh=b._emscripten_bind_MdDbCurve_TextStyleId_0=
  201. function(){return(wh=b._emscripten_bind_MdDbCurve_TextStyleId_0=b.asm.emscripten_bind_MdDbCurve_TextStyleId_0).apply(null,arguments)},xh=b._emscripten_bind_MdDbCurve_SetTextStyleId_1=function(){return(xh=b._emscripten_bind_MdDbCurve_SetTextStyleId_1=b.asm.emscripten_bind_MdDbCurve_SetTextStyleId_1).apply(null,arguments)},yh=b._emscripten_bind_MdDbCurve_IntersectWith_2=function(){return(yh=b._emscripten_bind_MdDbCurve_IntersectWith_2=b.asm.emscripten_bind_MdDbCurve_IntersectWith_2).apply(null,arguments)},
  202. zh=b._emscripten_bind_MdDbCurve_getArea_0=function(){return(zh=b._emscripten_bind_MdDbCurve_getArea_0=b.asm.emscripten_bind_MdDbCurve_getArea_0).apply(null,arguments)},Ah=b._emscripten_bind_MdDbCurve_disableUpdateDisplay_1=function(){return(Ah=b._emscripten_bind_MdDbCurve_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbCurve_disableUpdateDisplay_1).apply(null,arguments)},Bh=b._emscripten_bind_MdDbCurve_isPropertiesWindowCustom_0=function(){return(Bh=b._emscripten_bind_MdDbCurve_isPropertiesWindowCustom_0=
  203. b.asm.emscripten_bind_MdDbCurve_isPropertiesWindowCustom_0).apply(null,arguments)},Ch=b._emscripten_bind_MdDbCurve_setPropertiesWindowCustom_1=function(){return(Ch=b._emscripten_bind_MdDbCurve_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbCurve_setPropertiesWindowCustom_1).apply(null,arguments)},Dh=b._emscripten_bind_MdDbCurve_updateDisplay_0=function(){return(Dh=b._emscripten_bind_MdDbCurve_updateDisplay_0=b.asm.emscripten_bind_MdDbCurve_updateDisplay_0).apply(null,arguments)},Eh=b._emscripten_bind_MdDbCurve_DrawOrder_0=
  204. function(){return(Eh=b._emscripten_bind_MdDbCurve_DrawOrder_0=b.asm.emscripten_bind_MdDbCurve_DrawOrder_0).apply(null,arguments)},Fh=b._emscripten_bind_MdDbCurve_SetDrawOrder_1=function(){return(Fh=b._emscripten_bind_MdDbCurve_SetDrawOrder_1=b.asm.emscripten_bind_MdDbCurve_SetDrawOrder_1).apply(null,arguments)},Gh=b._emscripten_bind_MdDbCurve_normal_0=function(){return(Gh=b._emscripten_bind_MdDbCurve_normal_0=b.asm.emscripten_bind_MdDbCurve_normal_0).apply(null,arguments)},Hh=b._emscripten_bind_MdDbCurve_setNormal_1=
  205. function(){return(Hh=b._emscripten_bind_MdDbCurve_setNormal_1=b.asm.emscripten_bind_MdDbCurve_setNormal_1).apply(null,arguments)},Ih=b._emscripten_bind_MdDbCurve_GetObjectID_0=function(){return(Ih=b._emscripten_bind_MdDbCurve_GetObjectID_0=b.asm.emscripten_bind_MdDbCurve_GetObjectID_0).apply(null,arguments)},Jh=b._emscripten_bind_MdDbCurve_Erase_0=function(){return(Jh=b._emscripten_bind_MdDbCurve_Erase_0=b.asm.emscripten_bind_MdDbCurve_Erase_0).apply(null,arguments)},Kh=b._emscripten_bind_MdDbCurve_isErased_0=
  206. function(){return(Kh=b._emscripten_bind_MdDbCurve_isErased_0=b.asm.emscripten_bind_MdDbCurve_isErased_0).apply(null,arguments)},Lh=b._emscripten_bind_MdDbCurve_unErase_0=function(){return(Lh=b._emscripten_bind_MdDbCurve_unErase_0=b.asm.emscripten_bind_MdDbCurve_unErase_0).apply(null,arguments)},Mh=b._emscripten_bind_MdDbCurve_ConnectionTempObject_1=function(){return(Mh=b._emscripten_bind_MdDbCurve_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbCurve_ConnectionTempObject_1).apply(null,arguments)},
  207. Nh=b._emscripten_bind_MdDbCurve_GetExtensionDictionary_0=function(){return(Nh=b._emscripten_bind_MdDbCurve_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbCurve_GetExtensionDictionary_0).apply(null,arguments)},Oh=b._emscripten_bind_MdDbCurve_CreateExtensionDictionary_0=function(){return(Oh=b._emscripten_bind_MdDbCurve_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbCurve_CreateExtensionDictionary_0).apply(null,arguments)},Ph=b._emscripten_bind_MdDbCurve_IsHaveExtensionDictionary_0=function(){return(Ph=
  208. b._emscripten_bind_MdDbCurve_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbCurve_IsHaveExtensionDictionary_0).apply(null,arguments)},Qh=b._emscripten_bind_MdDbCurve_Clone_0=function(){return(Qh=b._emscripten_bind_MdDbCurve_Clone_0=b.asm.emscripten_bind_MdDbCurve_Clone_0).apply(null,arguments)},Rh=b._emscripten_bind_MdDbCurve_GetHandle_0=function(){return(Rh=b._emscripten_bind_MdDbCurve_GetHandle_0=b.asm.emscripten_bind_MdDbCurve_GetHandle_0).apply(null,arguments)},Sh=b._emscripten_bind_MdDbCurve_GetDatabase_0=
  209. function(){return(Sh=b._emscripten_bind_MdDbCurve_GetDatabase_0=b.asm.emscripten_bind_MdDbCurve_GetDatabase_0).apply(null,arguments)},Th=b._emscripten_bind_MdDbCurve_GetDatabaseIndexId_0=function(){return(Th=b._emscripten_bind_MdDbCurve_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbCurve_GetDatabaseIndexId_0).apply(null,arguments)},Uh=b._emscripten_bind_MdDbCurve_GetOwnerID_0=function(){return(Uh=b._emscripten_bind_MdDbCurve_GetOwnerID_0=b.asm.emscripten_bind_MdDbCurve_GetOwnerID_0).apply(null,arguments)},
  210. Vh=b._emscripten_bind_MdDbCurve_assertObjectModification_1=function(){return(Vh=b._emscripten_bind_MdDbCurve_assertObjectModification_1=b.asm.emscripten_bind_MdDbCurve_assertObjectModification_1).apply(null,arguments)},Wh=b._emscripten_bind_MdDbCurve_moveGripPointsAt_4=function(){return(Wh=b._emscripten_bind_MdDbCurve_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbCurve_moveGripPointsAt_4).apply(null,arguments)},Xh=b._emscripten_bind_MdDbCurve_getGripPoints_0=function(){return(Xh=b._emscripten_bind_MdDbCurve_getGripPoints_0=
  211. b.asm.emscripten_bind_MdDbCurve_getGripPoints_0).apply(null,arguments)},Yh=b._emscripten_bind_MdDbCurve_getObjectName_0=function(){return(Yh=b._emscripten_bind_MdDbCurve_getObjectName_0=b.asm.emscripten_bind_MdDbCurve_getObjectName_0).apply(null,arguments)},Zh=b._emscripten_bind_MdDbCurve_getDxf0_0=function(){return(Zh=b._emscripten_bind_MdDbCurve_getDxf0_0=b.asm.emscripten_bind_MdDbCurve_getDxf0_0).apply(null,arguments)},$h=b._emscripten_bind_MdDbCurve_getCustomEntityTypeName_0=function(){return($h=
  212. b._emscripten_bind_MdDbCurve_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbCurve_getCustomEntityTypeName_0).apply(null,arguments)},ai=b._emscripten_bind_MdDbCurve_getCustomEntityid_0=function(){return(ai=b._emscripten_bind_MdDbCurve_getCustomEntityid_0=b.asm.emscripten_bind_MdDbCurve_getCustomEntityid_0).apply(null,arguments)},bi=b._emscripten_bind_MdDbCurve_getCustomEntityTempid_0=function(){return(bi=b._emscripten_bind_MdDbCurve_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbCurve_getCustomEntityTempid_0).apply(null,
  213. arguments)},ci=b._emscripten_bind_MdDbCurve_setCustomEntityTempid_1=function(){return(ci=b._emscripten_bind_MdDbCurve_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbCurve_setCustomEntityTempid_1).apply(null,arguments)},di=b._emscripten_bind_MdDbCurve_getJson_0=function(){return(di=b._emscripten_bind_MdDbCurve_getJson_0=b.asm.emscripten_bind_MdDbCurve_getJson_0).apply(null,arguments)},ei=b._emscripten_bind_MdDbCurve_setJson_1=function(){return(ei=b._emscripten_bind_MdDbCurve_setJson_1=b.asm.emscripten_bind_MdDbCurve_setJson_1).apply(null,
  214. arguments)},fi=b._emscripten_bind_MdDbCurve_isKindOf_1=function(){return(fi=b._emscripten_bind_MdDbCurve_isKindOf_1=b.asm.emscripten_bind_MdDbCurve_isKindOf_1).apply(null,arguments)},gi=b._emscripten_bind_MdDbCurve_isNull_0=function(){return(gi=b._emscripten_bind_MdDbCurve_isNull_0=b.asm.emscripten_bind_MdDbCurve_isNull_0).apply(null,arguments)},hi=b._emscripten_bind_MdDbCurve___destroy___0=function(){return(hi=b._emscripten_bind_MdDbCurve___destroy___0=b.asm.emscripten_bind_MdDbCurve___destroy___0).apply(null,
  215. arguments)},ii=b._emscripten_bind_MdDbText_MdDbText_0=function(){return(ii=b._emscripten_bind_MdDbText_MdDbText_0=b.asm.emscripten_bind_MdDbText_MdDbText_0).apply(null,arguments)},ji=b._emscripten_bind_MdDbText_position_0=function(){return(ji=b._emscripten_bind_MdDbText_position_0=b.asm.emscripten_bind_MdDbText_position_0).apply(null,arguments)},ki=b._emscripten_bind_MdDbText_setPosition_1=function(){return(ki=b._emscripten_bind_MdDbText_setPosition_1=b.asm.emscripten_bind_MdDbText_setPosition_1).apply(null,
  216. arguments)},li=b._emscripten_bind_MdDbText_alignmentPoint_0=function(){return(li=b._emscripten_bind_MdDbText_alignmentPoint_0=b.asm.emscripten_bind_MdDbText_alignmentPoint_0).apply(null,arguments)},mi=b._emscripten_bind_MdDbText_setAlignmentPoint_1=function(){return(mi=b._emscripten_bind_MdDbText_setAlignmentPoint_1=b.asm.emscripten_bind_MdDbText_setAlignmentPoint_1).apply(null,arguments)},ni=b._emscripten_bind_MdDbText_oblique_0=function(){return(ni=b._emscripten_bind_MdDbText_oblique_0=b.asm.emscripten_bind_MdDbText_oblique_0).apply(null,
  217. arguments)},oi=b._emscripten_bind_MdDbText_setOblique_1=function(){return(oi=b._emscripten_bind_MdDbText_setOblique_1=b.asm.emscripten_bind_MdDbText_setOblique_1).apply(null,arguments)},pi=b._emscripten_bind_MdDbText_rotation_0=function(){return(pi=b._emscripten_bind_MdDbText_rotation_0=b.asm.emscripten_bind_MdDbText_rotation_0).apply(null,arguments)},qi=b._emscripten_bind_MdDbText_setRotation_1=function(){return(qi=b._emscripten_bind_MdDbText_setRotation_1=b.asm.emscripten_bind_MdDbText_setRotation_1).apply(null,
  218. arguments)},ri=b._emscripten_bind_MdDbText_height_0=function(){return(ri=b._emscripten_bind_MdDbText_height_0=b.asm.emscripten_bind_MdDbText_height_0).apply(null,arguments)},si=b._emscripten_bind_MdDbText_setHeight_1=function(){return(si=b._emscripten_bind_MdDbText_setHeight_1=b.asm.emscripten_bind_MdDbText_setHeight_1).apply(null,arguments)},ti=b._emscripten_bind_MdDbText_widthFactor_0=function(){return(ti=b._emscripten_bind_MdDbText_widthFactor_0=b.asm.emscripten_bind_MdDbText_widthFactor_0).apply(null,
  219. arguments)},ui=b._emscripten_bind_MdDbText_setWidthFactor_1=function(){return(ui=b._emscripten_bind_MdDbText_setWidthFactor_1=b.asm.emscripten_bind_MdDbText_setWidthFactor_1).apply(null,arguments)},vi=b._emscripten_bind_MdDbText_textString_0=function(){return(vi=b._emscripten_bind_MdDbText_textString_0=b.asm.emscripten_bind_MdDbText_textString_0).apply(null,arguments)},wi=b._emscripten_bind_MdDbText_setTextString_1=function(){return(wi=b._emscripten_bind_MdDbText_setTextString_1=b.asm.emscripten_bind_MdDbText_setTextString_1).apply(null,
  220. arguments)},xi=b._emscripten_bind_MdDbText_horizontalMode_0=function(){return(xi=b._emscripten_bind_MdDbText_horizontalMode_0=b.asm.emscripten_bind_MdDbText_horizontalMode_0).apply(null,arguments)},yi=b._emscripten_bind_MdDbText_setHorizontalMode_1=function(){return(yi=b._emscripten_bind_MdDbText_setHorizontalMode_1=b.asm.emscripten_bind_MdDbText_setHorizontalMode_1).apply(null,arguments)},zi=b._emscripten_bind_MdDbText_verticalMode_0=function(){return(zi=b._emscripten_bind_MdDbText_verticalMode_0=
  221. b.asm.emscripten_bind_MdDbText_verticalMode_0).apply(null,arguments)},Ai=b._emscripten_bind_MdDbText_setVerticalMode_1=function(){return(Ai=b._emscripten_bind_MdDbText_setVerticalMode_1=b.asm.emscripten_bind_MdDbText_setVerticalMode_1).apply(null,arguments)},Bi=b._emscripten_bind_MdDbText_explode_0=function(){return(Bi=b._emscripten_bind_MdDbText_explode_0=b.asm.emscripten_bind_MdDbText_explode_0).apply(null,arguments)},Ci=b._emscripten_bind_MdDbText_TrueColor_0=function(){return(Ci=b._emscripten_bind_MdDbText_TrueColor_0=
  222. b.asm.emscripten_bind_MdDbText_TrueColor_0).apply(null,arguments)},Di=b._emscripten_bind_MdDbText_SetTrueColor_1=function(){return(Di=b._emscripten_bind_MdDbText_SetTrueColor_1=b.asm.emscripten_bind_MdDbText_SetTrueColor_1).apply(null,arguments)},Ei=b._emscripten_bind_MdDbText_ColorIndex_0=function(){return(Ei=b._emscripten_bind_MdDbText_ColorIndex_0=b.asm.emscripten_bind_MdDbText_ColorIndex_0).apply(null,arguments)},Fi=b._emscripten_bind_MdDbText_SetColorIndex_1=function(){return(Fi=b._emscripten_bind_MdDbText_SetColorIndex_1=
  223. b.asm.emscripten_bind_MdDbText_SetColorIndex_1).apply(null,arguments)},Gi=b._emscripten_bind_MdDbText_Layer_0=function(){return(Gi=b._emscripten_bind_MdDbText_Layer_0=b.asm.emscripten_bind_MdDbText_Layer_0).apply(null,arguments)},Hi=b._emscripten_bind_MdDbText_SetLayer_1=function(){return(Hi=b._emscripten_bind_MdDbText_SetLayer_1=b.asm.emscripten_bind_MdDbText_SetLayer_1).apply(null,arguments)},Ii=b._emscripten_bind_MdDbText_LinetypeScale_0=function(){return(Ii=b._emscripten_bind_MdDbText_LinetypeScale_0=
  224. b.asm.emscripten_bind_MdDbText_LinetypeScale_0).apply(null,arguments)},Ji=b._emscripten_bind_MdDbText_SetLinetypeScale_1=function(){return(Ji=b._emscripten_bind_MdDbText_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbText_SetLinetypeScale_1).apply(null,arguments)},Ki=b._emscripten_bind_MdDbText_Visible_0=function(){return(Ki=b._emscripten_bind_MdDbText_Visible_0=b.asm.emscripten_bind_MdDbText_Visible_0).apply(null,arguments)},Li=b._emscripten_bind_MdDbText_SetVisible_1=function(){return(Li=b._emscripten_bind_MdDbText_SetVisible_1=
  225. b.asm.emscripten_bind_MdDbText_SetVisible_1).apply(null,arguments)},Mi=b._emscripten_bind_MdDbText_Lineweight_0=function(){return(Mi=b._emscripten_bind_MdDbText_Lineweight_0=b.asm.emscripten_bind_MdDbText_Lineweight_0).apply(null,arguments)},Ni=b._emscripten_bind_MdDbText_SetLineweight_1=function(){return(Ni=b._emscripten_bind_MdDbText_SetLineweight_1=b.asm.emscripten_bind_MdDbText_SetLineweight_1).apply(null,arguments)},Oi=b._emscripten_bind_MdDbText_TextStyle_0=function(){return(Oi=b._emscripten_bind_MdDbText_TextStyle_0=
  226. b.asm.emscripten_bind_MdDbText_TextStyle_0).apply(null,arguments)},Pi=b._emscripten_bind_MdDbText_SetTextStyle_1=function(){return(Pi=b._emscripten_bind_MdDbText_SetTextStyle_1=b.asm.emscripten_bind_MdDbText_SetTextStyle_1).apply(null,arguments)},Qi=b._emscripten_bind_MdDbText_Highlight_1=function(){return(Qi=b._emscripten_bind_MdDbText_Highlight_1=b.asm.emscripten_bind_MdDbText_Highlight_1).apply(null,arguments)},Ri=b._emscripten_bind_MdDbText_Move_2=function(){return(Ri=b._emscripten_bind_MdDbText_Move_2=
  227. b.asm.emscripten_bind_MdDbText_Move_2).apply(null,arguments)},Si=b._emscripten_bind_MdDbText_Rotate_2=function(){return(Si=b._emscripten_bind_MdDbText_Rotate_2=b.asm.emscripten_bind_MdDbText_Rotate_2).apply(null,arguments)},Ti=b._emscripten_bind_MdDbText_Mirror_2=function(){return(Ti=b._emscripten_bind_MdDbText_Mirror_2=b.asm.emscripten_bind_MdDbText_Mirror_2).apply(null,arguments)},Ui=b._emscripten_bind_MdDbText_ScaleEntity_2=function(){return(Ui=b._emscripten_bind_MdDbText_ScaleEntity_2=b.asm.emscripten_bind_MdDbText_ScaleEntity_2).apply(null,
  228. arguments)},Vi=b._emscripten_bind_MdDbText_TransformBy_1=function(){return(Vi=b._emscripten_bind_MdDbText_TransformBy_1=b.asm.emscripten_bind_MdDbText_TransformBy_1).apply(null,arguments)},Wi=b._emscripten_bind_MdDbText_GetBoundingBox_0=function(){return(Wi=b._emscripten_bind_MdDbText_GetBoundingBox_0=b.asm.emscripten_bind_MdDbText_GetBoundingBox_0).apply(null,arguments)},Xi=b._emscripten_bind_MdDbText_GetXData_1=function(){return(Xi=b._emscripten_bind_MdDbText_GetXData_1=b.asm.emscripten_bind_MdDbText_GetXData_1).apply(null,
  229. arguments)},Yi=b._emscripten_bind_MdDbText_SetXData_1=function(){return(Yi=b._emscripten_bind_MdDbText_SetXData_1=b.asm.emscripten_bind_MdDbText_SetXData_1).apply(null,arguments)},Zi=b._emscripten_bind_MdDbText_GetxDataString_2=function(){return(Zi=b._emscripten_bind_MdDbText_GetxDataString_2=b.asm.emscripten_bind_MdDbText_GetxDataString_2).apply(null,arguments)},$i=b._emscripten_bind_MdDbText_SetxDataString_3=function(){return($i=b._emscripten_bind_MdDbText_SetxDataString_3=b.asm.emscripten_bind_MdDbText_SetxDataString_3).apply(null,
  230. arguments)},aj=b._emscripten_bind_MdDbText_GetxDataDouble_2=function(){return(aj=b._emscripten_bind_MdDbText_GetxDataDouble_2=b.asm.emscripten_bind_MdDbText_GetxDataDouble_2).apply(null,arguments)},bj=b._emscripten_bind_MdDbText_SetxDataDouble_3=function(){return(bj=b._emscripten_bind_MdDbText_SetxDataDouble_3=b.asm.emscripten_bind_MdDbText_SetxDataDouble_3).apply(null,arguments)},cj=b._emscripten_bind_MdDbText_GetxDataLong_2=function(){return(cj=b._emscripten_bind_MdDbText_GetxDataLong_2=b.asm.emscripten_bind_MdDbText_GetxDataLong_2).apply(null,
  231. arguments)},dj=b._emscripten_bind_MdDbText_SetxDataLong_3=function(){return(dj=b._emscripten_bind_MdDbText_SetxDataLong_3=b.asm.emscripten_bind_MdDbText_SetxDataLong_3).apply(null,arguments)},ej=b._emscripten_bind_MdDbText_GetxDataPoint_2=function(){return(ej=b._emscripten_bind_MdDbText_GetxDataPoint_2=b.asm.emscripten_bind_MdDbText_GetxDataPoint_2).apply(null,arguments)},fj=b._emscripten_bind_MdDbText_SetxDataPoint_3=function(){return(fj=b._emscripten_bind_MdDbText_SetxDataPoint_3=b.asm.emscripten_bind_MdDbText_SetxDataPoint_3).apply(null,
  232. arguments)},gj=b._emscripten_bind_MdDbText_DeleteXData_1=function(){return(gj=b._emscripten_bind_MdDbText_DeleteXData_1=b.asm.emscripten_bind_MdDbText_DeleteXData_1).apply(null,arguments)},hj=b._emscripten_bind_MdDbText_GetAllAppName_0=function(){return(hj=b._emscripten_bind_MdDbText_GetAllAppName_0=b.asm.emscripten_bind_MdDbText_GetAllAppName_0).apply(null,arguments)},ij=b._emscripten_bind_MdDbText_LayerId_0=function(){return(ij=b._emscripten_bind_MdDbText_LayerId_0=b.asm.emscripten_bind_MdDbText_LayerId_0).apply(null,
  233. arguments)},jj=b._emscripten_bind_MdDbText_SetLayerId_1=function(){return(jj=b._emscripten_bind_MdDbText_SetLayerId_1=b.asm.emscripten_bind_MdDbText_SetLayerId_1).apply(null,arguments)},kj=b._emscripten_bind_MdDbText_LinetypeId_0=function(){return(kj=b._emscripten_bind_MdDbText_LinetypeId_0=b.asm.emscripten_bind_MdDbText_LinetypeId_0).apply(null,arguments)},lj=b._emscripten_bind_MdDbText_SetLinetypeId_1=function(){return(lj=b._emscripten_bind_MdDbText_SetLinetypeId_1=b.asm.emscripten_bind_MdDbText_SetLinetypeId_1).apply(null,
  234. arguments)},mj=b._emscripten_bind_MdDbText_Linetype_0=function(){return(mj=b._emscripten_bind_MdDbText_Linetype_0=b.asm.emscripten_bind_MdDbText_Linetype_0).apply(null,arguments)},nj=b._emscripten_bind_MdDbText_SetLinetype_1=function(){return(nj=b._emscripten_bind_MdDbText_SetLinetype_1=b.asm.emscripten_bind_MdDbText_SetLinetype_1).apply(null,arguments)},oj=b._emscripten_bind_MdDbText_TextStyleId_0=function(){return(oj=b._emscripten_bind_MdDbText_TextStyleId_0=b.asm.emscripten_bind_MdDbText_TextStyleId_0).apply(null,
  235. arguments)},pj=b._emscripten_bind_MdDbText_SetTextStyleId_1=function(){return(pj=b._emscripten_bind_MdDbText_SetTextStyleId_1=b.asm.emscripten_bind_MdDbText_SetTextStyleId_1).apply(null,arguments)},qj=b._emscripten_bind_MdDbText_IntersectWith_2=function(){return(qj=b._emscripten_bind_MdDbText_IntersectWith_2=b.asm.emscripten_bind_MdDbText_IntersectWith_2).apply(null,arguments)},rj=b._emscripten_bind_MdDbText_getArea_0=function(){return(rj=b._emscripten_bind_MdDbText_getArea_0=b.asm.emscripten_bind_MdDbText_getArea_0).apply(null,
  236. arguments)},sj=b._emscripten_bind_MdDbText_disableUpdateDisplay_1=function(){return(sj=b._emscripten_bind_MdDbText_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbText_disableUpdateDisplay_1).apply(null,arguments)},tj=b._emscripten_bind_MdDbText_isPropertiesWindowCustom_0=function(){return(tj=b._emscripten_bind_MdDbText_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbText_isPropertiesWindowCustom_0).apply(null,arguments)},uj=b._emscripten_bind_MdDbText_setPropertiesWindowCustom_1=function(){return(uj=
  237. b._emscripten_bind_MdDbText_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbText_setPropertiesWindowCustom_1).apply(null,arguments)},vj=b._emscripten_bind_MdDbText_updateDisplay_0=function(){return(vj=b._emscripten_bind_MdDbText_updateDisplay_0=b.asm.emscripten_bind_MdDbText_updateDisplay_0).apply(null,arguments)},wj=b._emscripten_bind_MdDbText_DrawOrder_0=function(){return(wj=b._emscripten_bind_MdDbText_DrawOrder_0=b.asm.emscripten_bind_MdDbText_DrawOrder_0).apply(null,arguments)},xj=b._emscripten_bind_MdDbText_SetDrawOrder_1=
  238. function(){return(xj=b._emscripten_bind_MdDbText_SetDrawOrder_1=b.asm.emscripten_bind_MdDbText_SetDrawOrder_1).apply(null,arguments)},yj=b._emscripten_bind_MdDbText_normal_0=function(){return(yj=b._emscripten_bind_MdDbText_normal_0=b.asm.emscripten_bind_MdDbText_normal_0).apply(null,arguments)},zj=b._emscripten_bind_MdDbText_setNormal_1=function(){return(zj=b._emscripten_bind_MdDbText_setNormal_1=b.asm.emscripten_bind_MdDbText_setNormal_1).apply(null,arguments)},Aj=b._emscripten_bind_MdDbText_GetObjectID_0=
  239. function(){return(Aj=b._emscripten_bind_MdDbText_GetObjectID_0=b.asm.emscripten_bind_MdDbText_GetObjectID_0).apply(null,arguments)},Bj=b._emscripten_bind_MdDbText_Erase_0=function(){return(Bj=b._emscripten_bind_MdDbText_Erase_0=b.asm.emscripten_bind_MdDbText_Erase_0).apply(null,arguments)},Cj=b._emscripten_bind_MdDbText_isErased_0=function(){return(Cj=b._emscripten_bind_MdDbText_isErased_0=b.asm.emscripten_bind_MdDbText_isErased_0).apply(null,arguments)},Dj=b._emscripten_bind_MdDbText_unErase_0=function(){return(Dj=
  240. b._emscripten_bind_MdDbText_unErase_0=b.asm.emscripten_bind_MdDbText_unErase_0).apply(null,arguments)},Ej=b._emscripten_bind_MdDbText_ConnectionTempObject_1=function(){return(Ej=b._emscripten_bind_MdDbText_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbText_ConnectionTempObject_1).apply(null,arguments)},Fj=b._emscripten_bind_MdDbText_GetExtensionDictionary_0=function(){return(Fj=b._emscripten_bind_MdDbText_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbText_GetExtensionDictionary_0).apply(null,
  241. arguments)},Gj=b._emscripten_bind_MdDbText_CreateExtensionDictionary_0=function(){return(Gj=b._emscripten_bind_MdDbText_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbText_CreateExtensionDictionary_0).apply(null,arguments)},Hj=b._emscripten_bind_MdDbText_IsHaveExtensionDictionary_0=function(){return(Hj=b._emscripten_bind_MdDbText_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbText_IsHaveExtensionDictionary_0).apply(null,arguments)},Ij=b._emscripten_bind_MdDbText_Clone_0=function(){return(Ij=
  242. b._emscripten_bind_MdDbText_Clone_0=b.asm.emscripten_bind_MdDbText_Clone_0).apply(null,arguments)},Jj=b._emscripten_bind_MdDbText_GetHandle_0=function(){return(Jj=b._emscripten_bind_MdDbText_GetHandle_0=b.asm.emscripten_bind_MdDbText_GetHandle_0).apply(null,arguments)},Kj=b._emscripten_bind_MdDbText_GetDatabase_0=function(){return(Kj=b._emscripten_bind_MdDbText_GetDatabase_0=b.asm.emscripten_bind_MdDbText_GetDatabase_0).apply(null,arguments)},Lj=b._emscripten_bind_MdDbText_GetDatabaseIndexId_0=function(){return(Lj=
  243. b._emscripten_bind_MdDbText_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbText_GetDatabaseIndexId_0).apply(null,arguments)},Mj=b._emscripten_bind_MdDbText_GetOwnerID_0=function(){return(Mj=b._emscripten_bind_MdDbText_GetOwnerID_0=b.asm.emscripten_bind_MdDbText_GetOwnerID_0).apply(null,arguments)},Nj=b._emscripten_bind_MdDbText_assertObjectModification_1=function(){return(Nj=b._emscripten_bind_MdDbText_assertObjectModification_1=b.asm.emscripten_bind_MdDbText_assertObjectModification_1).apply(null,
  244. arguments)},Oj=b._emscripten_bind_MdDbText_moveGripPointsAt_4=function(){return(Oj=b._emscripten_bind_MdDbText_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbText_moveGripPointsAt_4).apply(null,arguments)},Pj=b._emscripten_bind_MdDbText_getGripPoints_0=function(){return(Pj=b._emscripten_bind_MdDbText_getGripPoints_0=b.asm.emscripten_bind_MdDbText_getGripPoints_0).apply(null,arguments)},Qj=b._emscripten_bind_MdDbText_getObjectName_0=function(){return(Qj=b._emscripten_bind_MdDbText_getObjectName_0=b.asm.emscripten_bind_MdDbText_getObjectName_0).apply(null,
  245. arguments)},Rj=b._emscripten_bind_MdDbText_getDxf0_0=function(){return(Rj=b._emscripten_bind_MdDbText_getDxf0_0=b.asm.emscripten_bind_MdDbText_getDxf0_0).apply(null,arguments)},Sj=b._emscripten_bind_MdDbText_getCustomEntityTypeName_0=function(){return(Sj=b._emscripten_bind_MdDbText_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbText_getCustomEntityTypeName_0).apply(null,arguments)},Tj=b._emscripten_bind_MdDbText_getCustomEntityid_0=function(){return(Tj=b._emscripten_bind_MdDbText_getCustomEntityid_0=
  246. b.asm.emscripten_bind_MdDbText_getCustomEntityid_0).apply(null,arguments)},Uj=b._emscripten_bind_MdDbText_getCustomEntityTempid_0=function(){return(Uj=b._emscripten_bind_MdDbText_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbText_getCustomEntityTempid_0).apply(null,arguments)},Vj=b._emscripten_bind_MdDbText_setCustomEntityTempid_1=function(){return(Vj=b._emscripten_bind_MdDbText_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbText_setCustomEntityTempid_1).apply(null,arguments)},Wj=b._emscripten_bind_MdDbText_getJson_0=
  247. function(){return(Wj=b._emscripten_bind_MdDbText_getJson_0=b.asm.emscripten_bind_MdDbText_getJson_0).apply(null,arguments)},Xj=b._emscripten_bind_MdDbText_setJson_1=function(){return(Xj=b._emscripten_bind_MdDbText_setJson_1=b.asm.emscripten_bind_MdDbText_setJson_1).apply(null,arguments)},Yj=b._emscripten_bind_MdDbText_isKindOf_1=function(){return(Yj=b._emscripten_bind_MdDbText_isKindOf_1=b.asm.emscripten_bind_MdDbText_isKindOf_1).apply(null,arguments)},Zj=b._emscripten_bind_MdDbText_isNull_0=function(){return(Zj=
  248. b._emscripten_bind_MdDbText_isNull_0=b.asm.emscripten_bind_MdDbText_isNull_0).apply(null,arguments)},ak=b._emscripten_bind_MdDbText___destroy___0=function(){return(ak=b._emscripten_bind_MdDbText___destroy___0=b.asm.emscripten_bind_MdDbText___destroy___0).apply(null,arguments)},bk=b._emscripten_bind_MdDbDimension_MdDbDimension_0=function(){return(bk=b._emscripten_bind_MdDbDimension_MdDbDimension_0=b.asm.emscripten_bind_MdDbDimension_MdDbDimension_0).apply(null,arguments)},ck=b._emscripten_bind_MdDbDimension_textPosition_0=
  249. function(){return(ck=b._emscripten_bind_MdDbDimension_textPosition_0=b.asm.emscripten_bind_MdDbDimension_textPosition_0).apply(null,arguments)},dk=b._emscripten_bind_MdDbDimension_setTextPosition_1=function(){return(dk=b._emscripten_bind_MdDbDimension_setTextPosition_1=b.asm.emscripten_bind_MdDbDimension_setTextPosition_1).apply(null,arguments)},ek=b._emscripten_bind_MdDbDimension_isUsingDefaultTextPosition_0=function(){return(ek=b._emscripten_bind_MdDbDimension_isUsingDefaultTextPosition_0=b.asm.emscripten_bind_MdDbDimension_isUsingDefaultTextPosition_0).apply(null,
  250. arguments)},fk=b._emscripten_bind_MdDbDimension_useSetTextPosition_0=function(){return(fk=b._emscripten_bind_MdDbDimension_useSetTextPosition_0=b.asm.emscripten_bind_MdDbDimension_useSetTextPosition_0).apply(null,arguments)},gk=b._emscripten_bind_MdDbDimension_useDefaultTextPosition_0=function(){return(gk=b._emscripten_bind_MdDbDimension_useDefaultTextPosition_0=b.asm.emscripten_bind_MdDbDimension_useDefaultTextPosition_0).apply(null,arguments)},hk=b._emscripten_bind_MdDbDimension_elevation_0=function(){return(hk=
  251. b._emscripten_bind_MdDbDimension_elevation_0=b.asm.emscripten_bind_MdDbDimension_elevation_0).apply(null,arguments)},ik=b._emscripten_bind_MdDbDimension_setElevation_1=function(){return(ik=b._emscripten_bind_MdDbDimension_setElevation_1=b.asm.emscripten_bind_MdDbDimension_setElevation_1).apply(null,arguments)},jk=b._emscripten_bind_MdDbDimension_dimensionText_0=function(){return(jk=b._emscripten_bind_MdDbDimension_dimensionText_0=b.asm.emscripten_bind_MdDbDimension_dimensionText_0).apply(null,arguments)},
  252. kk=b._emscripten_bind_MdDbDimension_setDimensionText_1=function(){return(kk=b._emscripten_bind_MdDbDimension_setDimensionText_1=b.asm.emscripten_bind_MdDbDimension_setDimensionText_1).apply(null,arguments)},lk=b._emscripten_bind_MdDbDimension_textRotation_0=function(){return(lk=b._emscripten_bind_MdDbDimension_textRotation_0=b.asm.emscripten_bind_MdDbDimension_textRotation_0).apply(null,arguments)},mk=b._emscripten_bind_MdDbDimension_setTextRotation_1=function(){return(mk=b._emscripten_bind_MdDbDimension_setTextRotation_1=
  253. b.asm.emscripten_bind_MdDbDimension_setTextRotation_1).apply(null,arguments)},nk=b._emscripten_bind_MdDbDimension_dimensionStyle_0=function(){return(nk=b._emscripten_bind_MdDbDimension_dimensionStyle_0=b.asm.emscripten_bind_MdDbDimension_dimensionStyle_0).apply(null,arguments)},ok=b._emscripten_bind_MdDbDimension_setDimensionStyle_1=function(){return(ok=b._emscripten_bind_MdDbDimension_setDimensionStyle_1=b.asm.emscripten_bind_MdDbDimension_setDimensionStyle_1).apply(null,arguments)},pk=b._emscripten_bind_MdDbDimension_textAttachment_0=
  254. function(){return(pk=b._emscripten_bind_MdDbDimension_textAttachment_0=b.asm.emscripten_bind_MdDbDimension_textAttachment_0).apply(null,arguments)},qk=b._emscripten_bind_MdDbDimension_setTextAttachment_1=function(){return(qk=b._emscripten_bind_MdDbDimension_setTextAttachment_1=b.asm.emscripten_bind_MdDbDimension_setTextAttachment_1).apply(null,arguments)},rk=b._emscripten_bind_MdDbDimension_horizontalRotation_0=function(){return(rk=b._emscripten_bind_MdDbDimension_horizontalRotation_0=b.asm.emscripten_bind_MdDbDimension_horizontalRotation_0).apply(null,
  255. arguments)},sk=b._emscripten_bind_MdDbDimension_setHorizontalRotation_1=function(){return(sk=b._emscripten_bind_MdDbDimension_setHorizontalRotation_1=b.asm.emscripten_bind_MdDbDimension_setHorizontalRotation_1).apply(null,arguments)},tk=b._emscripten_bind_MdDbDimension_recomputeDimBlock_1=function(){return(tk=b._emscripten_bind_MdDbDimension_recomputeDimBlock_1=b.asm.emscripten_bind_MdDbDimension_recomputeDimBlock_1).apply(null,arguments)},uk=b._emscripten_bind_MdDbDimension_GetDimVarInt_1=function(){return(uk=
  256. b._emscripten_bind_MdDbDimension_GetDimVarInt_1=b.asm.emscripten_bind_MdDbDimension_GetDimVarInt_1).apply(null,arguments)},vk=b._emscripten_bind_MdDbDimension_SetDimVarInt_2=function(){return(vk=b._emscripten_bind_MdDbDimension_SetDimVarInt_2=b.asm.emscripten_bind_MdDbDimension_SetDimVarInt_2).apply(null,arguments)},wk=b._emscripten_bind_MdDbDimension_GetDimVarDouble_1=function(){return(wk=b._emscripten_bind_MdDbDimension_GetDimVarDouble_1=b.asm.emscripten_bind_MdDbDimension_GetDimVarDouble_1).apply(null,
  257. arguments)},xk=b._emscripten_bind_MdDbDimension_SetDimVarDouble_2=function(){return(xk=b._emscripten_bind_MdDbDimension_SetDimVarDouble_2=b.asm.emscripten_bind_MdDbDimension_SetDimVarDouble_2).apply(null,arguments)},yk=b._emscripten_bind_MdDbDimension_GetDimVarString_1=function(){return(yk=b._emscripten_bind_MdDbDimension_GetDimVarString_1=b.asm.emscripten_bind_MdDbDimension_GetDimVarString_1).apply(null,arguments)},zk=b._emscripten_bind_MdDbDimension_SetDimVarString_2=function(){return(zk=b._emscripten_bind_MdDbDimension_SetDimVarString_2=
  258. b.asm.emscripten_bind_MdDbDimension_SetDimVarString_2).apply(null,arguments)},Ak=b._emscripten_bind_MdDbDimension_GetDimVarObjectId_1=function(){return(Ak=b._emscripten_bind_MdDbDimension_GetDimVarObjectId_1=b.asm.emscripten_bind_MdDbDimension_GetDimVarObjectId_1).apply(null,arguments)},Bk=b._emscripten_bind_MdDbDimension_SetDimVarObjectId_2=function(){return(Bk=b._emscripten_bind_MdDbDimension_SetDimVarObjectId_2=b.asm.emscripten_bind_MdDbDimension_SetDimVarObjectId_2).apply(null,arguments)},Ck=
  259. b._emscripten_bind_MdDbDimension_GetAllText_0=function(){return(Ck=b._emscripten_bind_MdDbDimension_GetAllText_0=b.asm.emscripten_bind_MdDbDimension_GetAllText_0).apply(null,arguments)},Dk=b._emscripten_bind_MdDbDimension_explode_0=function(){return(Dk=b._emscripten_bind_MdDbDimension_explode_0=b.asm.emscripten_bind_MdDbDimension_explode_0).apply(null,arguments)},Ek=b._emscripten_bind_MdDbDimension_TrueColor_0=function(){return(Ek=b._emscripten_bind_MdDbDimension_TrueColor_0=b.asm.emscripten_bind_MdDbDimension_TrueColor_0).apply(null,
  260. arguments)},Fk=b._emscripten_bind_MdDbDimension_SetTrueColor_1=function(){return(Fk=b._emscripten_bind_MdDbDimension_SetTrueColor_1=b.asm.emscripten_bind_MdDbDimension_SetTrueColor_1).apply(null,arguments)},Gk=b._emscripten_bind_MdDbDimension_ColorIndex_0=function(){return(Gk=b._emscripten_bind_MdDbDimension_ColorIndex_0=b.asm.emscripten_bind_MdDbDimension_ColorIndex_0).apply(null,arguments)},Hk=b._emscripten_bind_MdDbDimension_SetColorIndex_1=function(){return(Hk=b._emscripten_bind_MdDbDimension_SetColorIndex_1=
  261. b.asm.emscripten_bind_MdDbDimension_SetColorIndex_1).apply(null,arguments)},Ik=b._emscripten_bind_MdDbDimension_Layer_0=function(){return(Ik=b._emscripten_bind_MdDbDimension_Layer_0=b.asm.emscripten_bind_MdDbDimension_Layer_0).apply(null,arguments)},Jk=b._emscripten_bind_MdDbDimension_SetLayer_1=function(){return(Jk=b._emscripten_bind_MdDbDimension_SetLayer_1=b.asm.emscripten_bind_MdDbDimension_SetLayer_1).apply(null,arguments)},Kk=b._emscripten_bind_MdDbDimension_LinetypeScale_0=function(){return(Kk=
  262. b._emscripten_bind_MdDbDimension_LinetypeScale_0=b.asm.emscripten_bind_MdDbDimension_LinetypeScale_0).apply(null,arguments)},Lk=b._emscripten_bind_MdDbDimension_SetLinetypeScale_1=function(){return(Lk=b._emscripten_bind_MdDbDimension_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbDimension_SetLinetypeScale_1).apply(null,arguments)},Mk=b._emscripten_bind_MdDbDimension_Visible_0=function(){return(Mk=b._emscripten_bind_MdDbDimension_Visible_0=b.asm.emscripten_bind_MdDbDimension_Visible_0).apply(null,arguments)},
  263. Nk=b._emscripten_bind_MdDbDimension_SetVisible_1=function(){return(Nk=b._emscripten_bind_MdDbDimension_SetVisible_1=b.asm.emscripten_bind_MdDbDimension_SetVisible_1).apply(null,arguments)},Ok=b._emscripten_bind_MdDbDimension_Lineweight_0=function(){return(Ok=b._emscripten_bind_MdDbDimension_Lineweight_0=b.asm.emscripten_bind_MdDbDimension_Lineweight_0).apply(null,arguments)},Pk=b._emscripten_bind_MdDbDimension_SetLineweight_1=function(){return(Pk=b._emscripten_bind_MdDbDimension_SetLineweight_1=b.asm.emscripten_bind_MdDbDimension_SetLineweight_1).apply(null,
  264. arguments)},Qk=b._emscripten_bind_MdDbDimension_TextStyle_0=function(){return(Qk=b._emscripten_bind_MdDbDimension_TextStyle_0=b.asm.emscripten_bind_MdDbDimension_TextStyle_0).apply(null,arguments)},Rk=b._emscripten_bind_MdDbDimension_SetTextStyle_1=function(){return(Rk=b._emscripten_bind_MdDbDimension_SetTextStyle_1=b.asm.emscripten_bind_MdDbDimension_SetTextStyle_1).apply(null,arguments)},Sk=b._emscripten_bind_MdDbDimension_Highlight_1=function(){return(Sk=b._emscripten_bind_MdDbDimension_Highlight_1=
  265. b.asm.emscripten_bind_MdDbDimension_Highlight_1).apply(null,arguments)},Tk=b._emscripten_bind_MdDbDimension_Move_2=function(){return(Tk=b._emscripten_bind_MdDbDimension_Move_2=b.asm.emscripten_bind_MdDbDimension_Move_2).apply(null,arguments)},Uk=b._emscripten_bind_MdDbDimension_Rotate_2=function(){return(Uk=b._emscripten_bind_MdDbDimension_Rotate_2=b.asm.emscripten_bind_MdDbDimension_Rotate_2).apply(null,arguments)},Vk=b._emscripten_bind_MdDbDimension_Mirror_2=function(){return(Vk=b._emscripten_bind_MdDbDimension_Mirror_2=
  266. b.asm.emscripten_bind_MdDbDimension_Mirror_2).apply(null,arguments)},Wk=b._emscripten_bind_MdDbDimension_ScaleEntity_2=function(){return(Wk=b._emscripten_bind_MdDbDimension_ScaleEntity_2=b.asm.emscripten_bind_MdDbDimension_ScaleEntity_2).apply(null,arguments)},Xk=b._emscripten_bind_MdDbDimension_TransformBy_1=function(){return(Xk=b._emscripten_bind_MdDbDimension_TransformBy_1=b.asm.emscripten_bind_MdDbDimension_TransformBy_1).apply(null,arguments)},Yk=b._emscripten_bind_MdDbDimension_GetBoundingBox_0=
  267. function(){return(Yk=b._emscripten_bind_MdDbDimension_GetBoundingBox_0=b.asm.emscripten_bind_MdDbDimension_GetBoundingBox_0).apply(null,arguments)},Zk=b._emscripten_bind_MdDbDimension_GetXData_1=function(){return(Zk=b._emscripten_bind_MdDbDimension_GetXData_1=b.asm.emscripten_bind_MdDbDimension_GetXData_1).apply(null,arguments)},$k=b._emscripten_bind_MdDbDimension_SetXData_1=function(){return($k=b._emscripten_bind_MdDbDimension_SetXData_1=b.asm.emscripten_bind_MdDbDimension_SetXData_1).apply(null,
  268. arguments)},al=b._emscripten_bind_MdDbDimension_GetxDataString_2=function(){return(al=b._emscripten_bind_MdDbDimension_GetxDataString_2=b.asm.emscripten_bind_MdDbDimension_GetxDataString_2).apply(null,arguments)},bl=b._emscripten_bind_MdDbDimension_SetxDataString_3=function(){return(bl=b._emscripten_bind_MdDbDimension_SetxDataString_3=b.asm.emscripten_bind_MdDbDimension_SetxDataString_3).apply(null,arguments)},cl=b._emscripten_bind_MdDbDimension_GetxDataDouble_2=function(){return(cl=b._emscripten_bind_MdDbDimension_GetxDataDouble_2=
  269. b.asm.emscripten_bind_MdDbDimension_GetxDataDouble_2).apply(null,arguments)},dl=b._emscripten_bind_MdDbDimension_SetxDataDouble_3=function(){return(dl=b._emscripten_bind_MdDbDimension_SetxDataDouble_3=b.asm.emscripten_bind_MdDbDimension_SetxDataDouble_3).apply(null,arguments)},el=b._emscripten_bind_MdDbDimension_GetxDataLong_2=function(){return(el=b._emscripten_bind_MdDbDimension_GetxDataLong_2=b.asm.emscripten_bind_MdDbDimension_GetxDataLong_2).apply(null,arguments)},fl=b._emscripten_bind_MdDbDimension_SetxDataLong_3=
  270. function(){return(fl=b._emscripten_bind_MdDbDimension_SetxDataLong_3=b.asm.emscripten_bind_MdDbDimension_SetxDataLong_3).apply(null,arguments)},gl=b._emscripten_bind_MdDbDimension_GetxDataPoint_2=function(){return(gl=b._emscripten_bind_MdDbDimension_GetxDataPoint_2=b.asm.emscripten_bind_MdDbDimension_GetxDataPoint_2).apply(null,arguments)},hl=b._emscripten_bind_MdDbDimension_SetxDataPoint_3=function(){return(hl=b._emscripten_bind_MdDbDimension_SetxDataPoint_3=b.asm.emscripten_bind_MdDbDimension_SetxDataPoint_3).apply(null,
  271. arguments)},il=b._emscripten_bind_MdDbDimension_DeleteXData_1=function(){return(il=b._emscripten_bind_MdDbDimension_DeleteXData_1=b.asm.emscripten_bind_MdDbDimension_DeleteXData_1).apply(null,arguments)},jl=b._emscripten_bind_MdDbDimension_GetAllAppName_0=function(){return(jl=b._emscripten_bind_MdDbDimension_GetAllAppName_0=b.asm.emscripten_bind_MdDbDimension_GetAllAppName_0).apply(null,arguments)},kl=b._emscripten_bind_MdDbDimension_LayerId_0=function(){return(kl=b._emscripten_bind_MdDbDimension_LayerId_0=
  272. b.asm.emscripten_bind_MdDbDimension_LayerId_0).apply(null,arguments)},ll=b._emscripten_bind_MdDbDimension_SetLayerId_1=function(){return(ll=b._emscripten_bind_MdDbDimension_SetLayerId_1=b.asm.emscripten_bind_MdDbDimension_SetLayerId_1).apply(null,arguments)},ml=b._emscripten_bind_MdDbDimension_LinetypeId_0=function(){return(ml=b._emscripten_bind_MdDbDimension_LinetypeId_0=b.asm.emscripten_bind_MdDbDimension_LinetypeId_0).apply(null,arguments)},nl=b._emscripten_bind_MdDbDimension_SetLinetypeId_1=function(){return(nl=
  273. b._emscripten_bind_MdDbDimension_SetLinetypeId_1=b.asm.emscripten_bind_MdDbDimension_SetLinetypeId_1).apply(null,arguments)},ol=b._emscripten_bind_MdDbDimension_Linetype_0=function(){return(ol=b._emscripten_bind_MdDbDimension_Linetype_0=b.asm.emscripten_bind_MdDbDimension_Linetype_0).apply(null,arguments)},pl=b._emscripten_bind_MdDbDimension_SetLinetype_1=function(){return(pl=b._emscripten_bind_MdDbDimension_SetLinetype_1=b.asm.emscripten_bind_MdDbDimension_SetLinetype_1).apply(null,arguments)},ql=
  274. b._emscripten_bind_MdDbDimension_TextStyleId_0=function(){return(ql=b._emscripten_bind_MdDbDimension_TextStyleId_0=b.asm.emscripten_bind_MdDbDimension_TextStyleId_0).apply(null,arguments)},rl=b._emscripten_bind_MdDbDimension_SetTextStyleId_1=function(){return(rl=b._emscripten_bind_MdDbDimension_SetTextStyleId_1=b.asm.emscripten_bind_MdDbDimension_SetTextStyleId_1).apply(null,arguments)},sl=b._emscripten_bind_MdDbDimension_IntersectWith_2=function(){return(sl=b._emscripten_bind_MdDbDimension_IntersectWith_2=
  275. b.asm.emscripten_bind_MdDbDimension_IntersectWith_2).apply(null,arguments)},tl=b._emscripten_bind_MdDbDimension_getArea_0=function(){return(tl=b._emscripten_bind_MdDbDimension_getArea_0=b.asm.emscripten_bind_MdDbDimension_getArea_0).apply(null,arguments)},ul=b._emscripten_bind_MdDbDimension_disableUpdateDisplay_1=function(){return(ul=b._emscripten_bind_MdDbDimension_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbDimension_disableUpdateDisplay_1).apply(null,arguments)},vl=b._emscripten_bind_MdDbDimension_isPropertiesWindowCustom_0=
  276. function(){return(vl=b._emscripten_bind_MdDbDimension_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbDimension_isPropertiesWindowCustom_0).apply(null,arguments)},wl=b._emscripten_bind_MdDbDimension_setPropertiesWindowCustom_1=function(){return(wl=b._emscripten_bind_MdDbDimension_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbDimension_setPropertiesWindowCustom_1).apply(null,arguments)},xl=b._emscripten_bind_MdDbDimension_updateDisplay_0=function(){return(xl=b._emscripten_bind_MdDbDimension_updateDisplay_0=
  277. b.asm.emscripten_bind_MdDbDimension_updateDisplay_0).apply(null,arguments)},yl=b._emscripten_bind_MdDbDimension_DrawOrder_0=function(){return(yl=b._emscripten_bind_MdDbDimension_DrawOrder_0=b.asm.emscripten_bind_MdDbDimension_DrawOrder_0).apply(null,arguments)},zl=b._emscripten_bind_MdDbDimension_SetDrawOrder_1=function(){return(zl=b._emscripten_bind_MdDbDimension_SetDrawOrder_1=b.asm.emscripten_bind_MdDbDimension_SetDrawOrder_1).apply(null,arguments)},Al=b._emscripten_bind_MdDbDimension_normal_0=
  278. function(){return(Al=b._emscripten_bind_MdDbDimension_normal_0=b.asm.emscripten_bind_MdDbDimension_normal_0).apply(null,arguments)},Bl=b._emscripten_bind_MdDbDimension_setNormal_1=function(){return(Bl=b._emscripten_bind_MdDbDimension_setNormal_1=b.asm.emscripten_bind_MdDbDimension_setNormal_1).apply(null,arguments)},Cl=b._emscripten_bind_MdDbDimension_GetObjectID_0=function(){return(Cl=b._emscripten_bind_MdDbDimension_GetObjectID_0=b.asm.emscripten_bind_MdDbDimension_GetObjectID_0).apply(null,arguments)},
  279. Dl=b._emscripten_bind_MdDbDimension_Erase_0=function(){return(Dl=b._emscripten_bind_MdDbDimension_Erase_0=b.asm.emscripten_bind_MdDbDimension_Erase_0).apply(null,arguments)},El=b._emscripten_bind_MdDbDimension_isErased_0=function(){return(El=b._emscripten_bind_MdDbDimension_isErased_0=b.asm.emscripten_bind_MdDbDimension_isErased_0).apply(null,arguments)},Fl=b._emscripten_bind_MdDbDimension_unErase_0=function(){return(Fl=b._emscripten_bind_MdDbDimension_unErase_0=b.asm.emscripten_bind_MdDbDimension_unErase_0).apply(null,
  280. arguments)},Gl=b._emscripten_bind_MdDbDimension_ConnectionTempObject_1=function(){return(Gl=b._emscripten_bind_MdDbDimension_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbDimension_ConnectionTempObject_1).apply(null,arguments)},Hl=b._emscripten_bind_MdDbDimension_GetExtensionDictionary_0=function(){return(Hl=b._emscripten_bind_MdDbDimension_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimension_GetExtensionDictionary_0).apply(null,arguments)},Il=b._emscripten_bind_MdDbDimension_CreateExtensionDictionary_0=
  281. function(){return(Il=b._emscripten_bind_MdDbDimension_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimension_CreateExtensionDictionary_0).apply(null,arguments)},Jl=b._emscripten_bind_MdDbDimension_IsHaveExtensionDictionary_0=function(){return(Jl=b._emscripten_bind_MdDbDimension_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimension_IsHaveExtensionDictionary_0).apply(null,arguments)},Kl=b._emscripten_bind_MdDbDimension_Clone_0=function(){return(Kl=b._emscripten_bind_MdDbDimension_Clone_0=
  282. b.asm.emscripten_bind_MdDbDimension_Clone_0).apply(null,arguments)},Ll=b._emscripten_bind_MdDbDimension_GetHandle_0=function(){return(Ll=b._emscripten_bind_MdDbDimension_GetHandle_0=b.asm.emscripten_bind_MdDbDimension_GetHandle_0).apply(null,arguments)},Ml=b._emscripten_bind_MdDbDimension_GetDatabase_0=function(){return(Ml=b._emscripten_bind_MdDbDimension_GetDatabase_0=b.asm.emscripten_bind_MdDbDimension_GetDatabase_0).apply(null,arguments)},Nl=b._emscripten_bind_MdDbDimension_GetDatabaseIndexId_0=
  283. function(){return(Nl=b._emscripten_bind_MdDbDimension_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbDimension_GetDatabaseIndexId_0).apply(null,arguments)},Ol=b._emscripten_bind_MdDbDimension_GetOwnerID_0=function(){return(Ol=b._emscripten_bind_MdDbDimension_GetOwnerID_0=b.asm.emscripten_bind_MdDbDimension_GetOwnerID_0).apply(null,arguments)},Pl=b._emscripten_bind_MdDbDimension_assertObjectModification_1=function(){return(Pl=b._emscripten_bind_MdDbDimension_assertObjectModification_1=b.asm.emscripten_bind_MdDbDimension_assertObjectModification_1).apply(null,
  284. arguments)},Ql=b._emscripten_bind_MdDbDimension_moveGripPointsAt_4=function(){return(Ql=b._emscripten_bind_MdDbDimension_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbDimension_moveGripPointsAt_4).apply(null,arguments)},Rl=b._emscripten_bind_MdDbDimension_getGripPoints_0=function(){return(Rl=b._emscripten_bind_MdDbDimension_getGripPoints_0=b.asm.emscripten_bind_MdDbDimension_getGripPoints_0).apply(null,arguments)},Sl=b._emscripten_bind_MdDbDimension_getObjectName_0=function(){return(Sl=b._emscripten_bind_MdDbDimension_getObjectName_0=
  285. b.asm.emscripten_bind_MdDbDimension_getObjectName_0).apply(null,arguments)},Tl=b._emscripten_bind_MdDbDimension_getDxf0_0=function(){return(Tl=b._emscripten_bind_MdDbDimension_getDxf0_0=b.asm.emscripten_bind_MdDbDimension_getDxf0_0).apply(null,arguments)},Ul=b._emscripten_bind_MdDbDimension_getCustomEntityTypeName_0=function(){return(Ul=b._emscripten_bind_MdDbDimension_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbDimension_getCustomEntityTypeName_0).apply(null,arguments)},Vl=b._emscripten_bind_MdDbDimension_getCustomEntityid_0=
  286. function(){return(Vl=b._emscripten_bind_MdDbDimension_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDimension_getCustomEntityid_0).apply(null,arguments)},Wl=b._emscripten_bind_MdDbDimension_getCustomEntityTempid_0=function(){return(Wl=b._emscripten_bind_MdDbDimension_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbDimension_getCustomEntityTempid_0).apply(null,arguments)},Xl=b._emscripten_bind_MdDbDimension_setCustomEntityTempid_1=function(){return(Xl=b._emscripten_bind_MdDbDimension_setCustomEntityTempid_1=
  287. b.asm.emscripten_bind_MdDbDimension_setCustomEntityTempid_1).apply(null,arguments)},Yl=b._emscripten_bind_MdDbDimension_getJson_0=function(){return(Yl=b._emscripten_bind_MdDbDimension_getJson_0=b.asm.emscripten_bind_MdDbDimension_getJson_0).apply(null,arguments)},Zl=b._emscripten_bind_MdDbDimension_setJson_1=function(){return(Zl=b._emscripten_bind_MdDbDimension_setJson_1=b.asm.emscripten_bind_MdDbDimension_setJson_1).apply(null,arguments)},$l=b._emscripten_bind_MdDbDimension_isKindOf_1=function(){return($l=
  288. b._emscripten_bind_MdDbDimension_isKindOf_1=b.asm.emscripten_bind_MdDbDimension_isKindOf_1).apply(null,arguments)},am=b._emscripten_bind_MdDbDimension_isNull_0=function(){return(am=b._emscripten_bind_MdDbDimension_isNull_0=b.asm.emscripten_bind_MdDbDimension_isNull_0).apply(null,arguments)},bm=b._emscripten_bind_MdDbDimension___destroy___0=function(){return(bm=b._emscripten_bind_MdDbDimension___destroy___0=b.asm.emscripten_bind_MdDbDimension___destroy___0).apply(null,arguments)},cm=b._emscripten_bind_VoidPtr___destroy___0=
  289. function(){return(cm=b._emscripten_bind_VoidPtr___destroy___0=b.asm.emscripten_bind_VoidPtr___destroy___0).apply(null,arguments)},dm=b._emscripten_bind_McApp_McApp_0=function(){return(dm=b._emscripten_bind_McApp_McApp_0=b.asm.emscripten_bind_McApp_McApp_0).apply(null,arguments)},em=b._emscripten_bind_McApp_Init_0=function(){return(em=b._emscripten_bind_McApp_Init_0=b.asm.emscripten_bind_McApp_Init_0).apply(null,arguments)},fm=b._emscripten_bind_McApp_IniSet_1=function(){return(fm=b._emscripten_bind_McApp_IniSet_1=
  290. b.asm.emscripten_bind_McApp_IniSet_1).apply(null,arguments)},gm=b._emscripten_bind_McApp_CreateMxDraw_6=function(){return(gm=b._emscripten_bind_McApp_CreateMxDraw_6=b.asm.emscripten_bind_McApp_CreateMxDraw_6).apply(null,arguments)},hm=b._emscripten_bind_McApp_GetCurrentMxDraw_0=function(){return(hm=b._emscripten_bind_McApp_GetCurrentMxDraw_0=b.asm.emscripten_bind_McApp_GetCurrentMxDraw_0).apply(null,arguments)},im=b._emscripten_bind_McApp_DestroyObject_1=function(){return(im=b._emscripten_bind_McApp_DestroyObject_1=
  291. b.asm.emscripten_bind_McApp_DestroyObject_1).apply(null,arguments)},jm=b._emscripten_bind_McApp_DestroyMdGePoint3d_1=function(){return(jm=b._emscripten_bind_McApp_DestroyMdGePoint3d_1=b.asm.emscripten_bind_McApp_DestroyMdGePoint3d_1).apply(null,arguments)},km=b._emscripten_bind_McApp_DestroyMdGeLongArray_1=function(){return(km=b._emscripten_bind_McApp_DestroyMdGeLongArray_1=b.asm.emscripten_bind_McApp_DestroyMdGeLongArray_1).apply(null,arguments)},lm=b._emscripten_bind_McApp_DestroyMdGeDoubleArray_1=
  292. function(){return(lm=b._emscripten_bind_McApp_DestroyMdGeDoubleArray_1=b.asm.emscripten_bind_McApp_DestroyMdGeDoubleArray_1).apply(null,arguments)},mm=b._emscripten_bind_McApp_DestroyMdGeStringArray_1=function(){return(mm=b._emscripten_bind_McApp_DestroyMdGeStringArray_1=b.asm.emscripten_bind_McApp_DestroyMdGeStringArray_1).apply(null,arguments)},nm=b._emscripten_bind_McApp_DestroyMdDbCustomEntityDwgFiler_1=function(){return(nm=b._emscripten_bind_McApp_DestroyMdDbCustomEntityDwgFiler_1=b.asm.emscripten_bind_McApp_DestroyMdDbCustomEntityDwgFiler_1).apply(null,
  293. arguments)},om=b._emscripten_bind_McApp_mcedRGB2Index_4=function(){return(om=b._emscripten_bind_McApp_mcedRGB2Index_4=b.asm.emscripten_bind_McApp_mcedRGB2Index_4).apply(null,arguments)},pm=b._emscripten_bind_McApp_setDefaultViewBackgroundColor_3=function(){return(pm=b._emscripten_bind_McApp_setDefaultViewBackgroundColor_3=b.asm.emscripten_bind_McApp_setDefaultViewBackgroundColor_3).apply(null,arguments)},qm=b._emscripten_bind_McApp_ObjectIdToObjectName_1=function(){return(qm=b._emscripten_bind_McApp_ObjectIdToObjectName_1=
  294. b.asm.emscripten_bind_McApp_ObjectIdToObjectName_1).apply(null,arguments)},rm=b._emscripten_bind_McApp_GetVersionString_0=function(){return(rm=b._emscripten_bind_McApp_GetVersionString_0=b.asm.emscripten_bind_McApp_GetVersionString_0).apply(null,arguments)},sm=b._emscripten_bind_McApp_createAppParam_1=function(){return(sm=b._emscripten_bind_McApp_createAppParam_1=b.asm.emscripten_bind_McApp_createAppParam_1).apply(null,arguments)},tm=b._emscripten_bind_McApp_getCodeVersion_0=function(){return(tm=
  295. b._emscripten_bind_McApp_getCodeVersion_0=b.asm.emscripten_bind_McApp_getCodeVersion_0).apply(null,arguments)},um=b._emscripten_bind_McApp_isObjectEraseSataus_1=function(){return(um=b._emscripten_bind_McApp_isObjectEraseSataus_1=b.asm.emscripten_bind_McApp_isObjectEraseSataus_1).apply(null,arguments)},wm=b._emscripten_bind_McApp_ObjectIdIsKindOf_2=function(){return(wm=b._emscripten_bind_McApp_ObjectIdIsKindOf_2=b.asm.emscripten_bind_McApp_ObjectIdIsKindOf_2).apply(null,arguments)},xm=b._emscripten_bind_McApp_ObjectIdToMdObject_1=
  296. function(){return(xm=b._emscripten_bind_McApp_ObjectIdToMdObject_1=b.asm.emscripten_bind_McApp_ObjectIdToMdObject_1).apply(null,arguments)},ym=b._emscripten_bind_McApp_ObjectIdToMdDbEntity_1=function(){return(ym=b._emscripten_bind_McApp_ObjectIdToMdDbEntity_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbEntity_1).apply(null,arguments)},zm=b._emscripten_bind_McApp_ObjectIdToMdDbCurve_1=function(){return(zm=b._emscripten_bind_McApp_ObjectIdToMdDbCurve_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbCurve_1).apply(null,
  297. arguments)},Am=b._emscripten_bind_McApp_ObjectIdToMdDbDimension_1=function(){return(Am=b._emscripten_bind_McApp_ObjectIdToMdDbDimension_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbDimension_1).apply(null,arguments)},Bm=b._emscripten_bind_McApp_ObjectIdToMdDbLine_1=function(){return(Bm=b._emscripten_bind_McApp_ObjectIdToMdDbLine_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbLine_1).apply(null,arguments)},Cm=b._emscripten_bind_McApp_ObjectIdToMdDbText_1=function(){return(Cm=b._emscripten_bind_McApp_ObjectIdToMdDbText_1=
  298. b.asm.emscripten_bind_McApp_ObjectIdToMdDbText_1).apply(null,arguments)},Dm=b._emscripten_bind_McApp_ObjectIdToMdDbAttribute_1=function(){return(Dm=b._emscripten_bind_McApp_ObjectIdToMdDbAttribute_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbAttribute_1).apply(null,arguments)},Em=b._emscripten_bind_McApp_ObjectIdToMdDbAttributeDefinition_1=function(){return(Em=b._emscripten_bind_McApp_ObjectIdToMdDbAttributeDefinition_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbAttributeDefinition_1).apply(null,arguments)},
  299. Fm=b._emscripten_bind_McApp_ObjectIdToMdDbPolyline_1=function(){return(Fm=b._emscripten_bind_McApp_ObjectIdToMdDbPolyline_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbPolyline_1).apply(null,arguments)},Gm=b._emscripten_bind_McApp_ObjectIdToMdDbCircle_1=function(){return(Gm=b._emscripten_bind_McApp_ObjectIdToMdDbCircle_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbCircle_1).apply(null,arguments)},Hm=b._emscripten_bind_McApp_ObjectIdToMdDbArc_1=function(){return(Hm=b._emscripten_bind_McApp_ObjectIdToMdDbArc_1=
  300. b.asm.emscripten_bind_McApp_ObjectIdToMdDbArc_1).apply(null,arguments)},Im=b._emscripten_bind_McApp_ObjectIdToMdDbBlockReference_1=function(){return(Im=b._emscripten_bind_McApp_ObjectIdToMdDbBlockReference_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbBlockReference_1).apply(null,arguments)},Jm=b._emscripten_bind_McApp_ObjectIdToMdDbSpatialFilter_1=function(){return(Jm=b._emscripten_bind_McApp_ObjectIdToMdDbSpatialFilter_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbSpatialFilter_1).apply(null,arguments)},
  301. Km=b._emscripten_bind_McApp_ObjectIdToMdDbAlignedDimension_1=function(){return(Km=b._emscripten_bind_McApp_ObjectIdToMdDbAlignedDimension_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbAlignedDimension_1).apply(null,arguments)},Lm=b._emscripten_bind_McApp_ObjectIdToMdDbRotatedDimension_1=function(){return(Lm=b._emscripten_bind_McApp_ObjectIdToMdDbRotatedDimension_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbRotatedDimension_1).apply(null,arguments)},Mm=b._emscripten_bind_McApp_ObjectIdToMdDb2LineAngularDimension_1=
  302. function(){return(Mm=b._emscripten_bind_McApp_ObjectIdToMdDb2LineAngularDimension_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDb2LineAngularDimension_1).apply(null,arguments)},Nm=b._emscripten_bind_McApp_ObjectIdToMdDbMText_1=function(){return(Nm=b._emscripten_bind_McApp_ObjectIdToMdDbMText_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbMText_1).apply(null,arguments)},Om=b._emscripten_bind_McApp_ObjectIdToMdDbEllipse_1=function(){return(Om=b._emscripten_bind_McApp_ObjectIdToMdDbEllipse_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbEllipse_1).apply(null,
  303. arguments)},Pm=b._emscripten_bind_McApp_ObjectIdToMdDbHatch_1=function(){return(Pm=b._emscripten_bind_McApp_ObjectIdToMdDbHatch_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbHatch_1).apply(null,arguments)},Qm=b._emscripten_bind_McApp_ObjectIdToMdDbProxyEntity_1=function(){return(Qm=b._emscripten_bind_McApp_ObjectIdToMdDbProxyEntity_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbProxyEntity_1).apply(null,arguments)},Rm=b._emscripten_bind_McApp_ObjectIdToMdDbRasterImage_1=function(){return(Rm=b._emscripten_bind_McApp_ObjectIdToMdDbRasterImage_1=
  304. b.asm.emscripten_bind_McApp_ObjectIdToMdDbRasterImage_1).apply(null,arguments)},Sm=b._emscripten_bind_McApp_ObjectIdToMdDbRasterImageDef_1=function(){return(Sm=b._emscripten_bind_McApp_ObjectIdToMdDbRasterImageDef_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbRasterImageDef_1).apply(null,arguments)},Tm=b._emscripten_bind_McApp_ObjectIdToMdDbWipeout_1=function(){return(Tm=b._emscripten_bind_McApp_ObjectIdToMdDbWipeout_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbWipeout_1).apply(null,arguments)},Um=b._emscripten_bind_McApp_ObjectIdToMdDbCustomEntity_1=
  305. function(){return(Um=b._emscripten_bind_McApp_ObjectIdToMdDbCustomEntity_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbCustomEntity_1).apply(null,arguments)},Vm=b._emscripten_bind_McApp_ObjectIdToMdDbDictionary_1=function(){return(Vm=b._emscripten_bind_McApp_ObjectIdToMdDbDictionary_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbDictionary_1).apply(null,arguments)},Wm=b._emscripten_bind_McApp_ObjectIdToMdDbXrecord_1=function(){return(Wm=b._emscripten_bind_McApp_ObjectIdToMdDbXrecord_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbXrecord_1).apply(null,
  306. arguments)},Xm=b._emscripten_bind_McApp_ObjectIdToMdDbPoint_1=function(){return(Xm=b._emscripten_bind_McApp_ObjectIdToMdDbPoint_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbPoint_1).apply(null,arguments)},Ym=b._emscripten_bind_McApp_ObjectIdToMdDbBlockTableRecord_1=function(){return(Ym=b._emscripten_bind_McApp_ObjectIdToMdDbBlockTableRecord_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbBlockTableRecord_1).apply(null,arguments)},Zm=b._emscripten_bind_McApp_ObjectIdToMdDbLayerTableRecord_1=function(){return(Zm=
  307. b._emscripten_bind_McApp_ObjectIdToMdDbLayerTableRecord_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbLayerTableRecord_1).apply(null,arguments)},$m=b._emscripten_bind_McApp_ObjectIdToMdDbLinetypeTableRecord_1=function(){return($m=b._emscripten_bind_McApp_ObjectIdToMdDbLinetypeTableRecord_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbLinetypeTableRecord_1).apply(null,arguments)},an=b._emscripten_bind_McApp_ObjectIdToMdDbDimStyleTableRecord_1=function(){return(an=b._emscripten_bind_McApp_ObjectIdToMdDbDimStyleTableRecord_1=
  308. b.asm.emscripten_bind_McApp_ObjectIdToMdDbDimStyleTableRecord_1).apply(null,arguments)},bn=b._emscripten_bind_McApp_ObjectIdToMdDbTextStyleTableRecord_1=function(){return(bn=b._emscripten_bind_McApp_ObjectIdToMdDbTextStyleTableRecord_1=b.asm.emscripten_bind_McApp_ObjectIdToMdDbTextStyleTableRecord_1).apply(null,arguments)},cn=b._emscripten_bind_McApp_getLastCallResult_0=function(){return(cn=b._emscripten_bind_McApp_getLastCallResult_0=b.asm.emscripten_bind_McApp_getLastCallResult_0).apply(null,arguments)},
  309. dn=b._emscripten_bind_McApp_ThreadTaskAbortExit_0=function(){return(dn=b._emscripten_bind_McApp_ThreadTaskAbortExit_0=b.asm.emscripten_bind_McApp_ThreadTaskAbortExit_0).apply(null,arguments)},en=b._emscripten_bind_McApp_setFontFilePath_1=function(){return(en=b._emscripten_bind_McApp_setFontFilePath_1=b.asm.emscripten_bind_McApp_setFontFilePath_1).apply(null,arguments)},fn=b._emscripten_bind_McApp_addNetworkLoadingFont_1=function(){return(fn=b._emscripten_bind_McApp_addNetworkLoadingFont_1=b.asm.emscripten_bind_McApp_addNetworkLoadingFont_1).apply(null,
  310. arguments)},gn=b._emscripten_bind_McApp_addFontsLoadOnInitialization_2=function(){return(gn=b._emscripten_bind_McApp_addFontsLoadOnInitialization_2=b.asm.emscripten_bind_McApp_addFontsLoadOnInitialization_2).apply(null,arguments)},hn=b._emscripten_bind_McApp_addNetworkLoadingTrueTypeFont_3=function(){return(hn=b._emscripten_bind_McApp_addNetworkLoadingTrueTypeFont_3=b.asm.emscripten_bind_McApp_addNetworkLoadingTrueTypeFont_3).apply(null,arguments)},jn=b._emscripten_bind_McApp_setDefaultTrueTypeFontFile_1=
  311. function(){return(jn=b._emscripten_bind_McApp_setDefaultTrueTypeFontFile_1=b.asm.emscripten_bind_McApp_setDefaultTrueTypeFontFile_1).apply(null,arguments)},kn=b._emscripten_bind_McApp_loadFonts_2=function(){return(kn=b._emscripten_bind_McApp_loadFonts_2=b.asm.emscripten_bind_McApp_loadFonts_2).apply(null,arguments)},ln=b._emscripten_bind_McApp___destroy___0=function(){return(ln=b._emscripten_bind_McApp___destroy___0=b.asm.emscripten_bind_McApp___destroy___0).apply(null,arguments)},mn=b._emscripten_bind_MdCmColor_MdCmColor_0=
  312. function(){return(mn=b._emscripten_bind_MdCmColor_MdCmColor_0=b.asm.emscripten_bind_MdCmColor_MdCmColor_0).apply(null,arguments)},nn=b._emscripten_bind_MdCmColor_setColorIndex_1=function(){return(nn=b._emscripten_bind_MdCmColor_setColorIndex_1=b.asm.emscripten_bind_MdCmColor_setColorIndex_1).apply(null,arguments)},on=b._emscripten_bind_MdCmColor_setRGB_3=function(){return(on=b._emscripten_bind_MdCmColor_setRGB_3=b.asm.emscripten_bind_MdCmColor_setRGB_3).apply(null,arguments)},pn=b._emscripten_bind_MdCmColor_getColorString_0=
  313. function(){return(pn=b._emscripten_bind_MdCmColor_getColorString_0=b.asm.emscripten_bind_MdCmColor_getColorString_0).apply(null,arguments)},qn=b._emscripten_bind_MdCmColor_getColorValue_2=function(){return(qn=b._emscripten_bind_MdCmColor_getColorValue_2=b.asm.emscripten_bind_MdCmColor_getColorValue_2).apply(null,arguments)},rn=b._emscripten_bind_MdCmColor_get_red_0=function(){return(rn=b._emscripten_bind_MdCmColor_get_red_0=b.asm.emscripten_bind_MdCmColor_get_red_0).apply(null,arguments)},sn=b._emscripten_bind_MdCmColor_set_red_1=
  314. function(){return(sn=b._emscripten_bind_MdCmColor_set_red_1=b.asm.emscripten_bind_MdCmColor_set_red_1).apply(null,arguments)},tn=b._emscripten_bind_MdCmColor_get_green_0=function(){return(tn=b._emscripten_bind_MdCmColor_get_green_0=b.asm.emscripten_bind_MdCmColor_get_green_0).apply(null,arguments)},un=b._emscripten_bind_MdCmColor_set_green_1=function(){return(un=b._emscripten_bind_MdCmColor_set_green_1=b.asm.emscripten_bind_MdCmColor_set_green_1).apply(null,arguments)},vn=b._emscripten_bind_MdCmColor_get_blue_0=
  315. function(){return(vn=b._emscripten_bind_MdCmColor_get_blue_0=b.asm.emscripten_bind_MdCmColor_get_blue_0).apply(null,arguments)},wn=b._emscripten_bind_MdCmColor_set_blue_1=function(){return(wn=b._emscripten_bind_MdCmColor_set_blue_1=b.asm.emscripten_bind_MdCmColor_set_blue_1).apply(null,arguments)},xn=b._emscripten_bind_MdCmColor_get_method_0=function(){return(xn=b._emscripten_bind_MdCmColor_get_method_0=b.asm.emscripten_bind_MdCmColor_get_method_0).apply(null,arguments)},yn=b._emscripten_bind_MdCmColor_set_method_1=
  316. function(){return(yn=b._emscripten_bind_MdCmColor_set_method_1=b.asm.emscripten_bind_MdCmColor_set_method_1).apply(null,arguments)},zn=b._emscripten_bind_MdCmColor_get_n_0=function(){return(zn=b._emscripten_bind_MdCmColor_get_n_0=b.asm.emscripten_bind_MdCmColor_get_n_0).apply(null,arguments)},An=b._emscripten_bind_MdCmColor_set_n_1=function(){return(An=b._emscripten_bind_MdCmColor_set_n_1=b.asm.emscripten_bind_MdCmColor_set_n_1).apply(null,arguments)},Bn=b._emscripten_bind_MdCmColor_get_colorIndex_0=
  317. function(){return(Bn=b._emscripten_bind_MdCmColor_get_colorIndex_0=b.asm.emscripten_bind_MdCmColor_get_colorIndex_0).apply(null,arguments)},Cn=b._emscripten_bind_MdCmColor_set_colorIndex_1=function(){return(Cn=b._emscripten_bind_MdCmColor_set_colorIndex_1=b.asm.emscripten_bind_MdCmColor_set_colorIndex_1).apply(null,arguments)},Dn=b._emscripten_bind_MdCmColor___destroy___0=function(){return(Dn=b._emscripten_bind_MdCmColor___destroy___0=b.asm.emscripten_bind_MdCmColor___destroy___0).apply(null,arguments)},
  318. En=b._emscripten_bind_MdDbObjectArray_length_0=function(){return(En=b._emscripten_bind_MdDbObjectArray_length_0=b.asm.emscripten_bind_MdDbObjectArray_length_0).apply(null,arguments)},Fn=b._emscripten_bind_MdDbObjectArray_release_1=function(){return(Fn=b._emscripten_bind_MdDbObjectArray_release_1=b.asm.emscripten_bind_MdDbObjectArray_release_1).apply(null,arguments)},Gn=b._emscripten_bind_MdDbObjectArray_clear_0=function(){return(Gn=b._emscripten_bind_MdDbObjectArray_clear_0=b.asm.emscripten_bind_MdDbObjectArray_clear_0).apply(null,
  319. arguments)},Hn=b._emscripten_bind_MdDbObjectArray_getObjectName_0=function(){return(Hn=b._emscripten_bind_MdDbObjectArray_getObjectName_0=b.asm.emscripten_bind_MdDbObjectArray_getObjectName_0).apply(null,arguments)},In=b._emscripten_bind_MdDbObjectArray_getDxf0_0=function(){return(In=b._emscripten_bind_MdDbObjectArray_getDxf0_0=b.asm.emscripten_bind_MdDbObjectArray_getDxf0_0).apply(null,arguments)},Jn=b._emscripten_bind_MdDbObjectArray_getCustomEntityTypeName_0=function(){return(Jn=b._emscripten_bind_MdDbObjectArray_getCustomEntityTypeName_0=
  320. b.asm.emscripten_bind_MdDbObjectArray_getCustomEntityTypeName_0).apply(null,arguments)},Kn=b._emscripten_bind_MdDbObjectArray_getCustomEntityid_0=function(){return(Kn=b._emscripten_bind_MdDbObjectArray_getCustomEntityid_0=b.asm.emscripten_bind_MdDbObjectArray_getCustomEntityid_0).apply(null,arguments)},Ln=b._emscripten_bind_MdDbObjectArray_getCustomEntityTempid_0=function(){return(Ln=b._emscripten_bind_MdDbObjectArray_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbObjectArray_getCustomEntityTempid_0).apply(null,
  321. arguments)},Mn=b._emscripten_bind_MdDbObjectArray_setCustomEntityTempid_1=function(){return(Mn=b._emscripten_bind_MdDbObjectArray_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbObjectArray_setCustomEntityTempid_1).apply(null,arguments)},Nn=b._emscripten_bind_MdDbObjectArray_getJson_0=function(){return(Nn=b._emscripten_bind_MdDbObjectArray_getJson_0=b.asm.emscripten_bind_MdDbObjectArray_getJson_0).apply(null,arguments)},On=b._emscripten_bind_MdDbObjectArray_setJson_1=function(){return(On=b._emscripten_bind_MdDbObjectArray_setJson_1=
  322. b.asm.emscripten_bind_MdDbObjectArray_setJson_1).apply(null,arguments)},Pn=b._emscripten_bind_MdDbObjectArray_isKindOf_1=function(){return(Pn=b._emscripten_bind_MdDbObjectArray_isKindOf_1=b.asm.emscripten_bind_MdDbObjectArray_isKindOf_1).apply(null,arguments)},Qn=b._emscripten_bind_MdDbObjectArray_isNull_0=function(){return(Qn=b._emscripten_bind_MdDbObjectArray_isNull_0=b.asm.emscripten_bind_MdDbObjectArray_isNull_0).apply(null,arguments)},Rn=b._emscripten_bind_MdDbObjectArray___destroy___0=function(){return(Rn=
  323. b._emscripten_bind_MdDbObjectArray___destroy___0=b.asm.emscripten_bind_MdDbObjectArray___destroy___0).apply(null,arguments)},Sn=b._emscripten_bind_MdGePoint3d_MdGePoint3d_0=function(){return(Sn=b._emscripten_bind_MdGePoint3d_MdGePoint3d_0=b.asm.emscripten_bind_MdGePoint3d_MdGePoint3d_0).apply(null,arguments)},Tn=b._emscripten_bind_MdGePoint3d_MdGePoint3d_3=function(){return(Tn=b._emscripten_bind_MdGePoint3d_MdGePoint3d_3=b.asm.emscripten_bind_MdGePoint3d_MdGePoint3d_3).apply(null,arguments)},Un=b._emscripten_bind_MdGePoint3d_transformBy_1=
  324. function(){return(Un=b._emscripten_bind_MdGePoint3d_transformBy_1=b.asm.emscripten_bind_MdGePoint3d_transformBy_1).apply(null,arguments)},Vn=b._emscripten_bind_MdGePoint3d_addvec_1=function(){return(Vn=b._emscripten_bind_MdGePoint3d_addvec_1=b.asm.emscripten_bind_MdGePoint3d_addvec_1).apply(null,arguments)},Wn=b._emscripten_bind_MdGePoint3d_subvec_1=function(){return(Wn=b._emscripten_bind_MdGePoint3d_subvec_1=b.asm.emscripten_bind_MdGePoint3d_subvec_1).apply(null,arguments)},Xn=b._emscripten_bind_MdGePoint3d_sub_1=
  325. function(){return(Xn=b._emscripten_bind_MdGePoint3d_sub_1=b.asm.emscripten_bind_MdGePoint3d_sub_1).apply(null,arguments)},Yn=b._emscripten_bind_MdGePoint3d_distanceTo_1=function(){return(Yn=b._emscripten_bind_MdGePoint3d_distanceTo_1=b.asm.emscripten_bind_MdGePoint3d_distanceTo_1).apply(null,arguments)},Zn=b._emscripten_bind_MdGePoint3d_isEqualTo_1=function(){return(Zn=b._emscripten_bind_MdGePoint3d_isEqualTo_1=b.asm.emscripten_bind_MdGePoint3d_isEqualTo_1).apply(null,arguments)},$n=b._emscripten_bind_MdGePoint3d_get_x_0=
  326. function(){return($n=b._emscripten_bind_MdGePoint3d_get_x_0=b.asm.emscripten_bind_MdGePoint3d_get_x_0).apply(null,arguments)},ao=b._emscripten_bind_MdGePoint3d_set_x_1=function(){return(ao=b._emscripten_bind_MdGePoint3d_set_x_1=b.asm.emscripten_bind_MdGePoint3d_set_x_1).apply(null,arguments)},bo=b._emscripten_bind_MdGePoint3d_get_y_0=function(){return(bo=b._emscripten_bind_MdGePoint3d_get_y_0=b.asm.emscripten_bind_MdGePoint3d_get_y_0).apply(null,arguments)},co=b._emscripten_bind_MdGePoint3d_set_y_1=
  327. function(){return(co=b._emscripten_bind_MdGePoint3d_set_y_1=b.asm.emscripten_bind_MdGePoint3d_set_y_1).apply(null,arguments)},eo=b._emscripten_bind_MdGePoint3d_get_z_0=function(){return(eo=b._emscripten_bind_MdGePoint3d_get_z_0=b.asm.emscripten_bind_MdGePoint3d_get_z_0).apply(null,arguments)},fo=b._emscripten_bind_MdGePoint3d_set_z_1=function(){return(fo=b._emscripten_bind_MdGePoint3d_set_z_1=b.asm.emscripten_bind_MdGePoint3d_set_z_1).apply(null,arguments)},go=b._emscripten_bind_MdGePoint3d___destroy___0=
  328. function(){return(go=b._emscripten_bind_MdGePoint3d___destroy___0=b.asm.emscripten_bind_MdGePoint3d___destroy___0).apply(null,arguments)},ho=b._emscripten_bind_MxMemoryData_clear_0=function(){return(ho=b._emscripten_bind_MxMemoryData_clear_0=b.asm.emscripten_bind_MxMemoryData_clear_0).apply(null,arguments)},io=b._emscripten_bind_MxMemoryData_getData_0=function(){return(io=b._emscripten_bind_MxMemoryData_getData_0=b.asm.emscripten_bind_MxMemoryData_getData_0).apply(null,arguments)},jo=b._emscripten_bind_MxMemoryData_getSize_0=
  329. function(){return(jo=b._emscripten_bind_MxMemoryData_getSize_0=b.asm.emscripten_bind_MxMemoryData_getSize_0).apply(null,arguments)},ko=b._emscripten_bind_MxMemoryData___destroy___0=function(){return(ko=b._emscripten_bind_MxMemoryData___destroy___0=b.asm.emscripten_bind_MxMemoryData___destroy___0).apply(null,arguments)},lo=b._emscripten_bind_MdGePoint3dArray_MdGePoint3dArray_0=function(){return(lo=b._emscripten_bind_MdGePoint3dArray_MdGePoint3dArray_0=b.asm.emscripten_bind_MdGePoint3dArray_MdGePoint3dArray_0).apply(null,
  330. arguments)},mo=b._emscripten_bind_MdGePoint3dArray_append_1=function(){return(mo=b._emscripten_bind_MdGePoint3dArray_append_1=b.asm.emscripten_bind_MdGePoint3dArray_append_1).apply(null,arguments)},no=b._emscripten_bind_MdGePoint3dArray_length_0=function(){return(no=b._emscripten_bind_MdGePoint3dArray_length_0=b.asm.emscripten_bind_MdGePoint3dArray_length_0).apply(null,arguments)},oo=b._emscripten_bind_MdGePoint3dArray_at_1=function(){return(oo=b._emscripten_bind_MdGePoint3dArray_at_1=b.asm.emscripten_bind_MdGePoint3dArray_at_1).apply(null,
  331. arguments)},po=b._emscripten_bind_MdGePoint3dArray_setAt_2=function(){return(po=b._emscripten_bind_MdGePoint3dArray_setAt_2=b.asm.emscripten_bind_MdGePoint3dArray_setAt_2).apply(null,arguments)},qo=b._emscripten_bind_MdGePoint3dArray_clear_0=function(){return(qo=b._emscripten_bind_MdGePoint3dArray_clear_0=b.asm.emscripten_bind_MdGePoint3dArray_clear_0).apply(null,arguments)},ro=b._emscripten_bind_MdGePoint3dArray_copy_1=function(){return(ro=b._emscripten_bind_MdGePoint3dArray_copy_1=b.asm.emscripten_bind_MdGePoint3dArray_copy_1).apply(null,
  332. arguments)},so=b._emscripten_bind_MdGePoint3dArray___destroy___0=function(){return(so=b._emscripten_bind_MdGePoint3dArray___destroy___0=b.asm.emscripten_bind_MdGePoint3dArray___destroy___0).apply(null,arguments)},to=b._emscripten_bind_MdGeVector3d_MdGeVector3d_0=function(){return(to=b._emscripten_bind_MdGeVector3d_MdGeVector3d_0=b.asm.emscripten_bind_MdGeVector3d_MdGeVector3d_0).apply(null,arguments)},uo=b._emscripten_bind_MdGeVector3d_MdGeVector3d_3=function(){return(uo=b._emscripten_bind_MdGeVector3d_MdGeVector3d_3=
  333. b.asm.emscripten_bind_MdGeVector3d_MdGeVector3d_3).apply(null,arguments)},vo=b._emscripten_bind_MdGeVector3d_rotateBy_2=function(){return(vo=b._emscripten_bind_MdGeVector3d_rotateBy_2=b.asm.emscripten_bind_MdGeVector3d_rotateBy_2).apply(null,arguments)},wo=b._emscripten_bind_MdGeVector3d_negate_0=function(){return(wo=b._emscripten_bind_MdGeVector3d_negate_0=b.asm.emscripten_bind_MdGeVector3d_negate_0).apply(null,arguments)},xo=b._emscripten_bind_MdGeVector3d_perpVector_0=function(){return(xo=b._emscripten_bind_MdGeVector3d_perpVector_0=
  334. b.asm.emscripten_bind_MdGeVector3d_perpVector_0).apply(null,arguments)},yo=b._emscripten_bind_MdGeVector3d_angleTo_1=function(){return(yo=b._emscripten_bind_MdGeVector3d_angleTo_1=b.asm.emscripten_bind_MdGeVector3d_angleTo_1).apply(null,arguments)},zo=b._emscripten_bind_MdGeVector3d_angleTo_2=function(){return(zo=b._emscripten_bind_MdGeVector3d_angleTo_2=b.asm.emscripten_bind_MdGeVector3d_angleTo_2).apply(null,arguments)},Ao=b._emscripten_bind_MdGeVector3d_normalize_0=function(){return(Ao=b._emscripten_bind_MdGeVector3d_normalize_0=
  335. b.asm.emscripten_bind_MdGeVector3d_normalize_0).apply(null,arguments)},Bo=b._emscripten_bind_MdGeVector3d_length_0=function(){return(Bo=b._emscripten_bind_MdGeVector3d_length_0=b.asm.emscripten_bind_MdGeVector3d_length_0).apply(null,arguments)},Co=b._emscripten_bind_MdGeVector3d_isUnitLength_0=function(){return(Co=b._emscripten_bind_MdGeVector3d_isUnitLength_0=b.asm.emscripten_bind_MdGeVector3d_isUnitLength_0).apply(null,arguments)},Do=b._emscripten_bind_MdGeVector3d_isZeroLength_0=function(){return(Do=
  336. b._emscripten_bind_MdGeVector3d_isZeroLength_0=b.asm.emscripten_bind_MdGeVector3d_isZeroLength_0).apply(null,arguments)},Eo=b._emscripten_bind_MdGeVector3d_dotProduct_1=function(){return(Eo=b._emscripten_bind_MdGeVector3d_dotProduct_1=b.asm.emscripten_bind_MdGeVector3d_dotProduct_1).apply(null,arguments)},Fo=b._emscripten_bind_MdGeVector3d_crossProduct_1=function(){return(Fo=b._emscripten_bind_MdGeVector3d_crossProduct_1=b.asm.emscripten_bind_MdGeVector3d_crossProduct_1).apply(null,arguments)},Go=
  337. b._emscripten_bind_MdGeVector3d_isEqualTo_1=function(){return(Go=b._emscripten_bind_MdGeVector3d_isEqualTo_1=b.asm.emscripten_bind_MdGeVector3d_isEqualTo_1).apply(null,arguments)},Ho=b._emscripten_bind_MdGeVector3d_mult_1=function(){return(Ho=b._emscripten_bind_MdGeVector3d_mult_1=b.asm.emscripten_bind_MdGeVector3d_mult_1).apply(null,arguments)},Io=b._emscripten_bind_MdGeVector3d_get_x_0=function(){return(Io=b._emscripten_bind_MdGeVector3d_get_x_0=b.asm.emscripten_bind_MdGeVector3d_get_x_0).apply(null,
  338. arguments)},Jo=b._emscripten_bind_MdGeVector3d_set_x_1=function(){return(Jo=b._emscripten_bind_MdGeVector3d_set_x_1=b.asm.emscripten_bind_MdGeVector3d_set_x_1).apply(null,arguments)},Ko=b._emscripten_bind_MdGeVector3d_get_y_0=function(){return(Ko=b._emscripten_bind_MdGeVector3d_get_y_0=b.asm.emscripten_bind_MdGeVector3d_get_y_0).apply(null,arguments)},Lo=b._emscripten_bind_MdGeVector3d_set_y_1=function(){return(Lo=b._emscripten_bind_MdGeVector3d_set_y_1=b.asm.emscripten_bind_MdGeVector3d_set_y_1).apply(null,
  339. arguments)},Mo=b._emscripten_bind_MdGeVector3d_get_z_0=function(){return(Mo=b._emscripten_bind_MdGeVector3d_get_z_0=b.asm.emscripten_bind_MdGeVector3d_get_z_0).apply(null,arguments)},No=b._emscripten_bind_MdGeVector3d_set_z_1=function(){return(No=b._emscripten_bind_MdGeVector3d_set_z_1=b.asm.emscripten_bind_MdGeVector3d_set_z_1).apply(null,arguments)},Oo=b._emscripten_bind_MdGeVector3d___destroy___0=function(){return(Oo=b._emscripten_bind_MdGeVector3d___destroy___0=b.asm.emscripten_bind_MdGeVector3d___destroy___0).apply(null,
  340. arguments)},Po=b._emscripten_bind_MdGeLongArray_MdGeLongArray_0=function(){return(Po=b._emscripten_bind_MdGeLongArray_MdGeLongArray_0=b.asm.emscripten_bind_MdGeLongArray_MdGeLongArray_0).apply(null,arguments)},Qo=b._emscripten_bind_MdGeLongArray_append_1=function(){return(Qo=b._emscripten_bind_MdGeLongArray_append_1=b.asm.emscripten_bind_MdGeLongArray_append_1).apply(null,arguments)},Ro=b._emscripten_bind_MdGeLongArray_length_0=function(){return(Ro=b._emscripten_bind_MdGeLongArray_length_0=b.asm.emscripten_bind_MdGeLongArray_length_0).apply(null,
  341. arguments)},So=b._emscripten_bind_MdGeLongArray_at_1=function(){return(So=b._emscripten_bind_MdGeLongArray_at_1=b.asm.emscripten_bind_MdGeLongArray_at_1).apply(null,arguments)},To=b._emscripten_bind_MdGeLongArray_setAt_2=function(){return(To=b._emscripten_bind_MdGeLongArray_setAt_2=b.asm.emscripten_bind_MdGeLongArray_setAt_2).apply(null,arguments)},Uo=b._emscripten_bind_MdGeLongArray_copy_1=function(){return(Uo=b._emscripten_bind_MdGeLongArray_copy_1=b.asm.emscripten_bind_MdGeLongArray_copy_1).apply(null,
  342. arguments)},Vo=b._emscripten_bind_MdGeLongArray_clear_0=function(){return(Vo=b._emscripten_bind_MdGeLongArray_clear_0=b.asm.emscripten_bind_MdGeLongArray_clear_0).apply(null,arguments)},Wo=b._emscripten_bind_MdGeLongArray___destroy___0=function(){return(Wo=b._emscripten_bind_MdGeLongArray___destroy___0=b.asm.emscripten_bind_MdGeLongArray___destroy___0).apply(null,arguments)},Xo=b._emscripten_bind_MdGeStringArray_MdGeStringArray_0=function(){return(Xo=b._emscripten_bind_MdGeStringArray_MdGeStringArray_0=
  343. b.asm.emscripten_bind_MdGeStringArray_MdGeStringArray_0).apply(null,arguments)},Yo=b._emscripten_bind_MdGeStringArray_append_1=function(){return(Yo=b._emscripten_bind_MdGeStringArray_append_1=b.asm.emscripten_bind_MdGeStringArray_append_1).apply(null,arguments)},Zo=b._emscripten_bind_MdGeStringArray_length_0=function(){return(Zo=b._emscripten_bind_MdGeStringArray_length_0=b.asm.emscripten_bind_MdGeStringArray_length_0).apply(null,arguments)},$o=b._emscripten_bind_MdGeStringArray_at_1=function(){return($o=
  344. b._emscripten_bind_MdGeStringArray_at_1=b.asm.emscripten_bind_MdGeStringArray_at_1).apply(null,arguments)},ap=b._emscripten_bind_MdGeStringArray_setAt_2=function(){return(ap=b._emscripten_bind_MdGeStringArray_setAt_2=b.asm.emscripten_bind_MdGeStringArray_setAt_2).apply(null,arguments)},bp=b._emscripten_bind_MdGeStringArray_copy_1=function(){return(bp=b._emscripten_bind_MdGeStringArray_copy_1=b.asm.emscripten_bind_MdGeStringArray_copy_1).apply(null,arguments)},cp=b._emscripten_bind_MdGeStringArray_clear_0=
  345. function(){return(cp=b._emscripten_bind_MdGeStringArray_clear_0=b.asm.emscripten_bind_MdGeStringArray_clear_0).apply(null,arguments)},dp=b._emscripten_bind_MdGeStringArray___destroy___0=function(){return(dp=b._emscripten_bind_MdGeStringArray___destroy___0=b.asm.emscripten_bind_MdGeStringArray___destroy___0).apply(null,arguments)},ep=b._emscripten_bind_MdGeDoubleArray_MdGeDoubleArray_0=function(){return(ep=b._emscripten_bind_MdGeDoubleArray_MdGeDoubleArray_0=b.asm.emscripten_bind_MdGeDoubleArray_MdGeDoubleArray_0).apply(null,
  346. arguments)},fp=b._emscripten_bind_MdGeDoubleArray_append_1=function(){return(fp=b._emscripten_bind_MdGeDoubleArray_append_1=b.asm.emscripten_bind_MdGeDoubleArray_append_1).apply(null,arguments)},gp=b._emscripten_bind_MdGeDoubleArray_length_0=function(){return(gp=b._emscripten_bind_MdGeDoubleArray_length_0=b.asm.emscripten_bind_MdGeDoubleArray_length_0).apply(null,arguments)},hp=b._emscripten_bind_MdGeDoubleArray_at_1=function(){return(hp=b._emscripten_bind_MdGeDoubleArray_at_1=b.asm.emscripten_bind_MdGeDoubleArray_at_1).apply(null,
  347. arguments)},ip=b._emscripten_bind_MdGeDoubleArray_setAt_2=function(){return(ip=b._emscripten_bind_MdGeDoubleArray_setAt_2=b.asm.emscripten_bind_MdGeDoubleArray_setAt_2).apply(null,arguments)},jp=b._emscripten_bind_MdGeDoubleArray_copy_1=function(){return(jp=b._emscripten_bind_MdGeDoubleArray_copy_1=b.asm.emscripten_bind_MdGeDoubleArray_copy_1).apply(null,arguments)},kp=b._emscripten_bind_MdGeDoubleArray_clear_0=function(){return(kp=b._emscripten_bind_MdGeDoubleArray_clear_0=b.asm.emscripten_bind_MdGeDoubleArray_clear_0).apply(null,
  348. arguments)},lp=b._emscripten_bind_MdGeDoubleArray___destroy___0=function(){return(lp=b._emscripten_bind_MdGeDoubleArray___destroy___0=b.asm.emscripten_bind_MdGeDoubleArray___destroy___0).apply(null,arguments)},mp=b._emscripten_bind_MdGeMatrix3d_MdGeMatrix3d_0=function(){return(mp=b._emscripten_bind_MdGeMatrix3d_MdGeMatrix3d_0=b.asm.emscripten_bind_MdGeMatrix3d_MdGeMatrix3d_0).apply(null,arguments)},np=b._emscripten_bind_MdGeMatrix3d_setToIdentity_0=function(){return(np=b._emscripten_bind_MdGeMatrix3d_setToIdentity_0=
  349. b.asm.emscripten_bind_MdGeMatrix3d_setToIdentity_0).apply(null,arguments)},op=b._emscripten_bind_MdGeMatrix3d_preMultBy_1=function(){return(op=b._emscripten_bind_MdGeMatrix3d_preMultBy_1=b.asm.emscripten_bind_MdGeMatrix3d_preMultBy_1).apply(null,arguments)},pp=b._emscripten_bind_MdGeMatrix3d_postMultBy_1=function(){return(pp=b._emscripten_bind_MdGeMatrix3d_postMultBy_1=b.asm.emscripten_bind_MdGeMatrix3d_postMultBy_1).apply(null,arguments)},qp=b._emscripten_bind_MdGeMatrix3d_setToProduct_2=function(){return(qp=
  350. b._emscripten_bind_MdGeMatrix3d_setToProduct_2=b.asm.emscripten_bind_MdGeMatrix3d_setToProduct_2).apply(null,arguments)},rp=b._emscripten_bind_MdGeMatrix3d_invert_0=function(){return(rp=b._emscripten_bind_MdGeMatrix3d_invert_0=b.asm.emscripten_bind_MdGeMatrix3d_invert_0).apply(null,arguments)},sp=b._emscripten_bind_MdGeMatrix3d_isSingular_0=function(){return(sp=b._emscripten_bind_MdGeMatrix3d_isSingular_0=b.asm.emscripten_bind_MdGeMatrix3d_isSingular_0).apply(null,arguments)},tp=b._emscripten_bind_MdGeMatrix3d_transposeIt_0=
  351. function(){return(tp=b._emscripten_bind_MdGeMatrix3d_transposeIt_0=b.asm.emscripten_bind_MdGeMatrix3d_transposeIt_0).apply(null,arguments)},up=b._emscripten_bind_MdGeMatrix3d_isEqualTo_1=function(){return(up=b._emscripten_bind_MdGeMatrix3d_isEqualTo_1=b.asm.emscripten_bind_MdGeMatrix3d_isEqualTo_1).apply(null,arguments)},vp=b._emscripten_bind_MdGeMatrix3d_det_0=function(){return(vp=b._emscripten_bind_MdGeMatrix3d_det_0=b.asm.emscripten_bind_MdGeMatrix3d_det_0).apply(null,arguments)},wp=b._emscripten_bind_MdGeMatrix3d_setCoordSystem_4=
  352. function(){return(wp=b._emscripten_bind_MdGeMatrix3d_setCoordSystem_4=b.asm.emscripten_bind_MdGeMatrix3d_setCoordSystem_4).apply(null,arguments)},xp=b._emscripten_bind_MdGeMatrix3d_setToTranslation_1=function(){return(xp=b._emscripten_bind_MdGeMatrix3d_setToTranslation_1=b.asm.emscripten_bind_MdGeMatrix3d_setToTranslation_1).apply(null,arguments)},yp=b._emscripten_bind_MdGeMatrix3d_setToRotation_3=function(){return(yp=b._emscripten_bind_MdGeMatrix3d_setToRotation_3=b.asm.emscripten_bind_MdGeMatrix3d_setToRotation_3).apply(null,
  353. arguments)},zp=b._emscripten_bind_MdGeMatrix3d_setToScaling_2=function(){return(zp=b._emscripten_bind_MdGeMatrix3d_setToScaling_2=b.asm.emscripten_bind_MdGeMatrix3d_setToScaling_2).apply(null,arguments)},Ap=b._emscripten_bind_MdGeMatrix3d_setMirror_2=function(){return(Ap=b._emscripten_bind_MdGeMatrix3d_setMirror_2=b.asm.emscripten_bind_MdGeMatrix3d_setMirror_2).apply(null,arguments)},Bp=b._emscripten_bind_MdGeMatrix3d_scale_0=function(){return(Bp=b._emscripten_bind_MdGeMatrix3d_scale_0=b.asm.emscripten_bind_MdGeMatrix3d_scale_0).apply(null,
  354. arguments)},Cp=b._emscripten_bind_MdGeMatrix3d_getData_2=function(){return(Cp=b._emscripten_bind_MdGeMatrix3d_getData_2=b.asm.emscripten_bind_MdGeMatrix3d_getData_2).apply(null,arguments)},Dp=b._emscripten_bind_MdGeMatrix3d_copy_1=function(){return(Dp=b._emscripten_bind_MdGeMatrix3d_copy_1=b.asm.emscripten_bind_MdGeMatrix3d_copy_1).apply(null,arguments)},Ep=b._emscripten_bind_MdGeMatrix3d_copyFormPointer_1=function(){return(Ep=b._emscripten_bind_MdGeMatrix3d_copyFormPointer_1=b.asm.emscripten_bind_MdGeMatrix3d_copyFormPointer_1).apply(null,
  355. arguments)},Fp=b._emscripten_bind_MdGeMatrix3d___destroy___0=function(){return(Fp=b._emscripten_bind_MdGeMatrix3d___destroy___0=b.asm.emscripten_bind_MdGeMatrix3d___destroy___0).apply(null,arguments)},Gp=b._emscripten_bind_MdDbLayerTableRecord_MdDbLayerTableRecord_0=function(){return(Gp=b._emscripten_bind_MdDbLayerTableRecord_MdDbLayerTableRecord_0=b.asm.emscripten_bind_MdDbLayerTableRecord_MdDbLayerTableRecord_0).apply(null,arguments)},Hp=b._emscripten_bind_MdDbLayerTableRecord_getName_0=function(){return(Hp=
  356. b._emscripten_bind_MdDbLayerTableRecord_getName_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getName_0).apply(null,arguments)},Ip=b._emscripten_bind_MdDbLayerTableRecord_setName_1=function(){return(Ip=b._emscripten_bind_MdDbLayerTableRecord_setName_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setName_1).apply(null,arguments)},Jp=b._emscripten_bind_MdDbLayerTableRecord_isFrozen_0=function(){return(Jp=b._emscripten_bind_MdDbLayerTableRecord_isFrozen_0=b.asm.emscripten_bind_MdDbLayerTableRecord_isFrozen_0).apply(null,
  357. arguments)},Kp=b._emscripten_bind_MdDbLayerTableRecord_setIsFrozen_1=function(){return(Kp=b._emscripten_bind_MdDbLayerTableRecord_setIsFrozen_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setIsFrozen_1).apply(null,arguments)},Lp=b._emscripten_bind_MdDbLayerTableRecord_isOff_0=function(){return(Lp=b._emscripten_bind_MdDbLayerTableRecord_isOff_0=b.asm.emscripten_bind_MdDbLayerTableRecord_isOff_0).apply(null,arguments)},Mp=b._emscripten_bind_MdDbLayerTableRecord_setIsOff_1=function(){return(Mp=b._emscripten_bind_MdDbLayerTableRecord_setIsOff_1=
  358. b.asm.emscripten_bind_MdDbLayerTableRecord_setIsOff_1).apply(null,arguments)},Np=b._emscripten_bind_MdDbLayerTableRecord_isLocked_0=function(){return(Np=b._emscripten_bind_MdDbLayerTableRecord_isLocked_0=b.asm.emscripten_bind_MdDbLayerTableRecord_isLocked_0).apply(null,arguments)},Op=b._emscripten_bind_MdDbLayerTableRecord_setIsLocked_1=function(){return(Op=b._emscripten_bind_MdDbLayerTableRecord_setIsLocked_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setIsLocked_1).apply(null,arguments)},Pp=b._emscripten_bind_MdDbLayerTableRecord_color_0=
  359. function(){return(Pp=b._emscripten_bind_MdDbLayerTableRecord_color_0=b.asm.emscripten_bind_MdDbLayerTableRecord_color_0).apply(null,arguments)},Qp=b._emscripten_bind_MdDbLayerTableRecord_setColor_1=function(){return(Qp=b._emscripten_bind_MdDbLayerTableRecord_setColor_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setColor_1).apply(null,arguments)},Rp=b._emscripten_bind_MdDbLayerTableRecord_linetypeObjectId_0=function(){return(Rp=b._emscripten_bind_MdDbLayerTableRecord_linetypeObjectId_0=b.asm.emscripten_bind_MdDbLayerTableRecord_linetypeObjectId_0).apply(null,
  360. arguments)},Sp=b._emscripten_bind_MdDbLayerTableRecord_setLinetypeObjectId_1=function(){return(Sp=b._emscripten_bind_MdDbLayerTableRecord_setLinetypeObjectId_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setLinetypeObjectId_1).apply(null,arguments)},Tp=b._emscripten_bind_MdDbLayerTableRecord_lineWeight_0=function(){return(Tp=b._emscripten_bind_MdDbLayerTableRecord_lineWeight_0=b.asm.emscripten_bind_MdDbLayerTableRecord_lineWeight_0).apply(null,arguments)},Up=b._emscripten_bind_MdDbLayerTableRecord_setLineWeight_1=
  361. function(){return(Up=b._emscripten_bind_MdDbLayerTableRecord_setLineWeight_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setLineWeight_1).apply(null,arguments)},Vp=b._emscripten_bind_MdDbLayerTableRecord_GetObjectID_0=function(){return(Vp=b._emscripten_bind_MdDbLayerTableRecord_GetObjectID_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetObjectID_0).apply(null,arguments)},Wp=b._emscripten_bind_MdDbLayerTableRecord_Erase_0=function(){return(Wp=b._emscripten_bind_MdDbLayerTableRecord_Erase_0=b.asm.emscripten_bind_MdDbLayerTableRecord_Erase_0).apply(null,
  362. arguments)},Xp=b._emscripten_bind_MdDbLayerTableRecord_isErased_0=function(){return(Xp=b._emscripten_bind_MdDbLayerTableRecord_isErased_0=b.asm.emscripten_bind_MdDbLayerTableRecord_isErased_0).apply(null,arguments)},Yp=b._emscripten_bind_MdDbLayerTableRecord_unErase_0=function(){return(Yp=b._emscripten_bind_MdDbLayerTableRecord_unErase_0=b.asm.emscripten_bind_MdDbLayerTableRecord_unErase_0).apply(null,arguments)},Zp=b._emscripten_bind_MdDbLayerTableRecord_ConnectionTempObject_1=function(){return(Zp=
  363. b._emscripten_bind_MdDbLayerTableRecord_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbLayerTableRecord_ConnectionTempObject_1).apply(null,arguments)},$p=b._emscripten_bind_MdDbLayerTableRecord_GetExtensionDictionary_0=function(){return($p=b._emscripten_bind_MdDbLayerTableRecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetExtensionDictionary_0).apply(null,arguments)},aq=b._emscripten_bind_MdDbLayerTableRecord_CreateExtensionDictionary_0=function(){return(aq=b._emscripten_bind_MdDbLayerTableRecord_CreateExtensionDictionary_0=
  364. b.asm.emscripten_bind_MdDbLayerTableRecord_CreateExtensionDictionary_0).apply(null,arguments)},bq=b._emscripten_bind_MdDbLayerTableRecord_IsHaveExtensionDictionary_0=function(){return(bq=b._emscripten_bind_MdDbLayerTableRecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbLayerTableRecord_IsHaveExtensionDictionary_0).apply(null,arguments)},cq=b._emscripten_bind_MdDbLayerTableRecord_Clone_0=function(){return(cq=b._emscripten_bind_MdDbLayerTableRecord_Clone_0=b.asm.emscripten_bind_MdDbLayerTableRecord_Clone_0).apply(null,
  365. arguments)},dq=b._emscripten_bind_MdDbLayerTableRecord_GetHandle_0=function(){return(dq=b._emscripten_bind_MdDbLayerTableRecord_GetHandle_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetHandle_0).apply(null,arguments)},eq=b._emscripten_bind_MdDbLayerTableRecord_GetDatabase_0=function(){return(eq=b._emscripten_bind_MdDbLayerTableRecord_GetDatabase_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetDatabase_0).apply(null,arguments)},fq=b._emscripten_bind_MdDbLayerTableRecord_GetDatabaseIndexId_0=function(){return(fq=
  366. b._emscripten_bind_MdDbLayerTableRecord_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetDatabaseIndexId_0).apply(null,arguments)},gq=b._emscripten_bind_MdDbLayerTableRecord_GetOwnerID_0=function(){return(gq=b._emscripten_bind_MdDbLayerTableRecord_GetOwnerID_0=b.asm.emscripten_bind_MdDbLayerTableRecord_GetOwnerID_0).apply(null,arguments)},hq=b._emscripten_bind_MdDbLayerTableRecord_assertObjectModification_1=function(){return(hq=b._emscripten_bind_MdDbLayerTableRecord_assertObjectModification_1=
  367. b.asm.emscripten_bind_MdDbLayerTableRecord_assertObjectModification_1).apply(null,arguments)},iq=b._emscripten_bind_MdDbLayerTableRecord_moveGripPointsAt_4=function(){return(iq=b._emscripten_bind_MdDbLayerTableRecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbLayerTableRecord_moveGripPointsAt_4).apply(null,arguments)},jq=b._emscripten_bind_MdDbLayerTableRecord_getGripPoints_0=function(){return(jq=b._emscripten_bind_MdDbLayerTableRecord_getGripPoints_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getGripPoints_0).apply(null,
  368. arguments)},kq=b._emscripten_bind_MdDbLayerTableRecord_getObjectName_0=function(){return(kq=b._emscripten_bind_MdDbLayerTableRecord_getObjectName_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getObjectName_0).apply(null,arguments)},lq=b._emscripten_bind_MdDbLayerTableRecord_getDxf0_0=function(){return(lq=b._emscripten_bind_MdDbLayerTableRecord_getDxf0_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getDxf0_0).apply(null,arguments)},mq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityTypeName_0=
  369. function(){return(mq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getCustomEntityTypeName_0).apply(null,arguments)},nq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityid_0=function(){return(nq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityid_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getCustomEntityid_0).apply(null,arguments)},oq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityTempid_0=function(){return(oq=b._emscripten_bind_MdDbLayerTableRecord_getCustomEntityTempid_0=
  370. b.asm.emscripten_bind_MdDbLayerTableRecord_getCustomEntityTempid_0).apply(null,arguments)},pq=b._emscripten_bind_MdDbLayerTableRecord_setCustomEntityTempid_1=function(){return(pq=b._emscripten_bind_MdDbLayerTableRecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setCustomEntityTempid_1).apply(null,arguments)},qq=b._emscripten_bind_MdDbLayerTableRecord_getJson_0=function(){return(qq=b._emscripten_bind_MdDbLayerTableRecord_getJson_0=b.asm.emscripten_bind_MdDbLayerTableRecord_getJson_0).apply(null,
  371. arguments)},rq=b._emscripten_bind_MdDbLayerTableRecord_setJson_1=function(){return(rq=b._emscripten_bind_MdDbLayerTableRecord_setJson_1=b.asm.emscripten_bind_MdDbLayerTableRecord_setJson_1).apply(null,arguments)},sq=b._emscripten_bind_MdDbLayerTableRecord_isKindOf_1=function(){return(sq=b._emscripten_bind_MdDbLayerTableRecord_isKindOf_1=b.asm.emscripten_bind_MdDbLayerTableRecord_isKindOf_1).apply(null,arguments)},tq=b._emscripten_bind_MdDbLayerTableRecord_isNull_0=function(){return(tq=b._emscripten_bind_MdDbLayerTableRecord_isNull_0=
  372. b.asm.emscripten_bind_MdDbLayerTableRecord_isNull_0).apply(null,arguments)},uq=b._emscripten_bind_MdDbLayerTableRecord___destroy___0=function(){return(uq=b._emscripten_bind_MdDbLayerTableRecord___destroy___0=b.asm.emscripten_bind_MdDbLayerTableRecord___destroy___0).apply(null,arguments)},vq=b._emscripten_bind_MdDbLinetypeTableRecord_MdDbLinetypeTableRecord_0=function(){return(vq=b._emscripten_bind_MdDbLinetypeTableRecord_MdDbLinetypeTableRecord_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_MdDbLinetypeTableRecord_0).apply(null,
  373. arguments)},wq=b._emscripten_bind_MdDbLinetypeTableRecord_getName_0=function(){return(wq=b._emscripten_bind_MdDbLinetypeTableRecord_getName_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getName_0).apply(null,arguments)},xq=b._emscripten_bind_MdDbLinetypeTableRecord_setName_1=function(){return(xq=b._emscripten_bind_MdDbLinetypeTableRecord_setName_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setName_1).apply(null,arguments)},yq=b._emscripten_bind_MdDbLinetypeTableRecord_numDashes_0=function(){return(yq=
  374. b._emscripten_bind_MdDbLinetypeTableRecord_numDashes_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_numDashes_0).apply(null,arguments)},zq=b._emscripten_bind_MdDbLinetypeTableRecord_setNumDashes_1=function(){return(zq=b._emscripten_bind_MdDbLinetypeTableRecord_setNumDashes_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setNumDashes_1).apply(null,arguments)},Aq=b._emscripten_bind_MdDbLinetypeTableRecord_dashLengthAt_1=function(){return(Aq=b._emscripten_bind_MdDbLinetypeTableRecord_dashLengthAt_1=
  375. b.asm.emscripten_bind_MdDbLinetypeTableRecord_dashLengthAt_1).apply(null,arguments)},Bq=b._emscripten_bind_MdDbLinetypeTableRecord_setDashLengthAt_2=function(){return(Bq=b._emscripten_bind_MdDbLinetypeTableRecord_setDashLengthAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setDashLengthAt_2).apply(null,arguments)},Cq=b._emscripten_bind_MdDbLinetypeTableRecord_comments_0=function(){return(Cq=b._emscripten_bind_MdDbLinetypeTableRecord_comments_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_comments_0).apply(null,
  376. arguments)},Dq=b._emscripten_bind_MdDbLinetypeTableRecord_setComments_1=function(){return(Dq=b._emscripten_bind_MdDbLinetypeTableRecord_setComments_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setComments_1).apply(null,arguments)},Eq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeStyleAt_1=function(){return(Eq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeStyleAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeStyleAt_1).apply(null,arguments)},Fq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeStyleAt_2=
  377. function(){return(Fq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeStyleAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeStyleAt_2).apply(null,arguments)},Gq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeNumberAt_1=function(){return(Gq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeNumberAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeNumberAt_1).apply(null,arguments)},Hq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeNumberAt_2=function(){return(Hq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeNumberAt_2=
  378. b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeNumberAt_2).apply(null,arguments)},Iq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeOffsetAt_1=function(){return(Iq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeOffsetAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeOffsetAt_1).apply(null,arguments)},Jq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeOffsetAt_2=function(){return(Jq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeOffsetAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeOffsetAt_2).apply(null,
  379. arguments)},Kq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeScaleAt_1=function(){return(Kq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeScaleAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeScaleAt_1).apply(null,arguments)},Lq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeScaleAt_2=function(){return(Lq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeScaleAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeScaleAt_2).apply(null,arguments)},Mq=b._emscripten_bind_MdDbLinetypeTableRecord_isScaledToFit_0=
  380. function(){return(Mq=b._emscripten_bind_MdDbLinetypeTableRecord_isScaledToFit_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_isScaledToFit_0).apply(null,arguments)},Nq=b._emscripten_bind_MdDbLinetypeTableRecord_setIsScaledToFit_1=function(){return(Nq=b._emscripten_bind_MdDbLinetypeTableRecord_setIsScaledToFit_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setIsScaledToFit_1).apply(null,arguments)},Oq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeIsUcsOrientedAt_1=function(){return(Oq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeIsUcsOrientedAt_1=
  381. b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeIsUcsOrientedAt_1).apply(null,arguments)},Pq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeIsUcsOrientedAt_2=function(){return(Pq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeIsUcsOrientedAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeIsUcsOrientedAt_2).apply(null,arguments)},Qq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeRotationAt_1=function(){return(Qq=b._emscripten_bind_MdDbLinetypeTableRecord_shapeRotationAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_shapeRotationAt_1).apply(null,
  382. arguments)},Rq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeRotationAt_2=function(){return(Rq=b._emscripten_bind_MdDbLinetypeTableRecord_setShapeRotationAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setShapeRotationAt_2).apply(null,arguments)},Sq=b._emscripten_bind_MdDbLinetypeTableRecord_textAt_1=function(){return(Sq=b._emscripten_bind_MdDbLinetypeTableRecord_textAt_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_textAt_1).apply(null,arguments)},Tq=b._emscripten_bind_MdDbLinetypeTableRecord_setTextAt_2=
  383. function(){return(Tq=b._emscripten_bind_MdDbLinetypeTableRecord_setTextAt_2=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setTextAt_2).apply(null,arguments)},Uq=b._emscripten_bind_MdDbLinetypeTableRecord_GetObjectID_0=function(){return(Uq=b._emscripten_bind_MdDbLinetypeTableRecord_GetObjectID_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetObjectID_0).apply(null,arguments)},Vq=b._emscripten_bind_MdDbLinetypeTableRecord_Erase_0=function(){return(Vq=b._emscripten_bind_MdDbLinetypeTableRecord_Erase_0=
  384. b.asm.emscripten_bind_MdDbLinetypeTableRecord_Erase_0).apply(null,arguments)},Wq=b._emscripten_bind_MdDbLinetypeTableRecord_isErased_0=function(){return(Wq=b._emscripten_bind_MdDbLinetypeTableRecord_isErased_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_isErased_0).apply(null,arguments)},Xq=b._emscripten_bind_MdDbLinetypeTableRecord_unErase_0=function(){return(Xq=b._emscripten_bind_MdDbLinetypeTableRecord_unErase_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_unErase_0).apply(null,arguments)},
  385. Yq=b._emscripten_bind_MdDbLinetypeTableRecord_ConnectionTempObject_1=function(){return(Yq=b._emscripten_bind_MdDbLinetypeTableRecord_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_ConnectionTempObject_1).apply(null,arguments)},Zq=b._emscripten_bind_MdDbLinetypeTableRecord_GetExtensionDictionary_0=function(){return(Zq=b._emscripten_bind_MdDbLinetypeTableRecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetExtensionDictionary_0).apply(null,arguments)},
  386. $q=b._emscripten_bind_MdDbLinetypeTableRecord_CreateExtensionDictionary_0=function(){return($q=b._emscripten_bind_MdDbLinetypeTableRecord_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_CreateExtensionDictionary_0).apply(null,arguments)},ar=b._emscripten_bind_MdDbLinetypeTableRecord_IsHaveExtensionDictionary_0=function(){return(ar=b._emscripten_bind_MdDbLinetypeTableRecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_IsHaveExtensionDictionary_0).apply(null,
  387. arguments)},br=b._emscripten_bind_MdDbLinetypeTableRecord_Clone_0=function(){return(br=b._emscripten_bind_MdDbLinetypeTableRecord_Clone_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_Clone_0).apply(null,arguments)},cr=b._emscripten_bind_MdDbLinetypeTableRecord_GetHandle_0=function(){return(cr=b._emscripten_bind_MdDbLinetypeTableRecord_GetHandle_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetHandle_0).apply(null,arguments)},dr=b._emscripten_bind_MdDbLinetypeTableRecord_GetDatabase_0=function(){return(dr=
  388. b._emscripten_bind_MdDbLinetypeTableRecord_GetDatabase_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetDatabase_0).apply(null,arguments)},er=b._emscripten_bind_MdDbLinetypeTableRecord_GetDatabaseIndexId_0=function(){return(er=b._emscripten_bind_MdDbLinetypeTableRecord_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetDatabaseIndexId_0).apply(null,arguments)},fr=b._emscripten_bind_MdDbLinetypeTableRecord_GetOwnerID_0=function(){return(fr=b._emscripten_bind_MdDbLinetypeTableRecord_GetOwnerID_0=
  389. b.asm.emscripten_bind_MdDbLinetypeTableRecord_GetOwnerID_0).apply(null,arguments)},gr=b._emscripten_bind_MdDbLinetypeTableRecord_assertObjectModification_1=function(){return(gr=b._emscripten_bind_MdDbLinetypeTableRecord_assertObjectModification_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_assertObjectModification_1).apply(null,arguments)},hr=b._emscripten_bind_MdDbLinetypeTableRecord_moveGripPointsAt_4=function(){return(hr=b._emscripten_bind_MdDbLinetypeTableRecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbLinetypeTableRecord_moveGripPointsAt_4).apply(null,
  390. arguments)},ir=b._emscripten_bind_MdDbLinetypeTableRecord_getGripPoints_0=function(){return(ir=b._emscripten_bind_MdDbLinetypeTableRecord_getGripPoints_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getGripPoints_0).apply(null,arguments)},jr=b._emscripten_bind_MdDbLinetypeTableRecord_getObjectName_0=function(){return(jr=b._emscripten_bind_MdDbLinetypeTableRecord_getObjectName_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getObjectName_0).apply(null,arguments)},kr=b._emscripten_bind_MdDbLinetypeTableRecord_getDxf0_0=
  391. function(){return(kr=b._emscripten_bind_MdDbLinetypeTableRecord_getDxf0_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getDxf0_0).apply(null,arguments)},lr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTypeName_0=function(){return(lr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTypeName_0).apply(null,arguments)},mr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityid_0=function(){return(mr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityid_0=
  392. b.asm.emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityid_0).apply(null,arguments)},nr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTempid_0=function(){return(nr=b._emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getCustomEntityTempid_0).apply(null,arguments)},or=b._emscripten_bind_MdDbLinetypeTableRecord_setCustomEntityTempid_1=function(){return(or=b._emscripten_bind_MdDbLinetypeTableRecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setCustomEntityTempid_1).apply(null,
  393. arguments)},pr=b._emscripten_bind_MdDbLinetypeTableRecord_getJson_0=function(){return(pr=b._emscripten_bind_MdDbLinetypeTableRecord_getJson_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_getJson_0).apply(null,arguments)},qr=b._emscripten_bind_MdDbLinetypeTableRecord_setJson_1=function(){return(qr=b._emscripten_bind_MdDbLinetypeTableRecord_setJson_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_setJson_1).apply(null,arguments)},rr=b._emscripten_bind_MdDbLinetypeTableRecord_isKindOf_1=function(){return(rr=
  394. b._emscripten_bind_MdDbLinetypeTableRecord_isKindOf_1=b.asm.emscripten_bind_MdDbLinetypeTableRecord_isKindOf_1).apply(null,arguments)},sr=b._emscripten_bind_MdDbLinetypeTableRecord_isNull_0=function(){return(sr=b._emscripten_bind_MdDbLinetypeTableRecord_isNull_0=b.asm.emscripten_bind_MdDbLinetypeTableRecord_isNull_0).apply(null,arguments)},tr=b._emscripten_bind_MdDbLinetypeTableRecord___destroy___0=function(){return(tr=b._emscripten_bind_MdDbLinetypeTableRecord___destroy___0=b.asm.emscripten_bind_MdDbLinetypeTableRecord___destroy___0).apply(null,
  395. arguments)},ur=b._emscripten_bind_MdDbTextStyleTableRecord_MdDbTextStyleTableRecord_0=function(){return(ur=b._emscripten_bind_MdDbTextStyleTableRecord_MdDbTextStyleTableRecord_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_MdDbTextStyleTableRecord_0).apply(null,arguments)},vr=b._emscripten_bind_MdDbTextStyleTableRecord_getName_0=function(){return(vr=b._emscripten_bind_MdDbTextStyleTableRecord_getName_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getName_0).apply(null,arguments)},wr=b._emscripten_bind_MdDbTextStyleTableRecord_setName_1=
  396. function(){return(wr=b._emscripten_bind_MdDbTextStyleTableRecord_setName_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setName_1).apply(null,arguments)},xr=b._emscripten_bind_MdDbTextStyleTableRecord_isShapeFile_0=function(){return(xr=b._emscripten_bind_MdDbTextStyleTableRecord_isShapeFile_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_isShapeFile_0).apply(null,arguments)},yr=b._emscripten_bind_MdDbTextStyleTableRecord_setIsShapeFile_1=function(){return(yr=b._emscripten_bind_MdDbTextStyleTableRecord_setIsShapeFile_1=
  397. b.asm.emscripten_bind_MdDbTextStyleTableRecord_setIsShapeFile_1).apply(null,arguments)},zr=b._emscripten_bind_MdDbTextStyleTableRecord_isVertical_0=function(){return(zr=b._emscripten_bind_MdDbTextStyleTableRecord_isVertical_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_isVertical_0).apply(null,arguments)},Ar=b._emscripten_bind_MdDbTextStyleTableRecord_setIsVertical_1=function(){return(Ar=b._emscripten_bind_MdDbTextStyleTableRecord_setIsVertical_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setIsVertical_1).apply(null,
  398. arguments)},Br=b._emscripten_bind_MdDbTextStyleTableRecord_textSize_0=function(){return(Br=b._emscripten_bind_MdDbTextStyleTableRecord_textSize_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_textSize_0).apply(null,arguments)},Cr=b._emscripten_bind_MdDbTextStyleTableRecord_setTextSize_1=function(){return(Cr=b._emscripten_bind_MdDbTextStyleTableRecord_setTextSize_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setTextSize_1).apply(null,arguments)},Dr=b._emscripten_bind_MdDbTextStyleTableRecord_xScale_0=
  399. function(){return(Dr=b._emscripten_bind_MdDbTextStyleTableRecord_xScale_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_xScale_0).apply(null,arguments)},Er=b._emscripten_bind_MdDbTextStyleTableRecord_setXScale_1=function(){return(Er=b._emscripten_bind_MdDbTextStyleTableRecord_setXScale_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setXScale_1).apply(null,arguments)},Fr=b._emscripten_bind_MdDbTextStyleTableRecord_obliquingAngle_0=function(){return(Fr=b._emscripten_bind_MdDbTextStyleTableRecord_obliquingAngle_0=
  400. b.asm.emscripten_bind_MdDbTextStyleTableRecord_obliquingAngle_0).apply(null,arguments)},Gr=b._emscripten_bind_MdDbTextStyleTableRecord_setObliquingAngle_1=function(){return(Gr=b._emscripten_bind_MdDbTextStyleTableRecord_setObliquingAngle_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setObliquingAngle_1).apply(null,arguments)},Hr=b._emscripten_bind_MdDbTextStyleTableRecord_flagBits_0=function(){return(Hr=b._emscripten_bind_MdDbTextStyleTableRecord_flagBits_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_flagBits_0).apply(null,
  401. arguments)},Ir=b._emscripten_bind_MdDbTextStyleTableRecord_setFlagBits_1=function(){return(Ir=b._emscripten_bind_MdDbTextStyleTableRecord_setFlagBits_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setFlagBits_1).apply(null,arguments)},Jr=b._emscripten_bind_MdDbTextStyleTableRecord_fileName_0=function(){return(Jr=b._emscripten_bind_MdDbTextStyleTableRecord_fileName_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_fileName_0).apply(null,arguments)},Kr=b._emscripten_bind_MdDbTextStyleTableRecord_setFileName_1=
  402. function(){return(Kr=b._emscripten_bind_MdDbTextStyleTableRecord_setFileName_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setFileName_1).apply(null,arguments)},Lr=b._emscripten_bind_MdDbTextStyleTableRecord_bigFontFileName_0=function(){return(Lr=b._emscripten_bind_MdDbTextStyleTableRecord_bigFontFileName_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_bigFontFileName_0).apply(null,arguments)},Mr=b._emscripten_bind_MdDbTextStyleTableRecord_setBigFontFileName_1=function(){return(Mr=b._emscripten_bind_MdDbTextStyleTableRecord_setBigFontFileName_1=
  403. b.asm.emscripten_bind_MdDbTextStyleTableRecord_setBigFontFileName_1).apply(null,arguments)},Nr=b._emscripten_bind_MdDbTextStyleTableRecord_setFont_5=function(){return(Nr=b._emscripten_bind_MdDbTextStyleTableRecord_setFont_5=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setFont_5).apply(null,arguments)},Or=b._emscripten_bind_MdDbTextStyleTableRecord_font_0=function(){return(Or=b._emscripten_bind_MdDbTextStyleTableRecord_font_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_font_0).apply(null,arguments)},
  404. Pr=b._emscripten_bind_MdDbTextStyleTableRecord_GetObjectID_0=function(){return(Pr=b._emscripten_bind_MdDbTextStyleTableRecord_GetObjectID_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetObjectID_0).apply(null,arguments)},Qr=b._emscripten_bind_MdDbTextStyleTableRecord_Erase_0=function(){return(Qr=b._emscripten_bind_MdDbTextStyleTableRecord_Erase_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_Erase_0).apply(null,arguments)},Rr=b._emscripten_bind_MdDbTextStyleTableRecord_isErased_0=function(){return(Rr=
  405. b._emscripten_bind_MdDbTextStyleTableRecord_isErased_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_isErased_0).apply(null,arguments)},Sr=b._emscripten_bind_MdDbTextStyleTableRecord_unErase_0=function(){return(Sr=b._emscripten_bind_MdDbTextStyleTableRecord_unErase_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_unErase_0).apply(null,arguments)},Tr=b._emscripten_bind_MdDbTextStyleTableRecord_ConnectionTempObject_1=function(){return(Tr=b._emscripten_bind_MdDbTextStyleTableRecord_ConnectionTempObject_1=
  406. b.asm.emscripten_bind_MdDbTextStyleTableRecord_ConnectionTempObject_1).apply(null,arguments)},Ur=b._emscripten_bind_MdDbTextStyleTableRecord_GetExtensionDictionary_0=function(){return(Ur=b._emscripten_bind_MdDbTextStyleTableRecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetExtensionDictionary_0).apply(null,arguments)},Vr=b._emscripten_bind_MdDbTextStyleTableRecord_CreateExtensionDictionary_0=function(){return(Vr=b._emscripten_bind_MdDbTextStyleTableRecord_CreateExtensionDictionary_0=
  407. b.asm.emscripten_bind_MdDbTextStyleTableRecord_CreateExtensionDictionary_0).apply(null,arguments)},Wr=b._emscripten_bind_MdDbTextStyleTableRecord_IsHaveExtensionDictionary_0=function(){return(Wr=b._emscripten_bind_MdDbTextStyleTableRecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_IsHaveExtensionDictionary_0).apply(null,arguments)},Xr=b._emscripten_bind_MdDbTextStyleTableRecord_Clone_0=function(){return(Xr=b._emscripten_bind_MdDbTextStyleTableRecord_Clone_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_Clone_0).apply(null,
  408. arguments)},Yr=b._emscripten_bind_MdDbTextStyleTableRecord_GetHandle_0=function(){return(Yr=b._emscripten_bind_MdDbTextStyleTableRecord_GetHandle_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetHandle_0).apply(null,arguments)},Zr=b._emscripten_bind_MdDbTextStyleTableRecord_GetDatabase_0=function(){return(Zr=b._emscripten_bind_MdDbTextStyleTableRecord_GetDatabase_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetDatabase_0).apply(null,arguments)},$r=b._emscripten_bind_MdDbTextStyleTableRecord_GetDatabaseIndexId_0=
  409. function(){return($r=b._emscripten_bind_MdDbTextStyleTableRecord_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetDatabaseIndexId_0).apply(null,arguments)},as=b._emscripten_bind_MdDbTextStyleTableRecord_GetOwnerID_0=function(){return(as=b._emscripten_bind_MdDbTextStyleTableRecord_GetOwnerID_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_GetOwnerID_0).apply(null,arguments)},bs=b._emscripten_bind_MdDbTextStyleTableRecord_assertObjectModification_1=function(){return(bs=b._emscripten_bind_MdDbTextStyleTableRecord_assertObjectModification_1=
  410. b.asm.emscripten_bind_MdDbTextStyleTableRecord_assertObjectModification_1).apply(null,arguments)},cs=b._emscripten_bind_MdDbTextStyleTableRecord_moveGripPointsAt_4=function(){return(cs=b._emscripten_bind_MdDbTextStyleTableRecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbTextStyleTableRecord_moveGripPointsAt_4).apply(null,arguments)},ds=b._emscripten_bind_MdDbTextStyleTableRecord_getGripPoints_0=function(){return(ds=b._emscripten_bind_MdDbTextStyleTableRecord_getGripPoints_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getGripPoints_0).apply(null,
  411. arguments)},es=b._emscripten_bind_MdDbTextStyleTableRecord_getObjectName_0=function(){return(es=b._emscripten_bind_MdDbTextStyleTableRecord_getObjectName_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getObjectName_0).apply(null,arguments)},gs=b._emscripten_bind_MdDbTextStyleTableRecord_getDxf0_0=function(){return(gs=b._emscripten_bind_MdDbTextStyleTableRecord_getDxf0_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getDxf0_0).apply(null,arguments)},hs=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTypeName_0=
  412. function(){return(hs=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTypeName_0).apply(null,arguments)},is=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityid_0=function(){return(is=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityid_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityid_0).apply(null,arguments)},js=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTempid_0=
  413. function(){return(js=b._emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getCustomEntityTempid_0).apply(null,arguments)},ks=b._emscripten_bind_MdDbTextStyleTableRecord_setCustomEntityTempid_1=function(){return(ks=b._emscripten_bind_MdDbTextStyleTableRecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setCustomEntityTempid_1).apply(null,arguments)},ls=b._emscripten_bind_MdDbTextStyleTableRecord_getJson_0=function(){return(ls=
  414. b._emscripten_bind_MdDbTextStyleTableRecord_getJson_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_getJson_0).apply(null,arguments)},ms=b._emscripten_bind_MdDbTextStyleTableRecord_setJson_1=function(){return(ms=b._emscripten_bind_MdDbTextStyleTableRecord_setJson_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_setJson_1).apply(null,arguments)},ns=b._emscripten_bind_MdDbTextStyleTableRecord_isKindOf_1=function(){return(ns=b._emscripten_bind_MdDbTextStyleTableRecord_isKindOf_1=b.asm.emscripten_bind_MdDbTextStyleTableRecord_isKindOf_1).apply(null,
  415. arguments)},ps=b._emscripten_bind_MdDbTextStyleTableRecord_isNull_0=function(){return(ps=b._emscripten_bind_MdDbTextStyleTableRecord_isNull_0=b.asm.emscripten_bind_MdDbTextStyleTableRecord_isNull_0).apply(null,arguments)},qs=b._emscripten_bind_MdDbTextStyleTableRecord___destroy___0=function(){return(qs=b._emscripten_bind_MdDbTextStyleTableRecord___destroy___0=b.asm.emscripten_bind_MdDbTextStyleTableRecord___destroy___0).apply(null,arguments)},rs=b._emscripten_bind_MdDbLayerTable_getAllRecordId_1=
  416. function(){return(rs=b._emscripten_bind_MdDbLayerTable_getAllRecordId_1=b.asm.emscripten_bind_MdDbLayerTable_getAllRecordId_1).apply(null,arguments)},ss=b._emscripten_bind_MdDbLayerTable_add_1=function(){return(ss=b._emscripten_bind_MdDbLayerTable_add_1=b.asm.emscripten_bind_MdDbLayerTable_add_1).apply(null,arguments)},ts=b._emscripten_bind_MdDbLayerTable_get_2=function(){return(ts=b._emscripten_bind_MdDbLayerTable_get_2=b.asm.emscripten_bind_MdDbLayerTable_get_2).apply(null,arguments)},us=b._emscripten_bind_MdDbLayerTable_GetObjectID_0=
  417. function(){return(us=b._emscripten_bind_MdDbLayerTable_GetObjectID_0=b.asm.emscripten_bind_MdDbLayerTable_GetObjectID_0).apply(null,arguments)},vs=b._emscripten_bind_MdDbLayerTable_Erase_0=function(){return(vs=b._emscripten_bind_MdDbLayerTable_Erase_0=b.asm.emscripten_bind_MdDbLayerTable_Erase_0).apply(null,arguments)},xs=b._emscripten_bind_MdDbLayerTable_isErased_0=function(){return(xs=b._emscripten_bind_MdDbLayerTable_isErased_0=b.asm.emscripten_bind_MdDbLayerTable_isErased_0).apply(null,arguments)},
  418. ys=b._emscripten_bind_MdDbLayerTable_unErase_0=function(){return(ys=b._emscripten_bind_MdDbLayerTable_unErase_0=b.asm.emscripten_bind_MdDbLayerTable_unErase_0).apply(null,arguments)},zs=b._emscripten_bind_MdDbLayerTable_ConnectionTempObject_1=function(){return(zs=b._emscripten_bind_MdDbLayerTable_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbLayerTable_ConnectionTempObject_1).apply(null,arguments)},As=b._emscripten_bind_MdDbLayerTable_GetExtensionDictionary_0=function(){return(As=b._emscripten_bind_MdDbLayerTable_GetExtensionDictionary_0=
  419. b.asm.emscripten_bind_MdDbLayerTable_GetExtensionDictionary_0).apply(null,arguments)},Bs=b._emscripten_bind_MdDbLayerTable_CreateExtensionDictionary_0=function(){return(Bs=b._emscripten_bind_MdDbLayerTable_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbLayerTable_CreateExtensionDictionary_0).apply(null,arguments)},Cs=b._emscripten_bind_MdDbLayerTable_IsHaveExtensionDictionary_0=function(){return(Cs=b._emscripten_bind_MdDbLayerTable_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbLayerTable_IsHaveExtensionDictionary_0).apply(null,
  420. arguments)},Ds=b._emscripten_bind_MdDbLayerTable_Clone_0=function(){return(Ds=b._emscripten_bind_MdDbLayerTable_Clone_0=b.asm.emscripten_bind_MdDbLayerTable_Clone_0).apply(null,arguments)},Es=b._emscripten_bind_MdDbLayerTable_GetHandle_0=function(){return(Es=b._emscripten_bind_MdDbLayerTable_GetHandle_0=b.asm.emscripten_bind_MdDbLayerTable_GetHandle_0).apply(null,arguments)},Fs=b._emscripten_bind_MdDbLayerTable_GetDatabase_0=function(){return(Fs=b._emscripten_bind_MdDbLayerTable_GetDatabase_0=b.asm.emscripten_bind_MdDbLayerTable_GetDatabase_0).apply(null,
  421. arguments)},Gs=b._emscripten_bind_MdDbLayerTable_GetDatabaseIndexId_0=function(){return(Gs=b._emscripten_bind_MdDbLayerTable_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbLayerTable_GetDatabaseIndexId_0).apply(null,arguments)},Hs=b._emscripten_bind_MdDbLayerTable_GetOwnerID_0=function(){return(Hs=b._emscripten_bind_MdDbLayerTable_GetOwnerID_0=b.asm.emscripten_bind_MdDbLayerTable_GetOwnerID_0).apply(null,arguments)},Is=b._emscripten_bind_MdDbLayerTable_assertObjectModification_1=function(){return(Is=
  422. b._emscripten_bind_MdDbLayerTable_assertObjectModification_1=b.asm.emscripten_bind_MdDbLayerTable_assertObjectModification_1).apply(null,arguments)},Js=b._emscripten_bind_MdDbLayerTable_moveGripPointsAt_4=function(){return(Js=b._emscripten_bind_MdDbLayerTable_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbLayerTable_moveGripPointsAt_4).apply(null,arguments)},Ks=b._emscripten_bind_MdDbLayerTable_getGripPoints_0=function(){return(Ks=b._emscripten_bind_MdDbLayerTable_getGripPoints_0=b.asm.emscripten_bind_MdDbLayerTable_getGripPoints_0).apply(null,
  423. arguments)},Ls=b._emscripten_bind_MdDbLayerTable_getObjectName_0=function(){return(Ls=b._emscripten_bind_MdDbLayerTable_getObjectName_0=b.asm.emscripten_bind_MdDbLayerTable_getObjectName_0).apply(null,arguments)},Ms=b._emscripten_bind_MdDbLayerTable_getDxf0_0=function(){return(Ms=b._emscripten_bind_MdDbLayerTable_getDxf0_0=b.asm.emscripten_bind_MdDbLayerTable_getDxf0_0).apply(null,arguments)},Ns=b._emscripten_bind_MdDbLayerTable_getCustomEntityTypeName_0=function(){return(Ns=b._emscripten_bind_MdDbLayerTable_getCustomEntityTypeName_0=
  424. b.asm.emscripten_bind_MdDbLayerTable_getCustomEntityTypeName_0).apply(null,arguments)},Os=b._emscripten_bind_MdDbLayerTable_getCustomEntityid_0=function(){return(Os=b._emscripten_bind_MdDbLayerTable_getCustomEntityid_0=b.asm.emscripten_bind_MdDbLayerTable_getCustomEntityid_0).apply(null,arguments)},Ps=b._emscripten_bind_MdDbLayerTable_getCustomEntityTempid_0=function(){return(Ps=b._emscripten_bind_MdDbLayerTable_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbLayerTable_getCustomEntityTempid_0).apply(null,
  425. arguments)},Qs=b._emscripten_bind_MdDbLayerTable_setCustomEntityTempid_1=function(){return(Qs=b._emscripten_bind_MdDbLayerTable_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbLayerTable_setCustomEntityTempid_1).apply(null,arguments)},Rs=b._emscripten_bind_MdDbLayerTable_getJson_0=function(){return(Rs=b._emscripten_bind_MdDbLayerTable_getJson_0=b.asm.emscripten_bind_MdDbLayerTable_getJson_0).apply(null,arguments)},Ss=b._emscripten_bind_MdDbLayerTable_setJson_1=function(){return(Ss=b._emscripten_bind_MdDbLayerTable_setJson_1=
  426. b.asm.emscripten_bind_MdDbLayerTable_setJson_1).apply(null,arguments)},Ts=b._emscripten_bind_MdDbLayerTable_isKindOf_1=function(){return(Ts=b._emscripten_bind_MdDbLayerTable_isKindOf_1=b.asm.emscripten_bind_MdDbLayerTable_isKindOf_1).apply(null,arguments)},Us=b._emscripten_bind_MdDbLayerTable_isNull_0=function(){return(Us=b._emscripten_bind_MdDbLayerTable_isNull_0=b.asm.emscripten_bind_MdDbLayerTable_isNull_0).apply(null,arguments)},Vs=b._emscripten_bind_MdDbLinetypeTable_getAllRecordId_1=function(){return(Vs=
  427. b._emscripten_bind_MdDbLinetypeTable_getAllRecordId_1=b.asm.emscripten_bind_MdDbLinetypeTable_getAllRecordId_1).apply(null,arguments)},Ws=b._emscripten_bind_MdDbLinetypeTable_add_1=function(){return(Ws=b._emscripten_bind_MdDbLinetypeTable_add_1=b.asm.emscripten_bind_MdDbLinetypeTable_add_1).apply(null,arguments)},Xs=b._emscripten_bind_MdDbLinetypeTable_get_2=function(){return(Xs=b._emscripten_bind_MdDbLinetypeTable_get_2=b.asm.emscripten_bind_MdDbLinetypeTable_get_2).apply(null,arguments)},Ys=b._emscripten_bind_MdDbLinetypeTable_GetObjectID_0=
  428. function(){return(Ys=b._emscripten_bind_MdDbLinetypeTable_GetObjectID_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetObjectID_0).apply(null,arguments)},Zs=b._emscripten_bind_MdDbLinetypeTable_Erase_0=function(){return(Zs=b._emscripten_bind_MdDbLinetypeTable_Erase_0=b.asm.emscripten_bind_MdDbLinetypeTable_Erase_0).apply(null,arguments)},$s=b._emscripten_bind_MdDbLinetypeTable_isErased_0=function(){return($s=b._emscripten_bind_MdDbLinetypeTable_isErased_0=b.asm.emscripten_bind_MdDbLinetypeTable_isErased_0).apply(null,
  429. arguments)},at=b._emscripten_bind_MdDbLinetypeTable_unErase_0=function(){return(at=b._emscripten_bind_MdDbLinetypeTable_unErase_0=b.asm.emscripten_bind_MdDbLinetypeTable_unErase_0).apply(null,arguments)},bt=b._emscripten_bind_MdDbLinetypeTable_ConnectionTempObject_1=function(){return(bt=b._emscripten_bind_MdDbLinetypeTable_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbLinetypeTable_ConnectionTempObject_1).apply(null,arguments)},ct=b._emscripten_bind_MdDbLinetypeTable_GetExtensionDictionary_0=function(){return(ct=
  430. b._emscripten_bind_MdDbLinetypeTable_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetExtensionDictionary_0).apply(null,arguments)},dt=b._emscripten_bind_MdDbLinetypeTable_CreateExtensionDictionary_0=function(){return(dt=b._emscripten_bind_MdDbLinetypeTable_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbLinetypeTable_CreateExtensionDictionary_0).apply(null,arguments)},et=b._emscripten_bind_MdDbLinetypeTable_IsHaveExtensionDictionary_0=function(){return(et=b._emscripten_bind_MdDbLinetypeTable_IsHaveExtensionDictionary_0=
  431. b.asm.emscripten_bind_MdDbLinetypeTable_IsHaveExtensionDictionary_0).apply(null,arguments)},ft=b._emscripten_bind_MdDbLinetypeTable_Clone_0=function(){return(ft=b._emscripten_bind_MdDbLinetypeTable_Clone_0=b.asm.emscripten_bind_MdDbLinetypeTable_Clone_0).apply(null,arguments)},gt=b._emscripten_bind_MdDbLinetypeTable_GetHandle_0=function(){return(gt=b._emscripten_bind_MdDbLinetypeTable_GetHandle_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetHandle_0).apply(null,arguments)},ht=b._emscripten_bind_MdDbLinetypeTable_GetDatabase_0=
  432. function(){return(ht=b._emscripten_bind_MdDbLinetypeTable_GetDatabase_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetDatabase_0).apply(null,arguments)},it=b._emscripten_bind_MdDbLinetypeTable_GetDatabaseIndexId_0=function(){return(it=b._emscripten_bind_MdDbLinetypeTable_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetDatabaseIndexId_0).apply(null,arguments)},jt=b._emscripten_bind_MdDbLinetypeTable_GetOwnerID_0=function(){return(jt=b._emscripten_bind_MdDbLinetypeTable_GetOwnerID_0=b.asm.emscripten_bind_MdDbLinetypeTable_GetOwnerID_0).apply(null,
  433. arguments)},kt=b._emscripten_bind_MdDbLinetypeTable_assertObjectModification_1=function(){return(kt=b._emscripten_bind_MdDbLinetypeTable_assertObjectModification_1=b.asm.emscripten_bind_MdDbLinetypeTable_assertObjectModification_1).apply(null,arguments)},lt=b._emscripten_bind_MdDbLinetypeTable_moveGripPointsAt_4=function(){return(lt=b._emscripten_bind_MdDbLinetypeTable_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbLinetypeTable_moveGripPointsAt_4).apply(null,arguments)},mt=b._emscripten_bind_MdDbLinetypeTable_getGripPoints_0=
  434. function(){return(mt=b._emscripten_bind_MdDbLinetypeTable_getGripPoints_0=b.asm.emscripten_bind_MdDbLinetypeTable_getGripPoints_0).apply(null,arguments)},nt=b._emscripten_bind_MdDbLinetypeTable_getObjectName_0=function(){return(nt=b._emscripten_bind_MdDbLinetypeTable_getObjectName_0=b.asm.emscripten_bind_MdDbLinetypeTable_getObjectName_0).apply(null,arguments)},ot=b._emscripten_bind_MdDbLinetypeTable_getDxf0_0=function(){return(ot=b._emscripten_bind_MdDbLinetypeTable_getDxf0_0=b.asm.emscripten_bind_MdDbLinetypeTable_getDxf0_0).apply(null,
  435. arguments)},pt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityTypeName_0=function(){return(pt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbLinetypeTable_getCustomEntityTypeName_0).apply(null,arguments)},qt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityid_0=function(){return(qt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityid_0=b.asm.emscripten_bind_MdDbLinetypeTable_getCustomEntityid_0).apply(null,arguments)},rt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityTempid_0=
  436. function(){return(rt=b._emscripten_bind_MdDbLinetypeTable_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbLinetypeTable_getCustomEntityTempid_0).apply(null,arguments)},st=b._emscripten_bind_MdDbLinetypeTable_setCustomEntityTempid_1=function(){return(st=b._emscripten_bind_MdDbLinetypeTable_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbLinetypeTable_setCustomEntityTempid_1).apply(null,arguments)},tt=b._emscripten_bind_MdDbLinetypeTable_getJson_0=function(){return(tt=b._emscripten_bind_MdDbLinetypeTable_getJson_0=
  437. b.asm.emscripten_bind_MdDbLinetypeTable_getJson_0).apply(null,arguments)},ut=b._emscripten_bind_MdDbLinetypeTable_setJson_1=function(){return(ut=b._emscripten_bind_MdDbLinetypeTable_setJson_1=b.asm.emscripten_bind_MdDbLinetypeTable_setJson_1).apply(null,arguments)},vt=b._emscripten_bind_MdDbLinetypeTable_isKindOf_1=function(){return(vt=b._emscripten_bind_MdDbLinetypeTable_isKindOf_1=b.asm.emscripten_bind_MdDbLinetypeTable_isKindOf_1).apply(null,arguments)},wt=b._emscripten_bind_MdDbLinetypeTable_isNull_0=
  438. function(){return(wt=b._emscripten_bind_MdDbLinetypeTable_isNull_0=b.asm.emscripten_bind_MdDbLinetypeTable_isNull_0).apply(null,arguments)},xt=b._emscripten_bind_MdDbTextStyleTable_getAllRecordId_1=function(){return(xt=b._emscripten_bind_MdDbTextStyleTable_getAllRecordId_1=b.asm.emscripten_bind_MdDbTextStyleTable_getAllRecordId_1).apply(null,arguments)},yt=b._emscripten_bind_MdDbTextStyleTable_add_1=function(){return(yt=b._emscripten_bind_MdDbTextStyleTable_add_1=b.asm.emscripten_bind_MdDbTextStyleTable_add_1).apply(null,
  439. arguments)},zt=b._emscripten_bind_MdDbTextStyleTable_get_2=function(){return(zt=b._emscripten_bind_MdDbTextStyleTable_get_2=b.asm.emscripten_bind_MdDbTextStyleTable_get_2).apply(null,arguments)},At=b._emscripten_bind_MdDbTextStyleTable_GetObjectID_0=function(){return(At=b._emscripten_bind_MdDbTextStyleTable_GetObjectID_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetObjectID_0).apply(null,arguments)},Bt=b._emscripten_bind_MdDbTextStyleTable_Erase_0=function(){return(Bt=b._emscripten_bind_MdDbTextStyleTable_Erase_0=
  440. b.asm.emscripten_bind_MdDbTextStyleTable_Erase_0).apply(null,arguments)},Ct=b._emscripten_bind_MdDbTextStyleTable_isErased_0=function(){return(Ct=b._emscripten_bind_MdDbTextStyleTable_isErased_0=b.asm.emscripten_bind_MdDbTextStyleTable_isErased_0).apply(null,arguments)},Dt=b._emscripten_bind_MdDbTextStyleTable_unErase_0=function(){return(Dt=b._emscripten_bind_MdDbTextStyleTable_unErase_0=b.asm.emscripten_bind_MdDbTextStyleTable_unErase_0).apply(null,arguments)},Et=b._emscripten_bind_MdDbTextStyleTable_ConnectionTempObject_1=
  441. function(){return(Et=b._emscripten_bind_MdDbTextStyleTable_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbTextStyleTable_ConnectionTempObject_1).apply(null,arguments)},Ft=b._emscripten_bind_MdDbTextStyleTable_GetExtensionDictionary_0=function(){return(Ft=b._emscripten_bind_MdDbTextStyleTable_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetExtensionDictionary_0).apply(null,arguments)},Gt=b._emscripten_bind_MdDbTextStyleTable_CreateExtensionDictionary_0=function(){return(Gt=b._emscripten_bind_MdDbTextStyleTable_CreateExtensionDictionary_0=
  442. b.asm.emscripten_bind_MdDbTextStyleTable_CreateExtensionDictionary_0).apply(null,arguments)},Ht=b._emscripten_bind_MdDbTextStyleTable_IsHaveExtensionDictionary_0=function(){return(Ht=b._emscripten_bind_MdDbTextStyleTable_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbTextStyleTable_IsHaveExtensionDictionary_0).apply(null,arguments)},It=b._emscripten_bind_MdDbTextStyleTable_Clone_0=function(){return(It=b._emscripten_bind_MdDbTextStyleTable_Clone_0=b.asm.emscripten_bind_MdDbTextStyleTable_Clone_0).apply(null,
  443. arguments)},Jt=b._emscripten_bind_MdDbTextStyleTable_GetHandle_0=function(){return(Jt=b._emscripten_bind_MdDbTextStyleTable_GetHandle_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetHandle_0).apply(null,arguments)},Kt=b._emscripten_bind_MdDbTextStyleTable_GetDatabase_0=function(){return(Kt=b._emscripten_bind_MdDbTextStyleTable_GetDatabase_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetDatabase_0).apply(null,arguments)},Lt=b._emscripten_bind_MdDbTextStyleTable_GetDatabaseIndexId_0=function(){return(Lt=
  444. b._emscripten_bind_MdDbTextStyleTable_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetDatabaseIndexId_0).apply(null,arguments)},Mt=b._emscripten_bind_MdDbTextStyleTable_GetOwnerID_0=function(){return(Mt=b._emscripten_bind_MdDbTextStyleTable_GetOwnerID_0=b.asm.emscripten_bind_MdDbTextStyleTable_GetOwnerID_0).apply(null,arguments)},Nt=b._emscripten_bind_MdDbTextStyleTable_assertObjectModification_1=function(){return(Nt=b._emscripten_bind_MdDbTextStyleTable_assertObjectModification_1=
  445. b.asm.emscripten_bind_MdDbTextStyleTable_assertObjectModification_1).apply(null,arguments)},Ot=b._emscripten_bind_MdDbTextStyleTable_moveGripPointsAt_4=function(){return(Ot=b._emscripten_bind_MdDbTextStyleTable_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbTextStyleTable_moveGripPointsAt_4).apply(null,arguments)},Pt=b._emscripten_bind_MdDbTextStyleTable_getGripPoints_0=function(){return(Pt=b._emscripten_bind_MdDbTextStyleTable_getGripPoints_0=b.asm.emscripten_bind_MdDbTextStyleTable_getGripPoints_0).apply(null,
  446. arguments)},Qt=b._emscripten_bind_MdDbTextStyleTable_getObjectName_0=function(){return(Qt=b._emscripten_bind_MdDbTextStyleTable_getObjectName_0=b.asm.emscripten_bind_MdDbTextStyleTable_getObjectName_0).apply(null,arguments)},Rt=b._emscripten_bind_MdDbTextStyleTable_getDxf0_0=function(){return(Rt=b._emscripten_bind_MdDbTextStyleTable_getDxf0_0=b.asm.emscripten_bind_MdDbTextStyleTable_getDxf0_0).apply(null,arguments)},St=b._emscripten_bind_MdDbTextStyleTable_getCustomEntityTypeName_0=function(){return(St=
  447. b._emscripten_bind_MdDbTextStyleTable_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbTextStyleTable_getCustomEntityTypeName_0).apply(null,arguments)},Tt=b._emscripten_bind_MdDbTextStyleTable_getCustomEntityid_0=function(){return(Tt=b._emscripten_bind_MdDbTextStyleTable_getCustomEntityid_0=b.asm.emscripten_bind_MdDbTextStyleTable_getCustomEntityid_0).apply(null,arguments)},Ut=b._emscripten_bind_MdDbTextStyleTable_getCustomEntityTempid_0=function(){return(Ut=b._emscripten_bind_MdDbTextStyleTable_getCustomEntityTempid_0=
  448. b.asm.emscripten_bind_MdDbTextStyleTable_getCustomEntityTempid_0).apply(null,arguments)},Vt=b._emscripten_bind_MdDbTextStyleTable_setCustomEntityTempid_1=function(){return(Vt=b._emscripten_bind_MdDbTextStyleTable_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbTextStyleTable_setCustomEntityTempid_1).apply(null,arguments)},Wt=b._emscripten_bind_MdDbTextStyleTable_getJson_0=function(){return(Wt=b._emscripten_bind_MdDbTextStyleTable_getJson_0=b.asm.emscripten_bind_MdDbTextStyleTable_getJson_0).apply(null,
  449. arguments)},Xt=b._emscripten_bind_MdDbTextStyleTable_setJson_1=function(){return(Xt=b._emscripten_bind_MdDbTextStyleTable_setJson_1=b.asm.emscripten_bind_MdDbTextStyleTable_setJson_1).apply(null,arguments)},Yt=b._emscripten_bind_MdDbTextStyleTable_isKindOf_1=function(){return(Yt=b._emscripten_bind_MdDbTextStyleTable_isKindOf_1=b.asm.emscripten_bind_MdDbTextStyleTable_isKindOf_1).apply(null,arguments)},Zt=b._emscripten_bind_MdDbTextStyleTable_isNull_0=function(){return(Zt=b._emscripten_bind_MdDbTextStyleTable_isNull_0=
  450. b.asm.emscripten_bind_MdDbTextStyleTable_isNull_0).apply(null,arguments)},$t=b._emscripten_bind_MdDbDimStyleTableRecord_MdDbDimStyleTableRecord_0=function(){return($t=b._emscripten_bind_MdDbDimStyleTableRecord_MdDbDimStyleTableRecord_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_MdDbDimStyleTableRecord_0).apply(null,arguments)},au=b._emscripten_bind_MdDbDimStyleTableRecord_getName_0=function(){return(au=b._emscripten_bind_MdDbDimStyleTableRecord_getName_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getName_0).apply(null,
  451. arguments)},bu=b._emscripten_bind_MdDbDimStyleTableRecord_setName_1=function(){return(bu=b._emscripten_bind_MdDbDimStyleTableRecord_setName_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setName_1).apply(null,arguments)},cu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarInt_1=function(){return(cu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarInt_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getDimVarInt_1).apply(null,arguments)},du=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarInt_2=
  452. function(){return(du=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarInt_2=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setDimVarInt_2).apply(null,arguments)},eu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarDouble_1=function(){return(eu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarDouble_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getDimVarDouble_1).apply(null,arguments)},fu=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarDouble_2=function(){return(fu=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarDouble_2=
  453. b.asm.emscripten_bind_MdDbDimStyleTableRecord_setDimVarDouble_2).apply(null,arguments)},gu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarString_1=function(){return(gu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarString_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getDimVarString_1).apply(null,arguments)},hu=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarString_2=function(){return(hu=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarString_2=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setDimVarString_2).apply(null,
  454. arguments)},iu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarObjectId_1=function(){return(iu=b._emscripten_bind_MdDbDimStyleTableRecord_getDimVarObjectId_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getDimVarObjectId_1).apply(null,arguments)},ju=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarObjectId_2=function(){return(ju=b._emscripten_bind_MdDbDimStyleTableRecord_setDimVarObjectId_2=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setDimVarObjectId_2).apply(null,arguments)},ku=b._emscripten_bind_MdDbDimStyleTableRecord_GetObjectID_0=
  455. function(){return(ku=b._emscripten_bind_MdDbDimStyleTableRecord_GetObjectID_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetObjectID_0).apply(null,arguments)},lu=b._emscripten_bind_MdDbDimStyleTableRecord_Erase_0=function(){return(lu=b._emscripten_bind_MdDbDimStyleTableRecord_Erase_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_Erase_0).apply(null,arguments)},mu=b._emscripten_bind_MdDbDimStyleTableRecord_isErased_0=function(){return(mu=b._emscripten_bind_MdDbDimStyleTableRecord_isErased_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_isErased_0).apply(null,
  456. arguments)},nu=b._emscripten_bind_MdDbDimStyleTableRecord_unErase_0=function(){return(nu=b._emscripten_bind_MdDbDimStyleTableRecord_unErase_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_unErase_0).apply(null,arguments)},ou=b._emscripten_bind_MdDbDimStyleTableRecord_ConnectionTempObject_1=function(){return(ou=b._emscripten_bind_MdDbDimStyleTableRecord_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_ConnectionTempObject_1).apply(null,arguments)},pu=b._emscripten_bind_MdDbDimStyleTableRecord_GetExtensionDictionary_0=
  457. function(){return(pu=b._emscripten_bind_MdDbDimStyleTableRecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetExtensionDictionary_0).apply(null,arguments)},qu=b._emscripten_bind_MdDbDimStyleTableRecord_CreateExtensionDictionary_0=function(){return(qu=b._emscripten_bind_MdDbDimStyleTableRecord_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_CreateExtensionDictionary_0).apply(null,arguments)},ru=b._emscripten_bind_MdDbDimStyleTableRecord_IsHaveExtensionDictionary_0=
  458. function(){return(ru=b._emscripten_bind_MdDbDimStyleTableRecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_IsHaveExtensionDictionary_0).apply(null,arguments)},su=b._emscripten_bind_MdDbDimStyleTableRecord_Clone_0=function(){return(su=b._emscripten_bind_MdDbDimStyleTableRecord_Clone_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_Clone_0).apply(null,arguments)},tu=b._emscripten_bind_MdDbDimStyleTableRecord_GetHandle_0=function(){return(tu=b._emscripten_bind_MdDbDimStyleTableRecord_GetHandle_0=
  459. b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetHandle_0).apply(null,arguments)},uu=b._emscripten_bind_MdDbDimStyleTableRecord_GetDatabase_0=function(){return(uu=b._emscripten_bind_MdDbDimStyleTableRecord_GetDatabase_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetDatabase_0).apply(null,arguments)},vu=b._emscripten_bind_MdDbDimStyleTableRecord_GetDatabaseIndexId_0=function(){return(vu=b._emscripten_bind_MdDbDimStyleTableRecord_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetDatabaseIndexId_0).apply(null,
  460. arguments)},wu=b._emscripten_bind_MdDbDimStyleTableRecord_GetOwnerID_0=function(){return(wu=b._emscripten_bind_MdDbDimStyleTableRecord_GetOwnerID_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_GetOwnerID_0).apply(null,arguments)},xu=b._emscripten_bind_MdDbDimStyleTableRecord_assertObjectModification_1=function(){return(xu=b._emscripten_bind_MdDbDimStyleTableRecord_assertObjectModification_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_assertObjectModification_1).apply(null,arguments)},yu=b._emscripten_bind_MdDbDimStyleTableRecord_moveGripPointsAt_4=
  461. function(){return(yu=b._emscripten_bind_MdDbDimStyleTableRecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbDimStyleTableRecord_moveGripPointsAt_4).apply(null,arguments)},zu=b._emscripten_bind_MdDbDimStyleTableRecord_getGripPoints_0=function(){return(zu=b._emscripten_bind_MdDbDimStyleTableRecord_getGripPoints_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getGripPoints_0).apply(null,arguments)},Au=b._emscripten_bind_MdDbDimStyleTableRecord_getObjectName_0=function(){return(Au=b._emscripten_bind_MdDbDimStyleTableRecord_getObjectName_0=
  462. b.asm.emscripten_bind_MdDbDimStyleTableRecord_getObjectName_0).apply(null,arguments)},Bu=b._emscripten_bind_MdDbDimStyleTableRecord_getDxf0_0=function(){return(Bu=b._emscripten_bind_MdDbDimStyleTableRecord_getDxf0_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getDxf0_0).apply(null,arguments)},Cu=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTypeName_0=function(){return(Cu=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTypeName_0).apply(null,
  463. arguments)},Du=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityid_0=function(){return(Du=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityid_0).apply(null,arguments)},Eu=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTempid_0=function(){return(Eu=b._emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getCustomEntityTempid_0).apply(null,arguments)},
  464. Fu=b._emscripten_bind_MdDbDimStyleTableRecord_setCustomEntityTempid_1=function(){return(Fu=b._emscripten_bind_MdDbDimStyleTableRecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setCustomEntityTempid_1).apply(null,arguments)},Gu=b._emscripten_bind_MdDbDimStyleTableRecord_getJson_0=function(){return(Gu=b._emscripten_bind_MdDbDimStyleTableRecord_getJson_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_getJson_0).apply(null,arguments)},Hu=b._emscripten_bind_MdDbDimStyleTableRecord_setJson_1=
  465. function(){return(Hu=b._emscripten_bind_MdDbDimStyleTableRecord_setJson_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_setJson_1).apply(null,arguments)},Iu=b._emscripten_bind_MdDbDimStyleTableRecord_isKindOf_1=function(){return(Iu=b._emscripten_bind_MdDbDimStyleTableRecord_isKindOf_1=b.asm.emscripten_bind_MdDbDimStyleTableRecord_isKindOf_1).apply(null,arguments)},Ju=b._emscripten_bind_MdDbDimStyleTableRecord_isNull_0=function(){return(Ju=b._emscripten_bind_MdDbDimStyleTableRecord_isNull_0=b.asm.emscripten_bind_MdDbDimStyleTableRecord_isNull_0).apply(null,
  466. arguments)},Ku=b._emscripten_bind_MdDbDimStyleTableRecord___destroy___0=function(){return(Ku=b._emscripten_bind_MdDbDimStyleTableRecord___destroy___0=b.asm.emscripten_bind_MdDbDimStyleTableRecord___destroy___0).apply(null,arguments)},Lu=b._emscripten_bind_MdDbDimStyleTable_getAllRecordId_1=function(){return(Lu=b._emscripten_bind_MdDbDimStyleTable_getAllRecordId_1=b.asm.emscripten_bind_MdDbDimStyleTable_getAllRecordId_1).apply(null,arguments)},Mu=b._emscripten_bind_MdDbDimStyleTable_add_1=function(){return(Mu=
  467. b._emscripten_bind_MdDbDimStyleTable_add_1=b.asm.emscripten_bind_MdDbDimStyleTable_add_1).apply(null,arguments)},Nu=b._emscripten_bind_MdDbDimStyleTable_get_2=function(){return(Nu=b._emscripten_bind_MdDbDimStyleTable_get_2=b.asm.emscripten_bind_MdDbDimStyleTable_get_2).apply(null,arguments)},Ou=b._emscripten_bind_MdDbDimStyleTable_GetObjectID_0=function(){return(Ou=b._emscripten_bind_MdDbDimStyleTable_GetObjectID_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetObjectID_0).apply(null,arguments)},Pu=b._emscripten_bind_MdDbDimStyleTable_Erase_0=
  468. function(){return(Pu=b._emscripten_bind_MdDbDimStyleTable_Erase_0=b.asm.emscripten_bind_MdDbDimStyleTable_Erase_0).apply(null,arguments)},Qu=b._emscripten_bind_MdDbDimStyleTable_isErased_0=function(){return(Qu=b._emscripten_bind_MdDbDimStyleTable_isErased_0=b.asm.emscripten_bind_MdDbDimStyleTable_isErased_0).apply(null,arguments)},Ru=b._emscripten_bind_MdDbDimStyleTable_unErase_0=function(){return(Ru=b._emscripten_bind_MdDbDimStyleTable_unErase_0=b.asm.emscripten_bind_MdDbDimStyleTable_unErase_0).apply(null,
  469. arguments)},Su=b._emscripten_bind_MdDbDimStyleTable_ConnectionTempObject_1=function(){return(Su=b._emscripten_bind_MdDbDimStyleTable_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbDimStyleTable_ConnectionTempObject_1).apply(null,arguments)},Tu=b._emscripten_bind_MdDbDimStyleTable_GetExtensionDictionary_0=function(){return(Tu=b._emscripten_bind_MdDbDimStyleTable_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetExtensionDictionary_0).apply(null,arguments)},Uu=b._emscripten_bind_MdDbDimStyleTable_CreateExtensionDictionary_0=
  470. function(){return(Uu=b._emscripten_bind_MdDbDimStyleTable_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTable_CreateExtensionDictionary_0).apply(null,arguments)},Vu=b._emscripten_bind_MdDbDimStyleTable_IsHaveExtensionDictionary_0=function(){return(Vu=b._emscripten_bind_MdDbDimStyleTable_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbDimStyleTable_IsHaveExtensionDictionary_0).apply(null,arguments)},Wu=b._emscripten_bind_MdDbDimStyleTable_Clone_0=function(){return(Wu=b._emscripten_bind_MdDbDimStyleTable_Clone_0=
  471. b.asm.emscripten_bind_MdDbDimStyleTable_Clone_0).apply(null,arguments)},Xu=b._emscripten_bind_MdDbDimStyleTable_GetHandle_0=function(){return(Xu=b._emscripten_bind_MdDbDimStyleTable_GetHandle_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetHandle_0).apply(null,arguments)},Yu=b._emscripten_bind_MdDbDimStyleTable_GetDatabase_0=function(){return(Yu=b._emscripten_bind_MdDbDimStyleTable_GetDatabase_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetDatabase_0).apply(null,arguments)},Zu=b._emscripten_bind_MdDbDimStyleTable_GetDatabaseIndexId_0=
  472. function(){return(Zu=b._emscripten_bind_MdDbDimStyleTable_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetDatabaseIndexId_0).apply(null,arguments)},$u=b._emscripten_bind_MdDbDimStyleTable_GetOwnerID_0=function(){return($u=b._emscripten_bind_MdDbDimStyleTable_GetOwnerID_0=b.asm.emscripten_bind_MdDbDimStyleTable_GetOwnerID_0).apply(null,arguments)},av=b._emscripten_bind_MdDbDimStyleTable_assertObjectModification_1=function(){return(av=b._emscripten_bind_MdDbDimStyleTable_assertObjectModification_1=
  473. b.asm.emscripten_bind_MdDbDimStyleTable_assertObjectModification_1).apply(null,arguments)},bv=b._emscripten_bind_MdDbDimStyleTable_moveGripPointsAt_4=function(){return(bv=b._emscripten_bind_MdDbDimStyleTable_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbDimStyleTable_moveGripPointsAt_4).apply(null,arguments)},cv=b._emscripten_bind_MdDbDimStyleTable_getGripPoints_0=function(){return(cv=b._emscripten_bind_MdDbDimStyleTable_getGripPoints_0=b.asm.emscripten_bind_MdDbDimStyleTable_getGripPoints_0).apply(null,
  474. arguments)},dv=b._emscripten_bind_MdDbDimStyleTable_getObjectName_0=function(){return(dv=b._emscripten_bind_MdDbDimStyleTable_getObjectName_0=b.asm.emscripten_bind_MdDbDimStyleTable_getObjectName_0).apply(null,arguments)},ev=b._emscripten_bind_MdDbDimStyleTable_getDxf0_0=function(){return(ev=b._emscripten_bind_MdDbDimStyleTable_getDxf0_0=b.asm.emscripten_bind_MdDbDimStyleTable_getDxf0_0).apply(null,arguments)},fv=b._emscripten_bind_MdDbDimStyleTable_getCustomEntityTypeName_0=function(){return(fv=
  475. b._emscripten_bind_MdDbDimStyleTable_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbDimStyleTable_getCustomEntityTypeName_0).apply(null,arguments)},gv=b._emscripten_bind_MdDbDimStyleTable_getCustomEntityid_0=function(){return(gv=b._emscripten_bind_MdDbDimStyleTable_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDimStyleTable_getCustomEntityid_0).apply(null,arguments)},hv=b._emscripten_bind_MdDbDimStyleTable_getCustomEntityTempid_0=function(){return(hv=b._emscripten_bind_MdDbDimStyleTable_getCustomEntityTempid_0=
  476. b.asm.emscripten_bind_MdDbDimStyleTable_getCustomEntityTempid_0).apply(null,arguments)},iv=b._emscripten_bind_MdDbDimStyleTable_setCustomEntityTempid_1=function(){return(iv=b._emscripten_bind_MdDbDimStyleTable_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbDimStyleTable_setCustomEntityTempid_1).apply(null,arguments)},jv=b._emscripten_bind_MdDbDimStyleTable_getJson_0=function(){return(jv=b._emscripten_bind_MdDbDimStyleTable_getJson_0=b.asm.emscripten_bind_MdDbDimStyleTable_getJson_0).apply(null,
  477. arguments)},kv=b._emscripten_bind_MdDbDimStyleTable_setJson_1=function(){return(kv=b._emscripten_bind_MdDbDimStyleTable_setJson_1=b.asm.emscripten_bind_MdDbDimStyleTable_setJson_1).apply(null,arguments)},lv=b._emscripten_bind_MdDbDimStyleTable_isKindOf_1=function(){return(lv=b._emscripten_bind_MdDbDimStyleTable_isKindOf_1=b.asm.emscripten_bind_MdDbDimStyleTable_isKindOf_1).apply(null,arguments)},mv=b._emscripten_bind_MdDbDimStyleTable_isNull_0=function(){return(mv=b._emscripten_bind_MdDbDimStyleTable_isNull_0=
  478. b.asm.emscripten_bind_MdDbDimStyleTable_isNull_0).apply(null,arguments)},nv=b._emscripten_bind_MdDbDatabase_GetLayerTable_0=function(){return(nv=b._emscripten_bind_MdDbDatabase_GetLayerTable_0=b.asm.emscripten_bind_MdDbDatabase_GetLayerTable_0).apply(null,arguments)},ov=b._emscripten_bind_MdDbDatabase_GetLinetypeTable_0=function(){return(ov=b._emscripten_bind_MdDbDatabase_GetLinetypeTable_0=b.asm.emscripten_bind_MdDbDatabase_GetLinetypeTable_0).apply(null,arguments)},pv=b._emscripten_bind_MdDbDatabase_GetDimStyleTable_0=
  479. function(){return(pv=b._emscripten_bind_MdDbDatabase_GetDimStyleTable_0=b.asm.emscripten_bind_MdDbDatabase_GetDimStyleTable_0).apply(null,arguments)},qv=b._emscripten_bind_MdDbDatabase_GetTextStyleTable_0=function(){return(qv=b._emscripten_bind_MdDbDatabase_GetTextStyleTable_0=b.asm.emscripten_bind_MdDbDatabase_GetTextStyleTable_0).apply(null,arguments)},rv=b._emscripten_bind_MdDbDatabase_GetBlockTable_0=function(){return(rv=b._emscripten_bind_MdDbDatabase_GetBlockTable_0=b.asm.emscripten_bind_MdDbDatabase_GetBlockTable_0).apply(null,
  480. arguments)},sv=b._emscripten_bind_MdDbDatabase_CurrentSpace_0=function(){return(sv=b._emscripten_bind_MdDbDatabase_CurrentSpace_0=b.asm.emscripten_bind_MdDbDatabase_CurrentSpace_0).apply(null,arguments)},tv=b._emscripten_bind_MdDbDatabase_GetNamedObjectsDictionary_0=function(){return(tv=b._emscripten_bind_MdDbDatabase_GetNamedObjectsDictionary_0=b.asm.emscripten_bind_MdDbDatabase_GetNamedObjectsDictionary_0).apply(null,arguments)},uv=b._emscripten_bind_MdDbDatabase_GetGroupDictionary_0=function(){return(uv=
  481. b._emscripten_bind_MdDbDatabase_GetGroupDictionary_0=b.asm.emscripten_bind_MdDbDatabase_GetGroupDictionary_0).apply(null,arguments)},vv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeScale_0=function(){return(vv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeScale_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeScale_0).apply(null,arguments)},wv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeScale_1=function(){return(wv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeScale_1=
  482. b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeScale_1).apply(null,arguments)},xv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLayerName_0=function(){return(xv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLayerName_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyLayerName_0).apply(null,arguments)},yv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLayerName_1=function(){return(yv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLayerName_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyLayerName_1).apply(null,
  483. arguments)},zv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeName_0=function(){return(zv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeName_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyLineTypeName_0).apply(null,arguments)},Av=b._emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeName_1=function(){return(Av=b._emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeName_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyLineTypeName_1).apply(null,arguments)},Bv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTrueColor_0=
  484. function(){return(Bv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTrueColor_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyTrueColor_0).apply(null,arguments)},Cv=b._emscripten_bind_MdDbDatabase_GetCurrentlyDrawColor_0=function(){return(Cv=b._emscripten_bind_MdDbDatabase_GetCurrentlyDrawColor_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyDrawColor_0).apply(null,arguments)},Dv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTrueColor_1=function(){return(Dv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTrueColor_1=
  485. b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyTrueColor_1).apply(null,arguments)},Ev=b._emscripten_bind_MdDbDatabase_GetCurrentlyColorIndex_0=function(){return(Ev=b._emscripten_bind_MdDbDatabase_GetCurrentlyColorIndex_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyColorIndex_0).apply(null,arguments)},Fv=b._emscripten_bind_MdDbDatabase_SetCurrentlyColorIndex_1=function(){return(Fv=b._emscripten_bind_MdDbDatabase_SetCurrentlyColorIndex_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyColorIndex_1).apply(null,
  486. arguments)},Gv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleName_0=function(){return(Gv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleName_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleName_0).apply(null,arguments)},Hv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTextStyle_1=function(){return(Hv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTextStyle_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyTextStyle_1).apply(null,arguments)},Iv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleId_0=
  487. function(){return(Iv=b._emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleId_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyTextStyleId_0).apply(null,arguments)},Jv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTextStyleId_1=function(){return(Jv=b._emscripten_bind_MdDbDatabase_SetCurrentlyTextStyleId_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyTextStyleId_1).apply(null,arguments)},Kv=b._emscripten_bind_MdDbDatabase_GetCurrentlyDimStyleId_0=function(){return(Kv=b._emscripten_bind_MdDbDatabase_GetCurrentlyDimStyleId_0=
  488. b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyDimStyleId_0).apply(null,arguments)},Lv=b._emscripten_bind_MdDbDatabase_SetCurrentlyDimStyleId_1=function(){return(Lv=b._emscripten_bind_MdDbDatabase_SetCurrentlyDimStyleId_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyDimStyleId_1).apply(null,arguments)},Mv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLayerId_0=function(){return(Mv=b._emscripten_bind_MdDbDatabase_GetCurrentlyLayerId_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyLayerId_0).apply(null,
  489. arguments)},Nv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLayerId_1=function(){return(Nv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLayerId_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyLayerId_1).apply(null,arguments)},Ov=b._emscripten_bind_MdDbDatabase_GetCurrentlyLinetypeId_0=function(){return(Ov=b._emscripten_bind_MdDbDatabase_GetCurrentlyLinetypeId_0=b.asm.emscripten_bind_MdDbDatabase_GetCurrentlyLinetypeId_0).apply(null,arguments)},Pv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLinetypeId_1=
  490. function(){return(Pv=b._emscripten_bind_MdDbDatabase_SetCurrentlyLinetypeId_1=b.asm.emscripten_bind_MdDbDatabase_SetCurrentlyLinetypeId_1).apply(null,arguments)},Qv=b._emscripten_bind_MdDbDatabase_HandleToIdIndex_1=function(){return(Qv=b._emscripten_bind_MdDbDatabase_HandleToIdIndex_1=b.asm.emscripten_bind_MdDbDatabase_HandleToIdIndex_1).apply(null,arguments)},Rv=b._emscripten_bind_MdDbDatabase_IsModifyed_0=function(){return(Rv=b._emscripten_bind_MdDbDatabase_IsModifyed_0=b.asm.emscripten_bind_MdDbDatabase_IsModifyed_0).apply(null,
  491. arguments)},Sv=b._emscripten_bind_MdDbDatabase_SetModifyed_1=function(){return(Sv=b._emscripten_bind_MdDbDatabase_SetModifyed_1=b.asm.emscripten_bind_MdDbDatabase_SetModifyed_1).apply(null,arguments)},Tv=b._emscripten_bind_MdDbDatabase_getEntitiesInTheGroup_1=function(){return(Tv=b._emscripten_bind_MdDbDatabase_getEntitiesInTheGroup_1=b.asm.emscripten_bind_MdDbDatabase_getEntitiesInTheGroup_1).apply(null,arguments)},Uv=b._emscripten_bind_MdDbDatabase_getObjectName_0=function(){return(Uv=b._emscripten_bind_MdDbDatabase_getObjectName_0=
  492. b.asm.emscripten_bind_MdDbDatabase_getObjectName_0).apply(null,arguments)},Vv=b._emscripten_bind_MdDbDatabase_getDxf0_0=function(){return(Vv=b._emscripten_bind_MdDbDatabase_getDxf0_0=b.asm.emscripten_bind_MdDbDatabase_getDxf0_0).apply(null,arguments)},Wv=b._emscripten_bind_MdDbDatabase_getCustomEntityTypeName_0=function(){return(Wv=b._emscripten_bind_MdDbDatabase_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbDatabase_getCustomEntityTypeName_0).apply(null,arguments)},Xv=b._emscripten_bind_MdDbDatabase_getCustomEntityid_0=
  493. function(){return(Xv=b._emscripten_bind_MdDbDatabase_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDatabase_getCustomEntityid_0).apply(null,arguments)},Yv=b._emscripten_bind_MdDbDatabase_getCustomEntityTempid_0=function(){return(Yv=b._emscripten_bind_MdDbDatabase_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbDatabase_getCustomEntityTempid_0).apply(null,arguments)},Zv=b._emscripten_bind_MdDbDatabase_setCustomEntityTempid_1=function(){return(Zv=b._emscripten_bind_MdDbDatabase_setCustomEntityTempid_1=
  494. b.asm.emscripten_bind_MdDbDatabase_setCustomEntityTempid_1).apply(null,arguments)},$v=b._emscripten_bind_MdDbDatabase_getJson_0=function(){return($v=b._emscripten_bind_MdDbDatabase_getJson_0=b.asm.emscripten_bind_MdDbDatabase_getJson_0).apply(null,arguments)},aw=b._emscripten_bind_MdDbDatabase_setJson_1=function(){return(aw=b._emscripten_bind_MdDbDatabase_setJson_1=b.asm.emscripten_bind_MdDbDatabase_setJson_1).apply(null,arguments)},bw=b._emscripten_bind_MdDbDatabase_isKindOf_1=function(){return(bw=
  495. b._emscripten_bind_MdDbDatabase_isKindOf_1=b.asm.emscripten_bind_MdDbDatabase_isKindOf_1).apply(null,arguments)},cw=b._emscripten_bind_MdDbDatabase_isNull_0=function(){return(cw=b._emscripten_bind_MdDbDatabase_isNull_0=b.asm.emscripten_bind_MdDbDatabase_isNull_0).apply(null,arguments)},dw=b._emscripten_bind_McObject_updateDisplay_2=function(){return(dw=b._emscripten_bind_McObject_updateDisplay_2=b.asm.emscripten_bind_McObject_updateDisplay_2).apply(null,arguments)},ew=b._emscripten_bind_McObject_updateDisplayMatrixData_3=
  496. function(){return(ew=b._emscripten_bind_McObject_updateDisplayMatrixData_3=b.asm.emscripten_bind_McObject_updateDisplayMatrixData_3).apply(null,arguments)},fw=b._emscripten_bind_McObject_test_0=function(){return(fw=b._emscripten_bind_McObject_test_0=b.asm.emscripten_bind_McObject_test_0).apply(null,arguments)},gw=b._emscripten_bind_McObject_openWebFile_6=function(){return(gw=b._emscripten_bind_McObject_openWebFile_6=b.asm.emscripten_bind_McObject_openWebFile_6).apply(null,arguments)},hw=b._emscripten_bind_McObject_loadTz_1=
  497. function(){return(hw=b._emscripten_bind_McObject_loadTz_1=b.asm.emscripten_bind_McObject_loadTz_1).apply(null,arguments)},iw=b._emscripten_bind_McObject_newFile_0=function(){return(iw=b._emscripten_bind_McObject_newFile_0=b.asm.emscripten_bind_McObject_newFile_0).apply(null,arguments)},jw=b._emscripten_bind_McObject_insertBlock_8=function(){return(jw=b._emscripten_bind_McObject_insertBlock_8=b.asm.emscripten_bind_McObject_insertBlock_8).apply(null,arguments)},kw=b._emscripten_bind_McObject_addImageDefine_3=
  498. function(){return(kw=b._emscripten_bind_McObject_addImageDefine_3=b.asm.emscripten_bind_McObject_addImageDefine_3).apply(null,arguments)},lw=b._emscripten_bind_McObject_addSystemVarNameForEvent_1=function(){return(lw=b._emscripten_bind_McObject_addSystemVarNameForEvent_1=b.asm.emscripten_bind_McObject_addSystemVarNameForEvent_1).apply(null,arguments)},mw=b._emscripten_bind_McObject_saveFileToUrl_1=function(){return(mw=b._emscripten_bind_McObject_saveFileToUrl_1=b.asm.emscripten_bind_McObject_saveFileToUrl_1).apply(null,
  499. arguments)},nw=b._emscripten_bind_McObject_saveTempFile_0=function(){return(nw=b._emscripten_bind_McObject_saveTempFile_0=b.asm.emscripten_bind_McObject_saveTempFile_0).apply(null,arguments)},ow=b._emscripten_bind_McObject_saveFileToMemory_0=function(){return(ow=b._emscripten_bind_McObject_saveFileToMemory_0=b.asm.emscripten_bind_McObject_saveFileToMemory_0).apply(null,arguments)},pw=b._emscripten_bind_McObject_deleteFile_1=function(){return(pw=b._emscripten_bind_McObject_deleteFile_1=b.asm.emscripten_bind_McObject_deleteFile_1).apply(null,
  500. arguments)},qw=b._emscripten_bind_McObject_saveFile_2=function(){return(qw=b._emscripten_bind_McObject_saveFile_2=b.asm.emscripten_bind_McObject_saveFile_2).apply(null,arguments)},rw=b._emscripten_bind_McObject_getViewDataJsonParam_1=function(){return(rw=b._emscripten_bind_McObject_getViewDataJsonParam_1=b.asm.emscripten_bind_McObject_getViewDataJsonParam_1).apply(null,arguments)},sw=b._emscripten_bind_McObject_regen_0=function(){return(sw=b._emscripten_bind_McObject_regen_0=b.asm.emscripten_bind_McObject_regen_0).apply(null,
  501. arguments)},tw=b._emscripten_bind_McObject_setBrowse_1=function(){return(tw=b._emscripten_bind_McObject_setBrowse_1=b.asm.emscripten_bind_McObject_setBrowse_1).apply(null,arguments)},uw=b._emscripten_bind_McObject_GetDatabase_0=function(){return(uw=b._emscripten_bind_McObject_GetDatabase_0=b.asm.emscripten_bind_McObject_GetDatabase_0).apply(null,arguments)},vw=b._emscripten_bind_McObject_GetSysVarString_1=function(){return(vw=b._emscripten_bind_McObject_GetSysVarString_1=b.asm.emscripten_bind_McObject_GetSysVarString_1).apply(null,
  502. arguments)},ww=b._emscripten_bind_McObject_SetSysVarString_2=function(){return(ww=b._emscripten_bind_McObject_SetSysVarString_2=b.asm.emscripten_bind_McObject_SetSysVarString_2).apply(null,arguments)},xw=b._emscripten_bind_McObject_GetSysVarDouble_1=function(){return(xw=b._emscripten_bind_McObject_GetSysVarDouble_1=b.asm.emscripten_bind_McObject_GetSysVarDouble_1).apply(null,arguments)},yw=b._emscripten_bind_McObject_SetSysVarDouble_2=function(){return(yw=b._emscripten_bind_McObject_SetSysVarDouble_2=
  503. b.asm.emscripten_bind_McObject_SetSysVarDouble_2).apply(null,arguments)},zw=b._emscripten_bind_McObject_GetSysVarLong_1=function(){return(zw=b._emscripten_bind_McObject_GetSysVarLong_1=b.asm.emscripten_bind_McObject_GetSysVarLong_1).apply(null,arguments)},Aw=b._emscripten_bind_McObject_SetSysVarLong_2=function(){return(Aw=b._emscripten_bind_McObject_SetSysVarLong_2=b.asm.emscripten_bind_McObject_SetSysVarLong_2).apply(null,arguments)},Bw=b._emscripten_bind_McObject_GetSysVarPoint_1=function(){return(Bw=
  504. b._emscripten_bind_McObject_GetSysVarPoint_1=b.asm.emscripten_bind_McObject_GetSysVarPoint_1).apply(null,arguments)},Cw=b._emscripten_bind_McObject_SetSysVarPoint_3=function(){return(Cw=b._emscripten_bind_McObject_SetSysVarPoint_3=b.asm.emscripten_bind_McObject_SetSysVarPoint_3).apply(null,arguments)},Dw=b._emscripten_bind_McObject_fireEventWindowSize_2=function(){return(Dw=b._emscripten_bind_McObject_fireEventWindowSize_2=b.asm.emscripten_bind_McObject_fireEventWindowSize_2).apply(null,arguments)},
  505. Ew=b._emscripten_bind_McObject_fireStartRunCommand_2=function(){return(Ew=b._emscripten_bind_McObject_fireStartRunCommand_2=b.asm.emscripten_bind_McObject_fireStartRunCommand_2).apply(null,arguments)},Fw=b._emscripten_bind_McObject_fireEndRunCommand_2=function(){return(Fw=b._emscripten_bind_McObject_fireEndRunCommand_2=b.asm.emscripten_bind_McObject_fireEndRunCommand_2).apply(null,arguments)},Gw=b._emscripten_bind_McObject_fireEventDragWillEnd_0=function(){return(Gw=b._emscripten_bind_McObject_fireEventDragWillEnd_0=
  506. b.asm.emscripten_bind_McObject_fireEventDragWillEnd_0).apply(null,arguments)},Hw=b._emscripten_bind_McObject_fireViewAngleChange_1=function(){return(Hw=b._emscripten_bind_McObject_fireViewAngleChange_1=b.asm.emscripten_bind_McObject_fireViewAngleChange_1).apply(null,arguments)},Iw=b._emscripten_bind_McObject_IntelliSelect_PointSelect_3=function(){return(Iw=b._emscripten_bind_McObject_IntelliSelect_PointSelect_3=b.asm.emscripten_bind_McObject_IntelliSelect_PointSelect_3).apply(null,arguments)},Jw=
  507. b._emscripten_bind_McObject_IntelliSelect_RangeSelect_5=function(){return(Jw=b._emscripten_bind_McObject_IntelliSelect_RangeSelect_5=b.asm.emscripten_bind_McObject_IntelliSelect_RangeSelect_5).apply(null,arguments)},Kw=b._emscripten_bind_McObject_Osnap_NotifyOsnap_8=function(){return(Kw=b._emscripten_bind_McObject_Osnap_NotifyOsnap_8=b.asm.emscripten_bind_McObject_Osnap_NotifyOsnap_8).apply(null,arguments)},Lw=b._emscripten_bind_McObject_EntityTempWordDraw_onJigCommandEnd_0=function(){return(Lw=b._emscripten_bind_McObject_EntityTempWordDraw_onJigCommandEnd_0=
  508. b.asm.emscripten_bind_McObject_EntityTempWordDraw_onJigCommandEnd_0).apply(null,arguments)},Mw=b._emscripten_bind_McObject_EntityTempWordDraw_onJigDrawEntityDisplay_2=function(){return(Mw=b._emscripten_bind_McObject_EntityTempWordDraw_onJigDrawEntityDisplay_2=b.asm.emscripten_bind_McObject_EntityTempWordDraw_onJigDrawEntityDisplay_2).apply(null,arguments)},Nw=b._emscripten_bind_McObject_EntityTempWordDraw_onReadyJigUpdateDispla_3=function(){return(Nw=b._emscripten_bind_McObject_EntityTempWordDraw_onReadyJigUpdateDispla_3=
  509. b.asm.emscripten_bind_McObject_EntityTempWordDraw_onReadyJigUpdateDispla_3).apply(null,arguments)},Ow=b._emscripten_bind_McObject_EntityTempWordDraw_onJigClearDisplay_0=function(){return(Ow=b._emscripten_bind_McObject_EntityTempWordDraw_onJigClearDisplay_0=b.asm.emscripten_bind_McObject_EntityTempWordDraw_onJigClearDisplay_0).apply(null,arguments)},Pw=b._emscripten_bind_McObject_SetDrawColor_1=function(){return(Pw=b._emscripten_bind_McObject_SetDrawColor_1=b.asm.emscripten_bind_McObject_SetDrawColor_1).apply(null,
  510. arguments)},Qw=b._emscripten_bind_McObject_GetDrawColor_0=function(){return(Qw=b._emscripten_bind_McObject_GetDrawColor_0=b.asm.emscripten_bind_McObject_GetDrawColor_0).apply(null,arguments)},Rw=b._emscripten_bind_McObject_AddLayer_1=function(){return(Rw=b._emscripten_bind_McObject_AddLayer_1=b.asm.emscripten_bind_McObject_AddLayer_1).apply(null,arguments)},Sw=b._emscripten_bind_McObject_SetDrawLayer_1=function(){return(Sw=b._emscripten_bind_McObject_SetDrawLayer_1=b.asm.emscripten_bind_McObject_SetDrawLayer_1).apply(null,
  511. arguments)},Tw=b._emscripten_bind_McObject_GetDrawLayer_0=function(){return(Tw=b._emscripten_bind_McObject_GetDrawLayer_0=b.asm.emscripten_bind_McObject_GetDrawLayer_0).apply(null,arguments)},Uw=b._emscripten_bind_McObject_AddTextStyle_4=function(){return(Uw=b._emscripten_bind_McObject_AddTextStyle_4=b.asm.emscripten_bind_McObject_AddTextStyle_4).apply(null,arguments)},Vw=b._emscripten_bind_McObject_AddTureTypeTextStyle_3=function(){return(Vw=b._emscripten_bind_McObject_AddTureTypeTextStyle_3=b.asm.emscripten_bind_McObject_AddTureTypeTextStyle_3).apply(null,
  512. arguments)},Ww=b._emscripten_bind_McObject_SetDrawTextStyle_1=function(){return(Ww=b._emscripten_bind_McObject_SetDrawTextStyle_1=b.asm.emscripten_bind_McObject_SetDrawTextStyle_1).apply(null,arguments)},Xw=b._emscripten_bind_McObject_GetDrawTextStyle_0=function(){return(Xw=b._emscripten_bind_McObject_GetDrawTextStyle_0=b.asm.emscripten_bind_McObject_GetDrawTextStyle_0).apply(null,arguments)},Yw=b._emscripten_bind_McObject_AddLinetype_2=function(){return(Yw=b._emscripten_bind_McObject_AddLinetype_2=
  513. b.asm.emscripten_bind_McObject_AddLinetype_2).apply(null,arguments)},Zw=b._emscripten_bind_McObject_AddLinetypeEx_3=function(){return(Zw=b._emscripten_bind_McObject_AddLinetypeEx_3=b.asm.emscripten_bind_McObject_AddLinetypeEx_3).apply(null,arguments)},$w=b._emscripten_bind_McObject_AddDimStyle_5=function(){return($w=b._emscripten_bind_McObject_AddDimStyle_5=b.asm.emscripten_bind_McObject_AddDimStyle_5).apply(null,arguments)},ax=b._emscripten_bind_McObject_SetDrawLinetype_1=function(){return(ax=b._emscripten_bind_McObject_SetDrawLinetype_1=
  514. b.asm.emscripten_bind_McObject_SetDrawLinetype_1).apply(null,arguments)},bx=b._emscripten_bind_McObject_GetDrawLinetype_0=function(){return(bx=b._emscripten_bind_McObject_GetDrawLinetype_0=b.asm.emscripten_bind_McObject_GetDrawLinetype_0).apply(null,arguments)},cx=b._emscripten_bind_McObject_SetDrawLineWeight_1=function(){return(cx=b._emscripten_bind_McObject_SetDrawLineWeight_1=b.asm.emscripten_bind_McObject_SetDrawLineWeight_1).apply(null,arguments)},dx=b._emscripten_bind_McObject_GetDrawLineWeight_0=
  515. function(){return(dx=b._emscripten_bind_McObject_GetDrawLineWeight_0=b.asm.emscripten_bind_McObject_GetDrawLineWeight_0).apply(null,arguments)},ex=b._emscripten_bind_McObject_SetDrawLineTypeScale_1=function(){return(ex=b._emscripten_bind_McObject_SetDrawLineTypeScale_1=b.asm.emscripten_bind_McObject_SetDrawLineTypeScale_1).apply(null,arguments)},fx=b._emscripten_bind_McObject_GetDrawLineTypeScale_0=function(){return(fx=b._emscripten_bind_McObject_GetDrawLineTypeScale_0=b.asm.emscripten_bind_McObject_GetDrawLineTypeScale_0).apply(null,
  516. arguments)},gx=b._emscripten_bind_McObject_SetDrawDimStyle_1=function(){return(gx=b._emscripten_bind_McObject_SetDrawDimStyle_1=b.asm.emscripten_bind_McObject_SetDrawDimStyle_1).apply(null,arguments)},hx=b._emscripten_bind_McObject_GetDrawDimStyle_0=function(){return(hx=b._emscripten_bind_McObject_GetDrawDimStyle_0=b.asm.emscripten_bind_McObject_GetDrawDimStyle_0).apply(null,arguments)},ix=b._emscripten_bind_McObject_SetPatternDefinition_1=function(){return(ix=b._emscripten_bind_McObject_SetPatternDefinition_1=
  517. b.asm.emscripten_bind_McObject_SetPatternDefinition_1).apply(null,arguments)},jx=b._emscripten_bind_McObject_GetPatternDefinition_0=function(){return(jx=b._emscripten_bind_McObject_GetPatternDefinition_0=b.asm.emscripten_bind_McObject_GetPatternDefinition_0).apply(null,arguments)},kx=b._emscripten_bind_McObject_SetDrawLineWidth_1=function(){return(kx=b._emscripten_bind_McObject_SetDrawLineWidth_1=b.asm.emscripten_bind_McObject_SetDrawLineWidth_1).apply(null,arguments)},lx=b._emscripten_bind_McObject_GetDrawLineWidth_0=
  518. function(){return(lx=b._emscripten_bind_McObject_GetDrawLineWidth_0=b.asm.emscripten_bind_McObject_GetDrawLineWidth_0).apply(null,arguments)},mx=b._emscripten_bind_McObject_SetDrawUseDefaultProperties_1=function(){return(mx=b._emscripten_bind_McObject_SetDrawUseDefaultProperties_1=b.asm.emscripten_bind_McObject_SetDrawUseDefaultProperties_1).apply(null,arguments)},nx=b._emscripten_bind_McObject_GetDrawUseDefaultProperties_0=function(){return(nx=b._emscripten_bind_McObject_GetDrawUseDefaultProperties_0=
  519. b.asm.emscripten_bind_McObject_GetDrawUseDefaultProperties_0).apply(null,arguments)},ox=b._emscripten_bind_McObject_DrawImage_7=function(){return(ox=b._emscripten_bind_McObject_DrawImage_7=b.asm.emscripten_bind_McObject_DrawImage_7).apply(null,arguments)},px=b._emscripten_bind_McObject_DrawLine_6=function(){return(px=b._emscripten_bind_McObject_DrawLine_6=b.asm.emscripten_bind_McObject_DrawLine_6).apply(null,arguments)},qx=b._emscripten_bind_McObject_DrawArc_5=function(){return(qx=b._emscripten_bind_McObject_DrawArc_5=
  520. b.asm.emscripten_bind_McObject_DrawArc_5).apply(null,arguments)},rx=b._emscripten_bind_McObject_DrawArc2_6=function(){return(rx=b._emscripten_bind_McObject_DrawArc2_6=b.asm.emscripten_bind_McObject_DrawArc2_6).apply(null,arguments)},sx=b._emscripten_bind_McObject_DrawArc3_5=function(){return(sx=b._emscripten_bind_McObject_DrawArc3_5=b.asm.emscripten_bind_McObject_DrawArc3_5).apply(null,arguments)},tx=b._emscripten_bind_McObject_DrawCircle_3=function(){return(tx=b._emscripten_bind_McObject_DrawCircle_3=
  521. b.asm.emscripten_bind_McObject_DrawCircle_3).apply(null,arguments)},ux=b._emscripten_bind_McObject_DrawEllipse_5=function(){return(ux=b._emscripten_bind_McObject_DrawEllipse_5=b.asm.emscripten_bind_McObject_DrawEllipse_5).apply(null,arguments)},vx=b._emscripten_bind_McObject_DrawEllipseArc_7=function(){return(vx=b._emscripten_bind_McObject_DrawEllipseArc_7=b.asm.emscripten_bind_McObject_DrawEllipseArc_7).apply(null,arguments)},wx=b._emscripten_bind_McObject_DrawPoint_2=function(){return(wx=b._emscripten_bind_McObject_DrawPoint_2=
  522. b.asm.emscripten_bind_McObject_DrawPoint_2).apply(null,arguments)},xx=b._emscripten_bind_McObject_DrawSolid_8=function(){return(xx=b._emscripten_bind_McObject_DrawSolid_8=b.asm.emscripten_bind_McObject_DrawSolid_8).apply(null,arguments)},yx=b._emscripten_bind_McObject_DrawMText_7=function(){return(yx=b._emscripten_bind_McObject_DrawMText_7=b.asm.emscripten_bind_McObject_DrawMText_7).apply(null,arguments)},zx=b._emscripten_bind_McObject_DrawText_7=function(){return(zx=b._emscripten_bind_McObject_DrawText_7=
  523. b.asm.emscripten_bind_McObject_DrawText_7).apply(null,arguments)},Ax=b._emscripten_bind_McObject_DrawBlockReference_5=function(){return(Ax=b._emscripten_bind_McObject_DrawBlockReference_5=b.asm.emscripten_bind_McObject_DrawBlockReference_5).apply(null,arguments)},Bx=b._emscripten_bind_McObject_DrawDimAligned_6=function(){return(Bx=b._emscripten_bind_McObject_DrawDimAligned_6=b.asm.emscripten_bind_McObject_DrawDimAligned_6).apply(null,arguments)},Cx=b._emscripten_bind_McObject_DrawDimAngular_8=function(){return(Cx=
  524. b._emscripten_bind_McObject_DrawDimAngular_8=b.asm.emscripten_bind_McObject_DrawDimAngular_8).apply(null,arguments)},Dx=b._emscripten_bind_McObject_DrawDimDiametric_5=function(){return(Dx=b._emscripten_bind_McObject_DrawDimDiametric_5=b.asm.emscripten_bind_McObject_DrawDimDiametric_5).apply(null,arguments)},Ex=b._emscripten_bind_McObject_DrawDimRotated_7=function(){return(Ex=b._emscripten_bind_McObject_DrawDimRotated_7=b.asm.emscripten_bind_McObject_DrawDimRotated_7).apply(null,arguments)},Fx=b._emscripten_bind_McObject_DrawDimOrdinate_5=
  525. function(){return(Fx=b._emscripten_bind_McObject_DrawDimOrdinate_5=b.asm.emscripten_bind_McObject_DrawDimOrdinate_5).apply(null,arguments)},Gx=b._emscripten_bind_McObject_DrawDimRadial_5=function(){return(Gx=b._emscripten_bind_McObject_DrawDimRadial_5=b.asm.emscripten_bind_McObject_DrawDimRadial_5).apply(null,arguments)},Hx=b._emscripten_bind_McObject_PathMoveTo_2=function(){return(Hx=b._emscripten_bind_McObject_PathMoveTo_2=b.asm.emscripten_bind_McObject_PathMoveTo_2).apply(null,arguments)},Ix=b._emscripten_bind_McObject_PathMoveToEx_5=
  526. function(){return(Ix=b._emscripten_bind_McObject_PathMoveToEx_5=b.asm.emscripten_bind_McObject_PathMoveToEx_5).apply(null,arguments)},Jx=b._emscripten_bind_McObject_PathLineTo_2=function(){return(Jx=b._emscripten_bind_McObject_PathLineTo_2=b.asm.emscripten_bind_McObject_PathLineTo_2).apply(null,arguments)},Kx=b._emscripten_bind_McObject_PathLineToEx_5=function(){return(Kx=b._emscripten_bind_McObject_PathLineToEx_5=b.asm.emscripten_bind_McObject_PathLineToEx_5).apply(null,arguments)},Lx=b._emscripten_bind_McObject_PathCircle_5=
  527. function(){return(Lx=b._emscripten_bind_McObject_PathCircle_5=b.asm.emscripten_bind_McObject_PathCircle_5).apply(null,arguments)},Mx=b._emscripten_bind_McObject_DrawPathToPolyline_0=function(){return(Mx=b._emscripten_bind_McObject_DrawPathToPolyline_0=b.asm.emscripten_bind_McObject_DrawPathToPolyline_0).apply(null,arguments)},Nx=b._emscripten_bind_McObject_DrawPathToSpline_0=function(){return(Nx=b._emscripten_bind_McObject_DrawPathToSpline_0=b.asm.emscripten_bind_McObject_DrawPathToSpline_0).apply(null,
  528. arguments)},Ox=b._emscripten_bind_McObject_PathMakeClosed_0=function(){return(Ox=b._emscripten_bind_McObject_PathMakeClosed_0=b.asm.emscripten_bind_McObject_PathMakeClosed_0).apply(null,arguments)},Px=b._emscripten_bind_McObject_DrawPathToHatch_1=function(){return(Px=b._emscripten_bind_McObject_DrawPathToHatch_1=b.asm.emscripten_bind_McObject_DrawPathToHatch_1).apply(null,arguments)},Qx=b._emscripten_bind_McObject_DrawHatch_2=function(){return(Qx=b._emscripten_bind_McObject_DrawHatch_2=b.asm.emscripten_bind_McObject_DrawHatch_2).apply(null,
  529. arguments)},Rx=b._emscripten_bind_McObject_DrawEntity_2=function(){return(Rx=b._emscripten_bind_McObject_DrawEntity_2=b.asm.emscripten_bind_McObject_DrawEntity_2).apply(null,arguments)},Sx=b._emscripten_bind_McObject_GetAllLayoutName_0=function(){return(Sx=b._emscripten_bind_McObject_GetAllLayoutName_0=b.asm.emscripten_bind_McObject_GetAllLayoutName_0).apply(null,arguments)},Tx=b._emscripten_bind_McObject_SetCurrentLayout_1=function(){return(Tx=b._emscripten_bind_McObject_SetCurrentLayout_1=b.asm.emscripten_bind_McObject_SetCurrentLayout_1).apply(null,
  530. arguments)},Ux=b._emscripten_bind_McObject_PathMakeExclude_1=function(){return(Ux=b._emscripten_bind_McObject_PathMakeExclude_1=b.asm.emscripten_bind_McObject_PathMakeExclude_1).apply(null,arguments)},Vx=b._emscripten_bind_McObject_AddPatternDefinition_2=function(){return(Vx=b._emscripten_bind_McObject_AddPatternDefinition_2=b.asm.emscripten_bind_McObject_AddPatternDefinition_2).apply(null,arguments)},Wx=b._emscripten_bind_McObject_SetAppId_1=function(){return(Wx=b._emscripten_bind_McObject_SetAppId_1=
  531. b.asm.emscripten_bind_McObject_SetAppId_1).apply(null,arguments)},Xx=b._emscripten_bind_McObject_UpdateLayerDisplayStatus_0=function(){return(Xx=b._emscripten_bind_McObject_UpdateLayerDisplayStatus_0=b.asm.emscripten_bind_McObject_UpdateLayerDisplayStatus_0).apply(null,arguments)},Yx=b._emscripten_bind_McObject_showLineWeight_1=function(){return(Yx=b._emscripten_bind_McObject_showLineWeight_1=b.asm.emscripten_bind_McObject_showLineWeight_1).apply(null,arguments)},Zx=b._emscripten_bind_McObject_initRegist_1=
  532. function(){return(Zx=b._emscripten_bind_McObject_initRegist_1=b.asm.emscripten_bind_McObject_initRegist_1).apply(null,arguments)},$x=b._emscripten_bind_McObject_initAuthorizedService_1=function(){return($x=b._emscripten_bind_McObject_initAuthorizedService_1=b.asm.emscripten_bind_McObject_initAuthorizedService_1).apply(null,arguments)},ay=b._emscripten_bind_McObject_isTryVersion_0=function(){return(ay=b._emscripten_bind_McObject_isTryVersion_0=b.asm.emscripten_bind_McObject_isTryVersion_0).apply(null,
  533. arguments)},by=b._emscripten_bind_McObject_setViewBackgroundColor_3=function(){return(by=b._emscripten_bind_McObject_setViewBackgroundColor_3=b.asm.emscripten_bind_McObject_setViewBackgroundColor_3).apply(null,arguments)},cy=b._emscripten_bind_McObject_createTexture_0=function(){return(cy=b._emscripten_bind_McObject_createTexture_0=b.asm.emscripten_bind_McObject_createTexture_0).apply(null,arguments)},dy=b._emscripten_bind_McObject_deleteTexture_1=function(){return(dy=b._emscripten_bind_McObject_deleteTexture_1=
  534. b.asm.emscripten_bind_McObject_deleteTexture_1).apply(null,arguments)},ey=b._emscripten_bind_McObject_bindTexture_2=function(){return(ey=b._emscripten_bind_McObject_bindTexture_2=b.asm.emscripten_bind_McObject_bindTexture_2).apply(null,arguments)},fy=b._emscripten_bind_McObject_allocTextureHandle_1=function(){return(fy=b._emscripten_bind_McObject_allocTextureHandle_1=b.asm.emscripten_bind_McObject_allocTextureHandle_1).apply(null,arguments)},gy=b._emscripten_bind_McObject_registTexture_2=function(){return(gy=
  535. b._emscripten_bind_McObject_registTexture_2=b.asm.emscripten_bind_McObject_registTexture_2).apply(null,arguments)},hy=b._emscripten_bind_McObject_undo_0=function(){return(hy=b._emscripten_bind_McObject_undo_0=b.asm.emscripten_bind_McObject_undo_0).apply(null,arguments)},iy=b._emscripten_bind_McObject_redo_0=function(){return(iy=b._emscripten_bind_McObject_redo_0=b.asm.emscripten_bind_McObject_redo_0).apply(null,arguments)},jy=b._emscripten_bind_McObject_undoMark_0=function(){return(jy=b._emscripten_bind_McObject_undoMark_0=
  536. b.asm.emscripten_bind_McObject_undoMark_0).apply(null,arguments)},ky=b._emscripten_bind_McObject_setAttribute_1=function(){return(ky=b._emscripten_bind_McObject_setAttribute_1=b.asm.emscripten_bind_McObject_setAttribute_1).apply(null,arguments)},ly=b._emscripten_bind_McObject_loadDwgBackground_4=function(){return(ly=b._emscripten_bind_McObject_loadDwgBackground_4=b.asm.emscripten_bind_McObject_loadDwgBackground_4).apply(null,arguments)},my=b._emscripten_bind_McObject_GetBackgroundEntity_0=function(){return(my=
  537. b._emscripten_bind_McObject_GetBackgroundEntity_0=b.asm.emscripten_bind_McObject_GetBackgroundEntity_0).apply(null,arguments)},ny=b._emscripten_bind_McObject_makeCurrent_0=function(){return(ny=b._emscripten_bind_McObject_makeCurrent_0=b.asm.emscripten_bind_McObject_makeCurrent_0).apply(null,arguments)},oy=b._emscripten_bind_McObject_isPaperSpaceDisplay_0=function(){return(oy=b._emscripten_bind_McObject_isPaperSpaceDisplay_0=b.asm.emscripten_bind_McObject_isPaperSpaceDisplay_0).apply(null,arguments)},
  538. py=b._emscripten_bind_McDrawResbuf_McDrawResbuf_0=function(){return(py=b._emscripten_bind_McDrawResbuf_McDrawResbuf_0=b.asm.emscripten_bind_McDrawResbuf_McDrawResbuf_0).apply(null,arguments)},qy=b._emscripten_bind_McDrawResbuf_Clear_0=function(){return(qy=b._emscripten_bind_McDrawResbuf_Clear_0=b.asm.emscripten_bind_McDrawResbuf_Clear_0).apply(null,arguments)},ry=b._emscripten_bind_McDrawResbuf_GetCount_0=function(){return(ry=b._emscripten_bind_McDrawResbuf_GetCount_0=b.asm.emscripten_bind_McDrawResbuf_GetCount_0).apply(null,
  539. arguments)},sy=b._emscripten_bind_McDrawResbuf_AtDouble_1=function(){return(sy=b._emscripten_bind_McDrawResbuf_AtDouble_1=b.asm.emscripten_bind_McDrawResbuf_AtDouble_1).apply(null,arguments)},ty=b._emscripten_bind_McDrawResbuf_Atlong_1=function(){return(ty=b._emscripten_bind_McDrawResbuf_Atlong_1=b.asm.emscripten_bind_McDrawResbuf_Atlong_1).apply(null,arguments)},uy=b._emscripten_bind_McDrawResbuf_AtObjectId_1=function(){return(uy=b._emscripten_bind_McDrawResbuf_AtObjectId_1=b.asm.emscripten_bind_McDrawResbuf_AtObjectId_1).apply(null,
  540. arguments)},vy=b._emscripten_bind_McDrawResbuf_AtObject_1=function(){return(vy=b._emscripten_bind_McDrawResbuf_AtObject_1=b.asm.emscripten_bind_McDrawResbuf_AtObject_1).apply(null,arguments)},wy=b._emscripten_bind_McDrawResbuf_AtRxObject_1=function(){return(wy=b._emscripten_bind_McDrawResbuf_AtRxObject_1=b.asm.emscripten_bind_McDrawResbuf_AtRxObject_1).apply(null,arguments)},xy=b._emscripten_bind_McDrawResbuf_AtObjectMdDbMText_1=function(){return(xy=b._emscripten_bind_McDrawResbuf_AtObjectMdDbMText_1=
  541. b.asm.emscripten_bind_McDrawResbuf_AtObjectMdDbMText_1).apply(null,arguments)},yy=b._emscripten_bind_McDrawResbuf_AtObjectName_1=function(){return(yy=b._emscripten_bind_McDrawResbuf_AtObjectName_1=b.asm.emscripten_bind_McDrawResbuf_AtObjectName_1).apply(null,arguments)},zy=b._emscripten_bind_McDrawResbuf_AtString_1=function(){return(zy=b._emscripten_bind_McDrawResbuf_AtString_1=b.asm.emscripten_bind_McDrawResbuf_AtString_1).apply(null,arguments)},Ay=b._emscripten_bind_McDrawResbuf_AtPoint_1=function(){return(Ay=
  542. b._emscripten_bind_McDrawResbuf_AtPoint_1=b.asm.emscripten_bind_McDrawResbuf_AtPoint_1).apply(null,arguments)},By=b._emscripten_bind_McDrawResbuf_ItemDataType_1=function(){return(By=b._emscripten_bind_McDrawResbuf_ItemDataType_1=b.asm.emscripten_bind_McDrawResbuf_ItemDataType_1).apply(null,arguments)},Cy=b._emscripten_bind_McDrawResbuf_ItemDataDxf_1=function(){return(Cy=b._emscripten_bind_McDrawResbuf_ItemDataDxf_1=b.asm.emscripten_bind_McDrawResbuf_ItemDataDxf_1).apply(null,arguments)},Dy=b._emscripten_bind_McDrawResbuf_AddDouble_2=
  543. function(){return(Dy=b._emscripten_bind_McDrawResbuf_AddDouble_2=b.asm.emscripten_bind_McDrawResbuf_AddDouble_2).apply(null,arguments)},Ey=b._emscripten_bind_McDrawResbuf_Addlong_2=function(){return(Ey=b._emscripten_bind_McDrawResbuf_Addlong_2=b.asm.emscripten_bind_McDrawResbuf_Addlong_2).apply(null,arguments)},Fy=b._emscripten_bind_McDrawResbuf_AddObjectId_2=function(){return(Fy=b._emscripten_bind_McDrawResbuf_AddObjectId_2=b.asm.emscripten_bind_McDrawResbuf_AddObjectId_2).apply(null,arguments)},
  544. Gy=b._emscripten_bind_McDrawResbuf_AddObject_1=function(){return(Gy=b._emscripten_bind_McDrawResbuf_AddObject_1=b.asm.emscripten_bind_McDrawResbuf_AddObject_1).apply(null,arguments)},Hy=b._emscripten_bind_McDrawResbuf_AddString_2=function(){return(Hy=b._emscripten_bind_McDrawResbuf_AddString_2=b.asm.emscripten_bind_McDrawResbuf_AddString_2).apply(null,arguments)},Iy=b._emscripten_bind_McDrawResbuf_AddPoint_2=function(){return(Iy=b._emscripten_bind_McDrawResbuf_AddPoint_2=b.asm.emscripten_bind_McDrawResbuf_AddPoint_2).apply(null,
  545. arguments)},Jy=b._emscripten_bind_McDrawResbuf_RemoveAll_0=function(){return(Jy=b._emscripten_bind_McDrawResbuf_RemoveAll_0=b.asm.emscripten_bind_McDrawResbuf_RemoveAll_0).apply(null,arguments)},Ky=b._emscripten_bind_McDrawResbuf_Remove_1=function(){return(Ky=b._emscripten_bind_McDrawResbuf_Remove_1=b.asm.emscripten_bind_McDrawResbuf_Remove_1).apply(null,arguments)},Ly=b._emscripten_bind_McDrawResbuf_PrintData_0=function(){return(Ly=b._emscripten_bind_McDrawResbuf_PrintData_0=b.asm.emscripten_bind_McDrawResbuf_PrintData_0).apply(null,
  546. arguments)},My=b._emscripten_bind_McDrawResbuf_getObjectName_0=function(){return(My=b._emscripten_bind_McDrawResbuf_getObjectName_0=b.asm.emscripten_bind_McDrawResbuf_getObjectName_0).apply(null,arguments)},Ny=b._emscripten_bind_McDrawResbuf_getDxf0_0=function(){return(Ny=b._emscripten_bind_McDrawResbuf_getDxf0_0=b.asm.emscripten_bind_McDrawResbuf_getDxf0_0).apply(null,arguments)},Oy=b._emscripten_bind_McDrawResbuf_getCustomEntityTypeName_0=function(){return(Oy=b._emscripten_bind_McDrawResbuf_getCustomEntityTypeName_0=
  547. b.asm.emscripten_bind_McDrawResbuf_getCustomEntityTypeName_0).apply(null,arguments)},Py=b._emscripten_bind_McDrawResbuf_getCustomEntityid_0=function(){return(Py=b._emscripten_bind_McDrawResbuf_getCustomEntityid_0=b.asm.emscripten_bind_McDrawResbuf_getCustomEntityid_0).apply(null,arguments)},Qy=b._emscripten_bind_McDrawResbuf_getCustomEntityTempid_0=function(){return(Qy=b._emscripten_bind_McDrawResbuf_getCustomEntityTempid_0=b.asm.emscripten_bind_McDrawResbuf_getCustomEntityTempid_0).apply(null,arguments)},
  548. Ry=b._emscripten_bind_McDrawResbuf_setCustomEntityTempid_1=function(){return(Ry=b._emscripten_bind_McDrawResbuf_setCustomEntityTempid_1=b.asm.emscripten_bind_McDrawResbuf_setCustomEntityTempid_1).apply(null,arguments)},Sy=b._emscripten_bind_McDrawResbuf_getJson_0=function(){return(Sy=b._emscripten_bind_McDrawResbuf_getJson_0=b.asm.emscripten_bind_McDrawResbuf_getJson_0).apply(null,arguments)},Ty=b._emscripten_bind_McDrawResbuf_setJson_1=function(){return(Ty=b._emscripten_bind_McDrawResbuf_setJson_1=
  549. b.asm.emscripten_bind_McDrawResbuf_setJson_1).apply(null,arguments)},Uy=b._emscripten_bind_McDrawResbuf_isKindOf_1=function(){return(Uy=b._emscripten_bind_McDrawResbuf_isKindOf_1=b.asm.emscripten_bind_McDrawResbuf_isKindOf_1).apply(null,arguments)},Vy=b._emscripten_bind_McDrawResbuf_isNull_0=function(){return(Vy=b._emscripten_bind_McDrawResbuf_isNull_0=b.asm.emscripten_bind_McDrawResbuf_isNull_0).apply(null,arguments)},Wy=b._emscripten_bind_McDrawResbuf___destroy___0=function(){return(Wy=b._emscripten_bind_McDrawResbuf___destroy___0=
  550. b.asm.emscripten_bind_McDrawResbuf___destroy___0).apply(null,arguments)},Xy=b._emscripten_bind_McDrawUtility_McDrawUtility_0=function(){return(Xy=b._emscripten_bind_McDrawUtility_McDrawUtility_0=b.asm.emscripten_bind_McDrawUtility_McDrawUtility_0).apply(null,arguments)},Yy=b._emscripten_bind_McDrawUtility_findEntAtPoint_5=function(){return(Yy=b._emscripten_bind_McDrawUtility_findEntAtPoint_5=b.asm.emscripten_bind_McDrawUtility_findEntAtPoint_5).apply(null,arguments)},Zy=b._emscripten_bind_McDrawUtility_eraseObject_2=
  551. function(){return(Zy=b._emscripten_bind_McDrawUtility_eraseObject_2=b.asm.emscripten_bind_McDrawUtility_eraseObject_2).apply(null,arguments)},$y=b._emscripten_bind_McDrawUtility_highlightEntity_2=function(){return($y=b._emscripten_bind_McDrawUtility_highlightEntity_2=b.asm.emscripten_bind_McDrawUtility_highlightEntity_2).apply(null,arguments)},az=b._emscripten_bind_McDrawUtility_calcBulge_3=function(){return(az=b._emscripten_bind_McDrawUtility_calcBulge_3=b.asm.emscripten_bind_McDrawUtility_calcBulge_3).apply(null,
  552. arguments)},bz=b._emscripten_bind_McDrawUtility_builderHatchFromPoint_2=function(){return(bz=b._emscripten_bind_McDrawUtility_builderHatchFromPoint_2=b.asm.emscripten_bind_McDrawUtility_builderHatchFromPoint_2).apply(null,arguments)},cz=b._emscripten_bind_McDrawUtility___destroy___0=function(){return(cz=b._emscripten_bind_McDrawUtility___destroy___0=b.asm.emscripten_bind_McDrawUtility___destroy___0).apply(null,arguments)},dz=b._emscripten_bind_MxDrawAssist_MxDrawAssist_0=function(){return(dz=b._emscripten_bind_MxDrawAssist_MxDrawAssist_0=
  553. b.asm.emscripten_bind_MxDrawAssist_MxDrawAssist_0).apply(null,arguments)},ez=b._emscripten_bind_MxDrawAssist_MxChamfer_9=function(){return(ez=b._emscripten_bind_MxDrawAssist_MxChamfer_9=b.asm.emscripten_bind_MxDrawAssist_MxChamfer_9).apply(null,arguments)},fz=b._emscripten_bind_MxDrawAssist_MxFillet_8=function(){return(fz=b._emscripten_bind_MxDrawAssist_MxFillet_8=b.asm.emscripten_bind_MxDrawAssist_MxFillet_8).apply(null,arguments)},gz=b._emscripten_bind_MxDrawAssist_MxExplode_1=function(){return(gz=
  554. b._emscripten_bind_MxDrawAssist_MxExplode_1=b.asm.emscripten_bind_MxDrawAssist_MxExplode_1).apply(null,arguments)},hz=b._emscripten_bind_MxDrawAssist_MxJoin_1=function(){return(hz=b._emscripten_bind_MxDrawAssist_MxJoin_1=b.asm.emscripten_bind_MxDrawAssist_MxJoin_1).apply(null,arguments)},iz=b._emscripten_bind_MxDrawAssist_IntersectWith_9=function(){return(iz=b._emscripten_bind_MxDrawAssist_IntersectWith_9=b.asm.emscripten_bind_MxDrawAssist_IntersectWith_9).apply(null,arguments)},jz=b._emscripten_bind_MxDrawAssist_GetClosestPointTo_7=
  555. function(){return(jz=b._emscripten_bind_MxDrawAssist_GetClosestPointTo_7=b.asm.emscripten_bind_MxDrawAssist_GetClosestPointTo_7).apply(null,arguments)},kz=b._emscripten_bind_MxDrawAssist___destroy___0=function(){return(kz=b._emscripten_bind_MxDrawAssist___destroy___0=b.asm.emscripten_bind_MxDrawAssist___destroy___0).apply(null,arguments)},lz=b._emscripten_bind_MxDrawTrimAssist_MxDrawTrimAssist_0=function(){return(lz=b._emscripten_bind_MxDrawTrimAssist_MxDrawTrimAssist_0=b.asm.emscripten_bind_MxDrawTrimAssist_MxDrawTrimAssist_0).apply(null,
  556. arguments)},mz=b._emscripten_bind_MxDrawTrimAssist_Init_1=function(){return(mz=b._emscripten_bind_MxDrawTrimAssist_Init_1=b.asm.emscripten_bind_MxDrawTrimAssist_Init_1).apply(null,arguments)},nz=b._emscripten_bind_MxDrawTrimAssist_UnInit_0=function(){return(nz=b._emscripten_bind_MxDrawTrimAssist_UnInit_0=b.asm.emscripten_bind_MxDrawTrimAssist_UnInit_0).apply(null,arguments)},oz=b._emscripten_bind_MxDrawTrimAssist_DoTrim_5=function(){return(oz=b._emscripten_bind_MxDrawTrimAssist_DoTrim_5=b.asm.emscripten_bind_MxDrawTrimAssist_DoTrim_5).apply(null,
  557. arguments)},pz=b._emscripten_bind_MxDrawTrimAssist___destroy___0=function(){return(pz=b._emscripten_bind_MxDrawTrimAssist___destroy___0=b.asm.emscripten_bind_MxDrawTrimAssist___destroy___0).apply(null,arguments)},qz=b._emscripten_bind_MxDrawExtendAssist_MxDrawExtendAssist_0=function(){return(qz=b._emscripten_bind_MxDrawExtendAssist_MxDrawExtendAssist_0=b.asm.emscripten_bind_MxDrawExtendAssist_MxDrawExtendAssist_0).apply(null,arguments)},rz=b._emscripten_bind_MxDrawExtendAssist_Init_1=function(){return(rz=
  558. b._emscripten_bind_MxDrawExtendAssist_Init_1=b.asm.emscripten_bind_MxDrawExtendAssist_Init_1).apply(null,arguments)},sz=b._emscripten_bind_MxDrawExtendAssist_UnInit_0=function(){return(sz=b._emscripten_bind_MxDrawExtendAssist_UnInit_0=b.asm.emscripten_bind_MxDrawExtendAssist_UnInit_0).apply(null,arguments)},tz=b._emscripten_bind_MxDrawExtendAssist_DoExtend_5=function(){return(tz=b._emscripten_bind_MxDrawExtendAssist_DoExtend_5=b.asm.emscripten_bind_MxDrawExtendAssist_DoExtend_5).apply(null,arguments)},
  559. uz=b._emscripten_bind_MxDrawExtendAssist___destroy___0=function(){return(uz=b._emscripten_bind_MxDrawExtendAssist___destroy___0=b.asm.emscripten_bind_MxDrawExtendAssist___destroy___0).apply(null,arguments)},vz=b._emscripten_bind_MdDbLine_MdDbLine_0=function(){return(vz=b._emscripten_bind_MdDbLine_MdDbLine_0=b.asm.emscripten_bind_MdDbLine_MdDbLine_0).apply(null,arguments)},wz=b._emscripten_bind_MdDbLine_startPoint_0=function(){return(wz=b._emscripten_bind_MdDbLine_startPoint_0=b.asm.emscripten_bind_MdDbLine_startPoint_0).apply(null,
  560. arguments)},xz=b._emscripten_bind_MdDbLine_setStartPoint_1=function(){return(xz=b._emscripten_bind_MdDbLine_setStartPoint_1=b.asm.emscripten_bind_MdDbLine_setStartPoint_1).apply(null,arguments)},yz=b._emscripten_bind_MdDbLine_endPoint_0=function(){return(yz=b._emscripten_bind_MdDbLine_endPoint_0=b.asm.emscripten_bind_MdDbLine_endPoint_0).apply(null,arguments)},zz=b._emscripten_bind_MdDbLine_setEndPoint_1=function(){return(zz=b._emscripten_bind_MdDbLine_setEndPoint_1=b.asm.emscripten_bind_MdDbLine_setEndPoint_1).apply(null,
  561. arguments)},Az=b._emscripten_bind_MdDbLine_getStartParam_0=function(){return(Az=b._emscripten_bind_MdDbLine_getStartParam_0=b.asm.emscripten_bind_MdDbLine_getStartParam_0).apply(null,arguments)},Bz=b._emscripten_bind_MdDbLine_getEndParam_0=function(){return(Bz=b._emscripten_bind_MdDbLine_getEndParam_0=b.asm.emscripten_bind_MdDbLine_getEndParam_0).apply(null,arguments)},Cz=b._emscripten_bind_MdDbLine_getDistAtParam_1=function(){return(Cz=b._emscripten_bind_MdDbLine_getDistAtParam_1=b.asm.emscripten_bind_MdDbLine_getDistAtParam_1).apply(null,
  562. arguments)},Dz=b._emscripten_bind_MdDbLine_getParamAtDist_1=function(){return(Dz=b._emscripten_bind_MdDbLine_getParamAtDist_1=b.asm.emscripten_bind_MdDbLine_getParamAtDist_1).apply(null,arguments)},Ez=b._emscripten_bind_MdDbLine_getDistAtPoint_1=function(){return(Ez=b._emscripten_bind_MdDbLine_getDistAtPoint_1=b.asm.emscripten_bind_MdDbLine_getDistAtPoint_1).apply(null,arguments)},Fz=b._emscripten_bind_MdDbLine_getPointAtDist_1=function(){return(Fz=b._emscripten_bind_MdDbLine_getPointAtDist_1=b.asm.emscripten_bind_MdDbLine_getPointAtDist_1).apply(null,
  563. arguments)},Gz=b._emscripten_bind_MdDbLine_getStartPoint_0=function(){return(Gz=b._emscripten_bind_MdDbLine_getStartPoint_0=b.asm.emscripten_bind_MdDbLine_getStartPoint_0).apply(null,arguments)},Hz=b._emscripten_bind_MdDbLine_getEndPoint_0=function(){return(Hz=b._emscripten_bind_MdDbLine_getEndPoint_0=b.asm.emscripten_bind_MdDbLine_getEndPoint_0).apply(null,arguments)},Iz=b._emscripten_bind_MdDbLine_getPointAtParam_1=function(){return(Iz=b._emscripten_bind_MdDbLine_getPointAtParam_1=b.asm.emscripten_bind_MdDbLine_getPointAtParam_1).apply(null,
  564. arguments)},Jz=b._emscripten_bind_MdDbLine_getParamAtPoint_1=function(){return(Jz=b._emscripten_bind_MdDbLine_getParamAtPoint_1=b.asm.emscripten_bind_MdDbLine_getParamAtPoint_1).apply(null,arguments)},Kz=b._emscripten_bind_MdDbLine_getFirstDeriv_1=function(){return(Kz=b._emscripten_bind_MdDbLine_getFirstDeriv_1=b.asm.emscripten_bind_MdDbLine_getFirstDeriv_1).apply(null,arguments)},Lz=b._emscripten_bind_MdDbLine_getFirstDerivEx_1=function(){return(Lz=b._emscripten_bind_MdDbLine_getFirstDerivEx_1=b.asm.emscripten_bind_MdDbLine_getFirstDerivEx_1).apply(null,
  565. arguments)},Mz=b._emscripten_bind_MdDbLine_getClosestPointTo_2=function(){return(Mz=b._emscripten_bind_MdDbLine_getClosestPointTo_2=b.asm.emscripten_bind_MdDbLine_getClosestPointTo_2).apply(null,arguments)},Nz=b._emscripten_bind_MdDbLine_offsetCurves_2=function(){return(Nz=b._emscripten_bind_MdDbLine_offsetCurves_2=b.asm.emscripten_bind_MdDbLine_offsetCurves_2).apply(null,arguments)},Oz=b._emscripten_bind_MdDbLine_splitCurves_1=function(){return(Oz=b._emscripten_bind_MdDbLine_splitCurves_1=b.asm.emscripten_bind_MdDbLine_splitCurves_1).apply(null,
  566. arguments)},Pz=b._emscripten_bind_MdDbLine_getSamplePoints_1=function(){return(Pz=b._emscripten_bind_MdDbLine_getSamplePoints_1=b.asm.emscripten_bind_MdDbLine_getSamplePoints_1).apply(null,arguments)},Qz=b._emscripten_bind_MdDbLine_getLength_0=function(){return(Qz=b._emscripten_bind_MdDbLine_getLength_0=b.asm.emscripten_bind_MdDbLine_getLength_0).apply(null,arguments)},Rz=b._emscripten_bind_MdDbLine_explode_0=function(){return(Rz=b._emscripten_bind_MdDbLine_explode_0=b.asm.emscripten_bind_MdDbLine_explode_0).apply(null,
  567. arguments)},Sz=b._emscripten_bind_MdDbLine_TrueColor_0=function(){return(Sz=b._emscripten_bind_MdDbLine_TrueColor_0=b.asm.emscripten_bind_MdDbLine_TrueColor_0).apply(null,arguments)},Tz=b._emscripten_bind_MdDbLine_SetTrueColor_1=function(){return(Tz=b._emscripten_bind_MdDbLine_SetTrueColor_1=b.asm.emscripten_bind_MdDbLine_SetTrueColor_1).apply(null,arguments)},Uz=b._emscripten_bind_MdDbLine_ColorIndex_0=function(){return(Uz=b._emscripten_bind_MdDbLine_ColorIndex_0=b.asm.emscripten_bind_MdDbLine_ColorIndex_0).apply(null,
  568. arguments)},Vz=b._emscripten_bind_MdDbLine_SetColorIndex_1=function(){return(Vz=b._emscripten_bind_MdDbLine_SetColorIndex_1=b.asm.emscripten_bind_MdDbLine_SetColorIndex_1).apply(null,arguments)},Wz=b._emscripten_bind_MdDbLine_Layer_0=function(){return(Wz=b._emscripten_bind_MdDbLine_Layer_0=b.asm.emscripten_bind_MdDbLine_Layer_0).apply(null,arguments)},Xz=b._emscripten_bind_MdDbLine_SetLayer_1=function(){return(Xz=b._emscripten_bind_MdDbLine_SetLayer_1=b.asm.emscripten_bind_MdDbLine_SetLayer_1).apply(null,
  569. arguments)},Yz=b._emscripten_bind_MdDbLine_LinetypeScale_0=function(){return(Yz=b._emscripten_bind_MdDbLine_LinetypeScale_0=b.asm.emscripten_bind_MdDbLine_LinetypeScale_0).apply(null,arguments)},Zz=b._emscripten_bind_MdDbLine_SetLinetypeScale_1=function(){return(Zz=b._emscripten_bind_MdDbLine_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbLine_SetLinetypeScale_1).apply(null,arguments)},$z=b._emscripten_bind_MdDbLine_Visible_0=function(){return($z=b._emscripten_bind_MdDbLine_Visible_0=b.asm.emscripten_bind_MdDbLine_Visible_0).apply(null,
  570. arguments)},aA=b._emscripten_bind_MdDbLine_SetVisible_1=function(){return(aA=b._emscripten_bind_MdDbLine_SetVisible_1=b.asm.emscripten_bind_MdDbLine_SetVisible_1).apply(null,arguments)},bA=b._emscripten_bind_MdDbLine_Lineweight_0=function(){return(bA=b._emscripten_bind_MdDbLine_Lineweight_0=b.asm.emscripten_bind_MdDbLine_Lineweight_0).apply(null,arguments)},cA=b._emscripten_bind_MdDbLine_SetLineweight_1=function(){return(cA=b._emscripten_bind_MdDbLine_SetLineweight_1=b.asm.emscripten_bind_MdDbLine_SetLineweight_1).apply(null,
  571. arguments)},dA=b._emscripten_bind_MdDbLine_TextStyle_0=function(){return(dA=b._emscripten_bind_MdDbLine_TextStyle_0=b.asm.emscripten_bind_MdDbLine_TextStyle_0).apply(null,arguments)},eA=b._emscripten_bind_MdDbLine_SetTextStyle_1=function(){return(eA=b._emscripten_bind_MdDbLine_SetTextStyle_1=b.asm.emscripten_bind_MdDbLine_SetTextStyle_1).apply(null,arguments)},fA=b._emscripten_bind_MdDbLine_Highlight_1=function(){return(fA=b._emscripten_bind_MdDbLine_Highlight_1=b.asm.emscripten_bind_MdDbLine_Highlight_1).apply(null,
  572. arguments)},gA=b._emscripten_bind_MdDbLine_Move_2=function(){return(gA=b._emscripten_bind_MdDbLine_Move_2=b.asm.emscripten_bind_MdDbLine_Move_2).apply(null,arguments)},hA=b._emscripten_bind_MdDbLine_Rotate_2=function(){return(hA=b._emscripten_bind_MdDbLine_Rotate_2=b.asm.emscripten_bind_MdDbLine_Rotate_2).apply(null,arguments)},iA=b._emscripten_bind_MdDbLine_Mirror_2=function(){return(iA=b._emscripten_bind_MdDbLine_Mirror_2=b.asm.emscripten_bind_MdDbLine_Mirror_2).apply(null,arguments)},jA=b._emscripten_bind_MdDbLine_ScaleEntity_2=
  573. function(){return(jA=b._emscripten_bind_MdDbLine_ScaleEntity_2=b.asm.emscripten_bind_MdDbLine_ScaleEntity_2).apply(null,arguments)},kA=b._emscripten_bind_MdDbLine_TransformBy_1=function(){return(kA=b._emscripten_bind_MdDbLine_TransformBy_1=b.asm.emscripten_bind_MdDbLine_TransformBy_1).apply(null,arguments)},lA=b._emscripten_bind_MdDbLine_GetBoundingBox_0=function(){return(lA=b._emscripten_bind_MdDbLine_GetBoundingBox_0=b.asm.emscripten_bind_MdDbLine_GetBoundingBox_0).apply(null,arguments)},mA=b._emscripten_bind_MdDbLine_GetXData_1=
  574. function(){return(mA=b._emscripten_bind_MdDbLine_GetXData_1=b.asm.emscripten_bind_MdDbLine_GetXData_1).apply(null,arguments)},nA=b._emscripten_bind_MdDbLine_SetXData_1=function(){return(nA=b._emscripten_bind_MdDbLine_SetXData_1=b.asm.emscripten_bind_MdDbLine_SetXData_1).apply(null,arguments)},oA=b._emscripten_bind_MdDbLine_GetxDataString_2=function(){return(oA=b._emscripten_bind_MdDbLine_GetxDataString_2=b.asm.emscripten_bind_MdDbLine_GetxDataString_2).apply(null,arguments)},pA=b._emscripten_bind_MdDbLine_SetxDataString_3=
  575. function(){return(pA=b._emscripten_bind_MdDbLine_SetxDataString_3=b.asm.emscripten_bind_MdDbLine_SetxDataString_3).apply(null,arguments)},qA=b._emscripten_bind_MdDbLine_GetxDataDouble_2=function(){return(qA=b._emscripten_bind_MdDbLine_GetxDataDouble_2=b.asm.emscripten_bind_MdDbLine_GetxDataDouble_2).apply(null,arguments)},rA=b._emscripten_bind_MdDbLine_SetxDataDouble_3=function(){return(rA=b._emscripten_bind_MdDbLine_SetxDataDouble_3=b.asm.emscripten_bind_MdDbLine_SetxDataDouble_3).apply(null,arguments)},
  576. sA=b._emscripten_bind_MdDbLine_GetxDataLong_2=function(){return(sA=b._emscripten_bind_MdDbLine_GetxDataLong_2=b.asm.emscripten_bind_MdDbLine_GetxDataLong_2).apply(null,arguments)},tA=b._emscripten_bind_MdDbLine_SetxDataLong_3=function(){return(tA=b._emscripten_bind_MdDbLine_SetxDataLong_3=b.asm.emscripten_bind_MdDbLine_SetxDataLong_3).apply(null,arguments)},uA=b._emscripten_bind_MdDbLine_GetxDataPoint_2=function(){return(uA=b._emscripten_bind_MdDbLine_GetxDataPoint_2=b.asm.emscripten_bind_MdDbLine_GetxDataPoint_2).apply(null,
  577. arguments)},vA=b._emscripten_bind_MdDbLine_SetxDataPoint_3=function(){return(vA=b._emscripten_bind_MdDbLine_SetxDataPoint_3=b.asm.emscripten_bind_MdDbLine_SetxDataPoint_3).apply(null,arguments)},wA=b._emscripten_bind_MdDbLine_DeleteXData_1=function(){return(wA=b._emscripten_bind_MdDbLine_DeleteXData_1=b.asm.emscripten_bind_MdDbLine_DeleteXData_1).apply(null,arguments)},xA=b._emscripten_bind_MdDbLine_GetAllAppName_0=function(){return(xA=b._emscripten_bind_MdDbLine_GetAllAppName_0=b.asm.emscripten_bind_MdDbLine_GetAllAppName_0).apply(null,
  578. arguments)},yA=b._emscripten_bind_MdDbLine_LayerId_0=function(){return(yA=b._emscripten_bind_MdDbLine_LayerId_0=b.asm.emscripten_bind_MdDbLine_LayerId_0).apply(null,arguments)},zA=b._emscripten_bind_MdDbLine_SetLayerId_1=function(){return(zA=b._emscripten_bind_MdDbLine_SetLayerId_1=b.asm.emscripten_bind_MdDbLine_SetLayerId_1).apply(null,arguments)},AA=b._emscripten_bind_MdDbLine_LinetypeId_0=function(){return(AA=b._emscripten_bind_MdDbLine_LinetypeId_0=b.asm.emscripten_bind_MdDbLine_LinetypeId_0).apply(null,
  579. arguments)},BA=b._emscripten_bind_MdDbLine_SetLinetypeId_1=function(){return(BA=b._emscripten_bind_MdDbLine_SetLinetypeId_1=b.asm.emscripten_bind_MdDbLine_SetLinetypeId_1).apply(null,arguments)},CA=b._emscripten_bind_MdDbLine_Linetype_0=function(){return(CA=b._emscripten_bind_MdDbLine_Linetype_0=b.asm.emscripten_bind_MdDbLine_Linetype_0).apply(null,arguments)},DA=b._emscripten_bind_MdDbLine_SetLinetype_1=function(){return(DA=b._emscripten_bind_MdDbLine_SetLinetype_1=b.asm.emscripten_bind_MdDbLine_SetLinetype_1).apply(null,
  580. arguments)},EA=b._emscripten_bind_MdDbLine_TextStyleId_0=function(){return(EA=b._emscripten_bind_MdDbLine_TextStyleId_0=b.asm.emscripten_bind_MdDbLine_TextStyleId_0).apply(null,arguments)},FA=b._emscripten_bind_MdDbLine_SetTextStyleId_1=function(){return(FA=b._emscripten_bind_MdDbLine_SetTextStyleId_1=b.asm.emscripten_bind_MdDbLine_SetTextStyleId_1).apply(null,arguments)},GA=b._emscripten_bind_MdDbLine_IntersectWith_2=function(){return(GA=b._emscripten_bind_MdDbLine_IntersectWith_2=b.asm.emscripten_bind_MdDbLine_IntersectWith_2).apply(null,
  581. arguments)},HA=b._emscripten_bind_MdDbLine_getArea_0=function(){return(HA=b._emscripten_bind_MdDbLine_getArea_0=b.asm.emscripten_bind_MdDbLine_getArea_0).apply(null,arguments)},IA=b._emscripten_bind_MdDbLine_disableUpdateDisplay_1=function(){return(IA=b._emscripten_bind_MdDbLine_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbLine_disableUpdateDisplay_1).apply(null,arguments)},JA=b._emscripten_bind_MdDbLine_isPropertiesWindowCustom_0=function(){return(JA=b._emscripten_bind_MdDbLine_isPropertiesWindowCustom_0=
  582. b.asm.emscripten_bind_MdDbLine_isPropertiesWindowCustom_0).apply(null,arguments)},KA=b._emscripten_bind_MdDbLine_setPropertiesWindowCustom_1=function(){return(KA=b._emscripten_bind_MdDbLine_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbLine_setPropertiesWindowCustom_1).apply(null,arguments)},LA=b._emscripten_bind_MdDbLine_updateDisplay_0=function(){return(LA=b._emscripten_bind_MdDbLine_updateDisplay_0=b.asm.emscripten_bind_MdDbLine_updateDisplay_0).apply(null,arguments)},MA=b._emscripten_bind_MdDbLine_DrawOrder_0=
  583. function(){return(MA=b._emscripten_bind_MdDbLine_DrawOrder_0=b.asm.emscripten_bind_MdDbLine_DrawOrder_0).apply(null,arguments)},NA=b._emscripten_bind_MdDbLine_SetDrawOrder_1=function(){return(NA=b._emscripten_bind_MdDbLine_SetDrawOrder_1=b.asm.emscripten_bind_MdDbLine_SetDrawOrder_1).apply(null,arguments)},OA=b._emscripten_bind_MdDbLine_normal_0=function(){return(OA=b._emscripten_bind_MdDbLine_normal_0=b.asm.emscripten_bind_MdDbLine_normal_0).apply(null,arguments)},PA=b._emscripten_bind_MdDbLine_setNormal_1=
  584. function(){return(PA=b._emscripten_bind_MdDbLine_setNormal_1=b.asm.emscripten_bind_MdDbLine_setNormal_1).apply(null,arguments)},QA=b._emscripten_bind_MdDbLine_GetObjectID_0=function(){return(QA=b._emscripten_bind_MdDbLine_GetObjectID_0=b.asm.emscripten_bind_MdDbLine_GetObjectID_0).apply(null,arguments)},RA=b._emscripten_bind_MdDbLine_Erase_0=function(){return(RA=b._emscripten_bind_MdDbLine_Erase_0=b.asm.emscripten_bind_MdDbLine_Erase_0).apply(null,arguments)},SA=b._emscripten_bind_MdDbLine_isErased_0=
  585. function(){return(SA=b._emscripten_bind_MdDbLine_isErased_0=b.asm.emscripten_bind_MdDbLine_isErased_0).apply(null,arguments)},TA=b._emscripten_bind_MdDbLine_unErase_0=function(){return(TA=b._emscripten_bind_MdDbLine_unErase_0=b.asm.emscripten_bind_MdDbLine_unErase_0).apply(null,arguments)},UA=b._emscripten_bind_MdDbLine_ConnectionTempObject_1=function(){return(UA=b._emscripten_bind_MdDbLine_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbLine_ConnectionTempObject_1).apply(null,arguments)},VA=b._emscripten_bind_MdDbLine_GetExtensionDictionary_0=
  586. function(){return(VA=b._emscripten_bind_MdDbLine_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbLine_GetExtensionDictionary_0).apply(null,arguments)},WA=b._emscripten_bind_MdDbLine_CreateExtensionDictionary_0=function(){return(WA=b._emscripten_bind_MdDbLine_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbLine_CreateExtensionDictionary_0).apply(null,arguments)},XA=b._emscripten_bind_MdDbLine_IsHaveExtensionDictionary_0=function(){return(XA=b._emscripten_bind_MdDbLine_IsHaveExtensionDictionary_0=
  587. b.asm.emscripten_bind_MdDbLine_IsHaveExtensionDictionary_0).apply(null,arguments)},YA=b._emscripten_bind_MdDbLine_Clone_0=function(){return(YA=b._emscripten_bind_MdDbLine_Clone_0=b.asm.emscripten_bind_MdDbLine_Clone_0).apply(null,arguments)},ZA=b._emscripten_bind_MdDbLine_GetHandle_0=function(){return(ZA=b._emscripten_bind_MdDbLine_GetHandle_0=b.asm.emscripten_bind_MdDbLine_GetHandle_0).apply(null,arguments)},$A=b._emscripten_bind_MdDbLine_GetDatabase_0=function(){return($A=b._emscripten_bind_MdDbLine_GetDatabase_0=
  588. b.asm.emscripten_bind_MdDbLine_GetDatabase_0).apply(null,arguments)},aB=b._emscripten_bind_MdDbLine_GetDatabaseIndexId_0=function(){return(aB=b._emscripten_bind_MdDbLine_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbLine_GetDatabaseIndexId_0).apply(null,arguments)},bB=b._emscripten_bind_MdDbLine_GetOwnerID_0=function(){return(bB=b._emscripten_bind_MdDbLine_GetOwnerID_0=b.asm.emscripten_bind_MdDbLine_GetOwnerID_0).apply(null,arguments)},cB=b._emscripten_bind_MdDbLine_assertObjectModification_1=function(){return(cB=
  589. b._emscripten_bind_MdDbLine_assertObjectModification_1=b.asm.emscripten_bind_MdDbLine_assertObjectModification_1).apply(null,arguments)},dB=b._emscripten_bind_MdDbLine_moveGripPointsAt_4=function(){return(dB=b._emscripten_bind_MdDbLine_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbLine_moveGripPointsAt_4).apply(null,arguments)},eB=b._emscripten_bind_MdDbLine_getGripPoints_0=function(){return(eB=b._emscripten_bind_MdDbLine_getGripPoints_0=b.asm.emscripten_bind_MdDbLine_getGripPoints_0).apply(null,arguments)},
  590. fB=b._emscripten_bind_MdDbLine_getObjectName_0=function(){return(fB=b._emscripten_bind_MdDbLine_getObjectName_0=b.asm.emscripten_bind_MdDbLine_getObjectName_0).apply(null,arguments)},gB=b._emscripten_bind_MdDbLine_getDxf0_0=function(){return(gB=b._emscripten_bind_MdDbLine_getDxf0_0=b.asm.emscripten_bind_MdDbLine_getDxf0_0).apply(null,arguments)},hB=b._emscripten_bind_MdDbLine_getCustomEntityTypeName_0=function(){return(hB=b._emscripten_bind_MdDbLine_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbLine_getCustomEntityTypeName_0).apply(null,
  591. arguments)},iB=b._emscripten_bind_MdDbLine_getCustomEntityid_0=function(){return(iB=b._emscripten_bind_MdDbLine_getCustomEntityid_0=b.asm.emscripten_bind_MdDbLine_getCustomEntityid_0).apply(null,arguments)},jB=b._emscripten_bind_MdDbLine_getCustomEntityTempid_0=function(){return(jB=b._emscripten_bind_MdDbLine_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbLine_getCustomEntityTempid_0).apply(null,arguments)},kB=b._emscripten_bind_MdDbLine_setCustomEntityTempid_1=function(){return(kB=b._emscripten_bind_MdDbLine_setCustomEntityTempid_1=
  592. b.asm.emscripten_bind_MdDbLine_setCustomEntityTempid_1).apply(null,arguments)},lB=b._emscripten_bind_MdDbLine_getJson_0=function(){return(lB=b._emscripten_bind_MdDbLine_getJson_0=b.asm.emscripten_bind_MdDbLine_getJson_0).apply(null,arguments)},mB=b._emscripten_bind_MdDbLine_setJson_1=function(){return(mB=b._emscripten_bind_MdDbLine_setJson_1=b.asm.emscripten_bind_MdDbLine_setJson_1).apply(null,arguments)},nB=b._emscripten_bind_MdDbLine_isKindOf_1=function(){return(nB=b._emscripten_bind_MdDbLine_isKindOf_1=
  593. b.asm.emscripten_bind_MdDbLine_isKindOf_1).apply(null,arguments)},oB=b._emscripten_bind_MdDbLine_isNull_0=function(){return(oB=b._emscripten_bind_MdDbLine_isNull_0=b.asm.emscripten_bind_MdDbLine_isNull_0).apply(null,arguments)},pB=b._emscripten_bind_MdDbLine___destroy___0=function(){return(pB=b._emscripten_bind_MdDbLine___destroy___0=b.asm.emscripten_bind_MdDbLine___destroy___0).apply(null,arguments)},qB=b._emscripten_bind_MdDbAttribute_MdDbAttribute_0=function(){return(qB=b._emscripten_bind_MdDbAttribute_MdDbAttribute_0=
  594. b.asm.emscripten_bind_MdDbAttribute_MdDbAttribute_0).apply(null,arguments)},rB=b._emscripten_bind_MdDbAttribute_tag_0=function(){return(rB=b._emscripten_bind_MdDbAttribute_tag_0=b.asm.emscripten_bind_MdDbAttribute_tag_0).apply(null,arguments)},sB=b._emscripten_bind_MdDbAttribute_setTag_1=function(){return(sB=b._emscripten_bind_MdDbAttribute_setTag_1=b.asm.emscripten_bind_MdDbAttribute_setTag_1).apply(null,arguments)},tB=b._emscripten_bind_MdDbAttribute_isInvisible_0=function(){return(tB=b._emscripten_bind_MdDbAttribute_isInvisible_0=
  595. b.asm.emscripten_bind_MdDbAttribute_isInvisible_0).apply(null,arguments)},uB=b._emscripten_bind_MdDbAttribute_setInvisible_1=function(){return(uB=b._emscripten_bind_MdDbAttribute_setInvisible_1=b.asm.emscripten_bind_MdDbAttribute_setInvisible_1).apply(null,arguments)},vB=b._emscripten_bind_MdDbAttribute_explode_0=function(){return(vB=b._emscripten_bind_MdDbAttribute_explode_0=b.asm.emscripten_bind_MdDbAttribute_explode_0).apply(null,arguments)},wB=b._emscripten_bind_MdDbAttribute_TrueColor_0=function(){return(wB=
  596. b._emscripten_bind_MdDbAttribute_TrueColor_0=b.asm.emscripten_bind_MdDbAttribute_TrueColor_0).apply(null,arguments)},xB=b._emscripten_bind_MdDbAttribute_SetTrueColor_1=function(){return(xB=b._emscripten_bind_MdDbAttribute_SetTrueColor_1=b.asm.emscripten_bind_MdDbAttribute_SetTrueColor_1).apply(null,arguments)},yB=b._emscripten_bind_MdDbAttribute_ColorIndex_0=function(){return(yB=b._emscripten_bind_MdDbAttribute_ColorIndex_0=b.asm.emscripten_bind_MdDbAttribute_ColorIndex_0).apply(null,arguments)},
  597. zB=b._emscripten_bind_MdDbAttribute_SetColorIndex_1=function(){return(zB=b._emscripten_bind_MdDbAttribute_SetColorIndex_1=b.asm.emscripten_bind_MdDbAttribute_SetColorIndex_1).apply(null,arguments)},AB=b._emscripten_bind_MdDbAttribute_Layer_0=function(){return(AB=b._emscripten_bind_MdDbAttribute_Layer_0=b.asm.emscripten_bind_MdDbAttribute_Layer_0).apply(null,arguments)},BB=b._emscripten_bind_MdDbAttribute_SetLayer_1=function(){return(BB=b._emscripten_bind_MdDbAttribute_SetLayer_1=b.asm.emscripten_bind_MdDbAttribute_SetLayer_1).apply(null,
  598. arguments)},CB=b._emscripten_bind_MdDbAttribute_LinetypeScale_0=function(){return(CB=b._emscripten_bind_MdDbAttribute_LinetypeScale_0=b.asm.emscripten_bind_MdDbAttribute_LinetypeScale_0).apply(null,arguments)},DB=b._emscripten_bind_MdDbAttribute_SetLinetypeScale_1=function(){return(DB=b._emscripten_bind_MdDbAttribute_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbAttribute_SetLinetypeScale_1).apply(null,arguments)},EB=b._emscripten_bind_MdDbAttribute_Visible_0=function(){return(EB=b._emscripten_bind_MdDbAttribute_Visible_0=
  599. b.asm.emscripten_bind_MdDbAttribute_Visible_0).apply(null,arguments)},FB=b._emscripten_bind_MdDbAttribute_SetVisible_1=function(){return(FB=b._emscripten_bind_MdDbAttribute_SetVisible_1=b.asm.emscripten_bind_MdDbAttribute_SetVisible_1).apply(null,arguments)},GB=b._emscripten_bind_MdDbAttribute_Lineweight_0=function(){return(GB=b._emscripten_bind_MdDbAttribute_Lineweight_0=b.asm.emscripten_bind_MdDbAttribute_Lineweight_0).apply(null,arguments)},HB=b._emscripten_bind_MdDbAttribute_SetLineweight_1=function(){return(HB=
  600. b._emscripten_bind_MdDbAttribute_SetLineweight_1=b.asm.emscripten_bind_MdDbAttribute_SetLineweight_1).apply(null,arguments)},IB=b._emscripten_bind_MdDbAttribute_TextStyle_0=function(){return(IB=b._emscripten_bind_MdDbAttribute_TextStyle_0=b.asm.emscripten_bind_MdDbAttribute_TextStyle_0).apply(null,arguments)},JB=b._emscripten_bind_MdDbAttribute_SetTextStyle_1=function(){return(JB=b._emscripten_bind_MdDbAttribute_SetTextStyle_1=b.asm.emscripten_bind_MdDbAttribute_SetTextStyle_1).apply(null,arguments)},
  601. KB=b._emscripten_bind_MdDbAttribute_Highlight_1=function(){return(KB=b._emscripten_bind_MdDbAttribute_Highlight_1=b.asm.emscripten_bind_MdDbAttribute_Highlight_1).apply(null,arguments)},LB=b._emscripten_bind_MdDbAttribute_Move_2=function(){return(LB=b._emscripten_bind_MdDbAttribute_Move_2=b.asm.emscripten_bind_MdDbAttribute_Move_2).apply(null,arguments)},MB=b._emscripten_bind_MdDbAttribute_Rotate_2=function(){return(MB=b._emscripten_bind_MdDbAttribute_Rotate_2=b.asm.emscripten_bind_MdDbAttribute_Rotate_2).apply(null,
  602. arguments)},NB=b._emscripten_bind_MdDbAttribute_Mirror_2=function(){return(NB=b._emscripten_bind_MdDbAttribute_Mirror_2=b.asm.emscripten_bind_MdDbAttribute_Mirror_2).apply(null,arguments)},OB=b._emscripten_bind_MdDbAttribute_ScaleEntity_2=function(){return(OB=b._emscripten_bind_MdDbAttribute_ScaleEntity_2=b.asm.emscripten_bind_MdDbAttribute_ScaleEntity_2).apply(null,arguments)},PB=b._emscripten_bind_MdDbAttribute_TransformBy_1=function(){return(PB=b._emscripten_bind_MdDbAttribute_TransformBy_1=b.asm.emscripten_bind_MdDbAttribute_TransformBy_1).apply(null,
  603. arguments)},QB=b._emscripten_bind_MdDbAttribute_GetBoundingBox_0=function(){return(QB=b._emscripten_bind_MdDbAttribute_GetBoundingBox_0=b.asm.emscripten_bind_MdDbAttribute_GetBoundingBox_0).apply(null,arguments)},RB=b._emscripten_bind_MdDbAttribute_GetXData_1=function(){return(RB=b._emscripten_bind_MdDbAttribute_GetXData_1=b.asm.emscripten_bind_MdDbAttribute_GetXData_1).apply(null,arguments)},SB=b._emscripten_bind_MdDbAttribute_SetXData_1=function(){return(SB=b._emscripten_bind_MdDbAttribute_SetXData_1=
  604. b.asm.emscripten_bind_MdDbAttribute_SetXData_1).apply(null,arguments)},TB=b._emscripten_bind_MdDbAttribute_GetxDataString_2=function(){return(TB=b._emscripten_bind_MdDbAttribute_GetxDataString_2=b.asm.emscripten_bind_MdDbAttribute_GetxDataString_2).apply(null,arguments)},UB=b._emscripten_bind_MdDbAttribute_SetxDataString_3=function(){return(UB=b._emscripten_bind_MdDbAttribute_SetxDataString_3=b.asm.emscripten_bind_MdDbAttribute_SetxDataString_3).apply(null,arguments)},VB=b._emscripten_bind_MdDbAttribute_GetxDataDouble_2=
  605. function(){return(VB=b._emscripten_bind_MdDbAttribute_GetxDataDouble_2=b.asm.emscripten_bind_MdDbAttribute_GetxDataDouble_2).apply(null,arguments)},WB=b._emscripten_bind_MdDbAttribute_SetxDataDouble_3=function(){return(WB=b._emscripten_bind_MdDbAttribute_SetxDataDouble_3=b.asm.emscripten_bind_MdDbAttribute_SetxDataDouble_3).apply(null,arguments)},XB=b._emscripten_bind_MdDbAttribute_GetxDataLong_2=function(){return(XB=b._emscripten_bind_MdDbAttribute_GetxDataLong_2=b.asm.emscripten_bind_MdDbAttribute_GetxDataLong_2).apply(null,
  606. arguments)},YB=b._emscripten_bind_MdDbAttribute_SetxDataLong_3=function(){return(YB=b._emscripten_bind_MdDbAttribute_SetxDataLong_3=b.asm.emscripten_bind_MdDbAttribute_SetxDataLong_3).apply(null,arguments)},ZB=b._emscripten_bind_MdDbAttribute_GetxDataPoint_2=function(){return(ZB=b._emscripten_bind_MdDbAttribute_GetxDataPoint_2=b.asm.emscripten_bind_MdDbAttribute_GetxDataPoint_2).apply(null,arguments)},$B=b._emscripten_bind_MdDbAttribute_SetxDataPoint_3=function(){return($B=b._emscripten_bind_MdDbAttribute_SetxDataPoint_3=
  607. b.asm.emscripten_bind_MdDbAttribute_SetxDataPoint_3).apply(null,arguments)},aC=b._emscripten_bind_MdDbAttribute_DeleteXData_1=function(){return(aC=b._emscripten_bind_MdDbAttribute_DeleteXData_1=b.asm.emscripten_bind_MdDbAttribute_DeleteXData_1).apply(null,arguments)},bC=b._emscripten_bind_MdDbAttribute_GetAllAppName_0=function(){return(bC=b._emscripten_bind_MdDbAttribute_GetAllAppName_0=b.asm.emscripten_bind_MdDbAttribute_GetAllAppName_0).apply(null,arguments)},cC=b._emscripten_bind_MdDbAttribute_LayerId_0=
  608. function(){return(cC=b._emscripten_bind_MdDbAttribute_LayerId_0=b.asm.emscripten_bind_MdDbAttribute_LayerId_0).apply(null,arguments)},dC=b._emscripten_bind_MdDbAttribute_SetLayerId_1=function(){return(dC=b._emscripten_bind_MdDbAttribute_SetLayerId_1=b.asm.emscripten_bind_MdDbAttribute_SetLayerId_1).apply(null,arguments)},eC=b._emscripten_bind_MdDbAttribute_LinetypeId_0=function(){return(eC=b._emscripten_bind_MdDbAttribute_LinetypeId_0=b.asm.emscripten_bind_MdDbAttribute_LinetypeId_0).apply(null,arguments)},
  609. fC=b._emscripten_bind_MdDbAttribute_SetLinetypeId_1=function(){return(fC=b._emscripten_bind_MdDbAttribute_SetLinetypeId_1=b.asm.emscripten_bind_MdDbAttribute_SetLinetypeId_1).apply(null,arguments)},gC=b._emscripten_bind_MdDbAttribute_Linetype_0=function(){return(gC=b._emscripten_bind_MdDbAttribute_Linetype_0=b.asm.emscripten_bind_MdDbAttribute_Linetype_0).apply(null,arguments)},hC=b._emscripten_bind_MdDbAttribute_SetLinetype_1=function(){return(hC=b._emscripten_bind_MdDbAttribute_SetLinetype_1=b.asm.emscripten_bind_MdDbAttribute_SetLinetype_1).apply(null,
  610. arguments)},iC=b._emscripten_bind_MdDbAttribute_TextStyleId_0=function(){return(iC=b._emscripten_bind_MdDbAttribute_TextStyleId_0=b.asm.emscripten_bind_MdDbAttribute_TextStyleId_0).apply(null,arguments)},jC=b._emscripten_bind_MdDbAttribute_SetTextStyleId_1=function(){return(jC=b._emscripten_bind_MdDbAttribute_SetTextStyleId_1=b.asm.emscripten_bind_MdDbAttribute_SetTextStyleId_1).apply(null,arguments)},kC=b._emscripten_bind_MdDbAttribute_IntersectWith_2=function(){return(kC=b._emscripten_bind_MdDbAttribute_IntersectWith_2=
  611. b.asm.emscripten_bind_MdDbAttribute_IntersectWith_2).apply(null,arguments)},lC=b._emscripten_bind_MdDbAttribute_getArea_0=function(){return(lC=b._emscripten_bind_MdDbAttribute_getArea_0=b.asm.emscripten_bind_MdDbAttribute_getArea_0).apply(null,arguments)},mC=b._emscripten_bind_MdDbAttribute_disableUpdateDisplay_1=function(){return(mC=b._emscripten_bind_MdDbAttribute_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbAttribute_disableUpdateDisplay_1).apply(null,arguments)},nC=b._emscripten_bind_MdDbAttribute_isPropertiesWindowCustom_0=
  612. function(){return(nC=b._emscripten_bind_MdDbAttribute_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbAttribute_isPropertiesWindowCustom_0).apply(null,arguments)},oC=b._emscripten_bind_MdDbAttribute_setPropertiesWindowCustom_1=function(){return(oC=b._emscripten_bind_MdDbAttribute_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbAttribute_setPropertiesWindowCustom_1).apply(null,arguments)},pC=b._emscripten_bind_MdDbAttribute_updateDisplay_0=function(){return(pC=b._emscripten_bind_MdDbAttribute_updateDisplay_0=
  613. b.asm.emscripten_bind_MdDbAttribute_updateDisplay_0).apply(null,arguments)},qC=b._emscripten_bind_MdDbAttribute_DrawOrder_0=function(){return(qC=b._emscripten_bind_MdDbAttribute_DrawOrder_0=b.asm.emscripten_bind_MdDbAttribute_DrawOrder_0).apply(null,arguments)},rC=b._emscripten_bind_MdDbAttribute_SetDrawOrder_1=function(){return(rC=b._emscripten_bind_MdDbAttribute_SetDrawOrder_1=b.asm.emscripten_bind_MdDbAttribute_SetDrawOrder_1).apply(null,arguments)},sC=b._emscripten_bind_MdDbAttribute_normal_0=
  614. function(){return(sC=b._emscripten_bind_MdDbAttribute_normal_0=b.asm.emscripten_bind_MdDbAttribute_normal_0).apply(null,arguments)},tC=b._emscripten_bind_MdDbAttribute_setNormal_1=function(){return(tC=b._emscripten_bind_MdDbAttribute_setNormal_1=b.asm.emscripten_bind_MdDbAttribute_setNormal_1).apply(null,arguments)},uC=b._emscripten_bind_MdDbAttribute_GetObjectID_0=function(){return(uC=b._emscripten_bind_MdDbAttribute_GetObjectID_0=b.asm.emscripten_bind_MdDbAttribute_GetObjectID_0).apply(null,arguments)},
  615. vC=b._emscripten_bind_MdDbAttribute_Erase_0=function(){return(vC=b._emscripten_bind_MdDbAttribute_Erase_0=b.asm.emscripten_bind_MdDbAttribute_Erase_0).apply(null,arguments)},wC=b._emscripten_bind_MdDbAttribute_isErased_0=function(){return(wC=b._emscripten_bind_MdDbAttribute_isErased_0=b.asm.emscripten_bind_MdDbAttribute_isErased_0).apply(null,arguments)},xC=b._emscripten_bind_MdDbAttribute_unErase_0=function(){return(xC=b._emscripten_bind_MdDbAttribute_unErase_0=b.asm.emscripten_bind_MdDbAttribute_unErase_0).apply(null,
  616. arguments)},yC=b._emscripten_bind_MdDbAttribute_ConnectionTempObject_1=function(){return(yC=b._emscripten_bind_MdDbAttribute_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbAttribute_ConnectionTempObject_1).apply(null,arguments)},zC=b._emscripten_bind_MdDbAttribute_GetExtensionDictionary_0=function(){return(zC=b._emscripten_bind_MdDbAttribute_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttribute_GetExtensionDictionary_0).apply(null,arguments)},AC=b._emscripten_bind_MdDbAttribute_CreateExtensionDictionary_0=
  617. function(){return(AC=b._emscripten_bind_MdDbAttribute_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttribute_CreateExtensionDictionary_0).apply(null,arguments)},BC=b._emscripten_bind_MdDbAttribute_IsHaveExtensionDictionary_0=function(){return(BC=b._emscripten_bind_MdDbAttribute_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttribute_IsHaveExtensionDictionary_0).apply(null,arguments)},CC=b._emscripten_bind_MdDbAttribute_Clone_0=function(){return(CC=b._emscripten_bind_MdDbAttribute_Clone_0=
  618. b.asm.emscripten_bind_MdDbAttribute_Clone_0).apply(null,arguments)},DC=b._emscripten_bind_MdDbAttribute_GetHandle_0=function(){return(DC=b._emscripten_bind_MdDbAttribute_GetHandle_0=b.asm.emscripten_bind_MdDbAttribute_GetHandle_0).apply(null,arguments)},EC=b._emscripten_bind_MdDbAttribute_GetDatabase_0=function(){return(EC=b._emscripten_bind_MdDbAttribute_GetDatabase_0=b.asm.emscripten_bind_MdDbAttribute_GetDatabase_0).apply(null,arguments)},FC=b._emscripten_bind_MdDbAttribute_GetDatabaseIndexId_0=
  619. function(){return(FC=b._emscripten_bind_MdDbAttribute_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbAttribute_GetDatabaseIndexId_0).apply(null,arguments)},GC=b._emscripten_bind_MdDbAttribute_GetOwnerID_0=function(){return(GC=b._emscripten_bind_MdDbAttribute_GetOwnerID_0=b.asm.emscripten_bind_MdDbAttribute_GetOwnerID_0).apply(null,arguments)},HC=b._emscripten_bind_MdDbAttribute_assertObjectModification_1=function(){return(HC=b._emscripten_bind_MdDbAttribute_assertObjectModification_1=b.asm.emscripten_bind_MdDbAttribute_assertObjectModification_1).apply(null,
  620. arguments)},IC=b._emscripten_bind_MdDbAttribute_moveGripPointsAt_4=function(){return(IC=b._emscripten_bind_MdDbAttribute_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbAttribute_moveGripPointsAt_4).apply(null,arguments)},JC=b._emscripten_bind_MdDbAttribute_getGripPoints_0=function(){return(JC=b._emscripten_bind_MdDbAttribute_getGripPoints_0=b.asm.emscripten_bind_MdDbAttribute_getGripPoints_0).apply(null,arguments)},KC=b._emscripten_bind_MdDbAttribute_position_0=function(){return(KC=b._emscripten_bind_MdDbAttribute_position_0=
  621. b.asm.emscripten_bind_MdDbAttribute_position_0).apply(null,arguments)},LC=b._emscripten_bind_MdDbAttribute_setPosition_1=function(){return(LC=b._emscripten_bind_MdDbAttribute_setPosition_1=b.asm.emscripten_bind_MdDbAttribute_setPosition_1).apply(null,arguments)},MC=b._emscripten_bind_MdDbAttribute_alignmentPoint_0=function(){return(MC=b._emscripten_bind_MdDbAttribute_alignmentPoint_0=b.asm.emscripten_bind_MdDbAttribute_alignmentPoint_0).apply(null,arguments)},NC=b._emscripten_bind_MdDbAttribute_setAlignmentPoint_1=
  622. function(){return(NC=b._emscripten_bind_MdDbAttribute_setAlignmentPoint_1=b.asm.emscripten_bind_MdDbAttribute_setAlignmentPoint_1).apply(null,arguments)},OC=b._emscripten_bind_MdDbAttribute_oblique_0=function(){return(OC=b._emscripten_bind_MdDbAttribute_oblique_0=b.asm.emscripten_bind_MdDbAttribute_oblique_0).apply(null,arguments)},PC=b._emscripten_bind_MdDbAttribute_setOblique_1=function(){return(PC=b._emscripten_bind_MdDbAttribute_setOblique_1=b.asm.emscripten_bind_MdDbAttribute_setOblique_1).apply(null,
  623. arguments)},QC=b._emscripten_bind_MdDbAttribute_rotation_0=function(){return(QC=b._emscripten_bind_MdDbAttribute_rotation_0=b.asm.emscripten_bind_MdDbAttribute_rotation_0).apply(null,arguments)},RC=b._emscripten_bind_MdDbAttribute_setRotation_1=function(){return(RC=b._emscripten_bind_MdDbAttribute_setRotation_1=b.asm.emscripten_bind_MdDbAttribute_setRotation_1).apply(null,arguments)},SC=b._emscripten_bind_MdDbAttribute_height_0=function(){return(SC=b._emscripten_bind_MdDbAttribute_height_0=b.asm.emscripten_bind_MdDbAttribute_height_0).apply(null,
  624. arguments)},TC=b._emscripten_bind_MdDbAttribute_setHeight_1=function(){return(TC=b._emscripten_bind_MdDbAttribute_setHeight_1=b.asm.emscripten_bind_MdDbAttribute_setHeight_1).apply(null,arguments)},UC=b._emscripten_bind_MdDbAttribute_widthFactor_0=function(){return(UC=b._emscripten_bind_MdDbAttribute_widthFactor_0=b.asm.emscripten_bind_MdDbAttribute_widthFactor_0).apply(null,arguments)},VC=b._emscripten_bind_MdDbAttribute_setWidthFactor_1=function(){return(VC=b._emscripten_bind_MdDbAttribute_setWidthFactor_1=
  625. b.asm.emscripten_bind_MdDbAttribute_setWidthFactor_1).apply(null,arguments)},WC=b._emscripten_bind_MdDbAttribute_textString_0=function(){return(WC=b._emscripten_bind_MdDbAttribute_textString_0=b.asm.emscripten_bind_MdDbAttribute_textString_0).apply(null,arguments)},XC=b._emscripten_bind_MdDbAttribute_setTextString_1=function(){return(XC=b._emscripten_bind_MdDbAttribute_setTextString_1=b.asm.emscripten_bind_MdDbAttribute_setTextString_1).apply(null,arguments)},YC=b._emscripten_bind_MdDbAttribute_horizontalMode_0=
  626. function(){return(YC=b._emscripten_bind_MdDbAttribute_horizontalMode_0=b.asm.emscripten_bind_MdDbAttribute_horizontalMode_0).apply(null,arguments)},ZC=b._emscripten_bind_MdDbAttribute_setHorizontalMode_1=function(){return(ZC=b._emscripten_bind_MdDbAttribute_setHorizontalMode_1=b.asm.emscripten_bind_MdDbAttribute_setHorizontalMode_1).apply(null,arguments)},$C=b._emscripten_bind_MdDbAttribute_verticalMode_0=function(){return($C=b._emscripten_bind_MdDbAttribute_verticalMode_0=b.asm.emscripten_bind_MdDbAttribute_verticalMode_0).apply(null,
  627. arguments)},aD=b._emscripten_bind_MdDbAttribute_setVerticalMode_1=function(){return(aD=b._emscripten_bind_MdDbAttribute_setVerticalMode_1=b.asm.emscripten_bind_MdDbAttribute_setVerticalMode_1).apply(null,arguments)},bD=b._emscripten_bind_MdDbAttribute_getObjectName_0=function(){return(bD=b._emscripten_bind_MdDbAttribute_getObjectName_0=b.asm.emscripten_bind_MdDbAttribute_getObjectName_0).apply(null,arguments)},cD=b._emscripten_bind_MdDbAttribute_getDxf0_0=function(){return(cD=b._emscripten_bind_MdDbAttribute_getDxf0_0=
  628. b.asm.emscripten_bind_MdDbAttribute_getDxf0_0).apply(null,arguments)},dD=b._emscripten_bind_MdDbAttribute_getCustomEntityTypeName_0=function(){return(dD=b._emscripten_bind_MdDbAttribute_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbAttribute_getCustomEntityTypeName_0).apply(null,arguments)},eD=b._emscripten_bind_MdDbAttribute_getCustomEntityid_0=function(){return(eD=b._emscripten_bind_MdDbAttribute_getCustomEntityid_0=b.asm.emscripten_bind_MdDbAttribute_getCustomEntityid_0).apply(null,arguments)},
  629. fD=b._emscripten_bind_MdDbAttribute_getCustomEntityTempid_0=function(){return(fD=b._emscripten_bind_MdDbAttribute_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbAttribute_getCustomEntityTempid_0).apply(null,arguments)},gD=b._emscripten_bind_MdDbAttribute_setCustomEntityTempid_1=function(){return(gD=b._emscripten_bind_MdDbAttribute_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbAttribute_setCustomEntityTempid_1).apply(null,arguments)},hD=b._emscripten_bind_MdDbAttribute_getJson_0=function(){return(hD=
  630. b._emscripten_bind_MdDbAttribute_getJson_0=b.asm.emscripten_bind_MdDbAttribute_getJson_0).apply(null,arguments)},iD=b._emscripten_bind_MdDbAttribute_setJson_1=function(){return(iD=b._emscripten_bind_MdDbAttribute_setJson_1=b.asm.emscripten_bind_MdDbAttribute_setJson_1).apply(null,arguments)},jD=b._emscripten_bind_MdDbAttribute_isKindOf_1=function(){return(jD=b._emscripten_bind_MdDbAttribute_isKindOf_1=b.asm.emscripten_bind_MdDbAttribute_isKindOf_1).apply(null,arguments)},kD=b._emscripten_bind_MdDbAttribute_isNull_0=
  631. function(){return(kD=b._emscripten_bind_MdDbAttribute_isNull_0=b.asm.emscripten_bind_MdDbAttribute_isNull_0).apply(null,arguments)},lD=b._emscripten_bind_MdDbAttribute___destroy___0=function(){return(lD=b._emscripten_bind_MdDbAttribute___destroy___0=b.asm.emscripten_bind_MdDbAttribute___destroy___0).apply(null,arguments)},mD=b._emscripten_bind_MdDbAttributeDefinition_MdDbAttributeDefinition_0=function(){return(mD=b._emscripten_bind_MdDbAttributeDefinition_MdDbAttributeDefinition_0=b.asm.emscripten_bind_MdDbAttributeDefinition_MdDbAttributeDefinition_0).apply(null,
  632. arguments)},nD=b._emscripten_bind_MdDbAttributeDefinition_tag_0=function(){return(nD=b._emscripten_bind_MdDbAttributeDefinition_tag_0=b.asm.emscripten_bind_MdDbAttributeDefinition_tag_0).apply(null,arguments)},oD=b._emscripten_bind_MdDbAttributeDefinition_setTag_1=function(){return(oD=b._emscripten_bind_MdDbAttributeDefinition_setTag_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setTag_1).apply(null,arguments)},pD=b._emscripten_bind_MdDbAttributeDefinition_prompt_0=function(){return(pD=b._emscripten_bind_MdDbAttributeDefinition_prompt_0=
  633. b.asm.emscripten_bind_MdDbAttributeDefinition_prompt_0).apply(null,arguments)},qD=b._emscripten_bind_MdDbAttributeDefinition_setPrompt_1=function(){return(qD=b._emscripten_bind_MdDbAttributeDefinition_setPrompt_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setPrompt_1).apply(null,arguments)},rD=b._emscripten_bind_MdDbAttributeDefinition_isInvisible_0=function(){return(rD=b._emscripten_bind_MdDbAttributeDefinition_isInvisible_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isInvisible_0).apply(null,
  634. arguments)},sD=b._emscripten_bind_MdDbAttributeDefinition_setInvisible_1=function(){return(sD=b._emscripten_bind_MdDbAttributeDefinition_setInvisible_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setInvisible_1).apply(null,arguments)},tD=b._emscripten_bind_MdDbAttributeDefinition_isConstant_0=function(){return(tD=b._emscripten_bind_MdDbAttributeDefinition_isConstant_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isConstant_0).apply(null,arguments)},uD=b._emscripten_bind_MdDbAttributeDefinition_setConstant_1=
  635. function(){return(uD=b._emscripten_bind_MdDbAttributeDefinition_setConstant_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setConstant_1).apply(null,arguments)},vD=b._emscripten_bind_MdDbAttributeDefinition_isVerifiable_0=function(){return(vD=b._emscripten_bind_MdDbAttributeDefinition_isVerifiable_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isVerifiable_0).apply(null,arguments)},wD=b._emscripten_bind_MdDbAttributeDefinition_setVerifiable_1=function(){return(wD=b._emscripten_bind_MdDbAttributeDefinition_setVerifiable_1=
  636. b.asm.emscripten_bind_MdDbAttributeDefinition_setVerifiable_1).apply(null,arguments)},xD=b._emscripten_bind_MdDbAttributeDefinition_isPreset_0=function(){return(xD=b._emscripten_bind_MdDbAttributeDefinition_isPreset_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isPreset_0).apply(null,arguments)},yD=b._emscripten_bind_MdDbAttributeDefinition_setPreset_1=function(){return(yD=b._emscripten_bind_MdDbAttributeDefinition_setPreset_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setPreset_1).apply(null,
  637. arguments)},zD=b._emscripten_bind_MdDbAttributeDefinition_explode_0=function(){return(zD=b._emscripten_bind_MdDbAttributeDefinition_explode_0=b.asm.emscripten_bind_MdDbAttributeDefinition_explode_0).apply(null,arguments)},AD=b._emscripten_bind_MdDbAttributeDefinition_TrueColor_0=function(){return(AD=b._emscripten_bind_MdDbAttributeDefinition_TrueColor_0=b.asm.emscripten_bind_MdDbAttributeDefinition_TrueColor_0).apply(null,arguments)},BD=b._emscripten_bind_MdDbAttributeDefinition_SetTrueColor_1=function(){return(BD=
  638. b._emscripten_bind_MdDbAttributeDefinition_SetTrueColor_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetTrueColor_1).apply(null,arguments)},CD=b._emscripten_bind_MdDbAttributeDefinition_ColorIndex_0=function(){return(CD=b._emscripten_bind_MdDbAttributeDefinition_ColorIndex_0=b.asm.emscripten_bind_MdDbAttributeDefinition_ColorIndex_0).apply(null,arguments)},DD=b._emscripten_bind_MdDbAttributeDefinition_SetColorIndex_1=function(){return(DD=b._emscripten_bind_MdDbAttributeDefinition_SetColorIndex_1=
  639. b.asm.emscripten_bind_MdDbAttributeDefinition_SetColorIndex_1).apply(null,arguments)},ED=b._emscripten_bind_MdDbAttributeDefinition_Layer_0=function(){return(ED=b._emscripten_bind_MdDbAttributeDefinition_Layer_0=b.asm.emscripten_bind_MdDbAttributeDefinition_Layer_0).apply(null,arguments)},FD=b._emscripten_bind_MdDbAttributeDefinition_SetLayer_1=function(){return(FD=b._emscripten_bind_MdDbAttributeDefinition_SetLayer_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetLayer_1).apply(null,arguments)},
  640. GD=b._emscripten_bind_MdDbAttributeDefinition_LinetypeScale_0=function(){return(GD=b._emscripten_bind_MdDbAttributeDefinition_LinetypeScale_0=b.asm.emscripten_bind_MdDbAttributeDefinition_LinetypeScale_0).apply(null,arguments)},HD=b._emscripten_bind_MdDbAttributeDefinition_SetLinetypeScale_1=function(){return(HD=b._emscripten_bind_MdDbAttributeDefinition_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetLinetypeScale_1).apply(null,arguments)},ID=b._emscripten_bind_MdDbAttributeDefinition_Visible_0=
  641. function(){return(ID=b._emscripten_bind_MdDbAttributeDefinition_Visible_0=b.asm.emscripten_bind_MdDbAttributeDefinition_Visible_0).apply(null,arguments)},JD=b._emscripten_bind_MdDbAttributeDefinition_SetVisible_1=function(){return(JD=b._emscripten_bind_MdDbAttributeDefinition_SetVisible_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetVisible_1).apply(null,arguments)},KD=b._emscripten_bind_MdDbAttributeDefinition_Lineweight_0=function(){return(KD=b._emscripten_bind_MdDbAttributeDefinition_Lineweight_0=
  642. b.asm.emscripten_bind_MdDbAttributeDefinition_Lineweight_0).apply(null,arguments)},LD=b._emscripten_bind_MdDbAttributeDefinition_SetLineweight_1=function(){return(LD=b._emscripten_bind_MdDbAttributeDefinition_SetLineweight_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetLineweight_1).apply(null,arguments)},MD=b._emscripten_bind_MdDbAttributeDefinition_TextStyle_0=function(){return(MD=b._emscripten_bind_MdDbAttributeDefinition_TextStyle_0=b.asm.emscripten_bind_MdDbAttributeDefinition_TextStyle_0).apply(null,
  643. arguments)},ND=b._emscripten_bind_MdDbAttributeDefinition_SetTextStyle_1=function(){return(ND=b._emscripten_bind_MdDbAttributeDefinition_SetTextStyle_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetTextStyle_1).apply(null,arguments)},OD=b._emscripten_bind_MdDbAttributeDefinition_Highlight_1=function(){return(OD=b._emscripten_bind_MdDbAttributeDefinition_Highlight_1=b.asm.emscripten_bind_MdDbAttributeDefinition_Highlight_1).apply(null,arguments)},PD=b._emscripten_bind_MdDbAttributeDefinition_Move_2=
  644. function(){return(PD=b._emscripten_bind_MdDbAttributeDefinition_Move_2=b.asm.emscripten_bind_MdDbAttributeDefinition_Move_2).apply(null,arguments)},QD=b._emscripten_bind_MdDbAttributeDefinition_Rotate_2=function(){return(QD=b._emscripten_bind_MdDbAttributeDefinition_Rotate_2=b.asm.emscripten_bind_MdDbAttributeDefinition_Rotate_2).apply(null,arguments)},RD=b._emscripten_bind_MdDbAttributeDefinition_Mirror_2=function(){return(RD=b._emscripten_bind_MdDbAttributeDefinition_Mirror_2=b.asm.emscripten_bind_MdDbAttributeDefinition_Mirror_2).apply(null,
  645. arguments)},SD=b._emscripten_bind_MdDbAttributeDefinition_ScaleEntity_2=function(){return(SD=b._emscripten_bind_MdDbAttributeDefinition_ScaleEntity_2=b.asm.emscripten_bind_MdDbAttributeDefinition_ScaleEntity_2).apply(null,arguments)},TD=b._emscripten_bind_MdDbAttributeDefinition_TransformBy_1=function(){return(TD=b._emscripten_bind_MdDbAttributeDefinition_TransformBy_1=b.asm.emscripten_bind_MdDbAttributeDefinition_TransformBy_1).apply(null,arguments)},UD=b._emscripten_bind_MdDbAttributeDefinition_GetBoundingBox_0=
  646. function(){return(UD=b._emscripten_bind_MdDbAttributeDefinition_GetBoundingBox_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetBoundingBox_0).apply(null,arguments)},VD=b._emscripten_bind_MdDbAttributeDefinition_GetXData_1=function(){return(VD=b._emscripten_bind_MdDbAttributeDefinition_GetXData_1=b.asm.emscripten_bind_MdDbAttributeDefinition_GetXData_1).apply(null,arguments)},WD=b._emscripten_bind_MdDbAttributeDefinition_SetXData_1=function(){return(WD=b._emscripten_bind_MdDbAttributeDefinition_SetXData_1=
  647. b.asm.emscripten_bind_MdDbAttributeDefinition_SetXData_1).apply(null,arguments)},XD=b._emscripten_bind_MdDbAttributeDefinition_GetxDataString_2=function(){return(XD=b._emscripten_bind_MdDbAttributeDefinition_GetxDataString_2=b.asm.emscripten_bind_MdDbAttributeDefinition_GetxDataString_2).apply(null,arguments)},YD=b._emscripten_bind_MdDbAttributeDefinition_SetxDataString_3=function(){return(YD=b._emscripten_bind_MdDbAttributeDefinition_SetxDataString_3=b.asm.emscripten_bind_MdDbAttributeDefinition_SetxDataString_3).apply(null,
  648. arguments)},ZD=b._emscripten_bind_MdDbAttributeDefinition_GetxDataDouble_2=function(){return(ZD=b._emscripten_bind_MdDbAttributeDefinition_GetxDataDouble_2=b.asm.emscripten_bind_MdDbAttributeDefinition_GetxDataDouble_2).apply(null,arguments)},$D=b._emscripten_bind_MdDbAttributeDefinition_SetxDataDouble_3=function(){return($D=b._emscripten_bind_MdDbAttributeDefinition_SetxDataDouble_3=b.asm.emscripten_bind_MdDbAttributeDefinition_SetxDataDouble_3).apply(null,arguments)},aE=b._emscripten_bind_MdDbAttributeDefinition_GetxDataLong_2=
  649. function(){return(aE=b._emscripten_bind_MdDbAttributeDefinition_GetxDataLong_2=b.asm.emscripten_bind_MdDbAttributeDefinition_GetxDataLong_2).apply(null,arguments)},bE=b._emscripten_bind_MdDbAttributeDefinition_SetxDataLong_3=function(){return(bE=b._emscripten_bind_MdDbAttributeDefinition_SetxDataLong_3=b.asm.emscripten_bind_MdDbAttributeDefinition_SetxDataLong_3).apply(null,arguments)},cE=b._emscripten_bind_MdDbAttributeDefinition_GetxDataPoint_2=function(){return(cE=b._emscripten_bind_MdDbAttributeDefinition_GetxDataPoint_2=
  650. b.asm.emscripten_bind_MdDbAttributeDefinition_GetxDataPoint_2).apply(null,arguments)},dE=b._emscripten_bind_MdDbAttributeDefinition_SetxDataPoint_3=function(){return(dE=b._emscripten_bind_MdDbAttributeDefinition_SetxDataPoint_3=b.asm.emscripten_bind_MdDbAttributeDefinition_SetxDataPoint_3).apply(null,arguments)},eE=b._emscripten_bind_MdDbAttributeDefinition_DeleteXData_1=function(){return(eE=b._emscripten_bind_MdDbAttributeDefinition_DeleteXData_1=b.asm.emscripten_bind_MdDbAttributeDefinition_DeleteXData_1).apply(null,
  651. arguments)},fE=b._emscripten_bind_MdDbAttributeDefinition_GetAllAppName_0=function(){return(fE=b._emscripten_bind_MdDbAttributeDefinition_GetAllAppName_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetAllAppName_0).apply(null,arguments)},gE=b._emscripten_bind_MdDbAttributeDefinition_LayerId_0=function(){return(gE=b._emscripten_bind_MdDbAttributeDefinition_LayerId_0=b.asm.emscripten_bind_MdDbAttributeDefinition_LayerId_0).apply(null,arguments)},hE=b._emscripten_bind_MdDbAttributeDefinition_SetLayerId_1=
  652. function(){return(hE=b._emscripten_bind_MdDbAttributeDefinition_SetLayerId_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetLayerId_1).apply(null,arguments)},iE=b._emscripten_bind_MdDbAttributeDefinition_LinetypeId_0=function(){return(iE=b._emscripten_bind_MdDbAttributeDefinition_LinetypeId_0=b.asm.emscripten_bind_MdDbAttributeDefinition_LinetypeId_0).apply(null,arguments)},jE=b._emscripten_bind_MdDbAttributeDefinition_SetLinetypeId_1=function(){return(jE=b._emscripten_bind_MdDbAttributeDefinition_SetLinetypeId_1=
  653. b.asm.emscripten_bind_MdDbAttributeDefinition_SetLinetypeId_1).apply(null,arguments)},kE=b._emscripten_bind_MdDbAttributeDefinition_Linetype_0=function(){return(kE=b._emscripten_bind_MdDbAttributeDefinition_Linetype_0=b.asm.emscripten_bind_MdDbAttributeDefinition_Linetype_0).apply(null,arguments)},lE=b._emscripten_bind_MdDbAttributeDefinition_SetLinetype_1=function(){return(lE=b._emscripten_bind_MdDbAttributeDefinition_SetLinetype_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetLinetype_1).apply(null,
  654. arguments)},mE=b._emscripten_bind_MdDbAttributeDefinition_TextStyleId_0=function(){return(mE=b._emscripten_bind_MdDbAttributeDefinition_TextStyleId_0=b.asm.emscripten_bind_MdDbAttributeDefinition_TextStyleId_0).apply(null,arguments)},nE=b._emscripten_bind_MdDbAttributeDefinition_SetTextStyleId_1=function(){return(nE=b._emscripten_bind_MdDbAttributeDefinition_SetTextStyleId_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetTextStyleId_1).apply(null,arguments)},oE=b._emscripten_bind_MdDbAttributeDefinition_IntersectWith_2=
  655. function(){return(oE=b._emscripten_bind_MdDbAttributeDefinition_IntersectWith_2=b.asm.emscripten_bind_MdDbAttributeDefinition_IntersectWith_2).apply(null,arguments)},pE=b._emscripten_bind_MdDbAttributeDefinition_getArea_0=function(){return(pE=b._emscripten_bind_MdDbAttributeDefinition_getArea_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getArea_0).apply(null,arguments)},qE=b._emscripten_bind_MdDbAttributeDefinition_disableUpdateDisplay_1=function(){return(qE=b._emscripten_bind_MdDbAttributeDefinition_disableUpdateDisplay_1=
  656. b.asm.emscripten_bind_MdDbAttributeDefinition_disableUpdateDisplay_1).apply(null,arguments)},rE=b._emscripten_bind_MdDbAttributeDefinition_isPropertiesWindowCustom_0=function(){return(rE=b._emscripten_bind_MdDbAttributeDefinition_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isPropertiesWindowCustom_0).apply(null,arguments)},sE=b._emscripten_bind_MdDbAttributeDefinition_setPropertiesWindowCustom_1=function(){return(sE=b._emscripten_bind_MdDbAttributeDefinition_setPropertiesWindowCustom_1=
  657. b.asm.emscripten_bind_MdDbAttributeDefinition_setPropertiesWindowCustom_1).apply(null,arguments)},tE=b._emscripten_bind_MdDbAttributeDefinition_updateDisplay_0=function(){return(tE=b._emscripten_bind_MdDbAttributeDefinition_updateDisplay_0=b.asm.emscripten_bind_MdDbAttributeDefinition_updateDisplay_0).apply(null,arguments)},uE=b._emscripten_bind_MdDbAttributeDefinition_DrawOrder_0=function(){return(uE=b._emscripten_bind_MdDbAttributeDefinition_DrawOrder_0=b.asm.emscripten_bind_MdDbAttributeDefinition_DrawOrder_0).apply(null,
  658. arguments)},vE=b._emscripten_bind_MdDbAttributeDefinition_SetDrawOrder_1=function(){return(vE=b._emscripten_bind_MdDbAttributeDefinition_SetDrawOrder_1=b.asm.emscripten_bind_MdDbAttributeDefinition_SetDrawOrder_1).apply(null,arguments)},wE=b._emscripten_bind_MdDbAttributeDefinition_normal_0=function(){return(wE=b._emscripten_bind_MdDbAttributeDefinition_normal_0=b.asm.emscripten_bind_MdDbAttributeDefinition_normal_0).apply(null,arguments)},xE=b._emscripten_bind_MdDbAttributeDefinition_setNormal_1=
  659. function(){return(xE=b._emscripten_bind_MdDbAttributeDefinition_setNormal_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setNormal_1).apply(null,arguments)},yE=b._emscripten_bind_MdDbAttributeDefinition_GetObjectID_0=function(){return(yE=b._emscripten_bind_MdDbAttributeDefinition_GetObjectID_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetObjectID_0).apply(null,arguments)},zE=b._emscripten_bind_MdDbAttributeDefinition_Erase_0=function(){return(zE=b._emscripten_bind_MdDbAttributeDefinition_Erase_0=
  660. b.asm.emscripten_bind_MdDbAttributeDefinition_Erase_0).apply(null,arguments)},AE=b._emscripten_bind_MdDbAttributeDefinition_isErased_0=function(){return(AE=b._emscripten_bind_MdDbAttributeDefinition_isErased_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isErased_0).apply(null,arguments)},BE=b._emscripten_bind_MdDbAttributeDefinition_unErase_0=function(){return(BE=b._emscripten_bind_MdDbAttributeDefinition_unErase_0=b.asm.emscripten_bind_MdDbAttributeDefinition_unErase_0).apply(null,arguments)},
  661. CE=b._emscripten_bind_MdDbAttributeDefinition_ConnectionTempObject_1=function(){return(CE=b._emscripten_bind_MdDbAttributeDefinition_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbAttributeDefinition_ConnectionTempObject_1).apply(null,arguments)},DE=b._emscripten_bind_MdDbAttributeDefinition_GetExtensionDictionary_0=function(){return(DE=b._emscripten_bind_MdDbAttributeDefinition_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetExtensionDictionary_0).apply(null,arguments)},
  662. EE=b._emscripten_bind_MdDbAttributeDefinition_CreateExtensionDictionary_0=function(){return(EE=b._emscripten_bind_MdDbAttributeDefinition_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttributeDefinition_CreateExtensionDictionary_0).apply(null,arguments)},FE=b._emscripten_bind_MdDbAttributeDefinition_IsHaveExtensionDictionary_0=function(){return(FE=b._emscripten_bind_MdDbAttributeDefinition_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbAttributeDefinition_IsHaveExtensionDictionary_0).apply(null,
  663. arguments)},GE=b._emscripten_bind_MdDbAttributeDefinition_Clone_0=function(){return(GE=b._emscripten_bind_MdDbAttributeDefinition_Clone_0=b.asm.emscripten_bind_MdDbAttributeDefinition_Clone_0).apply(null,arguments)},HE=b._emscripten_bind_MdDbAttributeDefinition_GetHandle_0=function(){return(HE=b._emscripten_bind_MdDbAttributeDefinition_GetHandle_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetHandle_0).apply(null,arguments)},IE=b._emscripten_bind_MdDbAttributeDefinition_GetDatabase_0=function(){return(IE=
  664. b._emscripten_bind_MdDbAttributeDefinition_GetDatabase_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetDatabase_0).apply(null,arguments)},JE=b._emscripten_bind_MdDbAttributeDefinition_GetDatabaseIndexId_0=function(){return(JE=b._emscripten_bind_MdDbAttributeDefinition_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbAttributeDefinition_GetDatabaseIndexId_0).apply(null,arguments)},KE=b._emscripten_bind_MdDbAttributeDefinition_GetOwnerID_0=function(){return(KE=b._emscripten_bind_MdDbAttributeDefinition_GetOwnerID_0=
  665. b.asm.emscripten_bind_MdDbAttributeDefinition_GetOwnerID_0).apply(null,arguments)},LE=b._emscripten_bind_MdDbAttributeDefinition_assertObjectModification_1=function(){return(LE=b._emscripten_bind_MdDbAttributeDefinition_assertObjectModification_1=b.asm.emscripten_bind_MdDbAttributeDefinition_assertObjectModification_1).apply(null,arguments)},ME=b._emscripten_bind_MdDbAttributeDefinition_moveGripPointsAt_4=function(){return(ME=b._emscripten_bind_MdDbAttributeDefinition_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbAttributeDefinition_moveGripPointsAt_4).apply(null,
  666. arguments)},NE=b._emscripten_bind_MdDbAttributeDefinition_getGripPoints_0=function(){return(NE=b._emscripten_bind_MdDbAttributeDefinition_getGripPoints_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getGripPoints_0).apply(null,arguments)},OE=b._emscripten_bind_MdDbAttributeDefinition_position_0=function(){return(OE=b._emscripten_bind_MdDbAttributeDefinition_position_0=b.asm.emscripten_bind_MdDbAttributeDefinition_position_0).apply(null,arguments)},PE=b._emscripten_bind_MdDbAttributeDefinition_setPosition_1=
  667. function(){return(PE=b._emscripten_bind_MdDbAttributeDefinition_setPosition_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setPosition_1).apply(null,arguments)},QE=b._emscripten_bind_MdDbAttributeDefinition_alignmentPoint_0=function(){return(QE=b._emscripten_bind_MdDbAttributeDefinition_alignmentPoint_0=b.asm.emscripten_bind_MdDbAttributeDefinition_alignmentPoint_0).apply(null,arguments)},RE=b._emscripten_bind_MdDbAttributeDefinition_setAlignmentPoint_1=function(){return(RE=b._emscripten_bind_MdDbAttributeDefinition_setAlignmentPoint_1=
  668. b.asm.emscripten_bind_MdDbAttributeDefinition_setAlignmentPoint_1).apply(null,arguments)},SE=b._emscripten_bind_MdDbAttributeDefinition_oblique_0=function(){return(SE=b._emscripten_bind_MdDbAttributeDefinition_oblique_0=b.asm.emscripten_bind_MdDbAttributeDefinition_oblique_0).apply(null,arguments)},TE=b._emscripten_bind_MdDbAttributeDefinition_setOblique_1=function(){return(TE=b._emscripten_bind_MdDbAttributeDefinition_setOblique_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setOblique_1).apply(null,
  669. arguments)},UE=b._emscripten_bind_MdDbAttributeDefinition_rotation_0=function(){return(UE=b._emscripten_bind_MdDbAttributeDefinition_rotation_0=b.asm.emscripten_bind_MdDbAttributeDefinition_rotation_0).apply(null,arguments)},VE=b._emscripten_bind_MdDbAttributeDefinition_setRotation_1=function(){return(VE=b._emscripten_bind_MdDbAttributeDefinition_setRotation_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setRotation_1).apply(null,arguments)},WE=b._emscripten_bind_MdDbAttributeDefinition_height_0=
  670. function(){return(WE=b._emscripten_bind_MdDbAttributeDefinition_height_0=b.asm.emscripten_bind_MdDbAttributeDefinition_height_0).apply(null,arguments)},XE=b._emscripten_bind_MdDbAttributeDefinition_setHeight_1=function(){return(XE=b._emscripten_bind_MdDbAttributeDefinition_setHeight_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setHeight_1).apply(null,arguments)},YE=b._emscripten_bind_MdDbAttributeDefinition_widthFactor_0=function(){return(YE=b._emscripten_bind_MdDbAttributeDefinition_widthFactor_0=
  671. b.asm.emscripten_bind_MdDbAttributeDefinition_widthFactor_0).apply(null,arguments)},ZE=b._emscripten_bind_MdDbAttributeDefinition_setWidthFactor_1=function(){return(ZE=b._emscripten_bind_MdDbAttributeDefinition_setWidthFactor_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setWidthFactor_1).apply(null,arguments)},$E=b._emscripten_bind_MdDbAttributeDefinition_textString_0=function(){return($E=b._emscripten_bind_MdDbAttributeDefinition_textString_0=b.asm.emscripten_bind_MdDbAttributeDefinition_textString_0).apply(null,
  672. arguments)},aF=b._emscripten_bind_MdDbAttributeDefinition_setTextString_1=function(){return(aF=b._emscripten_bind_MdDbAttributeDefinition_setTextString_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setTextString_1).apply(null,arguments)},bF=b._emscripten_bind_MdDbAttributeDefinition_horizontalMode_0=function(){return(bF=b._emscripten_bind_MdDbAttributeDefinition_horizontalMode_0=b.asm.emscripten_bind_MdDbAttributeDefinition_horizontalMode_0).apply(null,arguments)},cF=b._emscripten_bind_MdDbAttributeDefinition_setHorizontalMode_1=
  673. function(){return(cF=b._emscripten_bind_MdDbAttributeDefinition_setHorizontalMode_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setHorizontalMode_1).apply(null,arguments)},dF=b._emscripten_bind_MdDbAttributeDefinition_verticalMode_0=function(){return(dF=b._emscripten_bind_MdDbAttributeDefinition_verticalMode_0=b.asm.emscripten_bind_MdDbAttributeDefinition_verticalMode_0).apply(null,arguments)},eF=b._emscripten_bind_MdDbAttributeDefinition_setVerticalMode_1=function(){return(eF=b._emscripten_bind_MdDbAttributeDefinition_setVerticalMode_1=
  674. b.asm.emscripten_bind_MdDbAttributeDefinition_setVerticalMode_1).apply(null,arguments)},fF=b._emscripten_bind_MdDbAttributeDefinition_getObjectName_0=function(){return(fF=b._emscripten_bind_MdDbAttributeDefinition_getObjectName_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getObjectName_0).apply(null,arguments)},gF=b._emscripten_bind_MdDbAttributeDefinition_getDxf0_0=function(){return(gF=b._emscripten_bind_MdDbAttributeDefinition_getDxf0_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getDxf0_0).apply(null,
  675. arguments)},hF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityTypeName_0=function(){return(hF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getCustomEntityTypeName_0).apply(null,arguments)},iF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityid_0=function(){return(iF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityid_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getCustomEntityid_0).apply(null,arguments)},
  676. jF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityTempid_0=function(){return(jF=b._emscripten_bind_MdDbAttributeDefinition_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getCustomEntityTempid_0).apply(null,arguments)},kF=b._emscripten_bind_MdDbAttributeDefinition_setCustomEntityTempid_1=function(){return(kF=b._emscripten_bind_MdDbAttributeDefinition_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setCustomEntityTempid_1).apply(null,arguments)},
  677. lF=b._emscripten_bind_MdDbAttributeDefinition_getJson_0=function(){return(lF=b._emscripten_bind_MdDbAttributeDefinition_getJson_0=b.asm.emscripten_bind_MdDbAttributeDefinition_getJson_0).apply(null,arguments)},mF=b._emscripten_bind_MdDbAttributeDefinition_setJson_1=function(){return(mF=b._emscripten_bind_MdDbAttributeDefinition_setJson_1=b.asm.emscripten_bind_MdDbAttributeDefinition_setJson_1).apply(null,arguments)},nF=b._emscripten_bind_MdDbAttributeDefinition_isKindOf_1=function(){return(nF=b._emscripten_bind_MdDbAttributeDefinition_isKindOf_1=
  678. b.asm.emscripten_bind_MdDbAttributeDefinition_isKindOf_1).apply(null,arguments)},oF=b._emscripten_bind_MdDbAttributeDefinition_isNull_0=function(){return(oF=b._emscripten_bind_MdDbAttributeDefinition_isNull_0=b.asm.emscripten_bind_MdDbAttributeDefinition_isNull_0).apply(null,arguments)},pF=b._emscripten_bind_MdDbAttributeDefinition___destroy___0=function(){return(pF=b._emscripten_bind_MdDbAttributeDefinition___destroy___0=b.asm.emscripten_bind_MdDbAttributeDefinition___destroy___0).apply(null,arguments)},
  679. qF=b._emscripten_bind_MdDbCircle_MdDbCircle_0=function(){return(qF=b._emscripten_bind_MdDbCircle_MdDbCircle_0=b.asm.emscripten_bind_MdDbCircle_MdDbCircle_0).apply(null,arguments)},rF=b._emscripten_bind_MdDbCircle_center_0=function(){return(rF=b._emscripten_bind_MdDbCircle_center_0=b.asm.emscripten_bind_MdDbCircle_center_0).apply(null,arguments)},sF=b._emscripten_bind_MdDbCircle_setCenter_1=function(){return(sF=b._emscripten_bind_MdDbCircle_setCenter_1=b.asm.emscripten_bind_MdDbCircle_setCenter_1).apply(null,
  680. arguments)},tF=b._emscripten_bind_MdDbCircle_radius_0=function(){return(tF=b._emscripten_bind_MdDbCircle_radius_0=b.asm.emscripten_bind_MdDbCircle_radius_0).apply(null,arguments)},uF=b._emscripten_bind_MdDbCircle_setRadius_1=function(){return(uF=b._emscripten_bind_MdDbCircle_setRadius_1=b.asm.emscripten_bind_MdDbCircle_setRadius_1).apply(null,arguments)},vF=b._emscripten_bind_MdDbCircle_getStartParam_0=function(){return(vF=b._emscripten_bind_MdDbCircle_getStartParam_0=b.asm.emscripten_bind_MdDbCircle_getStartParam_0).apply(null,
  681. arguments)},wF=b._emscripten_bind_MdDbCircle_getEndParam_0=function(){return(wF=b._emscripten_bind_MdDbCircle_getEndParam_0=b.asm.emscripten_bind_MdDbCircle_getEndParam_0).apply(null,arguments)},xF=b._emscripten_bind_MdDbCircle_getDistAtParam_1=function(){return(xF=b._emscripten_bind_MdDbCircle_getDistAtParam_1=b.asm.emscripten_bind_MdDbCircle_getDistAtParam_1).apply(null,arguments)},yF=b._emscripten_bind_MdDbCircle_getParamAtDist_1=function(){return(yF=b._emscripten_bind_MdDbCircle_getParamAtDist_1=
  682. b.asm.emscripten_bind_MdDbCircle_getParamAtDist_1).apply(null,arguments)},zF=b._emscripten_bind_MdDbCircle_getDistAtPoint_1=function(){return(zF=b._emscripten_bind_MdDbCircle_getDistAtPoint_1=b.asm.emscripten_bind_MdDbCircle_getDistAtPoint_1).apply(null,arguments)},AF=b._emscripten_bind_MdDbCircle_getPointAtDist_1=function(){return(AF=b._emscripten_bind_MdDbCircle_getPointAtDist_1=b.asm.emscripten_bind_MdDbCircle_getPointAtDist_1).apply(null,arguments)},BF=b._emscripten_bind_MdDbCircle_getStartPoint_0=
  683. function(){return(BF=b._emscripten_bind_MdDbCircle_getStartPoint_0=b.asm.emscripten_bind_MdDbCircle_getStartPoint_0).apply(null,arguments)},CF=b._emscripten_bind_MdDbCircle_getEndPoint_0=function(){return(CF=b._emscripten_bind_MdDbCircle_getEndPoint_0=b.asm.emscripten_bind_MdDbCircle_getEndPoint_0).apply(null,arguments)},DF=b._emscripten_bind_MdDbCircle_getPointAtParam_1=function(){return(DF=b._emscripten_bind_MdDbCircle_getPointAtParam_1=b.asm.emscripten_bind_MdDbCircle_getPointAtParam_1).apply(null,
  684. arguments)},EF=b._emscripten_bind_MdDbCircle_getParamAtPoint_1=function(){return(EF=b._emscripten_bind_MdDbCircle_getParamAtPoint_1=b.asm.emscripten_bind_MdDbCircle_getParamAtPoint_1).apply(null,arguments)},FF=b._emscripten_bind_MdDbCircle_getFirstDeriv_1=function(){return(FF=b._emscripten_bind_MdDbCircle_getFirstDeriv_1=b.asm.emscripten_bind_MdDbCircle_getFirstDeriv_1).apply(null,arguments)},GF=b._emscripten_bind_MdDbCircle_getFirstDerivEx_1=function(){return(GF=b._emscripten_bind_MdDbCircle_getFirstDerivEx_1=
  685. b.asm.emscripten_bind_MdDbCircle_getFirstDerivEx_1).apply(null,arguments)},HF=b._emscripten_bind_MdDbCircle_getClosestPointTo_2=function(){return(HF=b._emscripten_bind_MdDbCircle_getClosestPointTo_2=b.asm.emscripten_bind_MdDbCircle_getClosestPointTo_2).apply(null,arguments)},IF=b._emscripten_bind_MdDbCircle_offsetCurves_2=function(){return(IF=b._emscripten_bind_MdDbCircle_offsetCurves_2=b.asm.emscripten_bind_MdDbCircle_offsetCurves_2).apply(null,arguments)},JF=b._emscripten_bind_MdDbCircle_splitCurves_1=
  686. function(){return(JF=b._emscripten_bind_MdDbCircle_splitCurves_1=b.asm.emscripten_bind_MdDbCircle_splitCurves_1).apply(null,arguments)},KF=b._emscripten_bind_MdDbCircle_getSamplePoints_1=function(){return(KF=b._emscripten_bind_MdDbCircle_getSamplePoints_1=b.asm.emscripten_bind_MdDbCircle_getSamplePoints_1).apply(null,arguments)},LF=b._emscripten_bind_MdDbCircle_getLength_0=function(){return(LF=b._emscripten_bind_MdDbCircle_getLength_0=b.asm.emscripten_bind_MdDbCircle_getLength_0).apply(null,arguments)},
  687. MF=b._emscripten_bind_MdDbCircle_explode_0=function(){return(MF=b._emscripten_bind_MdDbCircle_explode_0=b.asm.emscripten_bind_MdDbCircle_explode_0).apply(null,arguments)},NF=b._emscripten_bind_MdDbCircle_TrueColor_0=function(){return(NF=b._emscripten_bind_MdDbCircle_TrueColor_0=b.asm.emscripten_bind_MdDbCircle_TrueColor_0).apply(null,arguments)},OF=b._emscripten_bind_MdDbCircle_SetTrueColor_1=function(){return(OF=b._emscripten_bind_MdDbCircle_SetTrueColor_1=b.asm.emscripten_bind_MdDbCircle_SetTrueColor_1).apply(null,
  688. arguments)},PF=b._emscripten_bind_MdDbCircle_ColorIndex_0=function(){return(PF=b._emscripten_bind_MdDbCircle_ColorIndex_0=b.asm.emscripten_bind_MdDbCircle_ColorIndex_0).apply(null,arguments)},QF=b._emscripten_bind_MdDbCircle_SetColorIndex_1=function(){return(QF=b._emscripten_bind_MdDbCircle_SetColorIndex_1=b.asm.emscripten_bind_MdDbCircle_SetColorIndex_1).apply(null,arguments)},RF=b._emscripten_bind_MdDbCircle_Layer_0=function(){return(RF=b._emscripten_bind_MdDbCircle_Layer_0=b.asm.emscripten_bind_MdDbCircle_Layer_0).apply(null,
  689. arguments)},SF=b._emscripten_bind_MdDbCircle_SetLayer_1=function(){return(SF=b._emscripten_bind_MdDbCircle_SetLayer_1=b.asm.emscripten_bind_MdDbCircle_SetLayer_1).apply(null,arguments)},TF=b._emscripten_bind_MdDbCircle_LinetypeScale_0=function(){return(TF=b._emscripten_bind_MdDbCircle_LinetypeScale_0=b.asm.emscripten_bind_MdDbCircle_LinetypeScale_0).apply(null,arguments)},UF=b._emscripten_bind_MdDbCircle_SetLinetypeScale_1=function(){return(UF=b._emscripten_bind_MdDbCircle_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbCircle_SetLinetypeScale_1).apply(null,
  690. arguments)},VF=b._emscripten_bind_MdDbCircle_Visible_0=function(){return(VF=b._emscripten_bind_MdDbCircle_Visible_0=b.asm.emscripten_bind_MdDbCircle_Visible_0).apply(null,arguments)},WF=b._emscripten_bind_MdDbCircle_SetVisible_1=function(){return(WF=b._emscripten_bind_MdDbCircle_SetVisible_1=b.asm.emscripten_bind_MdDbCircle_SetVisible_1).apply(null,arguments)},XF=b._emscripten_bind_MdDbCircle_Lineweight_0=function(){return(XF=b._emscripten_bind_MdDbCircle_Lineweight_0=b.asm.emscripten_bind_MdDbCircle_Lineweight_0).apply(null,
  691. arguments)},YF=b._emscripten_bind_MdDbCircle_SetLineweight_1=function(){return(YF=b._emscripten_bind_MdDbCircle_SetLineweight_1=b.asm.emscripten_bind_MdDbCircle_SetLineweight_1).apply(null,arguments)},ZF=b._emscripten_bind_MdDbCircle_TextStyle_0=function(){return(ZF=b._emscripten_bind_MdDbCircle_TextStyle_0=b.asm.emscripten_bind_MdDbCircle_TextStyle_0).apply(null,arguments)},$F=b._emscripten_bind_MdDbCircle_SetTextStyle_1=function(){return($F=b._emscripten_bind_MdDbCircle_SetTextStyle_1=b.asm.emscripten_bind_MdDbCircle_SetTextStyle_1).apply(null,
  692. arguments)},aG=b._emscripten_bind_MdDbCircle_Highlight_1=function(){return(aG=b._emscripten_bind_MdDbCircle_Highlight_1=b.asm.emscripten_bind_MdDbCircle_Highlight_1).apply(null,arguments)},bG=b._emscripten_bind_MdDbCircle_Move_2=function(){return(bG=b._emscripten_bind_MdDbCircle_Move_2=b.asm.emscripten_bind_MdDbCircle_Move_2).apply(null,arguments)},cG=b._emscripten_bind_MdDbCircle_Rotate_2=function(){return(cG=b._emscripten_bind_MdDbCircle_Rotate_2=b.asm.emscripten_bind_MdDbCircle_Rotate_2).apply(null,
  693. arguments)},dG=b._emscripten_bind_MdDbCircle_Mirror_2=function(){return(dG=b._emscripten_bind_MdDbCircle_Mirror_2=b.asm.emscripten_bind_MdDbCircle_Mirror_2).apply(null,arguments)},eG=b._emscripten_bind_MdDbCircle_ScaleEntity_2=function(){return(eG=b._emscripten_bind_MdDbCircle_ScaleEntity_2=b.asm.emscripten_bind_MdDbCircle_ScaleEntity_2).apply(null,arguments)},fG=b._emscripten_bind_MdDbCircle_TransformBy_1=function(){return(fG=b._emscripten_bind_MdDbCircle_TransformBy_1=b.asm.emscripten_bind_MdDbCircle_TransformBy_1).apply(null,
  694. arguments)},gG=b._emscripten_bind_MdDbCircle_GetBoundingBox_0=function(){return(gG=b._emscripten_bind_MdDbCircle_GetBoundingBox_0=b.asm.emscripten_bind_MdDbCircle_GetBoundingBox_0).apply(null,arguments)},hG=b._emscripten_bind_MdDbCircle_GetXData_1=function(){return(hG=b._emscripten_bind_MdDbCircle_GetXData_1=b.asm.emscripten_bind_MdDbCircle_GetXData_1).apply(null,arguments)},iG=b._emscripten_bind_MdDbCircle_SetXData_1=function(){return(iG=b._emscripten_bind_MdDbCircle_SetXData_1=b.asm.emscripten_bind_MdDbCircle_SetXData_1).apply(null,
  695. arguments)},jG=b._emscripten_bind_MdDbCircle_GetxDataString_2=function(){return(jG=b._emscripten_bind_MdDbCircle_GetxDataString_2=b.asm.emscripten_bind_MdDbCircle_GetxDataString_2).apply(null,arguments)},kG=b._emscripten_bind_MdDbCircle_SetxDataString_3=function(){return(kG=b._emscripten_bind_MdDbCircle_SetxDataString_3=b.asm.emscripten_bind_MdDbCircle_SetxDataString_3).apply(null,arguments)},lG=b._emscripten_bind_MdDbCircle_GetxDataDouble_2=function(){return(lG=b._emscripten_bind_MdDbCircle_GetxDataDouble_2=
  696. b.asm.emscripten_bind_MdDbCircle_GetxDataDouble_2).apply(null,arguments)},mG=b._emscripten_bind_MdDbCircle_SetxDataDouble_3=function(){return(mG=b._emscripten_bind_MdDbCircle_SetxDataDouble_3=b.asm.emscripten_bind_MdDbCircle_SetxDataDouble_3).apply(null,arguments)},nG=b._emscripten_bind_MdDbCircle_GetxDataLong_2=function(){return(nG=b._emscripten_bind_MdDbCircle_GetxDataLong_2=b.asm.emscripten_bind_MdDbCircle_GetxDataLong_2).apply(null,arguments)},oG=b._emscripten_bind_MdDbCircle_SetxDataLong_3=function(){return(oG=
  697. b._emscripten_bind_MdDbCircle_SetxDataLong_3=b.asm.emscripten_bind_MdDbCircle_SetxDataLong_3).apply(null,arguments)},pG=b._emscripten_bind_MdDbCircle_GetxDataPoint_2=function(){return(pG=b._emscripten_bind_MdDbCircle_GetxDataPoint_2=b.asm.emscripten_bind_MdDbCircle_GetxDataPoint_2).apply(null,arguments)},qG=b._emscripten_bind_MdDbCircle_SetxDataPoint_3=function(){return(qG=b._emscripten_bind_MdDbCircle_SetxDataPoint_3=b.asm.emscripten_bind_MdDbCircle_SetxDataPoint_3).apply(null,arguments)},rG=b._emscripten_bind_MdDbCircle_DeleteXData_1=
  698. function(){return(rG=b._emscripten_bind_MdDbCircle_DeleteXData_1=b.asm.emscripten_bind_MdDbCircle_DeleteXData_1).apply(null,arguments)},sG=b._emscripten_bind_MdDbCircle_GetAllAppName_0=function(){return(sG=b._emscripten_bind_MdDbCircle_GetAllAppName_0=b.asm.emscripten_bind_MdDbCircle_GetAllAppName_0).apply(null,arguments)},tG=b._emscripten_bind_MdDbCircle_LayerId_0=function(){return(tG=b._emscripten_bind_MdDbCircle_LayerId_0=b.asm.emscripten_bind_MdDbCircle_LayerId_0).apply(null,arguments)},uG=b._emscripten_bind_MdDbCircle_SetLayerId_1=
  699. function(){return(uG=b._emscripten_bind_MdDbCircle_SetLayerId_1=b.asm.emscripten_bind_MdDbCircle_SetLayerId_1).apply(null,arguments)},vG=b._emscripten_bind_MdDbCircle_LinetypeId_0=function(){return(vG=b._emscripten_bind_MdDbCircle_LinetypeId_0=b.asm.emscripten_bind_MdDbCircle_LinetypeId_0).apply(null,arguments)},wG=b._emscripten_bind_MdDbCircle_SetLinetypeId_1=function(){return(wG=b._emscripten_bind_MdDbCircle_SetLinetypeId_1=b.asm.emscripten_bind_MdDbCircle_SetLinetypeId_1).apply(null,arguments)},
  700. xG=b._emscripten_bind_MdDbCircle_Linetype_0=function(){return(xG=b._emscripten_bind_MdDbCircle_Linetype_0=b.asm.emscripten_bind_MdDbCircle_Linetype_0).apply(null,arguments)},yG=b._emscripten_bind_MdDbCircle_SetLinetype_1=function(){return(yG=b._emscripten_bind_MdDbCircle_SetLinetype_1=b.asm.emscripten_bind_MdDbCircle_SetLinetype_1).apply(null,arguments)},zG=b._emscripten_bind_MdDbCircle_TextStyleId_0=function(){return(zG=b._emscripten_bind_MdDbCircle_TextStyleId_0=b.asm.emscripten_bind_MdDbCircle_TextStyleId_0).apply(null,
  701. arguments)},AG=b._emscripten_bind_MdDbCircle_SetTextStyleId_1=function(){return(AG=b._emscripten_bind_MdDbCircle_SetTextStyleId_1=b.asm.emscripten_bind_MdDbCircle_SetTextStyleId_1).apply(null,arguments)},BG=b._emscripten_bind_MdDbCircle_IntersectWith_2=function(){return(BG=b._emscripten_bind_MdDbCircle_IntersectWith_2=b.asm.emscripten_bind_MdDbCircle_IntersectWith_2).apply(null,arguments)},CG=b._emscripten_bind_MdDbCircle_getArea_0=function(){return(CG=b._emscripten_bind_MdDbCircle_getArea_0=b.asm.emscripten_bind_MdDbCircle_getArea_0).apply(null,
  702. arguments)},DG=b._emscripten_bind_MdDbCircle_disableUpdateDisplay_1=function(){return(DG=b._emscripten_bind_MdDbCircle_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbCircle_disableUpdateDisplay_1).apply(null,arguments)},EG=b._emscripten_bind_MdDbCircle_isPropertiesWindowCustom_0=function(){return(EG=b._emscripten_bind_MdDbCircle_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbCircle_isPropertiesWindowCustom_0).apply(null,arguments)},FG=b._emscripten_bind_MdDbCircle_setPropertiesWindowCustom_1=
  703. function(){return(FG=b._emscripten_bind_MdDbCircle_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbCircle_setPropertiesWindowCustom_1).apply(null,arguments)},GG=b._emscripten_bind_MdDbCircle_updateDisplay_0=function(){return(GG=b._emscripten_bind_MdDbCircle_updateDisplay_0=b.asm.emscripten_bind_MdDbCircle_updateDisplay_0).apply(null,arguments)},HG=b._emscripten_bind_MdDbCircle_DrawOrder_0=function(){return(HG=b._emscripten_bind_MdDbCircle_DrawOrder_0=b.asm.emscripten_bind_MdDbCircle_DrawOrder_0).apply(null,
  704. arguments)},IG=b._emscripten_bind_MdDbCircle_SetDrawOrder_1=function(){return(IG=b._emscripten_bind_MdDbCircle_SetDrawOrder_1=b.asm.emscripten_bind_MdDbCircle_SetDrawOrder_1).apply(null,arguments)},JG=b._emscripten_bind_MdDbCircle_normal_0=function(){return(JG=b._emscripten_bind_MdDbCircle_normal_0=b.asm.emscripten_bind_MdDbCircle_normal_0).apply(null,arguments)},KG=b._emscripten_bind_MdDbCircle_setNormal_1=function(){return(KG=b._emscripten_bind_MdDbCircle_setNormal_1=b.asm.emscripten_bind_MdDbCircle_setNormal_1).apply(null,
  705. arguments)},LG=b._emscripten_bind_MdDbCircle_GetObjectID_0=function(){return(LG=b._emscripten_bind_MdDbCircle_GetObjectID_0=b.asm.emscripten_bind_MdDbCircle_GetObjectID_0).apply(null,arguments)},MG=b._emscripten_bind_MdDbCircle_Erase_0=function(){return(MG=b._emscripten_bind_MdDbCircle_Erase_0=b.asm.emscripten_bind_MdDbCircle_Erase_0).apply(null,arguments)},NG=b._emscripten_bind_MdDbCircle_isErased_0=function(){return(NG=b._emscripten_bind_MdDbCircle_isErased_0=b.asm.emscripten_bind_MdDbCircle_isErased_0).apply(null,
  706. arguments)},OG=b._emscripten_bind_MdDbCircle_unErase_0=function(){return(OG=b._emscripten_bind_MdDbCircle_unErase_0=b.asm.emscripten_bind_MdDbCircle_unErase_0).apply(null,arguments)},PG=b._emscripten_bind_MdDbCircle_ConnectionTempObject_1=function(){return(PG=b._emscripten_bind_MdDbCircle_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbCircle_ConnectionTempObject_1).apply(null,arguments)},QG=b._emscripten_bind_MdDbCircle_GetExtensionDictionary_0=function(){return(QG=b._emscripten_bind_MdDbCircle_GetExtensionDictionary_0=
  707. b.asm.emscripten_bind_MdDbCircle_GetExtensionDictionary_0).apply(null,arguments)},RG=b._emscripten_bind_MdDbCircle_CreateExtensionDictionary_0=function(){return(RG=b._emscripten_bind_MdDbCircle_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbCircle_CreateExtensionDictionary_0).apply(null,arguments)},SG=b._emscripten_bind_MdDbCircle_IsHaveExtensionDictionary_0=function(){return(SG=b._emscripten_bind_MdDbCircle_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbCircle_IsHaveExtensionDictionary_0).apply(null,
  708. arguments)},TG=b._emscripten_bind_MdDbCircle_Clone_0=function(){return(TG=b._emscripten_bind_MdDbCircle_Clone_0=b.asm.emscripten_bind_MdDbCircle_Clone_0).apply(null,arguments)},UG=b._emscripten_bind_MdDbCircle_GetHandle_0=function(){return(UG=b._emscripten_bind_MdDbCircle_GetHandle_0=b.asm.emscripten_bind_MdDbCircle_GetHandle_0).apply(null,arguments)},VG=b._emscripten_bind_MdDbCircle_GetDatabase_0=function(){return(VG=b._emscripten_bind_MdDbCircle_GetDatabase_0=b.asm.emscripten_bind_MdDbCircle_GetDatabase_0).apply(null,
  709. arguments)},WG=b._emscripten_bind_MdDbCircle_GetDatabaseIndexId_0=function(){return(WG=b._emscripten_bind_MdDbCircle_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbCircle_GetDatabaseIndexId_0).apply(null,arguments)},XG=b._emscripten_bind_MdDbCircle_GetOwnerID_0=function(){return(XG=b._emscripten_bind_MdDbCircle_GetOwnerID_0=b.asm.emscripten_bind_MdDbCircle_GetOwnerID_0).apply(null,arguments)},YG=b._emscripten_bind_MdDbCircle_assertObjectModification_1=function(){return(YG=b._emscripten_bind_MdDbCircle_assertObjectModification_1=
  710. b.asm.emscripten_bind_MdDbCircle_assertObjectModification_1).apply(null,arguments)},ZG=b._emscripten_bind_MdDbCircle_moveGripPointsAt_4=function(){return(ZG=b._emscripten_bind_MdDbCircle_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbCircle_moveGripPointsAt_4).apply(null,arguments)},$G=b._emscripten_bind_MdDbCircle_getGripPoints_0=function(){return($G=b._emscripten_bind_MdDbCircle_getGripPoints_0=b.asm.emscripten_bind_MdDbCircle_getGripPoints_0).apply(null,arguments)},aH=b._emscripten_bind_MdDbCircle_getObjectName_0=
  711. function(){return(aH=b._emscripten_bind_MdDbCircle_getObjectName_0=b.asm.emscripten_bind_MdDbCircle_getObjectName_0).apply(null,arguments)},bH=b._emscripten_bind_MdDbCircle_getDxf0_0=function(){return(bH=b._emscripten_bind_MdDbCircle_getDxf0_0=b.asm.emscripten_bind_MdDbCircle_getDxf0_0).apply(null,arguments)},cH=b._emscripten_bind_MdDbCircle_getCustomEntityTypeName_0=function(){return(cH=b._emscripten_bind_MdDbCircle_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbCircle_getCustomEntityTypeName_0).apply(null,
  712. arguments)},dH=b._emscripten_bind_MdDbCircle_getCustomEntityid_0=function(){return(dH=b._emscripten_bind_MdDbCircle_getCustomEntityid_0=b.asm.emscripten_bind_MdDbCircle_getCustomEntityid_0).apply(null,arguments)},eH=b._emscripten_bind_MdDbCircle_getCustomEntityTempid_0=function(){return(eH=b._emscripten_bind_MdDbCircle_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbCircle_getCustomEntityTempid_0).apply(null,arguments)},fH=b._emscripten_bind_MdDbCircle_setCustomEntityTempid_1=function(){return(fH=
  713. b._emscripten_bind_MdDbCircle_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbCircle_setCustomEntityTempid_1).apply(null,arguments)},gH=b._emscripten_bind_MdDbCircle_getJson_0=function(){return(gH=b._emscripten_bind_MdDbCircle_getJson_0=b.asm.emscripten_bind_MdDbCircle_getJson_0).apply(null,arguments)},hH=b._emscripten_bind_MdDbCircle_setJson_1=function(){return(hH=b._emscripten_bind_MdDbCircle_setJson_1=b.asm.emscripten_bind_MdDbCircle_setJson_1).apply(null,arguments)},iH=b._emscripten_bind_MdDbCircle_isKindOf_1=
  714. function(){return(iH=b._emscripten_bind_MdDbCircle_isKindOf_1=b.asm.emscripten_bind_MdDbCircle_isKindOf_1).apply(null,arguments)},jH=b._emscripten_bind_MdDbCircle_isNull_0=function(){return(jH=b._emscripten_bind_MdDbCircle_isNull_0=b.asm.emscripten_bind_MdDbCircle_isNull_0).apply(null,arguments)},kH=b._emscripten_bind_MdDbCircle___destroy___0=function(){return(kH=b._emscripten_bind_MdDbCircle___destroy___0=b.asm.emscripten_bind_MdDbCircle___destroy___0).apply(null,arguments)},lH=b._emscripten_bind_MdDbArc_MdDbArc_0=
  715. function(){return(lH=b._emscripten_bind_MdDbArc_MdDbArc_0=b.asm.emscripten_bind_MdDbArc_MdDbArc_0).apply(null,arguments)},mH=b._emscripten_bind_MdDbArc_center_0=function(){return(mH=b._emscripten_bind_MdDbArc_center_0=b.asm.emscripten_bind_MdDbArc_center_0).apply(null,arguments)},nH=b._emscripten_bind_MdDbArc_setCenter_1=function(){return(nH=b._emscripten_bind_MdDbArc_setCenter_1=b.asm.emscripten_bind_MdDbArc_setCenter_1).apply(null,arguments)},oH=b._emscripten_bind_MdDbArc_radius_0=function(){return(oH=
  716. b._emscripten_bind_MdDbArc_radius_0=b.asm.emscripten_bind_MdDbArc_radius_0).apply(null,arguments)},pH=b._emscripten_bind_MdDbArc_setRadius_1=function(){return(pH=b._emscripten_bind_MdDbArc_setRadius_1=b.asm.emscripten_bind_MdDbArc_setRadius_1).apply(null,arguments)},qH=b._emscripten_bind_MdDbArc_startAngle_0=function(){return(qH=b._emscripten_bind_MdDbArc_startAngle_0=b.asm.emscripten_bind_MdDbArc_startAngle_0).apply(null,arguments)},rH=b._emscripten_bind_MdDbArc_setStartAngle_1=function(){return(rH=
  717. b._emscripten_bind_MdDbArc_setStartAngle_1=b.asm.emscripten_bind_MdDbArc_setStartAngle_1).apply(null,arguments)},sH=b._emscripten_bind_MdDbArc_endAngle_0=function(){return(sH=b._emscripten_bind_MdDbArc_endAngle_0=b.asm.emscripten_bind_MdDbArc_endAngle_0).apply(null,arguments)},tH=b._emscripten_bind_MdDbArc_setEndAngle_1=function(){return(tH=b._emscripten_bind_MdDbArc_setEndAngle_1=b.asm.emscripten_bind_MdDbArc_setEndAngle_1).apply(null,arguments)},uH=b._emscripten_bind_MdDbArc_computeArc_6=function(){return(uH=
  718. b._emscripten_bind_MdDbArc_computeArc_6=b.asm.emscripten_bind_MdDbArc_computeArc_6).apply(null,arguments)},vH=b._emscripten_bind_MdDbArc_getStartParam_0=function(){return(vH=b._emscripten_bind_MdDbArc_getStartParam_0=b.asm.emscripten_bind_MdDbArc_getStartParam_0).apply(null,arguments)},wH=b._emscripten_bind_MdDbArc_getEndParam_0=function(){return(wH=b._emscripten_bind_MdDbArc_getEndParam_0=b.asm.emscripten_bind_MdDbArc_getEndParam_0).apply(null,arguments)},xH=b._emscripten_bind_MdDbArc_getDistAtParam_1=
  719. function(){return(xH=b._emscripten_bind_MdDbArc_getDistAtParam_1=b.asm.emscripten_bind_MdDbArc_getDistAtParam_1).apply(null,arguments)},yH=b._emscripten_bind_MdDbArc_getParamAtDist_1=function(){return(yH=b._emscripten_bind_MdDbArc_getParamAtDist_1=b.asm.emscripten_bind_MdDbArc_getParamAtDist_1).apply(null,arguments)},zH=b._emscripten_bind_MdDbArc_getDistAtPoint_1=function(){return(zH=b._emscripten_bind_MdDbArc_getDistAtPoint_1=b.asm.emscripten_bind_MdDbArc_getDistAtPoint_1).apply(null,arguments)},
  720. AH=b._emscripten_bind_MdDbArc_getPointAtDist_1=function(){return(AH=b._emscripten_bind_MdDbArc_getPointAtDist_1=b.asm.emscripten_bind_MdDbArc_getPointAtDist_1).apply(null,arguments)},BH=b._emscripten_bind_MdDbArc_getStartPoint_0=function(){return(BH=b._emscripten_bind_MdDbArc_getStartPoint_0=b.asm.emscripten_bind_MdDbArc_getStartPoint_0).apply(null,arguments)},CH=b._emscripten_bind_MdDbArc_getEndPoint_0=function(){return(CH=b._emscripten_bind_MdDbArc_getEndPoint_0=b.asm.emscripten_bind_MdDbArc_getEndPoint_0).apply(null,
  721. arguments)},DH=b._emscripten_bind_MdDbArc_getPointAtParam_1=function(){return(DH=b._emscripten_bind_MdDbArc_getPointAtParam_1=b.asm.emscripten_bind_MdDbArc_getPointAtParam_1).apply(null,arguments)},EH=b._emscripten_bind_MdDbArc_getParamAtPoint_1=function(){return(EH=b._emscripten_bind_MdDbArc_getParamAtPoint_1=b.asm.emscripten_bind_MdDbArc_getParamAtPoint_1).apply(null,arguments)},FH=b._emscripten_bind_MdDbArc_getFirstDeriv_1=function(){return(FH=b._emscripten_bind_MdDbArc_getFirstDeriv_1=b.asm.emscripten_bind_MdDbArc_getFirstDeriv_1).apply(null,
  722. arguments)},GH=b._emscripten_bind_MdDbArc_getFirstDerivEx_1=function(){return(GH=b._emscripten_bind_MdDbArc_getFirstDerivEx_1=b.asm.emscripten_bind_MdDbArc_getFirstDerivEx_1).apply(null,arguments)},HH=b._emscripten_bind_MdDbArc_getClosestPointTo_2=function(){return(HH=b._emscripten_bind_MdDbArc_getClosestPointTo_2=b.asm.emscripten_bind_MdDbArc_getClosestPointTo_2).apply(null,arguments)},IH=b._emscripten_bind_MdDbArc_offsetCurves_2=function(){return(IH=b._emscripten_bind_MdDbArc_offsetCurves_2=b.asm.emscripten_bind_MdDbArc_offsetCurves_2).apply(null,
  723. arguments)},JH=b._emscripten_bind_MdDbArc_splitCurves_1=function(){return(JH=b._emscripten_bind_MdDbArc_splitCurves_1=b.asm.emscripten_bind_MdDbArc_splitCurves_1).apply(null,arguments)},KH=b._emscripten_bind_MdDbArc_getSamplePoints_1=function(){return(KH=b._emscripten_bind_MdDbArc_getSamplePoints_1=b.asm.emscripten_bind_MdDbArc_getSamplePoints_1).apply(null,arguments)},LH=b._emscripten_bind_MdDbArc_getLength_0=function(){return(LH=b._emscripten_bind_MdDbArc_getLength_0=b.asm.emscripten_bind_MdDbArc_getLength_0).apply(null,
  724. arguments)},MH=b._emscripten_bind_MdDbArc_explode_0=function(){return(MH=b._emscripten_bind_MdDbArc_explode_0=b.asm.emscripten_bind_MdDbArc_explode_0).apply(null,arguments)},NH=b._emscripten_bind_MdDbArc_TrueColor_0=function(){return(NH=b._emscripten_bind_MdDbArc_TrueColor_0=b.asm.emscripten_bind_MdDbArc_TrueColor_0).apply(null,arguments)},OH=b._emscripten_bind_MdDbArc_SetTrueColor_1=function(){return(OH=b._emscripten_bind_MdDbArc_SetTrueColor_1=b.asm.emscripten_bind_MdDbArc_SetTrueColor_1).apply(null,
  725. arguments)},PH=b._emscripten_bind_MdDbArc_ColorIndex_0=function(){return(PH=b._emscripten_bind_MdDbArc_ColorIndex_0=b.asm.emscripten_bind_MdDbArc_ColorIndex_0).apply(null,arguments)},QH=b._emscripten_bind_MdDbArc_SetColorIndex_1=function(){return(QH=b._emscripten_bind_MdDbArc_SetColorIndex_1=b.asm.emscripten_bind_MdDbArc_SetColorIndex_1).apply(null,arguments)},RH=b._emscripten_bind_MdDbArc_Layer_0=function(){return(RH=b._emscripten_bind_MdDbArc_Layer_0=b.asm.emscripten_bind_MdDbArc_Layer_0).apply(null,
  726. arguments)},SH=b._emscripten_bind_MdDbArc_SetLayer_1=function(){return(SH=b._emscripten_bind_MdDbArc_SetLayer_1=b.asm.emscripten_bind_MdDbArc_SetLayer_1).apply(null,arguments)},TH=b._emscripten_bind_MdDbArc_LinetypeScale_0=function(){return(TH=b._emscripten_bind_MdDbArc_LinetypeScale_0=b.asm.emscripten_bind_MdDbArc_LinetypeScale_0).apply(null,arguments)},UH=b._emscripten_bind_MdDbArc_SetLinetypeScale_1=function(){return(UH=b._emscripten_bind_MdDbArc_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbArc_SetLinetypeScale_1).apply(null,
  727. arguments)},VH=b._emscripten_bind_MdDbArc_Visible_0=function(){return(VH=b._emscripten_bind_MdDbArc_Visible_0=b.asm.emscripten_bind_MdDbArc_Visible_0).apply(null,arguments)},WH=b._emscripten_bind_MdDbArc_SetVisible_1=function(){return(WH=b._emscripten_bind_MdDbArc_SetVisible_1=b.asm.emscripten_bind_MdDbArc_SetVisible_1).apply(null,arguments)},XH=b._emscripten_bind_MdDbArc_Lineweight_0=function(){return(XH=b._emscripten_bind_MdDbArc_Lineweight_0=b.asm.emscripten_bind_MdDbArc_Lineweight_0).apply(null,
  728. arguments)},YH=b._emscripten_bind_MdDbArc_SetLineweight_1=function(){return(YH=b._emscripten_bind_MdDbArc_SetLineweight_1=b.asm.emscripten_bind_MdDbArc_SetLineweight_1).apply(null,arguments)},ZH=b._emscripten_bind_MdDbArc_TextStyle_0=function(){return(ZH=b._emscripten_bind_MdDbArc_TextStyle_0=b.asm.emscripten_bind_MdDbArc_TextStyle_0).apply(null,arguments)},$H=b._emscripten_bind_MdDbArc_SetTextStyle_1=function(){return($H=b._emscripten_bind_MdDbArc_SetTextStyle_1=b.asm.emscripten_bind_MdDbArc_SetTextStyle_1).apply(null,
  729. arguments)},aI=b._emscripten_bind_MdDbArc_Highlight_1=function(){return(aI=b._emscripten_bind_MdDbArc_Highlight_1=b.asm.emscripten_bind_MdDbArc_Highlight_1).apply(null,arguments)},bI=b._emscripten_bind_MdDbArc_Move_2=function(){return(bI=b._emscripten_bind_MdDbArc_Move_2=b.asm.emscripten_bind_MdDbArc_Move_2).apply(null,arguments)},cI=b._emscripten_bind_MdDbArc_Rotate_2=function(){return(cI=b._emscripten_bind_MdDbArc_Rotate_2=b.asm.emscripten_bind_MdDbArc_Rotate_2).apply(null,arguments)},dI=b._emscripten_bind_MdDbArc_Mirror_2=
  730. function(){return(dI=b._emscripten_bind_MdDbArc_Mirror_2=b.asm.emscripten_bind_MdDbArc_Mirror_2).apply(null,arguments)},eI=b._emscripten_bind_MdDbArc_ScaleEntity_2=function(){return(eI=b._emscripten_bind_MdDbArc_ScaleEntity_2=b.asm.emscripten_bind_MdDbArc_ScaleEntity_2).apply(null,arguments)},fI=b._emscripten_bind_MdDbArc_TransformBy_1=function(){return(fI=b._emscripten_bind_MdDbArc_TransformBy_1=b.asm.emscripten_bind_MdDbArc_TransformBy_1).apply(null,arguments)},gI=b._emscripten_bind_MdDbArc_GetBoundingBox_0=
  731. function(){return(gI=b._emscripten_bind_MdDbArc_GetBoundingBox_0=b.asm.emscripten_bind_MdDbArc_GetBoundingBox_0).apply(null,arguments)},hI=b._emscripten_bind_MdDbArc_GetXData_1=function(){return(hI=b._emscripten_bind_MdDbArc_GetXData_1=b.asm.emscripten_bind_MdDbArc_GetXData_1).apply(null,arguments)},iI=b._emscripten_bind_MdDbArc_SetXData_1=function(){return(iI=b._emscripten_bind_MdDbArc_SetXData_1=b.asm.emscripten_bind_MdDbArc_SetXData_1).apply(null,arguments)},jI=b._emscripten_bind_MdDbArc_GetxDataString_2=
  732. function(){return(jI=b._emscripten_bind_MdDbArc_GetxDataString_2=b.asm.emscripten_bind_MdDbArc_GetxDataString_2).apply(null,arguments)},kI=b._emscripten_bind_MdDbArc_SetxDataString_3=function(){return(kI=b._emscripten_bind_MdDbArc_SetxDataString_3=b.asm.emscripten_bind_MdDbArc_SetxDataString_3).apply(null,arguments)},lI=b._emscripten_bind_MdDbArc_GetxDataDouble_2=function(){return(lI=b._emscripten_bind_MdDbArc_GetxDataDouble_2=b.asm.emscripten_bind_MdDbArc_GetxDataDouble_2).apply(null,arguments)},
  733. mI=b._emscripten_bind_MdDbArc_SetxDataDouble_3=function(){return(mI=b._emscripten_bind_MdDbArc_SetxDataDouble_3=b.asm.emscripten_bind_MdDbArc_SetxDataDouble_3).apply(null,arguments)},nI=b._emscripten_bind_MdDbArc_GetxDataLong_2=function(){return(nI=b._emscripten_bind_MdDbArc_GetxDataLong_2=b.asm.emscripten_bind_MdDbArc_GetxDataLong_2).apply(null,arguments)},oI=b._emscripten_bind_MdDbArc_SetxDataLong_3=function(){return(oI=b._emscripten_bind_MdDbArc_SetxDataLong_3=b.asm.emscripten_bind_MdDbArc_SetxDataLong_3).apply(null,
  734. arguments)},pI=b._emscripten_bind_MdDbArc_GetxDataPoint_2=function(){return(pI=b._emscripten_bind_MdDbArc_GetxDataPoint_2=b.asm.emscripten_bind_MdDbArc_GetxDataPoint_2).apply(null,arguments)},qI=b._emscripten_bind_MdDbArc_SetxDataPoint_3=function(){return(qI=b._emscripten_bind_MdDbArc_SetxDataPoint_3=b.asm.emscripten_bind_MdDbArc_SetxDataPoint_3).apply(null,arguments)},rI=b._emscripten_bind_MdDbArc_DeleteXData_1=function(){return(rI=b._emscripten_bind_MdDbArc_DeleteXData_1=b.asm.emscripten_bind_MdDbArc_DeleteXData_1).apply(null,
  735. arguments)},sI=b._emscripten_bind_MdDbArc_GetAllAppName_0=function(){return(sI=b._emscripten_bind_MdDbArc_GetAllAppName_0=b.asm.emscripten_bind_MdDbArc_GetAllAppName_0).apply(null,arguments)},tI=b._emscripten_bind_MdDbArc_LayerId_0=function(){return(tI=b._emscripten_bind_MdDbArc_LayerId_0=b.asm.emscripten_bind_MdDbArc_LayerId_0).apply(null,arguments)},uI=b._emscripten_bind_MdDbArc_SetLayerId_1=function(){return(uI=b._emscripten_bind_MdDbArc_SetLayerId_1=b.asm.emscripten_bind_MdDbArc_SetLayerId_1).apply(null,
  736. arguments)},vI=b._emscripten_bind_MdDbArc_LinetypeId_0=function(){return(vI=b._emscripten_bind_MdDbArc_LinetypeId_0=b.asm.emscripten_bind_MdDbArc_LinetypeId_0).apply(null,arguments)},wI=b._emscripten_bind_MdDbArc_SetLinetypeId_1=function(){return(wI=b._emscripten_bind_MdDbArc_SetLinetypeId_1=b.asm.emscripten_bind_MdDbArc_SetLinetypeId_1).apply(null,arguments)},xI=b._emscripten_bind_MdDbArc_Linetype_0=function(){return(xI=b._emscripten_bind_MdDbArc_Linetype_0=b.asm.emscripten_bind_MdDbArc_Linetype_0).apply(null,
  737. arguments)},yI=b._emscripten_bind_MdDbArc_SetLinetype_1=function(){return(yI=b._emscripten_bind_MdDbArc_SetLinetype_1=b.asm.emscripten_bind_MdDbArc_SetLinetype_1).apply(null,arguments)},zI=b._emscripten_bind_MdDbArc_TextStyleId_0=function(){return(zI=b._emscripten_bind_MdDbArc_TextStyleId_0=b.asm.emscripten_bind_MdDbArc_TextStyleId_0).apply(null,arguments)},AI=b._emscripten_bind_MdDbArc_SetTextStyleId_1=function(){return(AI=b._emscripten_bind_MdDbArc_SetTextStyleId_1=b.asm.emscripten_bind_MdDbArc_SetTextStyleId_1).apply(null,
  738. arguments)},BI=b._emscripten_bind_MdDbArc_IntersectWith_2=function(){return(BI=b._emscripten_bind_MdDbArc_IntersectWith_2=b.asm.emscripten_bind_MdDbArc_IntersectWith_2).apply(null,arguments)},CI=b._emscripten_bind_MdDbArc_getArea_0=function(){return(CI=b._emscripten_bind_MdDbArc_getArea_0=b.asm.emscripten_bind_MdDbArc_getArea_0).apply(null,arguments)},DI=b._emscripten_bind_MdDbArc_disableUpdateDisplay_1=function(){return(DI=b._emscripten_bind_MdDbArc_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbArc_disableUpdateDisplay_1).apply(null,
  739. arguments)},EI=b._emscripten_bind_MdDbArc_isPropertiesWindowCustom_0=function(){return(EI=b._emscripten_bind_MdDbArc_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbArc_isPropertiesWindowCustom_0).apply(null,arguments)},FI=b._emscripten_bind_MdDbArc_setPropertiesWindowCustom_1=function(){return(FI=b._emscripten_bind_MdDbArc_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbArc_setPropertiesWindowCustom_1).apply(null,arguments)},GI=b._emscripten_bind_MdDbArc_updateDisplay_0=function(){return(GI=
  740. b._emscripten_bind_MdDbArc_updateDisplay_0=b.asm.emscripten_bind_MdDbArc_updateDisplay_0).apply(null,arguments)},HI=b._emscripten_bind_MdDbArc_DrawOrder_0=function(){return(HI=b._emscripten_bind_MdDbArc_DrawOrder_0=b.asm.emscripten_bind_MdDbArc_DrawOrder_0).apply(null,arguments)},II=b._emscripten_bind_MdDbArc_SetDrawOrder_1=function(){return(II=b._emscripten_bind_MdDbArc_SetDrawOrder_1=b.asm.emscripten_bind_MdDbArc_SetDrawOrder_1).apply(null,arguments)},JI=b._emscripten_bind_MdDbArc_normal_0=function(){return(JI=
  741. b._emscripten_bind_MdDbArc_normal_0=b.asm.emscripten_bind_MdDbArc_normal_0).apply(null,arguments)},KI=b._emscripten_bind_MdDbArc_setNormal_1=function(){return(KI=b._emscripten_bind_MdDbArc_setNormal_1=b.asm.emscripten_bind_MdDbArc_setNormal_1).apply(null,arguments)},LI=b._emscripten_bind_MdDbArc_GetObjectID_0=function(){return(LI=b._emscripten_bind_MdDbArc_GetObjectID_0=b.asm.emscripten_bind_MdDbArc_GetObjectID_0).apply(null,arguments)},MI=b._emscripten_bind_MdDbArc_Erase_0=function(){return(MI=b._emscripten_bind_MdDbArc_Erase_0=
  742. b.asm.emscripten_bind_MdDbArc_Erase_0).apply(null,arguments)},NI=b._emscripten_bind_MdDbArc_isErased_0=function(){return(NI=b._emscripten_bind_MdDbArc_isErased_0=b.asm.emscripten_bind_MdDbArc_isErased_0).apply(null,arguments)},OI=b._emscripten_bind_MdDbArc_unErase_0=function(){return(OI=b._emscripten_bind_MdDbArc_unErase_0=b.asm.emscripten_bind_MdDbArc_unErase_0).apply(null,arguments)},PI=b._emscripten_bind_MdDbArc_ConnectionTempObject_1=function(){return(PI=b._emscripten_bind_MdDbArc_ConnectionTempObject_1=
  743. b.asm.emscripten_bind_MdDbArc_ConnectionTempObject_1).apply(null,arguments)},QI=b._emscripten_bind_MdDbArc_GetExtensionDictionary_0=function(){return(QI=b._emscripten_bind_MdDbArc_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbArc_GetExtensionDictionary_0).apply(null,arguments)},RI=b._emscripten_bind_MdDbArc_CreateExtensionDictionary_0=function(){return(RI=b._emscripten_bind_MdDbArc_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbArc_CreateExtensionDictionary_0).apply(null,arguments)},SI=
  744. b._emscripten_bind_MdDbArc_IsHaveExtensionDictionary_0=function(){return(SI=b._emscripten_bind_MdDbArc_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbArc_IsHaveExtensionDictionary_0).apply(null,arguments)},TI=b._emscripten_bind_MdDbArc_Clone_0=function(){return(TI=b._emscripten_bind_MdDbArc_Clone_0=b.asm.emscripten_bind_MdDbArc_Clone_0).apply(null,arguments)},UI=b._emscripten_bind_MdDbArc_GetHandle_0=function(){return(UI=b._emscripten_bind_MdDbArc_GetHandle_0=b.asm.emscripten_bind_MdDbArc_GetHandle_0).apply(null,
  745. arguments)},VI=b._emscripten_bind_MdDbArc_GetDatabase_0=function(){return(VI=b._emscripten_bind_MdDbArc_GetDatabase_0=b.asm.emscripten_bind_MdDbArc_GetDatabase_0).apply(null,arguments)},WI=b._emscripten_bind_MdDbArc_GetDatabaseIndexId_0=function(){return(WI=b._emscripten_bind_MdDbArc_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbArc_GetDatabaseIndexId_0).apply(null,arguments)},XI=b._emscripten_bind_MdDbArc_GetOwnerID_0=function(){return(XI=b._emscripten_bind_MdDbArc_GetOwnerID_0=b.asm.emscripten_bind_MdDbArc_GetOwnerID_0).apply(null,
  746. arguments)},YI=b._emscripten_bind_MdDbArc_assertObjectModification_1=function(){return(YI=b._emscripten_bind_MdDbArc_assertObjectModification_1=b.asm.emscripten_bind_MdDbArc_assertObjectModification_1).apply(null,arguments)},ZI=b._emscripten_bind_MdDbArc_moveGripPointsAt_4=function(){return(ZI=b._emscripten_bind_MdDbArc_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbArc_moveGripPointsAt_4).apply(null,arguments)},$I=b._emscripten_bind_MdDbArc_getGripPoints_0=function(){return($I=b._emscripten_bind_MdDbArc_getGripPoints_0=
  747. b.asm.emscripten_bind_MdDbArc_getGripPoints_0).apply(null,arguments)},aJ=b._emscripten_bind_MdDbArc_getObjectName_0=function(){return(aJ=b._emscripten_bind_MdDbArc_getObjectName_0=b.asm.emscripten_bind_MdDbArc_getObjectName_0).apply(null,arguments)},bJ=b._emscripten_bind_MdDbArc_getDxf0_0=function(){return(bJ=b._emscripten_bind_MdDbArc_getDxf0_0=b.asm.emscripten_bind_MdDbArc_getDxf0_0).apply(null,arguments)},cJ=b._emscripten_bind_MdDbArc_getCustomEntityTypeName_0=function(){return(cJ=b._emscripten_bind_MdDbArc_getCustomEntityTypeName_0=
  748. b.asm.emscripten_bind_MdDbArc_getCustomEntityTypeName_0).apply(null,arguments)},dJ=b._emscripten_bind_MdDbArc_getCustomEntityid_0=function(){return(dJ=b._emscripten_bind_MdDbArc_getCustomEntityid_0=b.asm.emscripten_bind_MdDbArc_getCustomEntityid_0).apply(null,arguments)},eJ=b._emscripten_bind_MdDbArc_getCustomEntityTempid_0=function(){return(eJ=b._emscripten_bind_MdDbArc_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbArc_getCustomEntityTempid_0).apply(null,arguments)},fJ=b._emscripten_bind_MdDbArc_setCustomEntityTempid_1=
  749. function(){return(fJ=b._emscripten_bind_MdDbArc_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbArc_setCustomEntityTempid_1).apply(null,arguments)},gJ=b._emscripten_bind_MdDbArc_getJson_0=function(){return(gJ=b._emscripten_bind_MdDbArc_getJson_0=b.asm.emscripten_bind_MdDbArc_getJson_0).apply(null,arguments)},hJ=b._emscripten_bind_MdDbArc_setJson_1=function(){return(hJ=b._emscripten_bind_MdDbArc_setJson_1=b.asm.emscripten_bind_MdDbArc_setJson_1).apply(null,arguments)},iJ=b._emscripten_bind_MdDbArc_isKindOf_1=
  750. function(){return(iJ=b._emscripten_bind_MdDbArc_isKindOf_1=b.asm.emscripten_bind_MdDbArc_isKindOf_1).apply(null,arguments)},jJ=b._emscripten_bind_MdDbArc_isNull_0=function(){return(jJ=b._emscripten_bind_MdDbArc_isNull_0=b.asm.emscripten_bind_MdDbArc_isNull_0).apply(null,arguments)},kJ=b._emscripten_bind_MdDbArc___destroy___0=function(){return(kJ=b._emscripten_bind_MdDbArc___destroy___0=b.asm.emscripten_bind_MdDbArc___destroy___0).apply(null,arguments)},lJ=b._emscripten_bind_MdDbPolyline_MdDbPolyline_0=
  751. function(){return(lJ=b._emscripten_bind_MdDbPolyline_MdDbPolyline_0=b.asm.emscripten_bind_MdDbPolyline_MdDbPolyline_0).apply(null,arguments)},mJ=b._emscripten_bind_MdDbPolyline_setClosed_1=function(){return(mJ=b._emscripten_bind_MdDbPolyline_setClosed_1=b.asm.emscripten_bind_MdDbPolyline_setClosed_1).apply(null,arguments)},nJ=b._emscripten_bind_MdDbPolyline_setConstantWidth_1=function(){return(nJ=b._emscripten_bind_MdDbPolyline_setConstantWidth_1=b.asm.emscripten_bind_MdDbPolyline_setConstantWidth_1).apply(null,
  752. arguments)},oJ=b._emscripten_bind_MdDbPolyline_isClosed_0=function(){return(oJ=b._emscripten_bind_MdDbPolyline_isClosed_0=b.asm.emscripten_bind_MdDbPolyline_isClosed_0).apply(null,arguments)},pJ=b._emscripten_bind_MdDbPolyline_getConstantWidth_0=function(){return(pJ=b._emscripten_bind_MdDbPolyline_getConstantWidth_0=b.asm.emscripten_bind_MdDbPolyline_getConstantWidth_0).apply(null,arguments)},qJ=b._emscripten_bind_MdDbPolyline_addVertexAt_5=function(){return(qJ=b._emscripten_bind_MdDbPolyline_addVertexAt_5=
  753. b.asm.emscripten_bind_MdDbPolyline_addVertexAt_5).apply(null,arguments)},rJ=b._emscripten_bind_MdDbPolyline_removeVertexAt_1=function(){return(rJ=b._emscripten_bind_MdDbPolyline_removeVertexAt_1=b.asm.emscripten_bind_MdDbPolyline_removeVertexAt_1).apply(null,arguments)},sJ=b._emscripten_bind_MdDbPolyline_numVerts_0=function(){return(sJ=b._emscripten_bind_MdDbPolyline_numVerts_0=b.asm.emscripten_bind_MdDbPolyline_numVerts_0).apply(null,arguments)},tJ=b._emscripten_bind_MdDbPolyline_getPointAt_1=function(){return(tJ=
  754. b._emscripten_bind_MdDbPolyline_getPointAt_1=b.asm.emscripten_bind_MdDbPolyline_getPointAt_1).apply(null,arguments)},uJ=b._emscripten_bind_MdDbPolyline_getBulgeAt_1=function(){return(uJ=b._emscripten_bind_MdDbPolyline_getBulgeAt_1=b.asm.emscripten_bind_MdDbPolyline_getBulgeAt_1).apply(null,arguments)},vJ=b._emscripten_bind_MdDbPolyline_getStartWidthsAt_1=function(){return(vJ=b._emscripten_bind_MdDbPolyline_getStartWidthsAt_1=b.asm.emscripten_bind_MdDbPolyline_getStartWidthsAt_1).apply(null,arguments)},
  755. wJ=b._emscripten_bind_MdDbPolyline_getEndWidthsAt_1=function(){return(wJ=b._emscripten_bind_MdDbPolyline_getEndWidthsAt_1=b.asm.emscripten_bind_MdDbPolyline_getEndWidthsAt_1).apply(null,arguments)},xJ=b._emscripten_bind_MdDbPolyline_setWidthsAt_3=function(){return(xJ=b._emscripten_bind_MdDbPolyline_setWidthsAt_3=b.asm.emscripten_bind_MdDbPolyline_setWidthsAt_3).apply(null,arguments)},yJ=b._emscripten_bind_MdDbPolyline_setPointAt_2=function(){return(yJ=b._emscripten_bind_MdDbPolyline_setPointAt_2=
  756. b.asm.emscripten_bind_MdDbPolyline_setPointAt_2).apply(null,arguments)},zJ=b._emscripten_bind_MdDbPolyline_setBulgeAt_2=function(){return(zJ=b._emscripten_bind_MdDbPolyline_setBulgeAt_2=b.asm.emscripten_bind_MdDbPolyline_setBulgeAt_2).apply(null,arguments)},AJ=b._emscripten_bind_MdDbPolyline_getType_0=function(){return(AJ=b._emscripten_bind_MdDbPolyline_getType_0=b.asm.emscripten_bind_MdDbPolyline_getType_0).apply(null,arguments)},BJ=b._emscripten_bind_MdDbPolyline_setType_1=function(){return(BJ=
  757. b._emscripten_bind_MdDbPolyline_setType_1=b.asm.emscripten_bind_MdDbPolyline_setType_1).apply(null,arguments)},CJ=b._emscripten_bind_MdDbPolyline_getStartParam_0=function(){return(CJ=b._emscripten_bind_MdDbPolyline_getStartParam_0=b.asm.emscripten_bind_MdDbPolyline_getStartParam_0).apply(null,arguments)},DJ=b._emscripten_bind_MdDbPolyline_getEndParam_0=function(){return(DJ=b._emscripten_bind_MdDbPolyline_getEndParam_0=b.asm.emscripten_bind_MdDbPolyline_getEndParam_0).apply(null,arguments)},EJ=b._emscripten_bind_MdDbPolyline_getDistAtParam_1=
  758. function(){return(EJ=b._emscripten_bind_MdDbPolyline_getDistAtParam_1=b.asm.emscripten_bind_MdDbPolyline_getDistAtParam_1).apply(null,arguments)},FJ=b._emscripten_bind_MdDbPolyline_getParamAtDist_1=function(){return(FJ=b._emscripten_bind_MdDbPolyline_getParamAtDist_1=b.asm.emscripten_bind_MdDbPolyline_getParamAtDist_1).apply(null,arguments)},GJ=b._emscripten_bind_MdDbPolyline_getDistAtPoint_1=function(){return(GJ=b._emscripten_bind_MdDbPolyline_getDistAtPoint_1=b.asm.emscripten_bind_MdDbPolyline_getDistAtPoint_1).apply(null,
  759. arguments)},HJ=b._emscripten_bind_MdDbPolyline_getPointAtDist_1=function(){return(HJ=b._emscripten_bind_MdDbPolyline_getPointAtDist_1=b.asm.emscripten_bind_MdDbPolyline_getPointAtDist_1).apply(null,arguments)},IJ=b._emscripten_bind_MdDbPolyline_getStartPoint_0=function(){return(IJ=b._emscripten_bind_MdDbPolyline_getStartPoint_0=b.asm.emscripten_bind_MdDbPolyline_getStartPoint_0).apply(null,arguments)},JJ=b._emscripten_bind_MdDbPolyline_getEndPoint_0=function(){return(JJ=b._emscripten_bind_MdDbPolyline_getEndPoint_0=
  760. b.asm.emscripten_bind_MdDbPolyline_getEndPoint_0).apply(null,arguments)},KJ=b._emscripten_bind_MdDbPolyline_getPointAtParam_1=function(){return(KJ=b._emscripten_bind_MdDbPolyline_getPointAtParam_1=b.asm.emscripten_bind_MdDbPolyline_getPointAtParam_1).apply(null,arguments)},LJ=b._emscripten_bind_MdDbPolyline_getParamAtPoint_1=function(){return(LJ=b._emscripten_bind_MdDbPolyline_getParamAtPoint_1=b.asm.emscripten_bind_MdDbPolyline_getParamAtPoint_1).apply(null,arguments)},MJ=b._emscripten_bind_MdDbPolyline_getFirstDeriv_1=
  761. function(){return(MJ=b._emscripten_bind_MdDbPolyline_getFirstDeriv_1=b.asm.emscripten_bind_MdDbPolyline_getFirstDeriv_1).apply(null,arguments)},NJ=b._emscripten_bind_MdDbPolyline_getFirstDerivEx_1=function(){return(NJ=b._emscripten_bind_MdDbPolyline_getFirstDerivEx_1=b.asm.emscripten_bind_MdDbPolyline_getFirstDerivEx_1).apply(null,arguments)},OJ=b._emscripten_bind_MdDbPolyline_getClosestPointTo_2=function(){return(OJ=b._emscripten_bind_MdDbPolyline_getClosestPointTo_2=b.asm.emscripten_bind_MdDbPolyline_getClosestPointTo_2).apply(null,
  762. arguments)},PJ=b._emscripten_bind_MdDbPolyline_offsetCurves_2=function(){return(PJ=b._emscripten_bind_MdDbPolyline_offsetCurves_2=b.asm.emscripten_bind_MdDbPolyline_offsetCurves_2).apply(null,arguments)},QJ=b._emscripten_bind_MdDbPolyline_splitCurves_1=function(){return(QJ=b._emscripten_bind_MdDbPolyline_splitCurves_1=b.asm.emscripten_bind_MdDbPolyline_splitCurves_1).apply(null,arguments)},RJ=b._emscripten_bind_MdDbPolyline_getSamplePoints_1=function(){return(RJ=b._emscripten_bind_MdDbPolyline_getSamplePoints_1=
  763. b.asm.emscripten_bind_MdDbPolyline_getSamplePoints_1).apply(null,arguments)},SJ=b._emscripten_bind_MdDbPolyline_getLength_0=function(){return(SJ=b._emscripten_bind_MdDbPolyline_getLength_0=b.asm.emscripten_bind_MdDbPolyline_getLength_0).apply(null,arguments)},TJ=b._emscripten_bind_MdDbPolyline_explode_0=function(){return(TJ=b._emscripten_bind_MdDbPolyline_explode_0=b.asm.emscripten_bind_MdDbPolyline_explode_0).apply(null,arguments)},UJ=b._emscripten_bind_MdDbPolyline_TrueColor_0=function(){return(UJ=
  764. b._emscripten_bind_MdDbPolyline_TrueColor_0=b.asm.emscripten_bind_MdDbPolyline_TrueColor_0).apply(null,arguments)},VJ=b._emscripten_bind_MdDbPolyline_SetTrueColor_1=function(){return(VJ=b._emscripten_bind_MdDbPolyline_SetTrueColor_1=b.asm.emscripten_bind_MdDbPolyline_SetTrueColor_1).apply(null,arguments)},WJ=b._emscripten_bind_MdDbPolyline_ColorIndex_0=function(){return(WJ=b._emscripten_bind_MdDbPolyline_ColorIndex_0=b.asm.emscripten_bind_MdDbPolyline_ColorIndex_0).apply(null,arguments)},XJ=b._emscripten_bind_MdDbPolyline_SetColorIndex_1=
  765. function(){return(XJ=b._emscripten_bind_MdDbPolyline_SetColorIndex_1=b.asm.emscripten_bind_MdDbPolyline_SetColorIndex_1).apply(null,arguments)},YJ=b._emscripten_bind_MdDbPolyline_Layer_0=function(){return(YJ=b._emscripten_bind_MdDbPolyline_Layer_0=b.asm.emscripten_bind_MdDbPolyline_Layer_0).apply(null,arguments)},ZJ=b._emscripten_bind_MdDbPolyline_SetLayer_1=function(){return(ZJ=b._emscripten_bind_MdDbPolyline_SetLayer_1=b.asm.emscripten_bind_MdDbPolyline_SetLayer_1).apply(null,arguments)},$J=b._emscripten_bind_MdDbPolyline_LinetypeScale_0=
  766. function(){return($J=b._emscripten_bind_MdDbPolyline_LinetypeScale_0=b.asm.emscripten_bind_MdDbPolyline_LinetypeScale_0).apply(null,arguments)},aK=b._emscripten_bind_MdDbPolyline_SetLinetypeScale_1=function(){return(aK=b._emscripten_bind_MdDbPolyline_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbPolyline_SetLinetypeScale_1).apply(null,arguments)},bK=b._emscripten_bind_MdDbPolyline_Visible_0=function(){return(bK=b._emscripten_bind_MdDbPolyline_Visible_0=b.asm.emscripten_bind_MdDbPolyline_Visible_0).apply(null,
  767. arguments)},cK=b._emscripten_bind_MdDbPolyline_SetVisible_1=function(){return(cK=b._emscripten_bind_MdDbPolyline_SetVisible_1=b.asm.emscripten_bind_MdDbPolyline_SetVisible_1).apply(null,arguments)},dK=b._emscripten_bind_MdDbPolyline_Lineweight_0=function(){return(dK=b._emscripten_bind_MdDbPolyline_Lineweight_0=b.asm.emscripten_bind_MdDbPolyline_Lineweight_0).apply(null,arguments)},eK=b._emscripten_bind_MdDbPolyline_SetLineweight_1=function(){return(eK=b._emscripten_bind_MdDbPolyline_SetLineweight_1=
  768. b.asm.emscripten_bind_MdDbPolyline_SetLineweight_1).apply(null,arguments)},fK=b._emscripten_bind_MdDbPolyline_TextStyle_0=function(){return(fK=b._emscripten_bind_MdDbPolyline_TextStyle_0=b.asm.emscripten_bind_MdDbPolyline_TextStyle_0).apply(null,arguments)},gK=b._emscripten_bind_MdDbPolyline_SetTextStyle_1=function(){return(gK=b._emscripten_bind_MdDbPolyline_SetTextStyle_1=b.asm.emscripten_bind_MdDbPolyline_SetTextStyle_1).apply(null,arguments)},hK=b._emscripten_bind_MdDbPolyline_Highlight_1=function(){return(hK=
  769. b._emscripten_bind_MdDbPolyline_Highlight_1=b.asm.emscripten_bind_MdDbPolyline_Highlight_1).apply(null,arguments)},iK=b._emscripten_bind_MdDbPolyline_Move_2=function(){return(iK=b._emscripten_bind_MdDbPolyline_Move_2=b.asm.emscripten_bind_MdDbPolyline_Move_2).apply(null,arguments)},jK=b._emscripten_bind_MdDbPolyline_Rotate_2=function(){return(jK=b._emscripten_bind_MdDbPolyline_Rotate_2=b.asm.emscripten_bind_MdDbPolyline_Rotate_2).apply(null,arguments)},kK=b._emscripten_bind_MdDbPolyline_Mirror_2=
  770. function(){return(kK=b._emscripten_bind_MdDbPolyline_Mirror_2=b.asm.emscripten_bind_MdDbPolyline_Mirror_2).apply(null,arguments)},lK=b._emscripten_bind_MdDbPolyline_ScaleEntity_2=function(){return(lK=b._emscripten_bind_MdDbPolyline_ScaleEntity_2=b.asm.emscripten_bind_MdDbPolyline_ScaleEntity_2).apply(null,arguments)},mK=b._emscripten_bind_MdDbPolyline_TransformBy_1=function(){return(mK=b._emscripten_bind_MdDbPolyline_TransformBy_1=b.asm.emscripten_bind_MdDbPolyline_TransformBy_1).apply(null,arguments)},
  771. nK=b._emscripten_bind_MdDbPolyline_GetBoundingBox_0=function(){return(nK=b._emscripten_bind_MdDbPolyline_GetBoundingBox_0=b.asm.emscripten_bind_MdDbPolyline_GetBoundingBox_0).apply(null,arguments)},oK=b._emscripten_bind_MdDbPolyline_GetXData_1=function(){return(oK=b._emscripten_bind_MdDbPolyline_GetXData_1=b.asm.emscripten_bind_MdDbPolyline_GetXData_1).apply(null,arguments)},pK=b._emscripten_bind_MdDbPolyline_SetXData_1=function(){return(pK=b._emscripten_bind_MdDbPolyline_SetXData_1=b.asm.emscripten_bind_MdDbPolyline_SetXData_1).apply(null,
  772. arguments)},qK=b._emscripten_bind_MdDbPolyline_GetxDataString_2=function(){return(qK=b._emscripten_bind_MdDbPolyline_GetxDataString_2=b.asm.emscripten_bind_MdDbPolyline_GetxDataString_2).apply(null,arguments)},rK=b._emscripten_bind_MdDbPolyline_SetxDataString_3=function(){return(rK=b._emscripten_bind_MdDbPolyline_SetxDataString_3=b.asm.emscripten_bind_MdDbPolyline_SetxDataString_3).apply(null,arguments)},sK=b._emscripten_bind_MdDbPolyline_GetxDataDouble_2=function(){return(sK=b._emscripten_bind_MdDbPolyline_GetxDataDouble_2=
  773. b.asm.emscripten_bind_MdDbPolyline_GetxDataDouble_2).apply(null,arguments)},tK=b._emscripten_bind_MdDbPolyline_SetxDataDouble_3=function(){return(tK=b._emscripten_bind_MdDbPolyline_SetxDataDouble_3=b.asm.emscripten_bind_MdDbPolyline_SetxDataDouble_3).apply(null,arguments)},uK=b._emscripten_bind_MdDbPolyline_GetxDataLong_2=function(){return(uK=b._emscripten_bind_MdDbPolyline_GetxDataLong_2=b.asm.emscripten_bind_MdDbPolyline_GetxDataLong_2).apply(null,arguments)},vK=b._emscripten_bind_MdDbPolyline_SetxDataLong_3=
  774. function(){return(vK=b._emscripten_bind_MdDbPolyline_SetxDataLong_3=b.asm.emscripten_bind_MdDbPolyline_SetxDataLong_3).apply(null,arguments)},wK=b._emscripten_bind_MdDbPolyline_GetxDataPoint_2=function(){return(wK=b._emscripten_bind_MdDbPolyline_GetxDataPoint_2=b.asm.emscripten_bind_MdDbPolyline_GetxDataPoint_2).apply(null,arguments)},xK=b._emscripten_bind_MdDbPolyline_SetxDataPoint_3=function(){return(xK=b._emscripten_bind_MdDbPolyline_SetxDataPoint_3=b.asm.emscripten_bind_MdDbPolyline_SetxDataPoint_3).apply(null,
  775. arguments)},yK=b._emscripten_bind_MdDbPolyline_DeleteXData_1=function(){return(yK=b._emscripten_bind_MdDbPolyline_DeleteXData_1=b.asm.emscripten_bind_MdDbPolyline_DeleteXData_1).apply(null,arguments)},zK=b._emscripten_bind_MdDbPolyline_GetAllAppName_0=function(){return(zK=b._emscripten_bind_MdDbPolyline_GetAllAppName_0=b.asm.emscripten_bind_MdDbPolyline_GetAllAppName_0).apply(null,arguments)},AK=b._emscripten_bind_MdDbPolyline_LayerId_0=function(){return(AK=b._emscripten_bind_MdDbPolyline_LayerId_0=
  776. b.asm.emscripten_bind_MdDbPolyline_LayerId_0).apply(null,arguments)},BK=b._emscripten_bind_MdDbPolyline_SetLayerId_1=function(){return(BK=b._emscripten_bind_MdDbPolyline_SetLayerId_1=b.asm.emscripten_bind_MdDbPolyline_SetLayerId_1).apply(null,arguments)},CK=b._emscripten_bind_MdDbPolyline_LinetypeId_0=function(){return(CK=b._emscripten_bind_MdDbPolyline_LinetypeId_0=b.asm.emscripten_bind_MdDbPolyline_LinetypeId_0).apply(null,arguments)},DK=b._emscripten_bind_MdDbPolyline_SetLinetypeId_1=function(){return(DK=
  777. b._emscripten_bind_MdDbPolyline_SetLinetypeId_1=b.asm.emscripten_bind_MdDbPolyline_SetLinetypeId_1).apply(null,arguments)},EK=b._emscripten_bind_MdDbPolyline_Linetype_0=function(){return(EK=b._emscripten_bind_MdDbPolyline_Linetype_0=b.asm.emscripten_bind_MdDbPolyline_Linetype_0).apply(null,arguments)},FK=b._emscripten_bind_MdDbPolyline_SetLinetype_1=function(){return(FK=b._emscripten_bind_MdDbPolyline_SetLinetype_1=b.asm.emscripten_bind_MdDbPolyline_SetLinetype_1).apply(null,arguments)},GK=b._emscripten_bind_MdDbPolyline_TextStyleId_0=
  778. function(){return(GK=b._emscripten_bind_MdDbPolyline_TextStyleId_0=b.asm.emscripten_bind_MdDbPolyline_TextStyleId_0).apply(null,arguments)},HK=b._emscripten_bind_MdDbPolyline_SetTextStyleId_1=function(){return(HK=b._emscripten_bind_MdDbPolyline_SetTextStyleId_1=b.asm.emscripten_bind_MdDbPolyline_SetTextStyleId_1).apply(null,arguments)},IK=b._emscripten_bind_MdDbPolyline_IntersectWith_2=function(){return(IK=b._emscripten_bind_MdDbPolyline_IntersectWith_2=b.asm.emscripten_bind_MdDbPolyline_IntersectWith_2).apply(null,
  779. arguments)},JK=b._emscripten_bind_MdDbPolyline_getArea_0=function(){return(JK=b._emscripten_bind_MdDbPolyline_getArea_0=b.asm.emscripten_bind_MdDbPolyline_getArea_0).apply(null,arguments)},KK=b._emscripten_bind_MdDbPolyline_disableUpdateDisplay_1=function(){return(KK=b._emscripten_bind_MdDbPolyline_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbPolyline_disableUpdateDisplay_1).apply(null,arguments)},LK=b._emscripten_bind_MdDbPolyline_isPropertiesWindowCustom_0=function(){return(LK=b._emscripten_bind_MdDbPolyline_isPropertiesWindowCustom_0=
  780. b.asm.emscripten_bind_MdDbPolyline_isPropertiesWindowCustom_0).apply(null,arguments)},MK=b._emscripten_bind_MdDbPolyline_setPropertiesWindowCustom_1=function(){return(MK=b._emscripten_bind_MdDbPolyline_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbPolyline_setPropertiesWindowCustom_1).apply(null,arguments)},NK=b._emscripten_bind_MdDbPolyline_updateDisplay_0=function(){return(NK=b._emscripten_bind_MdDbPolyline_updateDisplay_0=b.asm.emscripten_bind_MdDbPolyline_updateDisplay_0).apply(null,arguments)},
  781. OK=b._emscripten_bind_MdDbPolyline_DrawOrder_0=function(){return(OK=b._emscripten_bind_MdDbPolyline_DrawOrder_0=b.asm.emscripten_bind_MdDbPolyline_DrawOrder_0).apply(null,arguments)},PK=b._emscripten_bind_MdDbPolyline_SetDrawOrder_1=function(){return(PK=b._emscripten_bind_MdDbPolyline_SetDrawOrder_1=b.asm.emscripten_bind_MdDbPolyline_SetDrawOrder_1).apply(null,arguments)},QK=b._emscripten_bind_MdDbPolyline_normal_0=function(){return(QK=b._emscripten_bind_MdDbPolyline_normal_0=b.asm.emscripten_bind_MdDbPolyline_normal_0).apply(null,
  782. arguments)},RK=b._emscripten_bind_MdDbPolyline_setNormal_1=function(){return(RK=b._emscripten_bind_MdDbPolyline_setNormal_1=b.asm.emscripten_bind_MdDbPolyline_setNormal_1).apply(null,arguments)},SK=b._emscripten_bind_MdDbPolyline_GetObjectID_0=function(){return(SK=b._emscripten_bind_MdDbPolyline_GetObjectID_0=b.asm.emscripten_bind_MdDbPolyline_GetObjectID_0).apply(null,arguments)},TK=b._emscripten_bind_MdDbPolyline_Erase_0=function(){return(TK=b._emscripten_bind_MdDbPolyline_Erase_0=b.asm.emscripten_bind_MdDbPolyline_Erase_0).apply(null,
  783. arguments)},UK=b._emscripten_bind_MdDbPolyline_isErased_0=function(){return(UK=b._emscripten_bind_MdDbPolyline_isErased_0=b.asm.emscripten_bind_MdDbPolyline_isErased_0).apply(null,arguments)},VK=b._emscripten_bind_MdDbPolyline_unErase_0=function(){return(VK=b._emscripten_bind_MdDbPolyline_unErase_0=b.asm.emscripten_bind_MdDbPolyline_unErase_0).apply(null,arguments)},WK=b._emscripten_bind_MdDbPolyline_ConnectionTempObject_1=function(){return(WK=b._emscripten_bind_MdDbPolyline_ConnectionTempObject_1=
  784. b.asm.emscripten_bind_MdDbPolyline_ConnectionTempObject_1).apply(null,arguments)},XK=b._emscripten_bind_MdDbPolyline_GetExtensionDictionary_0=function(){return(XK=b._emscripten_bind_MdDbPolyline_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbPolyline_GetExtensionDictionary_0).apply(null,arguments)},YK=b._emscripten_bind_MdDbPolyline_CreateExtensionDictionary_0=function(){return(YK=b._emscripten_bind_MdDbPolyline_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbPolyline_CreateExtensionDictionary_0).apply(null,
  785. arguments)},ZK=b._emscripten_bind_MdDbPolyline_IsHaveExtensionDictionary_0=function(){return(ZK=b._emscripten_bind_MdDbPolyline_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbPolyline_IsHaveExtensionDictionary_0).apply(null,arguments)},$K=b._emscripten_bind_MdDbPolyline_Clone_0=function(){return($K=b._emscripten_bind_MdDbPolyline_Clone_0=b.asm.emscripten_bind_MdDbPolyline_Clone_0).apply(null,arguments)},aL=b._emscripten_bind_MdDbPolyline_GetHandle_0=function(){return(aL=b._emscripten_bind_MdDbPolyline_GetHandle_0=
  786. b.asm.emscripten_bind_MdDbPolyline_GetHandle_0).apply(null,arguments)},bL=b._emscripten_bind_MdDbPolyline_GetDatabase_0=function(){return(bL=b._emscripten_bind_MdDbPolyline_GetDatabase_0=b.asm.emscripten_bind_MdDbPolyline_GetDatabase_0).apply(null,arguments)},cL=b._emscripten_bind_MdDbPolyline_GetDatabaseIndexId_0=function(){return(cL=b._emscripten_bind_MdDbPolyline_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbPolyline_GetDatabaseIndexId_0).apply(null,arguments)},dL=b._emscripten_bind_MdDbPolyline_GetOwnerID_0=
  787. function(){return(dL=b._emscripten_bind_MdDbPolyline_GetOwnerID_0=b.asm.emscripten_bind_MdDbPolyline_GetOwnerID_0).apply(null,arguments)},eL=b._emscripten_bind_MdDbPolyline_assertObjectModification_1=function(){return(eL=b._emscripten_bind_MdDbPolyline_assertObjectModification_1=b.asm.emscripten_bind_MdDbPolyline_assertObjectModification_1).apply(null,arguments)},fL=b._emscripten_bind_MdDbPolyline_moveGripPointsAt_4=function(){return(fL=b._emscripten_bind_MdDbPolyline_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbPolyline_moveGripPointsAt_4).apply(null,
  788. arguments)},gL=b._emscripten_bind_MdDbPolyline_getGripPoints_0=function(){return(gL=b._emscripten_bind_MdDbPolyline_getGripPoints_0=b.asm.emscripten_bind_MdDbPolyline_getGripPoints_0).apply(null,arguments)},hL=b._emscripten_bind_MdDbPolyline_getObjectName_0=function(){return(hL=b._emscripten_bind_MdDbPolyline_getObjectName_0=b.asm.emscripten_bind_MdDbPolyline_getObjectName_0).apply(null,arguments)},iL=b._emscripten_bind_MdDbPolyline_getDxf0_0=function(){return(iL=b._emscripten_bind_MdDbPolyline_getDxf0_0=
  789. b.asm.emscripten_bind_MdDbPolyline_getDxf0_0).apply(null,arguments)},jL=b._emscripten_bind_MdDbPolyline_getCustomEntityTypeName_0=function(){return(jL=b._emscripten_bind_MdDbPolyline_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbPolyline_getCustomEntityTypeName_0).apply(null,arguments)},kL=b._emscripten_bind_MdDbPolyline_getCustomEntityid_0=function(){return(kL=b._emscripten_bind_MdDbPolyline_getCustomEntityid_0=b.asm.emscripten_bind_MdDbPolyline_getCustomEntityid_0).apply(null,arguments)},
  790. lL=b._emscripten_bind_MdDbPolyline_getCustomEntityTempid_0=function(){return(lL=b._emscripten_bind_MdDbPolyline_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbPolyline_getCustomEntityTempid_0).apply(null,arguments)},mL=b._emscripten_bind_MdDbPolyline_setCustomEntityTempid_1=function(){return(mL=b._emscripten_bind_MdDbPolyline_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbPolyline_setCustomEntityTempid_1).apply(null,arguments)},nL=b._emscripten_bind_MdDbPolyline_getJson_0=function(){return(nL=
  791. b._emscripten_bind_MdDbPolyline_getJson_0=b.asm.emscripten_bind_MdDbPolyline_getJson_0).apply(null,arguments)},oL=b._emscripten_bind_MdDbPolyline_setJson_1=function(){return(oL=b._emscripten_bind_MdDbPolyline_setJson_1=b.asm.emscripten_bind_MdDbPolyline_setJson_1).apply(null,arguments)},pL=b._emscripten_bind_MdDbPolyline_isKindOf_1=function(){return(pL=b._emscripten_bind_MdDbPolyline_isKindOf_1=b.asm.emscripten_bind_MdDbPolyline_isKindOf_1).apply(null,arguments)},qL=b._emscripten_bind_MdDbPolyline_isNull_0=
  792. function(){return(qL=b._emscripten_bind_MdDbPolyline_isNull_0=b.asm.emscripten_bind_MdDbPolyline_isNull_0).apply(null,arguments)},rL=b._emscripten_bind_MdDbPolyline___destroy___0=function(){return(rL=b._emscripten_bind_MdDbPolyline___destroy___0=b.asm.emscripten_bind_MdDbPolyline___destroy___0).apply(null,arguments)},sL=b._emscripten_bind_MdDbBlockReference_MdDbBlockReference_0=function(){return(sL=b._emscripten_bind_MdDbBlockReference_MdDbBlockReference_0=b.asm.emscripten_bind_MdDbBlockReference_MdDbBlockReference_0).apply(null,
  793. arguments)},tL=b._emscripten_bind_MdDbBlockReference_blockTableRecordId_0=function(){return(tL=b._emscripten_bind_MdDbBlockReference_blockTableRecordId_0=b.asm.emscripten_bind_MdDbBlockReference_blockTableRecordId_0).apply(null,arguments)},uL=b._emscripten_bind_MdDbBlockReference_setBlockTableRecordId_1=function(){return(uL=b._emscripten_bind_MdDbBlockReference_setBlockTableRecordId_1=b.asm.emscripten_bind_MdDbBlockReference_setBlockTableRecordId_1).apply(null,arguments)},vL=b._emscripten_bind_MdDbBlockReference_position_0=
  794. function(){return(vL=b._emscripten_bind_MdDbBlockReference_position_0=b.asm.emscripten_bind_MdDbBlockReference_position_0).apply(null,arguments)},wL=b._emscripten_bind_MdDbBlockReference_setPosition_1=function(){return(wL=b._emscripten_bind_MdDbBlockReference_setPosition_1=b.asm.emscripten_bind_MdDbBlockReference_setPosition_1).apply(null,arguments)},xL=b._emscripten_bind_MdDbBlockReference_scaleFactors_0=function(){return(xL=b._emscripten_bind_MdDbBlockReference_scaleFactors_0=b.asm.emscripten_bind_MdDbBlockReference_scaleFactors_0).apply(null,
  795. arguments)},yL=b._emscripten_bind_MdDbBlockReference_setScaleFactors_1=function(){return(yL=b._emscripten_bind_MdDbBlockReference_setScaleFactors_1=b.asm.emscripten_bind_MdDbBlockReference_setScaleFactors_1).apply(null,arguments)},zL=b._emscripten_bind_MdDbBlockReference_rotation_0=function(){return(zL=b._emscripten_bind_MdDbBlockReference_rotation_0=b.asm.emscripten_bind_MdDbBlockReference_rotation_0).apply(null,arguments)},AL=b._emscripten_bind_MdDbBlockReference_setRotation_1=function(){return(AL=
  796. b._emscripten_bind_MdDbBlockReference_setRotation_1=b.asm.emscripten_bind_MdDbBlockReference_setRotation_1).apply(null,arguments)},BL=b._emscripten_bind_MdDbBlockReference_blockTransform_0=function(){return(BL=b._emscripten_bind_MdDbBlockReference_blockTransform_0=b.asm.emscripten_bind_MdDbBlockReference_blockTransform_0).apply(null,arguments)},CL=b._emscripten_bind_MdDbBlockReference_setBlockTransform_1=function(){return(CL=b._emscripten_bind_MdDbBlockReference_setBlockTransform_1=b.asm.emscripten_bind_MdDbBlockReference_setBlockTransform_1).apply(null,
  797. arguments)},DL=b._emscripten_bind_MdDbBlockReference_getBlockName_0=function(){return(DL=b._emscripten_bind_MdDbBlockReference_getBlockName_0=b.asm.emscripten_bind_MdDbBlockReference_getBlockName_0).apply(null,arguments)},EL=b._emscripten_bind_MdDbBlockReference_appendAttribute_1=function(){return(EL=b._emscripten_bind_MdDbBlockReference_appendAttribute_1=b.asm.emscripten_bind_MdDbBlockReference_appendAttribute_1).apply(null,arguments)},FL=b._emscripten_bind_MdDbBlockReference_createAttribute_0=function(){return(FL=
  798. b._emscripten_bind_MdDbBlockReference_createAttribute_0=b.asm.emscripten_bind_MdDbBlockReference_createAttribute_0).apply(null,arguments)},GL=b._emscripten_bind_MdDbBlockReference_getAllAttribute_0=function(){return(GL=b._emscripten_bind_MdDbBlockReference_getAllAttribute_0=b.asm.emscripten_bind_MdDbBlockReference_getAllAttribute_0).apply(null,arguments)},HL=b._emscripten_bind_MdDbBlockReference_getSpatialFilterId_0=function(){return(HL=b._emscripten_bind_MdDbBlockReference_getSpatialFilterId_0=b.asm.emscripten_bind_MdDbBlockReference_getSpatialFilterId_0).apply(null,
  799. arguments)},IL=b._emscripten_bind_MdDbBlockReference_createSpatialFilter_0=function(){return(IL=b._emscripten_bind_MdDbBlockReference_createSpatialFilter_0=b.asm.emscripten_bind_MdDbBlockReference_createSpatialFilter_0).apply(null,arguments)},JL=b._emscripten_bind_MdDbBlockReference_clearSpatialFilterCache_0=function(){return(JL=b._emscripten_bind_MdDbBlockReference_clearSpatialFilterCache_0=b.asm.emscripten_bind_MdDbBlockReference_clearSpatialFilterCache_0).apply(null,arguments)},KL=b._emscripten_bind_MdDbBlockReference_explode_0=
  800. function(){return(KL=b._emscripten_bind_MdDbBlockReference_explode_0=b.asm.emscripten_bind_MdDbBlockReference_explode_0).apply(null,arguments)},LL=b._emscripten_bind_MdDbBlockReference_TrueColor_0=function(){return(LL=b._emscripten_bind_MdDbBlockReference_TrueColor_0=b.asm.emscripten_bind_MdDbBlockReference_TrueColor_0).apply(null,arguments)},ML=b._emscripten_bind_MdDbBlockReference_SetTrueColor_1=function(){return(ML=b._emscripten_bind_MdDbBlockReference_SetTrueColor_1=b.asm.emscripten_bind_MdDbBlockReference_SetTrueColor_1).apply(null,
  801. arguments)},NL=b._emscripten_bind_MdDbBlockReference_ColorIndex_0=function(){return(NL=b._emscripten_bind_MdDbBlockReference_ColorIndex_0=b.asm.emscripten_bind_MdDbBlockReference_ColorIndex_0).apply(null,arguments)},OL=b._emscripten_bind_MdDbBlockReference_SetColorIndex_1=function(){return(OL=b._emscripten_bind_MdDbBlockReference_SetColorIndex_1=b.asm.emscripten_bind_MdDbBlockReference_SetColorIndex_1).apply(null,arguments)},PL=b._emscripten_bind_MdDbBlockReference_Layer_0=function(){return(PL=b._emscripten_bind_MdDbBlockReference_Layer_0=
  802. b.asm.emscripten_bind_MdDbBlockReference_Layer_0).apply(null,arguments)},QL=b._emscripten_bind_MdDbBlockReference_SetLayer_1=function(){return(QL=b._emscripten_bind_MdDbBlockReference_SetLayer_1=b.asm.emscripten_bind_MdDbBlockReference_SetLayer_1).apply(null,arguments)},RL=b._emscripten_bind_MdDbBlockReference_LinetypeScale_0=function(){return(RL=b._emscripten_bind_MdDbBlockReference_LinetypeScale_0=b.asm.emscripten_bind_MdDbBlockReference_LinetypeScale_0).apply(null,arguments)},SL=b._emscripten_bind_MdDbBlockReference_SetLinetypeScale_1=
  803. function(){return(SL=b._emscripten_bind_MdDbBlockReference_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbBlockReference_SetLinetypeScale_1).apply(null,arguments)},TL=b._emscripten_bind_MdDbBlockReference_Visible_0=function(){return(TL=b._emscripten_bind_MdDbBlockReference_Visible_0=b.asm.emscripten_bind_MdDbBlockReference_Visible_0).apply(null,arguments)},UL=b._emscripten_bind_MdDbBlockReference_SetVisible_1=function(){return(UL=b._emscripten_bind_MdDbBlockReference_SetVisible_1=b.asm.emscripten_bind_MdDbBlockReference_SetVisible_1).apply(null,
  804. arguments)},VL=b._emscripten_bind_MdDbBlockReference_Lineweight_0=function(){return(VL=b._emscripten_bind_MdDbBlockReference_Lineweight_0=b.asm.emscripten_bind_MdDbBlockReference_Lineweight_0).apply(null,arguments)},WL=b._emscripten_bind_MdDbBlockReference_SetLineweight_1=function(){return(WL=b._emscripten_bind_MdDbBlockReference_SetLineweight_1=b.asm.emscripten_bind_MdDbBlockReference_SetLineweight_1).apply(null,arguments)},XL=b._emscripten_bind_MdDbBlockReference_TextStyle_0=function(){return(XL=
  805. b._emscripten_bind_MdDbBlockReference_TextStyle_0=b.asm.emscripten_bind_MdDbBlockReference_TextStyle_0).apply(null,arguments)},YL=b._emscripten_bind_MdDbBlockReference_SetTextStyle_1=function(){return(YL=b._emscripten_bind_MdDbBlockReference_SetTextStyle_1=b.asm.emscripten_bind_MdDbBlockReference_SetTextStyle_1).apply(null,arguments)},ZL=b._emscripten_bind_MdDbBlockReference_Highlight_1=function(){return(ZL=b._emscripten_bind_MdDbBlockReference_Highlight_1=b.asm.emscripten_bind_MdDbBlockReference_Highlight_1).apply(null,
  806. arguments)},$L=b._emscripten_bind_MdDbBlockReference_Move_2=function(){return($L=b._emscripten_bind_MdDbBlockReference_Move_2=b.asm.emscripten_bind_MdDbBlockReference_Move_2).apply(null,arguments)},aM=b._emscripten_bind_MdDbBlockReference_Rotate_2=function(){return(aM=b._emscripten_bind_MdDbBlockReference_Rotate_2=b.asm.emscripten_bind_MdDbBlockReference_Rotate_2).apply(null,arguments)},bM=b._emscripten_bind_MdDbBlockReference_Mirror_2=function(){return(bM=b._emscripten_bind_MdDbBlockReference_Mirror_2=
  807. b.asm.emscripten_bind_MdDbBlockReference_Mirror_2).apply(null,arguments)},cM=b._emscripten_bind_MdDbBlockReference_ScaleEntity_2=function(){return(cM=b._emscripten_bind_MdDbBlockReference_ScaleEntity_2=b.asm.emscripten_bind_MdDbBlockReference_ScaleEntity_2).apply(null,arguments)},dM=b._emscripten_bind_MdDbBlockReference_TransformBy_1=function(){return(dM=b._emscripten_bind_MdDbBlockReference_TransformBy_1=b.asm.emscripten_bind_MdDbBlockReference_TransformBy_1).apply(null,arguments)},eM=b._emscripten_bind_MdDbBlockReference_GetBoundingBox_0=
  808. function(){return(eM=b._emscripten_bind_MdDbBlockReference_GetBoundingBox_0=b.asm.emscripten_bind_MdDbBlockReference_GetBoundingBox_0).apply(null,arguments)},fM=b._emscripten_bind_MdDbBlockReference_GetXData_1=function(){return(fM=b._emscripten_bind_MdDbBlockReference_GetXData_1=b.asm.emscripten_bind_MdDbBlockReference_GetXData_1).apply(null,arguments)},gM=b._emscripten_bind_MdDbBlockReference_SetXData_1=function(){return(gM=b._emscripten_bind_MdDbBlockReference_SetXData_1=b.asm.emscripten_bind_MdDbBlockReference_SetXData_1).apply(null,
  809. arguments)},hM=b._emscripten_bind_MdDbBlockReference_GetxDataString_2=function(){return(hM=b._emscripten_bind_MdDbBlockReference_GetxDataString_2=b.asm.emscripten_bind_MdDbBlockReference_GetxDataString_2).apply(null,arguments)},iM=b._emscripten_bind_MdDbBlockReference_SetxDataString_3=function(){return(iM=b._emscripten_bind_MdDbBlockReference_SetxDataString_3=b.asm.emscripten_bind_MdDbBlockReference_SetxDataString_3).apply(null,arguments)},jM=b._emscripten_bind_MdDbBlockReference_GetxDataDouble_2=
  810. function(){return(jM=b._emscripten_bind_MdDbBlockReference_GetxDataDouble_2=b.asm.emscripten_bind_MdDbBlockReference_GetxDataDouble_2).apply(null,arguments)},kM=b._emscripten_bind_MdDbBlockReference_SetxDataDouble_3=function(){return(kM=b._emscripten_bind_MdDbBlockReference_SetxDataDouble_3=b.asm.emscripten_bind_MdDbBlockReference_SetxDataDouble_3).apply(null,arguments)},lM=b._emscripten_bind_MdDbBlockReference_GetxDataLong_2=function(){return(lM=b._emscripten_bind_MdDbBlockReference_GetxDataLong_2=
  811. b.asm.emscripten_bind_MdDbBlockReference_GetxDataLong_2).apply(null,arguments)},mM=b._emscripten_bind_MdDbBlockReference_SetxDataLong_3=function(){return(mM=b._emscripten_bind_MdDbBlockReference_SetxDataLong_3=b.asm.emscripten_bind_MdDbBlockReference_SetxDataLong_3).apply(null,arguments)},nM=b._emscripten_bind_MdDbBlockReference_GetxDataPoint_2=function(){return(nM=b._emscripten_bind_MdDbBlockReference_GetxDataPoint_2=b.asm.emscripten_bind_MdDbBlockReference_GetxDataPoint_2).apply(null,arguments)},
  812. oM=b._emscripten_bind_MdDbBlockReference_SetxDataPoint_3=function(){return(oM=b._emscripten_bind_MdDbBlockReference_SetxDataPoint_3=b.asm.emscripten_bind_MdDbBlockReference_SetxDataPoint_3).apply(null,arguments)},pM=b._emscripten_bind_MdDbBlockReference_DeleteXData_1=function(){return(pM=b._emscripten_bind_MdDbBlockReference_DeleteXData_1=b.asm.emscripten_bind_MdDbBlockReference_DeleteXData_1).apply(null,arguments)},qM=b._emscripten_bind_MdDbBlockReference_GetAllAppName_0=function(){return(qM=b._emscripten_bind_MdDbBlockReference_GetAllAppName_0=
  813. b.asm.emscripten_bind_MdDbBlockReference_GetAllAppName_0).apply(null,arguments)},rM=b._emscripten_bind_MdDbBlockReference_LayerId_0=function(){return(rM=b._emscripten_bind_MdDbBlockReference_LayerId_0=b.asm.emscripten_bind_MdDbBlockReference_LayerId_0).apply(null,arguments)},sM=b._emscripten_bind_MdDbBlockReference_SetLayerId_1=function(){return(sM=b._emscripten_bind_MdDbBlockReference_SetLayerId_1=b.asm.emscripten_bind_MdDbBlockReference_SetLayerId_1).apply(null,arguments)},tM=b._emscripten_bind_MdDbBlockReference_LinetypeId_0=
  814. function(){return(tM=b._emscripten_bind_MdDbBlockReference_LinetypeId_0=b.asm.emscripten_bind_MdDbBlockReference_LinetypeId_0).apply(null,arguments)},uM=b._emscripten_bind_MdDbBlockReference_SetLinetypeId_1=function(){return(uM=b._emscripten_bind_MdDbBlockReference_SetLinetypeId_1=b.asm.emscripten_bind_MdDbBlockReference_SetLinetypeId_1).apply(null,arguments)},vM=b._emscripten_bind_MdDbBlockReference_Linetype_0=function(){return(vM=b._emscripten_bind_MdDbBlockReference_Linetype_0=b.asm.emscripten_bind_MdDbBlockReference_Linetype_0).apply(null,
  815. arguments)},wM=b._emscripten_bind_MdDbBlockReference_SetLinetype_1=function(){return(wM=b._emscripten_bind_MdDbBlockReference_SetLinetype_1=b.asm.emscripten_bind_MdDbBlockReference_SetLinetype_1).apply(null,arguments)},xM=b._emscripten_bind_MdDbBlockReference_TextStyleId_0=function(){return(xM=b._emscripten_bind_MdDbBlockReference_TextStyleId_0=b.asm.emscripten_bind_MdDbBlockReference_TextStyleId_0).apply(null,arguments)},yM=b._emscripten_bind_MdDbBlockReference_SetTextStyleId_1=function(){return(yM=
  816. b._emscripten_bind_MdDbBlockReference_SetTextStyleId_1=b.asm.emscripten_bind_MdDbBlockReference_SetTextStyleId_1).apply(null,arguments)},zM=b._emscripten_bind_MdDbBlockReference_IntersectWith_2=function(){return(zM=b._emscripten_bind_MdDbBlockReference_IntersectWith_2=b.asm.emscripten_bind_MdDbBlockReference_IntersectWith_2).apply(null,arguments)},AM=b._emscripten_bind_MdDbBlockReference_getArea_0=function(){return(AM=b._emscripten_bind_MdDbBlockReference_getArea_0=b.asm.emscripten_bind_MdDbBlockReference_getArea_0).apply(null,
  817. arguments)},BM=b._emscripten_bind_MdDbBlockReference_disableUpdateDisplay_1=function(){return(BM=b._emscripten_bind_MdDbBlockReference_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbBlockReference_disableUpdateDisplay_1).apply(null,arguments)},CM=b._emscripten_bind_MdDbBlockReference_isPropertiesWindowCustom_0=function(){return(CM=b._emscripten_bind_MdDbBlockReference_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbBlockReference_isPropertiesWindowCustom_0).apply(null,arguments)},DM=b._emscripten_bind_MdDbBlockReference_setPropertiesWindowCustom_1=
  818. function(){return(DM=b._emscripten_bind_MdDbBlockReference_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbBlockReference_setPropertiesWindowCustom_1).apply(null,arguments)},EM=b._emscripten_bind_MdDbBlockReference_updateDisplay_0=function(){return(EM=b._emscripten_bind_MdDbBlockReference_updateDisplay_0=b.asm.emscripten_bind_MdDbBlockReference_updateDisplay_0).apply(null,arguments)},FM=b._emscripten_bind_MdDbBlockReference_DrawOrder_0=function(){return(FM=b._emscripten_bind_MdDbBlockReference_DrawOrder_0=
  819. b.asm.emscripten_bind_MdDbBlockReference_DrawOrder_0).apply(null,arguments)},GM=b._emscripten_bind_MdDbBlockReference_SetDrawOrder_1=function(){return(GM=b._emscripten_bind_MdDbBlockReference_SetDrawOrder_1=b.asm.emscripten_bind_MdDbBlockReference_SetDrawOrder_1).apply(null,arguments)},HM=b._emscripten_bind_MdDbBlockReference_normal_0=function(){return(HM=b._emscripten_bind_MdDbBlockReference_normal_0=b.asm.emscripten_bind_MdDbBlockReference_normal_0).apply(null,arguments)},IM=b._emscripten_bind_MdDbBlockReference_setNormal_1=
  820. function(){return(IM=b._emscripten_bind_MdDbBlockReference_setNormal_1=b.asm.emscripten_bind_MdDbBlockReference_setNormal_1).apply(null,arguments)},JM=b._emscripten_bind_MdDbBlockReference_GetObjectID_0=function(){return(JM=b._emscripten_bind_MdDbBlockReference_GetObjectID_0=b.asm.emscripten_bind_MdDbBlockReference_GetObjectID_0).apply(null,arguments)},KM=b._emscripten_bind_MdDbBlockReference_Erase_0=function(){return(KM=b._emscripten_bind_MdDbBlockReference_Erase_0=b.asm.emscripten_bind_MdDbBlockReference_Erase_0).apply(null,
  821. arguments)},LM=b._emscripten_bind_MdDbBlockReference_isErased_0=function(){return(LM=b._emscripten_bind_MdDbBlockReference_isErased_0=b.asm.emscripten_bind_MdDbBlockReference_isErased_0).apply(null,arguments)},MM=b._emscripten_bind_MdDbBlockReference_unErase_0=function(){return(MM=b._emscripten_bind_MdDbBlockReference_unErase_0=b.asm.emscripten_bind_MdDbBlockReference_unErase_0).apply(null,arguments)},NM=b._emscripten_bind_MdDbBlockReference_ConnectionTempObject_1=function(){return(NM=b._emscripten_bind_MdDbBlockReference_ConnectionTempObject_1=
  822. b.asm.emscripten_bind_MdDbBlockReference_ConnectionTempObject_1).apply(null,arguments)},OM=b._emscripten_bind_MdDbBlockReference_GetExtensionDictionary_0=function(){return(OM=b._emscripten_bind_MdDbBlockReference_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockReference_GetExtensionDictionary_0).apply(null,arguments)},PM=b._emscripten_bind_MdDbBlockReference_CreateExtensionDictionary_0=function(){return(PM=b._emscripten_bind_MdDbBlockReference_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockReference_CreateExtensionDictionary_0).apply(null,
  823. arguments)},QM=b._emscripten_bind_MdDbBlockReference_IsHaveExtensionDictionary_0=function(){return(QM=b._emscripten_bind_MdDbBlockReference_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockReference_IsHaveExtensionDictionary_0).apply(null,arguments)},RM=b._emscripten_bind_MdDbBlockReference_Clone_0=function(){return(RM=b._emscripten_bind_MdDbBlockReference_Clone_0=b.asm.emscripten_bind_MdDbBlockReference_Clone_0).apply(null,arguments)},SM=b._emscripten_bind_MdDbBlockReference_GetHandle_0=
  824. function(){return(SM=b._emscripten_bind_MdDbBlockReference_GetHandle_0=b.asm.emscripten_bind_MdDbBlockReference_GetHandle_0).apply(null,arguments)},TM=b._emscripten_bind_MdDbBlockReference_GetDatabase_0=function(){return(TM=b._emscripten_bind_MdDbBlockReference_GetDatabase_0=b.asm.emscripten_bind_MdDbBlockReference_GetDatabase_0).apply(null,arguments)},UM=b._emscripten_bind_MdDbBlockReference_GetDatabaseIndexId_0=function(){return(UM=b._emscripten_bind_MdDbBlockReference_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbBlockReference_GetDatabaseIndexId_0).apply(null,
  825. arguments)},VM=b._emscripten_bind_MdDbBlockReference_GetOwnerID_0=function(){return(VM=b._emscripten_bind_MdDbBlockReference_GetOwnerID_0=b.asm.emscripten_bind_MdDbBlockReference_GetOwnerID_0).apply(null,arguments)},WM=b._emscripten_bind_MdDbBlockReference_assertObjectModification_1=function(){return(WM=b._emscripten_bind_MdDbBlockReference_assertObjectModification_1=b.asm.emscripten_bind_MdDbBlockReference_assertObjectModification_1).apply(null,arguments)},XM=b._emscripten_bind_MdDbBlockReference_moveGripPointsAt_4=
  826. function(){return(XM=b._emscripten_bind_MdDbBlockReference_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbBlockReference_moveGripPointsAt_4).apply(null,arguments)},YM=b._emscripten_bind_MdDbBlockReference_getGripPoints_0=function(){return(YM=b._emscripten_bind_MdDbBlockReference_getGripPoints_0=b.asm.emscripten_bind_MdDbBlockReference_getGripPoints_0).apply(null,arguments)},ZM=b._emscripten_bind_MdDbBlockReference_getObjectName_0=function(){return(ZM=b._emscripten_bind_MdDbBlockReference_getObjectName_0=
  827. b.asm.emscripten_bind_MdDbBlockReference_getObjectName_0).apply(null,arguments)},$M=b._emscripten_bind_MdDbBlockReference_getDxf0_0=function(){return($M=b._emscripten_bind_MdDbBlockReference_getDxf0_0=b.asm.emscripten_bind_MdDbBlockReference_getDxf0_0).apply(null,arguments)},aN=b._emscripten_bind_MdDbBlockReference_getCustomEntityTypeName_0=function(){return(aN=b._emscripten_bind_MdDbBlockReference_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbBlockReference_getCustomEntityTypeName_0).apply(null,
  828. arguments)},bN=b._emscripten_bind_MdDbBlockReference_getCustomEntityid_0=function(){return(bN=b._emscripten_bind_MdDbBlockReference_getCustomEntityid_0=b.asm.emscripten_bind_MdDbBlockReference_getCustomEntityid_0).apply(null,arguments)},cN=b._emscripten_bind_MdDbBlockReference_getCustomEntityTempid_0=function(){return(cN=b._emscripten_bind_MdDbBlockReference_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbBlockReference_getCustomEntityTempid_0).apply(null,arguments)},dN=b._emscripten_bind_MdDbBlockReference_setCustomEntityTempid_1=
  829. function(){return(dN=b._emscripten_bind_MdDbBlockReference_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbBlockReference_setCustomEntityTempid_1).apply(null,arguments)},eN=b._emscripten_bind_MdDbBlockReference_getJson_0=function(){return(eN=b._emscripten_bind_MdDbBlockReference_getJson_0=b.asm.emscripten_bind_MdDbBlockReference_getJson_0).apply(null,arguments)},fN=b._emscripten_bind_MdDbBlockReference_setJson_1=function(){return(fN=b._emscripten_bind_MdDbBlockReference_setJson_1=b.asm.emscripten_bind_MdDbBlockReference_setJson_1).apply(null,
  830. arguments)},gN=b._emscripten_bind_MdDbBlockReference_isKindOf_1=function(){return(gN=b._emscripten_bind_MdDbBlockReference_isKindOf_1=b.asm.emscripten_bind_MdDbBlockReference_isKindOf_1).apply(null,arguments)},hN=b._emscripten_bind_MdDbBlockReference_isNull_0=function(){return(hN=b._emscripten_bind_MdDbBlockReference_isNull_0=b.asm.emscripten_bind_MdDbBlockReference_isNull_0).apply(null,arguments)},iN=b._emscripten_bind_MdDbBlockReference___destroy___0=function(){return(iN=b._emscripten_bind_MdDbBlockReference___destroy___0=
  831. b.asm.emscripten_bind_MdDbBlockReference___destroy___0).apply(null,arguments)},jN=b._emscripten_bind_MdDbSpatialFilter_MdDbSpatialFilter_0=function(){return(jN=b._emscripten_bind_MdDbSpatialFilter_MdDbSpatialFilter_0=b.asm.emscripten_bind_MdDbSpatialFilter_MdDbSpatialFilter_0).apply(null,arguments)},kN=b._emscripten_bind_MdDbSpatialFilter_boundary_0=function(){return(kN=b._emscripten_bind_MdDbSpatialFilter_boundary_0=b.asm.emscripten_bind_MdDbSpatialFilter_boundary_0).apply(null,arguments)},lN=b._emscripten_bind_MdDbSpatialFilter_setBoundary_1=
  832. function(){return(lN=b._emscripten_bind_MdDbSpatialFilter_setBoundary_1=b.asm.emscripten_bind_MdDbSpatialFilter_setBoundary_1).apply(null,arguments)},mN=b._emscripten_bind_MdDbSpatialFilter_isFilterInverted_0=function(){return(mN=b._emscripten_bind_MdDbSpatialFilter_isFilterInverted_0=b.asm.emscripten_bind_MdDbSpatialFilter_isFilterInverted_0).apply(null,arguments)},nN=b._emscripten_bind_MdDbSpatialFilter_setFilterInverted_1=function(){return(nN=b._emscripten_bind_MdDbSpatialFilter_setFilterInverted_1=
  833. b.asm.emscripten_bind_MdDbSpatialFilter_setFilterInverted_1).apply(null,arguments)},oN=b._emscripten_bind_MdDbSpatialFilter_isEnabled_0=function(){return(oN=b._emscripten_bind_MdDbSpatialFilter_isEnabled_0=b.asm.emscripten_bind_MdDbSpatialFilter_isEnabled_0).apply(null,arguments)},pN=b._emscripten_bind_MdDbSpatialFilter_setEnable_1=function(){return(pN=b._emscripten_bind_MdDbSpatialFilter_setEnable_1=b.asm.emscripten_bind_MdDbSpatialFilter_setEnable_1).apply(null,arguments)},qN=b._emscripten_bind_MdDbSpatialFilter_GetObjectID_0=
  834. function(){return(qN=b._emscripten_bind_MdDbSpatialFilter_GetObjectID_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetObjectID_0).apply(null,arguments)},rN=b._emscripten_bind_MdDbSpatialFilter_Erase_0=function(){return(rN=b._emscripten_bind_MdDbSpatialFilter_Erase_0=b.asm.emscripten_bind_MdDbSpatialFilter_Erase_0).apply(null,arguments)},sN=b._emscripten_bind_MdDbSpatialFilter_isErased_0=function(){return(sN=b._emscripten_bind_MdDbSpatialFilter_isErased_0=b.asm.emscripten_bind_MdDbSpatialFilter_isErased_0).apply(null,
  835. arguments)},tN=b._emscripten_bind_MdDbSpatialFilter_unErase_0=function(){return(tN=b._emscripten_bind_MdDbSpatialFilter_unErase_0=b.asm.emscripten_bind_MdDbSpatialFilter_unErase_0).apply(null,arguments)},uN=b._emscripten_bind_MdDbSpatialFilter_ConnectionTempObject_1=function(){return(uN=b._emscripten_bind_MdDbSpatialFilter_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbSpatialFilter_ConnectionTempObject_1).apply(null,arguments)},vN=b._emscripten_bind_MdDbSpatialFilter_GetExtensionDictionary_0=function(){return(vN=
  836. b._emscripten_bind_MdDbSpatialFilter_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetExtensionDictionary_0).apply(null,arguments)},wN=b._emscripten_bind_MdDbSpatialFilter_CreateExtensionDictionary_0=function(){return(wN=b._emscripten_bind_MdDbSpatialFilter_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbSpatialFilter_CreateExtensionDictionary_0).apply(null,arguments)},xN=b._emscripten_bind_MdDbSpatialFilter_IsHaveExtensionDictionary_0=function(){return(xN=b._emscripten_bind_MdDbSpatialFilter_IsHaveExtensionDictionary_0=
  837. b.asm.emscripten_bind_MdDbSpatialFilter_IsHaveExtensionDictionary_0).apply(null,arguments)},yN=b._emscripten_bind_MdDbSpatialFilter_Clone_0=function(){return(yN=b._emscripten_bind_MdDbSpatialFilter_Clone_0=b.asm.emscripten_bind_MdDbSpatialFilter_Clone_0).apply(null,arguments)},zN=b._emscripten_bind_MdDbSpatialFilter_GetHandle_0=function(){return(zN=b._emscripten_bind_MdDbSpatialFilter_GetHandle_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetHandle_0).apply(null,arguments)},AN=b._emscripten_bind_MdDbSpatialFilter_GetDatabase_0=
  838. function(){return(AN=b._emscripten_bind_MdDbSpatialFilter_GetDatabase_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetDatabase_0).apply(null,arguments)},BN=b._emscripten_bind_MdDbSpatialFilter_GetDatabaseIndexId_0=function(){return(BN=b._emscripten_bind_MdDbSpatialFilter_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetDatabaseIndexId_0).apply(null,arguments)},CN=b._emscripten_bind_MdDbSpatialFilter_GetOwnerID_0=function(){return(CN=b._emscripten_bind_MdDbSpatialFilter_GetOwnerID_0=b.asm.emscripten_bind_MdDbSpatialFilter_GetOwnerID_0).apply(null,
  839. arguments)},DN=b._emscripten_bind_MdDbSpatialFilter_assertObjectModification_1=function(){return(DN=b._emscripten_bind_MdDbSpatialFilter_assertObjectModification_1=b.asm.emscripten_bind_MdDbSpatialFilter_assertObjectModification_1).apply(null,arguments)},EN=b._emscripten_bind_MdDbSpatialFilter_moveGripPointsAt_4=function(){return(EN=b._emscripten_bind_MdDbSpatialFilter_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbSpatialFilter_moveGripPointsAt_4).apply(null,arguments)},FN=b._emscripten_bind_MdDbSpatialFilter_getGripPoints_0=
  840. function(){return(FN=b._emscripten_bind_MdDbSpatialFilter_getGripPoints_0=b.asm.emscripten_bind_MdDbSpatialFilter_getGripPoints_0).apply(null,arguments)},GN=b._emscripten_bind_MdDbSpatialFilter_getObjectName_0=function(){return(GN=b._emscripten_bind_MdDbSpatialFilter_getObjectName_0=b.asm.emscripten_bind_MdDbSpatialFilter_getObjectName_0).apply(null,arguments)},HN=b._emscripten_bind_MdDbSpatialFilter_getDxf0_0=function(){return(HN=b._emscripten_bind_MdDbSpatialFilter_getDxf0_0=b.asm.emscripten_bind_MdDbSpatialFilter_getDxf0_0).apply(null,
  841. arguments)},IN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityTypeName_0=function(){return(IN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbSpatialFilter_getCustomEntityTypeName_0).apply(null,arguments)},JN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityid_0=function(){return(JN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityid_0=b.asm.emscripten_bind_MdDbSpatialFilter_getCustomEntityid_0).apply(null,arguments)},KN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityTempid_0=
  842. function(){return(KN=b._emscripten_bind_MdDbSpatialFilter_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbSpatialFilter_getCustomEntityTempid_0).apply(null,arguments)},LN=b._emscripten_bind_MdDbSpatialFilter_setCustomEntityTempid_1=function(){return(LN=b._emscripten_bind_MdDbSpatialFilter_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbSpatialFilter_setCustomEntityTempid_1).apply(null,arguments)},MN=b._emscripten_bind_MdDbSpatialFilter_getJson_0=function(){return(MN=b._emscripten_bind_MdDbSpatialFilter_getJson_0=
  843. b.asm.emscripten_bind_MdDbSpatialFilter_getJson_0).apply(null,arguments)},NN=b._emscripten_bind_MdDbSpatialFilter_setJson_1=function(){return(NN=b._emscripten_bind_MdDbSpatialFilter_setJson_1=b.asm.emscripten_bind_MdDbSpatialFilter_setJson_1).apply(null,arguments)},ON=b._emscripten_bind_MdDbSpatialFilter_isKindOf_1=function(){return(ON=b._emscripten_bind_MdDbSpatialFilter_isKindOf_1=b.asm.emscripten_bind_MdDbSpatialFilter_isKindOf_1).apply(null,arguments)},PN=b._emscripten_bind_MdDbSpatialFilter_isNull_0=
  844. function(){return(PN=b._emscripten_bind_MdDbSpatialFilter_isNull_0=b.asm.emscripten_bind_MdDbSpatialFilter_isNull_0).apply(null,arguments)},QN=b._emscripten_bind_MdDbSpatialFilter___destroy___0=function(){return(QN=b._emscripten_bind_MdDbSpatialFilter___destroy___0=b.asm.emscripten_bind_MdDbSpatialFilter___destroy___0).apply(null,arguments)},RN=b._emscripten_bind_MdDbAlignedDimension_MdDbAlignedDimension_0=function(){return(RN=b._emscripten_bind_MdDbAlignedDimension_MdDbAlignedDimension_0=b.asm.emscripten_bind_MdDbAlignedDimension_MdDbAlignedDimension_0).apply(null,
  845. arguments)},SN=b._emscripten_bind_MdDbAlignedDimension_xLine1Point_0=function(){return(SN=b._emscripten_bind_MdDbAlignedDimension_xLine1Point_0=b.asm.emscripten_bind_MdDbAlignedDimension_xLine1Point_0).apply(null,arguments)},TN=b._emscripten_bind_MdDbAlignedDimension_setXLine1Point_1=function(){return(TN=b._emscripten_bind_MdDbAlignedDimension_setXLine1Point_1=b.asm.emscripten_bind_MdDbAlignedDimension_setXLine1Point_1).apply(null,arguments)},UN=b._emscripten_bind_MdDbAlignedDimension_xLine2Point_0=
  846. function(){return(UN=b._emscripten_bind_MdDbAlignedDimension_xLine2Point_0=b.asm.emscripten_bind_MdDbAlignedDimension_xLine2Point_0).apply(null,arguments)},VN=b._emscripten_bind_MdDbAlignedDimension_setXLine2Point_1=function(){return(VN=b._emscripten_bind_MdDbAlignedDimension_setXLine2Point_1=b.asm.emscripten_bind_MdDbAlignedDimension_setXLine2Point_1).apply(null,arguments)},WN=b._emscripten_bind_MdDbAlignedDimension_dimLinePoint_0=function(){return(WN=b._emscripten_bind_MdDbAlignedDimension_dimLinePoint_0=
  847. b.asm.emscripten_bind_MdDbAlignedDimension_dimLinePoint_0).apply(null,arguments)},XN=b._emscripten_bind_MdDbAlignedDimension_setDimLinePoint_1=function(){return(XN=b._emscripten_bind_MdDbAlignedDimension_setDimLinePoint_1=b.asm.emscripten_bind_MdDbAlignedDimension_setDimLinePoint_1).apply(null,arguments)},YN=b._emscripten_bind_MdDbAlignedDimension_oblique_0=function(){return(YN=b._emscripten_bind_MdDbAlignedDimension_oblique_0=b.asm.emscripten_bind_MdDbAlignedDimension_oblique_0).apply(null,arguments)},
  848. ZN=b._emscripten_bind_MdDbAlignedDimension_setOblique_1=function(){return(ZN=b._emscripten_bind_MdDbAlignedDimension_setOblique_1=b.asm.emscripten_bind_MdDbAlignedDimension_setOblique_1).apply(null,arguments)},$N=b._emscripten_bind_MdDbAlignedDimension_textPosition_0=function(){return($N=b._emscripten_bind_MdDbAlignedDimension_textPosition_0=b.asm.emscripten_bind_MdDbAlignedDimension_textPosition_0).apply(null,arguments)},aO=b._emscripten_bind_MdDbAlignedDimension_setTextPosition_1=function(){return(aO=
  849. b._emscripten_bind_MdDbAlignedDimension_setTextPosition_1=b.asm.emscripten_bind_MdDbAlignedDimension_setTextPosition_1).apply(null,arguments)},bO=b._emscripten_bind_MdDbAlignedDimension_isUsingDefaultTextPosition_0=function(){return(bO=b._emscripten_bind_MdDbAlignedDimension_isUsingDefaultTextPosition_0=b.asm.emscripten_bind_MdDbAlignedDimension_isUsingDefaultTextPosition_0).apply(null,arguments)},cO=b._emscripten_bind_MdDbAlignedDimension_useSetTextPosition_0=function(){return(cO=b._emscripten_bind_MdDbAlignedDimension_useSetTextPosition_0=
  850. b.asm.emscripten_bind_MdDbAlignedDimension_useSetTextPosition_0).apply(null,arguments)},dO=b._emscripten_bind_MdDbAlignedDimension_useDefaultTextPosition_0=function(){return(dO=b._emscripten_bind_MdDbAlignedDimension_useDefaultTextPosition_0=b.asm.emscripten_bind_MdDbAlignedDimension_useDefaultTextPosition_0).apply(null,arguments)},eO=b._emscripten_bind_MdDbAlignedDimension_elevation_0=function(){return(eO=b._emscripten_bind_MdDbAlignedDimension_elevation_0=b.asm.emscripten_bind_MdDbAlignedDimension_elevation_0).apply(null,
  851. arguments)},fO=b._emscripten_bind_MdDbAlignedDimension_setElevation_1=function(){return(fO=b._emscripten_bind_MdDbAlignedDimension_setElevation_1=b.asm.emscripten_bind_MdDbAlignedDimension_setElevation_1).apply(null,arguments)},gO=b._emscripten_bind_MdDbAlignedDimension_dimensionText_0=function(){return(gO=b._emscripten_bind_MdDbAlignedDimension_dimensionText_0=b.asm.emscripten_bind_MdDbAlignedDimension_dimensionText_0).apply(null,arguments)},hO=b._emscripten_bind_MdDbAlignedDimension_setDimensionText_1=
  852. function(){return(hO=b._emscripten_bind_MdDbAlignedDimension_setDimensionText_1=b.asm.emscripten_bind_MdDbAlignedDimension_setDimensionText_1).apply(null,arguments)},iO=b._emscripten_bind_MdDbAlignedDimension_textRotation_0=function(){return(iO=b._emscripten_bind_MdDbAlignedDimension_textRotation_0=b.asm.emscripten_bind_MdDbAlignedDimension_textRotation_0).apply(null,arguments)},jO=b._emscripten_bind_MdDbAlignedDimension_setTextRotation_1=function(){return(jO=b._emscripten_bind_MdDbAlignedDimension_setTextRotation_1=
  853. b.asm.emscripten_bind_MdDbAlignedDimension_setTextRotation_1).apply(null,arguments)},kO=b._emscripten_bind_MdDbAlignedDimension_dimensionStyle_0=function(){return(kO=b._emscripten_bind_MdDbAlignedDimension_dimensionStyle_0=b.asm.emscripten_bind_MdDbAlignedDimension_dimensionStyle_0).apply(null,arguments)},lO=b._emscripten_bind_MdDbAlignedDimension_setDimensionStyle_1=function(){return(lO=b._emscripten_bind_MdDbAlignedDimension_setDimensionStyle_1=b.asm.emscripten_bind_MdDbAlignedDimension_setDimensionStyle_1).apply(null,
  854. arguments)},mO=b._emscripten_bind_MdDbAlignedDimension_textAttachment_0=function(){return(mO=b._emscripten_bind_MdDbAlignedDimension_textAttachment_0=b.asm.emscripten_bind_MdDbAlignedDimension_textAttachment_0).apply(null,arguments)},nO=b._emscripten_bind_MdDbAlignedDimension_setTextAttachment_1=function(){return(nO=b._emscripten_bind_MdDbAlignedDimension_setTextAttachment_1=b.asm.emscripten_bind_MdDbAlignedDimension_setTextAttachment_1).apply(null,arguments)},oO=b._emscripten_bind_MdDbAlignedDimension_horizontalRotation_0=
  855. function(){return(oO=b._emscripten_bind_MdDbAlignedDimension_horizontalRotation_0=b.asm.emscripten_bind_MdDbAlignedDimension_horizontalRotation_0).apply(null,arguments)},pO=b._emscripten_bind_MdDbAlignedDimension_setHorizontalRotation_1=function(){return(pO=b._emscripten_bind_MdDbAlignedDimension_setHorizontalRotation_1=b.asm.emscripten_bind_MdDbAlignedDimension_setHorizontalRotation_1).apply(null,arguments)},qO=b._emscripten_bind_MdDbAlignedDimension_recomputeDimBlock_1=function(){return(qO=b._emscripten_bind_MdDbAlignedDimension_recomputeDimBlock_1=
  856. b.asm.emscripten_bind_MdDbAlignedDimension_recomputeDimBlock_1).apply(null,arguments)},rO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarInt_1=function(){return(rO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarInt_1=b.asm.emscripten_bind_MdDbAlignedDimension_GetDimVarInt_1).apply(null,arguments)},sO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarInt_2=function(){return(sO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarInt_2=b.asm.emscripten_bind_MdDbAlignedDimension_SetDimVarInt_2).apply(null,
  857. arguments)},tO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarDouble_1=function(){return(tO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarDouble_1=b.asm.emscripten_bind_MdDbAlignedDimension_GetDimVarDouble_1).apply(null,arguments)},uO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarDouble_2=function(){return(uO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarDouble_2=b.asm.emscripten_bind_MdDbAlignedDimension_SetDimVarDouble_2).apply(null,arguments)},vO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarString_1=
  858. function(){return(vO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarString_1=b.asm.emscripten_bind_MdDbAlignedDimension_GetDimVarString_1).apply(null,arguments)},wO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarString_2=function(){return(wO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarString_2=b.asm.emscripten_bind_MdDbAlignedDimension_SetDimVarString_2).apply(null,arguments)},xO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarObjectId_1=function(){return(xO=b._emscripten_bind_MdDbAlignedDimension_GetDimVarObjectId_1=
  859. b.asm.emscripten_bind_MdDbAlignedDimension_GetDimVarObjectId_1).apply(null,arguments)},yO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarObjectId_2=function(){return(yO=b._emscripten_bind_MdDbAlignedDimension_SetDimVarObjectId_2=b.asm.emscripten_bind_MdDbAlignedDimension_SetDimVarObjectId_2).apply(null,arguments)},zO=b._emscripten_bind_MdDbAlignedDimension_GetAllText_0=function(){return(zO=b._emscripten_bind_MdDbAlignedDimension_GetAllText_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetAllText_0).apply(null,
  860. arguments)},AO=b._emscripten_bind_MdDbAlignedDimension_explode_0=function(){return(AO=b._emscripten_bind_MdDbAlignedDimension_explode_0=b.asm.emscripten_bind_MdDbAlignedDimension_explode_0).apply(null,arguments)},BO=b._emscripten_bind_MdDbAlignedDimension_TrueColor_0=function(){return(BO=b._emscripten_bind_MdDbAlignedDimension_TrueColor_0=b.asm.emscripten_bind_MdDbAlignedDimension_TrueColor_0).apply(null,arguments)},CO=b._emscripten_bind_MdDbAlignedDimension_SetTrueColor_1=function(){return(CO=b._emscripten_bind_MdDbAlignedDimension_SetTrueColor_1=
  861. b.asm.emscripten_bind_MdDbAlignedDimension_SetTrueColor_1).apply(null,arguments)},DO=b._emscripten_bind_MdDbAlignedDimension_ColorIndex_0=function(){return(DO=b._emscripten_bind_MdDbAlignedDimension_ColorIndex_0=b.asm.emscripten_bind_MdDbAlignedDimension_ColorIndex_0).apply(null,arguments)},EO=b._emscripten_bind_MdDbAlignedDimension_SetColorIndex_1=function(){return(EO=b._emscripten_bind_MdDbAlignedDimension_SetColorIndex_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetColorIndex_1).apply(null,arguments)},
  862. FO=b._emscripten_bind_MdDbAlignedDimension_Layer_0=function(){return(FO=b._emscripten_bind_MdDbAlignedDimension_Layer_0=b.asm.emscripten_bind_MdDbAlignedDimension_Layer_0).apply(null,arguments)},GO=b._emscripten_bind_MdDbAlignedDimension_SetLayer_1=function(){return(GO=b._emscripten_bind_MdDbAlignedDimension_SetLayer_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetLayer_1).apply(null,arguments)},HO=b._emscripten_bind_MdDbAlignedDimension_LinetypeScale_0=function(){return(HO=b._emscripten_bind_MdDbAlignedDimension_LinetypeScale_0=
  863. b.asm.emscripten_bind_MdDbAlignedDimension_LinetypeScale_0).apply(null,arguments)},IO=b._emscripten_bind_MdDbAlignedDimension_SetLinetypeScale_1=function(){return(IO=b._emscripten_bind_MdDbAlignedDimension_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetLinetypeScale_1).apply(null,arguments)},JO=b._emscripten_bind_MdDbAlignedDimension_Visible_0=function(){return(JO=b._emscripten_bind_MdDbAlignedDimension_Visible_0=b.asm.emscripten_bind_MdDbAlignedDimension_Visible_0).apply(null,arguments)},
  864. KO=b._emscripten_bind_MdDbAlignedDimension_SetVisible_1=function(){return(KO=b._emscripten_bind_MdDbAlignedDimension_SetVisible_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetVisible_1).apply(null,arguments)},LO=b._emscripten_bind_MdDbAlignedDimension_Lineweight_0=function(){return(LO=b._emscripten_bind_MdDbAlignedDimension_Lineweight_0=b.asm.emscripten_bind_MdDbAlignedDimension_Lineweight_0).apply(null,arguments)},MO=b._emscripten_bind_MdDbAlignedDimension_SetLineweight_1=function(){return(MO=b._emscripten_bind_MdDbAlignedDimension_SetLineweight_1=
  865. b.asm.emscripten_bind_MdDbAlignedDimension_SetLineweight_1).apply(null,arguments)},NO=b._emscripten_bind_MdDbAlignedDimension_TextStyle_0=function(){return(NO=b._emscripten_bind_MdDbAlignedDimension_TextStyle_0=b.asm.emscripten_bind_MdDbAlignedDimension_TextStyle_0).apply(null,arguments)},OO=b._emscripten_bind_MdDbAlignedDimension_SetTextStyle_1=function(){return(OO=b._emscripten_bind_MdDbAlignedDimension_SetTextStyle_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetTextStyle_1).apply(null,arguments)},
  866. PO=b._emscripten_bind_MdDbAlignedDimension_Highlight_1=function(){return(PO=b._emscripten_bind_MdDbAlignedDimension_Highlight_1=b.asm.emscripten_bind_MdDbAlignedDimension_Highlight_1).apply(null,arguments)},QO=b._emscripten_bind_MdDbAlignedDimension_Move_2=function(){return(QO=b._emscripten_bind_MdDbAlignedDimension_Move_2=b.asm.emscripten_bind_MdDbAlignedDimension_Move_2).apply(null,arguments)},RO=b._emscripten_bind_MdDbAlignedDimension_Rotate_2=function(){return(RO=b._emscripten_bind_MdDbAlignedDimension_Rotate_2=
  867. b.asm.emscripten_bind_MdDbAlignedDimension_Rotate_2).apply(null,arguments)},SO=b._emscripten_bind_MdDbAlignedDimension_Mirror_2=function(){return(SO=b._emscripten_bind_MdDbAlignedDimension_Mirror_2=b.asm.emscripten_bind_MdDbAlignedDimension_Mirror_2).apply(null,arguments)},TO=b._emscripten_bind_MdDbAlignedDimension_ScaleEntity_2=function(){return(TO=b._emscripten_bind_MdDbAlignedDimension_ScaleEntity_2=b.asm.emscripten_bind_MdDbAlignedDimension_ScaleEntity_2).apply(null,arguments)},UO=b._emscripten_bind_MdDbAlignedDimension_TransformBy_1=
  868. function(){return(UO=b._emscripten_bind_MdDbAlignedDimension_TransformBy_1=b.asm.emscripten_bind_MdDbAlignedDimension_TransformBy_1).apply(null,arguments)},VO=b._emscripten_bind_MdDbAlignedDimension_GetBoundingBox_0=function(){return(VO=b._emscripten_bind_MdDbAlignedDimension_GetBoundingBox_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetBoundingBox_0).apply(null,arguments)},WO=b._emscripten_bind_MdDbAlignedDimension_GetXData_1=function(){return(WO=b._emscripten_bind_MdDbAlignedDimension_GetXData_1=
  869. b.asm.emscripten_bind_MdDbAlignedDimension_GetXData_1).apply(null,arguments)},XO=b._emscripten_bind_MdDbAlignedDimension_SetXData_1=function(){return(XO=b._emscripten_bind_MdDbAlignedDimension_SetXData_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetXData_1).apply(null,arguments)},YO=b._emscripten_bind_MdDbAlignedDimension_GetxDataString_2=function(){return(YO=b._emscripten_bind_MdDbAlignedDimension_GetxDataString_2=b.asm.emscripten_bind_MdDbAlignedDimension_GetxDataString_2).apply(null,arguments)},
  870. ZO=b._emscripten_bind_MdDbAlignedDimension_SetxDataString_3=function(){return(ZO=b._emscripten_bind_MdDbAlignedDimension_SetxDataString_3=b.asm.emscripten_bind_MdDbAlignedDimension_SetxDataString_3).apply(null,arguments)},$O=b._emscripten_bind_MdDbAlignedDimension_GetxDataDouble_2=function(){return($O=b._emscripten_bind_MdDbAlignedDimension_GetxDataDouble_2=b.asm.emscripten_bind_MdDbAlignedDimension_GetxDataDouble_2).apply(null,arguments)},aP=b._emscripten_bind_MdDbAlignedDimension_SetxDataDouble_3=
  871. function(){return(aP=b._emscripten_bind_MdDbAlignedDimension_SetxDataDouble_3=b.asm.emscripten_bind_MdDbAlignedDimension_SetxDataDouble_3).apply(null,arguments)},bP=b._emscripten_bind_MdDbAlignedDimension_GetxDataLong_2=function(){return(bP=b._emscripten_bind_MdDbAlignedDimension_GetxDataLong_2=b.asm.emscripten_bind_MdDbAlignedDimension_GetxDataLong_2).apply(null,arguments)},cP=b._emscripten_bind_MdDbAlignedDimension_SetxDataLong_3=function(){return(cP=b._emscripten_bind_MdDbAlignedDimension_SetxDataLong_3=
  872. b.asm.emscripten_bind_MdDbAlignedDimension_SetxDataLong_3).apply(null,arguments)},dP=b._emscripten_bind_MdDbAlignedDimension_GetxDataPoint_2=function(){return(dP=b._emscripten_bind_MdDbAlignedDimension_GetxDataPoint_2=b.asm.emscripten_bind_MdDbAlignedDimension_GetxDataPoint_2).apply(null,arguments)},eP=b._emscripten_bind_MdDbAlignedDimension_SetxDataPoint_3=function(){return(eP=b._emscripten_bind_MdDbAlignedDimension_SetxDataPoint_3=b.asm.emscripten_bind_MdDbAlignedDimension_SetxDataPoint_3).apply(null,
  873. arguments)},fP=b._emscripten_bind_MdDbAlignedDimension_DeleteXData_1=function(){return(fP=b._emscripten_bind_MdDbAlignedDimension_DeleteXData_1=b.asm.emscripten_bind_MdDbAlignedDimension_DeleteXData_1).apply(null,arguments)},gP=b._emscripten_bind_MdDbAlignedDimension_GetAllAppName_0=function(){return(gP=b._emscripten_bind_MdDbAlignedDimension_GetAllAppName_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetAllAppName_0).apply(null,arguments)},hP=b._emscripten_bind_MdDbAlignedDimension_LayerId_0=function(){return(hP=
  874. b._emscripten_bind_MdDbAlignedDimension_LayerId_0=b.asm.emscripten_bind_MdDbAlignedDimension_LayerId_0).apply(null,arguments)},iP=b._emscripten_bind_MdDbAlignedDimension_SetLayerId_1=function(){return(iP=b._emscripten_bind_MdDbAlignedDimension_SetLayerId_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetLayerId_1).apply(null,arguments)},jP=b._emscripten_bind_MdDbAlignedDimension_LinetypeId_0=function(){return(jP=b._emscripten_bind_MdDbAlignedDimension_LinetypeId_0=b.asm.emscripten_bind_MdDbAlignedDimension_LinetypeId_0).apply(null,
  875. arguments)},kP=b._emscripten_bind_MdDbAlignedDimension_SetLinetypeId_1=function(){return(kP=b._emscripten_bind_MdDbAlignedDimension_SetLinetypeId_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetLinetypeId_1).apply(null,arguments)},lP=b._emscripten_bind_MdDbAlignedDimension_Linetype_0=function(){return(lP=b._emscripten_bind_MdDbAlignedDimension_Linetype_0=b.asm.emscripten_bind_MdDbAlignedDimension_Linetype_0).apply(null,arguments)},mP=b._emscripten_bind_MdDbAlignedDimension_SetLinetype_1=function(){return(mP=
  876. b._emscripten_bind_MdDbAlignedDimension_SetLinetype_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetLinetype_1).apply(null,arguments)},nP=b._emscripten_bind_MdDbAlignedDimension_TextStyleId_0=function(){return(nP=b._emscripten_bind_MdDbAlignedDimension_TextStyleId_0=b.asm.emscripten_bind_MdDbAlignedDimension_TextStyleId_0).apply(null,arguments)},oP=b._emscripten_bind_MdDbAlignedDimension_SetTextStyleId_1=function(){return(oP=b._emscripten_bind_MdDbAlignedDimension_SetTextStyleId_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetTextStyleId_1).apply(null,
  877. arguments)},pP=b._emscripten_bind_MdDbAlignedDimension_IntersectWith_2=function(){return(pP=b._emscripten_bind_MdDbAlignedDimension_IntersectWith_2=b.asm.emscripten_bind_MdDbAlignedDimension_IntersectWith_2).apply(null,arguments)},qP=b._emscripten_bind_MdDbAlignedDimension_getArea_0=function(){return(qP=b._emscripten_bind_MdDbAlignedDimension_getArea_0=b.asm.emscripten_bind_MdDbAlignedDimension_getArea_0).apply(null,arguments)},rP=b._emscripten_bind_MdDbAlignedDimension_disableUpdateDisplay_1=function(){return(rP=
  878. b._emscripten_bind_MdDbAlignedDimension_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbAlignedDimension_disableUpdateDisplay_1).apply(null,arguments)},sP=b._emscripten_bind_MdDbAlignedDimension_isPropertiesWindowCustom_0=function(){return(sP=b._emscripten_bind_MdDbAlignedDimension_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbAlignedDimension_isPropertiesWindowCustom_0).apply(null,arguments)},tP=b._emscripten_bind_MdDbAlignedDimension_setPropertiesWindowCustom_1=function(){return(tP=b._emscripten_bind_MdDbAlignedDimension_setPropertiesWindowCustom_1=
  879. b.asm.emscripten_bind_MdDbAlignedDimension_setPropertiesWindowCustom_1).apply(null,arguments)},uP=b._emscripten_bind_MdDbAlignedDimension_updateDisplay_0=function(){return(uP=b._emscripten_bind_MdDbAlignedDimension_updateDisplay_0=b.asm.emscripten_bind_MdDbAlignedDimension_updateDisplay_0).apply(null,arguments)},vP=b._emscripten_bind_MdDbAlignedDimension_DrawOrder_0=function(){return(vP=b._emscripten_bind_MdDbAlignedDimension_DrawOrder_0=b.asm.emscripten_bind_MdDbAlignedDimension_DrawOrder_0).apply(null,
  880. arguments)},wP=b._emscripten_bind_MdDbAlignedDimension_SetDrawOrder_1=function(){return(wP=b._emscripten_bind_MdDbAlignedDimension_SetDrawOrder_1=b.asm.emscripten_bind_MdDbAlignedDimension_SetDrawOrder_1).apply(null,arguments)},xP=b._emscripten_bind_MdDbAlignedDimension_normal_0=function(){return(xP=b._emscripten_bind_MdDbAlignedDimension_normal_0=b.asm.emscripten_bind_MdDbAlignedDimension_normal_0).apply(null,arguments)},yP=b._emscripten_bind_MdDbAlignedDimension_setNormal_1=function(){return(yP=
  881. b._emscripten_bind_MdDbAlignedDimension_setNormal_1=b.asm.emscripten_bind_MdDbAlignedDimension_setNormal_1).apply(null,arguments)},zP=b._emscripten_bind_MdDbAlignedDimension_GetObjectID_0=function(){return(zP=b._emscripten_bind_MdDbAlignedDimension_GetObjectID_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetObjectID_0).apply(null,arguments)},AP=b._emscripten_bind_MdDbAlignedDimension_Erase_0=function(){return(AP=b._emscripten_bind_MdDbAlignedDimension_Erase_0=b.asm.emscripten_bind_MdDbAlignedDimension_Erase_0).apply(null,
  882. arguments)},BP=b._emscripten_bind_MdDbAlignedDimension_isErased_0=function(){return(BP=b._emscripten_bind_MdDbAlignedDimension_isErased_0=b.asm.emscripten_bind_MdDbAlignedDimension_isErased_0).apply(null,arguments)},CP=b._emscripten_bind_MdDbAlignedDimension_unErase_0=function(){return(CP=b._emscripten_bind_MdDbAlignedDimension_unErase_0=b.asm.emscripten_bind_MdDbAlignedDimension_unErase_0).apply(null,arguments)},DP=b._emscripten_bind_MdDbAlignedDimension_ConnectionTempObject_1=function(){return(DP=
  883. b._emscripten_bind_MdDbAlignedDimension_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbAlignedDimension_ConnectionTempObject_1).apply(null,arguments)},EP=b._emscripten_bind_MdDbAlignedDimension_GetExtensionDictionary_0=function(){return(EP=b._emscripten_bind_MdDbAlignedDimension_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetExtensionDictionary_0).apply(null,arguments)},FP=b._emscripten_bind_MdDbAlignedDimension_CreateExtensionDictionary_0=function(){return(FP=b._emscripten_bind_MdDbAlignedDimension_CreateExtensionDictionary_0=
  884. b.asm.emscripten_bind_MdDbAlignedDimension_CreateExtensionDictionary_0).apply(null,arguments)},GP=b._emscripten_bind_MdDbAlignedDimension_IsHaveExtensionDictionary_0=function(){return(GP=b._emscripten_bind_MdDbAlignedDimension_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbAlignedDimension_IsHaveExtensionDictionary_0).apply(null,arguments)},HP=b._emscripten_bind_MdDbAlignedDimension_Clone_0=function(){return(HP=b._emscripten_bind_MdDbAlignedDimension_Clone_0=b.asm.emscripten_bind_MdDbAlignedDimension_Clone_0).apply(null,
  885. arguments)},IP=b._emscripten_bind_MdDbAlignedDimension_GetHandle_0=function(){return(IP=b._emscripten_bind_MdDbAlignedDimension_GetHandle_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetHandle_0).apply(null,arguments)},JP=b._emscripten_bind_MdDbAlignedDimension_GetDatabase_0=function(){return(JP=b._emscripten_bind_MdDbAlignedDimension_GetDatabase_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetDatabase_0).apply(null,arguments)},KP=b._emscripten_bind_MdDbAlignedDimension_GetDatabaseIndexId_0=function(){return(KP=
  886. b._emscripten_bind_MdDbAlignedDimension_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetDatabaseIndexId_0).apply(null,arguments)},LP=b._emscripten_bind_MdDbAlignedDimension_GetOwnerID_0=function(){return(LP=b._emscripten_bind_MdDbAlignedDimension_GetOwnerID_0=b.asm.emscripten_bind_MdDbAlignedDimension_GetOwnerID_0).apply(null,arguments)},MP=b._emscripten_bind_MdDbAlignedDimension_assertObjectModification_1=function(){return(MP=b._emscripten_bind_MdDbAlignedDimension_assertObjectModification_1=
  887. b.asm.emscripten_bind_MdDbAlignedDimension_assertObjectModification_1).apply(null,arguments)},NP=b._emscripten_bind_MdDbAlignedDimension_moveGripPointsAt_4=function(){return(NP=b._emscripten_bind_MdDbAlignedDimension_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbAlignedDimension_moveGripPointsAt_4).apply(null,arguments)},OP=b._emscripten_bind_MdDbAlignedDimension_getGripPoints_0=function(){return(OP=b._emscripten_bind_MdDbAlignedDimension_getGripPoints_0=b.asm.emscripten_bind_MdDbAlignedDimension_getGripPoints_0).apply(null,
  888. arguments)},PP=b._emscripten_bind_MdDbAlignedDimension_getObjectName_0=function(){return(PP=b._emscripten_bind_MdDbAlignedDimension_getObjectName_0=b.asm.emscripten_bind_MdDbAlignedDimension_getObjectName_0).apply(null,arguments)},QP=b._emscripten_bind_MdDbAlignedDimension_getDxf0_0=function(){return(QP=b._emscripten_bind_MdDbAlignedDimension_getDxf0_0=b.asm.emscripten_bind_MdDbAlignedDimension_getDxf0_0).apply(null,arguments)},RP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityTypeName_0=
  889. function(){return(RP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbAlignedDimension_getCustomEntityTypeName_0).apply(null,arguments)},SP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityid_0=function(){return(SP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityid_0=b.asm.emscripten_bind_MdDbAlignedDimension_getCustomEntityid_0).apply(null,arguments)},TP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityTempid_0=function(){return(TP=b._emscripten_bind_MdDbAlignedDimension_getCustomEntityTempid_0=
  890. b.asm.emscripten_bind_MdDbAlignedDimension_getCustomEntityTempid_0).apply(null,arguments)},UP=b._emscripten_bind_MdDbAlignedDimension_setCustomEntityTempid_1=function(){return(UP=b._emscripten_bind_MdDbAlignedDimension_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbAlignedDimension_setCustomEntityTempid_1).apply(null,arguments)},VP=b._emscripten_bind_MdDbAlignedDimension_getJson_0=function(){return(VP=b._emscripten_bind_MdDbAlignedDimension_getJson_0=b.asm.emscripten_bind_MdDbAlignedDimension_getJson_0).apply(null,
  891. arguments)},WP=b._emscripten_bind_MdDbAlignedDimension_setJson_1=function(){return(WP=b._emscripten_bind_MdDbAlignedDimension_setJson_1=b.asm.emscripten_bind_MdDbAlignedDimension_setJson_1).apply(null,arguments)},XP=b._emscripten_bind_MdDbAlignedDimension_isKindOf_1=function(){return(XP=b._emscripten_bind_MdDbAlignedDimension_isKindOf_1=b.asm.emscripten_bind_MdDbAlignedDimension_isKindOf_1).apply(null,arguments)},YP=b._emscripten_bind_MdDbAlignedDimension_isNull_0=function(){return(YP=b._emscripten_bind_MdDbAlignedDimension_isNull_0=
  892. b.asm.emscripten_bind_MdDbAlignedDimension_isNull_0).apply(null,arguments)},ZP=b._emscripten_bind_MdDbAlignedDimension___destroy___0=function(){return(ZP=b._emscripten_bind_MdDbAlignedDimension___destroy___0=b.asm.emscripten_bind_MdDbAlignedDimension___destroy___0).apply(null,arguments)},$P=b._emscripten_bind_MdDbRotatedDimension_MdDbRotatedDimension_0=function(){return($P=b._emscripten_bind_MdDbRotatedDimension_MdDbRotatedDimension_0=b.asm.emscripten_bind_MdDbRotatedDimension_MdDbRotatedDimension_0).apply(null,
  893. arguments)},aQ=b._emscripten_bind_MdDbRotatedDimension_xLine1Point_0=function(){return(aQ=b._emscripten_bind_MdDbRotatedDimension_xLine1Point_0=b.asm.emscripten_bind_MdDbRotatedDimension_xLine1Point_0).apply(null,arguments)},bQ=b._emscripten_bind_MdDbRotatedDimension_setXLine1Point_1=function(){return(bQ=b._emscripten_bind_MdDbRotatedDimension_setXLine1Point_1=b.asm.emscripten_bind_MdDbRotatedDimension_setXLine1Point_1).apply(null,arguments)},cQ=b._emscripten_bind_MdDbRotatedDimension_xLine2Point_0=
  894. function(){return(cQ=b._emscripten_bind_MdDbRotatedDimension_xLine2Point_0=b.asm.emscripten_bind_MdDbRotatedDimension_xLine2Point_0).apply(null,arguments)},dQ=b._emscripten_bind_MdDbRotatedDimension_setXLine2Point_1=function(){return(dQ=b._emscripten_bind_MdDbRotatedDimension_setXLine2Point_1=b.asm.emscripten_bind_MdDbRotatedDimension_setXLine2Point_1).apply(null,arguments)},eQ=b._emscripten_bind_MdDbRotatedDimension_dimLinePoint_0=function(){return(eQ=b._emscripten_bind_MdDbRotatedDimension_dimLinePoint_0=
  895. b.asm.emscripten_bind_MdDbRotatedDimension_dimLinePoint_0).apply(null,arguments)},fQ=b._emscripten_bind_MdDbRotatedDimension_setDimLinePoint_1=function(){return(fQ=b._emscripten_bind_MdDbRotatedDimension_setDimLinePoint_1=b.asm.emscripten_bind_MdDbRotatedDimension_setDimLinePoint_1).apply(null,arguments)},gQ=b._emscripten_bind_MdDbRotatedDimension_rotation_0=function(){return(gQ=b._emscripten_bind_MdDbRotatedDimension_rotation_0=b.asm.emscripten_bind_MdDbRotatedDimension_rotation_0).apply(null,arguments)},
  896. hQ=b._emscripten_bind_MdDbRotatedDimension_setRotation_1=function(){return(hQ=b._emscripten_bind_MdDbRotatedDimension_setRotation_1=b.asm.emscripten_bind_MdDbRotatedDimension_setRotation_1).apply(null,arguments)},iQ=b._emscripten_bind_MdDbRotatedDimension_oblique_0=function(){return(iQ=b._emscripten_bind_MdDbRotatedDimension_oblique_0=b.asm.emscripten_bind_MdDbRotatedDimension_oblique_0).apply(null,arguments)},jQ=b._emscripten_bind_MdDbRotatedDimension_setOblique_1=function(){return(jQ=b._emscripten_bind_MdDbRotatedDimension_setOblique_1=
  897. b.asm.emscripten_bind_MdDbRotatedDimension_setOblique_1).apply(null,arguments)},kQ=b._emscripten_bind_MdDbRotatedDimension_textPosition_0=function(){return(kQ=b._emscripten_bind_MdDbRotatedDimension_textPosition_0=b.asm.emscripten_bind_MdDbRotatedDimension_textPosition_0).apply(null,arguments)},lQ=b._emscripten_bind_MdDbRotatedDimension_setTextPosition_1=function(){return(lQ=b._emscripten_bind_MdDbRotatedDimension_setTextPosition_1=b.asm.emscripten_bind_MdDbRotatedDimension_setTextPosition_1).apply(null,
  898. arguments)},mQ=b._emscripten_bind_MdDbRotatedDimension_isUsingDefaultTextPosition_0=function(){return(mQ=b._emscripten_bind_MdDbRotatedDimension_isUsingDefaultTextPosition_0=b.asm.emscripten_bind_MdDbRotatedDimension_isUsingDefaultTextPosition_0).apply(null,arguments)},nQ=b._emscripten_bind_MdDbRotatedDimension_useSetTextPosition_0=function(){return(nQ=b._emscripten_bind_MdDbRotatedDimension_useSetTextPosition_0=b.asm.emscripten_bind_MdDbRotatedDimension_useSetTextPosition_0).apply(null,arguments)},
  899. oQ=b._emscripten_bind_MdDbRotatedDimension_useDefaultTextPosition_0=function(){return(oQ=b._emscripten_bind_MdDbRotatedDimension_useDefaultTextPosition_0=b.asm.emscripten_bind_MdDbRotatedDimension_useDefaultTextPosition_0).apply(null,arguments)},pQ=b._emscripten_bind_MdDbRotatedDimension_elevation_0=function(){return(pQ=b._emscripten_bind_MdDbRotatedDimension_elevation_0=b.asm.emscripten_bind_MdDbRotatedDimension_elevation_0).apply(null,arguments)},qQ=b._emscripten_bind_MdDbRotatedDimension_setElevation_1=
  900. function(){return(qQ=b._emscripten_bind_MdDbRotatedDimension_setElevation_1=b.asm.emscripten_bind_MdDbRotatedDimension_setElevation_1).apply(null,arguments)},rQ=b._emscripten_bind_MdDbRotatedDimension_dimensionText_0=function(){return(rQ=b._emscripten_bind_MdDbRotatedDimension_dimensionText_0=b.asm.emscripten_bind_MdDbRotatedDimension_dimensionText_0).apply(null,arguments)},sQ=b._emscripten_bind_MdDbRotatedDimension_setDimensionText_1=function(){return(sQ=b._emscripten_bind_MdDbRotatedDimension_setDimensionText_1=
  901. b.asm.emscripten_bind_MdDbRotatedDimension_setDimensionText_1).apply(null,arguments)},tQ=b._emscripten_bind_MdDbRotatedDimension_textRotation_0=function(){return(tQ=b._emscripten_bind_MdDbRotatedDimension_textRotation_0=b.asm.emscripten_bind_MdDbRotatedDimension_textRotation_0).apply(null,arguments)},uQ=b._emscripten_bind_MdDbRotatedDimension_setTextRotation_1=function(){return(uQ=b._emscripten_bind_MdDbRotatedDimension_setTextRotation_1=b.asm.emscripten_bind_MdDbRotatedDimension_setTextRotation_1).apply(null,
  902. arguments)},vQ=b._emscripten_bind_MdDbRotatedDimension_dimensionStyle_0=function(){return(vQ=b._emscripten_bind_MdDbRotatedDimension_dimensionStyle_0=b.asm.emscripten_bind_MdDbRotatedDimension_dimensionStyle_0).apply(null,arguments)},wQ=b._emscripten_bind_MdDbRotatedDimension_setDimensionStyle_1=function(){return(wQ=b._emscripten_bind_MdDbRotatedDimension_setDimensionStyle_1=b.asm.emscripten_bind_MdDbRotatedDimension_setDimensionStyle_1).apply(null,arguments)},xQ=b._emscripten_bind_MdDbRotatedDimension_textAttachment_0=
  903. function(){return(xQ=b._emscripten_bind_MdDbRotatedDimension_textAttachment_0=b.asm.emscripten_bind_MdDbRotatedDimension_textAttachment_0).apply(null,arguments)},yQ=b._emscripten_bind_MdDbRotatedDimension_setTextAttachment_1=function(){return(yQ=b._emscripten_bind_MdDbRotatedDimension_setTextAttachment_1=b.asm.emscripten_bind_MdDbRotatedDimension_setTextAttachment_1).apply(null,arguments)},zQ=b._emscripten_bind_MdDbRotatedDimension_horizontalRotation_0=function(){return(zQ=b._emscripten_bind_MdDbRotatedDimension_horizontalRotation_0=
  904. b.asm.emscripten_bind_MdDbRotatedDimension_horizontalRotation_0).apply(null,arguments)},AQ=b._emscripten_bind_MdDbRotatedDimension_setHorizontalRotation_1=function(){return(AQ=b._emscripten_bind_MdDbRotatedDimension_setHorizontalRotation_1=b.asm.emscripten_bind_MdDbRotatedDimension_setHorizontalRotation_1).apply(null,arguments)},BQ=b._emscripten_bind_MdDbRotatedDimension_recomputeDimBlock_1=function(){return(BQ=b._emscripten_bind_MdDbRotatedDimension_recomputeDimBlock_1=b.asm.emscripten_bind_MdDbRotatedDimension_recomputeDimBlock_1).apply(null,
  905. arguments)},CQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarInt_1=function(){return(CQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarInt_1=b.asm.emscripten_bind_MdDbRotatedDimension_GetDimVarInt_1).apply(null,arguments)},DQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarInt_2=function(){return(DQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarInt_2=b.asm.emscripten_bind_MdDbRotatedDimension_SetDimVarInt_2).apply(null,arguments)},EQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarDouble_1=
  906. function(){return(EQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarDouble_1=b.asm.emscripten_bind_MdDbRotatedDimension_GetDimVarDouble_1).apply(null,arguments)},FQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarDouble_2=function(){return(FQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarDouble_2=b.asm.emscripten_bind_MdDbRotatedDimension_SetDimVarDouble_2).apply(null,arguments)},GQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarString_1=function(){return(GQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarString_1=
  907. b.asm.emscripten_bind_MdDbRotatedDimension_GetDimVarString_1).apply(null,arguments)},HQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarString_2=function(){return(HQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarString_2=b.asm.emscripten_bind_MdDbRotatedDimension_SetDimVarString_2).apply(null,arguments)},IQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarObjectId_1=function(){return(IQ=b._emscripten_bind_MdDbRotatedDimension_GetDimVarObjectId_1=b.asm.emscripten_bind_MdDbRotatedDimension_GetDimVarObjectId_1).apply(null,
  908. arguments)},JQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarObjectId_2=function(){return(JQ=b._emscripten_bind_MdDbRotatedDimension_SetDimVarObjectId_2=b.asm.emscripten_bind_MdDbRotatedDimension_SetDimVarObjectId_2).apply(null,arguments)},KQ=b._emscripten_bind_MdDbRotatedDimension_GetAllText_0=function(){return(KQ=b._emscripten_bind_MdDbRotatedDimension_GetAllText_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetAllText_0).apply(null,arguments)},LQ=b._emscripten_bind_MdDbRotatedDimension_explode_0=
  909. function(){return(LQ=b._emscripten_bind_MdDbRotatedDimension_explode_0=b.asm.emscripten_bind_MdDbRotatedDimension_explode_0).apply(null,arguments)},MQ=b._emscripten_bind_MdDbRotatedDimension_TrueColor_0=function(){return(MQ=b._emscripten_bind_MdDbRotatedDimension_TrueColor_0=b.asm.emscripten_bind_MdDbRotatedDimension_TrueColor_0).apply(null,arguments)},NQ=b._emscripten_bind_MdDbRotatedDimension_SetTrueColor_1=function(){return(NQ=b._emscripten_bind_MdDbRotatedDimension_SetTrueColor_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetTrueColor_1).apply(null,
  910. arguments)},OQ=b._emscripten_bind_MdDbRotatedDimension_ColorIndex_0=function(){return(OQ=b._emscripten_bind_MdDbRotatedDimension_ColorIndex_0=b.asm.emscripten_bind_MdDbRotatedDimension_ColorIndex_0).apply(null,arguments)},PQ=b._emscripten_bind_MdDbRotatedDimension_SetColorIndex_1=function(){return(PQ=b._emscripten_bind_MdDbRotatedDimension_SetColorIndex_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetColorIndex_1).apply(null,arguments)},QQ=b._emscripten_bind_MdDbRotatedDimension_Layer_0=function(){return(QQ=
  911. b._emscripten_bind_MdDbRotatedDimension_Layer_0=b.asm.emscripten_bind_MdDbRotatedDimension_Layer_0).apply(null,arguments)},RQ=b._emscripten_bind_MdDbRotatedDimension_SetLayer_1=function(){return(RQ=b._emscripten_bind_MdDbRotatedDimension_SetLayer_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLayer_1).apply(null,arguments)},SQ=b._emscripten_bind_MdDbRotatedDimension_LinetypeScale_0=function(){return(SQ=b._emscripten_bind_MdDbRotatedDimension_LinetypeScale_0=b.asm.emscripten_bind_MdDbRotatedDimension_LinetypeScale_0).apply(null,
  912. arguments)},TQ=b._emscripten_bind_MdDbRotatedDimension_SetLinetypeScale_1=function(){return(TQ=b._emscripten_bind_MdDbRotatedDimension_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLinetypeScale_1).apply(null,arguments)},UQ=b._emscripten_bind_MdDbRotatedDimension_Visible_0=function(){return(UQ=b._emscripten_bind_MdDbRotatedDimension_Visible_0=b.asm.emscripten_bind_MdDbRotatedDimension_Visible_0).apply(null,arguments)},VQ=b._emscripten_bind_MdDbRotatedDimension_SetVisible_1=function(){return(VQ=
  913. b._emscripten_bind_MdDbRotatedDimension_SetVisible_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetVisible_1).apply(null,arguments)},WQ=b._emscripten_bind_MdDbRotatedDimension_Lineweight_0=function(){return(WQ=b._emscripten_bind_MdDbRotatedDimension_Lineweight_0=b.asm.emscripten_bind_MdDbRotatedDimension_Lineweight_0).apply(null,arguments)},XQ=b._emscripten_bind_MdDbRotatedDimension_SetLineweight_1=function(){return(XQ=b._emscripten_bind_MdDbRotatedDimension_SetLineweight_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLineweight_1).apply(null,
  914. arguments)},YQ=b._emscripten_bind_MdDbRotatedDimension_TextStyle_0=function(){return(YQ=b._emscripten_bind_MdDbRotatedDimension_TextStyle_0=b.asm.emscripten_bind_MdDbRotatedDimension_TextStyle_0).apply(null,arguments)},ZQ=b._emscripten_bind_MdDbRotatedDimension_SetTextStyle_1=function(){return(ZQ=b._emscripten_bind_MdDbRotatedDimension_SetTextStyle_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetTextStyle_1).apply(null,arguments)},$Q=b._emscripten_bind_MdDbRotatedDimension_Highlight_1=function(){return($Q=
  915. b._emscripten_bind_MdDbRotatedDimension_Highlight_1=b.asm.emscripten_bind_MdDbRotatedDimension_Highlight_1).apply(null,arguments)},aR=b._emscripten_bind_MdDbRotatedDimension_Move_2=function(){return(aR=b._emscripten_bind_MdDbRotatedDimension_Move_2=b.asm.emscripten_bind_MdDbRotatedDimension_Move_2).apply(null,arguments)},bR=b._emscripten_bind_MdDbRotatedDimension_Rotate_2=function(){return(bR=b._emscripten_bind_MdDbRotatedDimension_Rotate_2=b.asm.emscripten_bind_MdDbRotatedDimension_Rotate_2).apply(null,
  916. arguments)},cR=b._emscripten_bind_MdDbRotatedDimension_Mirror_2=function(){return(cR=b._emscripten_bind_MdDbRotatedDimension_Mirror_2=b.asm.emscripten_bind_MdDbRotatedDimension_Mirror_2).apply(null,arguments)},dR=b._emscripten_bind_MdDbRotatedDimension_ScaleEntity_2=function(){return(dR=b._emscripten_bind_MdDbRotatedDimension_ScaleEntity_2=b.asm.emscripten_bind_MdDbRotatedDimension_ScaleEntity_2).apply(null,arguments)},eR=b._emscripten_bind_MdDbRotatedDimension_TransformBy_1=function(){return(eR=
  917. b._emscripten_bind_MdDbRotatedDimension_TransformBy_1=b.asm.emscripten_bind_MdDbRotatedDimension_TransformBy_1).apply(null,arguments)},fR=b._emscripten_bind_MdDbRotatedDimension_GetBoundingBox_0=function(){return(fR=b._emscripten_bind_MdDbRotatedDimension_GetBoundingBox_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetBoundingBox_0).apply(null,arguments)},gR=b._emscripten_bind_MdDbRotatedDimension_GetXData_1=function(){return(gR=b._emscripten_bind_MdDbRotatedDimension_GetXData_1=b.asm.emscripten_bind_MdDbRotatedDimension_GetXData_1).apply(null,
  918. arguments)},hR=b._emscripten_bind_MdDbRotatedDimension_SetXData_1=function(){return(hR=b._emscripten_bind_MdDbRotatedDimension_SetXData_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetXData_1).apply(null,arguments)},iR=b._emscripten_bind_MdDbRotatedDimension_GetxDataString_2=function(){return(iR=b._emscripten_bind_MdDbRotatedDimension_GetxDataString_2=b.asm.emscripten_bind_MdDbRotatedDimension_GetxDataString_2).apply(null,arguments)},jR=b._emscripten_bind_MdDbRotatedDimension_SetxDataString_3=function(){return(jR=
  919. b._emscripten_bind_MdDbRotatedDimension_SetxDataString_3=b.asm.emscripten_bind_MdDbRotatedDimension_SetxDataString_3).apply(null,arguments)},kR=b._emscripten_bind_MdDbRotatedDimension_GetxDataDouble_2=function(){return(kR=b._emscripten_bind_MdDbRotatedDimension_GetxDataDouble_2=b.asm.emscripten_bind_MdDbRotatedDimension_GetxDataDouble_2).apply(null,arguments)},lR=b._emscripten_bind_MdDbRotatedDimension_SetxDataDouble_3=function(){return(lR=b._emscripten_bind_MdDbRotatedDimension_SetxDataDouble_3=
  920. b.asm.emscripten_bind_MdDbRotatedDimension_SetxDataDouble_3).apply(null,arguments)},mR=b._emscripten_bind_MdDbRotatedDimension_GetxDataLong_2=function(){return(mR=b._emscripten_bind_MdDbRotatedDimension_GetxDataLong_2=b.asm.emscripten_bind_MdDbRotatedDimension_GetxDataLong_2).apply(null,arguments)},nR=b._emscripten_bind_MdDbRotatedDimension_SetxDataLong_3=function(){return(nR=b._emscripten_bind_MdDbRotatedDimension_SetxDataLong_3=b.asm.emscripten_bind_MdDbRotatedDimension_SetxDataLong_3).apply(null,
  921. arguments)},oR=b._emscripten_bind_MdDbRotatedDimension_GetxDataPoint_2=function(){return(oR=b._emscripten_bind_MdDbRotatedDimension_GetxDataPoint_2=b.asm.emscripten_bind_MdDbRotatedDimension_GetxDataPoint_2).apply(null,arguments)},pR=b._emscripten_bind_MdDbRotatedDimension_SetxDataPoint_3=function(){return(pR=b._emscripten_bind_MdDbRotatedDimension_SetxDataPoint_3=b.asm.emscripten_bind_MdDbRotatedDimension_SetxDataPoint_3).apply(null,arguments)},qR=b._emscripten_bind_MdDbRotatedDimension_DeleteXData_1=
  922. function(){return(qR=b._emscripten_bind_MdDbRotatedDimension_DeleteXData_1=b.asm.emscripten_bind_MdDbRotatedDimension_DeleteXData_1).apply(null,arguments)},rR=b._emscripten_bind_MdDbRotatedDimension_GetAllAppName_0=function(){return(rR=b._emscripten_bind_MdDbRotatedDimension_GetAllAppName_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetAllAppName_0).apply(null,arguments)},sR=b._emscripten_bind_MdDbRotatedDimension_LayerId_0=function(){return(sR=b._emscripten_bind_MdDbRotatedDimension_LayerId_0=b.asm.emscripten_bind_MdDbRotatedDimension_LayerId_0).apply(null,
  923. arguments)},tR=b._emscripten_bind_MdDbRotatedDimension_SetLayerId_1=function(){return(tR=b._emscripten_bind_MdDbRotatedDimension_SetLayerId_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLayerId_1).apply(null,arguments)},uR=b._emscripten_bind_MdDbRotatedDimension_LinetypeId_0=function(){return(uR=b._emscripten_bind_MdDbRotatedDimension_LinetypeId_0=b.asm.emscripten_bind_MdDbRotatedDimension_LinetypeId_0).apply(null,arguments)},vR=b._emscripten_bind_MdDbRotatedDimension_SetLinetypeId_1=function(){return(vR=
  924. b._emscripten_bind_MdDbRotatedDimension_SetLinetypeId_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLinetypeId_1).apply(null,arguments)},wR=b._emscripten_bind_MdDbRotatedDimension_Linetype_0=function(){return(wR=b._emscripten_bind_MdDbRotatedDimension_Linetype_0=b.asm.emscripten_bind_MdDbRotatedDimension_Linetype_0).apply(null,arguments)},xR=b._emscripten_bind_MdDbRotatedDimension_SetLinetype_1=function(){return(xR=b._emscripten_bind_MdDbRotatedDimension_SetLinetype_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetLinetype_1).apply(null,
  925. arguments)},yR=b._emscripten_bind_MdDbRotatedDimension_TextStyleId_0=function(){return(yR=b._emscripten_bind_MdDbRotatedDimension_TextStyleId_0=b.asm.emscripten_bind_MdDbRotatedDimension_TextStyleId_0).apply(null,arguments)},zR=b._emscripten_bind_MdDbRotatedDimension_SetTextStyleId_1=function(){return(zR=b._emscripten_bind_MdDbRotatedDimension_SetTextStyleId_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetTextStyleId_1).apply(null,arguments)},AR=b._emscripten_bind_MdDbRotatedDimension_IntersectWith_2=
  926. function(){return(AR=b._emscripten_bind_MdDbRotatedDimension_IntersectWith_2=b.asm.emscripten_bind_MdDbRotatedDimension_IntersectWith_2).apply(null,arguments)},BR=b._emscripten_bind_MdDbRotatedDimension_getArea_0=function(){return(BR=b._emscripten_bind_MdDbRotatedDimension_getArea_0=b.asm.emscripten_bind_MdDbRotatedDimension_getArea_0).apply(null,arguments)},CR=b._emscripten_bind_MdDbRotatedDimension_disableUpdateDisplay_1=function(){return(CR=b._emscripten_bind_MdDbRotatedDimension_disableUpdateDisplay_1=
  927. b.asm.emscripten_bind_MdDbRotatedDimension_disableUpdateDisplay_1).apply(null,arguments)},DR=b._emscripten_bind_MdDbRotatedDimension_isPropertiesWindowCustom_0=function(){return(DR=b._emscripten_bind_MdDbRotatedDimension_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbRotatedDimension_isPropertiesWindowCustom_0).apply(null,arguments)},ER=b._emscripten_bind_MdDbRotatedDimension_setPropertiesWindowCustom_1=function(){return(ER=b._emscripten_bind_MdDbRotatedDimension_setPropertiesWindowCustom_1=
  928. b.asm.emscripten_bind_MdDbRotatedDimension_setPropertiesWindowCustom_1).apply(null,arguments)},FR=b._emscripten_bind_MdDbRotatedDimension_updateDisplay_0=function(){return(FR=b._emscripten_bind_MdDbRotatedDimension_updateDisplay_0=b.asm.emscripten_bind_MdDbRotatedDimension_updateDisplay_0).apply(null,arguments)},GR=b._emscripten_bind_MdDbRotatedDimension_DrawOrder_0=function(){return(GR=b._emscripten_bind_MdDbRotatedDimension_DrawOrder_0=b.asm.emscripten_bind_MdDbRotatedDimension_DrawOrder_0).apply(null,
  929. arguments)},HR=b._emscripten_bind_MdDbRotatedDimension_SetDrawOrder_1=function(){return(HR=b._emscripten_bind_MdDbRotatedDimension_SetDrawOrder_1=b.asm.emscripten_bind_MdDbRotatedDimension_SetDrawOrder_1).apply(null,arguments)},IR=b._emscripten_bind_MdDbRotatedDimension_normal_0=function(){return(IR=b._emscripten_bind_MdDbRotatedDimension_normal_0=b.asm.emscripten_bind_MdDbRotatedDimension_normal_0).apply(null,arguments)},JR=b._emscripten_bind_MdDbRotatedDimension_setNormal_1=function(){return(JR=
  930. b._emscripten_bind_MdDbRotatedDimension_setNormal_1=b.asm.emscripten_bind_MdDbRotatedDimension_setNormal_1).apply(null,arguments)},KR=b._emscripten_bind_MdDbRotatedDimension_GetObjectID_0=function(){return(KR=b._emscripten_bind_MdDbRotatedDimension_GetObjectID_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetObjectID_0).apply(null,arguments)},LR=b._emscripten_bind_MdDbRotatedDimension_Erase_0=function(){return(LR=b._emscripten_bind_MdDbRotatedDimension_Erase_0=b.asm.emscripten_bind_MdDbRotatedDimension_Erase_0).apply(null,
  931. arguments)},MR=b._emscripten_bind_MdDbRotatedDimension_isErased_0=function(){return(MR=b._emscripten_bind_MdDbRotatedDimension_isErased_0=b.asm.emscripten_bind_MdDbRotatedDimension_isErased_0).apply(null,arguments)},NR=b._emscripten_bind_MdDbRotatedDimension_unErase_0=function(){return(NR=b._emscripten_bind_MdDbRotatedDimension_unErase_0=b.asm.emscripten_bind_MdDbRotatedDimension_unErase_0).apply(null,arguments)},OR=b._emscripten_bind_MdDbRotatedDimension_ConnectionTempObject_1=function(){return(OR=
  932. b._emscripten_bind_MdDbRotatedDimension_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbRotatedDimension_ConnectionTempObject_1).apply(null,arguments)},PR=b._emscripten_bind_MdDbRotatedDimension_GetExtensionDictionary_0=function(){return(PR=b._emscripten_bind_MdDbRotatedDimension_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetExtensionDictionary_0).apply(null,arguments)},QR=b._emscripten_bind_MdDbRotatedDimension_CreateExtensionDictionary_0=function(){return(QR=b._emscripten_bind_MdDbRotatedDimension_CreateExtensionDictionary_0=
  933. b.asm.emscripten_bind_MdDbRotatedDimension_CreateExtensionDictionary_0).apply(null,arguments)},RR=b._emscripten_bind_MdDbRotatedDimension_IsHaveExtensionDictionary_0=function(){return(RR=b._emscripten_bind_MdDbRotatedDimension_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbRotatedDimension_IsHaveExtensionDictionary_0).apply(null,arguments)},SR=b._emscripten_bind_MdDbRotatedDimension_Clone_0=function(){return(SR=b._emscripten_bind_MdDbRotatedDimension_Clone_0=b.asm.emscripten_bind_MdDbRotatedDimension_Clone_0).apply(null,
  934. arguments)},TR=b._emscripten_bind_MdDbRotatedDimension_GetHandle_0=function(){return(TR=b._emscripten_bind_MdDbRotatedDimension_GetHandle_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetHandle_0).apply(null,arguments)},UR=b._emscripten_bind_MdDbRotatedDimension_GetDatabase_0=function(){return(UR=b._emscripten_bind_MdDbRotatedDimension_GetDatabase_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetDatabase_0).apply(null,arguments)},VR=b._emscripten_bind_MdDbRotatedDimension_GetDatabaseIndexId_0=function(){return(VR=
  935. b._emscripten_bind_MdDbRotatedDimension_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetDatabaseIndexId_0).apply(null,arguments)},WR=b._emscripten_bind_MdDbRotatedDimension_GetOwnerID_0=function(){return(WR=b._emscripten_bind_MdDbRotatedDimension_GetOwnerID_0=b.asm.emscripten_bind_MdDbRotatedDimension_GetOwnerID_0).apply(null,arguments)},YR=b._emscripten_bind_MdDbRotatedDimension_assertObjectModification_1=function(){return(YR=b._emscripten_bind_MdDbRotatedDimension_assertObjectModification_1=
  936. b.asm.emscripten_bind_MdDbRotatedDimension_assertObjectModification_1).apply(null,arguments)},ZR=b._emscripten_bind_MdDbRotatedDimension_moveGripPointsAt_4=function(){return(ZR=b._emscripten_bind_MdDbRotatedDimension_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbRotatedDimension_moveGripPointsAt_4).apply(null,arguments)},$R=b._emscripten_bind_MdDbRotatedDimension_getGripPoints_0=function(){return($R=b._emscripten_bind_MdDbRotatedDimension_getGripPoints_0=b.asm.emscripten_bind_MdDbRotatedDimension_getGripPoints_0).apply(null,
  937. arguments)},aS=b._emscripten_bind_MdDbRotatedDimension_getObjectName_0=function(){return(aS=b._emscripten_bind_MdDbRotatedDimension_getObjectName_0=b.asm.emscripten_bind_MdDbRotatedDimension_getObjectName_0).apply(null,arguments)},bS=b._emscripten_bind_MdDbRotatedDimension_getDxf0_0=function(){return(bS=b._emscripten_bind_MdDbRotatedDimension_getDxf0_0=b.asm.emscripten_bind_MdDbRotatedDimension_getDxf0_0).apply(null,arguments)},cS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityTypeName_0=
  938. function(){return(cS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbRotatedDimension_getCustomEntityTypeName_0).apply(null,arguments)},dS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityid_0=function(){return(dS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityid_0=b.asm.emscripten_bind_MdDbRotatedDimension_getCustomEntityid_0).apply(null,arguments)},eS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityTempid_0=function(){return(eS=b._emscripten_bind_MdDbRotatedDimension_getCustomEntityTempid_0=
  939. b.asm.emscripten_bind_MdDbRotatedDimension_getCustomEntityTempid_0).apply(null,arguments)},fS=b._emscripten_bind_MdDbRotatedDimension_setCustomEntityTempid_1=function(){return(fS=b._emscripten_bind_MdDbRotatedDimension_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbRotatedDimension_setCustomEntityTempid_1).apply(null,arguments)},gS=b._emscripten_bind_MdDbRotatedDimension_getJson_0=function(){return(gS=b._emscripten_bind_MdDbRotatedDimension_getJson_0=b.asm.emscripten_bind_MdDbRotatedDimension_getJson_0).apply(null,
  940. arguments)},hS=b._emscripten_bind_MdDbRotatedDimension_setJson_1=function(){return(hS=b._emscripten_bind_MdDbRotatedDimension_setJson_1=b.asm.emscripten_bind_MdDbRotatedDimension_setJson_1).apply(null,arguments)},iS=b._emscripten_bind_MdDbRotatedDimension_isKindOf_1=function(){return(iS=b._emscripten_bind_MdDbRotatedDimension_isKindOf_1=b.asm.emscripten_bind_MdDbRotatedDimension_isKindOf_1).apply(null,arguments)},jS=b._emscripten_bind_MdDbRotatedDimension_isNull_0=function(){return(jS=b._emscripten_bind_MdDbRotatedDimension_isNull_0=
  941. b.asm.emscripten_bind_MdDbRotatedDimension_isNull_0).apply(null,arguments)},kS=b._emscripten_bind_MdDbRotatedDimension___destroy___0=function(){return(kS=b._emscripten_bind_MdDbRotatedDimension___destroy___0=b.asm.emscripten_bind_MdDbRotatedDimension___destroy___0).apply(null,arguments)},lS=b._emscripten_bind_MdDb2LineAngularDimension_MdDb2LineAngularDimension_0=function(){return(lS=b._emscripten_bind_MdDb2LineAngularDimension_MdDb2LineAngularDimension_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_MdDb2LineAngularDimension_0).apply(null,
  942. arguments)},mS=b._emscripten_bind_MdDb2LineAngularDimension_arcPoint_0=function(){return(mS=b._emscripten_bind_MdDb2LineAngularDimension_arcPoint_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_arcPoint_0).apply(null,arguments)},nS=b._emscripten_bind_MdDb2LineAngularDimension_setArcPoint_1=function(){return(nS=b._emscripten_bind_MdDb2LineAngularDimension_setArcPoint_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setArcPoint_1).apply(null,arguments)},oS=b._emscripten_bind_MdDb2LineAngularDimension_xLine1Start_0=
  943. function(){return(oS=b._emscripten_bind_MdDb2LineAngularDimension_xLine1Start_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_xLine1Start_0).apply(null,arguments)},pS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine1Start_1=function(){return(pS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine1Start_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setXLine1Start_1).apply(null,arguments)},qS=b._emscripten_bind_MdDb2LineAngularDimension_xLine1End_0=function(){return(qS=b._emscripten_bind_MdDb2LineAngularDimension_xLine1End_0=
  944. b.asm.emscripten_bind_MdDb2LineAngularDimension_xLine1End_0).apply(null,arguments)},rS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine1End_1=function(){return(rS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine1End_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setXLine1End_1).apply(null,arguments)},sS=b._emscripten_bind_MdDb2LineAngularDimension_xLine2Start_0=function(){return(sS=b._emscripten_bind_MdDb2LineAngularDimension_xLine2Start_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_xLine2Start_0).apply(null,
  945. arguments)},tS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine2Start_1=function(){return(tS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine2Start_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setXLine2Start_1).apply(null,arguments)},uS=b._emscripten_bind_MdDb2LineAngularDimension_xLine2End_0=function(){return(uS=b._emscripten_bind_MdDb2LineAngularDimension_xLine2End_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_xLine2End_0).apply(null,arguments)},vS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine2End_1=
  946. function(){return(vS=b._emscripten_bind_MdDb2LineAngularDimension_setXLine2End_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setXLine2End_1).apply(null,arguments)},wS=b._emscripten_bind_MdDb2LineAngularDimension_compute_8=function(){return(wS=b._emscripten_bind_MdDb2LineAngularDimension_compute_8=b.asm.emscripten_bind_MdDb2LineAngularDimension_compute_8).apply(null,arguments)},xS=b._emscripten_bind_MdDb2LineAngularDimension_textPosition_0=function(){return(xS=b._emscripten_bind_MdDb2LineAngularDimension_textPosition_0=
  947. b.asm.emscripten_bind_MdDb2LineAngularDimension_textPosition_0).apply(null,arguments)},yS=b._emscripten_bind_MdDb2LineAngularDimension_setTextPosition_1=function(){return(yS=b._emscripten_bind_MdDb2LineAngularDimension_setTextPosition_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setTextPosition_1).apply(null,arguments)},zS=b._emscripten_bind_MdDb2LineAngularDimension_isUsingDefaultTextPosition_0=function(){return(zS=b._emscripten_bind_MdDb2LineAngularDimension_isUsingDefaultTextPosition_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_isUsingDefaultTextPosition_0).apply(null,
  948. arguments)},AS=b._emscripten_bind_MdDb2LineAngularDimension_useSetTextPosition_0=function(){return(AS=b._emscripten_bind_MdDb2LineAngularDimension_useSetTextPosition_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_useSetTextPosition_0).apply(null,arguments)},BS=b._emscripten_bind_MdDb2LineAngularDimension_useDefaultTextPosition_0=function(){return(BS=b._emscripten_bind_MdDb2LineAngularDimension_useDefaultTextPosition_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_useDefaultTextPosition_0).apply(null,
  949. arguments)},CS=b._emscripten_bind_MdDb2LineAngularDimension_elevation_0=function(){return(CS=b._emscripten_bind_MdDb2LineAngularDimension_elevation_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_elevation_0).apply(null,arguments)},DS=b._emscripten_bind_MdDb2LineAngularDimension_setElevation_1=function(){return(DS=b._emscripten_bind_MdDb2LineAngularDimension_setElevation_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setElevation_1).apply(null,arguments)},ES=b._emscripten_bind_MdDb2LineAngularDimension_dimensionText_0=
  950. function(){return(ES=b._emscripten_bind_MdDb2LineAngularDimension_dimensionText_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_dimensionText_0).apply(null,arguments)},FS=b._emscripten_bind_MdDb2LineAngularDimension_setDimensionText_1=function(){return(FS=b._emscripten_bind_MdDb2LineAngularDimension_setDimensionText_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setDimensionText_1).apply(null,arguments)},GS=b._emscripten_bind_MdDb2LineAngularDimension_textRotation_0=function(){return(GS=b._emscripten_bind_MdDb2LineAngularDimension_textRotation_0=
  951. b.asm.emscripten_bind_MdDb2LineAngularDimension_textRotation_0).apply(null,arguments)},HS=b._emscripten_bind_MdDb2LineAngularDimension_setTextRotation_1=function(){return(HS=b._emscripten_bind_MdDb2LineAngularDimension_setTextRotation_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setTextRotation_1).apply(null,arguments)},IS=b._emscripten_bind_MdDb2LineAngularDimension_dimensionStyle_0=function(){return(IS=b._emscripten_bind_MdDb2LineAngularDimension_dimensionStyle_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_dimensionStyle_0).apply(null,
  952. arguments)},JS=b._emscripten_bind_MdDb2LineAngularDimension_setDimensionStyle_1=function(){return(JS=b._emscripten_bind_MdDb2LineAngularDimension_setDimensionStyle_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setDimensionStyle_1).apply(null,arguments)},KS=b._emscripten_bind_MdDb2LineAngularDimension_textAttachment_0=function(){return(KS=b._emscripten_bind_MdDb2LineAngularDimension_textAttachment_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_textAttachment_0).apply(null,arguments)},LS=b._emscripten_bind_MdDb2LineAngularDimension_setTextAttachment_1=
  953. function(){return(LS=b._emscripten_bind_MdDb2LineAngularDimension_setTextAttachment_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setTextAttachment_1).apply(null,arguments)},MS=b._emscripten_bind_MdDb2LineAngularDimension_horizontalRotation_0=function(){return(MS=b._emscripten_bind_MdDb2LineAngularDimension_horizontalRotation_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_horizontalRotation_0).apply(null,arguments)},NS=b._emscripten_bind_MdDb2LineAngularDimension_setHorizontalRotation_1=function(){return(NS=
  954. b._emscripten_bind_MdDb2LineAngularDimension_setHorizontalRotation_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setHorizontalRotation_1).apply(null,arguments)},OS=b._emscripten_bind_MdDb2LineAngularDimension_recomputeDimBlock_1=function(){return(OS=b._emscripten_bind_MdDb2LineAngularDimension_recomputeDimBlock_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_recomputeDimBlock_1).apply(null,arguments)},PS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarInt_1=function(){return(PS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarInt_1=
  955. b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDimVarInt_1).apply(null,arguments)},QS=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarInt_2=function(){return(QS=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarInt_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetDimVarInt_2).apply(null,arguments)},RS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarDouble_1=function(){return(RS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarDouble_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDimVarDouble_1).apply(null,
  956. arguments)},SS=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarDouble_2=function(){return(SS=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarDouble_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetDimVarDouble_2).apply(null,arguments)},TS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarString_1=function(){return(TS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarString_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDimVarString_1).apply(null,arguments)},US=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarString_2=
  957. function(){return(US=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarString_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetDimVarString_2).apply(null,arguments)},VS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarObjectId_1=function(){return(VS=b._emscripten_bind_MdDb2LineAngularDimension_GetDimVarObjectId_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDimVarObjectId_1).apply(null,arguments)},WS=b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarObjectId_2=function(){return(WS=
  958. b._emscripten_bind_MdDb2LineAngularDimension_SetDimVarObjectId_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetDimVarObjectId_2).apply(null,arguments)},XS=b._emscripten_bind_MdDb2LineAngularDimension_GetAllText_0=function(){return(XS=b._emscripten_bind_MdDb2LineAngularDimension_GetAllText_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetAllText_0).apply(null,arguments)},YS=b._emscripten_bind_MdDb2LineAngularDimension_explode_0=function(){return(YS=b._emscripten_bind_MdDb2LineAngularDimension_explode_0=
  959. b.asm.emscripten_bind_MdDb2LineAngularDimension_explode_0).apply(null,arguments)},ZS=b._emscripten_bind_MdDb2LineAngularDimension_TrueColor_0=function(){return(ZS=b._emscripten_bind_MdDb2LineAngularDimension_TrueColor_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_TrueColor_0).apply(null,arguments)},$S=b._emscripten_bind_MdDb2LineAngularDimension_SetTrueColor_1=function(){return($S=b._emscripten_bind_MdDb2LineAngularDimension_SetTrueColor_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetTrueColor_1).apply(null,
  960. arguments)},aT=b._emscripten_bind_MdDb2LineAngularDimension_ColorIndex_0=function(){return(aT=b._emscripten_bind_MdDb2LineAngularDimension_ColorIndex_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_ColorIndex_0).apply(null,arguments)},bT=b._emscripten_bind_MdDb2LineAngularDimension_SetColorIndex_1=function(){return(bT=b._emscripten_bind_MdDb2LineAngularDimension_SetColorIndex_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetColorIndex_1).apply(null,arguments)},cT=b._emscripten_bind_MdDb2LineAngularDimension_Layer_0=
  961. function(){return(cT=b._emscripten_bind_MdDb2LineAngularDimension_Layer_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Layer_0).apply(null,arguments)},dT=b._emscripten_bind_MdDb2LineAngularDimension_SetLayer_1=function(){return(dT=b._emscripten_bind_MdDb2LineAngularDimension_SetLayer_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLayer_1).apply(null,arguments)},eT=b._emscripten_bind_MdDb2LineAngularDimension_LinetypeScale_0=function(){return(eT=b._emscripten_bind_MdDb2LineAngularDimension_LinetypeScale_0=
  962. b.asm.emscripten_bind_MdDb2LineAngularDimension_LinetypeScale_0).apply(null,arguments)},fT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetypeScale_1=function(){return(fT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetypeScale_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLinetypeScale_1).apply(null,arguments)},gT=b._emscripten_bind_MdDb2LineAngularDimension_Visible_0=function(){return(gT=b._emscripten_bind_MdDb2LineAngularDimension_Visible_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Visible_0).apply(null,
  963. arguments)},hT=b._emscripten_bind_MdDb2LineAngularDimension_SetVisible_1=function(){return(hT=b._emscripten_bind_MdDb2LineAngularDimension_SetVisible_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetVisible_1).apply(null,arguments)},iT=b._emscripten_bind_MdDb2LineAngularDimension_Lineweight_0=function(){return(iT=b._emscripten_bind_MdDb2LineAngularDimension_Lineweight_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Lineweight_0).apply(null,arguments)},jT=b._emscripten_bind_MdDb2LineAngularDimension_SetLineweight_1=
  964. function(){return(jT=b._emscripten_bind_MdDb2LineAngularDimension_SetLineweight_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLineweight_1).apply(null,arguments)},kT=b._emscripten_bind_MdDb2LineAngularDimension_TextStyle_0=function(){return(kT=b._emscripten_bind_MdDb2LineAngularDimension_TextStyle_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_TextStyle_0).apply(null,arguments)},lT=b._emscripten_bind_MdDb2LineAngularDimension_SetTextStyle_1=function(){return(lT=b._emscripten_bind_MdDb2LineAngularDimension_SetTextStyle_1=
  965. b.asm.emscripten_bind_MdDb2LineAngularDimension_SetTextStyle_1).apply(null,arguments)},mT=b._emscripten_bind_MdDb2LineAngularDimension_Highlight_1=function(){return(mT=b._emscripten_bind_MdDb2LineAngularDimension_Highlight_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_Highlight_1).apply(null,arguments)},nT=b._emscripten_bind_MdDb2LineAngularDimension_Move_2=function(){return(nT=b._emscripten_bind_MdDb2LineAngularDimension_Move_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_Move_2).apply(null,
  966. arguments)},oT=b._emscripten_bind_MdDb2LineAngularDimension_Rotate_2=function(){return(oT=b._emscripten_bind_MdDb2LineAngularDimension_Rotate_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_Rotate_2).apply(null,arguments)},pT=b._emscripten_bind_MdDb2LineAngularDimension_Mirror_2=function(){return(pT=b._emscripten_bind_MdDb2LineAngularDimension_Mirror_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_Mirror_2).apply(null,arguments)},qT=b._emscripten_bind_MdDb2LineAngularDimension_ScaleEntity_2=function(){return(qT=
  967. b._emscripten_bind_MdDb2LineAngularDimension_ScaleEntity_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_ScaleEntity_2).apply(null,arguments)},rT=b._emscripten_bind_MdDb2LineAngularDimension_TransformBy_1=function(){return(rT=b._emscripten_bind_MdDb2LineAngularDimension_TransformBy_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_TransformBy_1).apply(null,arguments)},sT=b._emscripten_bind_MdDb2LineAngularDimension_GetBoundingBox_0=function(){return(sT=b._emscripten_bind_MdDb2LineAngularDimension_GetBoundingBox_0=
  968. b.asm.emscripten_bind_MdDb2LineAngularDimension_GetBoundingBox_0).apply(null,arguments)},tT=b._emscripten_bind_MdDb2LineAngularDimension_GetXData_1=function(){return(tT=b._emscripten_bind_MdDb2LineAngularDimension_GetXData_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetXData_1).apply(null,arguments)},uT=b._emscripten_bind_MdDb2LineAngularDimension_SetXData_1=function(){return(uT=b._emscripten_bind_MdDb2LineAngularDimension_SetXData_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetXData_1).apply(null,
  969. arguments)},vT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataString_2=function(){return(vT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataString_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetxDataString_2).apply(null,arguments)},wT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataString_3=function(){return(wT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataString_3=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetxDataString_3).apply(null,arguments)},xT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataDouble_2=
  970. function(){return(xT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataDouble_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetxDataDouble_2).apply(null,arguments)},yT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataDouble_3=function(){return(yT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataDouble_3=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetxDataDouble_3).apply(null,arguments)},zT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataLong_2=function(){return(zT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataLong_2=
  971. b.asm.emscripten_bind_MdDb2LineAngularDimension_GetxDataLong_2).apply(null,arguments)},AT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataLong_3=function(){return(AT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataLong_3=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetxDataLong_3).apply(null,arguments)},BT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataPoint_2=function(){return(BT=b._emscripten_bind_MdDb2LineAngularDimension_GetxDataPoint_2=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetxDataPoint_2).apply(null,
  972. arguments)},CT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataPoint_3=function(){return(CT=b._emscripten_bind_MdDb2LineAngularDimension_SetxDataPoint_3=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetxDataPoint_3).apply(null,arguments)},DT=b._emscripten_bind_MdDb2LineAngularDimension_DeleteXData_1=function(){return(DT=b._emscripten_bind_MdDb2LineAngularDimension_DeleteXData_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_DeleteXData_1).apply(null,arguments)},ET=b._emscripten_bind_MdDb2LineAngularDimension_GetAllAppName_0=
  973. function(){return(ET=b._emscripten_bind_MdDb2LineAngularDimension_GetAllAppName_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetAllAppName_0).apply(null,arguments)},FT=b._emscripten_bind_MdDb2LineAngularDimension_LayerId_0=function(){return(FT=b._emscripten_bind_MdDb2LineAngularDimension_LayerId_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_LayerId_0).apply(null,arguments)},GT=b._emscripten_bind_MdDb2LineAngularDimension_SetLayerId_1=function(){return(GT=b._emscripten_bind_MdDb2LineAngularDimension_SetLayerId_1=
  974. b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLayerId_1).apply(null,arguments)},HT=b._emscripten_bind_MdDb2LineAngularDimension_LinetypeId_0=function(){return(HT=b._emscripten_bind_MdDb2LineAngularDimension_LinetypeId_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_LinetypeId_0).apply(null,arguments)},IT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetypeId_1=function(){return(IT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetypeId_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLinetypeId_1).apply(null,
  975. arguments)},JT=b._emscripten_bind_MdDb2LineAngularDimension_Linetype_0=function(){return(JT=b._emscripten_bind_MdDb2LineAngularDimension_Linetype_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Linetype_0).apply(null,arguments)},KT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetype_1=function(){return(KT=b._emscripten_bind_MdDb2LineAngularDimension_SetLinetype_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetLinetype_1).apply(null,arguments)},LT=b._emscripten_bind_MdDb2LineAngularDimension_TextStyleId_0=
  976. function(){return(LT=b._emscripten_bind_MdDb2LineAngularDimension_TextStyleId_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_TextStyleId_0).apply(null,arguments)},MT=b._emscripten_bind_MdDb2LineAngularDimension_SetTextStyleId_1=function(){return(MT=b._emscripten_bind_MdDb2LineAngularDimension_SetTextStyleId_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetTextStyleId_1).apply(null,arguments)},NT=b._emscripten_bind_MdDb2LineAngularDimension_IntersectWith_2=function(){return(NT=b._emscripten_bind_MdDb2LineAngularDimension_IntersectWith_2=
  977. b.asm.emscripten_bind_MdDb2LineAngularDimension_IntersectWith_2).apply(null,arguments)},OT=b._emscripten_bind_MdDb2LineAngularDimension_getArea_0=function(){return(OT=b._emscripten_bind_MdDb2LineAngularDimension_getArea_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getArea_0).apply(null,arguments)},PT=b._emscripten_bind_MdDb2LineAngularDimension_disableUpdateDisplay_1=function(){return(PT=b._emscripten_bind_MdDb2LineAngularDimension_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_disableUpdateDisplay_1).apply(null,
  978. arguments)},QT=b._emscripten_bind_MdDb2LineAngularDimension_isPropertiesWindowCustom_0=function(){return(QT=b._emscripten_bind_MdDb2LineAngularDimension_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_isPropertiesWindowCustom_0).apply(null,arguments)},RT=b._emscripten_bind_MdDb2LineAngularDimension_setPropertiesWindowCustom_1=function(){return(RT=b._emscripten_bind_MdDb2LineAngularDimension_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setPropertiesWindowCustom_1).apply(null,
  979. arguments)},ST=b._emscripten_bind_MdDb2LineAngularDimension_updateDisplay_0=function(){return(ST=b._emscripten_bind_MdDb2LineAngularDimension_updateDisplay_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_updateDisplay_0).apply(null,arguments)},TT=b._emscripten_bind_MdDb2LineAngularDimension_DrawOrder_0=function(){return(TT=b._emscripten_bind_MdDb2LineAngularDimension_DrawOrder_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_DrawOrder_0).apply(null,arguments)},UT=b._emscripten_bind_MdDb2LineAngularDimension_SetDrawOrder_1=
  980. function(){return(UT=b._emscripten_bind_MdDb2LineAngularDimension_SetDrawOrder_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_SetDrawOrder_1).apply(null,arguments)},VT=b._emscripten_bind_MdDb2LineAngularDimension_normal_0=function(){return(VT=b._emscripten_bind_MdDb2LineAngularDimension_normal_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_normal_0).apply(null,arguments)},WT=b._emscripten_bind_MdDb2LineAngularDimension_setNormal_1=function(){return(WT=b._emscripten_bind_MdDb2LineAngularDimension_setNormal_1=
  981. b.asm.emscripten_bind_MdDb2LineAngularDimension_setNormal_1).apply(null,arguments)},XT=b._emscripten_bind_MdDb2LineAngularDimension_GetObjectID_0=function(){return(XT=b._emscripten_bind_MdDb2LineAngularDimension_GetObjectID_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetObjectID_0).apply(null,arguments)},YT=b._emscripten_bind_MdDb2LineAngularDimension_Erase_0=function(){return(YT=b._emscripten_bind_MdDb2LineAngularDimension_Erase_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Erase_0).apply(null,
  982. arguments)},ZT=b._emscripten_bind_MdDb2LineAngularDimension_isErased_0=function(){return(ZT=b._emscripten_bind_MdDb2LineAngularDimension_isErased_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_isErased_0).apply(null,arguments)},$T=b._emscripten_bind_MdDb2LineAngularDimension_unErase_0=function(){return($T=b._emscripten_bind_MdDb2LineAngularDimension_unErase_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_unErase_0).apply(null,arguments)},aU=b._emscripten_bind_MdDb2LineAngularDimension_ConnectionTempObject_1=
  983. function(){return(aU=b._emscripten_bind_MdDb2LineAngularDimension_ConnectionTempObject_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_ConnectionTempObject_1).apply(null,arguments)},bU=b._emscripten_bind_MdDb2LineAngularDimension_GetExtensionDictionary_0=function(){return(bU=b._emscripten_bind_MdDb2LineAngularDimension_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetExtensionDictionary_0).apply(null,arguments)},cU=b._emscripten_bind_MdDb2LineAngularDimension_CreateExtensionDictionary_0=
  984. function(){return(cU=b._emscripten_bind_MdDb2LineAngularDimension_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_CreateExtensionDictionary_0).apply(null,arguments)},dU=b._emscripten_bind_MdDb2LineAngularDimension_IsHaveExtensionDictionary_0=function(){return(dU=b._emscripten_bind_MdDb2LineAngularDimension_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_IsHaveExtensionDictionary_0).apply(null,arguments)},eU=b._emscripten_bind_MdDb2LineAngularDimension_Clone_0=
  985. function(){return(eU=b._emscripten_bind_MdDb2LineAngularDimension_Clone_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_Clone_0).apply(null,arguments)},fU=b._emscripten_bind_MdDb2LineAngularDimension_GetHandle_0=function(){return(fU=b._emscripten_bind_MdDb2LineAngularDimension_GetHandle_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetHandle_0).apply(null,arguments)},gU=b._emscripten_bind_MdDb2LineAngularDimension_GetDatabase_0=function(){return(gU=b._emscripten_bind_MdDb2LineAngularDimension_GetDatabase_0=
  986. b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDatabase_0).apply(null,arguments)},hU=b._emscripten_bind_MdDb2LineAngularDimension_GetDatabaseIndexId_0=function(){return(hU=b._emscripten_bind_MdDb2LineAngularDimension_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetDatabaseIndexId_0).apply(null,arguments)},iU=b._emscripten_bind_MdDb2LineAngularDimension_GetOwnerID_0=function(){return(iU=b._emscripten_bind_MdDb2LineAngularDimension_GetOwnerID_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_GetOwnerID_0).apply(null,
  987. arguments)},jU=b._emscripten_bind_MdDb2LineAngularDimension_assertObjectModification_1=function(){return(jU=b._emscripten_bind_MdDb2LineAngularDimension_assertObjectModification_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_assertObjectModification_1).apply(null,arguments)},kU=b._emscripten_bind_MdDb2LineAngularDimension_moveGripPointsAt_4=function(){return(kU=b._emscripten_bind_MdDb2LineAngularDimension_moveGripPointsAt_4=b.asm.emscripten_bind_MdDb2LineAngularDimension_moveGripPointsAt_4).apply(null,
  988. arguments)},lU=b._emscripten_bind_MdDb2LineAngularDimension_getGripPoints_0=function(){return(lU=b._emscripten_bind_MdDb2LineAngularDimension_getGripPoints_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getGripPoints_0).apply(null,arguments)},mU=b._emscripten_bind_MdDb2LineAngularDimension_getObjectName_0=function(){return(mU=b._emscripten_bind_MdDb2LineAngularDimension_getObjectName_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getObjectName_0).apply(null,arguments)},nU=b._emscripten_bind_MdDb2LineAngularDimension_getDxf0_0=
  989. function(){return(nU=b._emscripten_bind_MdDb2LineAngularDimension_getDxf0_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getDxf0_0).apply(null,arguments)},oU=b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTypeName_0=function(){return(oU=b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTypeName_0).apply(null,arguments)},pU=b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityid_0=function(){return(pU=
  990. b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityid_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getCustomEntityid_0).apply(null,arguments)},qU=b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTempid_0=function(){return(qU=b._emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getCustomEntityTempid_0).apply(null,arguments)},rU=b._emscripten_bind_MdDb2LineAngularDimension_setCustomEntityTempid_1=function(){return(rU=
  991. b._emscripten_bind_MdDb2LineAngularDimension_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_setCustomEntityTempid_1).apply(null,arguments)},sU=b._emscripten_bind_MdDb2LineAngularDimension_getJson_0=function(){return(sU=b._emscripten_bind_MdDb2LineAngularDimension_getJson_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_getJson_0).apply(null,arguments)},tU=b._emscripten_bind_MdDb2LineAngularDimension_setJson_1=function(){return(tU=b._emscripten_bind_MdDb2LineAngularDimension_setJson_1=
  992. b.asm.emscripten_bind_MdDb2LineAngularDimension_setJson_1).apply(null,arguments)},uU=b._emscripten_bind_MdDb2LineAngularDimension_isKindOf_1=function(){return(uU=b._emscripten_bind_MdDb2LineAngularDimension_isKindOf_1=b.asm.emscripten_bind_MdDb2LineAngularDimension_isKindOf_1).apply(null,arguments)},vU=b._emscripten_bind_MdDb2LineAngularDimension_isNull_0=function(){return(vU=b._emscripten_bind_MdDb2LineAngularDimension_isNull_0=b.asm.emscripten_bind_MdDb2LineAngularDimension_isNull_0).apply(null,
  993. arguments)},wU=b._emscripten_bind_MdDb2LineAngularDimension___destroy___0=function(){return(wU=b._emscripten_bind_MdDb2LineAngularDimension___destroy___0=b.asm.emscripten_bind_MdDb2LineAngularDimension___destroy___0).apply(null,arguments)},xU=b._emscripten_bind_MdDbMText_MdDbMText_0=function(){return(xU=b._emscripten_bind_MdDbMText_MdDbMText_0=b.asm.emscripten_bind_MdDbMText_MdDbMText_0).apply(null,arguments)},yU=b._emscripten_bind_MdDbMText_location_0=function(){return(yU=b._emscripten_bind_MdDbMText_location_0=
  994. b.asm.emscripten_bind_MdDbMText_location_0).apply(null,arguments)},zU=b._emscripten_bind_MdDbMText_setLocation_1=function(){return(zU=b._emscripten_bind_MdDbMText_setLocation_1=b.asm.emscripten_bind_MdDbMText_setLocation_1).apply(null,arguments)},AU=b._emscripten_bind_MdDbMText_rotation_0=function(){return(AU=b._emscripten_bind_MdDbMText_rotation_0=b.asm.emscripten_bind_MdDbMText_rotation_0).apply(null,arguments)},BU=b._emscripten_bind_MdDbMText_setRotation_1=function(){return(BU=b._emscripten_bind_MdDbMText_setRotation_1=
  995. b.asm.emscripten_bind_MdDbMText_setRotation_1).apply(null,arguments)},CU=b._emscripten_bind_MdDbMText_width_0=function(){return(CU=b._emscripten_bind_MdDbMText_width_0=b.asm.emscripten_bind_MdDbMText_width_0).apply(null,arguments)},DU=b._emscripten_bind_MdDbMText_setWidth_1=function(){return(DU=b._emscripten_bind_MdDbMText_setWidth_1=b.asm.emscripten_bind_MdDbMText_setWidth_1).apply(null,arguments)},EU=b._emscripten_bind_MdDbMText_textHeight_0=function(){return(EU=b._emscripten_bind_MdDbMText_textHeight_0=
  996. b.asm.emscripten_bind_MdDbMText_textHeight_0).apply(null,arguments)},FU=b._emscripten_bind_MdDbMText_setTextHeight_1=function(){return(FU=b._emscripten_bind_MdDbMText_setTextHeight_1=b.asm.emscripten_bind_MdDbMText_setTextHeight_1).apply(null,arguments)},GU=b._emscripten_bind_MdDbMText_attachment_0=function(){return(GU=b._emscripten_bind_MdDbMText_attachment_0=b.asm.emscripten_bind_MdDbMText_attachment_0).apply(null,arguments)},HU=b._emscripten_bind_MdDbMText_setAttachment_1=function(){return(HU=
  997. b._emscripten_bind_MdDbMText_setAttachment_1=b.asm.emscripten_bind_MdDbMText_setAttachment_1).apply(null,arguments)},IU=b._emscripten_bind_MdDbMText_contents_0=function(){return(IU=b._emscripten_bind_MdDbMText_contents_0=b.asm.emscripten_bind_MdDbMText_contents_0).apply(null,arguments)},JU=b._emscripten_bind_MdDbMText_setContents_1=function(){return(JU=b._emscripten_bind_MdDbMText_setContents_1=b.asm.emscripten_bind_MdDbMText_setContents_1).apply(null,arguments)},KU=b._emscripten_bind_MdDbMText_getTextString_0=
  998. function(){return(KU=b._emscripten_bind_MdDbMText_getTextString_0=b.asm.emscripten_bind_MdDbMText_getTextString_0).apply(null,arguments)},LU=b._emscripten_bind_MdDbMText_explode_0=function(){return(LU=b._emscripten_bind_MdDbMText_explode_0=b.asm.emscripten_bind_MdDbMText_explode_0).apply(null,arguments)},MU=b._emscripten_bind_MdDbMText_TrueColor_0=function(){return(MU=b._emscripten_bind_MdDbMText_TrueColor_0=b.asm.emscripten_bind_MdDbMText_TrueColor_0).apply(null,arguments)},NU=b._emscripten_bind_MdDbMText_SetTrueColor_1=
  999. function(){return(NU=b._emscripten_bind_MdDbMText_SetTrueColor_1=b.asm.emscripten_bind_MdDbMText_SetTrueColor_1).apply(null,arguments)},OU=b._emscripten_bind_MdDbMText_ColorIndex_0=function(){return(OU=b._emscripten_bind_MdDbMText_ColorIndex_0=b.asm.emscripten_bind_MdDbMText_ColorIndex_0).apply(null,arguments)},PU=b._emscripten_bind_MdDbMText_SetColorIndex_1=function(){return(PU=b._emscripten_bind_MdDbMText_SetColorIndex_1=b.asm.emscripten_bind_MdDbMText_SetColorIndex_1).apply(null,arguments)},QU=
  1000. b._emscripten_bind_MdDbMText_Layer_0=function(){return(QU=b._emscripten_bind_MdDbMText_Layer_0=b.asm.emscripten_bind_MdDbMText_Layer_0).apply(null,arguments)},RU=b._emscripten_bind_MdDbMText_SetLayer_1=function(){return(RU=b._emscripten_bind_MdDbMText_SetLayer_1=b.asm.emscripten_bind_MdDbMText_SetLayer_1).apply(null,arguments)},SU=b._emscripten_bind_MdDbMText_LinetypeScale_0=function(){return(SU=b._emscripten_bind_MdDbMText_LinetypeScale_0=b.asm.emscripten_bind_MdDbMText_LinetypeScale_0).apply(null,
  1001. arguments)},TU=b._emscripten_bind_MdDbMText_SetLinetypeScale_1=function(){return(TU=b._emscripten_bind_MdDbMText_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbMText_SetLinetypeScale_1).apply(null,arguments)},UU=b._emscripten_bind_MdDbMText_Visible_0=function(){return(UU=b._emscripten_bind_MdDbMText_Visible_0=b.asm.emscripten_bind_MdDbMText_Visible_0).apply(null,arguments)},VU=b._emscripten_bind_MdDbMText_SetVisible_1=function(){return(VU=b._emscripten_bind_MdDbMText_SetVisible_1=b.asm.emscripten_bind_MdDbMText_SetVisible_1).apply(null,
  1002. arguments)},WU=b._emscripten_bind_MdDbMText_Lineweight_0=function(){return(WU=b._emscripten_bind_MdDbMText_Lineweight_0=b.asm.emscripten_bind_MdDbMText_Lineweight_0).apply(null,arguments)},XU=b._emscripten_bind_MdDbMText_SetLineweight_1=function(){return(XU=b._emscripten_bind_MdDbMText_SetLineweight_1=b.asm.emscripten_bind_MdDbMText_SetLineweight_1).apply(null,arguments)},YU=b._emscripten_bind_MdDbMText_TextStyle_0=function(){return(YU=b._emscripten_bind_MdDbMText_TextStyle_0=b.asm.emscripten_bind_MdDbMText_TextStyle_0).apply(null,
  1003. arguments)},ZU=b._emscripten_bind_MdDbMText_SetTextStyle_1=function(){return(ZU=b._emscripten_bind_MdDbMText_SetTextStyle_1=b.asm.emscripten_bind_MdDbMText_SetTextStyle_1).apply(null,arguments)},$U=b._emscripten_bind_MdDbMText_Highlight_1=function(){return($U=b._emscripten_bind_MdDbMText_Highlight_1=b.asm.emscripten_bind_MdDbMText_Highlight_1).apply(null,arguments)},aV=b._emscripten_bind_MdDbMText_Move_2=function(){return(aV=b._emscripten_bind_MdDbMText_Move_2=b.asm.emscripten_bind_MdDbMText_Move_2).apply(null,
  1004. arguments)},bV=b._emscripten_bind_MdDbMText_Rotate_2=function(){return(bV=b._emscripten_bind_MdDbMText_Rotate_2=b.asm.emscripten_bind_MdDbMText_Rotate_2).apply(null,arguments)},cV=b._emscripten_bind_MdDbMText_Mirror_2=function(){return(cV=b._emscripten_bind_MdDbMText_Mirror_2=b.asm.emscripten_bind_MdDbMText_Mirror_2).apply(null,arguments)},dV=b._emscripten_bind_MdDbMText_ScaleEntity_2=function(){return(dV=b._emscripten_bind_MdDbMText_ScaleEntity_2=b.asm.emscripten_bind_MdDbMText_ScaleEntity_2).apply(null,
  1005. arguments)},eV=b._emscripten_bind_MdDbMText_TransformBy_1=function(){return(eV=b._emscripten_bind_MdDbMText_TransformBy_1=b.asm.emscripten_bind_MdDbMText_TransformBy_1).apply(null,arguments)},fV=b._emscripten_bind_MdDbMText_GetBoundingBox_0=function(){return(fV=b._emscripten_bind_MdDbMText_GetBoundingBox_0=b.asm.emscripten_bind_MdDbMText_GetBoundingBox_0).apply(null,arguments)},gV=b._emscripten_bind_MdDbMText_GetXData_1=function(){return(gV=b._emscripten_bind_MdDbMText_GetXData_1=b.asm.emscripten_bind_MdDbMText_GetXData_1).apply(null,
  1006. arguments)},hV=b._emscripten_bind_MdDbMText_SetXData_1=function(){return(hV=b._emscripten_bind_MdDbMText_SetXData_1=b.asm.emscripten_bind_MdDbMText_SetXData_1).apply(null,arguments)},iV=b._emscripten_bind_MdDbMText_GetxDataString_2=function(){return(iV=b._emscripten_bind_MdDbMText_GetxDataString_2=b.asm.emscripten_bind_MdDbMText_GetxDataString_2).apply(null,arguments)},jV=b._emscripten_bind_MdDbMText_SetxDataString_3=function(){return(jV=b._emscripten_bind_MdDbMText_SetxDataString_3=b.asm.emscripten_bind_MdDbMText_SetxDataString_3).apply(null,
  1007. arguments)},kV=b._emscripten_bind_MdDbMText_GetxDataDouble_2=function(){return(kV=b._emscripten_bind_MdDbMText_GetxDataDouble_2=b.asm.emscripten_bind_MdDbMText_GetxDataDouble_2).apply(null,arguments)},lV=b._emscripten_bind_MdDbMText_SetxDataDouble_3=function(){return(lV=b._emscripten_bind_MdDbMText_SetxDataDouble_3=b.asm.emscripten_bind_MdDbMText_SetxDataDouble_3).apply(null,arguments)},mV=b._emscripten_bind_MdDbMText_GetxDataLong_2=function(){return(mV=b._emscripten_bind_MdDbMText_GetxDataLong_2=
  1008. b.asm.emscripten_bind_MdDbMText_GetxDataLong_2).apply(null,arguments)},nV=b._emscripten_bind_MdDbMText_SetxDataLong_3=function(){return(nV=b._emscripten_bind_MdDbMText_SetxDataLong_3=b.asm.emscripten_bind_MdDbMText_SetxDataLong_3).apply(null,arguments)},oV=b._emscripten_bind_MdDbMText_GetxDataPoint_2=function(){return(oV=b._emscripten_bind_MdDbMText_GetxDataPoint_2=b.asm.emscripten_bind_MdDbMText_GetxDataPoint_2).apply(null,arguments)},pV=b._emscripten_bind_MdDbMText_SetxDataPoint_3=function(){return(pV=
  1009. b._emscripten_bind_MdDbMText_SetxDataPoint_3=b.asm.emscripten_bind_MdDbMText_SetxDataPoint_3).apply(null,arguments)},qV=b._emscripten_bind_MdDbMText_DeleteXData_1=function(){return(qV=b._emscripten_bind_MdDbMText_DeleteXData_1=b.asm.emscripten_bind_MdDbMText_DeleteXData_1).apply(null,arguments)},rV=b._emscripten_bind_MdDbMText_GetAllAppName_0=function(){return(rV=b._emscripten_bind_MdDbMText_GetAllAppName_0=b.asm.emscripten_bind_MdDbMText_GetAllAppName_0).apply(null,arguments)},sV=b._emscripten_bind_MdDbMText_LayerId_0=
  1010. function(){return(sV=b._emscripten_bind_MdDbMText_LayerId_0=b.asm.emscripten_bind_MdDbMText_LayerId_0).apply(null,arguments)},tV=b._emscripten_bind_MdDbMText_SetLayerId_1=function(){return(tV=b._emscripten_bind_MdDbMText_SetLayerId_1=b.asm.emscripten_bind_MdDbMText_SetLayerId_1).apply(null,arguments)},uV=b._emscripten_bind_MdDbMText_LinetypeId_0=function(){return(uV=b._emscripten_bind_MdDbMText_LinetypeId_0=b.asm.emscripten_bind_MdDbMText_LinetypeId_0).apply(null,arguments)},vV=b._emscripten_bind_MdDbMText_SetLinetypeId_1=
  1011. function(){return(vV=b._emscripten_bind_MdDbMText_SetLinetypeId_1=b.asm.emscripten_bind_MdDbMText_SetLinetypeId_1).apply(null,arguments)},wV=b._emscripten_bind_MdDbMText_Linetype_0=function(){return(wV=b._emscripten_bind_MdDbMText_Linetype_0=b.asm.emscripten_bind_MdDbMText_Linetype_0).apply(null,arguments)},xV=b._emscripten_bind_MdDbMText_SetLinetype_1=function(){return(xV=b._emscripten_bind_MdDbMText_SetLinetype_1=b.asm.emscripten_bind_MdDbMText_SetLinetype_1).apply(null,arguments)},yV=b._emscripten_bind_MdDbMText_TextStyleId_0=
  1012. function(){return(yV=b._emscripten_bind_MdDbMText_TextStyleId_0=b.asm.emscripten_bind_MdDbMText_TextStyleId_0).apply(null,arguments)},zV=b._emscripten_bind_MdDbMText_SetTextStyleId_1=function(){return(zV=b._emscripten_bind_MdDbMText_SetTextStyleId_1=b.asm.emscripten_bind_MdDbMText_SetTextStyleId_1).apply(null,arguments)},AV=b._emscripten_bind_MdDbMText_IntersectWith_2=function(){return(AV=b._emscripten_bind_MdDbMText_IntersectWith_2=b.asm.emscripten_bind_MdDbMText_IntersectWith_2).apply(null,arguments)},
  1013. BV=b._emscripten_bind_MdDbMText_getArea_0=function(){return(BV=b._emscripten_bind_MdDbMText_getArea_0=b.asm.emscripten_bind_MdDbMText_getArea_0).apply(null,arguments)},CV=b._emscripten_bind_MdDbMText_disableUpdateDisplay_1=function(){return(CV=b._emscripten_bind_MdDbMText_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbMText_disableUpdateDisplay_1).apply(null,arguments)},DV=b._emscripten_bind_MdDbMText_isPropertiesWindowCustom_0=function(){return(DV=b._emscripten_bind_MdDbMText_isPropertiesWindowCustom_0=
  1014. b.asm.emscripten_bind_MdDbMText_isPropertiesWindowCustom_0).apply(null,arguments)},EV=b._emscripten_bind_MdDbMText_setPropertiesWindowCustom_1=function(){return(EV=b._emscripten_bind_MdDbMText_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbMText_setPropertiesWindowCustom_1).apply(null,arguments)},FV=b._emscripten_bind_MdDbMText_updateDisplay_0=function(){return(FV=b._emscripten_bind_MdDbMText_updateDisplay_0=b.asm.emscripten_bind_MdDbMText_updateDisplay_0).apply(null,arguments)},GV=b._emscripten_bind_MdDbMText_DrawOrder_0=
  1015. function(){return(GV=b._emscripten_bind_MdDbMText_DrawOrder_0=b.asm.emscripten_bind_MdDbMText_DrawOrder_0).apply(null,arguments)},HV=b._emscripten_bind_MdDbMText_SetDrawOrder_1=function(){return(HV=b._emscripten_bind_MdDbMText_SetDrawOrder_1=b.asm.emscripten_bind_MdDbMText_SetDrawOrder_1).apply(null,arguments)},IV=b._emscripten_bind_MdDbMText_normal_0=function(){return(IV=b._emscripten_bind_MdDbMText_normal_0=b.asm.emscripten_bind_MdDbMText_normal_0).apply(null,arguments)},JV=b._emscripten_bind_MdDbMText_setNormal_1=
  1016. function(){return(JV=b._emscripten_bind_MdDbMText_setNormal_1=b.asm.emscripten_bind_MdDbMText_setNormal_1).apply(null,arguments)},KV=b._emscripten_bind_MdDbMText_GetObjectID_0=function(){return(KV=b._emscripten_bind_MdDbMText_GetObjectID_0=b.asm.emscripten_bind_MdDbMText_GetObjectID_0).apply(null,arguments)},LV=b._emscripten_bind_MdDbMText_Erase_0=function(){return(LV=b._emscripten_bind_MdDbMText_Erase_0=b.asm.emscripten_bind_MdDbMText_Erase_0).apply(null,arguments)},MV=b._emscripten_bind_MdDbMText_isErased_0=
  1017. function(){return(MV=b._emscripten_bind_MdDbMText_isErased_0=b.asm.emscripten_bind_MdDbMText_isErased_0).apply(null,arguments)},NV=b._emscripten_bind_MdDbMText_unErase_0=function(){return(NV=b._emscripten_bind_MdDbMText_unErase_0=b.asm.emscripten_bind_MdDbMText_unErase_0).apply(null,arguments)},OV=b._emscripten_bind_MdDbMText_ConnectionTempObject_1=function(){return(OV=b._emscripten_bind_MdDbMText_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbMText_ConnectionTempObject_1).apply(null,arguments)},
  1018. PV=b._emscripten_bind_MdDbMText_GetExtensionDictionary_0=function(){return(PV=b._emscripten_bind_MdDbMText_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbMText_GetExtensionDictionary_0).apply(null,arguments)},QV=b._emscripten_bind_MdDbMText_CreateExtensionDictionary_0=function(){return(QV=b._emscripten_bind_MdDbMText_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbMText_CreateExtensionDictionary_0).apply(null,arguments)},RV=b._emscripten_bind_MdDbMText_IsHaveExtensionDictionary_0=function(){return(RV=
  1019. b._emscripten_bind_MdDbMText_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbMText_IsHaveExtensionDictionary_0).apply(null,arguments)},SV=b._emscripten_bind_MdDbMText_Clone_0=function(){return(SV=b._emscripten_bind_MdDbMText_Clone_0=b.asm.emscripten_bind_MdDbMText_Clone_0).apply(null,arguments)},TV=b._emscripten_bind_MdDbMText_GetHandle_0=function(){return(TV=b._emscripten_bind_MdDbMText_GetHandle_0=b.asm.emscripten_bind_MdDbMText_GetHandle_0).apply(null,arguments)},UV=b._emscripten_bind_MdDbMText_GetDatabase_0=
  1020. function(){return(UV=b._emscripten_bind_MdDbMText_GetDatabase_0=b.asm.emscripten_bind_MdDbMText_GetDatabase_0).apply(null,arguments)},VV=b._emscripten_bind_MdDbMText_GetDatabaseIndexId_0=function(){return(VV=b._emscripten_bind_MdDbMText_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbMText_GetDatabaseIndexId_0).apply(null,arguments)},WV=b._emscripten_bind_MdDbMText_GetOwnerID_0=function(){return(WV=b._emscripten_bind_MdDbMText_GetOwnerID_0=b.asm.emscripten_bind_MdDbMText_GetOwnerID_0).apply(null,arguments)},
  1021. XV=b._emscripten_bind_MdDbMText_assertObjectModification_1=function(){return(XV=b._emscripten_bind_MdDbMText_assertObjectModification_1=b.asm.emscripten_bind_MdDbMText_assertObjectModification_1).apply(null,arguments)},YV=b._emscripten_bind_MdDbMText_moveGripPointsAt_4=function(){return(YV=b._emscripten_bind_MdDbMText_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbMText_moveGripPointsAt_4).apply(null,arguments)},ZV=b._emscripten_bind_MdDbMText_getGripPoints_0=function(){return(ZV=b._emscripten_bind_MdDbMText_getGripPoints_0=
  1022. b.asm.emscripten_bind_MdDbMText_getGripPoints_0).apply(null,arguments)},$V=b._emscripten_bind_MdDbMText_getObjectName_0=function(){return($V=b._emscripten_bind_MdDbMText_getObjectName_0=b.asm.emscripten_bind_MdDbMText_getObjectName_0).apply(null,arguments)},aW=b._emscripten_bind_MdDbMText_getDxf0_0=function(){return(aW=b._emscripten_bind_MdDbMText_getDxf0_0=b.asm.emscripten_bind_MdDbMText_getDxf0_0).apply(null,arguments)},bW=b._emscripten_bind_MdDbMText_getCustomEntityTypeName_0=function(){return(bW=
  1023. b._emscripten_bind_MdDbMText_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbMText_getCustomEntityTypeName_0).apply(null,arguments)},cW=b._emscripten_bind_MdDbMText_getCustomEntityid_0=function(){return(cW=b._emscripten_bind_MdDbMText_getCustomEntityid_0=b.asm.emscripten_bind_MdDbMText_getCustomEntityid_0).apply(null,arguments)},dW=b._emscripten_bind_MdDbMText_getCustomEntityTempid_0=function(){return(dW=b._emscripten_bind_MdDbMText_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbMText_getCustomEntityTempid_0).apply(null,
  1024. arguments)},eW=b._emscripten_bind_MdDbMText_setCustomEntityTempid_1=function(){return(eW=b._emscripten_bind_MdDbMText_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbMText_setCustomEntityTempid_1).apply(null,arguments)},fW=b._emscripten_bind_MdDbMText_getJson_0=function(){return(fW=b._emscripten_bind_MdDbMText_getJson_0=b.asm.emscripten_bind_MdDbMText_getJson_0).apply(null,arguments)},gW=b._emscripten_bind_MdDbMText_setJson_1=function(){return(gW=b._emscripten_bind_MdDbMText_setJson_1=b.asm.emscripten_bind_MdDbMText_setJson_1).apply(null,
  1025. arguments)},hW=b._emscripten_bind_MdDbMText_isKindOf_1=function(){return(hW=b._emscripten_bind_MdDbMText_isKindOf_1=b.asm.emscripten_bind_MdDbMText_isKindOf_1).apply(null,arguments)},iW=b._emscripten_bind_MdDbMText_isNull_0=function(){return(iW=b._emscripten_bind_MdDbMText_isNull_0=b.asm.emscripten_bind_MdDbMText_isNull_0).apply(null,arguments)},jW=b._emscripten_bind_MdDbMText___destroy___0=function(){return(jW=b._emscripten_bind_MdDbMText___destroy___0=b.asm.emscripten_bind_MdDbMText___destroy___0).apply(null,
  1026. arguments)},kW=b._emscripten_bind_MdDbBlockTableRecord_MdDbBlockTableRecord_0=function(){return(kW=b._emscripten_bind_MdDbBlockTableRecord_MdDbBlockTableRecord_0=b.asm.emscripten_bind_MdDbBlockTableRecord_MdDbBlockTableRecord_0).apply(null,arguments)},lW=b._emscripten_bind_MdDbBlockTableRecord_appendAcDbEntity_1=function(){return(lW=b._emscripten_bind_MdDbBlockTableRecord_appendAcDbEntity_1=b.asm.emscripten_bind_MdDbBlockTableRecord_appendAcDbEntity_1).apply(null,arguments)},mW=b._emscripten_bind_MdDbBlockTableRecord_getAllEntityId_1=
  1027. function(){return(mW=b._emscripten_bind_MdDbBlockTableRecord_getAllEntityId_1=b.asm.emscripten_bind_MdDbBlockTableRecord_getAllEntityId_1).apply(null,arguments)},nW=b._emscripten_bind_MdDbBlockTableRecord_origin_0=function(){return(nW=b._emscripten_bind_MdDbBlockTableRecord_origin_0=b.asm.emscripten_bind_MdDbBlockTableRecord_origin_0).apply(null,arguments)},oW=b._emscripten_bind_MdDbBlockTableRecord_setOrigin_1=function(){return(oW=b._emscripten_bind_MdDbBlockTableRecord_setOrigin_1=b.asm.emscripten_bind_MdDbBlockTableRecord_setOrigin_1).apply(null,
  1028. arguments)},pW=b._emscripten_bind_MdDbBlockTableRecord_getBoundingBox_0=function(){return(pW=b._emscripten_bind_MdDbBlockTableRecord_getBoundingBox_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getBoundingBox_0).apply(null,arguments)},qW=b._emscripten_bind_MdDbBlockTableRecord_invalidBoundingBoxBuffer_0=function(){return(qW=b._emscripten_bind_MdDbBlockTableRecord_invalidBoundingBoxBuffer_0=b.asm.emscripten_bind_MdDbBlockTableRecord_invalidBoundingBoxBuffer_0).apply(null,arguments)},rW=b._emscripten_bind_MdDbBlockTableRecord_getName_0=
  1029. function(){return(rW=b._emscripten_bind_MdDbBlockTableRecord_getName_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getName_0).apply(null,arguments)},sW=b._emscripten_bind_MdDbBlockTableRecord_setName_1=function(){return(sW=b._emscripten_bind_MdDbBlockTableRecord_setName_1=b.asm.emscripten_bind_MdDbBlockTableRecord_setName_1).apply(null,arguments)},tW=b._emscripten_bind_MdDbBlockTableRecord_getMinMaxDrawOrder_0=function(){return(tW=b._emscripten_bind_MdDbBlockTableRecord_getMinMaxDrawOrder_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getMinMaxDrawOrder_0).apply(null,
  1030. arguments)},uW=b._emscripten_bind_MdDbBlockTableRecord_GetObjectID_0=function(){return(uW=b._emscripten_bind_MdDbBlockTableRecord_GetObjectID_0=b.asm.emscripten_bind_MdDbBlockTableRecord_GetObjectID_0).apply(null,arguments)},vW=b._emscripten_bind_MdDbBlockTableRecord_Erase_0=function(){return(vW=b._emscripten_bind_MdDbBlockTableRecord_Erase_0=b.asm.emscripten_bind_MdDbBlockTableRecord_Erase_0).apply(null,arguments)},wW=b._emscripten_bind_MdDbBlockTableRecord_isErased_0=function(){return(wW=b._emscripten_bind_MdDbBlockTableRecord_isErased_0=
  1031. b.asm.emscripten_bind_MdDbBlockTableRecord_isErased_0).apply(null,arguments)},xW=b._emscripten_bind_MdDbBlockTableRecord_unErase_0=function(){return(xW=b._emscripten_bind_MdDbBlockTableRecord_unErase_0=b.asm.emscripten_bind_MdDbBlockTableRecord_unErase_0).apply(null,arguments)},yW=b._emscripten_bind_MdDbBlockTableRecord_ConnectionTempObject_1=function(){return(yW=b._emscripten_bind_MdDbBlockTableRecord_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbBlockTableRecord_ConnectionTempObject_1).apply(null,
  1032. arguments)},zW=b._emscripten_bind_MdDbBlockTableRecord_GetExtensionDictionary_0=function(){return(zW=b._emscripten_bind_MdDbBlockTableRecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockTableRecord_GetExtensionDictionary_0).apply(null,arguments)},AW=b._emscripten_bind_MdDbBlockTableRecord_CreateExtensionDictionary_0=function(){return(AW=b._emscripten_bind_MdDbBlockTableRecord_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockTableRecord_CreateExtensionDictionary_0).apply(null,
  1033. arguments)},BW=b._emscripten_bind_MdDbBlockTableRecord_IsHaveExtensionDictionary_0=function(){return(BW=b._emscripten_bind_MdDbBlockTableRecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockTableRecord_IsHaveExtensionDictionary_0).apply(null,arguments)},CW=b._emscripten_bind_MdDbBlockTableRecord_Clone_0=function(){return(CW=b._emscripten_bind_MdDbBlockTableRecord_Clone_0=b.asm.emscripten_bind_MdDbBlockTableRecord_Clone_0).apply(null,arguments)},DW=b._emscripten_bind_MdDbBlockTableRecord_GetHandle_0=
  1034. function(){return(DW=b._emscripten_bind_MdDbBlockTableRecord_GetHandle_0=b.asm.emscripten_bind_MdDbBlockTableRecord_GetHandle_0).apply(null,arguments)},EW=b._emscripten_bind_MdDbBlockTableRecord_GetDatabase_0=function(){return(EW=b._emscripten_bind_MdDbBlockTableRecord_GetDatabase_0=b.asm.emscripten_bind_MdDbBlockTableRecord_GetDatabase_0).apply(null,arguments)},FW=b._emscripten_bind_MdDbBlockTableRecord_GetDatabaseIndexId_0=function(){return(FW=b._emscripten_bind_MdDbBlockTableRecord_GetDatabaseIndexId_0=
  1035. b.asm.emscripten_bind_MdDbBlockTableRecord_GetDatabaseIndexId_0).apply(null,arguments)},GW=b._emscripten_bind_MdDbBlockTableRecord_GetOwnerID_0=function(){return(GW=b._emscripten_bind_MdDbBlockTableRecord_GetOwnerID_0=b.asm.emscripten_bind_MdDbBlockTableRecord_GetOwnerID_0).apply(null,arguments)},HW=b._emscripten_bind_MdDbBlockTableRecord_assertObjectModification_1=function(){return(HW=b._emscripten_bind_MdDbBlockTableRecord_assertObjectModification_1=b.asm.emscripten_bind_MdDbBlockTableRecord_assertObjectModification_1).apply(null,
  1036. arguments)},IW=b._emscripten_bind_MdDbBlockTableRecord_moveGripPointsAt_4=function(){return(IW=b._emscripten_bind_MdDbBlockTableRecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbBlockTableRecord_moveGripPointsAt_4).apply(null,arguments)},JW=b._emscripten_bind_MdDbBlockTableRecord_getGripPoints_0=function(){return(JW=b._emscripten_bind_MdDbBlockTableRecord_getGripPoints_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getGripPoints_0).apply(null,arguments)},KW=b._emscripten_bind_MdDbBlockTableRecord_getObjectName_0=
  1037. function(){return(KW=b._emscripten_bind_MdDbBlockTableRecord_getObjectName_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getObjectName_0).apply(null,arguments)},LW=b._emscripten_bind_MdDbBlockTableRecord_getDxf0_0=function(){return(LW=b._emscripten_bind_MdDbBlockTableRecord_getDxf0_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getDxf0_0).apply(null,arguments)},MW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityTypeName_0=function(){return(MW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityTypeName_0=
  1038. b.asm.emscripten_bind_MdDbBlockTableRecord_getCustomEntityTypeName_0).apply(null,arguments)},NW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityid_0=function(){return(NW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityid_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getCustomEntityid_0).apply(null,arguments)},OW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityTempid_0=function(){return(OW=b._emscripten_bind_MdDbBlockTableRecord_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getCustomEntityTempid_0).apply(null,
  1039. arguments)},PW=b._emscripten_bind_MdDbBlockTableRecord_setCustomEntityTempid_1=function(){return(PW=b._emscripten_bind_MdDbBlockTableRecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbBlockTableRecord_setCustomEntityTempid_1).apply(null,arguments)},QW=b._emscripten_bind_MdDbBlockTableRecord_getJson_0=function(){return(QW=b._emscripten_bind_MdDbBlockTableRecord_getJson_0=b.asm.emscripten_bind_MdDbBlockTableRecord_getJson_0).apply(null,arguments)},RW=b._emscripten_bind_MdDbBlockTableRecord_setJson_1=
  1040. function(){return(RW=b._emscripten_bind_MdDbBlockTableRecord_setJson_1=b.asm.emscripten_bind_MdDbBlockTableRecord_setJson_1).apply(null,arguments)},SW=b._emscripten_bind_MdDbBlockTableRecord_isKindOf_1=function(){return(SW=b._emscripten_bind_MdDbBlockTableRecord_isKindOf_1=b.asm.emscripten_bind_MdDbBlockTableRecord_isKindOf_1).apply(null,arguments)},TW=b._emscripten_bind_MdDbBlockTableRecord_isNull_0=function(){return(TW=b._emscripten_bind_MdDbBlockTableRecord_isNull_0=b.asm.emscripten_bind_MdDbBlockTableRecord_isNull_0).apply(null,
  1041. arguments)},UW=b._emscripten_bind_MdDbBlockTableRecord___destroy___0=function(){return(UW=b._emscripten_bind_MdDbBlockTableRecord___destroy___0=b.asm.emscripten_bind_MdDbBlockTableRecord___destroy___0).apply(null,arguments)},VW=b._emscripten_bind_MdDbBlockTable_getAllRecordId_1=function(){return(VW=b._emscripten_bind_MdDbBlockTable_getAllRecordId_1=b.asm.emscripten_bind_MdDbBlockTable_getAllRecordId_1).apply(null,arguments)},WW=b._emscripten_bind_MdDbBlockTable_add_1=function(){return(WW=b._emscripten_bind_MdDbBlockTable_add_1=
  1042. b.asm.emscripten_bind_MdDbBlockTable_add_1).apply(null,arguments)},XW=b._emscripten_bind_MdDbBlockTable_get_2=function(){return(XW=b._emscripten_bind_MdDbBlockTable_get_2=b.asm.emscripten_bind_MdDbBlockTable_get_2).apply(null,arguments)},YW=b._emscripten_bind_MdDbBlockTable_GetObjectID_0=function(){return(YW=b._emscripten_bind_MdDbBlockTable_GetObjectID_0=b.asm.emscripten_bind_MdDbBlockTable_GetObjectID_0).apply(null,arguments)},ZW=b._emscripten_bind_MdDbBlockTable_Erase_0=function(){return(ZW=b._emscripten_bind_MdDbBlockTable_Erase_0=
  1043. b.asm.emscripten_bind_MdDbBlockTable_Erase_0).apply(null,arguments)},$W=b._emscripten_bind_MdDbBlockTable_isErased_0=function(){return($W=b._emscripten_bind_MdDbBlockTable_isErased_0=b.asm.emscripten_bind_MdDbBlockTable_isErased_0).apply(null,arguments)},aX=b._emscripten_bind_MdDbBlockTable_unErase_0=function(){return(aX=b._emscripten_bind_MdDbBlockTable_unErase_0=b.asm.emscripten_bind_MdDbBlockTable_unErase_0).apply(null,arguments)},bX=b._emscripten_bind_MdDbBlockTable_ConnectionTempObject_1=function(){return(bX=
  1044. b._emscripten_bind_MdDbBlockTable_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbBlockTable_ConnectionTempObject_1).apply(null,arguments)},cX=b._emscripten_bind_MdDbBlockTable_GetExtensionDictionary_0=function(){return(cX=b._emscripten_bind_MdDbBlockTable_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockTable_GetExtensionDictionary_0).apply(null,arguments)},dX=b._emscripten_bind_MdDbBlockTable_CreateExtensionDictionary_0=function(){return(dX=b._emscripten_bind_MdDbBlockTable_CreateExtensionDictionary_0=
  1045. b.asm.emscripten_bind_MdDbBlockTable_CreateExtensionDictionary_0).apply(null,arguments)},eX=b._emscripten_bind_MdDbBlockTable_IsHaveExtensionDictionary_0=function(){return(eX=b._emscripten_bind_MdDbBlockTable_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbBlockTable_IsHaveExtensionDictionary_0).apply(null,arguments)},fX=b._emscripten_bind_MdDbBlockTable_Clone_0=function(){return(fX=b._emscripten_bind_MdDbBlockTable_Clone_0=b.asm.emscripten_bind_MdDbBlockTable_Clone_0).apply(null,arguments)},
  1046. gX=b._emscripten_bind_MdDbBlockTable_GetHandle_0=function(){return(gX=b._emscripten_bind_MdDbBlockTable_GetHandle_0=b.asm.emscripten_bind_MdDbBlockTable_GetHandle_0).apply(null,arguments)},hX=b._emscripten_bind_MdDbBlockTable_GetDatabase_0=function(){return(hX=b._emscripten_bind_MdDbBlockTable_GetDatabase_0=b.asm.emscripten_bind_MdDbBlockTable_GetDatabase_0).apply(null,arguments)},iX=b._emscripten_bind_MdDbBlockTable_GetDatabaseIndexId_0=function(){return(iX=b._emscripten_bind_MdDbBlockTable_GetDatabaseIndexId_0=
  1047. b.asm.emscripten_bind_MdDbBlockTable_GetDatabaseIndexId_0).apply(null,arguments)},jX=b._emscripten_bind_MdDbBlockTable_GetOwnerID_0=function(){return(jX=b._emscripten_bind_MdDbBlockTable_GetOwnerID_0=b.asm.emscripten_bind_MdDbBlockTable_GetOwnerID_0).apply(null,arguments)},kX=b._emscripten_bind_MdDbBlockTable_assertObjectModification_1=function(){return(kX=b._emscripten_bind_MdDbBlockTable_assertObjectModification_1=b.asm.emscripten_bind_MdDbBlockTable_assertObjectModification_1).apply(null,arguments)},
  1048. lX=b._emscripten_bind_MdDbBlockTable_moveGripPointsAt_4=function(){return(lX=b._emscripten_bind_MdDbBlockTable_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbBlockTable_moveGripPointsAt_4).apply(null,arguments)},mX=b._emscripten_bind_MdDbBlockTable_getGripPoints_0=function(){return(mX=b._emscripten_bind_MdDbBlockTable_getGripPoints_0=b.asm.emscripten_bind_MdDbBlockTable_getGripPoints_0).apply(null,arguments)},nX=b._emscripten_bind_MdDbBlockTable_getObjectName_0=function(){return(nX=b._emscripten_bind_MdDbBlockTable_getObjectName_0=
  1049. b.asm.emscripten_bind_MdDbBlockTable_getObjectName_0).apply(null,arguments)},oX=b._emscripten_bind_MdDbBlockTable_getDxf0_0=function(){return(oX=b._emscripten_bind_MdDbBlockTable_getDxf0_0=b.asm.emscripten_bind_MdDbBlockTable_getDxf0_0).apply(null,arguments)},pX=b._emscripten_bind_MdDbBlockTable_getCustomEntityTypeName_0=function(){return(pX=b._emscripten_bind_MdDbBlockTable_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbBlockTable_getCustomEntityTypeName_0).apply(null,arguments)},qX=b._emscripten_bind_MdDbBlockTable_getCustomEntityid_0=
  1050. function(){return(qX=b._emscripten_bind_MdDbBlockTable_getCustomEntityid_0=b.asm.emscripten_bind_MdDbBlockTable_getCustomEntityid_0).apply(null,arguments)},rX=b._emscripten_bind_MdDbBlockTable_getCustomEntityTempid_0=function(){return(rX=b._emscripten_bind_MdDbBlockTable_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbBlockTable_getCustomEntityTempid_0).apply(null,arguments)},sX=b._emscripten_bind_MdDbBlockTable_setCustomEntityTempid_1=function(){return(sX=b._emscripten_bind_MdDbBlockTable_setCustomEntityTempid_1=
  1051. b.asm.emscripten_bind_MdDbBlockTable_setCustomEntityTempid_1).apply(null,arguments)},tX=b._emscripten_bind_MdDbBlockTable_getJson_0=function(){return(tX=b._emscripten_bind_MdDbBlockTable_getJson_0=b.asm.emscripten_bind_MdDbBlockTable_getJson_0).apply(null,arguments)},uX=b._emscripten_bind_MdDbBlockTable_setJson_1=function(){return(uX=b._emscripten_bind_MdDbBlockTable_setJson_1=b.asm.emscripten_bind_MdDbBlockTable_setJson_1).apply(null,arguments)},vX=b._emscripten_bind_MdDbBlockTable_isKindOf_1=function(){return(vX=
  1052. b._emscripten_bind_MdDbBlockTable_isKindOf_1=b.asm.emscripten_bind_MdDbBlockTable_isKindOf_1).apply(null,arguments)},wX=b._emscripten_bind_MdDbBlockTable_isNull_0=function(){return(wX=b._emscripten_bind_MdDbBlockTable_isNull_0=b.asm.emscripten_bind_MdDbBlockTable_isNull_0).apply(null,arguments)},xX=b._emscripten_bind_MdDbBlockTable___destroy___0=function(){return(xX=b._emscripten_bind_MdDbBlockTable___destroy___0=b.asm.emscripten_bind_MdDbBlockTable___destroy___0).apply(null,arguments)},yX=b._emscripten_bind_McDrawSelSet_McDrawSelSet_0=
  1053. function(){return(yX=b._emscripten_bind_McDrawSelSet_McDrawSelSet_0=b.asm.emscripten_bind_McDrawSelSet_McDrawSelSet_0).apply(null,arguments)},zX=b._emscripten_bind_McDrawSelSet_allSelect_1=function(){return(zX=b._emscripten_bind_McDrawSelSet_allSelect_1=b.asm.emscripten_bind_McDrawSelSet_allSelect_1).apply(null,arguments)},AX=b._emscripten_bind_McDrawSelSet_pointSelect_4=function(){return(AX=b._emscripten_bind_McDrawSelSet_pointSelect_4=b.asm.emscripten_bind_McDrawSelSet_pointSelect_4).apply(null,
  1054. arguments)},BX=b._emscripten_bind_McDrawSelSet_crossingSelect_5=function(){return(BX=b._emscripten_bind_McDrawSelSet_crossingSelect_5=b.asm.emscripten_bind_McDrawSelSet_crossingSelect_5).apply(null,arguments)},CX=b._emscripten_bind_McDrawSelSet_userSelect_6=function(){return(CX=b._emscripten_bind_McDrawSelSet_userSelect_6=b.asm.emscripten_bind_McDrawSelSet_userSelect_6).apply(null,arguments)},DX=b._emscripten_bind_McDrawSelSet_userPointSelect_4=function(){return(DX=b._emscripten_bind_McDrawSelSet_userPointSelect_4=
  1055. b.asm.emscripten_bind_McDrawSelSet_userPointSelect_4).apply(null,arguments)},EX=b._emscripten_bind_McDrawSelSet_getFilterEntity_2=function(){return(EX=b._emscripten_bind_McDrawSelSet_getFilterEntity_2=b.asm.emscripten_bind_McDrawSelSet_getFilterEntity_2).apply(null,arguments)},FX=b._emscripten_bind_McDrawSelSet_highlightEntity_1=function(){return(FX=b._emscripten_bind_McDrawSelSet_highlightEntity_1=b.asm.emscripten_bind_McDrawSelSet_highlightEntity_1).apply(null,arguments)},GX=b._emscripten_bind_McDrawSelSet_count_0=
  1056. function(){return(GX=b._emscripten_bind_McDrawSelSet_count_0=b.asm.emscripten_bind_McDrawSelSet_count_0).apply(null,arguments)},HX=b._emscripten_bind_McDrawSelSet_item_1=function(){return(HX=b._emscripten_bind_McDrawSelSet_item_1=b.asm.emscripten_bind_McDrawSelSet_item_1).apply(null,arguments)},IX=b._emscripten_bind_McDrawSelSet_getObjectName_0=function(){return(IX=b._emscripten_bind_McDrawSelSet_getObjectName_0=b.asm.emscripten_bind_McDrawSelSet_getObjectName_0).apply(null,arguments)},JX=b._emscripten_bind_McDrawSelSet_getDxf0_0=
  1057. function(){return(JX=b._emscripten_bind_McDrawSelSet_getDxf0_0=b.asm.emscripten_bind_McDrawSelSet_getDxf0_0).apply(null,arguments)},KX=b._emscripten_bind_McDrawSelSet_getCustomEntityTypeName_0=function(){return(KX=b._emscripten_bind_McDrawSelSet_getCustomEntityTypeName_0=b.asm.emscripten_bind_McDrawSelSet_getCustomEntityTypeName_0).apply(null,arguments)},LX=b._emscripten_bind_McDrawSelSet_getCustomEntityid_0=function(){return(LX=b._emscripten_bind_McDrawSelSet_getCustomEntityid_0=b.asm.emscripten_bind_McDrawSelSet_getCustomEntityid_0).apply(null,
  1058. arguments)},MX=b._emscripten_bind_McDrawSelSet_getCustomEntityTempid_0=function(){return(MX=b._emscripten_bind_McDrawSelSet_getCustomEntityTempid_0=b.asm.emscripten_bind_McDrawSelSet_getCustomEntityTempid_0).apply(null,arguments)},NX=b._emscripten_bind_McDrawSelSet_setCustomEntityTempid_1=function(){return(NX=b._emscripten_bind_McDrawSelSet_setCustomEntityTempid_1=b.asm.emscripten_bind_McDrawSelSet_setCustomEntityTempid_1).apply(null,arguments)},OX=b._emscripten_bind_McDrawSelSet_getJson_0=function(){return(OX=
  1059. b._emscripten_bind_McDrawSelSet_getJson_0=b.asm.emscripten_bind_McDrawSelSet_getJson_0).apply(null,arguments)},PX=b._emscripten_bind_McDrawSelSet_setJson_1=function(){return(PX=b._emscripten_bind_McDrawSelSet_setJson_1=b.asm.emscripten_bind_McDrawSelSet_setJson_1).apply(null,arguments)},QX=b._emscripten_bind_McDrawSelSet_isKindOf_1=function(){return(QX=b._emscripten_bind_McDrawSelSet_isKindOf_1=b.asm.emscripten_bind_McDrawSelSet_isKindOf_1).apply(null,arguments)},RX=b._emscripten_bind_McDrawSelSet_isNull_0=
  1060. function(){return(RX=b._emscripten_bind_McDrawSelSet_isNull_0=b.asm.emscripten_bind_McDrawSelSet_isNull_0).apply(null,arguments)},SX=b._emscripten_bind_McDrawSelSet___destroy___0=function(){return(SX=b._emscripten_bind_McDrawSelSet___destroy___0=b.asm.emscripten_bind_McDrawSelSet___destroy___0).apply(null,arguments)},TX=b._emscripten_bind_MdDbEllipse_MdDbEllipse_0=function(){return(TX=b._emscripten_bind_MdDbEllipse_MdDbEllipse_0=b.asm.emscripten_bind_MdDbEllipse_MdDbEllipse_0).apply(null,arguments)},
  1061. UX=b._emscripten_bind_MdDbEllipse_center_0=function(){return(UX=b._emscripten_bind_MdDbEllipse_center_0=b.asm.emscripten_bind_MdDbEllipse_center_0).apply(null,arguments)},VX=b._emscripten_bind_MdDbEllipse_setCenter_1=function(){return(VX=b._emscripten_bind_MdDbEllipse_setCenter_1=b.asm.emscripten_bind_MdDbEllipse_setCenter_1).apply(null,arguments)},WX=b._emscripten_bind_MdDbEllipse_majorAxis_0=function(){return(WX=b._emscripten_bind_MdDbEllipse_majorAxis_0=b.asm.emscripten_bind_MdDbEllipse_majorAxis_0).apply(null,
  1062. arguments)},XX=b._emscripten_bind_MdDbEllipse_minorAxis_0=function(){return(XX=b._emscripten_bind_MdDbEllipse_minorAxis_0=b.asm.emscripten_bind_MdDbEllipse_minorAxis_0).apply(null,arguments)},YX=b._emscripten_bind_MdDbEllipse_setMajorAxis_1=function(){return(YX=b._emscripten_bind_MdDbEllipse_setMajorAxis_1=b.asm.emscripten_bind_MdDbEllipse_setMajorAxis_1).apply(null,arguments)},ZX=b._emscripten_bind_MdDbEllipse_setMinorAxis_1=function(){return(ZX=b._emscripten_bind_MdDbEllipse_setMinorAxis_1=b.asm.emscripten_bind_MdDbEllipse_setMinorAxis_1).apply(null,
  1063. arguments)},$X=b._emscripten_bind_MdDbEllipse_radiusRatio_0=function(){return($X=b._emscripten_bind_MdDbEllipse_radiusRatio_0=b.asm.emscripten_bind_MdDbEllipse_radiusRatio_0).apply(null,arguments)},aY=b._emscripten_bind_MdDbEllipse_setRadiusRatio_1=function(){return(aY=b._emscripten_bind_MdDbEllipse_setRadiusRatio_1=b.asm.emscripten_bind_MdDbEllipse_setRadiusRatio_1).apply(null,arguments)},bY=b._emscripten_bind_MdDbEllipse_startAngle_0=function(){return(bY=b._emscripten_bind_MdDbEllipse_startAngle_0=
  1064. b.asm.emscripten_bind_MdDbEllipse_startAngle_0).apply(null,arguments)},cY=b._emscripten_bind_MdDbEllipse_setStartAngle_1=function(){return(cY=b._emscripten_bind_MdDbEllipse_setStartAngle_1=b.asm.emscripten_bind_MdDbEllipse_setStartAngle_1).apply(null,arguments)},dY=b._emscripten_bind_MdDbEllipse_endAngle_0=function(){return(dY=b._emscripten_bind_MdDbEllipse_endAngle_0=b.asm.emscripten_bind_MdDbEllipse_endAngle_0).apply(null,arguments)},eY=b._emscripten_bind_MdDbEllipse_setEndAngle_1=function(){return(eY=
  1065. b._emscripten_bind_MdDbEllipse_setEndAngle_1=b.asm.emscripten_bind_MdDbEllipse_setEndAngle_1).apply(null,arguments)},fY=b._emscripten_bind_MdDbEllipse_InitData_5=function(){return(fY=b._emscripten_bind_MdDbEllipse_InitData_5=b.asm.emscripten_bind_MdDbEllipse_InitData_5).apply(null,arguments)},gY=b._emscripten_bind_MdDbEllipse_getStartParam_0=function(){return(gY=b._emscripten_bind_MdDbEllipse_getStartParam_0=b.asm.emscripten_bind_MdDbEllipse_getStartParam_0).apply(null,arguments)},hY=b._emscripten_bind_MdDbEllipse_getEndParam_0=
  1066. function(){return(hY=b._emscripten_bind_MdDbEllipse_getEndParam_0=b.asm.emscripten_bind_MdDbEllipse_getEndParam_0).apply(null,arguments)},iY=b._emscripten_bind_MdDbEllipse_getDistAtParam_1=function(){return(iY=b._emscripten_bind_MdDbEllipse_getDistAtParam_1=b.asm.emscripten_bind_MdDbEllipse_getDistAtParam_1).apply(null,arguments)},jY=b._emscripten_bind_MdDbEllipse_getParamAtDist_1=function(){return(jY=b._emscripten_bind_MdDbEllipse_getParamAtDist_1=b.asm.emscripten_bind_MdDbEllipse_getParamAtDist_1).apply(null,
  1067. arguments)},kY=b._emscripten_bind_MdDbEllipse_getDistAtPoint_1=function(){return(kY=b._emscripten_bind_MdDbEllipse_getDistAtPoint_1=b.asm.emscripten_bind_MdDbEllipse_getDistAtPoint_1).apply(null,arguments)},lY=b._emscripten_bind_MdDbEllipse_getPointAtDist_1=function(){return(lY=b._emscripten_bind_MdDbEllipse_getPointAtDist_1=b.asm.emscripten_bind_MdDbEllipse_getPointAtDist_1).apply(null,arguments)},mY=b._emscripten_bind_MdDbEllipse_getStartPoint_0=function(){return(mY=b._emscripten_bind_MdDbEllipse_getStartPoint_0=
  1068. b.asm.emscripten_bind_MdDbEllipse_getStartPoint_0).apply(null,arguments)},nY=b._emscripten_bind_MdDbEllipse_getEndPoint_0=function(){return(nY=b._emscripten_bind_MdDbEllipse_getEndPoint_0=b.asm.emscripten_bind_MdDbEllipse_getEndPoint_0).apply(null,arguments)},oY=b._emscripten_bind_MdDbEllipse_getPointAtParam_1=function(){return(oY=b._emscripten_bind_MdDbEllipse_getPointAtParam_1=b.asm.emscripten_bind_MdDbEllipse_getPointAtParam_1).apply(null,arguments)},pY=b._emscripten_bind_MdDbEllipse_getParamAtPoint_1=
  1069. function(){return(pY=b._emscripten_bind_MdDbEllipse_getParamAtPoint_1=b.asm.emscripten_bind_MdDbEllipse_getParamAtPoint_1).apply(null,arguments)},qY=b._emscripten_bind_MdDbEllipse_getFirstDeriv_1=function(){return(qY=b._emscripten_bind_MdDbEllipse_getFirstDeriv_1=b.asm.emscripten_bind_MdDbEllipse_getFirstDeriv_1).apply(null,arguments)},rY=b._emscripten_bind_MdDbEllipse_getFirstDerivEx_1=function(){return(rY=b._emscripten_bind_MdDbEllipse_getFirstDerivEx_1=b.asm.emscripten_bind_MdDbEllipse_getFirstDerivEx_1).apply(null,
  1070. arguments)},sY=b._emscripten_bind_MdDbEllipse_getClosestPointTo_2=function(){return(sY=b._emscripten_bind_MdDbEllipse_getClosestPointTo_2=b.asm.emscripten_bind_MdDbEllipse_getClosestPointTo_2).apply(null,arguments)},tY=b._emscripten_bind_MdDbEllipse_offsetCurves_2=function(){return(tY=b._emscripten_bind_MdDbEllipse_offsetCurves_2=b.asm.emscripten_bind_MdDbEllipse_offsetCurves_2).apply(null,arguments)},uY=b._emscripten_bind_MdDbEllipse_splitCurves_1=function(){return(uY=b._emscripten_bind_MdDbEllipse_splitCurves_1=
  1071. b.asm.emscripten_bind_MdDbEllipse_splitCurves_1).apply(null,arguments)},vY=b._emscripten_bind_MdDbEllipse_getSamplePoints_1=function(){return(vY=b._emscripten_bind_MdDbEllipse_getSamplePoints_1=b.asm.emscripten_bind_MdDbEllipse_getSamplePoints_1).apply(null,arguments)},wY=b._emscripten_bind_MdDbEllipse_getLength_0=function(){return(wY=b._emscripten_bind_MdDbEllipse_getLength_0=b.asm.emscripten_bind_MdDbEllipse_getLength_0).apply(null,arguments)},xY=b._emscripten_bind_MdDbEllipse_explode_0=function(){return(xY=
  1072. b._emscripten_bind_MdDbEllipse_explode_0=b.asm.emscripten_bind_MdDbEllipse_explode_0).apply(null,arguments)},yY=b._emscripten_bind_MdDbEllipse_TrueColor_0=function(){return(yY=b._emscripten_bind_MdDbEllipse_TrueColor_0=b.asm.emscripten_bind_MdDbEllipse_TrueColor_0).apply(null,arguments)},zY=b._emscripten_bind_MdDbEllipse_SetTrueColor_1=function(){return(zY=b._emscripten_bind_MdDbEllipse_SetTrueColor_1=b.asm.emscripten_bind_MdDbEllipse_SetTrueColor_1).apply(null,arguments)},AY=b._emscripten_bind_MdDbEllipse_ColorIndex_0=
  1073. function(){return(AY=b._emscripten_bind_MdDbEllipse_ColorIndex_0=b.asm.emscripten_bind_MdDbEllipse_ColorIndex_0).apply(null,arguments)},BY=b._emscripten_bind_MdDbEllipse_SetColorIndex_1=function(){return(BY=b._emscripten_bind_MdDbEllipse_SetColorIndex_1=b.asm.emscripten_bind_MdDbEllipse_SetColorIndex_1).apply(null,arguments)},CY=b._emscripten_bind_MdDbEllipse_Layer_0=function(){return(CY=b._emscripten_bind_MdDbEllipse_Layer_0=b.asm.emscripten_bind_MdDbEllipse_Layer_0).apply(null,arguments)},DY=b._emscripten_bind_MdDbEllipse_SetLayer_1=
  1074. function(){return(DY=b._emscripten_bind_MdDbEllipse_SetLayer_1=b.asm.emscripten_bind_MdDbEllipse_SetLayer_1).apply(null,arguments)},EY=b._emscripten_bind_MdDbEllipse_LinetypeScale_0=function(){return(EY=b._emscripten_bind_MdDbEllipse_LinetypeScale_0=b.asm.emscripten_bind_MdDbEllipse_LinetypeScale_0).apply(null,arguments)},FY=b._emscripten_bind_MdDbEllipse_SetLinetypeScale_1=function(){return(FY=b._emscripten_bind_MdDbEllipse_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbEllipse_SetLinetypeScale_1).apply(null,
  1075. arguments)},GY=b._emscripten_bind_MdDbEllipse_Visible_0=function(){return(GY=b._emscripten_bind_MdDbEllipse_Visible_0=b.asm.emscripten_bind_MdDbEllipse_Visible_0).apply(null,arguments)},HY=b._emscripten_bind_MdDbEllipse_SetVisible_1=function(){return(HY=b._emscripten_bind_MdDbEllipse_SetVisible_1=b.asm.emscripten_bind_MdDbEllipse_SetVisible_1).apply(null,arguments)},IY=b._emscripten_bind_MdDbEllipse_Lineweight_0=function(){return(IY=b._emscripten_bind_MdDbEllipse_Lineweight_0=b.asm.emscripten_bind_MdDbEllipse_Lineweight_0).apply(null,
  1076. arguments)},JY=b._emscripten_bind_MdDbEllipse_SetLineweight_1=function(){return(JY=b._emscripten_bind_MdDbEllipse_SetLineweight_1=b.asm.emscripten_bind_MdDbEllipse_SetLineweight_1).apply(null,arguments)},KY=b._emscripten_bind_MdDbEllipse_TextStyle_0=function(){return(KY=b._emscripten_bind_MdDbEllipse_TextStyle_0=b.asm.emscripten_bind_MdDbEllipse_TextStyle_0).apply(null,arguments)},LY=b._emscripten_bind_MdDbEllipse_SetTextStyle_1=function(){return(LY=b._emscripten_bind_MdDbEllipse_SetTextStyle_1=b.asm.emscripten_bind_MdDbEllipse_SetTextStyle_1).apply(null,
  1077. arguments)},MY=b._emscripten_bind_MdDbEllipse_Highlight_1=function(){return(MY=b._emscripten_bind_MdDbEllipse_Highlight_1=b.asm.emscripten_bind_MdDbEllipse_Highlight_1).apply(null,arguments)},NY=b._emscripten_bind_MdDbEllipse_Move_2=function(){return(NY=b._emscripten_bind_MdDbEllipse_Move_2=b.asm.emscripten_bind_MdDbEllipse_Move_2).apply(null,arguments)},OY=b._emscripten_bind_MdDbEllipse_Rotate_2=function(){return(OY=b._emscripten_bind_MdDbEllipse_Rotate_2=b.asm.emscripten_bind_MdDbEllipse_Rotate_2).apply(null,
  1078. arguments)},PY=b._emscripten_bind_MdDbEllipse_Mirror_2=function(){return(PY=b._emscripten_bind_MdDbEllipse_Mirror_2=b.asm.emscripten_bind_MdDbEllipse_Mirror_2).apply(null,arguments)},QY=b._emscripten_bind_MdDbEllipse_ScaleEntity_2=function(){return(QY=b._emscripten_bind_MdDbEllipse_ScaleEntity_2=b.asm.emscripten_bind_MdDbEllipse_ScaleEntity_2).apply(null,arguments)},RY=b._emscripten_bind_MdDbEllipse_TransformBy_1=function(){return(RY=b._emscripten_bind_MdDbEllipse_TransformBy_1=b.asm.emscripten_bind_MdDbEllipse_TransformBy_1).apply(null,
  1079. arguments)},SY=b._emscripten_bind_MdDbEllipse_GetBoundingBox_0=function(){return(SY=b._emscripten_bind_MdDbEllipse_GetBoundingBox_0=b.asm.emscripten_bind_MdDbEllipse_GetBoundingBox_0).apply(null,arguments)},TY=b._emscripten_bind_MdDbEllipse_GetXData_1=function(){return(TY=b._emscripten_bind_MdDbEllipse_GetXData_1=b.asm.emscripten_bind_MdDbEllipse_GetXData_1).apply(null,arguments)},UY=b._emscripten_bind_MdDbEllipse_SetXData_1=function(){return(UY=b._emscripten_bind_MdDbEllipse_SetXData_1=b.asm.emscripten_bind_MdDbEllipse_SetXData_1).apply(null,
  1080. arguments)},VY=b._emscripten_bind_MdDbEllipse_GetxDataString_2=function(){return(VY=b._emscripten_bind_MdDbEllipse_GetxDataString_2=b.asm.emscripten_bind_MdDbEllipse_GetxDataString_2).apply(null,arguments)},WY=b._emscripten_bind_MdDbEllipse_SetxDataString_3=function(){return(WY=b._emscripten_bind_MdDbEllipse_SetxDataString_3=b.asm.emscripten_bind_MdDbEllipse_SetxDataString_3).apply(null,arguments)},XY=b._emscripten_bind_MdDbEllipse_GetxDataDouble_2=function(){return(XY=b._emscripten_bind_MdDbEllipse_GetxDataDouble_2=
  1081. b.asm.emscripten_bind_MdDbEllipse_GetxDataDouble_2).apply(null,arguments)},YY=b._emscripten_bind_MdDbEllipse_SetxDataDouble_3=function(){return(YY=b._emscripten_bind_MdDbEllipse_SetxDataDouble_3=b.asm.emscripten_bind_MdDbEllipse_SetxDataDouble_3).apply(null,arguments)},ZY=b._emscripten_bind_MdDbEllipse_GetxDataLong_2=function(){return(ZY=b._emscripten_bind_MdDbEllipse_GetxDataLong_2=b.asm.emscripten_bind_MdDbEllipse_GetxDataLong_2).apply(null,arguments)},$Y=b._emscripten_bind_MdDbEllipse_SetxDataLong_3=
  1082. function(){return($Y=b._emscripten_bind_MdDbEllipse_SetxDataLong_3=b.asm.emscripten_bind_MdDbEllipse_SetxDataLong_3).apply(null,arguments)},aZ=b._emscripten_bind_MdDbEllipse_GetxDataPoint_2=function(){return(aZ=b._emscripten_bind_MdDbEllipse_GetxDataPoint_2=b.asm.emscripten_bind_MdDbEllipse_GetxDataPoint_2).apply(null,arguments)},bZ=b._emscripten_bind_MdDbEllipse_SetxDataPoint_3=function(){return(bZ=b._emscripten_bind_MdDbEllipse_SetxDataPoint_3=b.asm.emscripten_bind_MdDbEllipse_SetxDataPoint_3).apply(null,
  1083. arguments)},cZ=b._emscripten_bind_MdDbEllipse_DeleteXData_1=function(){return(cZ=b._emscripten_bind_MdDbEllipse_DeleteXData_1=b.asm.emscripten_bind_MdDbEllipse_DeleteXData_1).apply(null,arguments)},dZ=b._emscripten_bind_MdDbEllipse_GetAllAppName_0=function(){return(dZ=b._emscripten_bind_MdDbEllipse_GetAllAppName_0=b.asm.emscripten_bind_MdDbEllipse_GetAllAppName_0).apply(null,arguments)},eZ=b._emscripten_bind_MdDbEllipse_LayerId_0=function(){return(eZ=b._emscripten_bind_MdDbEllipse_LayerId_0=b.asm.emscripten_bind_MdDbEllipse_LayerId_0).apply(null,
  1084. arguments)},fZ=b._emscripten_bind_MdDbEllipse_SetLayerId_1=function(){return(fZ=b._emscripten_bind_MdDbEllipse_SetLayerId_1=b.asm.emscripten_bind_MdDbEllipse_SetLayerId_1).apply(null,arguments)},gZ=b._emscripten_bind_MdDbEllipse_LinetypeId_0=function(){return(gZ=b._emscripten_bind_MdDbEllipse_LinetypeId_0=b.asm.emscripten_bind_MdDbEllipse_LinetypeId_0).apply(null,arguments)},hZ=b._emscripten_bind_MdDbEllipse_SetLinetypeId_1=function(){return(hZ=b._emscripten_bind_MdDbEllipse_SetLinetypeId_1=b.asm.emscripten_bind_MdDbEllipse_SetLinetypeId_1).apply(null,
  1085. arguments)},iZ=b._emscripten_bind_MdDbEllipse_Linetype_0=function(){return(iZ=b._emscripten_bind_MdDbEllipse_Linetype_0=b.asm.emscripten_bind_MdDbEllipse_Linetype_0).apply(null,arguments)},jZ=b._emscripten_bind_MdDbEllipse_SetLinetype_1=function(){return(jZ=b._emscripten_bind_MdDbEllipse_SetLinetype_1=b.asm.emscripten_bind_MdDbEllipse_SetLinetype_1).apply(null,arguments)},kZ=b._emscripten_bind_MdDbEllipse_TextStyleId_0=function(){return(kZ=b._emscripten_bind_MdDbEllipse_TextStyleId_0=b.asm.emscripten_bind_MdDbEllipse_TextStyleId_0).apply(null,
  1086. arguments)},lZ=b._emscripten_bind_MdDbEllipse_SetTextStyleId_1=function(){return(lZ=b._emscripten_bind_MdDbEllipse_SetTextStyleId_1=b.asm.emscripten_bind_MdDbEllipse_SetTextStyleId_1).apply(null,arguments)},mZ=b._emscripten_bind_MdDbEllipse_IntersectWith_2=function(){return(mZ=b._emscripten_bind_MdDbEllipse_IntersectWith_2=b.asm.emscripten_bind_MdDbEllipse_IntersectWith_2).apply(null,arguments)},nZ=b._emscripten_bind_MdDbEllipse_getArea_0=function(){return(nZ=b._emscripten_bind_MdDbEllipse_getArea_0=
  1087. b.asm.emscripten_bind_MdDbEllipse_getArea_0).apply(null,arguments)},oZ=b._emscripten_bind_MdDbEllipse_disableUpdateDisplay_1=function(){return(oZ=b._emscripten_bind_MdDbEllipse_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbEllipse_disableUpdateDisplay_1).apply(null,arguments)},pZ=b._emscripten_bind_MdDbEllipse_isPropertiesWindowCustom_0=function(){return(pZ=b._emscripten_bind_MdDbEllipse_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbEllipse_isPropertiesWindowCustom_0).apply(null,arguments)},
  1088. qZ=b._emscripten_bind_MdDbEllipse_setPropertiesWindowCustom_1=function(){return(qZ=b._emscripten_bind_MdDbEllipse_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbEllipse_setPropertiesWindowCustom_1).apply(null,arguments)},rZ=b._emscripten_bind_MdDbEllipse_updateDisplay_0=function(){return(rZ=b._emscripten_bind_MdDbEllipse_updateDisplay_0=b.asm.emscripten_bind_MdDbEllipse_updateDisplay_0).apply(null,arguments)},sZ=b._emscripten_bind_MdDbEllipse_DrawOrder_0=function(){return(sZ=b._emscripten_bind_MdDbEllipse_DrawOrder_0=
  1089. b.asm.emscripten_bind_MdDbEllipse_DrawOrder_0).apply(null,arguments)},tZ=b._emscripten_bind_MdDbEllipse_SetDrawOrder_1=function(){return(tZ=b._emscripten_bind_MdDbEllipse_SetDrawOrder_1=b.asm.emscripten_bind_MdDbEllipse_SetDrawOrder_1).apply(null,arguments)},uZ=b._emscripten_bind_MdDbEllipse_normal_0=function(){return(uZ=b._emscripten_bind_MdDbEllipse_normal_0=b.asm.emscripten_bind_MdDbEllipse_normal_0).apply(null,arguments)},vZ=b._emscripten_bind_MdDbEllipse_setNormal_1=function(){return(vZ=b._emscripten_bind_MdDbEllipse_setNormal_1=
  1090. b.asm.emscripten_bind_MdDbEllipse_setNormal_1).apply(null,arguments)},wZ=b._emscripten_bind_MdDbEllipse_GetObjectID_0=function(){return(wZ=b._emscripten_bind_MdDbEllipse_GetObjectID_0=b.asm.emscripten_bind_MdDbEllipse_GetObjectID_0).apply(null,arguments)},xZ=b._emscripten_bind_MdDbEllipse_Erase_0=function(){return(xZ=b._emscripten_bind_MdDbEllipse_Erase_0=b.asm.emscripten_bind_MdDbEllipse_Erase_0).apply(null,arguments)},yZ=b._emscripten_bind_MdDbEllipse_isErased_0=function(){return(yZ=b._emscripten_bind_MdDbEllipse_isErased_0=
  1091. b.asm.emscripten_bind_MdDbEllipse_isErased_0).apply(null,arguments)},zZ=b._emscripten_bind_MdDbEllipse_unErase_0=function(){return(zZ=b._emscripten_bind_MdDbEllipse_unErase_0=b.asm.emscripten_bind_MdDbEllipse_unErase_0).apply(null,arguments)},AZ=b._emscripten_bind_MdDbEllipse_ConnectionTempObject_1=function(){return(AZ=b._emscripten_bind_MdDbEllipse_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbEllipse_ConnectionTempObject_1).apply(null,arguments)},BZ=b._emscripten_bind_MdDbEllipse_GetExtensionDictionary_0=
  1092. function(){return(BZ=b._emscripten_bind_MdDbEllipse_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbEllipse_GetExtensionDictionary_0).apply(null,arguments)},CZ=b._emscripten_bind_MdDbEllipse_CreateExtensionDictionary_0=function(){return(CZ=b._emscripten_bind_MdDbEllipse_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbEllipse_CreateExtensionDictionary_0).apply(null,arguments)},DZ=b._emscripten_bind_MdDbEllipse_IsHaveExtensionDictionary_0=function(){return(DZ=b._emscripten_bind_MdDbEllipse_IsHaveExtensionDictionary_0=
  1093. b.asm.emscripten_bind_MdDbEllipse_IsHaveExtensionDictionary_0).apply(null,arguments)},EZ=b._emscripten_bind_MdDbEllipse_Clone_0=function(){return(EZ=b._emscripten_bind_MdDbEllipse_Clone_0=b.asm.emscripten_bind_MdDbEllipse_Clone_0).apply(null,arguments)},FZ=b._emscripten_bind_MdDbEllipse_GetHandle_0=function(){return(FZ=b._emscripten_bind_MdDbEllipse_GetHandle_0=b.asm.emscripten_bind_MdDbEllipse_GetHandle_0).apply(null,arguments)},GZ=b._emscripten_bind_MdDbEllipse_GetDatabase_0=function(){return(GZ=
  1094. b._emscripten_bind_MdDbEllipse_GetDatabase_0=b.asm.emscripten_bind_MdDbEllipse_GetDatabase_0).apply(null,arguments)},HZ=b._emscripten_bind_MdDbEllipse_GetDatabaseIndexId_0=function(){return(HZ=b._emscripten_bind_MdDbEllipse_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbEllipse_GetDatabaseIndexId_0).apply(null,arguments)},IZ=b._emscripten_bind_MdDbEllipse_GetOwnerID_0=function(){return(IZ=b._emscripten_bind_MdDbEllipse_GetOwnerID_0=b.asm.emscripten_bind_MdDbEllipse_GetOwnerID_0).apply(null,arguments)},
  1095. JZ=b._emscripten_bind_MdDbEllipse_assertObjectModification_1=function(){return(JZ=b._emscripten_bind_MdDbEllipse_assertObjectModification_1=b.asm.emscripten_bind_MdDbEllipse_assertObjectModification_1).apply(null,arguments)},KZ=b._emscripten_bind_MdDbEllipse_moveGripPointsAt_4=function(){return(KZ=b._emscripten_bind_MdDbEllipse_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbEllipse_moveGripPointsAt_4).apply(null,arguments)},LZ=b._emscripten_bind_MdDbEllipse_getGripPoints_0=function(){return(LZ=b._emscripten_bind_MdDbEllipse_getGripPoints_0=
  1096. b.asm.emscripten_bind_MdDbEllipse_getGripPoints_0).apply(null,arguments)},MZ=b._emscripten_bind_MdDbEllipse_getObjectName_0=function(){return(MZ=b._emscripten_bind_MdDbEllipse_getObjectName_0=b.asm.emscripten_bind_MdDbEllipse_getObjectName_0).apply(null,arguments)},NZ=b._emscripten_bind_MdDbEllipse_getDxf0_0=function(){return(NZ=b._emscripten_bind_MdDbEllipse_getDxf0_0=b.asm.emscripten_bind_MdDbEllipse_getDxf0_0).apply(null,arguments)},OZ=b._emscripten_bind_MdDbEllipse_getCustomEntityTypeName_0=function(){return(OZ=
  1097. b._emscripten_bind_MdDbEllipse_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbEllipse_getCustomEntityTypeName_0).apply(null,arguments)},PZ=b._emscripten_bind_MdDbEllipse_getCustomEntityid_0=function(){return(PZ=b._emscripten_bind_MdDbEllipse_getCustomEntityid_0=b.asm.emscripten_bind_MdDbEllipse_getCustomEntityid_0).apply(null,arguments)},QZ=b._emscripten_bind_MdDbEllipse_getCustomEntityTempid_0=function(){return(QZ=b._emscripten_bind_MdDbEllipse_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbEllipse_getCustomEntityTempid_0).apply(null,
  1098. arguments)},RZ=b._emscripten_bind_MdDbEllipse_setCustomEntityTempid_1=function(){return(RZ=b._emscripten_bind_MdDbEllipse_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbEllipse_setCustomEntityTempid_1).apply(null,arguments)},SZ=b._emscripten_bind_MdDbEllipse_getJson_0=function(){return(SZ=b._emscripten_bind_MdDbEllipse_getJson_0=b.asm.emscripten_bind_MdDbEllipse_getJson_0).apply(null,arguments)},TZ=b._emscripten_bind_MdDbEllipse_setJson_1=function(){return(TZ=b._emscripten_bind_MdDbEllipse_setJson_1=
  1099. b.asm.emscripten_bind_MdDbEllipse_setJson_1).apply(null,arguments)},UZ=b._emscripten_bind_MdDbEllipse_isKindOf_1=function(){return(UZ=b._emscripten_bind_MdDbEllipse_isKindOf_1=b.asm.emscripten_bind_MdDbEllipse_isKindOf_1).apply(null,arguments)},VZ=b._emscripten_bind_MdDbEllipse_isNull_0=function(){return(VZ=b._emscripten_bind_MdDbEllipse_isNull_0=b.asm.emscripten_bind_MdDbEllipse_isNull_0).apply(null,arguments)},WZ=b._emscripten_bind_MdDbEllipse___destroy___0=function(){return(WZ=b._emscripten_bind_MdDbEllipse___destroy___0=
  1100. b.asm.emscripten_bind_MdDbEllipse___destroy___0).apply(null,arguments)},XZ=b._emscripten_bind_MdDbPoint_MdDbPoint_0=function(){return(XZ=b._emscripten_bind_MdDbPoint_MdDbPoint_0=b.asm.emscripten_bind_MdDbPoint_MdDbPoint_0).apply(null,arguments)},YZ=b._emscripten_bind_MdDbPoint_position_0=function(){return(YZ=b._emscripten_bind_MdDbPoint_position_0=b.asm.emscripten_bind_MdDbPoint_position_0).apply(null,arguments)},ZZ=b._emscripten_bind_MdDbPoint_setPosition_1=function(){return(ZZ=b._emscripten_bind_MdDbPoint_setPosition_1=
  1101. b.asm.emscripten_bind_MdDbPoint_setPosition_1).apply(null,arguments)},$Z=b._emscripten_bind_MdDbPoint_explode_0=function(){return($Z=b._emscripten_bind_MdDbPoint_explode_0=b.asm.emscripten_bind_MdDbPoint_explode_0).apply(null,arguments)},a_=b._emscripten_bind_MdDbPoint_TrueColor_0=function(){return(a_=b._emscripten_bind_MdDbPoint_TrueColor_0=b.asm.emscripten_bind_MdDbPoint_TrueColor_0).apply(null,arguments)},b_=b._emscripten_bind_MdDbPoint_SetTrueColor_1=function(){return(b_=b._emscripten_bind_MdDbPoint_SetTrueColor_1=
  1102. b.asm.emscripten_bind_MdDbPoint_SetTrueColor_1).apply(null,arguments)},c_=b._emscripten_bind_MdDbPoint_ColorIndex_0=function(){return(c_=b._emscripten_bind_MdDbPoint_ColorIndex_0=b.asm.emscripten_bind_MdDbPoint_ColorIndex_0).apply(null,arguments)},d_=b._emscripten_bind_MdDbPoint_SetColorIndex_1=function(){return(d_=b._emscripten_bind_MdDbPoint_SetColorIndex_1=b.asm.emscripten_bind_MdDbPoint_SetColorIndex_1).apply(null,arguments)},e_=b._emscripten_bind_MdDbPoint_Layer_0=function(){return(e_=b._emscripten_bind_MdDbPoint_Layer_0=
  1103. b.asm.emscripten_bind_MdDbPoint_Layer_0).apply(null,arguments)},f_=b._emscripten_bind_MdDbPoint_SetLayer_1=function(){return(f_=b._emscripten_bind_MdDbPoint_SetLayer_1=b.asm.emscripten_bind_MdDbPoint_SetLayer_1).apply(null,arguments)},g_=b._emscripten_bind_MdDbPoint_LinetypeScale_0=function(){return(g_=b._emscripten_bind_MdDbPoint_LinetypeScale_0=b.asm.emscripten_bind_MdDbPoint_LinetypeScale_0).apply(null,arguments)},h_=b._emscripten_bind_MdDbPoint_SetLinetypeScale_1=function(){return(h_=b._emscripten_bind_MdDbPoint_SetLinetypeScale_1=
  1104. b.asm.emscripten_bind_MdDbPoint_SetLinetypeScale_1).apply(null,arguments)},i_=b._emscripten_bind_MdDbPoint_Visible_0=function(){return(i_=b._emscripten_bind_MdDbPoint_Visible_0=b.asm.emscripten_bind_MdDbPoint_Visible_0).apply(null,arguments)},j_=b._emscripten_bind_MdDbPoint_SetVisible_1=function(){return(j_=b._emscripten_bind_MdDbPoint_SetVisible_1=b.asm.emscripten_bind_MdDbPoint_SetVisible_1).apply(null,arguments)},k_=b._emscripten_bind_MdDbPoint_Lineweight_0=function(){return(k_=b._emscripten_bind_MdDbPoint_Lineweight_0=
  1105. b.asm.emscripten_bind_MdDbPoint_Lineweight_0).apply(null,arguments)},l_=b._emscripten_bind_MdDbPoint_SetLineweight_1=function(){return(l_=b._emscripten_bind_MdDbPoint_SetLineweight_1=b.asm.emscripten_bind_MdDbPoint_SetLineweight_1).apply(null,arguments)},m_=b._emscripten_bind_MdDbPoint_TextStyle_0=function(){return(m_=b._emscripten_bind_MdDbPoint_TextStyle_0=b.asm.emscripten_bind_MdDbPoint_TextStyle_0).apply(null,arguments)},n_=b._emscripten_bind_MdDbPoint_SetTextStyle_1=function(){return(n_=b._emscripten_bind_MdDbPoint_SetTextStyle_1=
  1106. b.asm.emscripten_bind_MdDbPoint_SetTextStyle_1).apply(null,arguments)},o_=b._emscripten_bind_MdDbPoint_Highlight_1=function(){return(o_=b._emscripten_bind_MdDbPoint_Highlight_1=b.asm.emscripten_bind_MdDbPoint_Highlight_1).apply(null,arguments)},p_=b._emscripten_bind_MdDbPoint_Move_2=function(){return(p_=b._emscripten_bind_MdDbPoint_Move_2=b.asm.emscripten_bind_MdDbPoint_Move_2).apply(null,arguments)},q_=b._emscripten_bind_MdDbPoint_Rotate_2=function(){return(q_=b._emscripten_bind_MdDbPoint_Rotate_2=
  1107. b.asm.emscripten_bind_MdDbPoint_Rotate_2).apply(null,arguments)},r_=b._emscripten_bind_MdDbPoint_Mirror_2=function(){return(r_=b._emscripten_bind_MdDbPoint_Mirror_2=b.asm.emscripten_bind_MdDbPoint_Mirror_2).apply(null,arguments)},s_=b._emscripten_bind_MdDbPoint_ScaleEntity_2=function(){return(s_=b._emscripten_bind_MdDbPoint_ScaleEntity_2=b.asm.emscripten_bind_MdDbPoint_ScaleEntity_2).apply(null,arguments)},t_=b._emscripten_bind_MdDbPoint_TransformBy_1=function(){return(t_=b._emscripten_bind_MdDbPoint_TransformBy_1=
  1108. b.asm.emscripten_bind_MdDbPoint_TransformBy_1).apply(null,arguments)},u_=b._emscripten_bind_MdDbPoint_GetBoundingBox_0=function(){return(u_=b._emscripten_bind_MdDbPoint_GetBoundingBox_0=b.asm.emscripten_bind_MdDbPoint_GetBoundingBox_0).apply(null,arguments)},v_=b._emscripten_bind_MdDbPoint_GetXData_1=function(){return(v_=b._emscripten_bind_MdDbPoint_GetXData_1=b.asm.emscripten_bind_MdDbPoint_GetXData_1).apply(null,arguments)},w_=b._emscripten_bind_MdDbPoint_SetXData_1=function(){return(w_=b._emscripten_bind_MdDbPoint_SetXData_1=
  1109. b.asm.emscripten_bind_MdDbPoint_SetXData_1).apply(null,arguments)},x_=b._emscripten_bind_MdDbPoint_GetxDataString_2=function(){return(x_=b._emscripten_bind_MdDbPoint_GetxDataString_2=b.asm.emscripten_bind_MdDbPoint_GetxDataString_2).apply(null,arguments)},y_=b._emscripten_bind_MdDbPoint_SetxDataString_3=function(){return(y_=b._emscripten_bind_MdDbPoint_SetxDataString_3=b.asm.emscripten_bind_MdDbPoint_SetxDataString_3).apply(null,arguments)},z_=b._emscripten_bind_MdDbPoint_GetxDataDouble_2=function(){return(z_=
  1110. b._emscripten_bind_MdDbPoint_GetxDataDouble_2=b.asm.emscripten_bind_MdDbPoint_GetxDataDouble_2).apply(null,arguments)},A_=b._emscripten_bind_MdDbPoint_SetxDataDouble_3=function(){return(A_=b._emscripten_bind_MdDbPoint_SetxDataDouble_3=b.asm.emscripten_bind_MdDbPoint_SetxDataDouble_3).apply(null,arguments)},B_=b._emscripten_bind_MdDbPoint_GetxDataLong_2=function(){return(B_=b._emscripten_bind_MdDbPoint_GetxDataLong_2=b.asm.emscripten_bind_MdDbPoint_GetxDataLong_2).apply(null,arguments)},C_=b._emscripten_bind_MdDbPoint_SetxDataLong_3=
  1111. function(){return(C_=b._emscripten_bind_MdDbPoint_SetxDataLong_3=b.asm.emscripten_bind_MdDbPoint_SetxDataLong_3).apply(null,arguments)},D_=b._emscripten_bind_MdDbPoint_GetxDataPoint_2=function(){return(D_=b._emscripten_bind_MdDbPoint_GetxDataPoint_2=b.asm.emscripten_bind_MdDbPoint_GetxDataPoint_2).apply(null,arguments)},E_=b._emscripten_bind_MdDbPoint_SetxDataPoint_3=function(){return(E_=b._emscripten_bind_MdDbPoint_SetxDataPoint_3=b.asm.emscripten_bind_MdDbPoint_SetxDataPoint_3).apply(null,arguments)},
  1112. F_=b._emscripten_bind_MdDbPoint_DeleteXData_1=function(){return(F_=b._emscripten_bind_MdDbPoint_DeleteXData_1=b.asm.emscripten_bind_MdDbPoint_DeleteXData_1).apply(null,arguments)},G_=b._emscripten_bind_MdDbPoint_GetAllAppName_0=function(){return(G_=b._emscripten_bind_MdDbPoint_GetAllAppName_0=b.asm.emscripten_bind_MdDbPoint_GetAllAppName_0).apply(null,arguments)},H_=b._emscripten_bind_MdDbPoint_LayerId_0=function(){return(H_=b._emscripten_bind_MdDbPoint_LayerId_0=b.asm.emscripten_bind_MdDbPoint_LayerId_0).apply(null,
  1113. arguments)},I_=b._emscripten_bind_MdDbPoint_SetLayerId_1=function(){return(I_=b._emscripten_bind_MdDbPoint_SetLayerId_1=b.asm.emscripten_bind_MdDbPoint_SetLayerId_1).apply(null,arguments)},J_=b._emscripten_bind_MdDbPoint_LinetypeId_0=function(){return(J_=b._emscripten_bind_MdDbPoint_LinetypeId_0=b.asm.emscripten_bind_MdDbPoint_LinetypeId_0).apply(null,arguments)},K_=b._emscripten_bind_MdDbPoint_SetLinetypeId_1=function(){return(K_=b._emscripten_bind_MdDbPoint_SetLinetypeId_1=b.asm.emscripten_bind_MdDbPoint_SetLinetypeId_1).apply(null,
  1114. arguments)},L_=b._emscripten_bind_MdDbPoint_Linetype_0=function(){return(L_=b._emscripten_bind_MdDbPoint_Linetype_0=b.asm.emscripten_bind_MdDbPoint_Linetype_0).apply(null,arguments)},M_=b._emscripten_bind_MdDbPoint_SetLinetype_1=function(){return(M_=b._emscripten_bind_MdDbPoint_SetLinetype_1=b.asm.emscripten_bind_MdDbPoint_SetLinetype_1).apply(null,arguments)},N_=b._emscripten_bind_MdDbPoint_TextStyleId_0=function(){return(N_=b._emscripten_bind_MdDbPoint_TextStyleId_0=b.asm.emscripten_bind_MdDbPoint_TextStyleId_0).apply(null,
  1115. arguments)},O_=b._emscripten_bind_MdDbPoint_SetTextStyleId_1=function(){return(O_=b._emscripten_bind_MdDbPoint_SetTextStyleId_1=b.asm.emscripten_bind_MdDbPoint_SetTextStyleId_1).apply(null,arguments)},P_=b._emscripten_bind_MdDbPoint_IntersectWith_2=function(){return(P_=b._emscripten_bind_MdDbPoint_IntersectWith_2=b.asm.emscripten_bind_MdDbPoint_IntersectWith_2).apply(null,arguments)},Q_=b._emscripten_bind_MdDbPoint_getArea_0=function(){return(Q_=b._emscripten_bind_MdDbPoint_getArea_0=b.asm.emscripten_bind_MdDbPoint_getArea_0).apply(null,
  1116. arguments)},R_=b._emscripten_bind_MdDbPoint_disableUpdateDisplay_1=function(){return(R_=b._emscripten_bind_MdDbPoint_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbPoint_disableUpdateDisplay_1).apply(null,arguments)},S_=b._emscripten_bind_MdDbPoint_isPropertiesWindowCustom_0=function(){return(S_=b._emscripten_bind_MdDbPoint_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbPoint_isPropertiesWindowCustom_0).apply(null,arguments)},T_=b._emscripten_bind_MdDbPoint_setPropertiesWindowCustom_1=function(){return(T_=
  1117. b._emscripten_bind_MdDbPoint_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbPoint_setPropertiesWindowCustom_1).apply(null,arguments)},U_=b._emscripten_bind_MdDbPoint_updateDisplay_0=function(){return(U_=b._emscripten_bind_MdDbPoint_updateDisplay_0=b.asm.emscripten_bind_MdDbPoint_updateDisplay_0).apply(null,arguments)},V_=b._emscripten_bind_MdDbPoint_DrawOrder_0=function(){return(V_=b._emscripten_bind_MdDbPoint_DrawOrder_0=b.asm.emscripten_bind_MdDbPoint_DrawOrder_0).apply(null,arguments)},
  1118. W_=b._emscripten_bind_MdDbPoint_SetDrawOrder_1=function(){return(W_=b._emscripten_bind_MdDbPoint_SetDrawOrder_1=b.asm.emscripten_bind_MdDbPoint_SetDrawOrder_1).apply(null,arguments)},X_=b._emscripten_bind_MdDbPoint_normal_0=function(){return(X_=b._emscripten_bind_MdDbPoint_normal_0=b.asm.emscripten_bind_MdDbPoint_normal_0).apply(null,arguments)},Y_=b._emscripten_bind_MdDbPoint_setNormal_1=function(){return(Y_=b._emscripten_bind_MdDbPoint_setNormal_1=b.asm.emscripten_bind_MdDbPoint_setNormal_1).apply(null,
  1119. arguments)},Z_=b._emscripten_bind_MdDbPoint_GetObjectID_0=function(){return(Z_=b._emscripten_bind_MdDbPoint_GetObjectID_0=b.asm.emscripten_bind_MdDbPoint_GetObjectID_0).apply(null,arguments)},$_=b._emscripten_bind_MdDbPoint_Erase_0=function(){return($_=b._emscripten_bind_MdDbPoint_Erase_0=b.asm.emscripten_bind_MdDbPoint_Erase_0).apply(null,arguments)},a0=b._emscripten_bind_MdDbPoint_isErased_0=function(){return(a0=b._emscripten_bind_MdDbPoint_isErased_0=b.asm.emscripten_bind_MdDbPoint_isErased_0).apply(null,
  1120. arguments)},b0=b._emscripten_bind_MdDbPoint_unErase_0=function(){return(b0=b._emscripten_bind_MdDbPoint_unErase_0=b.asm.emscripten_bind_MdDbPoint_unErase_0).apply(null,arguments)},c0=b._emscripten_bind_MdDbPoint_ConnectionTempObject_1=function(){return(c0=b._emscripten_bind_MdDbPoint_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbPoint_ConnectionTempObject_1).apply(null,arguments)},d0=b._emscripten_bind_MdDbPoint_GetExtensionDictionary_0=function(){return(d0=b._emscripten_bind_MdDbPoint_GetExtensionDictionary_0=
  1121. b.asm.emscripten_bind_MdDbPoint_GetExtensionDictionary_0).apply(null,arguments)},e0=b._emscripten_bind_MdDbPoint_CreateExtensionDictionary_0=function(){return(e0=b._emscripten_bind_MdDbPoint_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbPoint_CreateExtensionDictionary_0).apply(null,arguments)},f0=b._emscripten_bind_MdDbPoint_IsHaveExtensionDictionary_0=function(){return(f0=b._emscripten_bind_MdDbPoint_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbPoint_IsHaveExtensionDictionary_0).apply(null,
  1122. arguments)},g0=b._emscripten_bind_MdDbPoint_Clone_0=function(){return(g0=b._emscripten_bind_MdDbPoint_Clone_0=b.asm.emscripten_bind_MdDbPoint_Clone_0).apply(null,arguments)},h0=b._emscripten_bind_MdDbPoint_GetHandle_0=function(){return(h0=b._emscripten_bind_MdDbPoint_GetHandle_0=b.asm.emscripten_bind_MdDbPoint_GetHandle_0).apply(null,arguments)},i0=b._emscripten_bind_MdDbPoint_GetDatabase_0=function(){return(i0=b._emscripten_bind_MdDbPoint_GetDatabase_0=b.asm.emscripten_bind_MdDbPoint_GetDatabase_0).apply(null,
  1123. arguments)},j0=b._emscripten_bind_MdDbPoint_GetDatabaseIndexId_0=function(){return(j0=b._emscripten_bind_MdDbPoint_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbPoint_GetDatabaseIndexId_0).apply(null,arguments)},k0=b._emscripten_bind_MdDbPoint_GetOwnerID_0=function(){return(k0=b._emscripten_bind_MdDbPoint_GetOwnerID_0=b.asm.emscripten_bind_MdDbPoint_GetOwnerID_0).apply(null,arguments)},l0=b._emscripten_bind_MdDbPoint_assertObjectModification_1=function(){return(l0=b._emscripten_bind_MdDbPoint_assertObjectModification_1=
  1124. b.asm.emscripten_bind_MdDbPoint_assertObjectModification_1).apply(null,arguments)},m0=b._emscripten_bind_MdDbPoint_moveGripPointsAt_4=function(){return(m0=b._emscripten_bind_MdDbPoint_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbPoint_moveGripPointsAt_4).apply(null,arguments)},n0=b._emscripten_bind_MdDbPoint_getGripPoints_0=function(){return(n0=b._emscripten_bind_MdDbPoint_getGripPoints_0=b.asm.emscripten_bind_MdDbPoint_getGripPoints_0).apply(null,arguments)},o0=b._emscripten_bind_MdDbPoint_getObjectName_0=
  1125. function(){return(o0=b._emscripten_bind_MdDbPoint_getObjectName_0=b.asm.emscripten_bind_MdDbPoint_getObjectName_0).apply(null,arguments)},p0=b._emscripten_bind_MdDbPoint_getDxf0_0=function(){return(p0=b._emscripten_bind_MdDbPoint_getDxf0_0=b.asm.emscripten_bind_MdDbPoint_getDxf0_0).apply(null,arguments)},q0=b._emscripten_bind_MdDbPoint_getCustomEntityTypeName_0=function(){return(q0=b._emscripten_bind_MdDbPoint_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbPoint_getCustomEntityTypeName_0).apply(null,
  1126. arguments)},r0=b._emscripten_bind_MdDbPoint_getCustomEntityid_0=function(){return(r0=b._emscripten_bind_MdDbPoint_getCustomEntityid_0=b.asm.emscripten_bind_MdDbPoint_getCustomEntityid_0).apply(null,arguments)},s0=b._emscripten_bind_MdDbPoint_getCustomEntityTempid_0=function(){return(s0=b._emscripten_bind_MdDbPoint_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbPoint_getCustomEntityTempid_0).apply(null,arguments)},t0=b._emscripten_bind_MdDbPoint_setCustomEntityTempid_1=function(){return(t0=b._emscripten_bind_MdDbPoint_setCustomEntityTempid_1=
  1127. b.asm.emscripten_bind_MdDbPoint_setCustomEntityTempid_1).apply(null,arguments)},u0=b._emscripten_bind_MdDbPoint_getJson_0=function(){return(u0=b._emscripten_bind_MdDbPoint_getJson_0=b.asm.emscripten_bind_MdDbPoint_getJson_0).apply(null,arguments)},v0=b._emscripten_bind_MdDbPoint_setJson_1=function(){return(v0=b._emscripten_bind_MdDbPoint_setJson_1=b.asm.emscripten_bind_MdDbPoint_setJson_1).apply(null,arguments)},w0=b._emscripten_bind_MdDbPoint_isKindOf_1=function(){return(w0=b._emscripten_bind_MdDbPoint_isKindOf_1=
  1128. b.asm.emscripten_bind_MdDbPoint_isKindOf_1).apply(null,arguments)},x0=b._emscripten_bind_MdDbPoint_isNull_0=function(){return(x0=b._emscripten_bind_MdDbPoint_isNull_0=b.asm.emscripten_bind_MdDbPoint_isNull_0).apply(null,arguments)},y0=b._emscripten_bind_MdDbPoint___destroy___0=function(){return(y0=b._emscripten_bind_MdDbPoint___destroy___0=b.asm.emscripten_bind_MdDbPoint___destroy___0).apply(null,arguments)},z0=b._emscripten_bind_MdDbHatch_MdDbHatch_0=function(){return(z0=b._emscripten_bind_MdDbHatch_MdDbHatch_0=
  1129. b.asm.emscripten_bind_MdDbHatch_MdDbHatch_0).apply(null,arguments)},A0=b._emscripten_bind_MdDbHatch_numLoops_0=function(){return(A0=b._emscripten_bind_MdDbHatch_numLoops_0=b.asm.emscripten_bind_MdDbHatch_numLoops_0).apply(null,arguments)},B0=b._emscripten_bind_MdDbHatch_loopTypeAt_1=function(){return(B0=b._emscripten_bind_MdDbHatch_loopTypeAt_1=b.asm.emscripten_bind_MdDbHatch_loopTypeAt_1).apply(null,arguments)},C0=b._emscripten_bind_MdDbHatch_getLoopAt_1=function(){return(C0=b._emscripten_bind_MdDbHatch_getLoopAt_1=
  1130. b.asm.emscripten_bind_MdDbHatch_getLoopAt_1).apply(null,arguments)},D0=b._emscripten_bind_MdDbHatch_patternType_0=function(){return(D0=b._emscripten_bind_MdDbHatch_patternType_0=b.asm.emscripten_bind_MdDbHatch_patternType_0).apply(null,arguments)},E0=b._emscripten_bind_MdDbHatch_patternName_0=function(){return(E0=b._emscripten_bind_MdDbHatch_patternName_0=b.asm.emscripten_bind_MdDbHatch_patternName_0).apply(null,arguments)},F0=b._emscripten_bind_MdDbHatch_setPattern_2=function(){return(F0=b._emscripten_bind_MdDbHatch_setPattern_2=
  1131. b.asm.emscripten_bind_MdDbHatch_setPattern_2).apply(null,arguments)},G0=b._emscripten_bind_MdDbHatch_patternAngle_0=function(){return(G0=b._emscripten_bind_MdDbHatch_patternAngle_0=b.asm.emscripten_bind_MdDbHatch_patternAngle_0).apply(null,arguments)},H0=b._emscripten_bind_MdDbHatch_setPatternAngle_1=function(){return(H0=b._emscripten_bind_MdDbHatch_setPatternAngle_1=b.asm.emscripten_bind_MdDbHatch_setPatternAngle_1).apply(null,arguments)},I0=b._emscripten_bind_MdDbHatch_patternScale_0=function(){return(I0=
  1132. b._emscripten_bind_MdDbHatch_patternScale_0=b.asm.emscripten_bind_MdDbHatch_patternScale_0).apply(null,arguments)},J0=b._emscripten_bind_MdDbHatch_setPatternScale_1=function(){return(J0=b._emscripten_bind_MdDbHatch_setPatternScale_1=b.asm.emscripten_bind_MdDbHatch_setPatternScale_1).apply(null,arguments)},K0=b._emscripten_bind_MdDbHatch_patternSpace_0=function(){return(K0=b._emscripten_bind_MdDbHatch_patternSpace_0=b.asm.emscripten_bind_MdDbHatch_patternSpace_0).apply(null,arguments)},L0=b._emscripten_bind_MdDbHatch_setPatternSpace_1=
  1133. function(){return(L0=b._emscripten_bind_MdDbHatch_setPatternSpace_1=b.asm.emscripten_bind_MdDbHatch_setPatternSpace_1).apply(null,arguments)},M0=b._emscripten_bind_MdDbHatch_patternDouble_0=function(){return(M0=b._emscripten_bind_MdDbHatch_patternDouble_0=b.asm.emscripten_bind_MdDbHatch_patternDouble_0).apply(null,arguments)},N0=b._emscripten_bind_MdDbHatch_setPatternDouble_1=function(){return(N0=b._emscripten_bind_MdDbHatch_setPatternDouble_1=b.asm.emscripten_bind_MdDbHatch_setPatternDouble_1).apply(null,
  1134. arguments)},O0=b._emscripten_bind_MdDbHatch_numPatternDefinitions_0=function(){return(O0=b._emscripten_bind_MdDbHatch_numPatternDefinitions_0=b.asm.emscripten_bind_MdDbHatch_numPatternDefinitions_0).apply(null,arguments)},P0=b._emscripten_bind_MdDbHatch_getPatternDefinitionAt_1=function(){return(P0=b._emscripten_bind_MdDbHatch_getPatternDefinitionAt_1=b.asm.emscripten_bind_MdDbHatch_getPatternDefinitionAt_1).apply(null,arguments)},Q0=b._emscripten_bind_MdDbHatch_addPatternDefinition_6=function(){return(Q0=
  1135. b._emscripten_bind_MdDbHatch_addPatternDefinition_6=b.asm.emscripten_bind_MdDbHatch_addPatternDefinition_6).apply(null,arguments)},R0=b._emscripten_bind_MdDbHatch_clearPatternDefinition_0=function(){return(R0=b._emscripten_bind_MdDbHatch_clearPatternDefinition_0=b.asm.emscripten_bind_MdDbHatch_clearPatternDefinition_0).apply(null,arguments)},S0=b._emscripten_bind_MdDbHatch_hatchStyle_0=function(){return(S0=b._emscripten_bind_MdDbHatch_hatchStyle_0=b.asm.emscripten_bind_MdDbHatch_hatchStyle_0).apply(null,
  1136. arguments)},T0=b._emscripten_bind_MdDbHatch_setHatchStyle_1=function(){return(T0=b._emscripten_bind_MdDbHatch_setHatchStyle_1=b.asm.emscripten_bind_MdDbHatch_setHatchStyle_1).apply(null,arguments)},U0=b._emscripten_bind_MdDbHatch_evaluateHatch_1=function(){return(U0=b._emscripten_bind_MdDbHatch_evaluateHatch_1=b.asm.emscripten_bind_MdDbHatch_evaluateHatch_1).apply(null,arguments)},V0=b._emscripten_bind_MdDbHatch_appendCircleLoop_6=function(){return(V0=b._emscripten_bind_MdDbHatch_appendCircleLoop_6=
  1137. b.asm.emscripten_bind_MdDbHatch_appendCircleLoop_6).apply(null,arguments)},W0=b._emscripten_bind_MdDbHatch_appendLoop_3=function(){return(W0=b._emscripten_bind_MdDbHatch_appendLoop_3=b.asm.emscripten_bind_MdDbHatch_appendLoop_3).apply(null,arguments)},X0=b._emscripten_bind_MdDbHatch_removeLoopAt_1=function(){return(X0=b._emscripten_bind_MdDbHatch_removeLoopAt_1=b.asm.emscripten_bind_MdDbHatch_removeLoopAt_1).apply(null,arguments)},Y0=b._emscripten_bind_MdDbHatch_removeAllLoop_0=function(){return(Y0=
  1138. b._emscripten_bind_MdDbHatch_removeAllLoop_0=b.asm.emscripten_bind_MdDbHatch_removeAllLoop_0).apply(null,arguments)},Z0=b._emscripten_bind_MdDbHatch_setLoopAt_4=function(){return(Z0=b._emscripten_bind_MdDbHatch_setLoopAt_4=b.asm.emscripten_bind_MdDbHatch_setLoopAt_4).apply(null,arguments)},$0=b._emscripten_bind_MdDbHatch_isSolid_0=function(){return($0=b._emscripten_bind_MdDbHatch_isSolid_0=b.asm.emscripten_bind_MdDbHatch_isSolid_0).apply(null,arguments)},a1=b._emscripten_bind_MdDbHatch_explode_0=
  1139. function(){return(a1=b._emscripten_bind_MdDbHatch_explode_0=b.asm.emscripten_bind_MdDbHatch_explode_0).apply(null,arguments)},b1=b._emscripten_bind_MdDbHatch_TrueColor_0=function(){return(b1=b._emscripten_bind_MdDbHatch_TrueColor_0=b.asm.emscripten_bind_MdDbHatch_TrueColor_0).apply(null,arguments)},c1=b._emscripten_bind_MdDbHatch_SetTrueColor_1=function(){return(c1=b._emscripten_bind_MdDbHatch_SetTrueColor_1=b.asm.emscripten_bind_MdDbHatch_SetTrueColor_1).apply(null,arguments)},d1=b._emscripten_bind_MdDbHatch_ColorIndex_0=
  1140. function(){return(d1=b._emscripten_bind_MdDbHatch_ColorIndex_0=b.asm.emscripten_bind_MdDbHatch_ColorIndex_0).apply(null,arguments)},e1=b._emscripten_bind_MdDbHatch_SetColorIndex_1=function(){return(e1=b._emscripten_bind_MdDbHatch_SetColorIndex_1=b.asm.emscripten_bind_MdDbHatch_SetColorIndex_1).apply(null,arguments)},f1=b._emscripten_bind_MdDbHatch_Layer_0=function(){return(f1=b._emscripten_bind_MdDbHatch_Layer_0=b.asm.emscripten_bind_MdDbHatch_Layer_0).apply(null,arguments)},g1=b._emscripten_bind_MdDbHatch_SetLayer_1=
  1141. function(){return(g1=b._emscripten_bind_MdDbHatch_SetLayer_1=b.asm.emscripten_bind_MdDbHatch_SetLayer_1).apply(null,arguments)},h1=b._emscripten_bind_MdDbHatch_LinetypeScale_0=function(){return(h1=b._emscripten_bind_MdDbHatch_LinetypeScale_0=b.asm.emscripten_bind_MdDbHatch_LinetypeScale_0).apply(null,arguments)},i1=b._emscripten_bind_MdDbHatch_SetLinetypeScale_1=function(){return(i1=b._emscripten_bind_MdDbHatch_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbHatch_SetLinetypeScale_1).apply(null,arguments)},
  1142. j1=b._emscripten_bind_MdDbHatch_Visible_0=function(){return(j1=b._emscripten_bind_MdDbHatch_Visible_0=b.asm.emscripten_bind_MdDbHatch_Visible_0).apply(null,arguments)},k1=b._emscripten_bind_MdDbHatch_SetVisible_1=function(){return(k1=b._emscripten_bind_MdDbHatch_SetVisible_1=b.asm.emscripten_bind_MdDbHatch_SetVisible_1).apply(null,arguments)},l1=b._emscripten_bind_MdDbHatch_Lineweight_0=function(){return(l1=b._emscripten_bind_MdDbHatch_Lineweight_0=b.asm.emscripten_bind_MdDbHatch_Lineweight_0).apply(null,
  1143. arguments)},m1=b._emscripten_bind_MdDbHatch_SetLineweight_1=function(){return(m1=b._emscripten_bind_MdDbHatch_SetLineweight_1=b.asm.emscripten_bind_MdDbHatch_SetLineweight_1).apply(null,arguments)},n1=b._emscripten_bind_MdDbHatch_TextStyle_0=function(){return(n1=b._emscripten_bind_MdDbHatch_TextStyle_0=b.asm.emscripten_bind_MdDbHatch_TextStyle_0).apply(null,arguments)},o1=b._emscripten_bind_MdDbHatch_SetTextStyle_1=function(){return(o1=b._emscripten_bind_MdDbHatch_SetTextStyle_1=b.asm.emscripten_bind_MdDbHatch_SetTextStyle_1).apply(null,
  1144. arguments)},p1=b._emscripten_bind_MdDbHatch_Highlight_1=function(){return(p1=b._emscripten_bind_MdDbHatch_Highlight_1=b.asm.emscripten_bind_MdDbHatch_Highlight_1).apply(null,arguments)},q1=b._emscripten_bind_MdDbHatch_Move_2=function(){return(q1=b._emscripten_bind_MdDbHatch_Move_2=b.asm.emscripten_bind_MdDbHatch_Move_2).apply(null,arguments)},r1=b._emscripten_bind_MdDbHatch_Rotate_2=function(){return(r1=b._emscripten_bind_MdDbHatch_Rotate_2=b.asm.emscripten_bind_MdDbHatch_Rotate_2).apply(null,arguments)},
  1145. s1=b._emscripten_bind_MdDbHatch_Mirror_2=function(){return(s1=b._emscripten_bind_MdDbHatch_Mirror_2=b.asm.emscripten_bind_MdDbHatch_Mirror_2).apply(null,arguments)},t1=b._emscripten_bind_MdDbHatch_ScaleEntity_2=function(){return(t1=b._emscripten_bind_MdDbHatch_ScaleEntity_2=b.asm.emscripten_bind_MdDbHatch_ScaleEntity_2).apply(null,arguments)},u1=b._emscripten_bind_MdDbHatch_TransformBy_1=function(){return(u1=b._emscripten_bind_MdDbHatch_TransformBy_1=b.asm.emscripten_bind_MdDbHatch_TransformBy_1).apply(null,
  1146. arguments)},v1=b._emscripten_bind_MdDbHatch_GetBoundingBox_0=function(){return(v1=b._emscripten_bind_MdDbHatch_GetBoundingBox_0=b.asm.emscripten_bind_MdDbHatch_GetBoundingBox_0).apply(null,arguments)},w1=b._emscripten_bind_MdDbHatch_GetXData_1=function(){return(w1=b._emscripten_bind_MdDbHatch_GetXData_1=b.asm.emscripten_bind_MdDbHatch_GetXData_1).apply(null,arguments)},x1=b._emscripten_bind_MdDbHatch_SetXData_1=function(){return(x1=b._emscripten_bind_MdDbHatch_SetXData_1=b.asm.emscripten_bind_MdDbHatch_SetXData_1).apply(null,
  1147. arguments)},y1=b._emscripten_bind_MdDbHatch_GetxDataString_2=function(){return(y1=b._emscripten_bind_MdDbHatch_GetxDataString_2=b.asm.emscripten_bind_MdDbHatch_GetxDataString_2).apply(null,arguments)},z1=b._emscripten_bind_MdDbHatch_SetxDataString_3=function(){return(z1=b._emscripten_bind_MdDbHatch_SetxDataString_3=b.asm.emscripten_bind_MdDbHatch_SetxDataString_3).apply(null,arguments)},A1=b._emscripten_bind_MdDbHatch_GetxDataDouble_2=function(){return(A1=b._emscripten_bind_MdDbHatch_GetxDataDouble_2=
  1148. b.asm.emscripten_bind_MdDbHatch_GetxDataDouble_2).apply(null,arguments)},B1=b._emscripten_bind_MdDbHatch_SetxDataDouble_3=function(){return(B1=b._emscripten_bind_MdDbHatch_SetxDataDouble_3=b.asm.emscripten_bind_MdDbHatch_SetxDataDouble_3).apply(null,arguments)},C1=b._emscripten_bind_MdDbHatch_GetxDataLong_2=function(){return(C1=b._emscripten_bind_MdDbHatch_GetxDataLong_2=b.asm.emscripten_bind_MdDbHatch_GetxDataLong_2).apply(null,arguments)},D1=b._emscripten_bind_MdDbHatch_SetxDataLong_3=function(){return(D1=
  1149. b._emscripten_bind_MdDbHatch_SetxDataLong_3=b.asm.emscripten_bind_MdDbHatch_SetxDataLong_3).apply(null,arguments)},E1=b._emscripten_bind_MdDbHatch_GetxDataPoint_2=function(){return(E1=b._emscripten_bind_MdDbHatch_GetxDataPoint_2=b.asm.emscripten_bind_MdDbHatch_GetxDataPoint_2).apply(null,arguments)},F1=b._emscripten_bind_MdDbHatch_SetxDataPoint_3=function(){return(F1=b._emscripten_bind_MdDbHatch_SetxDataPoint_3=b.asm.emscripten_bind_MdDbHatch_SetxDataPoint_3).apply(null,arguments)},G1=b._emscripten_bind_MdDbHatch_DeleteXData_1=
  1150. function(){return(G1=b._emscripten_bind_MdDbHatch_DeleteXData_1=b.asm.emscripten_bind_MdDbHatch_DeleteXData_1).apply(null,arguments)},H1=b._emscripten_bind_MdDbHatch_GetAllAppName_0=function(){return(H1=b._emscripten_bind_MdDbHatch_GetAllAppName_0=b.asm.emscripten_bind_MdDbHatch_GetAllAppName_0).apply(null,arguments)},I1=b._emscripten_bind_MdDbHatch_LayerId_0=function(){return(I1=b._emscripten_bind_MdDbHatch_LayerId_0=b.asm.emscripten_bind_MdDbHatch_LayerId_0).apply(null,arguments)},J1=b._emscripten_bind_MdDbHatch_SetLayerId_1=
  1151. function(){return(J1=b._emscripten_bind_MdDbHatch_SetLayerId_1=b.asm.emscripten_bind_MdDbHatch_SetLayerId_1).apply(null,arguments)},K1=b._emscripten_bind_MdDbHatch_LinetypeId_0=function(){return(K1=b._emscripten_bind_MdDbHatch_LinetypeId_0=b.asm.emscripten_bind_MdDbHatch_LinetypeId_0).apply(null,arguments)},L1=b._emscripten_bind_MdDbHatch_SetLinetypeId_1=function(){return(L1=b._emscripten_bind_MdDbHatch_SetLinetypeId_1=b.asm.emscripten_bind_MdDbHatch_SetLinetypeId_1).apply(null,arguments)},M1=b._emscripten_bind_MdDbHatch_Linetype_0=
  1152. function(){return(M1=b._emscripten_bind_MdDbHatch_Linetype_0=b.asm.emscripten_bind_MdDbHatch_Linetype_0).apply(null,arguments)},N1=b._emscripten_bind_MdDbHatch_SetLinetype_1=function(){return(N1=b._emscripten_bind_MdDbHatch_SetLinetype_1=b.asm.emscripten_bind_MdDbHatch_SetLinetype_1).apply(null,arguments)},O1=b._emscripten_bind_MdDbHatch_TextStyleId_0=function(){return(O1=b._emscripten_bind_MdDbHatch_TextStyleId_0=b.asm.emscripten_bind_MdDbHatch_TextStyleId_0).apply(null,arguments)},P1=b._emscripten_bind_MdDbHatch_SetTextStyleId_1=
  1153. function(){return(P1=b._emscripten_bind_MdDbHatch_SetTextStyleId_1=b.asm.emscripten_bind_MdDbHatch_SetTextStyleId_1).apply(null,arguments)},Q1=b._emscripten_bind_MdDbHatch_IntersectWith_2=function(){return(Q1=b._emscripten_bind_MdDbHatch_IntersectWith_2=b.asm.emscripten_bind_MdDbHatch_IntersectWith_2).apply(null,arguments)},R1=b._emscripten_bind_MdDbHatch_getArea_0=function(){return(R1=b._emscripten_bind_MdDbHatch_getArea_0=b.asm.emscripten_bind_MdDbHatch_getArea_0).apply(null,arguments)},S1=b._emscripten_bind_MdDbHatch_disableUpdateDisplay_1=
  1154. function(){return(S1=b._emscripten_bind_MdDbHatch_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbHatch_disableUpdateDisplay_1).apply(null,arguments)},T1=b._emscripten_bind_MdDbHatch_isPropertiesWindowCustom_0=function(){return(T1=b._emscripten_bind_MdDbHatch_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbHatch_isPropertiesWindowCustom_0).apply(null,arguments)},U1=b._emscripten_bind_MdDbHatch_setPropertiesWindowCustom_1=function(){return(U1=b._emscripten_bind_MdDbHatch_setPropertiesWindowCustom_1=
  1155. b.asm.emscripten_bind_MdDbHatch_setPropertiesWindowCustom_1).apply(null,arguments)},V1=b._emscripten_bind_MdDbHatch_updateDisplay_0=function(){return(V1=b._emscripten_bind_MdDbHatch_updateDisplay_0=b.asm.emscripten_bind_MdDbHatch_updateDisplay_0).apply(null,arguments)},W1=b._emscripten_bind_MdDbHatch_DrawOrder_0=function(){return(W1=b._emscripten_bind_MdDbHatch_DrawOrder_0=b.asm.emscripten_bind_MdDbHatch_DrawOrder_0).apply(null,arguments)},X1=b._emscripten_bind_MdDbHatch_SetDrawOrder_1=function(){return(X1=
  1156. b._emscripten_bind_MdDbHatch_SetDrawOrder_1=b.asm.emscripten_bind_MdDbHatch_SetDrawOrder_1).apply(null,arguments)},Y1=b._emscripten_bind_MdDbHatch_normal_0=function(){return(Y1=b._emscripten_bind_MdDbHatch_normal_0=b.asm.emscripten_bind_MdDbHatch_normal_0).apply(null,arguments)},Z1=b._emscripten_bind_MdDbHatch_setNormal_1=function(){return(Z1=b._emscripten_bind_MdDbHatch_setNormal_1=b.asm.emscripten_bind_MdDbHatch_setNormal_1).apply(null,arguments)},$1=b._emscripten_bind_MdDbHatch_GetObjectID_0=function(){return($1=
  1157. b._emscripten_bind_MdDbHatch_GetObjectID_0=b.asm.emscripten_bind_MdDbHatch_GetObjectID_0).apply(null,arguments)},a2=b._emscripten_bind_MdDbHatch_Erase_0=function(){return(a2=b._emscripten_bind_MdDbHatch_Erase_0=b.asm.emscripten_bind_MdDbHatch_Erase_0).apply(null,arguments)},b2=b._emscripten_bind_MdDbHatch_isErased_0=function(){return(b2=b._emscripten_bind_MdDbHatch_isErased_0=b.asm.emscripten_bind_MdDbHatch_isErased_0).apply(null,arguments)},c2=b._emscripten_bind_MdDbHatch_unErase_0=function(){return(c2=
  1158. b._emscripten_bind_MdDbHatch_unErase_0=b.asm.emscripten_bind_MdDbHatch_unErase_0).apply(null,arguments)},d2=b._emscripten_bind_MdDbHatch_ConnectionTempObject_1=function(){return(d2=b._emscripten_bind_MdDbHatch_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbHatch_ConnectionTempObject_1).apply(null,arguments)},e2=b._emscripten_bind_MdDbHatch_GetExtensionDictionary_0=function(){return(e2=b._emscripten_bind_MdDbHatch_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbHatch_GetExtensionDictionary_0).apply(null,
  1159. arguments)},f2=b._emscripten_bind_MdDbHatch_CreateExtensionDictionary_0=function(){return(f2=b._emscripten_bind_MdDbHatch_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbHatch_CreateExtensionDictionary_0).apply(null,arguments)},g2=b._emscripten_bind_MdDbHatch_IsHaveExtensionDictionary_0=function(){return(g2=b._emscripten_bind_MdDbHatch_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbHatch_IsHaveExtensionDictionary_0).apply(null,arguments)},h2=b._emscripten_bind_MdDbHatch_Clone_0=function(){return(h2=
  1160. b._emscripten_bind_MdDbHatch_Clone_0=b.asm.emscripten_bind_MdDbHatch_Clone_0).apply(null,arguments)},i2=b._emscripten_bind_MdDbHatch_GetHandle_0=function(){return(i2=b._emscripten_bind_MdDbHatch_GetHandle_0=b.asm.emscripten_bind_MdDbHatch_GetHandle_0).apply(null,arguments)},j2=b._emscripten_bind_MdDbHatch_GetDatabase_0=function(){return(j2=b._emscripten_bind_MdDbHatch_GetDatabase_0=b.asm.emscripten_bind_MdDbHatch_GetDatabase_0).apply(null,arguments)},k2=b._emscripten_bind_MdDbHatch_GetDatabaseIndexId_0=
  1161. function(){return(k2=b._emscripten_bind_MdDbHatch_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbHatch_GetDatabaseIndexId_0).apply(null,arguments)},l2=b._emscripten_bind_MdDbHatch_GetOwnerID_0=function(){return(l2=b._emscripten_bind_MdDbHatch_GetOwnerID_0=b.asm.emscripten_bind_MdDbHatch_GetOwnerID_0).apply(null,arguments)},m2=b._emscripten_bind_MdDbHatch_assertObjectModification_1=function(){return(m2=b._emscripten_bind_MdDbHatch_assertObjectModification_1=b.asm.emscripten_bind_MdDbHatch_assertObjectModification_1).apply(null,
  1162. arguments)},n2=b._emscripten_bind_MdDbHatch_moveGripPointsAt_4=function(){return(n2=b._emscripten_bind_MdDbHatch_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbHatch_moveGripPointsAt_4).apply(null,arguments)},o2=b._emscripten_bind_MdDbHatch_getGripPoints_0=function(){return(o2=b._emscripten_bind_MdDbHatch_getGripPoints_0=b.asm.emscripten_bind_MdDbHatch_getGripPoints_0).apply(null,arguments)},p2=b._emscripten_bind_MdDbHatch_getObjectName_0=function(){return(p2=b._emscripten_bind_MdDbHatch_getObjectName_0=
  1163. b.asm.emscripten_bind_MdDbHatch_getObjectName_0).apply(null,arguments)},q2=b._emscripten_bind_MdDbHatch_getDxf0_0=function(){return(q2=b._emscripten_bind_MdDbHatch_getDxf0_0=b.asm.emscripten_bind_MdDbHatch_getDxf0_0).apply(null,arguments)},r2=b._emscripten_bind_MdDbHatch_getCustomEntityTypeName_0=function(){return(r2=b._emscripten_bind_MdDbHatch_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbHatch_getCustomEntityTypeName_0).apply(null,arguments)},s2=b._emscripten_bind_MdDbHatch_getCustomEntityid_0=
  1164. function(){return(s2=b._emscripten_bind_MdDbHatch_getCustomEntityid_0=b.asm.emscripten_bind_MdDbHatch_getCustomEntityid_0).apply(null,arguments)},t2=b._emscripten_bind_MdDbHatch_getCustomEntityTempid_0=function(){return(t2=b._emscripten_bind_MdDbHatch_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbHatch_getCustomEntityTempid_0).apply(null,arguments)},u2=b._emscripten_bind_MdDbHatch_setCustomEntityTempid_1=function(){return(u2=b._emscripten_bind_MdDbHatch_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbHatch_setCustomEntityTempid_1).apply(null,
  1165. arguments)},v2=b._emscripten_bind_MdDbHatch_getJson_0=function(){return(v2=b._emscripten_bind_MdDbHatch_getJson_0=b.asm.emscripten_bind_MdDbHatch_getJson_0).apply(null,arguments)},w2=b._emscripten_bind_MdDbHatch_setJson_1=function(){return(w2=b._emscripten_bind_MdDbHatch_setJson_1=b.asm.emscripten_bind_MdDbHatch_setJson_1).apply(null,arguments)},x2=b._emscripten_bind_MdDbHatch_isKindOf_1=function(){return(x2=b._emscripten_bind_MdDbHatch_isKindOf_1=b.asm.emscripten_bind_MdDbHatch_isKindOf_1).apply(null,
  1166. arguments)},y2=b._emscripten_bind_MdDbHatch_isNull_0=function(){return(y2=b._emscripten_bind_MdDbHatch_isNull_0=b.asm.emscripten_bind_MdDbHatch_isNull_0).apply(null,arguments)},z2=b._emscripten_bind_MdDbHatch___destroy___0=function(){return(z2=b._emscripten_bind_MdDbHatch___destroy___0=b.asm.emscripten_bind_MdDbHatch___destroy___0).apply(null,arguments)},A2=b._emscripten_bind_MdDbProxyEntity_MdDbProxyEntity_0=function(){return(A2=b._emscripten_bind_MdDbProxyEntity_MdDbProxyEntity_0=b.asm.emscripten_bind_MdDbProxyEntity_MdDbProxyEntity_0).apply(null,
  1167. arguments)},B2=b._emscripten_bind_MdDbProxyEntity_getAllTextContent_0=function(){return(B2=b._emscripten_bind_MdDbProxyEntity_getAllTextContent_0=b.asm.emscripten_bind_MdDbProxyEntity_getAllTextContent_0).apply(null,arguments)},C2=b._emscripten_bind_MdDbProxyEntity_getAllEntityIds_0=function(){return(C2=b._emscripten_bind_MdDbProxyEntity_getAllEntityIds_0=b.asm.emscripten_bind_MdDbProxyEntity_getAllEntityIds_0).apply(null,arguments)},D2=b._emscripten_bind_MdDbProxyEntity_getOriginalClassName_0=function(){return(D2=
  1168. b._emscripten_bind_MdDbProxyEntity_getOriginalClassName_0=b.asm.emscripten_bind_MdDbProxyEntity_getOriginalClassName_0).apply(null,arguments)},E2=b._emscripten_bind_MdDbProxyEntity_explode_0=function(){return(E2=b._emscripten_bind_MdDbProxyEntity_explode_0=b.asm.emscripten_bind_MdDbProxyEntity_explode_0).apply(null,arguments)},F2=b._emscripten_bind_MdDbProxyEntity_TrueColor_0=function(){return(F2=b._emscripten_bind_MdDbProxyEntity_TrueColor_0=b.asm.emscripten_bind_MdDbProxyEntity_TrueColor_0).apply(null,
  1169. arguments)},G2=b._emscripten_bind_MdDbProxyEntity_SetTrueColor_1=function(){return(G2=b._emscripten_bind_MdDbProxyEntity_SetTrueColor_1=b.asm.emscripten_bind_MdDbProxyEntity_SetTrueColor_1).apply(null,arguments)},H2=b._emscripten_bind_MdDbProxyEntity_ColorIndex_0=function(){return(H2=b._emscripten_bind_MdDbProxyEntity_ColorIndex_0=b.asm.emscripten_bind_MdDbProxyEntity_ColorIndex_0).apply(null,arguments)},I2=b._emscripten_bind_MdDbProxyEntity_SetColorIndex_1=function(){return(I2=b._emscripten_bind_MdDbProxyEntity_SetColorIndex_1=
  1170. b.asm.emscripten_bind_MdDbProxyEntity_SetColorIndex_1).apply(null,arguments)},J2=b._emscripten_bind_MdDbProxyEntity_Layer_0=function(){return(J2=b._emscripten_bind_MdDbProxyEntity_Layer_0=b.asm.emscripten_bind_MdDbProxyEntity_Layer_0).apply(null,arguments)},K2=b._emscripten_bind_MdDbProxyEntity_SetLayer_1=function(){return(K2=b._emscripten_bind_MdDbProxyEntity_SetLayer_1=b.asm.emscripten_bind_MdDbProxyEntity_SetLayer_1).apply(null,arguments)},L2=b._emscripten_bind_MdDbProxyEntity_LinetypeScale_0=
  1171. function(){return(L2=b._emscripten_bind_MdDbProxyEntity_LinetypeScale_0=b.asm.emscripten_bind_MdDbProxyEntity_LinetypeScale_0).apply(null,arguments)},M2=b._emscripten_bind_MdDbProxyEntity_SetLinetypeScale_1=function(){return(M2=b._emscripten_bind_MdDbProxyEntity_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbProxyEntity_SetLinetypeScale_1).apply(null,arguments)},N2=b._emscripten_bind_MdDbProxyEntity_Visible_0=function(){return(N2=b._emscripten_bind_MdDbProxyEntity_Visible_0=b.asm.emscripten_bind_MdDbProxyEntity_Visible_0).apply(null,
  1172. arguments)},O2=b._emscripten_bind_MdDbProxyEntity_SetVisible_1=function(){return(O2=b._emscripten_bind_MdDbProxyEntity_SetVisible_1=b.asm.emscripten_bind_MdDbProxyEntity_SetVisible_1).apply(null,arguments)},P2=b._emscripten_bind_MdDbProxyEntity_Lineweight_0=function(){return(P2=b._emscripten_bind_MdDbProxyEntity_Lineweight_0=b.asm.emscripten_bind_MdDbProxyEntity_Lineweight_0).apply(null,arguments)},Q2=b._emscripten_bind_MdDbProxyEntity_SetLineweight_1=function(){return(Q2=b._emscripten_bind_MdDbProxyEntity_SetLineweight_1=
  1173. b.asm.emscripten_bind_MdDbProxyEntity_SetLineweight_1).apply(null,arguments)},R2=b._emscripten_bind_MdDbProxyEntity_TextStyle_0=function(){return(R2=b._emscripten_bind_MdDbProxyEntity_TextStyle_0=b.asm.emscripten_bind_MdDbProxyEntity_TextStyle_0).apply(null,arguments)},S2=b._emscripten_bind_MdDbProxyEntity_SetTextStyle_1=function(){return(S2=b._emscripten_bind_MdDbProxyEntity_SetTextStyle_1=b.asm.emscripten_bind_MdDbProxyEntity_SetTextStyle_1).apply(null,arguments)},T2=b._emscripten_bind_MdDbProxyEntity_Highlight_1=
  1174. function(){return(T2=b._emscripten_bind_MdDbProxyEntity_Highlight_1=b.asm.emscripten_bind_MdDbProxyEntity_Highlight_1).apply(null,arguments)},U2=b._emscripten_bind_MdDbProxyEntity_Move_2=function(){return(U2=b._emscripten_bind_MdDbProxyEntity_Move_2=b.asm.emscripten_bind_MdDbProxyEntity_Move_2).apply(null,arguments)},V2=b._emscripten_bind_MdDbProxyEntity_Rotate_2=function(){return(V2=b._emscripten_bind_MdDbProxyEntity_Rotate_2=b.asm.emscripten_bind_MdDbProxyEntity_Rotate_2).apply(null,arguments)},
  1175. W2=b._emscripten_bind_MdDbProxyEntity_Mirror_2=function(){return(W2=b._emscripten_bind_MdDbProxyEntity_Mirror_2=b.asm.emscripten_bind_MdDbProxyEntity_Mirror_2).apply(null,arguments)},X2=b._emscripten_bind_MdDbProxyEntity_ScaleEntity_2=function(){return(X2=b._emscripten_bind_MdDbProxyEntity_ScaleEntity_2=b.asm.emscripten_bind_MdDbProxyEntity_ScaleEntity_2).apply(null,arguments)},Y2=b._emscripten_bind_MdDbProxyEntity_TransformBy_1=function(){return(Y2=b._emscripten_bind_MdDbProxyEntity_TransformBy_1=
  1176. b.asm.emscripten_bind_MdDbProxyEntity_TransformBy_1).apply(null,arguments)},Z2=b._emscripten_bind_MdDbProxyEntity_GetBoundingBox_0=function(){return(Z2=b._emscripten_bind_MdDbProxyEntity_GetBoundingBox_0=b.asm.emscripten_bind_MdDbProxyEntity_GetBoundingBox_0).apply(null,arguments)},$2=b._emscripten_bind_MdDbProxyEntity_GetXData_1=function(){return($2=b._emscripten_bind_MdDbProxyEntity_GetXData_1=b.asm.emscripten_bind_MdDbProxyEntity_GetXData_1).apply(null,arguments)},a3=b._emscripten_bind_MdDbProxyEntity_SetXData_1=
  1177. function(){return(a3=b._emscripten_bind_MdDbProxyEntity_SetXData_1=b.asm.emscripten_bind_MdDbProxyEntity_SetXData_1).apply(null,arguments)},b3=b._emscripten_bind_MdDbProxyEntity_GetxDataString_2=function(){return(b3=b._emscripten_bind_MdDbProxyEntity_GetxDataString_2=b.asm.emscripten_bind_MdDbProxyEntity_GetxDataString_2).apply(null,arguments)},c3=b._emscripten_bind_MdDbProxyEntity_SetxDataString_3=function(){return(c3=b._emscripten_bind_MdDbProxyEntity_SetxDataString_3=b.asm.emscripten_bind_MdDbProxyEntity_SetxDataString_3).apply(null,
  1178. arguments)},d3=b._emscripten_bind_MdDbProxyEntity_GetxDataDouble_2=function(){return(d3=b._emscripten_bind_MdDbProxyEntity_GetxDataDouble_2=b.asm.emscripten_bind_MdDbProxyEntity_GetxDataDouble_2).apply(null,arguments)},e3=b._emscripten_bind_MdDbProxyEntity_SetxDataDouble_3=function(){return(e3=b._emscripten_bind_MdDbProxyEntity_SetxDataDouble_3=b.asm.emscripten_bind_MdDbProxyEntity_SetxDataDouble_3).apply(null,arguments)},f3=b._emscripten_bind_MdDbProxyEntity_GetxDataLong_2=function(){return(f3=b._emscripten_bind_MdDbProxyEntity_GetxDataLong_2=
  1179. b.asm.emscripten_bind_MdDbProxyEntity_GetxDataLong_2).apply(null,arguments)},g3=b._emscripten_bind_MdDbProxyEntity_SetxDataLong_3=function(){return(g3=b._emscripten_bind_MdDbProxyEntity_SetxDataLong_3=b.asm.emscripten_bind_MdDbProxyEntity_SetxDataLong_3).apply(null,arguments)},h3=b._emscripten_bind_MdDbProxyEntity_GetxDataPoint_2=function(){return(h3=b._emscripten_bind_MdDbProxyEntity_GetxDataPoint_2=b.asm.emscripten_bind_MdDbProxyEntity_GetxDataPoint_2).apply(null,arguments)},i3=b._emscripten_bind_MdDbProxyEntity_SetxDataPoint_3=
  1180. function(){return(i3=b._emscripten_bind_MdDbProxyEntity_SetxDataPoint_3=b.asm.emscripten_bind_MdDbProxyEntity_SetxDataPoint_3).apply(null,arguments)},j3=b._emscripten_bind_MdDbProxyEntity_DeleteXData_1=function(){return(j3=b._emscripten_bind_MdDbProxyEntity_DeleteXData_1=b.asm.emscripten_bind_MdDbProxyEntity_DeleteXData_1).apply(null,arguments)},k3=b._emscripten_bind_MdDbProxyEntity_GetAllAppName_0=function(){return(k3=b._emscripten_bind_MdDbProxyEntity_GetAllAppName_0=b.asm.emscripten_bind_MdDbProxyEntity_GetAllAppName_0).apply(null,
  1181. arguments)},l3=b._emscripten_bind_MdDbProxyEntity_LayerId_0=function(){return(l3=b._emscripten_bind_MdDbProxyEntity_LayerId_0=b.asm.emscripten_bind_MdDbProxyEntity_LayerId_0).apply(null,arguments)},m3=b._emscripten_bind_MdDbProxyEntity_SetLayerId_1=function(){return(m3=b._emscripten_bind_MdDbProxyEntity_SetLayerId_1=b.asm.emscripten_bind_MdDbProxyEntity_SetLayerId_1).apply(null,arguments)},n3=b._emscripten_bind_MdDbProxyEntity_LinetypeId_0=function(){return(n3=b._emscripten_bind_MdDbProxyEntity_LinetypeId_0=
  1182. b.asm.emscripten_bind_MdDbProxyEntity_LinetypeId_0).apply(null,arguments)},o3=b._emscripten_bind_MdDbProxyEntity_SetLinetypeId_1=function(){return(o3=b._emscripten_bind_MdDbProxyEntity_SetLinetypeId_1=b.asm.emscripten_bind_MdDbProxyEntity_SetLinetypeId_1).apply(null,arguments)},p3=b._emscripten_bind_MdDbProxyEntity_Linetype_0=function(){return(p3=b._emscripten_bind_MdDbProxyEntity_Linetype_0=b.asm.emscripten_bind_MdDbProxyEntity_Linetype_0).apply(null,arguments)},q3=b._emscripten_bind_MdDbProxyEntity_SetLinetype_1=
  1183. function(){return(q3=b._emscripten_bind_MdDbProxyEntity_SetLinetype_1=b.asm.emscripten_bind_MdDbProxyEntity_SetLinetype_1).apply(null,arguments)},r3=b._emscripten_bind_MdDbProxyEntity_TextStyleId_0=function(){return(r3=b._emscripten_bind_MdDbProxyEntity_TextStyleId_0=b.asm.emscripten_bind_MdDbProxyEntity_TextStyleId_0).apply(null,arguments)},s3=b._emscripten_bind_MdDbProxyEntity_SetTextStyleId_1=function(){return(s3=b._emscripten_bind_MdDbProxyEntity_SetTextStyleId_1=b.asm.emscripten_bind_MdDbProxyEntity_SetTextStyleId_1).apply(null,
  1184. arguments)},t3=b._emscripten_bind_MdDbProxyEntity_IntersectWith_2=function(){return(t3=b._emscripten_bind_MdDbProxyEntity_IntersectWith_2=b.asm.emscripten_bind_MdDbProxyEntity_IntersectWith_2).apply(null,arguments)},u3=b._emscripten_bind_MdDbProxyEntity_getArea_0=function(){return(u3=b._emscripten_bind_MdDbProxyEntity_getArea_0=b.asm.emscripten_bind_MdDbProxyEntity_getArea_0).apply(null,arguments)},v3=b._emscripten_bind_MdDbProxyEntity_disableUpdateDisplay_1=function(){return(v3=b._emscripten_bind_MdDbProxyEntity_disableUpdateDisplay_1=
  1185. b.asm.emscripten_bind_MdDbProxyEntity_disableUpdateDisplay_1).apply(null,arguments)},w3=b._emscripten_bind_MdDbProxyEntity_isPropertiesWindowCustom_0=function(){return(w3=b._emscripten_bind_MdDbProxyEntity_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbProxyEntity_isPropertiesWindowCustom_0).apply(null,arguments)},x3=b._emscripten_bind_MdDbProxyEntity_setPropertiesWindowCustom_1=function(){return(x3=b._emscripten_bind_MdDbProxyEntity_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbProxyEntity_setPropertiesWindowCustom_1).apply(null,
  1186. arguments)},y3=b._emscripten_bind_MdDbProxyEntity_updateDisplay_0=function(){return(y3=b._emscripten_bind_MdDbProxyEntity_updateDisplay_0=b.asm.emscripten_bind_MdDbProxyEntity_updateDisplay_0).apply(null,arguments)},z3=b._emscripten_bind_MdDbProxyEntity_DrawOrder_0=function(){return(z3=b._emscripten_bind_MdDbProxyEntity_DrawOrder_0=b.asm.emscripten_bind_MdDbProxyEntity_DrawOrder_0).apply(null,arguments)},A3=b._emscripten_bind_MdDbProxyEntity_SetDrawOrder_1=function(){return(A3=b._emscripten_bind_MdDbProxyEntity_SetDrawOrder_1=
  1187. b.asm.emscripten_bind_MdDbProxyEntity_SetDrawOrder_1).apply(null,arguments)},B3=b._emscripten_bind_MdDbProxyEntity_normal_0=function(){return(B3=b._emscripten_bind_MdDbProxyEntity_normal_0=b.asm.emscripten_bind_MdDbProxyEntity_normal_0).apply(null,arguments)},C3=b._emscripten_bind_MdDbProxyEntity_setNormal_1=function(){return(C3=b._emscripten_bind_MdDbProxyEntity_setNormal_1=b.asm.emscripten_bind_MdDbProxyEntity_setNormal_1).apply(null,arguments)},D3=b._emscripten_bind_MdDbProxyEntity_GetObjectID_0=
  1188. function(){return(D3=b._emscripten_bind_MdDbProxyEntity_GetObjectID_0=b.asm.emscripten_bind_MdDbProxyEntity_GetObjectID_0).apply(null,arguments)},E3=b._emscripten_bind_MdDbProxyEntity_Erase_0=function(){return(E3=b._emscripten_bind_MdDbProxyEntity_Erase_0=b.asm.emscripten_bind_MdDbProxyEntity_Erase_0).apply(null,arguments)},F3=b._emscripten_bind_MdDbProxyEntity_isErased_0=function(){return(F3=b._emscripten_bind_MdDbProxyEntity_isErased_0=b.asm.emscripten_bind_MdDbProxyEntity_isErased_0).apply(null,
  1189. arguments)},G3=b._emscripten_bind_MdDbProxyEntity_unErase_0=function(){return(G3=b._emscripten_bind_MdDbProxyEntity_unErase_0=b.asm.emscripten_bind_MdDbProxyEntity_unErase_0).apply(null,arguments)},H3=b._emscripten_bind_MdDbProxyEntity_ConnectionTempObject_1=function(){return(H3=b._emscripten_bind_MdDbProxyEntity_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbProxyEntity_ConnectionTempObject_1).apply(null,arguments)},I3=b._emscripten_bind_MdDbProxyEntity_GetExtensionDictionary_0=function(){return(I3=
  1190. b._emscripten_bind_MdDbProxyEntity_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbProxyEntity_GetExtensionDictionary_0).apply(null,arguments)},J3=b._emscripten_bind_MdDbProxyEntity_CreateExtensionDictionary_0=function(){return(J3=b._emscripten_bind_MdDbProxyEntity_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbProxyEntity_CreateExtensionDictionary_0).apply(null,arguments)},K3=b._emscripten_bind_MdDbProxyEntity_IsHaveExtensionDictionary_0=function(){return(K3=b._emscripten_bind_MdDbProxyEntity_IsHaveExtensionDictionary_0=
  1191. b.asm.emscripten_bind_MdDbProxyEntity_IsHaveExtensionDictionary_0).apply(null,arguments)},L3=b._emscripten_bind_MdDbProxyEntity_Clone_0=function(){return(L3=b._emscripten_bind_MdDbProxyEntity_Clone_0=b.asm.emscripten_bind_MdDbProxyEntity_Clone_0).apply(null,arguments)},M3=b._emscripten_bind_MdDbProxyEntity_GetHandle_0=function(){return(M3=b._emscripten_bind_MdDbProxyEntity_GetHandle_0=b.asm.emscripten_bind_MdDbProxyEntity_GetHandle_0).apply(null,arguments)},N3=b._emscripten_bind_MdDbProxyEntity_GetDatabase_0=
  1192. function(){return(N3=b._emscripten_bind_MdDbProxyEntity_GetDatabase_0=b.asm.emscripten_bind_MdDbProxyEntity_GetDatabase_0).apply(null,arguments)},O3=b._emscripten_bind_MdDbProxyEntity_GetDatabaseIndexId_0=function(){return(O3=b._emscripten_bind_MdDbProxyEntity_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbProxyEntity_GetDatabaseIndexId_0).apply(null,arguments)},P3=b._emscripten_bind_MdDbProxyEntity_GetOwnerID_0=function(){return(P3=b._emscripten_bind_MdDbProxyEntity_GetOwnerID_0=b.asm.emscripten_bind_MdDbProxyEntity_GetOwnerID_0).apply(null,
  1193. arguments)},Q3=b._emscripten_bind_MdDbProxyEntity_assertObjectModification_1=function(){return(Q3=b._emscripten_bind_MdDbProxyEntity_assertObjectModification_1=b.asm.emscripten_bind_MdDbProxyEntity_assertObjectModification_1).apply(null,arguments)},R3=b._emscripten_bind_MdDbProxyEntity_moveGripPointsAt_4=function(){return(R3=b._emscripten_bind_MdDbProxyEntity_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbProxyEntity_moveGripPointsAt_4).apply(null,arguments)},S3=b._emscripten_bind_MdDbProxyEntity_getGripPoints_0=
  1194. function(){return(S3=b._emscripten_bind_MdDbProxyEntity_getGripPoints_0=b.asm.emscripten_bind_MdDbProxyEntity_getGripPoints_0).apply(null,arguments)},T3=b._emscripten_bind_MdDbProxyEntity_getObjectName_0=function(){return(T3=b._emscripten_bind_MdDbProxyEntity_getObjectName_0=b.asm.emscripten_bind_MdDbProxyEntity_getObjectName_0).apply(null,arguments)},U3=b._emscripten_bind_MdDbProxyEntity_getDxf0_0=function(){return(U3=b._emscripten_bind_MdDbProxyEntity_getDxf0_0=b.asm.emscripten_bind_MdDbProxyEntity_getDxf0_0).apply(null,
  1195. arguments)},V3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityTypeName_0=function(){return(V3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbProxyEntity_getCustomEntityTypeName_0).apply(null,arguments)},W3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityid_0=function(){return(W3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityid_0=b.asm.emscripten_bind_MdDbProxyEntity_getCustomEntityid_0).apply(null,arguments)},X3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityTempid_0=
  1196. function(){return(X3=b._emscripten_bind_MdDbProxyEntity_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbProxyEntity_getCustomEntityTempid_0).apply(null,arguments)},Y3=b._emscripten_bind_MdDbProxyEntity_setCustomEntityTempid_1=function(){return(Y3=b._emscripten_bind_MdDbProxyEntity_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbProxyEntity_setCustomEntityTempid_1).apply(null,arguments)},Z3=b._emscripten_bind_MdDbProxyEntity_getJson_0=function(){return(Z3=b._emscripten_bind_MdDbProxyEntity_getJson_0=
  1197. b.asm.emscripten_bind_MdDbProxyEntity_getJson_0).apply(null,arguments)},$3=b._emscripten_bind_MdDbProxyEntity_setJson_1=function(){return($3=b._emscripten_bind_MdDbProxyEntity_setJson_1=b.asm.emscripten_bind_MdDbProxyEntity_setJson_1).apply(null,arguments)},a4=b._emscripten_bind_MdDbProxyEntity_isKindOf_1=function(){return(a4=b._emscripten_bind_MdDbProxyEntity_isKindOf_1=b.asm.emscripten_bind_MdDbProxyEntity_isKindOf_1).apply(null,arguments)},b4=b._emscripten_bind_MdDbProxyEntity_isNull_0=function(){return(b4=
  1198. b._emscripten_bind_MdDbProxyEntity_isNull_0=b.asm.emscripten_bind_MdDbProxyEntity_isNull_0).apply(null,arguments)},c4=b._emscripten_bind_MdDbProxyEntity___destroy___0=function(){return(c4=b._emscripten_bind_MdDbProxyEntity___destroy___0=b.asm.emscripten_bind_MdDbProxyEntity___destroy___0).apply(null,arguments)},d4=b._emscripten_bind_MdDbRasterImage_MdDbRasterImage_0=function(){return(d4=b._emscripten_bind_MdDbRasterImage_MdDbRasterImage_0=b.asm.emscripten_bind_MdDbRasterImage_MdDbRasterImage_0).apply(null,
  1199. arguments)},e4=b._emscripten_bind_MdDbRasterImage_setOrientation_3=function(){return(e4=b._emscripten_bind_MdDbRasterImage_setOrientation_3=b.asm.emscripten_bind_MdDbRasterImage_setOrientation_3).apply(null,arguments)},f4=b._emscripten_bind_MdDbRasterImage_getOrientation_0=function(){return(f4=b._emscripten_bind_MdDbRasterImage_getOrientation_0=b.asm.emscripten_bind_MdDbRasterImage_getOrientation_0).apply(null,arguments)},g4=b._emscripten_bind_MdDbRasterImage_setImageDefId_1=function(){return(g4=
  1200. b._emscripten_bind_MdDbRasterImage_setImageDefId_1=b.asm.emscripten_bind_MdDbRasterImage_setImageDefId_1).apply(null,arguments)},h4=b._emscripten_bind_MdDbRasterImage_imageDefId_0=function(){return(h4=b._emscripten_bind_MdDbRasterImage_imageDefId_0=b.asm.emscripten_bind_MdDbRasterImage_imageDefId_0).apply(null,arguments)},i4=b._emscripten_bind_MdDbRasterImage_setClipBoundary_2=function(){return(i4=b._emscripten_bind_MdDbRasterImage_setClipBoundary_2=b.asm.emscripten_bind_MdDbRasterImage_setClipBoundary_2).apply(null,
  1201. arguments)},j4=b._emscripten_bind_MdDbRasterImage_clipBoundary_0=function(){return(j4=b._emscripten_bind_MdDbRasterImage_clipBoundary_0=b.asm.emscripten_bind_MdDbRasterImage_clipBoundary_0).apply(null,arguments)},k4=b._emscripten_bind_MdDbRasterImage_clipBoundaryType_0=function(){return(k4=b._emscripten_bind_MdDbRasterImage_clipBoundaryType_0=b.asm.emscripten_bind_MdDbRasterImage_clipBoundaryType_0).apply(null,arguments)},l4=b._emscripten_bind_MdDbRasterImage_explode_0=function(){return(l4=b._emscripten_bind_MdDbRasterImage_explode_0=
  1202. b.asm.emscripten_bind_MdDbRasterImage_explode_0).apply(null,arguments)},m4=b._emscripten_bind_MdDbRasterImage_TrueColor_0=function(){return(m4=b._emscripten_bind_MdDbRasterImage_TrueColor_0=b.asm.emscripten_bind_MdDbRasterImage_TrueColor_0).apply(null,arguments)},n4=b._emscripten_bind_MdDbRasterImage_SetTrueColor_1=function(){return(n4=b._emscripten_bind_MdDbRasterImage_SetTrueColor_1=b.asm.emscripten_bind_MdDbRasterImage_SetTrueColor_1).apply(null,arguments)},o4=b._emscripten_bind_MdDbRasterImage_ColorIndex_0=
  1203. function(){return(o4=b._emscripten_bind_MdDbRasterImage_ColorIndex_0=b.asm.emscripten_bind_MdDbRasterImage_ColorIndex_0).apply(null,arguments)},p4=b._emscripten_bind_MdDbRasterImage_SetColorIndex_1=function(){return(p4=b._emscripten_bind_MdDbRasterImage_SetColorIndex_1=b.asm.emscripten_bind_MdDbRasterImage_SetColorIndex_1).apply(null,arguments)},q4=b._emscripten_bind_MdDbRasterImage_Layer_0=function(){return(q4=b._emscripten_bind_MdDbRasterImage_Layer_0=b.asm.emscripten_bind_MdDbRasterImage_Layer_0).apply(null,
  1204. arguments)},r4=b._emscripten_bind_MdDbRasterImage_SetLayer_1=function(){return(r4=b._emscripten_bind_MdDbRasterImage_SetLayer_1=b.asm.emscripten_bind_MdDbRasterImage_SetLayer_1).apply(null,arguments)},s4=b._emscripten_bind_MdDbRasterImage_LinetypeScale_0=function(){return(s4=b._emscripten_bind_MdDbRasterImage_LinetypeScale_0=b.asm.emscripten_bind_MdDbRasterImage_LinetypeScale_0).apply(null,arguments)},t4=b._emscripten_bind_MdDbRasterImage_SetLinetypeScale_1=function(){return(t4=b._emscripten_bind_MdDbRasterImage_SetLinetypeScale_1=
  1205. b.asm.emscripten_bind_MdDbRasterImage_SetLinetypeScale_1).apply(null,arguments)},u4=b._emscripten_bind_MdDbRasterImage_Visible_0=function(){return(u4=b._emscripten_bind_MdDbRasterImage_Visible_0=b.asm.emscripten_bind_MdDbRasterImage_Visible_0).apply(null,arguments)},v4=b._emscripten_bind_MdDbRasterImage_SetVisible_1=function(){return(v4=b._emscripten_bind_MdDbRasterImage_SetVisible_1=b.asm.emscripten_bind_MdDbRasterImage_SetVisible_1).apply(null,arguments)},w4=b._emscripten_bind_MdDbRasterImage_Lineweight_0=
  1206. function(){return(w4=b._emscripten_bind_MdDbRasterImage_Lineweight_0=b.asm.emscripten_bind_MdDbRasterImage_Lineweight_0).apply(null,arguments)},x4=b._emscripten_bind_MdDbRasterImage_SetLineweight_1=function(){return(x4=b._emscripten_bind_MdDbRasterImage_SetLineweight_1=b.asm.emscripten_bind_MdDbRasterImage_SetLineweight_1).apply(null,arguments)},y4=b._emscripten_bind_MdDbRasterImage_TextStyle_0=function(){return(y4=b._emscripten_bind_MdDbRasterImage_TextStyle_0=b.asm.emscripten_bind_MdDbRasterImage_TextStyle_0).apply(null,
  1207. arguments)},z4=b._emscripten_bind_MdDbRasterImage_SetTextStyle_1=function(){return(z4=b._emscripten_bind_MdDbRasterImage_SetTextStyle_1=b.asm.emscripten_bind_MdDbRasterImage_SetTextStyle_1).apply(null,arguments)},A4=b._emscripten_bind_MdDbRasterImage_Highlight_1=function(){return(A4=b._emscripten_bind_MdDbRasterImage_Highlight_1=b.asm.emscripten_bind_MdDbRasterImage_Highlight_1).apply(null,arguments)},B4=b._emscripten_bind_MdDbRasterImage_Move_2=function(){return(B4=b._emscripten_bind_MdDbRasterImage_Move_2=
  1208. b.asm.emscripten_bind_MdDbRasterImage_Move_2).apply(null,arguments)},C4=b._emscripten_bind_MdDbRasterImage_Rotate_2=function(){return(C4=b._emscripten_bind_MdDbRasterImage_Rotate_2=b.asm.emscripten_bind_MdDbRasterImage_Rotate_2).apply(null,arguments)},D4=b._emscripten_bind_MdDbRasterImage_Mirror_2=function(){return(D4=b._emscripten_bind_MdDbRasterImage_Mirror_2=b.asm.emscripten_bind_MdDbRasterImage_Mirror_2).apply(null,arguments)},E4=b._emscripten_bind_MdDbRasterImage_ScaleEntity_2=function(){return(E4=
  1209. b._emscripten_bind_MdDbRasterImage_ScaleEntity_2=b.asm.emscripten_bind_MdDbRasterImage_ScaleEntity_2).apply(null,arguments)},F4=b._emscripten_bind_MdDbRasterImage_TransformBy_1=function(){return(F4=b._emscripten_bind_MdDbRasterImage_TransformBy_1=b.asm.emscripten_bind_MdDbRasterImage_TransformBy_1).apply(null,arguments)},G4=b._emscripten_bind_MdDbRasterImage_GetBoundingBox_0=function(){return(G4=b._emscripten_bind_MdDbRasterImage_GetBoundingBox_0=b.asm.emscripten_bind_MdDbRasterImage_GetBoundingBox_0).apply(null,
  1210. arguments)},H4=b._emscripten_bind_MdDbRasterImage_GetXData_1=function(){return(H4=b._emscripten_bind_MdDbRasterImage_GetXData_1=b.asm.emscripten_bind_MdDbRasterImage_GetXData_1).apply(null,arguments)},I4=b._emscripten_bind_MdDbRasterImage_SetXData_1=function(){return(I4=b._emscripten_bind_MdDbRasterImage_SetXData_1=b.asm.emscripten_bind_MdDbRasterImage_SetXData_1).apply(null,arguments)},J4=b._emscripten_bind_MdDbRasterImage_GetxDataString_2=function(){return(J4=b._emscripten_bind_MdDbRasterImage_GetxDataString_2=
  1211. b.asm.emscripten_bind_MdDbRasterImage_GetxDataString_2).apply(null,arguments)},K4=b._emscripten_bind_MdDbRasterImage_SetxDataString_3=function(){return(K4=b._emscripten_bind_MdDbRasterImage_SetxDataString_3=b.asm.emscripten_bind_MdDbRasterImage_SetxDataString_3).apply(null,arguments)},L4=b._emscripten_bind_MdDbRasterImage_GetxDataDouble_2=function(){return(L4=b._emscripten_bind_MdDbRasterImage_GetxDataDouble_2=b.asm.emscripten_bind_MdDbRasterImage_GetxDataDouble_2).apply(null,arguments)},M4=b._emscripten_bind_MdDbRasterImage_SetxDataDouble_3=
  1212. function(){return(M4=b._emscripten_bind_MdDbRasterImage_SetxDataDouble_3=b.asm.emscripten_bind_MdDbRasterImage_SetxDataDouble_3).apply(null,arguments)},N4=b._emscripten_bind_MdDbRasterImage_GetxDataLong_2=function(){return(N4=b._emscripten_bind_MdDbRasterImage_GetxDataLong_2=b.asm.emscripten_bind_MdDbRasterImage_GetxDataLong_2).apply(null,arguments)},O4=b._emscripten_bind_MdDbRasterImage_SetxDataLong_3=function(){return(O4=b._emscripten_bind_MdDbRasterImage_SetxDataLong_3=b.asm.emscripten_bind_MdDbRasterImage_SetxDataLong_3).apply(null,
  1213. arguments)},P4=b._emscripten_bind_MdDbRasterImage_GetxDataPoint_2=function(){return(P4=b._emscripten_bind_MdDbRasterImage_GetxDataPoint_2=b.asm.emscripten_bind_MdDbRasterImage_GetxDataPoint_2).apply(null,arguments)},Q4=b._emscripten_bind_MdDbRasterImage_SetxDataPoint_3=function(){return(Q4=b._emscripten_bind_MdDbRasterImage_SetxDataPoint_3=b.asm.emscripten_bind_MdDbRasterImage_SetxDataPoint_3).apply(null,arguments)},R4=b._emscripten_bind_MdDbRasterImage_DeleteXData_1=function(){return(R4=b._emscripten_bind_MdDbRasterImage_DeleteXData_1=
  1214. b.asm.emscripten_bind_MdDbRasterImage_DeleteXData_1).apply(null,arguments)},S4=b._emscripten_bind_MdDbRasterImage_GetAllAppName_0=function(){return(S4=b._emscripten_bind_MdDbRasterImage_GetAllAppName_0=b.asm.emscripten_bind_MdDbRasterImage_GetAllAppName_0).apply(null,arguments)},T4=b._emscripten_bind_MdDbRasterImage_LayerId_0=function(){return(T4=b._emscripten_bind_MdDbRasterImage_LayerId_0=b.asm.emscripten_bind_MdDbRasterImage_LayerId_0).apply(null,arguments)},U4=b._emscripten_bind_MdDbRasterImage_SetLayerId_1=
  1215. function(){return(U4=b._emscripten_bind_MdDbRasterImage_SetLayerId_1=b.asm.emscripten_bind_MdDbRasterImage_SetLayerId_1).apply(null,arguments)},V4=b._emscripten_bind_MdDbRasterImage_LinetypeId_0=function(){return(V4=b._emscripten_bind_MdDbRasterImage_LinetypeId_0=b.asm.emscripten_bind_MdDbRasterImage_LinetypeId_0).apply(null,arguments)},W4=b._emscripten_bind_MdDbRasterImage_SetLinetypeId_1=function(){return(W4=b._emscripten_bind_MdDbRasterImage_SetLinetypeId_1=b.asm.emscripten_bind_MdDbRasterImage_SetLinetypeId_1).apply(null,
  1216. arguments)},X4=b._emscripten_bind_MdDbRasterImage_Linetype_0=function(){return(X4=b._emscripten_bind_MdDbRasterImage_Linetype_0=b.asm.emscripten_bind_MdDbRasterImage_Linetype_0).apply(null,arguments)},Y4=b._emscripten_bind_MdDbRasterImage_SetLinetype_1=function(){return(Y4=b._emscripten_bind_MdDbRasterImage_SetLinetype_1=b.asm.emscripten_bind_MdDbRasterImage_SetLinetype_1).apply(null,arguments)},Z4=b._emscripten_bind_MdDbRasterImage_TextStyleId_0=function(){return(Z4=b._emscripten_bind_MdDbRasterImage_TextStyleId_0=
  1217. b.asm.emscripten_bind_MdDbRasterImage_TextStyleId_0).apply(null,arguments)},$4=b._emscripten_bind_MdDbRasterImage_SetTextStyleId_1=function(){return($4=b._emscripten_bind_MdDbRasterImage_SetTextStyleId_1=b.asm.emscripten_bind_MdDbRasterImage_SetTextStyleId_1).apply(null,arguments)},a5=b._emscripten_bind_MdDbRasterImage_IntersectWith_2=function(){return(a5=b._emscripten_bind_MdDbRasterImage_IntersectWith_2=b.asm.emscripten_bind_MdDbRasterImage_IntersectWith_2).apply(null,arguments)},b5=b._emscripten_bind_MdDbRasterImage_getArea_0=
  1218. function(){return(b5=b._emscripten_bind_MdDbRasterImage_getArea_0=b.asm.emscripten_bind_MdDbRasterImage_getArea_0).apply(null,arguments)},c5=b._emscripten_bind_MdDbRasterImage_disableUpdateDisplay_1=function(){return(c5=b._emscripten_bind_MdDbRasterImage_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbRasterImage_disableUpdateDisplay_1).apply(null,arguments)},d5=b._emscripten_bind_MdDbRasterImage_isPropertiesWindowCustom_0=function(){return(d5=b._emscripten_bind_MdDbRasterImage_isPropertiesWindowCustom_0=
  1219. b.asm.emscripten_bind_MdDbRasterImage_isPropertiesWindowCustom_0).apply(null,arguments)},e5=b._emscripten_bind_MdDbRasterImage_setPropertiesWindowCustom_1=function(){return(e5=b._emscripten_bind_MdDbRasterImage_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbRasterImage_setPropertiesWindowCustom_1).apply(null,arguments)},f5=b._emscripten_bind_MdDbRasterImage_updateDisplay_0=function(){return(f5=b._emscripten_bind_MdDbRasterImage_updateDisplay_0=b.asm.emscripten_bind_MdDbRasterImage_updateDisplay_0).apply(null,
  1220. arguments)},g5=b._emscripten_bind_MdDbRasterImage_DrawOrder_0=function(){return(g5=b._emscripten_bind_MdDbRasterImage_DrawOrder_0=b.asm.emscripten_bind_MdDbRasterImage_DrawOrder_0).apply(null,arguments)},h5=b._emscripten_bind_MdDbRasterImage_SetDrawOrder_1=function(){return(h5=b._emscripten_bind_MdDbRasterImage_SetDrawOrder_1=b.asm.emscripten_bind_MdDbRasterImage_SetDrawOrder_1).apply(null,arguments)},i5=b._emscripten_bind_MdDbRasterImage_normal_0=function(){return(i5=b._emscripten_bind_MdDbRasterImage_normal_0=
  1221. b.asm.emscripten_bind_MdDbRasterImage_normal_0).apply(null,arguments)},j5=b._emscripten_bind_MdDbRasterImage_setNormal_1=function(){return(j5=b._emscripten_bind_MdDbRasterImage_setNormal_1=b.asm.emscripten_bind_MdDbRasterImage_setNormal_1).apply(null,arguments)},k5=b._emscripten_bind_MdDbRasterImage_GetObjectID_0=function(){return(k5=b._emscripten_bind_MdDbRasterImage_GetObjectID_0=b.asm.emscripten_bind_MdDbRasterImage_GetObjectID_0).apply(null,arguments)},l5=b._emscripten_bind_MdDbRasterImage_Erase_0=
  1222. function(){return(l5=b._emscripten_bind_MdDbRasterImage_Erase_0=b.asm.emscripten_bind_MdDbRasterImage_Erase_0).apply(null,arguments)},m5=b._emscripten_bind_MdDbRasterImage_isErased_0=function(){return(m5=b._emscripten_bind_MdDbRasterImage_isErased_0=b.asm.emscripten_bind_MdDbRasterImage_isErased_0).apply(null,arguments)},n5=b._emscripten_bind_MdDbRasterImage_unErase_0=function(){return(n5=b._emscripten_bind_MdDbRasterImage_unErase_0=b.asm.emscripten_bind_MdDbRasterImage_unErase_0).apply(null,arguments)},
  1223. o5=b._emscripten_bind_MdDbRasterImage_ConnectionTempObject_1=function(){return(o5=b._emscripten_bind_MdDbRasterImage_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbRasterImage_ConnectionTempObject_1).apply(null,arguments)},p5=b._emscripten_bind_MdDbRasterImage_GetExtensionDictionary_0=function(){return(p5=b._emscripten_bind_MdDbRasterImage_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImage_GetExtensionDictionary_0).apply(null,arguments)},q5=b._emscripten_bind_MdDbRasterImage_CreateExtensionDictionary_0=
  1224. function(){return(q5=b._emscripten_bind_MdDbRasterImage_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImage_CreateExtensionDictionary_0).apply(null,arguments)},r5=b._emscripten_bind_MdDbRasterImage_IsHaveExtensionDictionary_0=function(){return(r5=b._emscripten_bind_MdDbRasterImage_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImage_IsHaveExtensionDictionary_0).apply(null,arguments)},s5=b._emscripten_bind_MdDbRasterImage_Clone_0=function(){return(s5=b._emscripten_bind_MdDbRasterImage_Clone_0=
  1225. b.asm.emscripten_bind_MdDbRasterImage_Clone_0).apply(null,arguments)},t5=b._emscripten_bind_MdDbRasterImage_GetHandle_0=function(){return(t5=b._emscripten_bind_MdDbRasterImage_GetHandle_0=b.asm.emscripten_bind_MdDbRasterImage_GetHandle_0).apply(null,arguments)},u5=b._emscripten_bind_MdDbRasterImage_GetDatabase_0=function(){return(u5=b._emscripten_bind_MdDbRasterImage_GetDatabase_0=b.asm.emscripten_bind_MdDbRasterImage_GetDatabase_0).apply(null,arguments)},v5=b._emscripten_bind_MdDbRasterImage_GetDatabaseIndexId_0=
  1226. function(){return(v5=b._emscripten_bind_MdDbRasterImage_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbRasterImage_GetDatabaseIndexId_0).apply(null,arguments)},w5=b._emscripten_bind_MdDbRasterImage_GetOwnerID_0=function(){return(w5=b._emscripten_bind_MdDbRasterImage_GetOwnerID_0=b.asm.emscripten_bind_MdDbRasterImage_GetOwnerID_0).apply(null,arguments)},x5=b._emscripten_bind_MdDbRasterImage_assertObjectModification_1=function(){return(x5=b._emscripten_bind_MdDbRasterImage_assertObjectModification_1=
  1227. b.asm.emscripten_bind_MdDbRasterImage_assertObjectModification_1).apply(null,arguments)},y5=b._emscripten_bind_MdDbRasterImage_moveGripPointsAt_4=function(){return(y5=b._emscripten_bind_MdDbRasterImage_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbRasterImage_moveGripPointsAt_4).apply(null,arguments)},z5=b._emscripten_bind_MdDbRasterImage_getGripPoints_0=function(){return(z5=b._emscripten_bind_MdDbRasterImage_getGripPoints_0=b.asm.emscripten_bind_MdDbRasterImage_getGripPoints_0).apply(null,arguments)},
  1228. A5=b._emscripten_bind_MdDbRasterImage_getObjectName_0=function(){return(A5=b._emscripten_bind_MdDbRasterImage_getObjectName_0=b.asm.emscripten_bind_MdDbRasterImage_getObjectName_0).apply(null,arguments)},B5=b._emscripten_bind_MdDbRasterImage_getDxf0_0=function(){return(B5=b._emscripten_bind_MdDbRasterImage_getDxf0_0=b.asm.emscripten_bind_MdDbRasterImage_getDxf0_0).apply(null,arguments)},C5=b._emscripten_bind_MdDbRasterImage_getCustomEntityTypeName_0=function(){return(C5=b._emscripten_bind_MdDbRasterImage_getCustomEntityTypeName_0=
  1229. b.asm.emscripten_bind_MdDbRasterImage_getCustomEntityTypeName_0).apply(null,arguments)},D5=b._emscripten_bind_MdDbRasterImage_getCustomEntityid_0=function(){return(D5=b._emscripten_bind_MdDbRasterImage_getCustomEntityid_0=b.asm.emscripten_bind_MdDbRasterImage_getCustomEntityid_0).apply(null,arguments)},E5=b._emscripten_bind_MdDbRasterImage_getCustomEntityTempid_0=function(){return(E5=b._emscripten_bind_MdDbRasterImage_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbRasterImage_getCustomEntityTempid_0).apply(null,
  1230. arguments)},F5=b._emscripten_bind_MdDbRasterImage_setCustomEntityTempid_1=function(){return(F5=b._emscripten_bind_MdDbRasterImage_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbRasterImage_setCustomEntityTempid_1).apply(null,arguments)},G5=b._emscripten_bind_MdDbRasterImage_getJson_0=function(){return(G5=b._emscripten_bind_MdDbRasterImage_getJson_0=b.asm.emscripten_bind_MdDbRasterImage_getJson_0).apply(null,arguments)},H5=b._emscripten_bind_MdDbRasterImage_setJson_1=function(){return(H5=b._emscripten_bind_MdDbRasterImage_setJson_1=
  1231. b.asm.emscripten_bind_MdDbRasterImage_setJson_1).apply(null,arguments)},I5=b._emscripten_bind_MdDbRasterImage_isKindOf_1=function(){return(I5=b._emscripten_bind_MdDbRasterImage_isKindOf_1=b.asm.emscripten_bind_MdDbRasterImage_isKindOf_1).apply(null,arguments)},J5=b._emscripten_bind_MdDbRasterImage_isNull_0=function(){return(J5=b._emscripten_bind_MdDbRasterImage_isNull_0=b.asm.emscripten_bind_MdDbRasterImage_isNull_0).apply(null,arguments)},K5=b._emscripten_bind_MdDbRasterImage___destroy___0=function(){return(K5=
  1232. b._emscripten_bind_MdDbRasterImage___destroy___0=b.asm.emscripten_bind_MdDbRasterImage___destroy___0).apply(null,arguments)},L5=b._emscripten_bind_MdDbRasterImageDef_MdDbRasterImageDef_0=function(){return(L5=b._emscripten_bind_MdDbRasterImageDef_MdDbRasterImageDef_0=b.asm.emscripten_bind_MdDbRasterImageDef_MdDbRasterImageDef_0).apply(null,arguments)},M5=b._emscripten_bind_MdDbRasterImageDef_setSourceFileName_1=function(){return(M5=b._emscripten_bind_MdDbRasterImageDef_setSourceFileName_1=b.asm.emscripten_bind_MdDbRasterImageDef_setSourceFileName_1).apply(null,
  1233. arguments)},N5=b._emscripten_bind_MdDbRasterImageDef_sourceFileName_0=function(){return(N5=b._emscripten_bind_MdDbRasterImageDef_sourceFileName_0=b.asm.emscripten_bind_MdDbRasterImageDef_sourceFileName_0).apply(null,arguments)},O5=b._emscripten_bind_MdDbRasterImageDef_saveToBase64_1=function(){return(O5=b._emscripten_bind_MdDbRasterImageDef_saveToBase64_1=b.asm.emscripten_bind_MdDbRasterImageDef_saveToBase64_1).apply(null,arguments)},P5=b._emscripten_bind_MdDbRasterImageDef_GetObjectID_0=function(){return(P5=
  1234. b._emscripten_bind_MdDbRasterImageDef_GetObjectID_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetObjectID_0).apply(null,arguments)},Q5=b._emscripten_bind_MdDbRasterImageDef_Erase_0=function(){return(Q5=b._emscripten_bind_MdDbRasterImageDef_Erase_0=b.asm.emscripten_bind_MdDbRasterImageDef_Erase_0).apply(null,arguments)},R5=b._emscripten_bind_MdDbRasterImageDef_isErased_0=function(){return(R5=b._emscripten_bind_MdDbRasterImageDef_isErased_0=b.asm.emscripten_bind_MdDbRasterImageDef_isErased_0).apply(null,
  1235. arguments)},S5=b._emscripten_bind_MdDbRasterImageDef_unErase_0=function(){return(S5=b._emscripten_bind_MdDbRasterImageDef_unErase_0=b.asm.emscripten_bind_MdDbRasterImageDef_unErase_0).apply(null,arguments)},T5=b._emscripten_bind_MdDbRasterImageDef_ConnectionTempObject_1=function(){return(T5=b._emscripten_bind_MdDbRasterImageDef_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbRasterImageDef_ConnectionTempObject_1).apply(null,arguments)},U5=b._emscripten_bind_MdDbRasterImageDef_GetExtensionDictionary_0=
  1236. function(){return(U5=b._emscripten_bind_MdDbRasterImageDef_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetExtensionDictionary_0).apply(null,arguments)},V5=b._emscripten_bind_MdDbRasterImageDef_CreateExtensionDictionary_0=function(){return(V5=b._emscripten_bind_MdDbRasterImageDef_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImageDef_CreateExtensionDictionary_0).apply(null,arguments)},W5=b._emscripten_bind_MdDbRasterImageDef_IsHaveExtensionDictionary_0=function(){return(W5=
  1237. b._emscripten_bind_MdDbRasterImageDef_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbRasterImageDef_IsHaveExtensionDictionary_0).apply(null,arguments)},X5=b._emscripten_bind_MdDbRasterImageDef_Clone_0=function(){return(X5=b._emscripten_bind_MdDbRasterImageDef_Clone_0=b.asm.emscripten_bind_MdDbRasterImageDef_Clone_0).apply(null,arguments)},Y5=b._emscripten_bind_MdDbRasterImageDef_GetHandle_0=function(){return(Y5=b._emscripten_bind_MdDbRasterImageDef_GetHandle_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetHandle_0).apply(null,
  1238. arguments)},Z5=b._emscripten_bind_MdDbRasterImageDef_GetDatabase_0=function(){return(Z5=b._emscripten_bind_MdDbRasterImageDef_GetDatabase_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetDatabase_0).apply(null,arguments)},$5=b._emscripten_bind_MdDbRasterImageDef_GetDatabaseIndexId_0=function(){return($5=b._emscripten_bind_MdDbRasterImageDef_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetDatabaseIndexId_0).apply(null,arguments)},a6=b._emscripten_bind_MdDbRasterImageDef_GetOwnerID_0=
  1239. function(){return(a6=b._emscripten_bind_MdDbRasterImageDef_GetOwnerID_0=b.asm.emscripten_bind_MdDbRasterImageDef_GetOwnerID_0).apply(null,arguments)},b6=b._emscripten_bind_MdDbRasterImageDef_assertObjectModification_1=function(){return(b6=b._emscripten_bind_MdDbRasterImageDef_assertObjectModification_1=b.asm.emscripten_bind_MdDbRasterImageDef_assertObjectModification_1).apply(null,arguments)},c6=b._emscripten_bind_MdDbRasterImageDef_moveGripPointsAt_4=function(){return(c6=b._emscripten_bind_MdDbRasterImageDef_moveGripPointsAt_4=
  1240. b.asm.emscripten_bind_MdDbRasterImageDef_moveGripPointsAt_4).apply(null,arguments)},d6=b._emscripten_bind_MdDbRasterImageDef_getGripPoints_0=function(){return(d6=b._emscripten_bind_MdDbRasterImageDef_getGripPoints_0=b.asm.emscripten_bind_MdDbRasterImageDef_getGripPoints_0).apply(null,arguments)},e6=b._emscripten_bind_MdDbRasterImageDef_getObjectName_0=function(){return(e6=b._emscripten_bind_MdDbRasterImageDef_getObjectName_0=b.asm.emscripten_bind_MdDbRasterImageDef_getObjectName_0).apply(null,arguments)},
  1241. f6=b._emscripten_bind_MdDbRasterImageDef_getDxf0_0=function(){return(f6=b._emscripten_bind_MdDbRasterImageDef_getDxf0_0=b.asm.emscripten_bind_MdDbRasterImageDef_getDxf0_0).apply(null,arguments)},g6=b._emscripten_bind_MdDbRasterImageDef_getCustomEntityTypeName_0=function(){return(g6=b._emscripten_bind_MdDbRasterImageDef_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbRasterImageDef_getCustomEntityTypeName_0).apply(null,arguments)},h6=b._emscripten_bind_MdDbRasterImageDef_getCustomEntityid_0=function(){return(h6=
  1242. b._emscripten_bind_MdDbRasterImageDef_getCustomEntityid_0=b.asm.emscripten_bind_MdDbRasterImageDef_getCustomEntityid_0).apply(null,arguments)},i6=b._emscripten_bind_MdDbRasterImageDef_getCustomEntityTempid_0=function(){return(i6=b._emscripten_bind_MdDbRasterImageDef_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbRasterImageDef_getCustomEntityTempid_0).apply(null,arguments)},j6=b._emscripten_bind_MdDbRasterImageDef_setCustomEntityTempid_1=function(){return(j6=b._emscripten_bind_MdDbRasterImageDef_setCustomEntityTempid_1=
  1243. b.asm.emscripten_bind_MdDbRasterImageDef_setCustomEntityTempid_1).apply(null,arguments)},k6=b._emscripten_bind_MdDbRasterImageDef_getJson_0=function(){return(k6=b._emscripten_bind_MdDbRasterImageDef_getJson_0=b.asm.emscripten_bind_MdDbRasterImageDef_getJson_0).apply(null,arguments)},l6=b._emscripten_bind_MdDbRasterImageDef_setJson_1=function(){return(l6=b._emscripten_bind_MdDbRasterImageDef_setJson_1=b.asm.emscripten_bind_MdDbRasterImageDef_setJson_1).apply(null,arguments)},m6=b._emscripten_bind_MdDbRasterImageDef_isKindOf_1=
  1244. function(){return(m6=b._emscripten_bind_MdDbRasterImageDef_isKindOf_1=b.asm.emscripten_bind_MdDbRasterImageDef_isKindOf_1).apply(null,arguments)},n6=b._emscripten_bind_MdDbRasterImageDef_isNull_0=function(){return(n6=b._emscripten_bind_MdDbRasterImageDef_isNull_0=b.asm.emscripten_bind_MdDbRasterImageDef_isNull_0).apply(null,arguments)},o6=b._emscripten_bind_MdDbRasterImageDef___destroy___0=function(){return(o6=b._emscripten_bind_MdDbRasterImageDef___destroy___0=b.asm.emscripten_bind_MdDbRasterImageDef___destroy___0).apply(null,
  1245. arguments)},p6=b._emscripten_bind_MdDbWipeout_MdDbWipeout_0=function(){return(p6=b._emscripten_bind_MdDbWipeout_MdDbWipeout_0=b.asm.emscripten_bind_MdDbWipeout_MdDbWipeout_0).apply(null,arguments)},q6=b._emscripten_bind_MdDbWipeout_setVertices_1=function(){return(q6=b._emscripten_bind_MdDbWipeout_setVertices_1=b.asm.emscripten_bind_MdDbWipeout_setVertices_1).apply(null,arguments)},r6=b._emscripten_bind_MdDbWipeout_getVertices_0=function(){return(r6=b._emscripten_bind_MdDbWipeout_getVertices_0=b.asm.emscripten_bind_MdDbWipeout_getVertices_0).apply(null,
  1246. arguments)},s6=b._emscripten_bind_MdDbWipeout_explode_0=function(){return(s6=b._emscripten_bind_MdDbWipeout_explode_0=b.asm.emscripten_bind_MdDbWipeout_explode_0).apply(null,arguments)},t6=b._emscripten_bind_MdDbWipeout_TrueColor_0=function(){return(t6=b._emscripten_bind_MdDbWipeout_TrueColor_0=b.asm.emscripten_bind_MdDbWipeout_TrueColor_0).apply(null,arguments)},u6=b._emscripten_bind_MdDbWipeout_SetTrueColor_1=function(){return(u6=b._emscripten_bind_MdDbWipeout_SetTrueColor_1=b.asm.emscripten_bind_MdDbWipeout_SetTrueColor_1).apply(null,
  1247. arguments)},v6=b._emscripten_bind_MdDbWipeout_ColorIndex_0=function(){return(v6=b._emscripten_bind_MdDbWipeout_ColorIndex_0=b.asm.emscripten_bind_MdDbWipeout_ColorIndex_0).apply(null,arguments)},w6=b._emscripten_bind_MdDbWipeout_SetColorIndex_1=function(){return(w6=b._emscripten_bind_MdDbWipeout_SetColorIndex_1=b.asm.emscripten_bind_MdDbWipeout_SetColorIndex_1).apply(null,arguments)},x6=b._emscripten_bind_MdDbWipeout_Layer_0=function(){return(x6=b._emscripten_bind_MdDbWipeout_Layer_0=b.asm.emscripten_bind_MdDbWipeout_Layer_0).apply(null,
  1248. arguments)},y6=b._emscripten_bind_MdDbWipeout_SetLayer_1=function(){return(y6=b._emscripten_bind_MdDbWipeout_SetLayer_1=b.asm.emscripten_bind_MdDbWipeout_SetLayer_1).apply(null,arguments)},z6=b._emscripten_bind_MdDbWipeout_LinetypeScale_0=function(){return(z6=b._emscripten_bind_MdDbWipeout_LinetypeScale_0=b.asm.emscripten_bind_MdDbWipeout_LinetypeScale_0).apply(null,arguments)},A6=b._emscripten_bind_MdDbWipeout_SetLinetypeScale_1=function(){return(A6=b._emscripten_bind_MdDbWipeout_SetLinetypeScale_1=
  1249. b.asm.emscripten_bind_MdDbWipeout_SetLinetypeScale_1).apply(null,arguments)},B6=b._emscripten_bind_MdDbWipeout_Visible_0=function(){return(B6=b._emscripten_bind_MdDbWipeout_Visible_0=b.asm.emscripten_bind_MdDbWipeout_Visible_0).apply(null,arguments)},C6=b._emscripten_bind_MdDbWipeout_SetVisible_1=function(){return(C6=b._emscripten_bind_MdDbWipeout_SetVisible_1=b.asm.emscripten_bind_MdDbWipeout_SetVisible_1).apply(null,arguments)},D6=b._emscripten_bind_MdDbWipeout_Lineweight_0=function(){return(D6=
  1250. b._emscripten_bind_MdDbWipeout_Lineweight_0=b.asm.emscripten_bind_MdDbWipeout_Lineweight_0).apply(null,arguments)},E6=b._emscripten_bind_MdDbWipeout_SetLineweight_1=function(){return(E6=b._emscripten_bind_MdDbWipeout_SetLineweight_1=b.asm.emscripten_bind_MdDbWipeout_SetLineweight_1).apply(null,arguments)},F6=b._emscripten_bind_MdDbWipeout_TextStyle_0=function(){return(F6=b._emscripten_bind_MdDbWipeout_TextStyle_0=b.asm.emscripten_bind_MdDbWipeout_TextStyle_0).apply(null,arguments)},G6=b._emscripten_bind_MdDbWipeout_SetTextStyle_1=
  1251. function(){return(G6=b._emscripten_bind_MdDbWipeout_SetTextStyle_1=b.asm.emscripten_bind_MdDbWipeout_SetTextStyle_1).apply(null,arguments)},H6=b._emscripten_bind_MdDbWipeout_Highlight_1=function(){return(H6=b._emscripten_bind_MdDbWipeout_Highlight_1=b.asm.emscripten_bind_MdDbWipeout_Highlight_1).apply(null,arguments)},I6=b._emscripten_bind_MdDbWipeout_Move_2=function(){return(I6=b._emscripten_bind_MdDbWipeout_Move_2=b.asm.emscripten_bind_MdDbWipeout_Move_2).apply(null,arguments)},J6=b._emscripten_bind_MdDbWipeout_Rotate_2=
  1252. function(){return(J6=b._emscripten_bind_MdDbWipeout_Rotate_2=b.asm.emscripten_bind_MdDbWipeout_Rotate_2).apply(null,arguments)},K6=b._emscripten_bind_MdDbWipeout_Mirror_2=function(){return(K6=b._emscripten_bind_MdDbWipeout_Mirror_2=b.asm.emscripten_bind_MdDbWipeout_Mirror_2).apply(null,arguments)},L6=b._emscripten_bind_MdDbWipeout_ScaleEntity_2=function(){return(L6=b._emscripten_bind_MdDbWipeout_ScaleEntity_2=b.asm.emscripten_bind_MdDbWipeout_ScaleEntity_2).apply(null,arguments)},M6=b._emscripten_bind_MdDbWipeout_TransformBy_1=
  1253. function(){return(M6=b._emscripten_bind_MdDbWipeout_TransformBy_1=b.asm.emscripten_bind_MdDbWipeout_TransformBy_1).apply(null,arguments)},N6=b._emscripten_bind_MdDbWipeout_GetBoundingBox_0=function(){return(N6=b._emscripten_bind_MdDbWipeout_GetBoundingBox_0=b.asm.emscripten_bind_MdDbWipeout_GetBoundingBox_0).apply(null,arguments)},O6=b._emscripten_bind_MdDbWipeout_GetXData_1=function(){return(O6=b._emscripten_bind_MdDbWipeout_GetXData_1=b.asm.emscripten_bind_MdDbWipeout_GetXData_1).apply(null,arguments)},
  1254. P6=b._emscripten_bind_MdDbWipeout_SetXData_1=function(){return(P6=b._emscripten_bind_MdDbWipeout_SetXData_1=b.asm.emscripten_bind_MdDbWipeout_SetXData_1).apply(null,arguments)},Q6=b._emscripten_bind_MdDbWipeout_GetxDataString_2=function(){return(Q6=b._emscripten_bind_MdDbWipeout_GetxDataString_2=b.asm.emscripten_bind_MdDbWipeout_GetxDataString_2).apply(null,arguments)},R6=b._emscripten_bind_MdDbWipeout_SetxDataString_3=function(){return(R6=b._emscripten_bind_MdDbWipeout_SetxDataString_3=b.asm.emscripten_bind_MdDbWipeout_SetxDataString_3).apply(null,
  1255. arguments)},S6=b._emscripten_bind_MdDbWipeout_GetxDataDouble_2=function(){return(S6=b._emscripten_bind_MdDbWipeout_GetxDataDouble_2=b.asm.emscripten_bind_MdDbWipeout_GetxDataDouble_2).apply(null,arguments)},T6=b._emscripten_bind_MdDbWipeout_SetxDataDouble_3=function(){return(T6=b._emscripten_bind_MdDbWipeout_SetxDataDouble_3=b.asm.emscripten_bind_MdDbWipeout_SetxDataDouble_3).apply(null,arguments)},U6=b._emscripten_bind_MdDbWipeout_GetxDataLong_2=function(){return(U6=b._emscripten_bind_MdDbWipeout_GetxDataLong_2=
  1256. b.asm.emscripten_bind_MdDbWipeout_GetxDataLong_2).apply(null,arguments)},V6=b._emscripten_bind_MdDbWipeout_SetxDataLong_3=function(){return(V6=b._emscripten_bind_MdDbWipeout_SetxDataLong_3=b.asm.emscripten_bind_MdDbWipeout_SetxDataLong_3).apply(null,arguments)},W6=b._emscripten_bind_MdDbWipeout_GetxDataPoint_2=function(){return(W6=b._emscripten_bind_MdDbWipeout_GetxDataPoint_2=b.asm.emscripten_bind_MdDbWipeout_GetxDataPoint_2).apply(null,arguments)},X6=b._emscripten_bind_MdDbWipeout_SetxDataPoint_3=
  1257. function(){return(X6=b._emscripten_bind_MdDbWipeout_SetxDataPoint_3=b.asm.emscripten_bind_MdDbWipeout_SetxDataPoint_3).apply(null,arguments)},Y6=b._emscripten_bind_MdDbWipeout_DeleteXData_1=function(){return(Y6=b._emscripten_bind_MdDbWipeout_DeleteXData_1=b.asm.emscripten_bind_MdDbWipeout_DeleteXData_1).apply(null,arguments)},Z6=b._emscripten_bind_MdDbWipeout_GetAllAppName_0=function(){return(Z6=b._emscripten_bind_MdDbWipeout_GetAllAppName_0=b.asm.emscripten_bind_MdDbWipeout_GetAllAppName_0).apply(null,
  1258. arguments)},$6=b._emscripten_bind_MdDbWipeout_LayerId_0=function(){return($6=b._emscripten_bind_MdDbWipeout_LayerId_0=b.asm.emscripten_bind_MdDbWipeout_LayerId_0).apply(null,arguments)},a7=b._emscripten_bind_MdDbWipeout_SetLayerId_1=function(){return(a7=b._emscripten_bind_MdDbWipeout_SetLayerId_1=b.asm.emscripten_bind_MdDbWipeout_SetLayerId_1).apply(null,arguments)},b7=b._emscripten_bind_MdDbWipeout_LinetypeId_0=function(){return(b7=b._emscripten_bind_MdDbWipeout_LinetypeId_0=b.asm.emscripten_bind_MdDbWipeout_LinetypeId_0).apply(null,
  1259. arguments)},c7=b._emscripten_bind_MdDbWipeout_SetLinetypeId_1=function(){return(c7=b._emscripten_bind_MdDbWipeout_SetLinetypeId_1=b.asm.emscripten_bind_MdDbWipeout_SetLinetypeId_1).apply(null,arguments)},d7=b._emscripten_bind_MdDbWipeout_Linetype_0=function(){return(d7=b._emscripten_bind_MdDbWipeout_Linetype_0=b.asm.emscripten_bind_MdDbWipeout_Linetype_0).apply(null,arguments)},e7=b._emscripten_bind_MdDbWipeout_SetLinetype_1=function(){return(e7=b._emscripten_bind_MdDbWipeout_SetLinetype_1=b.asm.emscripten_bind_MdDbWipeout_SetLinetype_1).apply(null,
  1260. arguments)},f7=b._emscripten_bind_MdDbWipeout_TextStyleId_0=function(){return(f7=b._emscripten_bind_MdDbWipeout_TextStyleId_0=b.asm.emscripten_bind_MdDbWipeout_TextStyleId_0).apply(null,arguments)},g7=b._emscripten_bind_MdDbWipeout_SetTextStyleId_1=function(){return(g7=b._emscripten_bind_MdDbWipeout_SetTextStyleId_1=b.asm.emscripten_bind_MdDbWipeout_SetTextStyleId_1).apply(null,arguments)},h7=b._emscripten_bind_MdDbWipeout_IntersectWith_2=function(){return(h7=b._emscripten_bind_MdDbWipeout_IntersectWith_2=
  1261. b.asm.emscripten_bind_MdDbWipeout_IntersectWith_2).apply(null,arguments)},i7=b._emscripten_bind_MdDbWipeout_getArea_0=function(){return(i7=b._emscripten_bind_MdDbWipeout_getArea_0=b.asm.emscripten_bind_MdDbWipeout_getArea_0).apply(null,arguments)},j7=b._emscripten_bind_MdDbWipeout_disableUpdateDisplay_1=function(){return(j7=b._emscripten_bind_MdDbWipeout_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbWipeout_disableUpdateDisplay_1).apply(null,arguments)},k7=b._emscripten_bind_MdDbWipeout_isPropertiesWindowCustom_0=
  1262. function(){return(k7=b._emscripten_bind_MdDbWipeout_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbWipeout_isPropertiesWindowCustom_0).apply(null,arguments)},l7=b._emscripten_bind_MdDbWipeout_setPropertiesWindowCustom_1=function(){return(l7=b._emscripten_bind_MdDbWipeout_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbWipeout_setPropertiesWindowCustom_1).apply(null,arguments)},m7=b._emscripten_bind_MdDbWipeout_updateDisplay_0=function(){return(m7=b._emscripten_bind_MdDbWipeout_updateDisplay_0=
  1263. b.asm.emscripten_bind_MdDbWipeout_updateDisplay_0).apply(null,arguments)},n7=b._emscripten_bind_MdDbWipeout_DrawOrder_0=function(){return(n7=b._emscripten_bind_MdDbWipeout_DrawOrder_0=b.asm.emscripten_bind_MdDbWipeout_DrawOrder_0).apply(null,arguments)},o7=b._emscripten_bind_MdDbWipeout_SetDrawOrder_1=function(){return(o7=b._emscripten_bind_MdDbWipeout_SetDrawOrder_1=b.asm.emscripten_bind_MdDbWipeout_SetDrawOrder_1).apply(null,arguments)},p7=b._emscripten_bind_MdDbWipeout_normal_0=function(){return(p7=
  1264. b._emscripten_bind_MdDbWipeout_normal_0=b.asm.emscripten_bind_MdDbWipeout_normal_0).apply(null,arguments)},q7=b._emscripten_bind_MdDbWipeout_setNormal_1=function(){return(q7=b._emscripten_bind_MdDbWipeout_setNormal_1=b.asm.emscripten_bind_MdDbWipeout_setNormal_1).apply(null,arguments)},r7=b._emscripten_bind_MdDbWipeout_GetObjectID_0=function(){return(r7=b._emscripten_bind_MdDbWipeout_GetObjectID_0=b.asm.emscripten_bind_MdDbWipeout_GetObjectID_0).apply(null,arguments)},s7=b._emscripten_bind_MdDbWipeout_Erase_0=
  1265. function(){return(s7=b._emscripten_bind_MdDbWipeout_Erase_0=b.asm.emscripten_bind_MdDbWipeout_Erase_0).apply(null,arguments)},t7=b._emscripten_bind_MdDbWipeout_isErased_0=function(){return(t7=b._emscripten_bind_MdDbWipeout_isErased_0=b.asm.emscripten_bind_MdDbWipeout_isErased_0).apply(null,arguments)},u7=b._emscripten_bind_MdDbWipeout_unErase_0=function(){return(u7=b._emscripten_bind_MdDbWipeout_unErase_0=b.asm.emscripten_bind_MdDbWipeout_unErase_0).apply(null,arguments)},v7=b._emscripten_bind_MdDbWipeout_ConnectionTempObject_1=
  1266. function(){return(v7=b._emscripten_bind_MdDbWipeout_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbWipeout_ConnectionTempObject_1).apply(null,arguments)},w7=b._emscripten_bind_MdDbWipeout_GetExtensionDictionary_0=function(){return(w7=b._emscripten_bind_MdDbWipeout_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbWipeout_GetExtensionDictionary_0).apply(null,arguments)},x7=b._emscripten_bind_MdDbWipeout_CreateExtensionDictionary_0=function(){return(x7=b._emscripten_bind_MdDbWipeout_CreateExtensionDictionary_0=
  1267. b.asm.emscripten_bind_MdDbWipeout_CreateExtensionDictionary_0).apply(null,arguments)},y7=b._emscripten_bind_MdDbWipeout_IsHaveExtensionDictionary_0=function(){return(y7=b._emscripten_bind_MdDbWipeout_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbWipeout_IsHaveExtensionDictionary_0).apply(null,arguments)},z7=b._emscripten_bind_MdDbWipeout_Clone_0=function(){return(z7=b._emscripten_bind_MdDbWipeout_Clone_0=b.asm.emscripten_bind_MdDbWipeout_Clone_0).apply(null,arguments)},A7=b._emscripten_bind_MdDbWipeout_GetHandle_0=
  1268. function(){return(A7=b._emscripten_bind_MdDbWipeout_GetHandle_0=b.asm.emscripten_bind_MdDbWipeout_GetHandle_0).apply(null,arguments)},B7=b._emscripten_bind_MdDbWipeout_GetDatabase_0=function(){return(B7=b._emscripten_bind_MdDbWipeout_GetDatabase_0=b.asm.emscripten_bind_MdDbWipeout_GetDatabase_0).apply(null,arguments)},C7=b._emscripten_bind_MdDbWipeout_GetDatabaseIndexId_0=function(){return(C7=b._emscripten_bind_MdDbWipeout_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbWipeout_GetDatabaseIndexId_0).apply(null,
  1269. arguments)},D7=b._emscripten_bind_MdDbWipeout_GetOwnerID_0=function(){return(D7=b._emscripten_bind_MdDbWipeout_GetOwnerID_0=b.asm.emscripten_bind_MdDbWipeout_GetOwnerID_0).apply(null,arguments)},E7=b._emscripten_bind_MdDbWipeout_assertObjectModification_1=function(){return(E7=b._emscripten_bind_MdDbWipeout_assertObjectModification_1=b.asm.emscripten_bind_MdDbWipeout_assertObjectModification_1).apply(null,arguments)},F7=b._emscripten_bind_MdDbWipeout_moveGripPointsAt_4=function(){return(F7=b._emscripten_bind_MdDbWipeout_moveGripPointsAt_4=
  1270. b.asm.emscripten_bind_MdDbWipeout_moveGripPointsAt_4).apply(null,arguments)},G7=b._emscripten_bind_MdDbWipeout_getGripPoints_0=function(){return(G7=b._emscripten_bind_MdDbWipeout_getGripPoints_0=b.asm.emscripten_bind_MdDbWipeout_getGripPoints_0).apply(null,arguments)},H7=b._emscripten_bind_MdDbWipeout_getObjectName_0=function(){return(H7=b._emscripten_bind_MdDbWipeout_getObjectName_0=b.asm.emscripten_bind_MdDbWipeout_getObjectName_0).apply(null,arguments)},I7=b._emscripten_bind_MdDbWipeout_getDxf0_0=
  1271. function(){return(I7=b._emscripten_bind_MdDbWipeout_getDxf0_0=b.asm.emscripten_bind_MdDbWipeout_getDxf0_0).apply(null,arguments)},J7=b._emscripten_bind_MdDbWipeout_getCustomEntityTypeName_0=function(){return(J7=b._emscripten_bind_MdDbWipeout_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbWipeout_getCustomEntityTypeName_0).apply(null,arguments)},K7=b._emscripten_bind_MdDbWipeout_getCustomEntityid_0=function(){return(K7=b._emscripten_bind_MdDbWipeout_getCustomEntityid_0=b.asm.emscripten_bind_MdDbWipeout_getCustomEntityid_0).apply(null,
  1272. arguments)},L7=b._emscripten_bind_MdDbWipeout_getCustomEntityTempid_0=function(){return(L7=b._emscripten_bind_MdDbWipeout_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbWipeout_getCustomEntityTempid_0).apply(null,arguments)},M7=b._emscripten_bind_MdDbWipeout_setCustomEntityTempid_1=function(){return(M7=b._emscripten_bind_MdDbWipeout_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbWipeout_setCustomEntityTempid_1).apply(null,arguments)},N7=b._emscripten_bind_MdDbWipeout_getJson_0=function(){return(N7=
  1273. b._emscripten_bind_MdDbWipeout_getJson_0=b.asm.emscripten_bind_MdDbWipeout_getJson_0).apply(null,arguments)},O7=b._emscripten_bind_MdDbWipeout_setJson_1=function(){return(O7=b._emscripten_bind_MdDbWipeout_setJson_1=b.asm.emscripten_bind_MdDbWipeout_setJson_1).apply(null,arguments)},P7=b._emscripten_bind_MdDbWipeout_isKindOf_1=function(){return(P7=b._emscripten_bind_MdDbWipeout_isKindOf_1=b.asm.emscripten_bind_MdDbWipeout_isKindOf_1).apply(null,arguments)},Q7=b._emscripten_bind_MdDbWipeout_isNull_0=
  1274. function(){return(Q7=b._emscripten_bind_MdDbWipeout_isNull_0=b.asm.emscripten_bind_MdDbWipeout_isNull_0).apply(null,arguments)},R7=b._emscripten_bind_MdDbWipeout___destroy___0=function(){return(R7=b._emscripten_bind_MdDbWipeout___destroy___0=b.asm.emscripten_bind_MdDbWipeout___destroy___0).apply(null,arguments)},S7=b._emscripten_bind_MdDbDictionary_MdDbDictionary_0=function(){return(S7=b._emscripten_bind_MdDbDictionary_MdDbDictionary_0=b.asm.emscripten_bind_MdDbDictionary_MdDbDictionary_0).apply(null,
  1275. arguments)},T7=b._emscripten_bind_MdDbDictionary_remove_1=function(){return(T7=b._emscripten_bind_MdDbDictionary_remove_1=b.asm.emscripten_bind_MdDbDictionary_remove_1).apply(null,arguments)},U7=b._emscripten_bind_MdDbDictionary_addObject_2=function(){return(U7=b._emscripten_bind_MdDbDictionary_addObject_2=b.asm.emscripten_bind_MdDbDictionary_addObject_2).apply(null,arguments)},V7=b._emscripten_bind_MdDbDictionary_getAllObject_0=function(){return(V7=b._emscripten_bind_MdDbDictionary_getAllObject_0=
  1276. b.asm.emscripten_bind_MdDbDictionary_getAllObject_0).apply(null,arguments)},W7=b._emscripten_bind_MdDbDictionary_getAllObjectName_0=function(){return(W7=b._emscripten_bind_MdDbDictionary_getAllObjectName_0=b.asm.emscripten_bind_MdDbDictionary_getAllObjectName_0).apply(null,arguments)},X7=b._emscripten_bind_MdDbDictionary_getAt_2=function(){return(X7=b._emscripten_bind_MdDbDictionary_getAt_2=b.asm.emscripten_bind_MdDbDictionary_getAt_2).apply(null,arguments)},Y7=b._emscripten_bind_MdDbDictionary_GetObjectID_0=
  1277. function(){return(Y7=b._emscripten_bind_MdDbDictionary_GetObjectID_0=b.asm.emscripten_bind_MdDbDictionary_GetObjectID_0).apply(null,arguments)},Z7=b._emscripten_bind_MdDbDictionary_Erase_0=function(){return(Z7=b._emscripten_bind_MdDbDictionary_Erase_0=b.asm.emscripten_bind_MdDbDictionary_Erase_0).apply(null,arguments)},$7=b._emscripten_bind_MdDbDictionary_isErased_0=function(){return($7=b._emscripten_bind_MdDbDictionary_isErased_0=b.asm.emscripten_bind_MdDbDictionary_isErased_0).apply(null,arguments)},
  1278. a8=b._emscripten_bind_MdDbDictionary_unErase_0=function(){return(a8=b._emscripten_bind_MdDbDictionary_unErase_0=b.asm.emscripten_bind_MdDbDictionary_unErase_0).apply(null,arguments)},b8=b._emscripten_bind_MdDbDictionary_ConnectionTempObject_1=function(){return(b8=b._emscripten_bind_MdDbDictionary_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbDictionary_ConnectionTempObject_1).apply(null,arguments)},c8=b._emscripten_bind_MdDbDictionary_GetExtensionDictionary_0=function(){return(c8=b._emscripten_bind_MdDbDictionary_GetExtensionDictionary_0=
  1279. b.asm.emscripten_bind_MdDbDictionary_GetExtensionDictionary_0).apply(null,arguments)},d8=b._emscripten_bind_MdDbDictionary_CreateExtensionDictionary_0=function(){return(d8=b._emscripten_bind_MdDbDictionary_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbDictionary_CreateExtensionDictionary_0).apply(null,arguments)},e8=b._emscripten_bind_MdDbDictionary_IsHaveExtensionDictionary_0=function(){return(e8=b._emscripten_bind_MdDbDictionary_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbDictionary_IsHaveExtensionDictionary_0).apply(null,
  1280. arguments)},f8=b._emscripten_bind_MdDbDictionary_Clone_0=function(){return(f8=b._emscripten_bind_MdDbDictionary_Clone_0=b.asm.emscripten_bind_MdDbDictionary_Clone_0).apply(null,arguments)},g8=b._emscripten_bind_MdDbDictionary_GetHandle_0=function(){return(g8=b._emscripten_bind_MdDbDictionary_GetHandle_0=b.asm.emscripten_bind_MdDbDictionary_GetHandle_0).apply(null,arguments)},h8=b._emscripten_bind_MdDbDictionary_GetDatabase_0=function(){return(h8=b._emscripten_bind_MdDbDictionary_GetDatabase_0=b.asm.emscripten_bind_MdDbDictionary_GetDatabase_0).apply(null,
  1281. arguments)},i8=b._emscripten_bind_MdDbDictionary_GetDatabaseIndexId_0=function(){return(i8=b._emscripten_bind_MdDbDictionary_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbDictionary_GetDatabaseIndexId_0).apply(null,arguments)},j8=b._emscripten_bind_MdDbDictionary_GetOwnerID_0=function(){return(j8=b._emscripten_bind_MdDbDictionary_GetOwnerID_0=b.asm.emscripten_bind_MdDbDictionary_GetOwnerID_0).apply(null,arguments)},k8=b._emscripten_bind_MdDbDictionary_assertObjectModification_1=function(){return(k8=
  1282. b._emscripten_bind_MdDbDictionary_assertObjectModification_1=b.asm.emscripten_bind_MdDbDictionary_assertObjectModification_1).apply(null,arguments)},l8=b._emscripten_bind_MdDbDictionary_moveGripPointsAt_4=function(){return(l8=b._emscripten_bind_MdDbDictionary_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbDictionary_moveGripPointsAt_4).apply(null,arguments)},m8=b._emscripten_bind_MdDbDictionary_getGripPoints_0=function(){return(m8=b._emscripten_bind_MdDbDictionary_getGripPoints_0=b.asm.emscripten_bind_MdDbDictionary_getGripPoints_0).apply(null,
  1283. arguments)},n8=b._emscripten_bind_MdDbDictionary_getObjectName_0=function(){return(n8=b._emscripten_bind_MdDbDictionary_getObjectName_0=b.asm.emscripten_bind_MdDbDictionary_getObjectName_0).apply(null,arguments)},o8=b._emscripten_bind_MdDbDictionary_getDxf0_0=function(){return(o8=b._emscripten_bind_MdDbDictionary_getDxf0_0=b.asm.emscripten_bind_MdDbDictionary_getDxf0_0).apply(null,arguments)},p8=b._emscripten_bind_MdDbDictionary_getCustomEntityTypeName_0=function(){return(p8=b._emscripten_bind_MdDbDictionary_getCustomEntityTypeName_0=
  1284. b.asm.emscripten_bind_MdDbDictionary_getCustomEntityTypeName_0).apply(null,arguments)},q8=b._emscripten_bind_MdDbDictionary_getCustomEntityid_0=function(){return(q8=b._emscripten_bind_MdDbDictionary_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDictionary_getCustomEntityid_0).apply(null,arguments)},r8=b._emscripten_bind_MdDbDictionary_getCustomEntityTempid_0=function(){return(r8=b._emscripten_bind_MdDbDictionary_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbDictionary_getCustomEntityTempid_0).apply(null,
  1285. arguments)},s8=b._emscripten_bind_MdDbDictionary_setCustomEntityTempid_1=function(){return(s8=b._emscripten_bind_MdDbDictionary_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbDictionary_setCustomEntityTempid_1).apply(null,arguments)},t8=b._emscripten_bind_MdDbDictionary_getJson_0=function(){return(t8=b._emscripten_bind_MdDbDictionary_getJson_0=b.asm.emscripten_bind_MdDbDictionary_getJson_0).apply(null,arguments)},u8=b._emscripten_bind_MdDbDictionary_setJson_1=function(){return(u8=b._emscripten_bind_MdDbDictionary_setJson_1=
  1286. b.asm.emscripten_bind_MdDbDictionary_setJson_1).apply(null,arguments)},v8=b._emscripten_bind_MdDbDictionary_isKindOf_1=function(){return(v8=b._emscripten_bind_MdDbDictionary_isKindOf_1=b.asm.emscripten_bind_MdDbDictionary_isKindOf_1).apply(null,arguments)},w8=b._emscripten_bind_MdDbDictionary_isNull_0=function(){return(w8=b._emscripten_bind_MdDbDictionary_isNull_0=b.asm.emscripten_bind_MdDbDictionary_isNull_0).apply(null,arguments)},x8=b._emscripten_bind_MdDbDictionary___destroy___0=function(){return(x8=
  1287. b._emscripten_bind_MdDbDictionary___destroy___0=b.asm.emscripten_bind_MdDbDictionary___destroy___0).apply(null,arguments)},y8=b._emscripten_bind_MdDbXrecord_MdDbXrecord_0=function(){return(y8=b._emscripten_bind_MdDbXrecord_MdDbXrecord_0=b.asm.emscripten_bind_MdDbXrecord_MdDbXrecord_0).apply(null,arguments)},z8=b._emscripten_bind_MdDbXrecord_getData_0=function(){return(z8=b._emscripten_bind_MdDbXrecord_getData_0=b.asm.emscripten_bind_MdDbXrecord_getData_0).apply(null,arguments)},A8=b._emscripten_bind_MdDbXrecord_setData_1=
  1288. function(){return(A8=b._emscripten_bind_MdDbXrecord_setData_1=b.asm.emscripten_bind_MdDbXrecord_setData_1).apply(null,arguments)},B8=b._emscripten_bind_MdDbXrecord_GetObjectID_0=function(){return(B8=b._emscripten_bind_MdDbXrecord_GetObjectID_0=b.asm.emscripten_bind_MdDbXrecord_GetObjectID_0).apply(null,arguments)},C8=b._emscripten_bind_MdDbXrecord_Erase_0=function(){return(C8=b._emscripten_bind_MdDbXrecord_Erase_0=b.asm.emscripten_bind_MdDbXrecord_Erase_0).apply(null,arguments)},D8=b._emscripten_bind_MdDbXrecord_isErased_0=
  1289. function(){return(D8=b._emscripten_bind_MdDbXrecord_isErased_0=b.asm.emscripten_bind_MdDbXrecord_isErased_0).apply(null,arguments)},E8=b._emscripten_bind_MdDbXrecord_unErase_0=function(){return(E8=b._emscripten_bind_MdDbXrecord_unErase_0=b.asm.emscripten_bind_MdDbXrecord_unErase_0).apply(null,arguments)},F8=b._emscripten_bind_MdDbXrecord_ConnectionTempObject_1=function(){return(F8=b._emscripten_bind_MdDbXrecord_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbXrecord_ConnectionTempObject_1).apply(null,
  1290. arguments)},G8=b._emscripten_bind_MdDbXrecord_GetExtensionDictionary_0=function(){return(G8=b._emscripten_bind_MdDbXrecord_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbXrecord_GetExtensionDictionary_0).apply(null,arguments)},H8=b._emscripten_bind_MdDbXrecord_CreateExtensionDictionary_0=function(){return(H8=b._emscripten_bind_MdDbXrecord_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbXrecord_CreateExtensionDictionary_0).apply(null,arguments)},I8=b._emscripten_bind_MdDbXrecord_IsHaveExtensionDictionary_0=
  1291. function(){return(I8=b._emscripten_bind_MdDbXrecord_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbXrecord_IsHaveExtensionDictionary_0).apply(null,arguments)},J8=b._emscripten_bind_MdDbXrecord_Clone_0=function(){return(J8=b._emscripten_bind_MdDbXrecord_Clone_0=b.asm.emscripten_bind_MdDbXrecord_Clone_0).apply(null,arguments)},K8=b._emscripten_bind_MdDbXrecord_GetHandle_0=function(){return(K8=b._emscripten_bind_MdDbXrecord_GetHandle_0=b.asm.emscripten_bind_MdDbXrecord_GetHandle_0).apply(null,
  1292. arguments)},L8=b._emscripten_bind_MdDbXrecord_GetDatabase_0=function(){return(L8=b._emscripten_bind_MdDbXrecord_GetDatabase_0=b.asm.emscripten_bind_MdDbXrecord_GetDatabase_0).apply(null,arguments)},M8=b._emscripten_bind_MdDbXrecord_GetDatabaseIndexId_0=function(){return(M8=b._emscripten_bind_MdDbXrecord_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbXrecord_GetDatabaseIndexId_0).apply(null,arguments)},N8=b._emscripten_bind_MdDbXrecord_GetOwnerID_0=function(){return(N8=b._emscripten_bind_MdDbXrecord_GetOwnerID_0=
  1293. b.asm.emscripten_bind_MdDbXrecord_GetOwnerID_0).apply(null,arguments)},O8=b._emscripten_bind_MdDbXrecord_assertObjectModification_1=function(){return(O8=b._emscripten_bind_MdDbXrecord_assertObjectModification_1=b.asm.emscripten_bind_MdDbXrecord_assertObjectModification_1).apply(null,arguments)},P8=b._emscripten_bind_MdDbXrecord_moveGripPointsAt_4=function(){return(P8=b._emscripten_bind_MdDbXrecord_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbXrecord_moveGripPointsAt_4).apply(null,arguments)},Q8=b._emscripten_bind_MdDbXrecord_getGripPoints_0=
  1294. function(){return(Q8=b._emscripten_bind_MdDbXrecord_getGripPoints_0=b.asm.emscripten_bind_MdDbXrecord_getGripPoints_0).apply(null,arguments)},R8=b._emscripten_bind_MdDbXrecord_getObjectName_0=function(){return(R8=b._emscripten_bind_MdDbXrecord_getObjectName_0=b.asm.emscripten_bind_MdDbXrecord_getObjectName_0).apply(null,arguments)},S8=b._emscripten_bind_MdDbXrecord_getDxf0_0=function(){return(S8=b._emscripten_bind_MdDbXrecord_getDxf0_0=b.asm.emscripten_bind_MdDbXrecord_getDxf0_0).apply(null,arguments)},
  1295. T8=b._emscripten_bind_MdDbXrecord_getCustomEntityTypeName_0=function(){return(T8=b._emscripten_bind_MdDbXrecord_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbXrecord_getCustomEntityTypeName_0).apply(null,arguments)},U8=b._emscripten_bind_MdDbXrecord_getCustomEntityid_0=function(){return(U8=b._emscripten_bind_MdDbXrecord_getCustomEntityid_0=b.asm.emscripten_bind_MdDbXrecord_getCustomEntityid_0).apply(null,arguments)},V8=b._emscripten_bind_MdDbXrecord_getCustomEntityTempid_0=function(){return(V8=
  1296. b._emscripten_bind_MdDbXrecord_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbXrecord_getCustomEntityTempid_0).apply(null,arguments)},W8=b._emscripten_bind_MdDbXrecord_setCustomEntityTempid_1=function(){return(W8=b._emscripten_bind_MdDbXrecord_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbXrecord_setCustomEntityTempid_1).apply(null,arguments)},X8=b._emscripten_bind_MdDbXrecord_getJson_0=function(){return(X8=b._emscripten_bind_MdDbXrecord_getJson_0=b.asm.emscripten_bind_MdDbXrecord_getJson_0).apply(null,
  1297. arguments)},Y8=b._emscripten_bind_MdDbXrecord_setJson_1=function(){return(Y8=b._emscripten_bind_MdDbXrecord_setJson_1=b.asm.emscripten_bind_MdDbXrecord_setJson_1).apply(null,arguments)},Z8=b._emscripten_bind_MdDbXrecord_isKindOf_1=function(){return(Z8=b._emscripten_bind_MdDbXrecord_isKindOf_1=b.asm.emscripten_bind_MdDbXrecord_isKindOf_1).apply(null,arguments)},$8=b._emscripten_bind_MdDbXrecord_isNull_0=function(){return($8=b._emscripten_bind_MdDbXrecord_isNull_0=b.asm.emscripten_bind_MdDbXrecord_isNull_0).apply(null,
  1298. arguments)},a9=b._emscripten_bind_MdDbXrecord___destroy___0=function(){return(a9=b._emscripten_bind_MdDbXrecord___destroy___0=b.asm.emscripten_bind_MdDbXrecord___destroy___0).apply(null,arguments)},b9=b._emscripten_bind_MdDbGroup_MdDbGroup_0=function(){return(b9=b._emscripten_bind_MdDbGroup_MdDbGroup_0=b.asm.emscripten_bind_MdDbGroup_MdDbGroup_0).apply(null,arguments)},c9=b._emscripten_bind_MdDbGroup_description_0=function(){return(c9=b._emscripten_bind_MdDbGroup_description_0=b.asm.emscripten_bind_MdDbGroup_description_0).apply(null,
  1299. arguments)},d9=b._emscripten_bind_MdDbGroup_setDescription_1=function(){return(d9=b._emscripten_bind_MdDbGroup_setDescription_1=b.asm.emscripten_bind_MdDbGroup_setDescription_1).apply(null,arguments)},e9=b._emscripten_bind_MdDbGroup_name_0=function(){return(e9=b._emscripten_bind_MdDbGroup_name_0=b.asm.emscripten_bind_MdDbGroup_name_0).apply(null,arguments)},f9=b._emscripten_bind_MdDbGroup_setName_1=function(){return(f9=b._emscripten_bind_MdDbGroup_setName_1=b.asm.emscripten_bind_MdDbGroup_setName_1).apply(null,
  1300. arguments)},g9=b._emscripten_bind_MdDbGroup_isSelectable_0=function(){return(g9=b._emscripten_bind_MdDbGroup_isSelectable_0=b.asm.emscripten_bind_MdDbGroup_isSelectable_0).apply(null,arguments)},h9=b._emscripten_bind_MdDbGroup_setSelectable_1=function(){return(h9=b._emscripten_bind_MdDbGroup_setSelectable_1=b.asm.emscripten_bind_MdDbGroup_setSelectable_1).apply(null,arguments)},i9=b._emscripten_bind_MdDbGroup_clear_0=function(){return(i9=b._emscripten_bind_MdDbGroup_clear_0=b.asm.emscripten_bind_MdDbGroup_clear_0).apply(null,
  1301. arguments)},j9=b._emscripten_bind_MdDbGroup_append_1=function(){return(j9=b._emscripten_bind_MdDbGroup_append_1=b.asm.emscripten_bind_MdDbGroup_append_1).apply(null,arguments)},k9=b._emscripten_bind_MdDbGroup_appendArray_1=function(){return(k9=b._emscripten_bind_MdDbGroup_appendArray_1=b.asm.emscripten_bind_MdDbGroup_appendArray_1).apply(null,arguments)},l9=b._emscripten_bind_MdDbGroup_has_1=function(){return(l9=b._emscripten_bind_MdDbGroup_has_1=b.asm.emscripten_bind_MdDbGroup_has_1).apply(null,
  1302. arguments)},m9=b._emscripten_bind_MdDbGroup_getAllEntityId_0=function(){return(m9=b._emscripten_bind_MdDbGroup_getAllEntityId_0=b.asm.emscripten_bind_MdDbGroup_getAllEntityId_0).apply(null,arguments)},n9=b._emscripten_bind_MdDbGroup_numEntities_0=function(){return(n9=b._emscripten_bind_MdDbGroup_numEntities_0=b.asm.emscripten_bind_MdDbGroup_numEntities_0).apply(null,arguments)},o9=b._emscripten_bind_MdDbGroup_GetObjectID_0=function(){return(o9=b._emscripten_bind_MdDbGroup_GetObjectID_0=b.asm.emscripten_bind_MdDbGroup_GetObjectID_0).apply(null,
  1303. arguments)},p9=b._emscripten_bind_MdDbGroup_Erase_0=function(){return(p9=b._emscripten_bind_MdDbGroup_Erase_0=b.asm.emscripten_bind_MdDbGroup_Erase_0).apply(null,arguments)},q9=b._emscripten_bind_MdDbGroup_isErased_0=function(){return(q9=b._emscripten_bind_MdDbGroup_isErased_0=b.asm.emscripten_bind_MdDbGroup_isErased_0).apply(null,arguments)},r9=b._emscripten_bind_MdDbGroup_unErase_0=function(){return(r9=b._emscripten_bind_MdDbGroup_unErase_0=b.asm.emscripten_bind_MdDbGroup_unErase_0).apply(null,
  1304. arguments)},s9=b._emscripten_bind_MdDbGroup_ConnectionTempObject_1=function(){return(s9=b._emscripten_bind_MdDbGroup_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbGroup_ConnectionTempObject_1).apply(null,arguments)},t9=b._emscripten_bind_MdDbGroup_GetExtensionDictionary_0=function(){return(t9=b._emscripten_bind_MdDbGroup_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbGroup_GetExtensionDictionary_0).apply(null,arguments)},u9=b._emscripten_bind_MdDbGroup_CreateExtensionDictionary_0=function(){return(u9=
  1305. b._emscripten_bind_MdDbGroup_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbGroup_CreateExtensionDictionary_0).apply(null,arguments)},v9=b._emscripten_bind_MdDbGroup_IsHaveExtensionDictionary_0=function(){return(v9=b._emscripten_bind_MdDbGroup_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbGroup_IsHaveExtensionDictionary_0).apply(null,arguments)},w9=b._emscripten_bind_MdDbGroup_Clone_0=function(){return(w9=b._emscripten_bind_MdDbGroup_Clone_0=b.asm.emscripten_bind_MdDbGroup_Clone_0).apply(null,
  1306. arguments)},x9=b._emscripten_bind_MdDbGroup_GetHandle_0=function(){return(x9=b._emscripten_bind_MdDbGroup_GetHandle_0=b.asm.emscripten_bind_MdDbGroup_GetHandle_0).apply(null,arguments)},y9=b._emscripten_bind_MdDbGroup_GetDatabase_0=function(){return(y9=b._emscripten_bind_MdDbGroup_GetDatabase_0=b.asm.emscripten_bind_MdDbGroup_GetDatabase_0).apply(null,arguments)},z9=b._emscripten_bind_MdDbGroup_GetDatabaseIndexId_0=function(){return(z9=b._emscripten_bind_MdDbGroup_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbGroup_GetDatabaseIndexId_0).apply(null,
  1307. arguments)},A9=b._emscripten_bind_MdDbGroup_GetOwnerID_0=function(){return(A9=b._emscripten_bind_MdDbGroup_GetOwnerID_0=b.asm.emscripten_bind_MdDbGroup_GetOwnerID_0).apply(null,arguments)},B9=b._emscripten_bind_MdDbGroup_assertObjectModification_1=function(){return(B9=b._emscripten_bind_MdDbGroup_assertObjectModification_1=b.asm.emscripten_bind_MdDbGroup_assertObjectModification_1).apply(null,arguments)},C9=b._emscripten_bind_MdDbGroup_moveGripPointsAt_4=function(){return(C9=b._emscripten_bind_MdDbGroup_moveGripPointsAt_4=
  1308. b.asm.emscripten_bind_MdDbGroup_moveGripPointsAt_4).apply(null,arguments)},D9=b._emscripten_bind_MdDbGroup_getGripPoints_0=function(){return(D9=b._emscripten_bind_MdDbGroup_getGripPoints_0=b.asm.emscripten_bind_MdDbGroup_getGripPoints_0).apply(null,arguments)},E9=b._emscripten_bind_MdDbGroup_getObjectName_0=function(){return(E9=b._emscripten_bind_MdDbGroup_getObjectName_0=b.asm.emscripten_bind_MdDbGroup_getObjectName_0).apply(null,arguments)},F9=b._emscripten_bind_MdDbGroup_getDxf0_0=function(){return(F9=
  1309. b._emscripten_bind_MdDbGroup_getDxf0_0=b.asm.emscripten_bind_MdDbGroup_getDxf0_0).apply(null,arguments)},G9=b._emscripten_bind_MdDbGroup_getCustomEntityTypeName_0=function(){return(G9=b._emscripten_bind_MdDbGroup_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbGroup_getCustomEntityTypeName_0).apply(null,arguments)},H9=b._emscripten_bind_MdDbGroup_getCustomEntityid_0=function(){return(H9=b._emscripten_bind_MdDbGroup_getCustomEntityid_0=b.asm.emscripten_bind_MdDbGroup_getCustomEntityid_0).apply(null,
  1310. arguments)},I9=b._emscripten_bind_MdDbGroup_getCustomEntityTempid_0=function(){return(I9=b._emscripten_bind_MdDbGroup_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbGroup_getCustomEntityTempid_0).apply(null,arguments)},J9=b._emscripten_bind_MdDbGroup_setCustomEntityTempid_1=function(){return(J9=b._emscripten_bind_MdDbGroup_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbGroup_setCustomEntityTempid_1).apply(null,arguments)},K9=b._emscripten_bind_MdDbGroup_getJson_0=function(){return(K9=b._emscripten_bind_MdDbGroup_getJson_0=
  1311. b.asm.emscripten_bind_MdDbGroup_getJson_0).apply(null,arguments)},L9=b._emscripten_bind_MdDbGroup_setJson_1=function(){return(L9=b._emscripten_bind_MdDbGroup_setJson_1=b.asm.emscripten_bind_MdDbGroup_setJson_1).apply(null,arguments)},M9=b._emscripten_bind_MdDbGroup_isKindOf_1=function(){return(M9=b._emscripten_bind_MdDbGroup_isKindOf_1=b.asm.emscripten_bind_MdDbGroup_isKindOf_1).apply(null,arguments)},N9=b._emscripten_bind_MdDbGroup_isNull_0=function(){return(N9=b._emscripten_bind_MdDbGroup_isNull_0=
  1312. b.asm.emscripten_bind_MdDbGroup_isNull_0).apply(null,arguments)},O9=b._emscripten_bind_MdDbGroup___destroy___0=function(){return(O9=b._emscripten_bind_MdDbGroup___destroy___0=b.asm.emscripten_bind_MdDbGroup___destroy___0).apply(null,arguments)},P9=b._emscripten_bind_MdDbCustomEntity_MdDbCustomEntity_1=function(){return(P9=b._emscripten_bind_MdDbCustomEntity_MdDbCustomEntity_1=b.asm.emscripten_bind_MdDbCustomEntity_MdDbCustomEntity_1).apply(null,arguments)},Q9=b._emscripten_bind_MdDbCustomEntity_getFilter_1=
  1313. function(){return(Q9=b._emscripten_bind_MdDbCustomEntity_getFilter_1=b.asm.emscripten_bind_MdDbCustomEntity_getFilter_1).apply(null,arguments)},R9=b._emscripten_bind_MdDbCustomEntity_assertWrite_5=function(){return(R9=b._emscripten_bind_MdDbCustomEntity_assertWrite_5=b.asm.emscripten_bind_MdDbCustomEntity_assertWrite_5).apply(null,arguments)},S9=b._emscripten_bind_MdDbCustomEntity_explode_0=function(){return(S9=b._emscripten_bind_MdDbCustomEntity_explode_0=b.asm.emscripten_bind_MdDbCustomEntity_explode_0).apply(null,
  1314. arguments)},T9=b._emscripten_bind_MdDbCustomEntity_TrueColor_0=function(){return(T9=b._emscripten_bind_MdDbCustomEntity_TrueColor_0=b.asm.emscripten_bind_MdDbCustomEntity_TrueColor_0).apply(null,arguments)},U9=b._emscripten_bind_MdDbCustomEntity_SetTrueColor_1=function(){return(U9=b._emscripten_bind_MdDbCustomEntity_SetTrueColor_1=b.asm.emscripten_bind_MdDbCustomEntity_SetTrueColor_1).apply(null,arguments)},V9=b._emscripten_bind_MdDbCustomEntity_ColorIndex_0=function(){return(V9=b._emscripten_bind_MdDbCustomEntity_ColorIndex_0=
  1315. b.asm.emscripten_bind_MdDbCustomEntity_ColorIndex_0).apply(null,arguments)},W9=b._emscripten_bind_MdDbCustomEntity_SetColorIndex_1=function(){return(W9=b._emscripten_bind_MdDbCustomEntity_SetColorIndex_1=b.asm.emscripten_bind_MdDbCustomEntity_SetColorIndex_1).apply(null,arguments)},X9=b._emscripten_bind_MdDbCustomEntity_Layer_0=function(){return(X9=b._emscripten_bind_MdDbCustomEntity_Layer_0=b.asm.emscripten_bind_MdDbCustomEntity_Layer_0).apply(null,arguments)},Y9=b._emscripten_bind_MdDbCustomEntity_SetLayer_1=
  1316. function(){return(Y9=b._emscripten_bind_MdDbCustomEntity_SetLayer_1=b.asm.emscripten_bind_MdDbCustomEntity_SetLayer_1).apply(null,arguments)},Z9=b._emscripten_bind_MdDbCustomEntity_LinetypeScale_0=function(){return(Z9=b._emscripten_bind_MdDbCustomEntity_LinetypeScale_0=b.asm.emscripten_bind_MdDbCustomEntity_LinetypeScale_0).apply(null,arguments)},$9=b._emscripten_bind_MdDbCustomEntity_SetLinetypeScale_1=function(){return($9=b._emscripten_bind_MdDbCustomEntity_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbCustomEntity_SetLinetypeScale_1).apply(null,
  1317. arguments)},a$=b._emscripten_bind_MdDbCustomEntity_Visible_0=function(){return(a$=b._emscripten_bind_MdDbCustomEntity_Visible_0=b.asm.emscripten_bind_MdDbCustomEntity_Visible_0).apply(null,arguments)},b$=b._emscripten_bind_MdDbCustomEntity_SetVisible_1=function(){return(b$=b._emscripten_bind_MdDbCustomEntity_SetVisible_1=b.asm.emscripten_bind_MdDbCustomEntity_SetVisible_1).apply(null,arguments)},c$=b._emscripten_bind_MdDbCustomEntity_Lineweight_0=function(){return(c$=b._emscripten_bind_MdDbCustomEntity_Lineweight_0=
  1318. b.asm.emscripten_bind_MdDbCustomEntity_Lineweight_0).apply(null,arguments)},d$=b._emscripten_bind_MdDbCustomEntity_SetLineweight_1=function(){return(d$=b._emscripten_bind_MdDbCustomEntity_SetLineweight_1=b.asm.emscripten_bind_MdDbCustomEntity_SetLineweight_1).apply(null,arguments)},e$=b._emscripten_bind_MdDbCustomEntity_TextStyle_0=function(){return(e$=b._emscripten_bind_MdDbCustomEntity_TextStyle_0=b.asm.emscripten_bind_MdDbCustomEntity_TextStyle_0).apply(null,arguments)},f$=b._emscripten_bind_MdDbCustomEntity_SetTextStyle_1=
  1319. function(){return(f$=b._emscripten_bind_MdDbCustomEntity_SetTextStyle_1=b.asm.emscripten_bind_MdDbCustomEntity_SetTextStyle_1).apply(null,arguments)},g$=b._emscripten_bind_MdDbCustomEntity_Highlight_1=function(){return(g$=b._emscripten_bind_MdDbCustomEntity_Highlight_1=b.asm.emscripten_bind_MdDbCustomEntity_Highlight_1).apply(null,arguments)},h$=b._emscripten_bind_MdDbCustomEntity_Move_2=function(){return(h$=b._emscripten_bind_MdDbCustomEntity_Move_2=b.asm.emscripten_bind_MdDbCustomEntity_Move_2).apply(null,
  1320. arguments)},i$=b._emscripten_bind_MdDbCustomEntity_Rotate_2=function(){return(i$=b._emscripten_bind_MdDbCustomEntity_Rotate_2=b.asm.emscripten_bind_MdDbCustomEntity_Rotate_2).apply(null,arguments)},j$=b._emscripten_bind_MdDbCustomEntity_Mirror_2=function(){return(j$=b._emscripten_bind_MdDbCustomEntity_Mirror_2=b.asm.emscripten_bind_MdDbCustomEntity_Mirror_2).apply(null,arguments)},Saa=b._emscripten_bind_MdDbCustomEntity_ScaleEntity_2=function(){return(Saa=b._emscripten_bind_MdDbCustomEntity_ScaleEntity_2=
  1321. b.asm.emscripten_bind_MdDbCustomEntity_ScaleEntity_2).apply(null,arguments)},Taa=b._emscripten_bind_MdDbCustomEntity_TransformBy_1=function(){return(Taa=b._emscripten_bind_MdDbCustomEntity_TransformBy_1=b.asm.emscripten_bind_MdDbCustomEntity_TransformBy_1).apply(null,arguments)},Uaa=b._emscripten_bind_MdDbCustomEntity_GetBoundingBox_0=function(){return(Uaa=b._emscripten_bind_MdDbCustomEntity_GetBoundingBox_0=b.asm.emscripten_bind_MdDbCustomEntity_GetBoundingBox_0).apply(null,arguments)},Vaa=b._emscripten_bind_MdDbCustomEntity_GetXData_1=
  1322. function(){return(Vaa=b._emscripten_bind_MdDbCustomEntity_GetXData_1=b.asm.emscripten_bind_MdDbCustomEntity_GetXData_1).apply(null,arguments)},Waa=b._emscripten_bind_MdDbCustomEntity_SetXData_1=function(){return(Waa=b._emscripten_bind_MdDbCustomEntity_SetXData_1=b.asm.emscripten_bind_MdDbCustomEntity_SetXData_1).apply(null,arguments)},Xaa=b._emscripten_bind_MdDbCustomEntity_GetxDataString_2=function(){return(Xaa=b._emscripten_bind_MdDbCustomEntity_GetxDataString_2=b.asm.emscripten_bind_MdDbCustomEntity_GetxDataString_2).apply(null,
  1323. arguments)},Yaa=b._emscripten_bind_MdDbCustomEntity_SetxDataString_3=function(){return(Yaa=b._emscripten_bind_MdDbCustomEntity_SetxDataString_3=b.asm.emscripten_bind_MdDbCustomEntity_SetxDataString_3).apply(null,arguments)},Zaa=b._emscripten_bind_MdDbCustomEntity_GetxDataDouble_2=function(){return(Zaa=b._emscripten_bind_MdDbCustomEntity_GetxDataDouble_2=b.asm.emscripten_bind_MdDbCustomEntity_GetxDataDouble_2).apply(null,arguments)},$aa=b._emscripten_bind_MdDbCustomEntity_SetxDataDouble_3=function(){return($aa=
  1324. b._emscripten_bind_MdDbCustomEntity_SetxDataDouble_3=b.asm.emscripten_bind_MdDbCustomEntity_SetxDataDouble_3).apply(null,arguments)},aba=b._emscripten_bind_MdDbCustomEntity_GetxDataLong_2=function(){return(aba=b._emscripten_bind_MdDbCustomEntity_GetxDataLong_2=b.asm.emscripten_bind_MdDbCustomEntity_GetxDataLong_2).apply(null,arguments)},bba=b._emscripten_bind_MdDbCustomEntity_SetxDataLong_3=function(){return(bba=b._emscripten_bind_MdDbCustomEntity_SetxDataLong_3=b.asm.emscripten_bind_MdDbCustomEntity_SetxDataLong_3).apply(null,
  1325. arguments)},cba=b._emscripten_bind_MdDbCustomEntity_GetxDataPoint_2=function(){return(cba=b._emscripten_bind_MdDbCustomEntity_GetxDataPoint_2=b.asm.emscripten_bind_MdDbCustomEntity_GetxDataPoint_2).apply(null,arguments)},dba=b._emscripten_bind_MdDbCustomEntity_SetxDataPoint_3=function(){return(dba=b._emscripten_bind_MdDbCustomEntity_SetxDataPoint_3=b.asm.emscripten_bind_MdDbCustomEntity_SetxDataPoint_3).apply(null,arguments)},eba=b._emscripten_bind_MdDbCustomEntity_DeleteXData_1=function(){return(eba=
  1326. b._emscripten_bind_MdDbCustomEntity_DeleteXData_1=b.asm.emscripten_bind_MdDbCustomEntity_DeleteXData_1).apply(null,arguments)},fba=b._emscripten_bind_MdDbCustomEntity_GetAllAppName_0=function(){return(fba=b._emscripten_bind_MdDbCustomEntity_GetAllAppName_0=b.asm.emscripten_bind_MdDbCustomEntity_GetAllAppName_0).apply(null,arguments)},gba=b._emscripten_bind_MdDbCustomEntity_LayerId_0=function(){return(gba=b._emscripten_bind_MdDbCustomEntity_LayerId_0=b.asm.emscripten_bind_MdDbCustomEntity_LayerId_0).apply(null,
  1327. arguments)},hba=b._emscripten_bind_MdDbCustomEntity_SetLayerId_1=function(){return(hba=b._emscripten_bind_MdDbCustomEntity_SetLayerId_1=b.asm.emscripten_bind_MdDbCustomEntity_SetLayerId_1).apply(null,arguments)},iba=b._emscripten_bind_MdDbCustomEntity_LinetypeId_0=function(){return(iba=b._emscripten_bind_MdDbCustomEntity_LinetypeId_0=b.asm.emscripten_bind_MdDbCustomEntity_LinetypeId_0).apply(null,arguments)},jba=b._emscripten_bind_MdDbCustomEntity_SetLinetypeId_1=function(){return(jba=b._emscripten_bind_MdDbCustomEntity_SetLinetypeId_1=
  1328. b.asm.emscripten_bind_MdDbCustomEntity_SetLinetypeId_1).apply(null,arguments)},kba=b._emscripten_bind_MdDbCustomEntity_Linetype_0=function(){return(kba=b._emscripten_bind_MdDbCustomEntity_Linetype_0=b.asm.emscripten_bind_MdDbCustomEntity_Linetype_0).apply(null,arguments)},lba=b._emscripten_bind_MdDbCustomEntity_SetLinetype_1=function(){return(lba=b._emscripten_bind_MdDbCustomEntity_SetLinetype_1=b.asm.emscripten_bind_MdDbCustomEntity_SetLinetype_1).apply(null,arguments)},mba=b._emscripten_bind_MdDbCustomEntity_TextStyleId_0=
  1329. function(){return(mba=b._emscripten_bind_MdDbCustomEntity_TextStyleId_0=b.asm.emscripten_bind_MdDbCustomEntity_TextStyleId_0).apply(null,arguments)},nba=b._emscripten_bind_MdDbCustomEntity_SetTextStyleId_1=function(){return(nba=b._emscripten_bind_MdDbCustomEntity_SetTextStyleId_1=b.asm.emscripten_bind_MdDbCustomEntity_SetTextStyleId_1).apply(null,arguments)},oba=b._emscripten_bind_MdDbCustomEntity_IntersectWith_2=function(){return(oba=b._emscripten_bind_MdDbCustomEntity_IntersectWith_2=b.asm.emscripten_bind_MdDbCustomEntity_IntersectWith_2).apply(null,
  1330. arguments)},pba=b._emscripten_bind_MdDbCustomEntity_getArea_0=function(){return(pba=b._emscripten_bind_MdDbCustomEntity_getArea_0=b.asm.emscripten_bind_MdDbCustomEntity_getArea_0).apply(null,arguments)},qba=b._emscripten_bind_MdDbCustomEntity_disableUpdateDisplay_1=function(){return(qba=b._emscripten_bind_MdDbCustomEntity_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbCustomEntity_disableUpdateDisplay_1).apply(null,arguments)},rba=b._emscripten_bind_MdDbCustomEntity_isPropertiesWindowCustom_0=function(){return(rba=
  1331. b._emscripten_bind_MdDbCustomEntity_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbCustomEntity_isPropertiesWindowCustom_0).apply(null,arguments)},sba=b._emscripten_bind_MdDbCustomEntity_setPropertiesWindowCustom_1=function(){return(sba=b._emscripten_bind_MdDbCustomEntity_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbCustomEntity_setPropertiesWindowCustom_1).apply(null,arguments)},tba=b._emscripten_bind_MdDbCustomEntity_updateDisplay_0=function(){return(tba=b._emscripten_bind_MdDbCustomEntity_updateDisplay_0=
  1332. b.asm.emscripten_bind_MdDbCustomEntity_updateDisplay_0).apply(null,arguments)},uba=b._emscripten_bind_MdDbCustomEntity_DrawOrder_0=function(){return(uba=b._emscripten_bind_MdDbCustomEntity_DrawOrder_0=b.asm.emscripten_bind_MdDbCustomEntity_DrawOrder_0).apply(null,arguments)},vba=b._emscripten_bind_MdDbCustomEntity_SetDrawOrder_1=function(){return(vba=b._emscripten_bind_MdDbCustomEntity_SetDrawOrder_1=b.asm.emscripten_bind_MdDbCustomEntity_SetDrawOrder_1).apply(null,arguments)},wba=b._emscripten_bind_MdDbCustomEntity_normal_0=
  1333. function(){return(wba=b._emscripten_bind_MdDbCustomEntity_normal_0=b.asm.emscripten_bind_MdDbCustomEntity_normal_0).apply(null,arguments)},xba=b._emscripten_bind_MdDbCustomEntity_setNormal_1=function(){return(xba=b._emscripten_bind_MdDbCustomEntity_setNormal_1=b.asm.emscripten_bind_MdDbCustomEntity_setNormal_1).apply(null,arguments)},yba=b._emscripten_bind_MdDbCustomEntity_GetObjectID_0=function(){return(yba=b._emscripten_bind_MdDbCustomEntity_GetObjectID_0=b.asm.emscripten_bind_MdDbCustomEntity_GetObjectID_0).apply(null,
  1334. arguments)},zba=b._emscripten_bind_MdDbCustomEntity_Erase_0=function(){return(zba=b._emscripten_bind_MdDbCustomEntity_Erase_0=b.asm.emscripten_bind_MdDbCustomEntity_Erase_0).apply(null,arguments)},Aba=b._emscripten_bind_MdDbCustomEntity_isErased_0=function(){return(Aba=b._emscripten_bind_MdDbCustomEntity_isErased_0=b.asm.emscripten_bind_MdDbCustomEntity_isErased_0).apply(null,arguments)},Bba=b._emscripten_bind_MdDbCustomEntity_unErase_0=function(){return(Bba=b._emscripten_bind_MdDbCustomEntity_unErase_0=
  1335. b.asm.emscripten_bind_MdDbCustomEntity_unErase_0).apply(null,arguments)},Cba=b._emscripten_bind_MdDbCustomEntity_ConnectionTempObject_1=function(){return(Cba=b._emscripten_bind_MdDbCustomEntity_ConnectionTempObject_1=b.asm.emscripten_bind_MdDbCustomEntity_ConnectionTempObject_1).apply(null,arguments)},Dba=b._emscripten_bind_MdDbCustomEntity_GetExtensionDictionary_0=function(){return(Dba=b._emscripten_bind_MdDbCustomEntity_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbCustomEntity_GetExtensionDictionary_0).apply(null,
  1336. arguments)},Eba=b._emscripten_bind_MdDbCustomEntity_CreateExtensionDictionary_0=function(){return(Eba=b._emscripten_bind_MdDbCustomEntity_CreateExtensionDictionary_0=b.asm.emscripten_bind_MdDbCustomEntity_CreateExtensionDictionary_0).apply(null,arguments)},Fba=b._emscripten_bind_MdDbCustomEntity_IsHaveExtensionDictionary_0=function(){return(Fba=b._emscripten_bind_MdDbCustomEntity_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbCustomEntity_IsHaveExtensionDictionary_0).apply(null,arguments)},
  1337. Gba=b._emscripten_bind_MdDbCustomEntity_Clone_0=function(){return(Gba=b._emscripten_bind_MdDbCustomEntity_Clone_0=b.asm.emscripten_bind_MdDbCustomEntity_Clone_0).apply(null,arguments)},Hba=b._emscripten_bind_MdDbCustomEntity_GetHandle_0=function(){return(Hba=b._emscripten_bind_MdDbCustomEntity_GetHandle_0=b.asm.emscripten_bind_MdDbCustomEntity_GetHandle_0).apply(null,arguments)},Iba=b._emscripten_bind_MdDbCustomEntity_GetDatabase_0=function(){return(Iba=b._emscripten_bind_MdDbCustomEntity_GetDatabase_0=
  1338. b.asm.emscripten_bind_MdDbCustomEntity_GetDatabase_0).apply(null,arguments)},Jba=b._emscripten_bind_MdDbCustomEntity_GetDatabaseIndexId_0=function(){return(Jba=b._emscripten_bind_MdDbCustomEntity_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbCustomEntity_GetDatabaseIndexId_0).apply(null,arguments)},Kba=b._emscripten_bind_MdDbCustomEntity_GetOwnerID_0=function(){return(Kba=b._emscripten_bind_MdDbCustomEntity_GetOwnerID_0=b.asm.emscripten_bind_MdDbCustomEntity_GetOwnerID_0).apply(null,arguments)},
  1339. Lba=b._emscripten_bind_MdDbCustomEntity_assertObjectModification_1=function(){return(Lba=b._emscripten_bind_MdDbCustomEntity_assertObjectModification_1=b.asm.emscripten_bind_MdDbCustomEntity_assertObjectModification_1).apply(null,arguments)},Mba=b._emscripten_bind_MdDbCustomEntity_moveGripPointsAt_4=function(){return(Mba=b._emscripten_bind_MdDbCustomEntity_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbCustomEntity_moveGripPointsAt_4).apply(null,arguments)},Nba=b._emscripten_bind_MdDbCustomEntity_getGripPoints_0=
  1340. function(){return(Nba=b._emscripten_bind_MdDbCustomEntity_getGripPoints_0=b.asm.emscripten_bind_MdDbCustomEntity_getGripPoints_0).apply(null,arguments)},Oba=b._emscripten_bind_MdDbCustomEntity_getObjectName_0=function(){return(Oba=b._emscripten_bind_MdDbCustomEntity_getObjectName_0=b.asm.emscripten_bind_MdDbCustomEntity_getObjectName_0).apply(null,arguments)},Pba=b._emscripten_bind_MdDbCustomEntity_getDxf0_0=function(){return(Pba=b._emscripten_bind_MdDbCustomEntity_getDxf0_0=b.asm.emscripten_bind_MdDbCustomEntity_getDxf0_0).apply(null,
  1341. arguments)},Qba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityTypeName_0=function(){return(Qba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbCustomEntity_getCustomEntityTypeName_0).apply(null,arguments)},Rba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityid_0=function(){return(Rba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityid_0=b.asm.emscripten_bind_MdDbCustomEntity_getCustomEntityid_0).apply(null,arguments)},Sba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityTempid_0=
  1342. function(){return(Sba=b._emscripten_bind_MdDbCustomEntity_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbCustomEntity_getCustomEntityTempid_0).apply(null,arguments)},Tba=b._emscripten_bind_MdDbCustomEntity_setCustomEntityTempid_1=function(){return(Tba=b._emscripten_bind_MdDbCustomEntity_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbCustomEntity_setCustomEntityTempid_1).apply(null,arguments)},Uba=b._emscripten_bind_MdDbCustomEntity_getJson_0=function(){return(Uba=b._emscripten_bind_MdDbCustomEntity_getJson_0=
  1343. b.asm.emscripten_bind_MdDbCustomEntity_getJson_0).apply(null,arguments)},Vba=b._emscripten_bind_MdDbCustomEntity_setJson_1=function(){return(Vba=b._emscripten_bind_MdDbCustomEntity_setJson_1=b.asm.emscripten_bind_MdDbCustomEntity_setJson_1).apply(null,arguments)},Wba=b._emscripten_bind_MdDbCustomEntity_isKindOf_1=function(){return(Wba=b._emscripten_bind_MdDbCustomEntity_isKindOf_1=b.asm.emscripten_bind_MdDbCustomEntity_isKindOf_1).apply(null,arguments)},Xba=b._emscripten_bind_MdDbCustomEntity_isNull_0=
  1344. function(){return(Xba=b._emscripten_bind_MdDbCustomEntity_isNull_0=b.asm.emscripten_bind_MdDbCustomEntity_isNull_0).apply(null,arguments)},Yba=b._emscripten_bind_MdDbCustomEntity___destroy___0=function(){return(Yba=b._emscripten_bind_MdDbCustomEntity___destroy___0=b.asm.emscripten_bind_MdDbCustomEntity___destroy___0).apply(null,arguments)},Zba=b._emscripten_bind_MdDbCustomEntityDwgFiler_MdDbCustomEntityDwgFiler_0=function(){return(Zba=b._emscripten_bind_MdDbCustomEntityDwgFiler_MdDbCustomEntityDwgFiler_0=
  1345. b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_MdDbCustomEntityDwgFiler_0).apply(null,arguments)},$ba=b._emscripten_bind_MdDbCustomEntityDwgFiler_connect_1=function(){return($ba=b._emscripten_bind_MdDbCustomEntityDwgFiler_connect_1=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_connect_1).apply(null,arguments)},aca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writePoint_4=function(){return(aca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writePoint_4=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_writePoint_4).apply(null,
  1346. arguments)},bca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readPoint_1=function(){return(bca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readPoint_1=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_readPoint_1).apply(null,arguments)},cca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeLong_2=function(){return(cca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeLong_2=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_writeLong_2).apply(null,arguments)},dca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readLong_1=
  1347. function(){return(dca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readLong_1=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_readLong_1).apply(null,arguments)},eca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeDouble_2=function(){return(eca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeDouble_2=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_writeDouble_2).apply(null,arguments)},fca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readDouble_1=function(){return(fca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readDouble_1=
  1348. b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_readDouble_1).apply(null,arguments)},gca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeString_2=function(){return(gca=b._emscripten_bind_MdDbCustomEntityDwgFiler_writeString_2=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_writeString_2).apply(null,arguments)},hca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readString_1=function(){return(hca=b._emscripten_bind_MdDbCustomEntityDwgFiler_readString_1=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler_readString_1).apply(null,
  1349. arguments)},ica=b._emscripten_bind_MdDbCustomEntityDwgFiler___destroy___0=function(){return(ica=b._emscripten_bind_MdDbCustomEntityDwgFiler___destroy___0=b.asm.emscripten_bind_MdDbCustomEntityDwgFiler___destroy___0).apply(null,arguments)},jca=b._emscripten_bind_MdGiWorldDraw_MdGiWorldDraw_1=function(){return(jca=b._emscripten_bind_MdGiWorldDraw_MdGiWorldDraw_1=b.asm.emscripten_bind_MdGiWorldDraw_MdGiWorldDraw_1).apply(null,arguments)},kca=b._emscripten_bind_MdGiWorldDraw_connect_1=function(){return(kca=
  1350. b._emscripten_bind_MdGiWorldDraw_connect_1=b.asm.emscripten_bind_MdGiWorldDraw_connect_1).apply(null,arguments)},lca=b._emscripten_bind_MdGiWorldDraw_drawEntity_1=function(){return(lca=b._emscripten_bind_MdGiWorldDraw_drawEntity_1=b.asm.emscripten_bind_MdGiWorldDraw_drawEntity_1).apply(null,arguments)},mca=b._emscripten_bind_MdGiWorldDraw_drawOsnapEntity_1=function(){return(mca=b._emscripten_bind_MdGiWorldDraw_drawOsnapEntity_1=b.asm.emscripten_bind_MdGiWorldDraw_drawOsnapEntity_1).apply(null,arguments)},
  1351. nca=b._emscripten_bind_MdGiWorldDraw_trueColor_0=function(){return(nca=b._emscripten_bind_MdGiWorldDraw_trueColor_0=b.asm.emscripten_bind_MdGiWorldDraw_trueColor_0).apply(null,arguments)},oca=b._emscripten_bind_MdGiWorldDraw_setTrueColor_1=function(){return(oca=b._emscripten_bind_MdGiWorldDraw_setTrueColor_1=b.asm.emscripten_bind_MdGiWorldDraw_setTrueColor_1).apply(null,arguments)},pca=b._emscripten_bind_MdGiWorldDraw_connectVecOsnapEntity_1=function(){return(pca=b._emscripten_bind_MdGiWorldDraw_connectVecOsnapEntity_1=
  1352. b.asm.emscripten_bind_MdGiWorldDraw_connectVecOsnapEntity_1).apply(null,arguments)},qca=b._emscripten_bind_MdGiWorldDraw_connectVecExplodeEntity_1=function(){return(qca=b._emscripten_bind_MdGiWorldDraw_connectVecExplodeEntity_1=b.asm.emscripten_bind_MdGiWorldDraw_connectVecExplodeEntity_1).apply(null,arguments)},rca=b._emscripten_bind_MdGiWorldDraw___destroy___0=function(){return(rca=b._emscripten_bind_MdGiWorldDraw___destroy___0=b.asm.emscripten_bind_MdGiWorldDraw___destroy___0).apply(null,arguments)},
  1353. sca=b._emscripten_bind_MdDbDwgBackgroundEntity_setShow_2=function(){return(sca=b._emscripten_bind_MdDbDwgBackgroundEntity_setShow_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setShow_2).apply(null,arguments)},tca=b._emscripten_bind_MdDbDwgBackgroundEntity_isShow_1=function(){return(tca=b._emscripten_bind_MdDbDwgBackgroundEntity_isShow_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_isShow_1).apply(null,arguments)},uca=b._emscripten_bind_MdDbDwgBackgroundEntity_setShowColor_2=function(){return(uca=
  1354. b._emscripten_bind_MdDbDwgBackgroundEntity_setShowColor_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setShowColor_2).apply(null,arguments)},vca=b._emscripten_bind_MdDbDwgBackgroundEntity_getBackgroundDatabase_1=function(){return(vca=b._emscripten_bind_MdDbDwgBackgroundEntity_getBackgroundDatabase_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getBackgroundDatabase_1).apply(null,arguments)},wca=b._emscripten_bind_MdDbDwgBackgroundEntity_clearAll_0=function(){return(wca=b._emscripten_bind_MdDbDwgBackgroundEntity_clearAll_0=
  1355. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_clearAll_0).apply(null,arguments)},xca=b._emscripten_bind_MdDbDwgBackgroundEntity_clearDwg_1=function(){return(xca=b._emscripten_bind_MdDbDwgBackgroundEntity_clearDwg_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_clearDwg_1).apply(null,arguments)},yca=b._emscripten_bind_MdDbDwgBackgroundEntity_explode_0=function(){return(yca=b._emscripten_bind_MdDbDwgBackgroundEntity_explode_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_explode_0).apply(null,arguments)},
  1356. zca=b._emscripten_bind_MdDbDwgBackgroundEntity_TrueColor_0=function(){return(zca=b._emscripten_bind_MdDbDwgBackgroundEntity_TrueColor_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_TrueColor_0).apply(null,arguments)},Aca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTrueColor_1=function(){return(Aca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTrueColor_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetTrueColor_1).apply(null,arguments)},Bca=b._emscripten_bind_MdDbDwgBackgroundEntity_ColorIndex_0=
  1357. function(){return(Bca=b._emscripten_bind_MdDbDwgBackgroundEntity_ColorIndex_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_ColorIndex_0).apply(null,arguments)},Cca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetColorIndex_1=function(){return(Cca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetColorIndex_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetColorIndex_1).apply(null,arguments)},Dca=b._emscripten_bind_MdDbDwgBackgroundEntity_Layer_0=function(){return(Dca=b._emscripten_bind_MdDbDwgBackgroundEntity_Layer_0=
  1358. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Layer_0).apply(null,arguments)},Eca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLayer_1=function(){return(Eca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLayer_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLayer_1).apply(null,arguments)},Fca=b._emscripten_bind_MdDbDwgBackgroundEntity_LinetypeScale_0=function(){return(Fca=b._emscripten_bind_MdDbDwgBackgroundEntity_LinetypeScale_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_LinetypeScale_0).apply(null,
  1359. arguments)},Gca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeScale_1=function(){return(Gca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeScale_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeScale_1).apply(null,arguments)},Hca=b._emscripten_bind_MdDbDwgBackgroundEntity_Visible_0=function(){return(Hca=b._emscripten_bind_MdDbDwgBackgroundEntity_Visible_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Visible_0).apply(null,arguments)},Ica=b._emscripten_bind_MdDbDwgBackgroundEntity_SetVisible_1=
  1360. function(){return(Ica=b._emscripten_bind_MdDbDwgBackgroundEntity_SetVisible_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetVisible_1).apply(null,arguments)},Jca=b._emscripten_bind_MdDbDwgBackgroundEntity_Lineweight_0=function(){return(Jca=b._emscripten_bind_MdDbDwgBackgroundEntity_Lineweight_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Lineweight_0).apply(null,arguments)},Kca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLineweight_1=function(){return(Kca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLineweight_1=
  1361. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLineweight_1).apply(null,arguments)},Lca=b._emscripten_bind_MdDbDwgBackgroundEntity_TextStyle_0=function(){return(Lca=b._emscripten_bind_MdDbDwgBackgroundEntity_TextStyle_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_TextStyle_0).apply(null,arguments)},Mca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyle_1=function(){return(Mca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyle_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyle_1).apply(null,
  1362. arguments)},Nca=b._emscripten_bind_MdDbDwgBackgroundEntity_Highlight_1=function(){return(Nca=b._emscripten_bind_MdDbDwgBackgroundEntity_Highlight_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Highlight_1).apply(null,arguments)},Oca=b._emscripten_bind_MdDbDwgBackgroundEntity_Move_2=function(){return(Oca=b._emscripten_bind_MdDbDwgBackgroundEntity_Move_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Move_2).apply(null,arguments)},Pca=b._emscripten_bind_MdDbDwgBackgroundEntity_Rotate_2=function(){return(Pca=
  1363. b._emscripten_bind_MdDbDwgBackgroundEntity_Rotate_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Rotate_2).apply(null,arguments)},Qca=b._emscripten_bind_MdDbDwgBackgroundEntity_Mirror_2=function(){return(Qca=b._emscripten_bind_MdDbDwgBackgroundEntity_Mirror_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Mirror_2).apply(null,arguments)},Rca=b._emscripten_bind_MdDbDwgBackgroundEntity_ScaleEntity_2=function(){return(Rca=b._emscripten_bind_MdDbDwgBackgroundEntity_ScaleEntity_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_ScaleEntity_2).apply(null,
  1364. arguments)},Sca=b._emscripten_bind_MdDbDwgBackgroundEntity_TransformBy_1=function(){return(Sca=b._emscripten_bind_MdDbDwgBackgroundEntity_TransformBy_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_TransformBy_1).apply(null,arguments)},Tca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetBoundingBox_0=function(){return(Tca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetBoundingBox_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetBoundingBox_0).apply(null,arguments)},Uca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetXData_1=
  1365. function(){return(Uca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetXData_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetXData_1).apply(null,arguments)},Vca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetXData_1=function(){return(Vca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetXData_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetXData_1).apply(null,arguments)},Wca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataString_2=function(){return(Wca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataString_2=
  1366. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetxDataString_2).apply(null,arguments)},Xca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataString_3=function(){return(Xca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataString_3=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetxDataString_3).apply(null,arguments)},Yca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataDouble_2=function(){return(Yca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataDouble_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetxDataDouble_2).apply(null,
  1367. arguments)},Zca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataDouble_3=function(){return(Zca=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataDouble_3=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetxDataDouble_3).apply(null,arguments)},$ca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataLong_2=function(){return($ca=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataLong_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetxDataLong_2).apply(null,arguments)},ada=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataLong_3=
  1368. function(){return(ada=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataLong_3=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetxDataLong_3).apply(null,arguments)},bda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataPoint_2=function(){return(bda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetxDataPoint_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetxDataPoint_2).apply(null,arguments)},cda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataPoint_3=function(){return(cda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetxDataPoint_3=
  1369. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetxDataPoint_3).apply(null,arguments)},dda=b._emscripten_bind_MdDbDwgBackgroundEntity_DeleteXData_1=function(){return(dda=b._emscripten_bind_MdDbDwgBackgroundEntity_DeleteXData_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_DeleteXData_1).apply(null,arguments)},eda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetAllAppName_0=function(){return(eda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetAllAppName_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetAllAppName_0).apply(null,
  1370. arguments)},fda=b._emscripten_bind_MdDbDwgBackgroundEntity_LayerId_0=function(){return(fda=b._emscripten_bind_MdDbDwgBackgroundEntity_LayerId_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_LayerId_0).apply(null,arguments)},gda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLayerId_1=function(){return(gda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLayerId_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLayerId_1).apply(null,arguments)},hda=b._emscripten_bind_MdDbDwgBackgroundEntity_LinetypeId_0=
  1371. function(){return(hda=b._emscripten_bind_MdDbDwgBackgroundEntity_LinetypeId_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_LinetypeId_0).apply(null,arguments)},ida=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeId_1=function(){return(ida=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeId_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLinetypeId_1).apply(null,arguments)},jda=b._emscripten_bind_MdDbDwgBackgroundEntity_Linetype_0=function(){return(jda=b._emscripten_bind_MdDbDwgBackgroundEntity_Linetype_0=
  1372. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Linetype_0).apply(null,arguments)},kda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetype_1=function(){return(kda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetLinetype_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetLinetype_1).apply(null,arguments)},lda=b._emscripten_bind_MdDbDwgBackgroundEntity_TextStyleId_0=function(){return(lda=b._emscripten_bind_MdDbDwgBackgroundEntity_TextStyleId_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_TextStyleId_0).apply(null,
  1373. arguments)},mda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyleId_1=function(){return(mda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyleId_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetTextStyleId_1).apply(null,arguments)},nda=b._emscripten_bind_MdDbDwgBackgroundEntity_IntersectWith_2=function(){return(nda=b._emscripten_bind_MdDbDwgBackgroundEntity_IntersectWith_2=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_IntersectWith_2).apply(null,arguments)},oda=b._emscripten_bind_MdDbDwgBackgroundEntity_getArea_0=
  1374. function(){return(oda=b._emscripten_bind_MdDbDwgBackgroundEntity_getArea_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getArea_0).apply(null,arguments)},pda=b._emscripten_bind_MdDbDwgBackgroundEntity_disableUpdateDisplay_1=function(){return(pda=b._emscripten_bind_MdDbDwgBackgroundEntity_disableUpdateDisplay_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_disableUpdateDisplay_1).apply(null,arguments)},qda=b._emscripten_bind_MdDbDwgBackgroundEntity_isPropertiesWindowCustom_0=function(){return(qda=
  1375. b._emscripten_bind_MdDbDwgBackgroundEntity_isPropertiesWindowCustom_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_isPropertiesWindowCustom_0).apply(null,arguments)},rda=b._emscripten_bind_MdDbDwgBackgroundEntity_setPropertiesWindowCustom_1=function(){return(rda=b._emscripten_bind_MdDbDwgBackgroundEntity_setPropertiesWindowCustom_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setPropertiesWindowCustom_1).apply(null,arguments)},sda=b._emscripten_bind_MdDbDwgBackgroundEntity_updateDisplay_0=function(){return(sda=
  1376. b._emscripten_bind_MdDbDwgBackgroundEntity_updateDisplay_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_updateDisplay_0).apply(null,arguments)},tda=b._emscripten_bind_MdDbDwgBackgroundEntity_DrawOrder_0=function(){return(tda=b._emscripten_bind_MdDbDwgBackgroundEntity_DrawOrder_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_DrawOrder_0).apply(null,arguments)},uda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetDrawOrder_1=function(){return(uda=b._emscripten_bind_MdDbDwgBackgroundEntity_SetDrawOrder_1=
  1377. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_SetDrawOrder_1).apply(null,arguments)},vda=b._emscripten_bind_MdDbDwgBackgroundEntity_normal_0=function(){return(vda=b._emscripten_bind_MdDbDwgBackgroundEntity_normal_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_normal_0).apply(null,arguments)},wda=b._emscripten_bind_MdDbDwgBackgroundEntity_setNormal_1=function(){return(wda=b._emscripten_bind_MdDbDwgBackgroundEntity_setNormal_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setNormal_1).apply(null,arguments)},
  1378. xda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetObjectID_0=function(){return(xda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetObjectID_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetObjectID_0).apply(null,arguments)},yda=b._emscripten_bind_MdDbDwgBackgroundEntity_Erase_0=function(){return(yda=b._emscripten_bind_MdDbDwgBackgroundEntity_Erase_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Erase_0).apply(null,arguments)},zda=b._emscripten_bind_MdDbDwgBackgroundEntity_isErased_0=function(){return(zda=
  1379. b._emscripten_bind_MdDbDwgBackgroundEntity_isErased_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_isErased_0).apply(null,arguments)},Ada=b._emscripten_bind_MdDbDwgBackgroundEntity_unErase_0=function(){return(Ada=b._emscripten_bind_MdDbDwgBackgroundEntity_unErase_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_unErase_0).apply(null,arguments)},Bda=b._emscripten_bind_MdDbDwgBackgroundEntity_ConnectionTempObject_1=function(){return(Bda=b._emscripten_bind_MdDbDwgBackgroundEntity_ConnectionTempObject_1=
  1380. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_ConnectionTempObject_1).apply(null,arguments)},Cda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetExtensionDictionary_0=function(){return(Cda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetExtensionDictionary_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetExtensionDictionary_0).apply(null,arguments)},Dda=b._emscripten_bind_MdDbDwgBackgroundEntity_CreateExtensionDictionary_0=function(){return(Dda=b._emscripten_bind_MdDbDwgBackgroundEntity_CreateExtensionDictionary_0=
  1381. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_CreateExtensionDictionary_0).apply(null,arguments)},Eda=b._emscripten_bind_MdDbDwgBackgroundEntity_IsHaveExtensionDictionary_0=function(){return(Eda=b._emscripten_bind_MdDbDwgBackgroundEntity_IsHaveExtensionDictionary_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_IsHaveExtensionDictionary_0).apply(null,arguments)},Fda=b._emscripten_bind_MdDbDwgBackgroundEntity_Clone_0=function(){return(Fda=b._emscripten_bind_MdDbDwgBackgroundEntity_Clone_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_Clone_0).apply(null,
  1382. arguments)},Gda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetHandle_0=function(){return(Gda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetHandle_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetHandle_0).apply(null,arguments)},Hda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetDatabase_0=function(){return(Hda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetDatabase_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetDatabase_0).apply(null,arguments)},Ida=b._emscripten_bind_MdDbDwgBackgroundEntity_GetDatabaseIndexId_0=
  1383. function(){return(Ida=b._emscripten_bind_MdDbDwgBackgroundEntity_GetDatabaseIndexId_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetDatabaseIndexId_0).apply(null,arguments)},Jda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetOwnerID_0=function(){return(Jda=b._emscripten_bind_MdDbDwgBackgroundEntity_GetOwnerID_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_GetOwnerID_0).apply(null,arguments)},Kda=b._emscripten_bind_MdDbDwgBackgroundEntity_assertObjectModification_1=function(){return(Kda=b._emscripten_bind_MdDbDwgBackgroundEntity_assertObjectModification_1=
  1384. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_assertObjectModification_1).apply(null,arguments)},Lda=b._emscripten_bind_MdDbDwgBackgroundEntity_moveGripPointsAt_4=function(){return(Lda=b._emscripten_bind_MdDbDwgBackgroundEntity_moveGripPointsAt_4=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_moveGripPointsAt_4).apply(null,arguments)},Mda=b._emscripten_bind_MdDbDwgBackgroundEntity_getGripPoints_0=function(){return(Mda=b._emscripten_bind_MdDbDwgBackgroundEntity_getGripPoints_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getGripPoints_0).apply(null,
  1385. arguments)},Nda=b._emscripten_bind_MdDbDwgBackgroundEntity_getObjectName_0=function(){return(Nda=b._emscripten_bind_MdDbDwgBackgroundEntity_getObjectName_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getObjectName_0).apply(null,arguments)},Oda=b._emscripten_bind_MdDbDwgBackgroundEntity_getDxf0_0=function(){return(Oda=b._emscripten_bind_MdDbDwgBackgroundEntity_getDxf0_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getDxf0_0).apply(null,arguments)},Pda=b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTypeName_0=
  1386. function(){return(Pda=b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTypeName_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTypeName_0).apply(null,arguments)},Qda=b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityid_0=function(){return(Qda=b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityid_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityid_0).apply(null,arguments)},Rda=b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTempid_0=function(){return(Rda=
  1387. b._emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTempid_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getCustomEntityTempid_0).apply(null,arguments)},Sda=b._emscripten_bind_MdDbDwgBackgroundEntity_setCustomEntityTempid_1=function(){return(Sda=b._emscripten_bind_MdDbDwgBackgroundEntity_setCustomEntityTempid_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setCustomEntityTempid_1).apply(null,arguments)},Tda=b._emscripten_bind_MdDbDwgBackgroundEntity_getJson_0=function(){return(Tda=b._emscripten_bind_MdDbDwgBackgroundEntity_getJson_0=
  1388. b.asm.emscripten_bind_MdDbDwgBackgroundEntity_getJson_0).apply(null,arguments)},Uda=b._emscripten_bind_MdDbDwgBackgroundEntity_setJson_1=function(){return(Uda=b._emscripten_bind_MdDbDwgBackgroundEntity_setJson_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_setJson_1).apply(null,arguments)},Vda=b._emscripten_bind_MdDbDwgBackgroundEntity_isKindOf_1=function(){return(Vda=b._emscripten_bind_MdDbDwgBackgroundEntity_isKindOf_1=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_isKindOf_1).apply(null,arguments)},
  1389. Wda=b._emscripten_bind_MdDbDwgBackgroundEntity_isNull_0=function(){return(Wda=b._emscripten_bind_MdDbDwgBackgroundEntity_isNull_0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity_isNull_0).apply(null,arguments)},Xda=b._emscripten_bind_MdDbDwgBackgroundEntity___destroy___0=function(){return(Xda=b._emscripten_bind_MdDbDwgBackgroundEntity___destroy___0=b.asm.emscripten_bind_MdDbDwgBackgroundEntity___destroy___0).apply(null,arguments)},Yda=b._emscripten_bind_MxCompare_MxCompare_0=function(){return(Yda=b._emscripten_bind_MxCompare_MxCompare_0=
  1390. b.asm.emscripten_bind_MxCompare_MxCompare_0).apply(null,arguments)},Zda=b._emscripten_bind_MxCompare_Do_1=function(){return(Zda=b._emscripten_bind_MxCompare_Do_1=b.asm.emscripten_bind_MxCompare_Do_1).apply(null,arguments)},$da=b._emscripten_bind_MxCompare_getResult_0=function(){return($da=b._emscripten_bind_MxCompare_getResult_0=b.asm.emscripten_bind_MxCompare_getResult_0).apply(null,arguments)},aea=b._emscripten_bind_MxCompare___destroy___0=function(){return(aea=b._emscripten_bind_MxCompare___destroy___0=
  1391. b.asm.emscripten_bind_MxCompare___destroy___0).apply(null,arguments)},cea=b._emscripten_bind_MxTempModifyColor_MxTempModifyColor_0=function(){return(cea=b._emscripten_bind_MxTempModifyColor_MxTempModifyColor_0=b.asm.emscripten_bind_MxTempModifyColor_MxTempModifyColor_0).apply(null,arguments)},dea=b._emscripten_bind_MxTempModifyColor_Do_2=function(){return(dea=b._emscripten_bind_MxTempModifyColor_Do_2=b.asm.emscripten_bind_MxTempModifyColor_Do_2).apply(null,arguments)},eea=b._emscripten_bind_MxTempModifyColor_DoRestore_0=
  1392. function(){return(eea=b._emscripten_bind_MxTempModifyColor_DoRestore_0=b.asm.emscripten_bind_MxTempModifyColor_DoRestore_0).apply(null,arguments)},fea=b._emscripten_bind_MxTempModifyColor___destroy___0=function(){return(fea=b._emscripten_bind_MxTempModifyColor___destroy___0=b.asm.emscripten_bind_MxTempModifyColor___destroy___0).apply(null,arguments)},qd=b._malloc=function(){return(qd=b._malloc=b.asm.malloc).apply(null,arguments)},pd=b._free=function(){return(pd=b._free=b.asm.free).apply(null,arguments)};
  1393. function Uc(){return(Uc=b.asm.__errno_location).apply(null,arguments)}b.__emscripten_tls_init=function(){return(b.__emscripten_tls_init=b.asm._emscripten_tls_init).apply(null,arguments)};var Jc=b._pthread_self=function(){return(Jc=b._pthread_self=b.asm.pthread_self).apply(null,arguments)},ce=b.__emscripten_thread_init=function(){return(ce=b.__emscripten_thread_init=b.asm._emscripten_thread_init).apply(null,arguments)};
  1394. b.__emscripten_thread_crashed=function(){return(b.__emscripten_thread_crashed=b.asm._emscripten_thread_crashed).apply(null,arguments)};function ld(){return(ld=b.asm._emscripten_run_in_main_runtime_thread_js).apply(null,arguments)}function Ic(){return(Ic=b.asm._emscripten_thread_free_data).apply(null,arguments)}
  1395. var Pc=b.__emscripten_thread_exit=function(){return(Pc=b.__emscripten_thread_exit=b.asm._emscripten_thread_exit).apply(null,arguments)},ad=b.__emscripten_check_mailbox=function(){return(ad=b.__emscripten_check_mailbox=b.asm._emscripten_check_mailbox).apply(null,arguments)};function k$(){return(k$=b.asm.setThrew).apply(null,arguments)}function Lc(){return(Lc=b.asm.emscripten_stack_set_limits).apply(null,arguments)}function jd(){return(jd=b.asm.stackSave).apply(null,arguments)}
  1396. function Mc(){return(Mc=b.asm.stackRestore).apply(null,arguments)}function kd(){return(kd=b.asm.stackAlloc).apply(null,arguments)}b.dynCall_iijj=function(){return(b.dynCall_iijj=b.asm.dynCall_iijj).apply(null,arguments)};b.dynCall_iij=function(){return(b.dynCall_iij=b.asm.dynCall_iij).apply(null,arguments)};b.dynCall_iiiij=function(){return(b.dynCall_iiiij=b.asm.dynCall_iiiij).apply(null,arguments)};b.dynCall_iiij=function(){return(b.dynCall_iiij=b.asm.dynCall_iiij).apply(null,arguments)};
  1397. b.dynCall_iiiiiji=function(){return(b.dynCall_iiiiiji=b.asm.dynCall_iiiiiji).apply(null,arguments)};b.dynCall_iiji=function(){return(b.dynCall_iiji=b.asm.dynCall_iiji).apply(null,arguments)};b.dynCall_iiiiiijji=function(){return(b.dynCall_iiiiiijji=b.asm.dynCall_iiiiiijji).apply(null,arguments)};b.dynCall_ji=function(){return(b.dynCall_ji=b.asm.dynCall_ji).apply(null,arguments)};b.dynCall_vij=function(){return(b.dynCall_vij=b.asm.dynCall_vij).apply(null,arguments)};
  1398. b.dynCall_iiiiij=function(){return(b.dynCall_iiiiij=b.asm.dynCall_iiiiij).apply(null,arguments)};b.dynCall_iiijjiddddddii=function(){return(b.dynCall_iiijjiddddddii=b.asm.dynCall_iiijjiddddddii).apply(null,arguments)};b.dynCall_iiiiddddiiiiiijjiiiiiid=function(){return(b.dynCall_iiiiddddiiiiiijjiiiiiid=b.asm.dynCall_iiiiddddiiiiiijjiiiiiid).apply(null,arguments)};b.dynCall_viij=function(){return(b.dynCall_viij=b.asm.dynCall_viij).apply(null,arguments)};
  1399. b.dynCall_iijii=function(){return(b.dynCall_iijii=b.asm.dynCall_iijii).apply(null,arguments)};b.dynCall_jiji=function(){return(b.dynCall_jiji=b.asm.dynCall_jiji).apply(null,arguments)};b.dynCall_viijii=function(){return(b.dynCall_viijii=b.asm.dynCall_viijii).apply(null,arguments)};b.dynCall_iiiiijj=function(){return(b.dynCall_iiiiijj=b.asm.dynCall_iiiiijj).apply(null,arguments)};b.dynCall_iiiiiijj=function(){return(b.dynCall_iiiiiijj=b.asm.dynCall_iiiiiijj).apply(null,arguments)};
  1400. b.___start_em_js=381616;b.___stop_em_js=381714;function Qaa(a,c,d){var e=jd();try{Oc(a)(c,d)}catch(f){Mc(e);if(f!==f+0)throw f;k$(1,0)}}function Paa(a,c){var d=jd();try{Oc(a)(c)}catch(e){Mc(d);if(e!==e+0)throw e;k$(1,0)}}function Laa(a,c){var d=jd();try{return Oc(a)(c)}catch(e){Mc(d);if(e!==e+0)throw e;k$(1,0)}}function Naa(a,c,d,e){var f=jd();try{return Oc(a)(c,d,e)}catch(l){Mc(f);if(l!==l+0)throw l;k$(1,0)}}
  1401. function Raa(a,c,d,e,f){var l=jd();try{Oc(a)(c,d,e,f)}catch(n){Mc(l);if(n!==n+0)throw n;k$(1,0)}}function Maa(a,c,d){var e=jd();try{return Oc(a)(c,d)}catch(f){Mc(e);if(f!==f+0)throw f;k$(1,0)}}function Oaa(a,c,d,e,f){var l=jd();try{return Oc(a)(c,d,e,f)}catch(n){Mc(l);if(n!==n+0)throw n;k$(1,0)}}b.keepRuntimeAlive=gb;b.wasmMemory=ba;b.ExitStatus=Ib;b.PThread=Lb;var l$;sb=function gea(){l$||hea();l$||(sb=gea)};
  1402. function hea(){function a(){if(!l$&&(l$=!0,b.calledRun=!0,!Ya)){hb();wa(b);if(b.onRuntimeInitialized)b.onRuntimeInitialized();if(!Ea){if(b.postRun)for("function"==typeof b.postRun&&(b.postRun=[b.postRun]);b.postRun.length;){var c=b.postRun.shift();eb.unshift(c)}pb(eb)}}}if(!(0<qb))if(Ea)wa(b),hb(),startWorker(b);else{if(b.preRun)for("function"==typeof b.preRun&&(b.preRun=[b.preRun]);b.preRun.length;)aaa();pb(cb);0<qb||(b.setStatus?(b.setStatus("Running..."),setTimeout(function(){setTimeout(function(){b.setStatus("")},
  1403. 1);a()},1)):a())}}if(b.preInit)for("function"==typeof b.preInit&&(b.preInit=[b.preInit]);0<b.preInit.length;)b.preInit.pop()();hea();function m$(){}m$.prototype=Object.create(m$.prototype);m$.prototype.constructor=m$;m$.prototype.h=m$;m$.i={};b.WrapperObject=m$;function n$(a){return(a||m$).i}b.getCache=n$;function k(a,c){var d=n$(c),e=d[a];if(e)return e;e=Object.create((c||m$).prototype);e.g=a;return d[a]=e}b.wrapPointer=k;b.castObject=function(a,c){return k(a.g,c)};b.NULL=k(0);
  1404. b.destroy=function(a){if(!a.__destroy__)throw"Error: Cannot destroy object. (Did you create it yourself?)";a.__destroy__();delete n$(a.h)[a.g]};b.compare=function(a,c){return a.g===c.g};b.getPointer=function(a){return a.g};b.getClass=function(a){return a.h};var o$=0,p$=0,q$=0,r$=[],s$=0;function m(){if(s$){for(var a=0;a<r$.length;a++)b._free(r$[a]);r$.length=0;b._free(o$);o$=0;p$+=s$;s$=0}o$||(p$+=128,(o$=b._malloc(p$))||Wa());q$=0}
  1405. function iea(a,c){o$||Wa();a=a.length*c.BYTES_PER_ELEMENT;a=a+7&-8;q$+a>=p$?(0<a||Wa(),s$+=a,c=b._malloc(a),r$.push(c)):(c=o$+q$,q$+=a);return c}function jea(a,c,d){d>>>=0;switch(c.BYTES_PER_ELEMENT){case 2:d>>>=1;break;case 4:d>>>=2;break;case 8:d>>>=3}for(var e=0;e<a.length;e++)c[d+e]=a[e]}function r(a){if("string"===typeof a){a=Ub(a);var c=iea(a,aa());jea(a,aa(),c);return c}return a}function t$(a){if("object"===typeof a){var c=iea(a,ua());jea(a,ua(),c);return c}return a}
  1406. function u$(){throw"cannot construct a MdRxObject, no constructor in IDL";}u$.prototype=Object.create(m$.prototype);u$.prototype.constructor=u$;u$.prototype.h=u$;u$.i={};b.MdRxObject=u$;u$.prototype.getObjectName=function(){return g(ee(this.g))};u$.prototype.getDxf0=function(){return g(fe(this.g))};u$.prototype.getCustomEntityTypeName=function(){return g(ge(this.g))};u$.prototype.getCustomEntityid=function(){return he(this.g)};u$.prototype.getCustomEntityTempid=function(){return ie(this.g)};
  1407. u$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!je(c,a)};u$.prototype.getJson=function(){return g(ke(this.g))};u$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!le(c,a)};u$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!me(c,a)};u$.prototype.isNull=function(){return!!ne(this.g)};function t(){this.g=oe();n$(t)[this.g]=this}t.prototype=Object.create(u$.prototype);
  1408. t.prototype.constructor=t;t.prototype.h=t;t.i={};b.MdDbObject=t;t.prototype.GetObjectID=function(){return pe(this.g)};t.prototype.Erase=function(){return!!qe(this.g)};t.prototype.isErased=function(){return!!re(this.g)};t.prototype.unErase=function(){return!!se(this.g)};t.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!te(c,a)};t.prototype.GetExtensionDictionary=function(){return k(ue(this.g),u)};t.prototype.CreateExtensionDictionary=function(){return!!ve(this.g)};
  1409. t.prototype.IsHaveExtensionDictionary=function(){return!!we(this.g)};t.prototype.Clone=function(){return k(xe(this.g),t)};t.prototype.GetHandle=function(){return g(ye(this.g))};t.prototype.GetDatabase=function(){return k(ze(this.g),v)};t.prototype.GetDatabaseIndexId=function(){return Ae(this.g)};t.prototype.GetOwnerID=function(){return Be(this.g)};t.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ce(c,a)};
  1410. t.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!De(f,a,c,d,e)};t.prototype.getGripPoints=function(){return k(Ee(this.g),w)};t.prototype.getObjectName=function(){return g(Fe(this.g))};t.prototype.getDxf0=function(){return g(Ge(this.g))};t.prototype.getCustomEntityTypeName=function(){return g(He(this.g))};t.prototype.getCustomEntityid=function(){return Ie(this.g)};
  1411. t.prototype.getCustomEntityTempid=function(){return Je(this.g)};t.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ke(c,a)};t.prototype.getJson=function(){return g(Le(this.g))};t.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Me(c,a)};t.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ne(c,a)};t.prototype.isNull=function(){return!!Oe(this.g)};t.prototype.__destroy__=function(){Pe(this.g)};
  1412. function x(){this.g=Qe();n$(x)[this.g]=this}x.prototype=Object.create(t.prototype);x.prototype.constructor=x;x.prototype.h=x;x.i={};b.MdDbEntity=x;x.prototype.explode=function(){return k(Re(this.g),y)};x.prototype.TrueColor=function(){return k(Se(this.g),v$)};x.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Te(c,a)};x.prototype.ColorIndex=function(){return Ue(this.g)};
  1413. x.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ve(c,a)};x.prototype.Layer=function(){return g(We(this.g))};x.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Xe(c,a)};x.prototype.LinetypeScale=function(){return Ye(this.g)};x.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ze(c,a)};x.prototype.Visible=function(){return!!$e(this.g)};
  1414. x.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!af(c,a)};x.prototype.Lineweight=function(){return bf(this.g)};x.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cf(c,a)};x.prototype.TextStyle=function(){return g(df(this.g))};x.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ef(c,a)};
  1415. x.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ff(c,a)};x.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!gf(d,a,c)};x.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!hf(d,a,c)};x.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!jf(d,a,c)};
  1416. x.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!kf(d,a,c)};x.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lf(c,a)};x.prototype.GetBoundingBox=function(){return k(mf(this.g),y)};x.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(nf(c,a),y)};x.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!of(c,a)};
  1417. x.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(pf(d,a,c))};x.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!qf(e,a,c,d)};x.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return rf(d,a,c)};
  1418. x.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!sf(e,a,c,d)};x.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return tf(d,a,c)};x.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!uf(e,a,c,d)};
  1419. x.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(vf(d,a,c),z)};x.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!wf(e,a,c,d)};x.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!xf(c,a)};x.prototype.GetAllAppName=function(){return k(yf(this.g),w$)};
  1420. x.prototype.LayerId=function(){return zf(this.g)};x.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Af(c,a)};x.prototype.LinetypeId=function(){return Bf(this.g)};x.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Cf(c,a)};x.prototype.Linetype=function(){return g(Df(this.g))};x.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ef(c,a)};x.prototype.TextStyleId=function(){return Ff(this.g)};
  1421. x.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Gf(c,a)};x.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Hf(d,a,c),w)};x.prototype.getArea=function(){return If(this.g)};x.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Jf(c,a)};x.prototype.isPropertiesWindowCustom=function(){return!!Kf(this.g)};
  1422. x.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Lf(c,a)};x.prototype.updateDisplay=function(){return!!Mf(this.g)};x.prototype.DrawOrder=function(){return Nf(this.g)};x.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Of(c,a)};x.prototype.normal=function(){return k(Pf(this.g),A)};x.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Qf(c,a)};x.prototype.GetObjectID=function(){return Rf(this.g)};
  1423. x.prototype.Erase=function(){return!!Sf(this.g)};x.prototype.isErased=function(){return!!Tf(this.g)};x.prototype.unErase=function(){return!!Uf(this.g)};x.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vf(c,a)};x.prototype.GetExtensionDictionary=function(){return k(Wf(this.g),u)};x.prototype.CreateExtensionDictionary=function(){return!!Xf(this.g)};x.prototype.IsHaveExtensionDictionary=function(){return!!Yf(this.g)};
  1424. x.prototype.Clone=function(){return k(Zf(this.g),t)};x.prototype.GetHandle=function(){return g($f(this.g))};x.prototype.GetDatabase=function(){return k(ag(this.g),v)};x.prototype.GetDatabaseIndexId=function(){return bg(this.g)};x.prototype.GetOwnerID=function(){return cg(this.g)};x.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dg(c,a)};
  1425. x.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!eg(f,a,c,d,e)};x.prototype.getGripPoints=function(){return k(fg(this.g),w)};x.prototype.getObjectName=function(){return g(gg(this.g))};x.prototype.getDxf0=function(){return g(hg(this.g))};x.prototype.getCustomEntityTypeName=function(){return g(ig(this.g))};x.prototype.getCustomEntityid=function(){return jg(this.g)};
  1426. x.prototype.getCustomEntityTempid=function(){return kg(this.g)};x.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lg(c,a)};x.prototype.getJson=function(){return g(mg(this.g))};x.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ng(c,a)};x.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!og(c,a)};x.prototype.isNull=function(){return!!pg(this.g)};x.prototype.__destroy__=function(){qg(this.g)};
  1427. function B(){this.g=rg();n$(B)[this.g]=this}B.prototype=Object.create(x.prototype);B.prototype.constructor=B;B.prototype.h=B;B.i={};b.MdDbCurve=B;B.prototype.getStartParam=function(){return sg(this.g)};B.prototype.getEndParam=function(){return tg(this.g)};B.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return ug(c,a)};B.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return vg(c,a)};
  1428. B.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return wg(c,a)};B.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(xg(c,a),z)};B.prototype.getStartPoint=function(){return k(yg(this.g),z)};B.prototype.getEndPoint=function(){return k(zg(this.g),z)};B.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Ag(c,a),z)};
  1429. B.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Bg(c,a)};B.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Cg(c,a),A)};B.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Dg(c,a),A)};B.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Eg(d,a,c),z)};
  1430. B.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Fg(d,a,c),x$)};B.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Gg(c,a),x$)};B.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Hg(c,a),y)};B.prototype.getLength=function(){return Ig(this.g)};B.prototype.explode=function(){return k(Jg(this.g),y)};
  1431. B.prototype.TrueColor=function(){return k(Kg(this.g),v$)};B.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Lg(c,a)};B.prototype.ColorIndex=function(){return Mg(this.g)};B.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ng(c,a)};B.prototype.Layer=function(){return g(Og(this.g))};B.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Pg(c,a)};B.prototype.LinetypeScale=function(){return Qg(this.g)};
  1432. B.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Rg(c,a)};B.prototype.Visible=function(){return!!Sg(this.g)};B.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Tg(c,a)};B.prototype.Lineweight=function(){return Ug(this.g)};B.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vg(c,a)};B.prototype.TextStyle=function(){return g(Wg(this.g))};
  1433. B.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Xg(c,a)};B.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Yg(c,a)};B.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Zg(d,a,c)};B.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!$g(d,a,c)};
  1434. B.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!ah(d,a,c)};B.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bh(d,a,c)};B.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ch(c,a)};B.prototype.GetBoundingBox=function(){return k(dh(this.g),y)};
  1435. B.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(eh(c,a),y)};B.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fh(c,a)};B.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(gh(d,a,c))};
  1436. B.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!hh(e,a,c,d)};B.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return ih(d,a,c)};B.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!jh(e,a,c,d)};
  1437. B.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return kh(d,a,c)};B.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!lh(e,a,c,d)};B.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(mh(d,a,c),z)};
  1438. B.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!nh(e,a,c,d)};B.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!oh(c,a)};B.prototype.GetAllAppName=function(){return k(ph(this.g),w$)};B.prototype.LayerId=function(){return qh(this.g)};B.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rh(c,a)};
  1439. B.prototype.LinetypeId=function(){return sh(this.g)};B.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!th(c,a)};B.prototype.Linetype=function(){return g(uh(this.g))};B.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!vh(c,a)};B.prototype.TextStyleId=function(){return wh(this.g)};B.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xh(c,a)};
  1440. B.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(yh(d,a,c),w)};B.prototype.getArea=function(){return zh(this.g)};B.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ah(c,a)};B.prototype.isPropertiesWindowCustom=function(){return!!Bh(this.g)};B.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ch(c,a)};
  1441. B.prototype.updateDisplay=function(){return!!Dh(this.g)};B.prototype.DrawOrder=function(){return Eh(this.g)};B.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Fh(c,a)};B.prototype.normal=function(){return k(Gh(this.g),A)};B.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Hh(c,a)};B.prototype.GetObjectID=function(){return Ih(this.g)};B.prototype.Erase=function(){return!!Jh(this.g)};B.prototype.isErased=function(){return!!Kh(this.g)};
  1442. B.prototype.unErase=function(){return!!Lh(this.g)};B.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Mh(c,a)};B.prototype.GetExtensionDictionary=function(){return k(Nh(this.g),u)};B.prototype.CreateExtensionDictionary=function(){return!!Oh(this.g)};B.prototype.IsHaveExtensionDictionary=function(){return!!Ph(this.g)};B.prototype.Clone=function(){return k(Qh(this.g),t)};B.prototype.GetHandle=function(){return g(Rh(this.g))};
  1443. B.prototype.GetDatabase=function(){return k(Sh(this.g),v)};B.prototype.GetDatabaseIndexId=function(){return Th(this.g)};B.prototype.GetOwnerID=function(){return Uh(this.g)};B.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vh(c,a)};B.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Wh(f,a,c,d,e)};
  1444. B.prototype.getGripPoints=function(){return k(Xh(this.g),w)};B.prototype.getObjectName=function(){return g(Yh(this.g))};B.prototype.getDxf0=function(){return g(Zh(this.g))};B.prototype.getCustomEntityTypeName=function(){return g($h(this.g))};B.prototype.getCustomEntityid=function(){return ai(this.g)};B.prototype.getCustomEntityTempid=function(){return bi(this.g)};B.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ci(c,a)};B.prototype.getJson=function(){return g(di(this.g))};
  1445. B.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ei(c,a)};B.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!fi(c,a)};B.prototype.isNull=function(){return!!gi(this.g)};B.prototype.__destroy__=function(){hi(this.g)};function C(){this.g=ii();n$(C)[this.g]=this}C.prototype=Object.create(x.prototype);C.prototype.constructor=C;C.prototype.h=C;C.i={};b.MdDbText=C;
  1446. C.prototype.position=C.prototype.position=function(){return k(ji(this.g),z)};C.prototype.setPosition=C.prototype.setPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ki(c,a)};C.prototype.alignmentPoint=function(){return k(li(this.g),z)};C.prototype.setAlignmentPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mi(c,a)};C.prototype.oblique=function(){return ni(this.g)};
  1447. C.prototype.setOblique=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oi(c,a)};C.prototype.rotation=C.prototype.rotation=function(){return pi(this.g)};C.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qi(c,a)};C.prototype.height=C.prototype.height=function(){return ri(this.g)};C.prototype.setHeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!si(c,a)};C.prototype.widthFactor=function(){return ti(this.g)};
  1448. C.prototype.setWidthFactor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ui(c,a)};C.prototype.textString=function(){return g(vi(this.g))};C.prototype.setTextString=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!wi(c,a)};C.prototype.horizontalMode=function(){return xi(this.g)};C.prototype.setHorizontalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yi(c,a)};C.prototype.verticalMode=function(){return zi(this.g)};
  1449. C.prototype.setVerticalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ai(c,a)};C.prototype.explode=function(){return k(Bi(this.g),y)};C.prototype.TrueColor=function(){return k(Ci(this.g),v$)};C.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Di(c,a)};C.prototype.ColorIndex=function(){return Ei(this.g)};C.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Fi(c,a)};C.prototype.Layer=function(){return g(Gi(this.g))};
  1450. C.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Hi(c,a)};C.prototype.LinetypeScale=function(){return Ii(this.g)};C.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ji(c,a)};C.prototype.Visible=function(){return!!Ki(this.g)};C.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Li(c,a)};C.prototype.Lineweight=function(){return Mi(this.g)};
  1451. C.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ni(c,a)};C.prototype.TextStyle=function(){return g(Oi(this.g))};C.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Pi(c,a)};C.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Qi(c,a)};C.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Ri(d,a,c)};
  1452. C.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Si(d,a,c)};C.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Ti(d,a,c)};C.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Ui(d,a,c)};C.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vi(c,a)};
  1453. C.prototype.GetBoundingBox=function(){return k(Wi(this.g),y)};C.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(Xi(c,a),y)};C.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Yi(c,a)};C.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(Zi(d,a,c))};
  1454. C.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!$i(e,a,c,d)};C.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return aj(d,a,c)};C.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!bj(e,a,c,d)};
  1455. C.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return cj(d,a,c)};C.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!dj(e,a,c,d)};C.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(ej(d,a,c),z)};
  1456. C.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!fj(e,a,c,d)};C.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!gj(c,a)};C.prototype.GetAllAppName=function(){return k(hj(this.g),w$)};C.prototype.LayerId=function(){return ij(this.g)};C.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jj(c,a)};
  1457. C.prototype.LinetypeId=function(){return kj(this.g)};C.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lj(c,a)};C.prototype.Linetype=function(){return g(mj(this.g))};C.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!nj(c,a)};C.prototype.TextStyleId=function(){return oj(this.g)};C.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pj(c,a)};
  1458. C.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(qj(d,a,c),w)};C.prototype.getArea=function(){return rj(this.g)};C.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sj(c,a)};C.prototype.isPropertiesWindowCustom=function(){return!!tj(this.g)};C.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uj(c,a)};
  1459. C.prototype.updateDisplay=function(){return!!vj(this.g)};C.prototype.DrawOrder=function(){return wj(this.g)};C.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xj(c,a)};C.prototype.normal=function(){return k(yj(this.g),A)};C.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zj(c,a)};C.prototype.GetObjectID=function(){return Aj(this.g)};C.prototype.Erase=function(){return!!Bj(this.g)};C.prototype.isErased=function(){return!!Cj(this.g)};
  1460. C.prototype.unErase=function(){return!!Dj(this.g)};C.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ej(c,a)};C.prototype.GetExtensionDictionary=function(){return k(Fj(this.g),u)};C.prototype.CreateExtensionDictionary=function(){return!!Gj(this.g)};C.prototype.IsHaveExtensionDictionary=function(){return!!Hj(this.g)};C.prototype.Clone=function(){return k(Ij(this.g),t)};C.prototype.GetHandle=function(){return g(Jj(this.g))};
  1461. C.prototype.GetDatabase=function(){return k(Kj(this.g),v)};C.prototype.GetDatabaseIndexId=function(){return Lj(this.g)};C.prototype.GetOwnerID=function(){return Mj(this.g)};C.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nj(c,a)};C.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Oj(f,a,c,d,e)};
  1462. C.prototype.getGripPoints=function(){return k(Pj(this.g),w)};C.prototype.getObjectName=function(){return g(Qj(this.g))};C.prototype.getDxf0=function(){return g(Rj(this.g))};C.prototype.getCustomEntityTypeName=function(){return g(Sj(this.g))};C.prototype.getCustomEntityid=function(){return Tj(this.g)};C.prototype.getCustomEntityTempid=function(){return Uj(this.g)};C.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vj(c,a)};C.prototype.getJson=function(){return g(Wj(this.g))};
  1463. C.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Xj(c,a)};C.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Yj(c,a)};C.prototype.isNull=function(){return!!Zj(this.g)};C.prototype.__destroy__=function(){ak(this.g)};function D(){this.g=bk();n$(D)[this.g]=this}D.prototype=Object.create(x.prototype);D.prototype.constructor=D;D.prototype.h=D;D.i={};b.MdDbDimension=D;
  1464. D.prototype.textPosition=function(){return k(ck(this.g),z)};D.prototype.setTextPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dk(c,a)};D.prototype.isUsingDefaultTextPosition=function(){return!!ek(this.g)};D.prototype.useSetTextPosition=function(){return!!fk(this.g)};D.prototype.useDefaultTextPosition=function(){return!!gk(this.g)};D.prototype.elevation=D.prototype.elevation=function(){return hk(this.g)};
  1465. D.prototype.setElevation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ik(c,a)};D.prototype.dimensionText=function(){return g(jk(this.g))};D.prototype.setDimensionText=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!kk(c,a)};D.prototype.textRotation=function(){return lk(this.g)};D.prototype.setTextRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mk(c,a)};D.prototype.dimensionStyle=function(){return nk(this.g)};
  1466. D.prototype.setDimensionStyle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ok(c,a)};D.prototype.textAttachment=function(){return pk(this.g)};D.prototype.setTextAttachment=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qk(c,a)};D.prototype.horizontalRotation=function(){return rk(this.g)};D.prototype.setHorizontalRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sk(c,a)};
  1467. D.prototype.recomputeDimBlock=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tk(c,a)};D.prototype.GetDimVarInt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return uk(c,a)};D.prototype.SetDimVarInt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!vk(d,a,c)};D.prototype.GetDimVarDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return wk(c,a)};
  1468. D.prototype.SetDimVarDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!xk(d,a,c)};D.prototype.GetDimVarString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(yk(c,a))};D.prototype.SetDimVarString=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!zk(d,a,c)};D.prototype.GetDimVarObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Ak(c,a)};
  1469. D.prototype.SetDimVarObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Bk(d,a,c)};D.prototype.GetAllText=function(){return k(Ck(this.g),w$)};D.prototype.explode=function(){return k(Dk(this.g),y)};D.prototype.TrueColor=function(){return k(Ek(this.g),v$)};D.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Fk(c,a)};D.prototype.ColorIndex=function(){return Gk(this.g)};
  1470. D.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Hk(c,a)};D.prototype.Layer=function(){return g(Ik(this.g))};D.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Jk(c,a)};D.prototype.LinetypeScale=function(){return Kk(this.g)};D.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Lk(c,a)};D.prototype.Visible=function(){return!!Mk(this.g)};
  1471. D.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nk(c,a)};D.prototype.Lineweight=function(){return Ok(this.g)};D.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Pk(c,a)};D.prototype.TextStyle=function(){return g(Qk(this.g))};D.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Rk(c,a)};
  1472. D.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Sk(c,a)};D.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Tk(d,a,c)};D.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Uk(d,a,c)};D.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Vk(d,a,c)};
  1473. D.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Wk(d,a,c)};D.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Xk(c,a)};D.prototype.GetBoundingBox=function(){return k(Yk(this.g),y)};D.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(Zk(c,a),y)};D.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$k(c,a)};
  1474. D.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(al(d,a,c))};D.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!bl(e,a,c,d)};D.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return cl(d,a,c)};
  1475. D.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!dl(e,a,c,d)};D.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return el(d,a,c)};D.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!fl(e,a,c,d)};
  1476. D.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(gl(d,a,c),z)};D.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!hl(e,a,c,d)};D.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!il(c,a)};D.prototype.GetAllAppName=function(){return k(jl(this.g),w$)};
  1477. D.prototype.LayerId=function(){return kl(this.g)};D.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ll(c,a)};D.prototype.LinetypeId=function(){return ml(this.g)};D.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nl(c,a)};D.prototype.Linetype=function(){return g(ol(this.g))};D.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!pl(c,a)};D.prototype.TextStyleId=function(){return ql(this.g)};
  1478. D.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rl(c,a)};D.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(sl(d,a,c),w)};D.prototype.getArea=function(){return tl(this.g)};D.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ul(c,a)};D.prototype.isPropertiesWindowCustom=function(){return!!vl(this.g)};
  1479. D.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wl(c,a)};D.prototype.updateDisplay=function(){return!!xl(this.g)};D.prototype.DrawOrder=function(){return yl(this.g)};D.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zl(c,a)};D.prototype.normal=function(){return k(Al(this.g),A)};D.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Bl(c,a)};D.prototype.GetObjectID=function(){return Cl(this.g)};
  1480. D.prototype.Erase=function(){return!!Dl(this.g)};D.prototype.isErased=function(){return!!El(this.g)};D.prototype.unErase=function(){return!!Fl(this.g)};D.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Gl(c,a)};D.prototype.GetExtensionDictionary=function(){return k(Hl(this.g),u)};D.prototype.CreateExtensionDictionary=function(){return!!Il(this.g)};D.prototype.IsHaveExtensionDictionary=function(){return!!Jl(this.g)};
  1481. D.prototype.Clone=function(){return k(Kl(this.g),t)};D.prototype.GetHandle=function(){return g(Ll(this.g))};D.prototype.GetDatabase=function(){return k(Ml(this.g),v)};D.prototype.GetDatabaseIndexId=function(){return Nl(this.g)};D.prototype.GetOwnerID=function(){return Ol(this.g)};D.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Pl(c,a)};
  1482. D.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Ql(f,a,c,d,e)};D.prototype.getGripPoints=function(){return k(Rl(this.g),w)};D.prototype.getObjectName=function(){return g(Sl(this.g))};D.prototype.getDxf0=function(){return g(Tl(this.g))};D.prototype.getCustomEntityTypeName=function(){return g(Ul(this.g))};D.prototype.getCustomEntityid=function(){return Vl(this.g)};
  1483. D.prototype.getCustomEntityTempid=function(){return Wl(this.g)};D.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Xl(c,a)};D.prototype.getJson=function(){return g(Yl(this.g))};D.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Zl(c,a)};D.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!$l(c,a)};D.prototype.isNull=function(){return!!am(this.g)};D.prototype.__destroy__=function(){bm(this.g)};
  1484. function y$(){throw"cannot construct a VoidPtr, no constructor in IDL";}y$.prototype=Object.create(m$.prototype);y$.prototype.constructor=y$;y$.prototype.h=y$;y$.i={};b.VoidPtr=y$;y$.prototype.__destroy__=function(){cm(this.g)};function z$(){this.g=dm();n$(z$)[this.g]=this}z$.prototype=Object.create(m$.prototype);z$.prototype.constructor=z$;z$.prototype.h=z$;z$.i={};b.McApp=z$;z$.prototype.Init=function(){em(this.g)};
  1485. z$.prototype.IniSet=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!fm(c,a)};z$.prototype.CreateMxDraw=function(a,c,d,e,f,l){var n=this.g;m();a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return k(gm(n,a,c,d,e,f,l),E)};z$.prototype.GetCurrentMxDraw=function(){return k(hm(this.g),E)};
  1486. z$.prototype.DestroyObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);im(c,a)};z$.prototype.DestroyMdGePoint3d=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);jm(c,a)};z$.prototype.DestroyMdGeLongArray=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);km(c,a)};z$.prototype.DestroyMdGeDoubleArray=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);lm(c,a)};z$.prototype.DestroyMdGeStringArray=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);mm(c,a)};
  1487. z$.prototype.DestroyMdDbCustomEntityDwgFiler=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);nm(c,a)};z$.prototype.mcedRGB2Index=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return om(f,a,c,d,e)};z$.prototype.setDefaultViewBackgroundColor=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);pm(e,a,c,d)};
  1488. z$.prototype.ObjectIdToObjectName=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(qm(c,a))};z$.prototype.GetVersionString=function(){return g(rm(this.g))};z$.prototype.createAppParam=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return g(sm(c,a))};z$.prototype.getCodeVersion=function(){return tm(this.g)};z$.prototype.isObjectEraseSataus=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!um(c,a)};
  1489. z$.prototype.ObjectIdIsKindOf=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!wm(d,a,c)};z$.prototype.ObjectIdToMdObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(xm(c,a),t)};z$.prototype.ObjectIdToMdDbEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(ym(c,a),x)};z$.prototype.ObjectIdToMdDbCurve=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(zm(c,a),B)};
  1490. z$.prototype.ObjectIdToMdDbDimension=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Am(c,a),D)};z$.prototype.ObjectIdToMdDbLine=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Bm(c,a),F)};z$.prototype.ObjectIdToMdDbText=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Cm(c,a),C)};z$.prototype.ObjectIdToMdDbAttribute=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Dm(c,a),G)};
  1491. z$.prototype.ObjectIdToMdDbAttributeDefinition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Em(c,a),H)};z$.prototype.ObjectIdToMdDbPolyline=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Fm(c,a),I)};z$.prototype.ObjectIdToMdDbCircle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Gm(c,a),J)};z$.prototype.ObjectIdToMdDbArc=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Hm(c,a),K)};
  1492. z$.prototype.ObjectIdToMdDbBlockReference=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Im(c,a),L)};z$.prototype.ObjectIdToMdDbSpatialFilter=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Jm(c,a),A$)};z$.prototype.ObjectIdToMdDbAlignedDimension=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Km(c,a),M)};z$.prototype.ObjectIdToMdDbRotatedDimension=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Lm(c,a),N)};
  1493. z$.prototype.ObjectIdToMdDb2LineAngularDimension=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Mm(c,a),P)};z$.prototype.ObjectIdToMdDbMText=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Nm(c,a),Q)};z$.prototype.ObjectIdToMdDbEllipse=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Om(c,a),S)};z$.prototype.ObjectIdToMdDbHatch=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Pm(c,a),T)};
  1494. z$.prototype.ObjectIdToMdDbProxyEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Qm(c,a),U)};z$.prototype.ObjectIdToMdDbRasterImage=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Rm(c,a),V)};z$.prototype.ObjectIdToMdDbRasterImageDef=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Sm(c,a),B$)};z$.prototype.ObjectIdToMdDbWipeout=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Tm(c,a),W)};
  1495. z$.prototype.ObjectIdToMdDbCustomEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Um(c,a),X)};z$.prototype.ObjectIdToMdDbDictionary=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Vm(c,a),u)};z$.prototype.ObjectIdToMdDbXrecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Wm(c,a),C$)};z$.prototype.ObjectIdToMdDbPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Xm(c,a),Y)};
  1496. z$.prototype.ObjectIdToMdDbBlockTableRecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Ym(c,a),D$)};z$.prototype.ObjectIdToMdDbLayerTableRecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Zm(c,a),E$)};z$.prototype.ObjectIdToMdDbLinetypeTableRecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k($m(c,a),F$)};z$.prototype.ObjectIdToMdDbDimStyleTableRecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(an(c,a),G$)};
  1497. z$.prototype.ObjectIdToMdDbTextStyleTableRecord=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(bn(c,a),H$)};z$.prototype.getLastCallResult=function(){return cn(this.g)};z$.prototype.ThreadTaskAbortExit=function(){dn(this.g)};z$.prototype.setFontFilePath=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);en(c,a)};z$.prototype.addNetworkLoadingFont=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);fn(c,a)};
  1498. z$.prototype.addFontsLoadOnInitialization=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);gn(d,a,c)};z$.prototype.addNetworkLoadingTrueTypeFont=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d=d&&"object"===typeof d?d.g:r(d);hn(e,a,c,d)};z$.prototype.setDefaultTrueTypeFontFile=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);jn(c,a)};
  1499. z$.prototype.loadFonts=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);kn(d,a,c)};z$.prototype.__destroy__=function(){ln(this.g)};function v$(){this.g=mn();n$(v$)[this.g]=this}v$.prototype=Object.create(m$.prototype);v$.prototype.constructor=v$;v$.prototype.h=v$;v$.i={};b.MdCmColor=v$;v$.prototype.setColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);nn(c,a)};
  1500. v$.prototype.setRGB=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);on(e,a,c,d)};v$.prototype.getColorString=function(){return g(pn(this.g))};v$.prototype.getColorValue=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return g(qn(d,a,c))};v$.prototype.get_red=v$.prototype.gb=function(){return rn(this.g)};
  1501. v$.prototype.set_red=v$.prototype.Ab=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);sn(c,a)};Object.defineProperty(v$.prototype,"red",{get:v$.prototype.gb,set:v$.prototype.Ab});v$.prototype.get_green=v$.prototype.cb=function(){return tn(this.g)};v$.prototype.set_green=v$.prototype.xb=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);un(c,a)};Object.defineProperty(v$.prototype,"green",{get:v$.prototype.cb,set:v$.prototype.xb});v$.prototype.get_blue=v$.prototype.ab=function(){return vn(this.g)};
  1502. v$.prototype.set_blue=v$.prototype.tb=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);wn(c,a)};Object.defineProperty(v$.prototype,"blue",{get:v$.prototype.ab,set:v$.prototype.tb});v$.prototype.get_method=v$.prototype.eb=function(){return xn(this.g)};v$.prototype.set_method=v$.prototype.yb=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);yn(c,a)};Object.defineProperty(v$.prototype,"method",{get:v$.prototype.eb,set:v$.prototype.yb});v$.prototype.get_n=v$.prototype.fb=function(){return zn(this.g)};
  1503. v$.prototype.set_n=v$.prototype.zb=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);An(c,a)};Object.defineProperty(v$.prototype,"n",{get:v$.prototype.fb,set:v$.prototype.zb});v$.prototype.get_colorIndex=v$.prototype.bb=function(){return Bn(this.g)};v$.prototype.set_colorIndex=v$.prototype.vb=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Cn(c,a)};Object.defineProperty(v$.prototype,"colorIndex",{get:v$.prototype.bb,set:v$.prototype.vb});v$.prototype.__destroy__=function(){Dn(this.g)};
  1504. function x$(){throw"cannot construct a MdDbObjectArray, no constructor in IDL";}x$.prototype=Object.create(u$.prototype);x$.prototype.constructor=x$;x$.prototype.h=x$;x$.i={};b.MdDbObjectArray=x$;x$.prototype.length=x$.prototype.length=function(){return En(this.g)};x$.prototype.release=x$.prototype.release=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Fn(c,a),t)};x$.prototype.clear=x$.prototype.clear=function(){Gn(this.g)};x$.prototype.getObjectName=function(){return g(Hn(this.g))};
  1505. x$.prototype.getDxf0=function(){return g(In(this.g))};x$.prototype.getCustomEntityTypeName=function(){return g(Jn(this.g))};x$.prototype.getCustomEntityid=function(){return Kn(this.g)};x$.prototype.getCustomEntityTempid=function(){return Ln(this.g)};x$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Mn(c,a)};x$.prototype.getJson=function(){return g(Nn(this.g))};
  1506. x$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!On(c,a)};x$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Pn(c,a)};x$.prototype.isNull=function(){return!!Qn(this.g)};x$.prototype.__destroy__=function(){Rn(this.g)};
  1507. function z(a,c,d){a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);this.g=void 0===a?Sn():void 0===c?_emscripten_bind_MdGePoint3d_MdGePoint3d_1(a):void 0===d?_emscripten_bind_MdGePoint3d_MdGePoint3d_2(a,c):Tn(a,c,d);n$(z)[this.g]=this}z.prototype=Object.create(m$.prototype);z.prototype.constructor=z;z.prototype.h=z;z.i={};b.MdGePoint3d=z;z.prototype.transformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Un(c,a)};
  1508. z.prototype.addvec=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Vn(c,a)};z.prototype.subvec=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Wn(c,a)};z.prototype.sub=z.prototype.sub=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Xn(c,a),A)};z.prototype.distanceTo=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Yn(c,a)};z.prototype.isEqualTo=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Zn(c,a)};
  1509. z.prototype.get_x=z.prototype.ga=function(){return $n(this.g)};z.prototype.set_x=z.prototype.na=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);ao(c,a)};Object.defineProperty(z.prototype,"x",{get:z.prototype.ga,set:z.prototype.na});z.prototype.get_y=z.prototype.ha=function(){return bo(this.g)};z.prototype.set_y=z.prototype.oa=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);co(c,a)};Object.defineProperty(z.prototype,"y",{get:z.prototype.ha,set:z.prototype.oa});
  1510. z.prototype.get_z=z.prototype.ia=function(){return eo(this.g)};z.prototype.set_z=z.prototype.pa=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);fo(c,a)};Object.defineProperty(z.prototype,"z",{get:z.prototype.ia,set:z.prototype.pa});z.prototype.__destroy__=function(){go(this.g)};function I$(){throw"cannot construct a MxMemoryData, no constructor in IDL";}I$.prototype=Object.create(m$.prototype);I$.prototype.constructor=I$;I$.prototype.h=I$;I$.i={};b.MxMemoryData=I$;
  1511. I$.prototype.clear=I$.prototype.clear=function(){ho(this.g)};I$.prototype.getData=I$.prototype.getData=function(){return io(this.g)};I$.prototype.getSize=function(){return jo(this.g)};I$.prototype.__destroy__=function(){ko(this.g)};function w(){this.g=lo();n$(w)[this.g]=this}w.prototype=Object.create(m$.prototype);w.prototype.constructor=w;w.prototype.h=w;w.i={};b.MdGePoint3dArray=w;w.prototype.append=w.prototype.append=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);mo(c,a)};
  1512. w.prototype.length=w.prototype.length=function(){return no(this.g)};w.prototype.at=w.prototype.at=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(oo(c,a),z)};w.prototype.setAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);po(d,a,c)};w.prototype.clear=w.prototype.clear=function(){qo(this.g)};w.prototype.copy=w.prototype.copy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);ro(c,a)};w.prototype.__destroy__=function(){so(this.g)};
  1513. function A(a,c,d){a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);this.g=void 0===a?to():void 0===c?_emscripten_bind_MdGeVector3d_MdGeVector3d_1(a):void 0===d?_emscripten_bind_MdGeVector3d_MdGeVector3d_2(a,c):uo(a,c,d);n$(A)[this.g]=this}A.prototype=Object.create(m$.prototype);A.prototype.constructor=A;A.prototype.h=A;A.i={};b.MdGeVector3d=A;
  1514. A.prototype.rotateBy=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);vo(d,a,c)};A.prototype.negate=function(){wo(this.g)};A.prototype.perpVector=function(){xo(this.g)};A.prototype.angleTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return void 0===c?yo(d,a):zo(d,a,c)};A.prototype.normalize=A.prototype.normalize=function(){Ao(this.g)};A.prototype.length=A.prototype.length=function(){return Bo(this.g)};
  1515. A.prototype.isUnitLength=function(){return!!Co(this.g)};A.prototype.isZeroLength=function(){return!!Do(this.g)};A.prototype.dotProduct=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Eo(c,a)};A.prototype.crossProduct=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Fo(c,a),A)};A.prototype.isEqualTo=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Go(c,a)};A.prototype.mult=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Ho(c,a)};
  1516. A.prototype.get_x=A.prototype.ga=function(){return Io(this.g)};A.prototype.set_x=A.prototype.na=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Jo(c,a)};Object.defineProperty(A.prototype,"x",{get:A.prototype.ga,set:A.prototype.na});A.prototype.get_y=A.prototype.ha=function(){return Ko(this.g)};A.prototype.set_y=A.prototype.oa=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Lo(c,a)};Object.defineProperty(A.prototype,"y",{get:A.prototype.ha,set:A.prototype.oa});
  1517. A.prototype.get_z=A.prototype.ia=function(){return Mo(this.g)};A.prototype.set_z=A.prototype.pa=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);No(c,a)};Object.defineProperty(A.prototype,"z",{get:A.prototype.ia,set:A.prototype.pa});A.prototype.__destroy__=function(){Oo(this.g)};function J$(){this.g=Po();n$(J$)[this.g]=this}J$.prototype=Object.create(m$.prototype);J$.prototype.constructor=J$;J$.prototype.h=J$;J$.i={};b.MdGeLongArray=J$;
  1518. J$.prototype.append=J$.prototype.append=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Qo(c,a)};J$.prototype.length=J$.prototype.length=function(){return Ro(this.g)};J$.prototype.at=J$.prototype.at=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return So(c,a)};J$.prototype.setAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);To(d,a,c)};J$.prototype.copy=J$.prototype.copy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Uo(c,a)};
  1519. J$.prototype.clear=J$.prototype.clear=function(){Vo(this.g)};J$.prototype.__destroy__=function(){Wo(this.g)};function w$(){this.g=Xo();n$(w$)[this.g]=this}w$.prototype=Object.create(m$.prototype);w$.prototype.constructor=w$;w$.prototype.h=w$;w$.i={};b.MdGeStringArray=w$;w$.prototype.append=w$.prototype.append=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Yo(c,a)};w$.prototype.length=w$.prototype.length=function(){return Zo(this.g)};
  1520. w$.prototype.at=w$.prototype.at=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g($o(c,a))};w$.prototype.setAt=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);ap(d,a,c)};w$.prototype.copy=w$.prototype.copy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);bp(c,a)};w$.prototype.clear=w$.prototype.clear=function(){cp(this.g)};w$.prototype.__destroy__=function(){dp(this.g)};function K$(){this.g=ep();n$(K$)[this.g]=this}
  1521. K$.prototype=Object.create(m$.prototype);K$.prototype.constructor=K$;K$.prototype.h=K$;K$.i={};b.MdGeDoubleArray=K$;K$.prototype.append=K$.prototype.append=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);fp(c,a)};K$.prototype.length=K$.prototype.length=function(){return gp(this.g)};K$.prototype.at=K$.prototype.at=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return hp(c,a)};
  1522. K$.prototype.setAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);ip(d,a,c)};K$.prototype.copy=K$.prototype.copy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);jp(c,a)};K$.prototype.clear=K$.prototype.clear=function(){kp(this.g)};K$.prototype.__destroy__=function(){lp(this.g)};function L$(){this.g=mp();n$(L$)[this.g]=this}L$.prototype=Object.create(m$.prototype);L$.prototype.constructor=L$;L$.prototype.h=L$;L$.i={};b.MdGeMatrix3d=L$;
  1523. L$.prototype.setToIdentity=function(){np(this.g)};L$.prototype.preMultBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);op(c,a)};L$.prototype.postMultBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);pp(c,a)};L$.prototype.setToProduct=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);qp(d,a,c)};L$.prototype.invert=function(){rp(this.g)};L$.prototype.isSingular=function(){return!!sp(this.g)};L$.prototype.transposeIt=function(){tp(this.g)};
  1524. L$.prototype.isEqualTo=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!up(c,a)};L$.prototype.det=function(){return vp(this.g)};L$.prototype.setCoordSystem=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);wp(f,a,c,d,e)};L$.prototype.setToTranslation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);xp(c,a)};
  1525. L$.prototype.setToRotation=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);yp(e,a,c,d)};L$.prototype.setToScaling=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);zp(d,a,c)};L$.prototype.setMirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Ap(d,a,c)};L$.prototype.scale=L$.prototype.scale=function(){return Bp(this.g)};
  1526. L$.prototype.getData=L$.prototype.getData=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return Cp(d,a,c)};L$.prototype.copy=L$.prototype.copy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Dp(c,a)};L$.prototype.copyFormPointer=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Ep(c,a)};L$.prototype.__destroy__=function(){Fp(this.g)};function E$(){this.g=Gp();n$(E$)[this.g]=this}E$.prototype=Object.create(t.prototype);
  1527. E$.prototype.constructor=E$;E$.prototype.h=E$;E$.i={};b.MdDbLayerTableRecord=E$;E$.prototype.getName=function(){return g(Hp(this.g))};E$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ip(c,a)};E$.prototype.isFrozen=E$.prototype.isFrozen=function(){return!!Jp(this.g)};E$.prototype.setIsFrozen=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Kp(c,a)};E$.prototype.isOff=function(){return!!Lp(this.g)};
  1528. E$.prototype.setIsOff=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Mp(c,a)};E$.prototype.isLocked=function(){return!!Np(this.g)};E$.prototype.setIsLocked=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Op(c,a)};E$.prototype.color=E$.prototype.color=function(){return k(Pp(this.g),v$)};E$.prototype.setColor=E$.prototype.setColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Qp(c,a)};E$.prototype.linetypeObjectId=function(){return Rp(this.g)};
  1529. E$.prototype.setLinetypeObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Sp(c,a)};E$.prototype.lineWeight=function(){return Tp(this.g)};E$.prototype.setLineWeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Up(c,a)};E$.prototype.GetObjectID=function(){return Vp(this.g)};E$.prototype.Erase=function(){return!!Wp(this.g)};E$.prototype.isErased=function(){return!!Xp(this.g)};E$.prototype.unErase=function(){return!!Yp(this.g)};
  1530. E$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Zp(c,a)};E$.prototype.GetExtensionDictionary=function(){return k($p(this.g),u)};E$.prototype.CreateExtensionDictionary=function(){return!!aq(this.g)};E$.prototype.IsHaveExtensionDictionary=function(){return!!bq(this.g)};E$.prototype.Clone=function(){return k(cq(this.g),t)};E$.prototype.GetHandle=function(){return g(dq(this.g))};E$.prototype.GetDatabase=function(){return k(eq(this.g),v)};
  1531. E$.prototype.GetDatabaseIndexId=function(){return fq(this.g)};E$.prototype.GetOwnerID=function(){return gq(this.g)};E$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hq(c,a)};E$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!iq(f,a,c,d,e)};E$.prototype.getGripPoints=function(){return k(jq(this.g),w)};
  1532. E$.prototype.getObjectName=function(){return g(kq(this.g))};E$.prototype.getDxf0=function(){return g(lq(this.g))};E$.prototype.getCustomEntityTypeName=function(){return g(mq(this.g))};E$.prototype.getCustomEntityid=function(){return nq(this.g)};E$.prototype.getCustomEntityTempid=function(){return oq(this.g)};E$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pq(c,a)};E$.prototype.getJson=function(){return g(qq(this.g))};
  1533. E$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!rq(c,a)};E$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!sq(c,a)};E$.prototype.isNull=function(){return!!tq(this.g)};E$.prototype.__destroy__=function(){uq(this.g)};function F$(){this.g=vq();n$(F$)[this.g]=this}F$.prototype=Object.create(t.prototype);F$.prototype.constructor=F$;F$.prototype.h=F$;F$.i={};b.MdDbLinetypeTableRecord=F$;F$.prototype.getName=function(){return g(wq(this.g))};
  1534. F$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!xq(c,a)};F$.prototype.numDashes=function(){return yq(this.g)};F$.prototype.setNumDashes=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zq(c,a)};F$.prototype.dashLengthAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Aq(c,a)};F$.prototype.setDashLengthAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Bq(d,a,c)};
  1535. F$.prototype.comments=function(){return g(Cq(this.g))};F$.prototype.setComments=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Dq(c,a)};F$.prototype.shapeStyleAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Eq(c,a)};F$.prototype.setShapeStyleAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Fq(d,a,c)};F$.prototype.shapeNumberAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Gq(c,a)};
  1536. F$.prototype.setShapeNumberAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Hq(d,a,c)};F$.prototype.shapeOffsetAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Iq(c,a),A)};F$.prototype.setShapeOffsetAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Jq(d,a,c)};F$.prototype.shapeScaleAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Kq(c,a)};
  1537. F$.prototype.setShapeScaleAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Lq(d,a,c)};F$.prototype.isScaledToFit=function(){return!!Mq(this.g)};F$.prototype.setIsScaledToFit=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nq(c,a)};F$.prototype.shapeIsUcsOrientedAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Oq(c,a)};
  1538. F$.prototype.setShapeIsUcsOrientedAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Pq(d,a,c)};F$.prototype.shapeRotationAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Qq(c,a)};F$.prototype.setShapeRotationAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Rq(d,a,c)};F$.prototype.textAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(Sq(c,a))};
  1539. F$.prototype.setTextAt=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!Tq(d,a,c)};F$.prototype.GetObjectID=function(){return Uq(this.g)};F$.prototype.Erase=function(){return!!Vq(this.g)};F$.prototype.isErased=function(){return!!Wq(this.g)};F$.prototype.unErase=function(){return!!Xq(this.g)};F$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Yq(c,a)};
  1540. F$.prototype.GetExtensionDictionary=function(){return k(Zq(this.g),u)};F$.prototype.CreateExtensionDictionary=function(){return!!$q(this.g)};F$.prototype.IsHaveExtensionDictionary=function(){return!!ar(this.g)};F$.prototype.Clone=function(){return k(br(this.g),t)};F$.prototype.GetHandle=function(){return g(cr(this.g))};F$.prototype.GetDatabase=function(){return k(dr(this.g),v)};F$.prototype.GetDatabaseIndexId=function(){return er(this.g)};F$.prototype.GetOwnerID=function(){return fr(this.g)};
  1541. F$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!gr(c,a)};F$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!hr(f,a,c,d,e)};F$.prototype.getGripPoints=function(){return k(ir(this.g),w)};F$.prototype.getObjectName=function(){return g(jr(this.g))};F$.prototype.getDxf0=function(){return g(kr(this.g))};
  1542. F$.prototype.getCustomEntityTypeName=function(){return g(lr(this.g))};F$.prototype.getCustomEntityid=function(){return mr(this.g)};F$.prototype.getCustomEntityTempid=function(){return nr(this.g)};F$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!or(c,a)};F$.prototype.getJson=function(){return g(pr(this.g))};F$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!qr(c,a)};
  1543. F$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!rr(c,a)};F$.prototype.isNull=function(){return!!sr(this.g)};F$.prototype.__destroy__=function(){tr(this.g)};function H$(){this.g=ur();n$(H$)[this.g]=this}H$.prototype=Object.create(t.prototype);H$.prototype.constructor=H$;H$.prototype.h=H$;H$.i={};b.MdDbTextStyleTableRecord=H$;H$.prototype.getName=function(){return g(vr(this.g))};
  1544. H$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!wr(c,a)};H$.prototype.isShapeFile=function(){return!!xr(this.g)};H$.prototype.setIsShapeFile=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yr(c,a)};H$.prototype.isVertical=function(){return!!zr(this.g)};H$.prototype.setIsVertical=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ar(c,a)};H$.prototype.textSize=function(){return Br(this.g)};
  1545. H$.prototype.setTextSize=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Cr(c,a)};H$.prototype.xScale=function(){return Dr(this.g)};H$.prototype.setXScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Er(c,a)};H$.prototype.obliquingAngle=function(){return Fr(this.g)};H$.prototype.setObliquingAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Gr(c,a)};H$.prototype.flagBits=function(){return Hr(this.g)};
  1546. H$.prototype.setFlagBits=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ir(c,a)};H$.prototype.fileName=H$.prototype.fileName=function(){return g(Jr(this.g))};H$.prototype.setFileName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Kr(c,a)};H$.prototype.bigFontFileName=function(){return g(Lr(this.g))};H$.prototype.setBigFontFileName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Mr(c,a)};
  1547. H$.prototype.setFont=function(a,c,d,e,f){var l=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return!!Nr(l,a,c,d,e,f)};H$.prototype.font=H$.prototype.font=function(){return k(Or(this.g),y)};H$.prototype.GetObjectID=function(){return Pr(this.g)};H$.prototype.Erase=function(){return!!Qr(this.g)};H$.prototype.isErased=function(){return!!Rr(this.g)};H$.prototype.unErase=function(){return!!Sr(this.g)};
  1548. H$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Tr(c,a)};H$.prototype.GetExtensionDictionary=function(){return k(Ur(this.g),u)};H$.prototype.CreateExtensionDictionary=function(){return!!Vr(this.g)};H$.prototype.IsHaveExtensionDictionary=function(){return!!Wr(this.g)};H$.prototype.Clone=function(){return k(Xr(this.g),t)};H$.prototype.GetHandle=function(){return g(Yr(this.g))};H$.prototype.GetDatabase=function(){return k(Zr(this.g),v)};
  1549. H$.prototype.GetDatabaseIndexId=function(){return $r(this.g)};H$.prototype.GetOwnerID=function(){return as(this.g)};H$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!bs(c,a)};H$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!cs(f,a,c,d,e)};H$.prototype.getGripPoints=function(){return k(ds(this.g),w)};
  1550. H$.prototype.getObjectName=function(){return g(es(this.g))};H$.prototype.getDxf0=function(){return g(gs(this.g))};H$.prototype.getCustomEntityTypeName=function(){return g(hs(this.g))};H$.prototype.getCustomEntityid=function(){return is(this.g)};H$.prototype.getCustomEntityTempid=function(){return js(this.g)};H$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ks(c,a)};H$.prototype.getJson=function(){return g(ls(this.g))};
  1551. H$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ms(c,a)};H$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ns(c,a)};H$.prototype.isNull=function(){return!!ps(this.g)};H$.prototype.__destroy__=function(){qs(this.g)};function M$(){throw"cannot construct a MdDbLayerTable, no constructor in IDL";}M$.prototype=Object.create(t.prototype);M$.prototype.constructor=M$;M$.prototype.h=M$;M$.i={};b.MdDbLayerTable=M$;
  1552. M$.prototype.getAllRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(rs(c,a),J$)};M$.prototype.add=M$.prototype.add=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return ss(c,a)};M$.prototype.get=M$.prototype.get=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return ts(d,a,c)};M$.prototype.GetObjectID=function(){return us(this.g)};M$.prototype.Erase=function(){return!!vs(this.g)};M$.prototype.isErased=function(){return!!xs(this.g)};
  1553. M$.prototype.unErase=function(){return!!ys(this.g)};M$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zs(c,a)};M$.prototype.GetExtensionDictionary=function(){return k(As(this.g),u)};M$.prototype.CreateExtensionDictionary=function(){return!!Bs(this.g)};M$.prototype.IsHaveExtensionDictionary=function(){return!!Cs(this.g)};M$.prototype.Clone=function(){return k(Ds(this.g),t)};M$.prototype.GetHandle=function(){return g(Es(this.g))};
  1554. M$.prototype.GetDatabase=function(){return k(Fs(this.g),v)};M$.prototype.GetDatabaseIndexId=function(){return Gs(this.g)};M$.prototype.GetOwnerID=function(){return Hs(this.g)};M$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Is(c,a)};M$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Js(f,a,c,d,e)};
  1555. M$.prototype.getGripPoints=function(){return k(Ks(this.g),w)};M$.prototype.getObjectName=function(){return g(Ls(this.g))};M$.prototype.getDxf0=function(){return g(Ms(this.g))};M$.prototype.getCustomEntityTypeName=function(){return g(Ns(this.g))};M$.prototype.getCustomEntityid=function(){return Os(this.g)};M$.prototype.getCustomEntityTempid=function(){return Ps(this.g)};M$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Qs(c,a)};
  1556. M$.prototype.getJson=function(){return g(Rs(this.g))};M$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ss(c,a)};M$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ts(c,a)};M$.prototype.isNull=function(){return!!Us(this.g)};function N$(){throw"cannot construct a MdDbLinetypeTable, no constructor in IDL";}N$.prototype=Object.create(t.prototype);N$.prototype.constructor=N$;N$.prototype.h=N$;N$.i={};
  1557. b.MdDbLinetypeTable=N$;N$.prototype.getAllRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Vs(c,a),J$)};N$.prototype.add=N$.prototype.add=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Ws(c,a)};N$.prototype.get=N$.prototype.get=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return Xs(d,a,c)};N$.prototype.GetObjectID=function(){return Ys(this.g)};N$.prototype.Erase=function(){return!!Zs(this.g)};
  1558. N$.prototype.isErased=function(){return!!$s(this.g)};N$.prototype.unErase=function(){return!!at(this.g)};N$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!bt(c,a)};N$.prototype.GetExtensionDictionary=function(){return k(ct(this.g),u)};N$.prototype.CreateExtensionDictionary=function(){return!!dt(this.g)};N$.prototype.IsHaveExtensionDictionary=function(){return!!et(this.g)};N$.prototype.Clone=function(){return k(ft(this.g),t)};
  1559. N$.prototype.GetHandle=function(){return g(gt(this.g))};N$.prototype.GetDatabase=function(){return k(ht(this.g),v)};N$.prototype.GetDatabaseIndexId=function(){return it(this.g)};N$.prototype.GetOwnerID=function(){return jt(this.g)};N$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kt(c,a)};
  1560. N$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!lt(f,a,c,d,e)};N$.prototype.getGripPoints=function(){return k(mt(this.g),w)};N$.prototype.getObjectName=function(){return g(nt(this.g))};N$.prototype.getDxf0=function(){return g(ot(this.g))};N$.prototype.getCustomEntityTypeName=function(){return g(pt(this.g))};N$.prototype.getCustomEntityid=function(){return qt(this.g)};
  1561. N$.prototype.getCustomEntityTempid=function(){return rt(this.g)};N$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!st(c,a)};N$.prototype.getJson=function(){return g(tt(this.g))};N$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ut(c,a)};N$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!vt(c,a)};N$.prototype.isNull=function(){return!!wt(this.g)};
  1562. function O$(){throw"cannot construct a MdDbTextStyleTable, no constructor in IDL";}O$.prototype=Object.create(t.prototype);O$.prototype.constructor=O$;O$.prototype.h=O$;O$.i={};b.MdDbTextStyleTable=O$;O$.prototype.getAllRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(xt(c,a),J$)};O$.prototype.add=O$.prototype.add=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return yt(c,a)};
  1563. O$.prototype.get=O$.prototype.get=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return zt(d,a,c)};O$.prototype.GetObjectID=function(){return At(this.g)};O$.prototype.Erase=function(){return!!Bt(this.g)};O$.prototype.isErased=function(){return!!Ct(this.g)};O$.prototype.unErase=function(){return!!Dt(this.g)};O$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Et(c,a)};
  1564. O$.prototype.GetExtensionDictionary=function(){return k(Ft(this.g),u)};O$.prototype.CreateExtensionDictionary=function(){return!!Gt(this.g)};O$.prototype.IsHaveExtensionDictionary=function(){return!!Ht(this.g)};O$.prototype.Clone=function(){return k(It(this.g),t)};O$.prototype.GetHandle=function(){return g(Jt(this.g))};O$.prototype.GetDatabase=function(){return k(Kt(this.g),v)};O$.prototype.GetDatabaseIndexId=function(){return Lt(this.g)};O$.prototype.GetOwnerID=function(){return Mt(this.g)};
  1565. O$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nt(c,a)};O$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Ot(f,a,c,d,e)};O$.prototype.getGripPoints=function(){return k(Pt(this.g),w)};O$.prototype.getObjectName=function(){return g(Qt(this.g))};O$.prototype.getDxf0=function(){return g(Rt(this.g))};
  1566. O$.prototype.getCustomEntityTypeName=function(){return g(St(this.g))};O$.prototype.getCustomEntityid=function(){return Tt(this.g)};O$.prototype.getCustomEntityTempid=function(){return Ut(this.g)};O$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vt(c,a)};O$.prototype.getJson=function(){return g(Wt(this.g))};O$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Xt(c,a)};
  1567. O$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Yt(c,a)};O$.prototype.isNull=function(){return!!Zt(this.g)};function G$(){this.g=$t();n$(G$)[this.g]=this}G$.prototype=Object.create(t.prototype);G$.prototype.constructor=G$;G$.prototype.h=G$;G$.i={};b.MdDbDimStyleTableRecord=G$;G$.prototype.getName=function(){return g(au(this.g))};G$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!bu(c,a)};
  1568. G$.prototype.getDimVarInt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return cu(c,a)};G$.prototype.setDimVarInt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!du(d,a,c)};G$.prototype.getDimVarDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return eu(c,a)};G$.prototype.setDimVarDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!fu(d,a,c)};
  1569. G$.prototype.getDimVarString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(gu(c,a))};G$.prototype.setDimVarString=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!hu(d,a,c)};G$.prototype.getDimVarObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return iu(c,a)};G$.prototype.setDimVarObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!ju(d,a,c)};
  1570. G$.prototype.GetObjectID=function(){return ku(this.g)};G$.prototype.Erase=function(){return!!lu(this.g)};G$.prototype.isErased=function(){return!!mu(this.g)};G$.prototype.unErase=function(){return!!nu(this.g)};G$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ou(c,a)};G$.prototype.GetExtensionDictionary=function(){return k(pu(this.g),u)};G$.prototype.CreateExtensionDictionary=function(){return!!qu(this.g)};G$.prototype.IsHaveExtensionDictionary=function(){return!!ru(this.g)};
  1571. G$.prototype.Clone=function(){return k(su(this.g),t)};G$.prototype.GetHandle=function(){return g(tu(this.g))};G$.prototype.GetDatabase=function(){return k(uu(this.g),v)};G$.prototype.GetDatabaseIndexId=function(){return vu(this.g)};G$.prototype.GetOwnerID=function(){return wu(this.g)};G$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xu(c,a)};
  1572. G$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!yu(f,a,c,d,e)};G$.prototype.getGripPoints=function(){return k(zu(this.g),w)};G$.prototype.getObjectName=function(){return g(Au(this.g))};G$.prototype.getDxf0=function(){return g(Bu(this.g))};G$.prototype.getCustomEntityTypeName=function(){return g(Cu(this.g))};G$.prototype.getCustomEntityid=function(){return Du(this.g)};
  1573. G$.prototype.getCustomEntityTempid=function(){return Eu(this.g)};G$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Fu(c,a)};G$.prototype.getJson=function(){return g(Gu(this.g))};G$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Hu(c,a)};G$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Iu(c,a)};G$.prototype.isNull=function(){return!!Ju(this.g)};
  1574. G$.prototype.__destroy__=function(){Ku(this.g)};function P$(){throw"cannot construct a MdDbDimStyleTable, no constructor in IDL";}P$.prototype=Object.create(t.prototype);P$.prototype.constructor=P$;P$.prototype.h=P$;P$.i={};b.MdDbDimStyleTable=P$;P$.prototype.getAllRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Lu(c,a),J$)};P$.prototype.add=P$.prototype.add=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Mu(c,a)};
  1575. P$.prototype.get=P$.prototype.get=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return Nu(d,a,c)};P$.prototype.GetObjectID=function(){return Ou(this.g)};P$.prototype.Erase=function(){return!!Pu(this.g)};P$.prototype.isErased=function(){return!!Qu(this.g)};P$.prototype.unErase=function(){return!!Ru(this.g)};P$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Su(c,a)};
  1576. P$.prototype.GetExtensionDictionary=function(){return k(Tu(this.g),u)};P$.prototype.CreateExtensionDictionary=function(){return!!Uu(this.g)};P$.prototype.IsHaveExtensionDictionary=function(){return!!Vu(this.g)};P$.prototype.Clone=function(){return k(Wu(this.g),t)};P$.prototype.GetHandle=function(){return g(Xu(this.g))};P$.prototype.GetDatabase=function(){return k(Yu(this.g),v)};P$.prototype.GetDatabaseIndexId=function(){return Zu(this.g)};P$.prototype.GetOwnerID=function(){return $u(this.g)};
  1577. P$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!av(c,a)};P$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!bv(f,a,c,d,e)};P$.prototype.getGripPoints=function(){return k(cv(this.g),w)};P$.prototype.getObjectName=function(){return g(dv(this.g))};P$.prototype.getDxf0=function(){return g(ev(this.g))};
  1578. P$.prototype.getCustomEntityTypeName=function(){return g(fv(this.g))};P$.prototype.getCustomEntityid=function(){return gv(this.g)};P$.prototype.getCustomEntityTempid=function(){return hv(this.g)};P$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!iv(c,a)};P$.prototype.getJson=function(){return g(jv(this.g))};P$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!kv(c,a)};
  1579. P$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!lv(c,a)};P$.prototype.isNull=function(){return!!mv(this.g)};function v(){throw"cannot construct a MdDbDatabase, no constructor in IDL";}v.prototype=Object.create(u$.prototype);v.prototype.constructor=v;v.prototype.h=v;v.i={};b.MdDbDatabase=v;v.prototype.GetLayerTable=function(){return k(nv(this.g),M$)};v.prototype.GetLinetypeTable=function(){return k(ov(this.g),N$)};
  1580. v.prototype.GetDimStyleTable=function(){return k(pv(this.g),P$)};v.prototype.GetTextStyleTable=function(){return k(qv(this.g),O$)};v.prototype.GetBlockTable=function(){return k(rv(this.g),Q$)};v.prototype.CurrentSpace=function(){return k(sv(this.g),D$)};v.prototype.GetNamedObjectsDictionary=function(){return k(tv(this.g),u)};v.prototype.GetGroupDictionary=function(){return k(uv(this.g),u)};v.prototype.GetCurrentlyLineTypeScale=function(){return vv(this.g)};
  1581. v.prototype.SetCurrentlyLineTypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);wv(c,a)};v.prototype.GetCurrentlyLayerName=function(){return g(xv(this.g))};v.prototype.SetCurrentlyLayerName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);yv(c,a)};v.prototype.GetCurrentlyLineTypeName=function(){return g(zv(this.g))};v.prototype.SetCurrentlyLineTypeName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Av(c,a)};
  1582. v.prototype.GetCurrentlyTrueColor=function(){return k(Bv(this.g),v$)};v.prototype.GetCurrentlyDrawColor=function(){return k(Cv(this.g),J$)};v.prototype.SetCurrentlyTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Dv(c,a)};v.prototype.GetCurrentlyColorIndex=function(){return Ev(this.g)};v.prototype.SetCurrentlyColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Fv(c,a)};v.prototype.GetCurrentlyTextStyleName=function(){return g(Gv(this.g))};
  1583. v.prototype.SetCurrentlyTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Hv(c,a)};v.prototype.GetCurrentlyTextStyleId=function(){return Iv(this.g)};v.prototype.SetCurrentlyTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Jv(c,a)};v.prototype.GetCurrentlyDimStyleId=function(){return Kv(this.g)};v.prototype.SetCurrentlyDimStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Lv(c,a)};v.prototype.GetCurrentlyLayerId=function(){return Mv(this.g)};
  1584. v.prototype.SetCurrentlyLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nv(c,a)};v.prototype.GetCurrentlyLinetypeId=function(){return Ov(this.g)};v.prototype.SetCurrentlyLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Pv(c,a)};v.prototype.HandleToIdIndex=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return Qv(c,a)};v.prototype.IsModifyed=function(){return!!Rv(this.g)};
  1585. v.prototype.SetModifyed=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Sv(c,a)};v.prototype.getEntitiesInTheGroup=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Tv(c,a),J$)};v.prototype.getObjectName=function(){return g(Uv(this.g))};v.prototype.getDxf0=function(){return g(Vv(this.g))};v.prototype.getCustomEntityTypeName=function(){return g(Wv(this.g))};v.prototype.getCustomEntityid=function(){return Xv(this.g)};v.prototype.getCustomEntityTempid=function(){return Yv(this.g)};
  1586. v.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Zv(c,a)};v.prototype.getJson=function(){return g($v(this.g))};v.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!aw(c,a)};v.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!bw(c,a)};v.prototype.isNull=function(){return!!cw(this.g)};function E(){throw"cannot construct a McObject, no constructor in IDL";}E.prototype=Object.create(m$.prototype);
  1587. E.prototype.constructor=E;E.prototype.h=E;E.i={};b.McObject=E;E.prototype.updateDisplay=function(a,c){var d=this.g;m();"object"==typeof a&&(a=t$(a));"object"==typeof c&&(c=t$(c));return!!dw(d,a,c)};E.prototype.updateDisplayMatrixData=function(a,c,d){var e=this.g;m();"object"==typeof a&&(a=t$(a));"object"==typeof c&&(c=t$(c));d&&"object"===typeof d&&(d=d.g);return!!ew(e,a,c,d)};E.prototype.test=E.prototype.test=function(){fw(this.g)};
  1588. E.prototype.openWebFile=function(a,c,d,e,f,l){var n=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e=e&&"object"===typeof e?e.g:r(e);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return!!gw(n,a,c,d,e,f,l)};E.prototype.loadTz=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hw(c,a)};E.prototype.newFile=function(){return!!iw(this.g)};
  1589. E.prototype.insertBlock=function(a,c,d,e,f,l,n,p){var R=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f=f&&"object"===typeof f?f.g:r(f);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);return!!jw(R,a,c,d,e,f,l,n,p)};
  1590. E.prototype.addImageDefine=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d&&"object"===typeof d&&(d=d.g);return kw(e,a,c,d)};E.prototype.addSystemVarNameForEvent=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);lw(c,a)};E.prototype.saveFileToUrl=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!mw(c,a)};E.prototype.saveTempFile=function(){return g(nw(this.g))};
  1591. E.prototype.saveFileToMemory=function(){return k(ow(this.g),I$)};E.prototype.deleteFile=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!pw(c,a)};E.prototype.saveFile=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);return!!qw(d,a,c)};E.prototype.getViewDataJsonParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(rw(c,a))};E.prototype.regen=function(){sw(this.g)};
  1592. E.prototype.setBrowse=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);tw(c,a)};E.prototype.GetDatabase=function(){return k(uw(this.g),v)};E.prototype.GetSysVarString=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return g(vw(c,a))};E.prototype.SetSysVarString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);return!!ww(d,a,c)};
  1593. E.prototype.GetSysVarDouble=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return xw(c,a)};E.prototype.SetSysVarDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!yw(d,a,c)};E.prototype.GetSysVarLong=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return zw(c,a)};E.prototype.SetSysVarLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!Aw(d,a,c)};
  1594. E.prototype.GetSysVarPoint=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(Bw(c,a),z)};E.prototype.SetSysVarPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!Cw(e,a,c,d)};E.prototype.fireEventWindowSize=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Dw(d,a,c)};
  1595. E.prototype.fireStartRunCommand=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);Ew(d,a,c)};E.prototype.fireEndRunCommand=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);Fw(d,a,c)};E.prototype.fireEventDragWillEnd=function(){Gw(this.g)};E.prototype.fireViewAngleChange=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Hw(c,a)};
  1596. E.prototype.IntelliSelect_PointSelect=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return k(Iw(e,a,c,d),J$)};E.prototype.IntelliSelect_RangeSelect=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return k(Jw(l,a,c,d,e,f),J$)};
  1597. E.prototype.Osnap_NotifyOsnap=function(a,c,d,e,f,l,n,p){var R=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);Kw(R,a,c,d,e,f,l,n,p)};E.prototype.EntityTempWordDraw_onJigCommandEnd=function(){Lw(this.g)};
  1598. E.prototype.EntityTempWordDraw_onJigDrawEntityDisplay=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Mw(d,a,c)};E.prototype.EntityTempWordDraw_onReadyJigUpdateDispla=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);Nw(e,a,c,d)};E.prototype.EntityTempWordDraw_onJigClearDisplay=function(){Ow(this.g)};
  1599. E.prototype.SetDrawColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Pw(c,a)};E.prototype.GetDrawColor=function(){return k(Qw(this.g),v$)};E.prototype.AddLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return Rw(c,a)};E.prototype.SetDrawLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Sw(c,a)};E.prototype.GetDrawLayer=function(){return g(Tw(this.g))};
  1600. E.prototype.AddTextStyle=function(a,c,d,e){var f=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d=d&&"object"===typeof d?d.g:r(d);e&&"object"===typeof e&&(e=e.g);return Uw(f,a,c,d,e)};E.prototype.AddTureTypeTextStyle=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d&&"object"===typeof d&&(d=d.g);return Vw(e,a,c,d)};E.prototype.SetDrawTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Ww(c,a)};
  1601. E.prototype.GetDrawTextStyle=function(){return g(Xw(this.g))};E.prototype.AddLinetype=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);return Yw(d,a,c)};E.prototype.AddLinetypeEx=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d=d&&"object"===typeof d?d.g:r(d);return Zw(e,a,c,d)};
  1602. E.prototype.AddDimStyle=function(a,c,d,e,f){var l=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);d=d&&"object"===typeof d?d.g:r(d);e=e&&"object"===typeof e?e.g:r(e);f=f&&"object"===typeof f?f.g:r(f);return $w(l,a,c,d,e,f)};E.prototype.SetDrawLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);ax(c,a)};E.prototype.GetDrawLinetype=function(){return g(bx(this.g))};
  1603. E.prototype.SetDrawLineWeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);cx(c,a)};E.prototype.GetDrawLineWeight=function(){return dx(this.g)};E.prototype.SetDrawLineTypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);ex(c,a)};E.prototype.GetDrawLineTypeScale=function(){return fx(this.g)};E.prototype.SetDrawDimStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);gx(c,a)};E.prototype.GetDrawDimStyle=function(){return g(hx(this.g))};
  1604. E.prototype.SetPatternDefinition=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);ix(c,a)};E.prototype.GetPatternDefinition=function(){return g(jx(this.g))};E.prototype.SetDrawLineWidth=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);kx(c,a)};E.prototype.GetDrawLineWidth=function(){return lx(this.g)};E.prototype.SetDrawUseDefaultProperties=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);mx(c,a)};E.prototype.GetDrawUseDefaultProperties=function(){return!!nx(this.g)};
  1605. E.prototype.DrawImage=function(a,c,d,e,f,l,n){var p=this.g;m();a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l=l&&"object"===typeof l?l.g:r(l);n&&"object"===typeof n&&(n=n.g);return ox(p,a,c,d,e,f,l,n)};
  1606. E.prototype.DrawLine=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return px(n,a,c,d,e,f,l)};
  1607. E.prototype.DrawArc=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return qx(l,a,c,d,e,f)};
  1608. E.prototype.DrawArc2=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return rx(n,a,c,d,e,f,l)};
  1609. E.prototype.DrawArc3=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return sx(l,a,c,d,e,f)};E.prototype.DrawCircle=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return tx(e,a,c,d)};
  1610. E.prototype.DrawEllipse=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return ux(l,a,c,d,e,f)};
  1611. E.prototype.DrawEllipseArc=function(a,c,d,e,f,l,n){var p=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);return vx(p,a,c,d,e,f,l,n)};E.prototype.DrawPoint=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return wx(d,a,c)};
  1612. E.prototype.DrawSolid=function(a,c,d,e,f,l,n,p){var R=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);return xx(R,a,c,d,e,f,l,n,p)};
  1613. E.prototype.DrawMText=function(a,c,d,e,f,l,n){var p=this.g;m();a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);return yx(p,a,c,d,e,f,l,n)};
  1614. E.prototype.DrawText=function(a,c,d,e,f,l,n){var p=this.g;m();a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);return zx(p,a,c,d,e,f,l,n)};
  1615. E.prototype.DrawBlockReference=function(a,c,d,e,f){var l=this.g;m();a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return Ax(l,a,c,d,e,f)};
  1616. E.prototype.DrawDimAligned=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return Bx(n,a,c,d,e,f,l)};
  1617. E.prototype.DrawDimAngular=function(a,c,d,e,f,l,n,p){var R=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);return Cx(R,a,c,d,e,f,l,n,p)};
  1618. E.prototype.DrawDimDiametric=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return Dx(l,a,c,d,e,f)};
  1619. E.prototype.DrawDimRotated=function(a,c,d,e,f,l,n){var p=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);return Ex(p,a,c,d,e,f,l,n)};
  1620. E.prototype.DrawDimOrdinate=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return Fx(l,a,c,d,e,f)};E.prototype.DrawDimRadial=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return Gx(l,a,c,d,e,f)};
  1621. E.prototype.PathMoveTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Hx(d,a,c)};E.prototype.PathMoveToEx=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);Ix(l,a,c,d,e,f)};E.prototype.PathLineTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Jx(d,a,c)};
  1622. E.prototype.PathLineToEx=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);Kx(l,a,c,d,e,f)};E.prototype.PathCircle=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return!!Lx(l,a,c,d,e,f)};
  1623. E.prototype.DrawPathToPolyline=function(){return Mx(this.g)};E.prototype.DrawPathToSpline=function(){return Nx(this.g)};E.prototype.PathMakeClosed=function(){Ox(this.g)};E.prototype.DrawPathToHatch=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Px(c,a)};E.prototype.DrawHatch=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return Qx(d,a,c)};
  1624. E.prototype.DrawEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return Rx(d,a,c)};E.prototype.GetAllLayoutName=function(){return k(Sx(this.g),w$)};E.prototype.SetCurrentLayout=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Tx(c,a)};E.prototype.PathMakeExclude=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Ux(c,a)};
  1625. E.prototype.AddPatternDefinition=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);Vx(d,a,c)};E.prototype.SetAppId=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Wx(c,a)};E.prototype.UpdateLayerDisplayStatus=function(){Xx(this.g)};E.prototype.showLineWeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Yx(c,a)};E.prototype.initRegist=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);Zx(c,a)};
  1626. E.prototype.initAuthorizedService=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);$x(c,a)};E.prototype.isTryVersion=function(){return!!ay(this.g)};E.prototype.setViewBackgroundColor=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);by(e,a,c,d)};E.prototype.createTexture=E.prototype.createTexture=function(){return cy(this.g)};
  1627. E.prototype.deleteTexture=E.prototype.deleteTexture=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);dy(c,a)};E.prototype.bindTexture=E.prototype.bindTexture=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);ey(d,a,c)};E.prototype.allocTextureHandle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return fy(c,a)};
  1628. E.prototype.registTexture=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);gy(d,a,c)};E.prototype.undo=function(){hy(this.g)};E.prototype.redo=function(){iy(this.g)};E.prototype.undoMark=function(){jy(this.g)};E.prototype.setAttribute=E.prototype.setAttribute=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ky(c,a)};
  1629. E.prototype.loadDwgBackground=function(a,c,d,e){var f=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!ly(f,a,c,d,e)};E.prototype.GetBackgroundEntity=function(){return k(my(this.g),Z)};E.prototype.makeCurrent=function(){ny(this.g)};E.prototype.isPaperSpaceDisplay=function(){return!!oy(this.g)};function y(){this.g=py();n$(y)[this.g]=this}y.prototype=Object.create(u$.prototype);
  1630. y.prototype.constructor=y;y.prototype.h=y;y.i={};b.McDrawResbuf=y;y.prototype.Clear=function(){qy(this.g)};y.prototype.GetCount=function(){return ry(this.g)};y.prototype.AtDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return sy(c,a)};y.prototype.Atlong=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return ty(c,a)};y.prototype.AtObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return uy(c,a)};
  1631. y.prototype.AtObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(vy(c,a),t)};y.prototype.AtRxObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(wy(c,a),u$)};y.prototype.AtObjectMdDbMText=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(xy(c,a),Q)};y.prototype.AtObjectName=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(yy(c,a))};
  1632. y.prototype.AtString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(zy(c,a))};y.prototype.AtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Ay(c,a),z)};y.prototype.ItemDataType=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return By(c,a)};y.prototype.ItemDataDxf=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Cy(c,a)};
  1633. y.prototype.AddDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Dy(d,a,c)};y.prototype.Addlong=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Ey(d,a,c)};y.prototype.AddObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Fy(d,a,c)};y.prototype.AddObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Gy(c,a)};
  1634. y.prototype.AddString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);Hy(d,a,c)};y.prototype.AddPoint=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);Iy(d,a,c)};y.prototype.RemoveAll=function(){Jy(this.g)};y.prototype.Remove=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);Ky(c,a)};y.prototype.PrintData=function(){Ly(this.g)};y.prototype.getObjectName=function(){return g(My(this.g))};
  1635. y.prototype.getDxf0=function(){return g(Ny(this.g))};y.prototype.getCustomEntityTypeName=function(){return g(Oy(this.g))};y.prototype.getCustomEntityid=function(){return Py(this.g)};y.prototype.getCustomEntityTempid=function(){return Qy(this.g)};y.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ry(c,a)};y.prototype.getJson=function(){return g(Sy(this.g))};
  1636. y.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Ty(c,a)};y.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Uy(c,a)};y.prototype.isNull=function(){return!!Vy(this.g)};y.prototype.__destroy__=function(){Wy(this.g)};function R$(){this.g=Xy();n$(R$)[this.g]=this}R$.prototype=Object.create(m$.prototype);R$.prototype.constructor=R$;R$.prototype.h=R$;R$.i={};b.McDrawUtility=R$;
  1637. R$.prototype.findEntAtPoint=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return Yy(l,a,c,d,e,f)};R$.prototype.eraseObject=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Zy(d,a,c)};
  1638. R$.prototype.highlightEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!$y(d,a,c)};R$.prototype.calcBulge=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return az(e,a,c,d)};R$.prototype.builderHatchFromPoint=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(bz(d,a,c),T)};R$.prototype.__destroy__=function(){cz(this.g)};
  1639. function S$(){this.g=dz();n$(S$)[this.g]=this}S$.prototype=Object.create(m$.prototype);S$.prototype.constructor=S$;S$.prototype.h=S$;S$.i={};b.MxDrawAssist=S$;
  1640. S$.prototype.MxChamfer=function(a,c,d,e,f,l,n,p,R){var O=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);R&&"object"===typeof R&&(R=R.g);return!!ez(O,a,c,d,e,f,l,n,p,R)};
  1641. S$.prototype.MxFillet=function(a,c,d,e,f,l,n,p){var R=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);return!!fz(R,a,c,d,e,f,l,n,p)};S$.prototype.MxExplode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!gz(c,a)};
  1642. S$.prototype.MxJoin=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hz(c,a)};S$.prototype.IntersectWith=function(a,c,d,e,f,l,n,p,R){var O=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);R&&"object"===typeof R&&(R=R.g);return k(iz(O,a,c,d,e,f,l,n,p,R),w)};
  1643. S$.prototype.GetClosestPointTo=function(a,c,d,e,f,l,n){var p=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);return k(jz(p,a,c,d,e,f,l,n),w)};S$.prototype.__destroy__=function(){kz(this.g)};function T$(){this.g=lz();n$(T$)[this.g]=this}T$.prototype=Object.create(m$.prototype);T$.prototype.constructor=T$;
  1644. T$.prototype.h=T$;T$.i={};b.MxDrawTrimAssist=T$;T$.prototype.Init=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mz(c,a)};T$.prototype.UnInit=function(){return!!nz(this.g)};T$.prototype.DoTrim=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);oz(l,a,c,d,e,f)};T$.prototype.__destroy__=function(){pz(this.g)};
  1645. function U$(){this.g=qz();n$(U$)[this.g]=this}U$.prototype=Object.create(m$.prototype);U$.prototype.constructor=U$;U$.prototype.h=U$;U$.i={};b.MxDrawExtendAssist=U$;U$.prototype.Init=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rz(c,a)};U$.prototype.UnInit=function(){return!!sz(this.g)};
  1646. U$.prototype.DoExtend=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);tz(l,a,c,d,e,f)};U$.prototype.__destroy__=function(){uz(this.g)};function F(){this.g=vz();n$(F)[this.g]=this}F.prototype=Object.create(B.prototype);F.prototype.constructor=F;F.prototype.h=F;F.i={};b.MdDbLine=F;F.prototype.startPoint=function(){return k(wz(this.g),z)};
  1647. F.prototype.setStartPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xz(c,a)};F.prototype.endPoint=function(){return k(yz(this.g),z)};F.prototype.setEndPoint=F.prototype.setEndPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zz(c,a)};F.prototype.getStartParam=function(){return Az(this.g)};F.prototype.getEndParam=function(){return Bz(this.g)};F.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Cz(c,a)};
  1648. F.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Dz(c,a)};F.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Ez(c,a)};F.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Fz(c,a),z)};F.prototype.getStartPoint=function(){return k(Gz(this.g),z)};F.prototype.getEndPoint=function(){return k(Hz(this.g),z)};
  1649. F.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Iz(c,a),z)};F.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return Jz(c,a)};F.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Kz(c,a),A)};F.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Lz(c,a),A)};
  1650. F.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Mz(d,a,c),z)};F.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Nz(d,a,c),x$)};F.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Oz(c,a),x$)};F.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Pz(c,a),y)};
  1651. F.prototype.getLength=function(){return Qz(this.g)};F.prototype.explode=function(){return k(Rz(this.g),y)};F.prototype.TrueColor=function(){return k(Sz(this.g),v$)};F.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Tz(c,a)};F.prototype.ColorIndex=function(){return Uz(this.g)};F.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vz(c,a)};F.prototype.Layer=function(){return g(Wz(this.g))};
  1652. F.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Xz(c,a)};F.prototype.LinetypeScale=function(){return Yz(this.g)};F.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Zz(c,a)};F.prototype.Visible=function(){return!!$z(this.g)};F.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aA(c,a)};F.prototype.Lineweight=function(){return bA(this.g)};
  1653. F.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cA(c,a)};F.prototype.TextStyle=function(){return g(dA(this.g))};F.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!eA(c,a)};F.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fA(c,a)};F.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!gA(d,a,c)};
  1654. F.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!hA(d,a,c)};F.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!iA(d,a,c)};F.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!jA(d,a,c)};F.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kA(c,a)};
  1655. F.prototype.GetBoundingBox=function(){return k(lA(this.g),y)};F.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(mA(c,a),y)};F.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nA(c,a)};F.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(oA(d,a,c))};
  1656. F.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!pA(e,a,c,d)};F.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return qA(d,a,c)};F.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!rA(e,a,c,d)};
  1657. F.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return sA(d,a,c)};F.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!tA(e,a,c,d)};F.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(uA(d,a,c),z)};
  1658. F.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!vA(e,a,c,d)};F.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!wA(c,a)};F.prototype.GetAllAppName=function(){return k(xA(this.g),w$)};F.prototype.LayerId=function(){return yA(this.g)};F.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zA(c,a)};
  1659. F.prototype.LinetypeId=function(){return AA(this.g)};F.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BA(c,a)};F.prototype.Linetype=function(){return g(CA(this.g))};F.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!DA(c,a)};F.prototype.TextStyleId=function(){return EA(this.g)};F.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FA(c,a)};
  1660. F.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(GA(d,a,c),w)};F.prototype.getArea=function(){return HA(this.g)};F.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!IA(c,a)};F.prototype.isPropertiesWindowCustom=function(){return!!JA(this.g)};F.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KA(c,a)};
  1661. F.prototype.updateDisplay=function(){return!!LA(this.g)};F.prototype.DrawOrder=function(){return MA(this.g)};F.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NA(c,a)};F.prototype.normal=function(){return k(OA(this.g),A)};F.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PA(c,a)};F.prototype.GetObjectID=function(){return QA(this.g)};F.prototype.Erase=function(){return!!RA(this.g)};F.prototype.isErased=function(){return!!SA(this.g)};
  1662. F.prototype.unErase=function(){return!!TA(this.g)};F.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UA(c,a)};F.prototype.GetExtensionDictionary=function(){return k(VA(this.g),u)};F.prototype.CreateExtensionDictionary=function(){return!!WA(this.g)};F.prototype.IsHaveExtensionDictionary=function(){return!!XA(this.g)};F.prototype.Clone=function(){return k(YA(this.g),t)};F.prototype.GetHandle=function(){return g(ZA(this.g))};
  1663. F.prototype.GetDatabase=function(){return k($A(this.g),v)};F.prototype.GetDatabaseIndexId=function(){return aB(this.g)};F.prototype.GetOwnerID=function(){return bB(this.g)};F.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cB(c,a)};F.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!dB(f,a,c,d,e)};
  1664. F.prototype.getGripPoints=function(){return k(eB(this.g),w)};F.prototype.getObjectName=function(){return g(fB(this.g))};F.prototype.getDxf0=function(){return g(gB(this.g))};F.prototype.getCustomEntityTypeName=function(){return g(hB(this.g))};F.prototype.getCustomEntityid=function(){return iB(this.g)};F.prototype.getCustomEntityTempid=function(){return jB(this.g)};F.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kB(c,a)};F.prototype.getJson=function(){return g(lB(this.g))};
  1665. F.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!mB(c,a)};F.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!nB(c,a)};F.prototype.isNull=function(){return!!oB(this.g)};F.prototype.__destroy__=function(){pB(this.g)};function G(){this.g=qB();n$(G)[this.g]=this}G.prototype=Object.create(C.prototype);G.prototype.constructor=G;G.prototype.h=G;G.i={};b.MdDbAttribute=G;G.prototype.tag=G.prototype.tag=function(){return g(rB(this.g))};
  1666. G.prototype.setTag=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!sB(c,a)};G.prototype.isInvisible=function(){return!!tB(this.g)};G.prototype.setInvisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uB(c,a)};G.prototype.explode=function(){return k(vB(this.g),y)};G.prototype.TrueColor=function(){return k(wB(this.g),v$)};G.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xB(c,a)};G.prototype.ColorIndex=function(){return yB(this.g)};
  1667. G.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zB(c,a)};G.prototype.Layer=function(){return g(AB(this.g))};G.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!BB(c,a)};G.prototype.LinetypeScale=function(){return CB(this.g)};G.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DB(c,a)};G.prototype.Visible=function(){return!!EB(this.g)};
  1668. G.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FB(c,a)};G.prototype.Lineweight=function(){return GB(this.g)};G.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HB(c,a)};G.prototype.TextStyle=function(){return g(IB(this.g))};G.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!JB(c,a)};
  1669. G.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KB(c,a)};G.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!LB(d,a,c)};G.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!MB(d,a,c)};G.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!NB(d,a,c)};
  1670. G.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!OB(d,a,c)};G.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PB(c,a)};G.prototype.GetBoundingBox=function(){return k(QB(this.g),y)};G.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(RB(c,a),y)};G.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!SB(c,a)};
  1671. G.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(TB(d,a,c))};G.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!UB(e,a,c,d)};G.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return VB(d,a,c)};
  1672. G.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!WB(e,a,c,d)};G.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return XB(d,a,c)};G.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!YB(e,a,c,d)};
  1673. G.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(ZB(d,a,c),z)};G.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!$B(e,a,c,d)};G.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!aC(c,a)};G.prototype.GetAllAppName=function(){return k(bC(this.g),w$)};
  1674. G.prototype.LayerId=function(){return cC(this.g)};G.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dC(c,a)};G.prototype.LinetypeId=function(){return eC(this.g)};G.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fC(c,a)};G.prototype.Linetype=function(){return g(gC(this.g))};G.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hC(c,a)};G.prototype.TextStyleId=function(){return iC(this.g)};
  1675. G.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jC(c,a)};G.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(kC(d,a,c),w)};G.prototype.getArea=function(){return lC(this.g)};G.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mC(c,a)};G.prototype.isPropertiesWindowCustom=function(){return!!nC(this.g)};
  1676. G.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oC(c,a)};G.prototype.updateDisplay=function(){return!!pC(this.g)};G.prototype.DrawOrder=function(){return qC(this.g)};G.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rC(c,a)};G.prototype.normal=function(){return k(sC(this.g),A)};G.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tC(c,a)};G.prototype.GetObjectID=function(){return uC(this.g)};
  1677. G.prototype.Erase=function(){return!!vC(this.g)};G.prototype.isErased=function(){return!!wC(this.g)};G.prototype.unErase=function(){return!!xC(this.g)};G.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yC(c,a)};G.prototype.GetExtensionDictionary=function(){return k(zC(this.g),u)};G.prototype.CreateExtensionDictionary=function(){return!!AC(this.g)};G.prototype.IsHaveExtensionDictionary=function(){return!!BC(this.g)};
  1678. G.prototype.Clone=function(){return k(CC(this.g),t)};G.prototype.GetHandle=function(){return g(DC(this.g))};G.prototype.GetDatabase=function(){return k(EC(this.g),v)};G.prototype.GetDatabaseIndexId=function(){return FC(this.g)};G.prototype.GetOwnerID=function(){return GC(this.g)};G.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HC(c,a)};
  1679. G.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!IC(f,a,c,d,e)};G.prototype.getGripPoints=function(){return k(JC(this.g),w)};G.prototype.position=G.prototype.position=function(){return k(KC(this.g),z)};G.prototype.setPosition=G.prototype.setPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!LC(c,a)};
  1680. G.prototype.alignmentPoint=function(){return k(MC(this.g),z)};G.prototype.setAlignmentPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NC(c,a)};G.prototype.oblique=function(){return OC(this.g)};G.prototype.setOblique=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PC(c,a)};G.prototype.rotation=G.prototype.rotation=function(){return QC(this.g)};G.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RC(c,a)};
  1681. G.prototype.height=G.prototype.height=function(){return SC(this.g)};G.prototype.setHeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TC(c,a)};G.prototype.widthFactor=function(){return UC(this.g)};G.prototype.setWidthFactor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VC(c,a)};G.prototype.textString=function(){return g(WC(this.g))};G.prototype.setTextString=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!XC(c,a)};
  1682. G.prototype.horizontalMode=function(){return YC(this.g)};G.prototype.setHorizontalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZC(c,a)};G.prototype.verticalMode=function(){return $C(this.g)};G.prototype.setVerticalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aD(c,a)};G.prototype.getObjectName=function(){return g(bD(this.g))};G.prototype.getDxf0=function(){return g(cD(this.g))};G.prototype.getCustomEntityTypeName=function(){return g(dD(this.g))};
  1683. G.prototype.getCustomEntityid=function(){return eD(this.g)};G.prototype.getCustomEntityTempid=function(){return fD(this.g)};G.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!gD(c,a)};G.prototype.getJson=function(){return g(hD(this.g))};G.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!iD(c,a)};G.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!jD(c,a)};
  1684. G.prototype.isNull=function(){return!!kD(this.g)};G.prototype.__destroy__=function(){lD(this.g)};function H(){this.g=mD();n$(H)[this.g]=this}H.prototype=Object.create(C.prototype);H.prototype.constructor=H;H.prototype.h=H;H.i={};b.MdDbAttributeDefinition=H;H.prototype.tag=H.prototype.tag=function(){return g(nD(this.g))};H.prototype.setTag=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!oD(c,a)};H.prototype.prompt=H.prototype.prompt=function(){return g(pD(this.g))};
  1685. H.prototype.setPrompt=H.prototype.setPrompt=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!qD(c,a)};H.prototype.isInvisible=function(){return!!rD(this.g)};H.prototype.setInvisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sD(c,a)};H.prototype.isConstant=function(){return!!tD(this.g)};H.prototype.setConstant=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uD(c,a)};H.prototype.isVerifiable=function(){return!!vD(this.g)};
  1686. H.prototype.setVerifiable=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wD(c,a)};H.prototype.isPreset=function(){return!!xD(this.g)};H.prototype.setPreset=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yD(c,a)};H.prototype.explode=function(){return k(zD(this.g),y)};H.prototype.TrueColor=function(){return k(AD(this.g),v$)};H.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BD(c,a)};H.prototype.ColorIndex=function(){return CD(this.g)};
  1687. H.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DD(c,a)};H.prototype.Layer=function(){return g(ED(this.g))};H.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!FD(c,a)};H.prototype.LinetypeScale=function(){return GD(this.g)};H.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HD(c,a)};H.prototype.Visible=function(){return!!ID(this.g)};
  1688. H.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JD(c,a)};H.prototype.Lineweight=function(){return KD(this.g)};H.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!LD(c,a)};H.prototype.TextStyle=function(){return g(MD(this.g))};H.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ND(c,a)};
  1689. H.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OD(c,a)};H.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!PD(d,a,c)};H.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!QD(d,a,c)};H.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!RD(d,a,c)};
  1690. H.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!SD(d,a,c)};H.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TD(c,a)};H.prototype.GetBoundingBox=function(){return k(UD(this.g),y)};H.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(VD(c,a),y)};H.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WD(c,a)};
  1691. H.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(XD(d,a,c))};H.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!YD(e,a,c,d)};H.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return ZD(d,a,c)};
  1692. H.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!$D(e,a,c,d)};H.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return aE(d,a,c)};H.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!bE(e,a,c,d)};
  1693. H.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(cE(d,a,c),z)};H.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!dE(e,a,c,d)};H.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!eE(c,a)};H.prototype.GetAllAppName=function(){return k(fE(this.g),w$)};
  1694. H.prototype.LayerId=function(){return gE(this.g)};H.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hE(c,a)};H.prototype.LinetypeId=function(){return iE(this.g)};H.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jE(c,a)};H.prototype.Linetype=function(){return g(kE(this.g))};H.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!lE(c,a)};H.prototype.TextStyleId=function(){return mE(this.g)};
  1695. H.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nE(c,a)};H.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(oE(d,a,c),w)};H.prototype.getArea=function(){return pE(this.g)};H.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qE(c,a)};H.prototype.isPropertiesWindowCustom=function(){return!!rE(this.g)};
  1696. H.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sE(c,a)};H.prototype.updateDisplay=function(){return!!tE(this.g)};H.prototype.DrawOrder=function(){return uE(this.g)};H.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vE(c,a)};H.prototype.normal=function(){return k(wE(this.g),A)};H.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xE(c,a)};H.prototype.GetObjectID=function(){return yE(this.g)};
  1697. H.prototype.Erase=function(){return!!zE(this.g)};H.prototype.isErased=function(){return!!AE(this.g)};H.prototype.unErase=function(){return!!BE(this.g)};H.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!CE(c,a)};H.prototype.GetExtensionDictionary=function(){return k(DE(this.g),u)};H.prototype.CreateExtensionDictionary=function(){return!!EE(this.g)};H.prototype.IsHaveExtensionDictionary=function(){return!!FE(this.g)};
  1698. H.prototype.Clone=function(){return k(GE(this.g),t)};H.prototype.GetHandle=function(){return g(HE(this.g))};H.prototype.GetDatabase=function(){return k(IE(this.g),v)};H.prototype.GetDatabaseIndexId=function(){return JE(this.g)};H.prototype.GetOwnerID=function(){return KE(this.g)};H.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!LE(c,a)};
  1699. H.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!ME(f,a,c,d,e)};H.prototype.getGripPoints=function(){return k(NE(this.g),w)};H.prototype.position=H.prototype.position=function(){return k(OE(this.g),z)};H.prototype.setPosition=H.prototype.setPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PE(c,a)};
  1700. H.prototype.alignmentPoint=function(){return k(QE(this.g),z)};H.prototype.setAlignmentPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RE(c,a)};H.prototype.oblique=function(){return SE(this.g)};H.prototype.setOblique=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TE(c,a)};H.prototype.rotation=H.prototype.rotation=function(){return UE(this.g)};H.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VE(c,a)};
  1701. H.prototype.height=H.prototype.height=function(){return WE(this.g)};H.prototype.setHeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XE(c,a)};H.prototype.widthFactor=function(){return YE(this.g)};H.prototype.setWidthFactor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZE(c,a)};H.prototype.textString=function(){return g($E(this.g))};H.prototype.setTextString=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!aF(c,a)};
  1702. H.prototype.horizontalMode=function(){return bF(this.g)};H.prototype.setHorizontalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cF(c,a)};H.prototype.verticalMode=function(){return dF(this.g)};H.prototype.setVerticalMode=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eF(c,a)};H.prototype.getObjectName=function(){return g(fF(this.g))};H.prototype.getDxf0=function(){return g(gF(this.g))};H.prototype.getCustomEntityTypeName=function(){return g(hF(this.g))};
  1703. H.prototype.getCustomEntityid=function(){return iF(this.g)};H.prototype.getCustomEntityTempid=function(){return jF(this.g)};H.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kF(c,a)};H.prototype.getJson=function(){return g(lF(this.g))};H.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!mF(c,a)};H.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!nF(c,a)};
  1704. H.prototype.isNull=function(){return!!oF(this.g)};H.prototype.__destroy__=function(){pF(this.g)};function J(){this.g=qF();n$(J)[this.g]=this}J.prototype=Object.create(B.prototype);J.prototype.constructor=J;J.prototype.h=J;J.i={};b.MdDbCircle=J;J.prototype.center=function(){return k(rF(this.g),z)};J.prototype.setCenter=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sF(c,a)};J.prototype.radius=function(){return tF(this.g)};
  1705. J.prototype.setRadius=J.prototype.setRadius=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uF(c,a)};J.prototype.getStartParam=function(){return vF(this.g)};J.prototype.getEndParam=function(){return wF(this.g)};J.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return xF(c,a)};J.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return yF(c,a)};
  1706. J.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return zF(c,a)};J.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(AF(c,a),z)};J.prototype.getStartPoint=function(){return k(BF(this.g),z)};J.prototype.getEndPoint=function(){return k(CF(this.g),z)};J.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(DF(c,a),z)};
  1707. J.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return EF(c,a)};J.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(FF(c,a),A)};J.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(GF(c,a),A)};J.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(HF(d,a,c),z)};
  1708. J.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(IF(d,a,c),x$)};J.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(JF(c,a),x$)};J.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(KF(c,a),y)};J.prototype.getLength=function(){return LF(this.g)};J.prototype.explode=function(){return k(MF(this.g),y)};
  1709. J.prototype.TrueColor=function(){return k(NF(this.g),v$)};J.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OF(c,a)};J.prototype.ColorIndex=function(){return PF(this.g)};J.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!QF(c,a)};J.prototype.Layer=function(){return g(RF(this.g))};J.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!SF(c,a)};J.prototype.LinetypeScale=function(){return TF(this.g)};
  1710. J.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UF(c,a)};J.prototype.Visible=function(){return!!VF(this.g)};J.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WF(c,a)};J.prototype.Lineweight=function(){return XF(this.g)};J.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YF(c,a)};J.prototype.TextStyle=function(){return g(ZF(this.g))};
  1711. J.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!$F(c,a)};J.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aG(c,a)};J.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bG(d,a,c)};J.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!cG(d,a,c)};
  1712. J.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!dG(d,a,c)};J.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!eG(d,a,c)};J.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fG(c,a)};J.prototype.GetBoundingBox=function(){return k(gG(this.g),y)};
  1713. J.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(hG(c,a),y)};J.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!iG(c,a)};J.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(jG(d,a,c))};
  1714. J.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!kG(e,a,c,d)};J.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return lG(d,a,c)};J.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!mG(e,a,c,d)};
  1715. J.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return nG(d,a,c)};J.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!oG(e,a,c,d)};J.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(pG(d,a,c),z)};
  1716. J.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!qG(e,a,c,d)};J.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!rG(c,a)};J.prototype.GetAllAppName=function(){return k(sG(this.g),w$)};J.prototype.LayerId=function(){return tG(this.g)};J.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uG(c,a)};
  1717. J.prototype.LinetypeId=function(){return vG(this.g)};J.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wG(c,a)};J.prototype.Linetype=function(){return g(xG(this.g))};J.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!yG(c,a)};J.prototype.TextStyleId=function(){return zG(this.g)};J.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!AG(c,a)};
  1718. J.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(BG(d,a,c),w)};J.prototype.getArea=function(){return CG(this.g)};J.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DG(c,a)};J.prototype.isPropertiesWindowCustom=function(){return!!EG(this.g)};J.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FG(c,a)};
  1719. J.prototype.updateDisplay=function(){return!!GG(this.g)};J.prototype.DrawOrder=function(){return HG(this.g)};J.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!IG(c,a)};J.prototype.normal=function(){return k(JG(this.g),A)};J.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KG(c,a)};J.prototype.GetObjectID=function(){return LG(this.g)};J.prototype.Erase=function(){return!!MG(this.g)};J.prototype.isErased=function(){return!!NG(this.g)};
  1720. J.prototype.unErase=function(){return!!OG(this.g)};J.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PG(c,a)};J.prototype.GetExtensionDictionary=function(){return k(QG(this.g),u)};J.prototype.CreateExtensionDictionary=function(){return!!RG(this.g)};J.prototype.IsHaveExtensionDictionary=function(){return!!SG(this.g)};J.prototype.Clone=function(){return k(TG(this.g),t)};J.prototype.GetHandle=function(){return g(UG(this.g))};
  1721. J.prototype.GetDatabase=function(){return k(VG(this.g),v)};J.prototype.GetDatabaseIndexId=function(){return WG(this.g)};J.prototype.GetOwnerID=function(){return XG(this.g)};J.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YG(c,a)};J.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!ZG(f,a,c,d,e)};
  1722. J.prototype.getGripPoints=function(){return k($G(this.g),w)};J.prototype.getObjectName=function(){return g(aH(this.g))};J.prototype.getDxf0=function(){return g(bH(this.g))};J.prototype.getCustomEntityTypeName=function(){return g(cH(this.g))};J.prototype.getCustomEntityid=function(){return dH(this.g)};J.prototype.getCustomEntityTempid=function(){return eH(this.g)};J.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fH(c,a)};J.prototype.getJson=function(){return g(gH(this.g))};
  1723. J.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hH(c,a)};J.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!iH(c,a)};J.prototype.isNull=function(){return!!jH(this.g)};J.prototype.__destroy__=function(){kH(this.g)};function K(){this.g=lH();n$(K)[this.g]=this}K.prototype=Object.create(B.prototype);K.prototype.constructor=K;K.prototype.h=K;K.i={};b.MdDbArc=K;K.prototype.center=function(){return k(mH(this.g),z)};
  1724. K.prototype.setCenter=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nH(c,a)};K.prototype.radius=function(){return oH(this.g)};K.prototype.setRadius=K.prototype.setRadius=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pH(c,a)};K.prototype.startAngle=function(){return qH(this.g)};K.prototype.setStartAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rH(c,a)};K.prototype.endAngle=function(){return sH(this.g)};
  1725. K.prototype.setEndAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tH(c,a)};K.prototype.computeArc=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return!!uH(n,a,c,d,e,f,l)};K.prototype.getStartParam=function(){return vH(this.g)};K.prototype.getEndParam=function(){return wH(this.g)};
  1726. K.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return xH(c,a)};K.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return yH(c,a)};K.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return zH(c,a)};K.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(AH(c,a),z)};K.prototype.getStartPoint=function(){return k(BH(this.g),z)};
  1727. K.prototype.getEndPoint=function(){return k(CH(this.g),z)};K.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(DH(c,a),z)};K.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return EH(c,a)};K.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(FH(c,a),A)};K.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(GH(c,a),A)};
  1728. K.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(HH(d,a,c),z)};K.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(IH(d,a,c),x$)};K.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(JH(c,a),x$)};K.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(KH(c,a),y)};
  1729. K.prototype.getLength=function(){return LH(this.g)};K.prototype.explode=function(){return k(MH(this.g),y)};K.prototype.TrueColor=function(){return k(NH(this.g),v$)};K.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OH(c,a)};K.prototype.ColorIndex=function(){return PH(this.g)};K.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!QH(c,a)};K.prototype.Layer=function(){return g(RH(this.g))};
  1730. K.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!SH(c,a)};K.prototype.LinetypeScale=function(){return TH(this.g)};K.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UH(c,a)};K.prototype.Visible=function(){return!!VH(this.g)};K.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WH(c,a)};K.prototype.Lineweight=function(){return XH(this.g)};
  1731. K.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YH(c,a)};K.prototype.TextStyle=function(){return g(ZH(this.g))};K.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!$H(c,a)};K.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aI(c,a)};K.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bI(d,a,c)};
  1732. K.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!cI(d,a,c)};K.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!dI(d,a,c)};K.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!eI(d,a,c)};K.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fI(c,a)};
  1733. K.prototype.GetBoundingBox=function(){return k(gI(this.g),y)};K.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(hI(c,a),y)};K.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!iI(c,a)};K.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(jI(d,a,c))};
  1734. K.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!kI(e,a,c,d)};K.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return lI(d,a,c)};K.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!mI(e,a,c,d)};
  1735. K.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return nI(d,a,c)};K.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!oI(e,a,c,d)};K.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(pI(d,a,c),z)};
  1736. K.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!qI(e,a,c,d)};K.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!rI(c,a)};K.prototype.GetAllAppName=function(){return k(sI(this.g),w$)};K.prototype.LayerId=function(){return tI(this.g)};K.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uI(c,a)};
  1737. K.prototype.LinetypeId=function(){return vI(this.g)};K.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wI(c,a)};K.prototype.Linetype=function(){return g(xI(this.g))};K.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!yI(c,a)};K.prototype.TextStyleId=function(){return zI(this.g)};K.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!AI(c,a)};
  1738. K.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(BI(d,a,c),w)};K.prototype.getArea=function(){return CI(this.g)};K.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DI(c,a)};K.prototype.isPropertiesWindowCustom=function(){return!!EI(this.g)};K.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FI(c,a)};
  1739. K.prototype.updateDisplay=function(){return!!GI(this.g)};K.prototype.DrawOrder=function(){return HI(this.g)};K.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!II(c,a)};K.prototype.normal=function(){return k(JI(this.g),A)};K.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KI(c,a)};K.prototype.GetObjectID=function(){return LI(this.g)};K.prototype.Erase=function(){return!!MI(this.g)};K.prototype.isErased=function(){return!!NI(this.g)};
  1740. K.prototype.unErase=function(){return!!OI(this.g)};K.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PI(c,a)};K.prototype.GetExtensionDictionary=function(){return k(QI(this.g),u)};K.prototype.CreateExtensionDictionary=function(){return!!RI(this.g)};K.prototype.IsHaveExtensionDictionary=function(){return!!SI(this.g)};K.prototype.Clone=function(){return k(TI(this.g),t)};K.prototype.GetHandle=function(){return g(UI(this.g))};
  1741. K.prototype.GetDatabase=function(){return k(VI(this.g),v)};K.prototype.GetDatabaseIndexId=function(){return WI(this.g)};K.prototype.GetOwnerID=function(){return XI(this.g)};K.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YI(c,a)};K.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!ZI(f,a,c,d,e)};
  1742. K.prototype.getGripPoints=function(){return k($I(this.g),w)};K.prototype.getObjectName=function(){return g(aJ(this.g))};K.prototype.getDxf0=function(){return g(bJ(this.g))};K.prototype.getCustomEntityTypeName=function(){return g(cJ(this.g))};K.prototype.getCustomEntityid=function(){return dJ(this.g)};K.prototype.getCustomEntityTempid=function(){return eJ(this.g)};K.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fJ(c,a)};K.prototype.getJson=function(){return g(gJ(this.g))};
  1743. K.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hJ(c,a)};K.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!iJ(c,a)};K.prototype.isNull=function(){return!!jJ(this.g)};K.prototype.__destroy__=function(){kJ(this.g)};function I(){this.g=lJ();n$(I)[this.g]=this}I.prototype=Object.create(B.prototype);I.prototype.constructor=I;I.prototype.h=I;I.i={};b.MdDbPolyline=I;
  1744. I.prototype.setClosed=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mJ(c,a)};I.prototype.setConstantWidth=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nJ(c,a)};I.prototype.isClosed=function(){return!!oJ(this.g)};I.prototype.getConstantWidth=function(){return pJ(this.g)};
  1745. I.prototype.addVertexAt=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return!!qJ(l,a,c,d,e,f)};I.prototype.removeVertexAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rJ(c,a)};I.prototype.numVerts=function(){return sJ(this.g)};I.prototype.getPointAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(tJ(c,a),z)};
  1746. I.prototype.getBulgeAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return uJ(c,a)};I.prototype.getStartWidthsAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return vJ(c,a)};I.prototype.getEndWidthsAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return wJ(c,a)};I.prototype.setWidthsAt=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!xJ(e,a,c,d)};
  1747. I.prototype.setPointAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!yJ(d,a,c)};I.prototype.setBulgeAt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!zJ(d,a,c)};I.prototype.getType=I.prototype.getType=function(){return AJ(this.g)};I.prototype.setType=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BJ(c,a)};I.prototype.getStartParam=function(){return CJ(this.g)};
  1748. I.prototype.getEndParam=function(){return DJ(this.g)};I.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return EJ(c,a)};I.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return FJ(c,a)};I.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return GJ(c,a)};I.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(HJ(c,a),z)};
  1749. I.prototype.getStartPoint=function(){return k(IJ(this.g),z)};I.prototype.getEndPoint=function(){return k(JJ(this.g),z)};I.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(KJ(c,a),z)};I.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return LJ(c,a)};I.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(MJ(c,a),A)};
  1750. I.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(NJ(c,a),A)};I.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(OJ(d,a,c),z)};I.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(PJ(d,a,c),x$)};I.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(QJ(c,a),x$)};
  1751. I.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(RJ(c,a),y)};I.prototype.getLength=function(){return SJ(this.g)};I.prototype.explode=function(){return k(TJ(this.g),y)};I.prototype.TrueColor=function(){return k(UJ(this.g),v$)};I.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VJ(c,a)};I.prototype.ColorIndex=function(){return WJ(this.g)};
  1752. I.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XJ(c,a)};I.prototype.Layer=function(){return g(YJ(this.g))};I.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ZJ(c,a)};I.prototype.LinetypeScale=function(){return $J(this.g)};I.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aK(c,a)};I.prototype.Visible=function(){return!!bK(this.g)};
  1753. I.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cK(c,a)};I.prototype.Lineweight=function(){return dK(this.g)};I.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eK(c,a)};I.prototype.TextStyle=function(){return g(fK(this.g))};I.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!gK(c,a)};
  1754. I.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hK(c,a)};I.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!iK(d,a,c)};I.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!jK(d,a,c)};I.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!kK(d,a,c)};
  1755. I.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!lK(d,a,c)};I.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mK(c,a)};I.prototype.GetBoundingBox=function(){return k(nK(this.g),y)};I.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(oK(c,a),y)};I.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pK(c,a)};
  1756. I.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(qK(d,a,c))};I.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!rK(e,a,c,d)};I.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return sK(d,a,c)};
  1757. I.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!tK(e,a,c,d)};I.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return uK(d,a,c)};I.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!vK(e,a,c,d)};
  1758. I.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(wK(d,a,c),z)};I.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!xK(e,a,c,d)};I.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!yK(c,a)};I.prototype.GetAllAppName=function(){return k(zK(this.g),w$)};
  1759. I.prototype.LayerId=function(){return AK(this.g)};I.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BK(c,a)};I.prototype.LinetypeId=function(){return CK(this.g)};I.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DK(c,a)};I.prototype.Linetype=function(){return g(EK(this.g))};I.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!FK(c,a)};I.prototype.TextStyleId=function(){return GK(this.g)};
  1760. I.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HK(c,a)};I.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(IK(d,a,c),w)};I.prototype.getArea=function(){return JK(this.g)};I.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KK(c,a)};I.prototype.isPropertiesWindowCustom=function(){return!!LK(this.g)};
  1761. I.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!MK(c,a)};I.prototype.updateDisplay=function(){return!!NK(this.g)};I.prototype.DrawOrder=function(){return OK(this.g)};I.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PK(c,a)};I.prototype.normal=function(){return k(QK(this.g),A)};I.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RK(c,a)};I.prototype.GetObjectID=function(){return SK(this.g)};
  1762. I.prototype.Erase=function(){return!!TK(this.g)};I.prototype.isErased=function(){return!!UK(this.g)};I.prototype.unErase=function(){return!!VK(this.g)};I.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WK(c,a)};I.prototype.GetExtensionDictionary=function(){return k(XK(this.g),u)};I.prototype.CreateExtensionDictionary=function(){return!!YK(this.g)};I.prototype.IsHaveExtensionDictionary=function(){return!!ZK(this.g)};
  1763. I.prototype.Clone=function(){return k($K(this.g),t)};I.prototype.GetHandle=function(){return g(aL(this.g))};I.prototype.GetDatabase=function(){return k(bL(this.g),v)};I.prototype.GetDatabaseIndexId=function(){return cL(this.g)};I.prototype.GetOwnerID=function(){return dL(this.g)};I.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eL(c,a)};
  1764. I.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!fL(f,a,c,d,e)};I.prototype.getGripPoints=function(){return k(gL(this.g),w)};I.prototype.getObjectName=function(){return g(hL(this.g))};I.prototype.getDxf0=function(){return g(iL(this.g))};I.prototype.getCustomEntityTypeName=function(){return g(jL(this.g))};I.prototype.getCustomEntityid=function(){return kL(this.g)};
  1765. I.prototype.getCustomEntityTempid=function(){return lL(this.g)};I.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mL(c,a)};I.prototype.getJson=function(){return g(nL(this.g))};I.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!oL(c,a)};I.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!pL(c,a)};I.prototype.isNull=function(){return!!qL(this.g)};I.prototype.__destroy__=function(){rL(this.g)};
  1766. function L(){this.g=sL();n$(L)[this.g]=this}L.prototype=Object.create(x.prototype);L.prototype.constructor=L;L.prototype.h=L;L.i={};b.MdDbBlockReference=L;L.prototype.blockTableRecordId=function(){return tL(this.g)};L.prototype.setBlockTableRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uL(c,a)};L.prototype.position=L.prototype.position=function(){return k(vL(this.g),z)};
  1767. L.prototype.setPosition=L.prototype.setPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wL(c,a)};L.prototype.scaleFactors=function(){return k(xL(this.g),z)};L.prototype.setScaleFactors=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yL(c,a)};L.prototype.rotation=L.prototype.rotation=function(){return zL(this.g)};L.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!AL(c,a)};
  1768. L.prototype.blockTransform=function(){return k(BL(this.g),L$)};L.prototype.setBlockTransform=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!CL(c,a)};L.prototype.getBlockName=function(){return g(DL(this.g))};L.prototype.appendAttribute=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return EL(c,a)};L.prototype.createAttribute=L.prototype.createAttribute=function(){return!!FL(this.g)};L.prototype.getAllAttribute=function(){return k(GL(this.g),J$)};
  1769. L.prototype.getSpatialFilterId=function(){return HL(this.g)};L.prototype.createSpatialFilter=function(){return!!IL(this.g)};L.prototype.clearSpatialFilterCache=function(){return!!JL(this.g)};L.prototype.explode=function(){return k(KL(this.g),y)};L.prototype.TrueColor=function(){return k(LL(this.g),v$)};L.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ML(c,a)};L.prototype.ColorIndex=function(){return NL(this.g)};
  1770. L.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OL(c,a)};L.prototype.Layer=function(){return g(PL(this.g))};L.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!QL(c,a)};L.prototype.LinetypeScale=function(){return RL(this.g)};L.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!SL(c,a)};L.prototype.Visible=function(){return!!TL(this.g)};
  1771. L.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UL(c,a)};L.prototype.Lineweight=function(){return VL(this.g)};L.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WL(c,a)};L.prototype.TextStyle=function(){return g(XL(this.g))};L.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!YL(c,a)};
  1772. L.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZL(c,a)};L.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!$L(d,a,c)};L.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!aM(d,a,c)};L.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bM(d,a,c)};
  1773. L.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!cM(d,a,c)};L.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dM(c,a)};L.prototype.GetBoundingBox=function(){return k(eM(this.g),y)};L.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(fM(c,a),y)};L.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!gM(c,a)};
  1774. L.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(hM(d,a,c))};L.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!iM(e,a,c,d)};L.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return jM(d,a,c)};
  1775. L.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!kM(e,a,c,d)};L.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return lM(d,a,c)};L.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!mM(e,a,c,d)};
  1776. L.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(nM(d,a,c),z)};L.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!oM(e,a,c,d)};L.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!pM(c,a)};L.prototype.GetAllAppName=function(){return k(qM(this.g),w$)};
  1777. L.prototype.LayerId=function(){return rM(this.g)};L.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sM(c,a)};L.prototype.LinetypeId=function(){return tM(this.g)};L.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uM(c,a)};L.prototype.Linetype=function(){return g(vM(this.g))};L.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!wM(c,a)};L.prototype.TextStyleId=function(){return xM(this.g)};
  1778. L.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yM(c,a)};L.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(zM(d,a,c),w)};L.prototype.getArea=function(){return AM(this.g)};L.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BM(c,a)};L.prototype.isPropertiesWindowCustom=function(){return!!CM(this.g)};
  1779. L.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DM(c,a)};L.prototype.updateDisplay=function(){return!!EM(this.g)};L.prototype.DrawOrder=function(){return FM(this.g)};L.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!GM(c,a)};L.prototype.normal=function(){return k(HM(this.g),A)};L.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!IM(c,a)};L.prototype.GetObjectID=function(){return JM(this.g)};
  1780. L.prototype.Erase=function(){return!!KM(this.g)};L.prototype.isErased=function(){return!!LM(this.g)};L.prototype.unErase=function(){return!!MM(this.g)};L.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NM(c,a)};L.prototype.GetExtensionDictionary=function(){return k(OM(this.g),u)};L.prototype.CreateExtensionDictionary=function(){return!!PM(this.g)};L.prototype.IsHaveExtensionDictionary=function(){return!!QM(this.g)};
  1781. L.prototype.Clone=function(){return k(RM(this.g),t)};L.prototype.GetHandle=function(){return g(SM(this.g))};L.prototype.GetDatabase=function(){return k(TM(this.g),v)};L.prototype.GetDatabaseIndexId=function(){return UM(this.g)};L.prototype.GetOwnerID=function(){return VM(this.g)};L.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WM(c,a)};
  1782. L.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!XM(f,a,c,d,e)};L.prototype.getGripPoints=function(){return k(YM(this.g),w)};L.prototype.getObjectName=function(){return g(ZM(this.g))};L.prototype.getDxf0=function(){return g($M(this.g))};L.prototype.getCustomEntityTypeName=function(){return g(aN(this.g))};L.prototype.getCustomEntityid=function(){return bN(this.g)};
  1783. L.prototype.getCustomEntityTempid=function(){return cN(this.g)};L.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dN(c,a)};L.prototype.getJson=function(){return g(eN(this.g))};L.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!fN(c,a)};L.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!gN(c,a)};L.prototype.isNull=function(){return!!hN(this.g)};L.prototype.__destroy__=function(){iN(this.g)};
  1784. function A$(){this.g=jN();n$(A$)[this.g]=this}A$.prototype=Object.create(t.prototype);A$.prototype.constructor=A$;A$.prototype.h=A$;A$.i={};b.MdDbSpatialFilter=A$;A$.prototype.boundary=function(){return k(kN(this.g),w)};A$.prototype.setBoundary=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lN(c,a)};A$.prototype.isFilterInverted=function(){return!!mN(this.g)};A$.prototype.setFilterInverted=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nN(c,a)};
  1785. A$.prototype.isEnabled=A$.prototype.isEnabled=function(){return!!oN(this.g)};A$.prototype.setEnable=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pN(c,a)};A$.prototype.GetObjectID=function(){return qN(this.g)};A$.prototype.Erase=function(){return!!rN(this.g)};A$.prototype.isErased=function(){return!!sN(this.g)};A$.prototype.unErase=function(){return!!tN(this.g)};A$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uN(c,a)};
  1786. A$.prototype.GetExtensionDictionary=function(){return k(vN(this.g),u)};A$.prototype.CreateExtensionDictionary=function(){return!!wN(this.g)};A$.prototype.IsHaveExtensionDictionary=function(){return!!xN(this.g)};A$.prototype.Clone=function(){return k(yN(this.g),t)};A$.prototype.GetHandle=function(){return g(zN(this.g))};A$.prototype.GetDatabase=function(){return k(AN(this.g),v)};A$.prototype.GetDatabaseIndexId=function(){return BN(this.g)};A$.prototype.GetOwnerID=function(){return CN(this.g)};
  1787. A$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DN(c,a)};A$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!EN(f,a,c,d,e)};A$.prototype.getGripPoints=function(){return k(FN(this.g),w)};A$.prototype.getObjectName=function(){return g(GN(this.g))};A$.prototype.getDxf0=function(){return g(HN(this.g))};
  1788. A$.prototype.getCustomEntityTypeName=function(){return g(IN(this.g))};A$.prototype.getCustomEntityid=function(){return JN(this.g)};A$.prototype.getCustomEntityTempid=function(){return KN(this.g)};A$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!LN(c,a)};A$.prototype.getJson=function(){return g(MN(this.g))};A$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!NN(c,a)};
  1789. A$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ON(c,a)};A$.prototype.isNull=function(){return!!PN(this.g)};A$.prototype.__destroy__=function(){QN(this.g)};function M(){this.g=RN();n$(M)[this.g]=this}M.prototype=Object.create(D.prototype);M.prototype.constructor=M;M.prototype.h=M;M.i={};b.MdDbAlignedDimension=M;M.prototype.xLine1Point=function(){return k(SN(this.g),z)};
  1790. M.prototype.setXLine1Point=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TN(c,a)};M.prototype.xLine2Point=function(){return k(UN(this.g),z)};M.prototype.setXLine2Point=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VN(c,a)};M.prototype.dimLinePoint=function(){return k(WN(this.g),z)};M.prototype.setDimLinePoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XN(c,a)};M.prototype.oblique=function(){return YN(this.g)};
  1791. M.prototype.setOblique=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZN(c,a)};M.prototype.textPosition=function(){return k($N(this.g),z)};M.prototype.setTextPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aO(c,a)};M.prototype.isUsingDefaultTextPosition=function(){return!!bO(this.g)};M.prototype.useSetTextPosition=function(){return!!cO(this.g)};M.prototype.useDefaultTextPosition=function(){return!!dO(this.g)};
  1792. M.prototype.elevation=M.prototype.elevation=function(){return eO(this.g)};M.prototype.setElevation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fO(c,a)};M.prototype.dimensionText=function(){return g(gO(this.g))};M.prototype.setDimensionText=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hO(c,a)};M.prototype.textRotation=function(){return iO(this.g)};M.prototype.setTextRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jO(c,a)};
  1793. M.prototype.dimensionStyle=function(){return kO(this.g)};M.prototype.setDimensionStyle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lO(c,a)};M.prototype.textAttachment=function(){return mO(this.g)};M.prototype.setTextAttachment=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nO(c,a)};M.prototype.horizontalRotation=function(){return oO(this.g)};M.prototype.setHorizontalRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pO(c,a)};
  1794. M.prototype.recomputeDimBlock=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qO(c,a)};M.prototype.GetDimVarInt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return rO(c,a)};M.prototype.SetDimVarInt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!sO(d,a,c)};M.prototype.GetDimVarDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return tO(c,a)};
  1795. M.prototype.SetDimVarDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!uO(d,a,c)};M.prototype.GetDimVarString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(vO(c,a))};M.prototype.SetDimVarString=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!wO(d,a,c)};M.prototype.GetDimVarObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return xO(c,a)};
  1796. M.prototype.SetDimVarObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!yO(d,a,c)};M.prototype.GetAllText=function(){return k(zO(this.g),w$)};M.prototype.explode=function(){return k(AO(this.g),y)};M.prototype.TrueColor=function(){return k(BO(this.g),v$)};M.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!CO(c,a)};M.prototype.ColorIndex=function(){return DO(this.g)};
  1797. M.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!EO(c,a)};M.prototype.Layer=function(){return g(FO(this.g))};M.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!GO(c,a)};M.prototype.LinetypeScale=function(){return HO(this.g)};M.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!IO(c,a)};M.prototype.Visible=function(){return!!JO(this.g)};
  1798. M.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!KO(c,a)};M.prototype.Lineweight=function(){return LO(this.g)};M.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!MO(c,a)};M.prototype.TextStyle=function(){return g(NO(this.g))};M.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!OO(c,a)};
  1799. M.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PO(c,a)};M.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!QO(d,a,c)};M.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!RO(d,a,c)};M.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!SO(d,a,c)};
  1800. M.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!TO(d,a,c)};M.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UO(c,a)};M.prototype.GetBoundingBox=function(){return k(VO(this.g),y)};M.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(WO(c,a),y)};M.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XO(c,a)};
  1801. M.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(YO(d,a,c))};M.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!ZO(e,a,c,d)};M.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return $O(d,a,c)};
  1802. M.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!aP(e,a,c,d)};M.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return bP(d,a,c)};M.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!cP(e,a,c,d)};
  1803. M.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(dP(d,a,c),z)};M.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!eP(e,a,c,d)};M.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!fP(c,a)};M.prototype.GetAllAppName=function(){return k(gP(this.g),w$)};
  1804. M.prototype.LayerId=function(){return hP(this.g)};M.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!iP(c,a)};M.prototype.LinetypeId=function(){return jP(this.g)};M.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kP(c,a)};M.prototype.Linetype=function(){return g(lP(this.g))};M.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!mP(c,a)};M.prototype.TextStyleId=function(){return nP(this.g)};
  1805. M.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oP(c,a)};M.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(pP(d,a,c),w)};M.prototype.getArea=function(){return qP(this.g)};M.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rP(c,a)};M.prototype.isPropertiesWindowCustom=function(){return!!sP(this.g)};
  1806. M.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tP(c,a)};M.prototype.updateDisplay=function(){return!!uP(this.g)};M.prototype.DrawOrder=function(){return vP(this.g)};M.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wP(c,a)};M.prototype.normal=function(){return k(xP(this.g),A)};M.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yP(c,a)};M.prototype.GetObjectID=function(){return zP(this.g)};
  1807. M.prototype.Erase=function(){return!!AP(this.g)};M.prototype.isErased=function(){return!!BP(this.g)};M.prototype.unErase=function(){return!!CP(this.g)};M.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DP(c,a)};M.prototype.GetExtensionDictionary=function(){return k(EP(this.g),u)};M.prototype.CreateExtensionDictionary=function(){return!!FP(this.g)};M.prototype.IsHaveExtensionDictionary=function(){return!!GP(this.g)};
  1808. M.prototype.Clone=function(){return k(HP(this.g),t)};M.prototype.GetHandle=function(){return g(IP(this.g))};M.prototype.GetDatabase=function(){return k(JP(this.g),v)};M.prototype.GetDatabaseIndexId=function(){return KP(this.g)};M.prototype.GetOwnerID=function(){return LP(this.g)};M.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!MP(c,a)};
  1809. M.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!NP(f,a,c,d,e)};M.prototype.getGripPoints=function(){return k(OP(this.g),w)};M.prototype.getObjectName=function(){return g(PP(this.g))};M.prototype.getDxf0=function(){return g(QP(this.g))};M.prototype.getCustomEntityTypeName=function(){return g(RP(this.g))};M.prototype.getCustomEntityid=function(){return SP(this.g)};
  1810. M.prototype.getCustomEntityTempid=function(){return TP(this.g)};M.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UP(c,a)};M.prototype.getJson=function(){return g(VP(this.g))};M.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!WP(c,a)};M.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!XP(c,a)};M.prototype.isNull=function(){return!!YP(this.g)};M.prototype.__destroy__=function(){ZP(this.g)};
  1811. function N(){this.g=$P();n$(N)[this.g]=this}N.prototype=Object.create(D.prototype);N.prototype.constructor=N;N.prototype.h=N;N.i={};b.MdDbRotatedDimension=N;N.prototype.xLine1Point=function(){return k(aQ(this.g),z)};N.prototype.setXLine1Point=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!bQ(c,a)};N.prototype.xLine2Point=function(){return k(cQ(this.g),z)};N.prototype.setXLine2Point=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!dQ(c,a)};
  1812. N.prototype.dimLinePoint=function(){return k(eQ(this.g),z)};N.prototype.setDimLinePoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fQ(c,a)};N.prototype.rotation=N.prototype.rotation=function(){return gQ(this.g)};N.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hQ(c,a)};N.prototype.oblique=function(){return iQ(this.g)};N.prototype.setOblique=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jQ(c,a)};
  1813. N.prototype.textPosition=function(){return k(kQ(this.g),z)};N.prototype.setTextPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lQ(c,a)};N.prototype.isUsingDefaultTextPosition=function(){return!!mQ(this.g)};N.prototype.useSetTextPosition=function(){return!!nQ(this.g)};N.prototype.useDefaultTextPosition=function(){return!!oQ(this.g)};N.prototype.elevation=N.prototype.elevation=function(){return pQ(this.g)};
  1814. N.prototype.setElevation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qQ(c,a)};N.prototype.dimensionText=function(){return g(rQ(this.g))};N.prototype.setDimensionText=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!sQ(c,a)};N.prototype.textRotation=function(){return tQ(this.g)};N.prototype.setTextRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uQ(c,a)};N.prototype.dimensionStyle=function(){return vQ(this.g)};
  1815. N.prototype.setDimensionStyle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wQ(c,a)};N.prototype.textAttachment=function(){return xQ(this.g)};N.prototype.setTextAttachment=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yQ(c,a)};N.prototype.horizontalRotation=function(){return zQ(this.g)};N.prototype.setHorizontalRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!AQ(c,a)};
  1816. N.prototype.recomputeDimBlock=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BQ(c,a)};N.prototype.GetDimVarInt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return CQ(c,a)};N.prototype.SetDimVarInt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!DQ(d,a,c)};N.prototype.GetDimVarDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return EQ(c,a)};
  1817. N.prototype.SetDimVarDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!FQ(d,a,c)};N.prototype.GetDimVarString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(GQ(c,a))};N.prototype.SetDimVarString=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!HQ(d,a,c)};N.prototype.GetDimVarObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return IQ(c,a)};
  1818. N.prototype.SetDimVarObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!JQ(d,a,c)};N.prototype.GetAllText=function(){return k(KQ(this.g),w$)};N.prototype.explode=function(){return k(LQ(this.g),y)};N.prototype.TrueColor=function(){return k(MQ(this.g),v$)};N.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NQ(c,a)};N.prototype.ColorIndex=function(){return OQ(this.g)};
  1819. N.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PQ(c,a)};N.prototype.Layer=function(){return g(QQ(this.g))};N.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!RQ(c,a)};N.prototype.LinetypeScale=function(){return SQ(this.g)};N.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TQ(c,a)};N.prototype.Visible=function(){return!!UQ(this.g)};
  1820. N.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VQ(c,a)};N.prototype.Lineweight=function(){return WQ(this.g)};N.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XQ(c,a)};N.prototype.TextStyle=function(){return g(YQ(this.g))};N.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ZQ(c,a)};
  1821. N.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$Q(c,a)};N.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!aR(d,a,c)};N.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bR(d,a,c)};N.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!cR(d,a,c)};
  1822. N.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!dR(d,a,c)};N.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eR(c,a)};N.prototype.GetBoundingBox=function(){return k(fR(this.g),y)};N.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(gR(c,a),y)};N.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hR(c,a)};
  1823. N.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(iR(d,a,c))};N.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!jR(e,a,c,d)};N.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return kR(d,a,c)};
  1824. N.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!lR(e,a,c,d)};N.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return mR(d,a,c)};N.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!nR(e,a,c,d)};
  1825. N.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(oR(d,a,c),z)};N.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!pR(e,a,c,d)};N.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!qR(c,a)};N.prototype.GetAllAppName=function(){return k(rR(this.g),w$)};
  1826. N.prototype.LayerId=function(){return sR(this.g)};N.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tR(c,a)};N.prototype.LinetypeId=function(){return uR(this.g)};N.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vR(c,a)};N.prototype.Linetype=function(){return g(wR(this.g))};N.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!xR(c,a)};N.prototype.TextStyleId=function(){return yR(this.g)};
  1827. N.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zR(c,a)};N.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(AR(d,a,c),w)};N.prototype.getArea=function(){return BR(this.g)};N.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!CR(c,a)};N.prototype.isPropertiesWindowCustom=function(){return!!DR(this.g)};
  1828. N.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ER(c,a)};N.prototype.updateDisplay=function(){return!!FR(this.g)};N.prototype.DrawOrder=function(){return GR(this.g)};N.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HR(c,a)};N.prototype.normal=function(){return k(IR(this.g),A)};N.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JR(c,a)};N.prototype.GetObjectID=function(){return KR(this.g)};
  1829. N.prototype.Erase=function(){return!!LR(this.g)};N.prototype.isErased=function(){return!!MR(this.g)};N.prototype.unErase=function(){return!!NR(this.g)};N.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OR(c,a)};N.prototype.GetExtensionDictionary=function(){return k(PR(this.g),u)};N.prototype.CreateExtensionDictionary=function(){return!!QR(this.g)};N.prototype.IsHaveExtensionDictionary=function(){return!!RR(this.g)};
  1830. N.prototype.Clone=function(){return k(SR(this.g),t)};N.prototype.GetHandle=function(){return g(TR(this.g))};N.prototype.GetDatabase=function(){return k(UR(this.g),v)};N.prototype.GetDatabaseIndexId=function(){return VR(this.g)};N.prototype.GetOwnerID=function(){return WR(this.g)};N.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YR(c,a)};
  1831. N.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!ZR(f,a,c,d,e)};N.prototype.getGripPoints=function(){return k($R(this.g),w)};N.prototype.getObjectName=function(){return g(aS(this.g))};N.prototype.getDxf0=function(){return g(bS(this.g))};N.prototype.getCustomEntityTypeName=function(){return g(cS(this.g))};N.prototype.getCustomEntityid=function(){return dS(this.g)};
  1832. N.prototype.getCustomEntityTempid=function(){return eS(this.g)};N.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fS(c,a)};N.prototype.getJson=function(){return g(gS(this.g))};N.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hS(c,a)};N.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!iS(c,a)};N.prototype.isNull=function(){return!!jS(this.g)};N.prototype.__destroy__=function(){kS(this.g)};
  1833. function P(){this.g=lS();n$(P)[this.g]=this}P.prototype=Object.create(D.prototype);P.prototype.constructor=P;P.prototype.h=P;P.i={};b.MdDb2LineAngularDimension=P;P.prototype.arcPoint=function(){return k(mS(this.g),z)};P.prototype.setArcPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nS(c,a)};P.prototype.xLine1Start=function(){return k(oS(this.g),z)};P.prototype.setXLine1Start=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pS(c,a)};
  1834. P.prototype.xLine1End=function(){return k(qS(this.g),z)};P.prototype.setXLine1End=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rS(c,a)};P.prototype.xLine2Start=function(){return k(sS(this.g),z)};P.prototype.setXLine2Start=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tS(c,a)};P.prototype.xLine2End=function(){return k(uS(this.g),z)};P.prototype.setXLine2End=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vS(c,a)};
  1835. P.prototype.compute=function(a,c,d,e,f,l,n,p){var R=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);n&&"object"===typeof n&&(n=n.g);p&&"object"===typeof p&&(p=p.g);return!!wS(R,a,c,d,e,f,l,n,p)};P.prototype.textPosition=function(){return k(xS(this.g),z)};
  1836. P.prototype.setTextPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yS(c,a)};P.prototype.isUsingDefaultTextPosition=function(){return!!zS(this.g)};P.prototype.useSetTextPosition=function(){return!!AS(this.g)};P.prototype.useDefaultTextPosition=function(){return!!BS(this.g)};P.prototype.elevation=P.prototype.elevation=function(){return CS(this.g)};P.prototype.setElevation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DS(c,a)};P.prototype.dimensionText=function(){return g(ES(this.g))};
  1837. P.prototype.setDimensionText=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!FS(c,a)};P.prototype.textRotation=function(){return GS(this.g)};P.prototype.setTextRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HS(c,a)};P.prototype.dimensionStyle=function(){return IS(this.g)};P.prototype.setDimensionStyle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JS(c,a)};P.prototype.textAttachment=function(){return KS(this.g)};
  1838. P.prototype.setTextAttachment=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!LS(c,a)};P.prototype.horizontalRotation=function(){return MS(this.g)};P.prototype.setHorizontalRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NS(c,a)};P.prototype.recomputeDimBlock=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OS(c,a)};P.prototype.GetDimVarInt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return PS(c,a)};
  1839. P.prototype.SetDimVarInt=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!QS(d,a,c)};P.prototype.GetDimVarDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return RS(c,a)};P.prototype.SetDimVarDouble=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!SS(d,a,c)};P.prototype.GetDimVarString=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return g(TS(c,a))};
  1840. P.prototype.SetDimVarString=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!US(d,a,c)};P.prototype.GetDimVarObjectId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return VS(c,a)};P.prototype.SetDimVarObjectId=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!WS(d,a,c)};P.prototype.GetAllText=function(){return k(XS(this.g),w$)};P.prototype.explode=function(){return k(YS(this.g),y)};
  1841. P.prototype.TrueColor=function(){return k(ZS(this.g),v$)};P.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$S(c,a)};P.prototype.ColorIndex=function(){return aT(this.g)};P.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!bT(c,a)};P.prototype.Layer=function(){return g(cT(this.g))};P.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!dT(c,a)};P.prototype.LinetypeScale=function(){return eT(this.g)};
  1842. P.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fT(c,a)};P.prototype.Visible=function(){return!!gT(this.g)};P.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hT(c,a)};P.prototype.Lineweight=function(){return iT(this.g)};P.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jT(c,a)};P.prototype.TextStyle=function(){return g(kT(this.g))};
  1843. P.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!lT(c,a)};P.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mT(c,a)};P.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!nT(d,a,c)};P.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!oT(d,a,c)};
  1844. P.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!pT(d,a,c)};P.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!qT(d,a,c)};P.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rT(c,a)};P.prototype.GetBoundingBox=function(){return k(sT(this.g),y)};
  1845. P.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(tT(c,a),y)};P.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uT(c,a)};P.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(vT(d,a,c))};
  1846. P.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!wT(e,a,c,d)};P.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return xT(d,a,c)};P.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!yT(e,a,c,d)};
  1847. P.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return zT(d,a,c)};P.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!AT(e,a,c,d)};P.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(BT(d,a,c),z)};
  1848. P.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!CT(e,a,c,d)};P.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!DT(c,a)};P.prototype.GetAllAppName=function(){return k(ET(this.g),w$)};P.prototype.LayerId=function(){return FT(this.g)};P.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!GT(c,a)};
  1849. P.prototype.LinetypeId=function(){return HT(this.g)};P.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!IT(c,a)};P.prototype.Linetype=function(){return g(JT(this.g))};P.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!KT(c,a)};P.prototype.TextStyleId=function(){return LT(this.g)};P.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!MT(c,a)};
  1850. P.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(NT(d,a,c),w)};P.prototype.getArea=function(){return OT(this.g)};P.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PT(c,a)};P.prototype.isPropertiesWindowCustom=function(){return!!QT(this.g)};P.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RT(c,a)};
  1851. P.prototype.updateDisplay=function(){return!!ST(this.g)};P.prototype.DrawOrder=function(){return TT(this.g)};P.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UT(c,a)};P.prototype.normal=function(){return k(VT(this.g),A)};P.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!WT(c,a)};P.prototype.GetObjectID=function(){return XT(this.g)};P.prototype.Erase=function(){return!!YT(this.g)};P.prototype.isErased=function(){return!!ZT(this.g)};
  1852. P.prototype.unErase=function(){return!!$T(this.g)};P.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aU(c,a)};P.prototype.GetExtensionDictionary=function(){return k(bU(this.g),u)};P.prototype.CreateExtensionDictionary=function(){return!!cU(this.g)};P.prototype.IsHaveExtensionDictionary=function(){return!!dU(this.g)};P.prototype.Clone=function(){return k(eU(this.g),t)};P.prototype.GetHandle=function(){return g(fU(this.g))};
  1853. P.prototype.GetDatabase=function(){return k(gU(this.g),v)};P.prototype.GetDatabaseIndexId=function(){return hU(this.g)};P.prototype.GetOwnerID=function(){return iU(this.g)};P.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jU(c,a)};P.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!kU(f,a,c,d,e)};
  1854. P.prototype.getGripPoints=function(){return k(lU(this.g),w)};P.prototype.getObjectName=function(){return g(mU(this.g))};P.prototype.getDxf0=function(){return g(nU(this.g))};P.prototype.getCustomEntityTypeName=function(){return g(oU(this.g))};P.prototype.getCustomEntityid=function(){return pU(this.g)};P.prototype.getCustomEntityTempid=function(){return qU(this.g)};P.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rU(c,a)};P.prototype.getJson=function(){return g(sU(this.g))};
  1855. P.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!tU(c,a)};P.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!uU(c,a)};P.prototype.isNull=function(){return!!vU(this.g)};P.prototype.__destroy__=function(){wU(this.g)};function Q(){this.g=xU();n$(Q)[this.g]=this}Q.prototype=Object.create(x.prototype);Q.prototype.constructor=Q;Q.prototype.h=Q;Q.i={};b.MdDbMText=Q;
  1856. Q.prototype.location=Q.prototype.location=function(){return k(yU(this.g),z)};Q.prototype.setLocation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zU(c,a)};Q.prototype.rotation=Q.prototype.rotation=function(){return AU(this.g)};Q.prototype.setRotation=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BU(c,a)};Q.prototype.width=Q.prototype.width=function(){return CU(this.g)};
  1857. Q.prototype.setWidth=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!DU(c,a)};Q.prototype.textHeight=function(){return EU(this.g)};Q.prototype.setTextHeight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FU(c,a)};Q.prototype.attachment=function(){return GU(this.g)};Q.prototype.setAttachment=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HU(c,a)};Q.prototype.contents=Q.prototype.l=function(){return g(IU(this.g))};
  1858. Q.prototype.setContents=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!JU(c,a)};Q.prototype.getTextString=function(){return g(KU(this.g))};Q.prototype.explode=function(){return k(LU(this.g),y)};Q.prototype.TrueColor=function(){return k(MU(this.g),v$)};Q.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NU(c,a)};Q.prototype.ColorIndex=function(){return OU(this.g)};
  1859. Q.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PU(c,a)};Q.prototype.Layer=function(){return g(QU(this.g))};Q.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!RU(c,a)};Q.prototype.LinetypeScale=function(){return SU(this.g)};Q.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!TU(c,a)};Q.prototype.Visible=function(){return!!UU(this.g)};
  1860. Q.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VU(c,a)};Q.prototype.Lineweight=function(){return WU(this.g)};Q.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XU(c,a)};Q.prototype.TextStyle=function(){return g(YU(this.g))};Q.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!ZU(c,a)};
  1861. Q.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$U(c,a)};Q.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!aV(d,a,c)};Q.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!bV(d,a,c)};Q.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!cV(d,a,c)};
  1862. Q.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!dV(d,a,c)};Q.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eV(c,a)};Q.prototype.GetBoundingBox=function(){return k(fV(this.g),y)};Q.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(gV(c,a),y)};Q.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hV(c,a)};
  1863. Q.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(iV(d,a,c))};Q.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!jV(e,a,c,d)};Q.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return kV(d,a,c)};
  1864. Q.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!lV(e,a,c,d)};Q.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return mV(d,a,c)};Q.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!nV(e,a,c,d)};
  1865. Q.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(oV(d,a,c),z)};Q.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!pV(e,a,c,d)};Q.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!qV(c,a)};Q.prototype.GetAllAppName=function(){return k(rV(this.g),w$)};
  1866. Q.prototype.LayerId=function(){return sV(this.g)};Q.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tV(c,a)};Q.prototype.LinetypeId=function(){return uV(this.g)};Q.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vV(c,a)};Q.prototype.Linetype=function(){return g(wV(this.g))};Q.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!xV(c,a)};Q.prototype.TextStyleId=function(){return yV(this.g)};
  1867. Q.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zV(c,a)};Q.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(AV(d,a,c),w)};Q.prototype.getArea=function(){return BV(this.g)};Q.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!CV(c,a)};Q.prototype.isPropertiesWindowCustom=function(){return!!DV(this.g)};
  1868. Q.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!EV(c,a)};Q.prototype.updateDisplay=function(){return!!FV(this.g)};Q.prototype.DrawOrder=function(){return GV(this.g)};Q.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HV(c,a)};Q.prototype.normal=function(){return k(IV(this.g),A)};Q.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JV(c,a)};Q.prototype.GetObjectID=function(){return KV(this.g)};
  1869. Q.prototype.Erase=function(){return!!LV(this.g)};Q.prototype.isErased=function(){return!!MV(this.g)};Q.prototype.unErase=function(){return!!NV(this.g)};Q.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!OV(c,a)};Q.prototype.GetExtensionDictionary=function(){return k(PV(this.g),u)};Q.prototype.CreateExtensionDictionary=function(){return!!QV(this.g)};Q.prototype.IsHaveExtensionDictionary=function(){return!!RV(this.g)};
  1870. Q.prototype.Clone=function(){return k(SV(this.g),t)};Q.prototype.GetHandle=function(){return g(TV(this.g))};Q.prototype.GetDatabase=function(){return k(UV(this.g),v)};Q.prototype.GetDatabaseIndexId=function(){return VV(this.g)};Q.prototype.GetOwnerID=function(){return WV(this.g)};Q.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!XV(c,a)};
  1871. Q.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!YV(f,a,c,d,e)};Q.prototype.getGripPoints=function(){return k(ZV(this.g),w)};Q.prototype.getObjectName=function(){return g($V(this.g))};Q.prototype.getDxf0=function(){return g(aW(this.g))};Q.prototype.getCustomEntityTypeName=function(){return g(bW(this.g))};Q.prototype.getCustomEntityid=function(){return cW(this.g)};
  1872. Q.prototype.getCustomEntityTempid=function(){return dW(this.g)};Q.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eW(c,a)};Q.prototype.getJson=function(){return g(fW(this.g))};Q.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!gW(c,a)};Q.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!hW(c,a)};Q.prototype.isNull=function(){return!!iW(this.g)};Q.prototype.__destroy__=function(){jW(this.g)};
  1873. function D$(){this.g=kW();n$(D$)[this.g]=this}D$.prototype=Object.create(t.prototype);D$.prototype.constructor=D$;D$.prototype.h=D$;D$.i={};b.MdDbBlockTableRecord=D$;D$.prototype.appendAcDbEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return lW(c,a)};D$.prototype.getAllEntityId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(mW(c,a),J$)};D$.prototype.origin=D$.prototype.origin=function(){return k(nW(this.g),z)};
  1874. D$.prototype.setOrigin=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oW(c,a)};D$.prototype.getBoundingBox=function(){return k(pW(this.g),w)};D$.prototype.invalidBoundingBoxBuffer=function(){return!!qW(this.g)};D$.prototype.getName=function(){return g(rW(this.g))};D$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!sW(c,a)};D$.prototype.getMinMaxDrawOrder=function(){return k(tW(this.g),z)};D$.prototype.GetObjectID=function(){return uW(this.g)};
  1875. D$.prototype.Erase=function(){return!!vW(this.g)};D$.prototype.isErased=function(){return!!wW(this.g)};D$.prototype.unErase=function(){return!!xW(this.g)};D$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!yW(c,a)};D$.prototype.GetExtensionDictionary=function(){return k(zW(this.g),u)};D$.prototype.CreateExtensionDictionary=function(){return!!AW(this.g)};D$.prototype.IsHaveExtensionDictionary=function(){return!!BW(this.g)};
  1876. D$.prototype.Clone=function(){return k(CW(this.g),t)};D$.prototype.GetHandle=function(){return g(DW(this.g))};D$.prototype.GetDatabase=function(){return k(EW(this.g),v)};D$.prototype.GetDatabaseIndexId=function(){return FW(this.g)};D$.prototype.GetOwnerID=function(){return GW(this.g)};D$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HW(c,a)};
  1877. D$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!IW(f,a,c,d,e)};D$.prototype.getGripPoints=function(){return k(JW(this.g),w)};D$.prototype.getObjectName=function(){return g(KW(this.g))};D$.prototype.getDxf0=function(){return g(LW(this.g))};D$.prototype.getCustomEntityTypeName=function(){return g(MW(this.g))};D$.prototype.getCustomEntityid=function(){return NW(this.g)};
  1878. D$.prototype.getCustomEntityTempid=function(){return OW(this.g)};D$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!PW(c,a)};D$.prototype.getJson=function(){return g(QW(this.g))};D$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!RW(c,a)};D$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!SW(c,a)};D$.prototype.isNull=function(){return!!TW(this.g)};
  1879. D$.prototype.__destroy__=function(){UW(this.g)};function Q$(){throw"cannot construct a MdDbBlockTable, no constructor in IDL";}Q$.prototype=Object.create(t.prototype);Q$.prototype.constructor=Q$;Q$.prototype.h=Q$;Q$.i={};b.MdDbBlockTable=Q$;Q$.prototype.getAllRecordId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(VW(c,a),J$)};Q$.prototype.add=Q$.prototype.add=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return WW(c,a)};
  1880. Q$.prototype.get=Q$.prototype.get=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return XW(d,a,c)};Q$.prototype.GetObjectID=function(){return YW(this.g)};Q$.prototype.Erase=function(){return!!ZW(this.g)};Q$.prototype.isErased=function(){return!!$W(this.g)};Q$.prototype.unErase=function(){return!!aX(this.g)};Q$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!bX(c,a)};
  1881. Q$.prototype.GetExtensionDictionary=function(){return k(cX(this.g),u)};Q$.prototype.CreateExtensionDictionary=function(){return!!dX(this.g)};Q$.prototype.IsHaveExtensionDictionary=function(){return!!eX(this.g)};Q$.prototype.Clone=function(){return k(fX(this.g),t)};Q$.prototype.GetHandle=function(){return g(gX(this.g))};Q$.prototype.GetDatabase=function(){return k(hX(this.g),v)};Q$.prototype.GetDatabaseIndexId=function(){return iX(this.g)};Q$.prototype.GetOwnerID=function(){return jX(this.g)};
  1882. Q$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!kX(c,a)};Q$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!lX(f,a,c,d,e)};Q$.prototype.getGripPoints=function(){return k(mX(this.g),w)};Q$.prototype.getObjectName=function(){return g(nX(this.g))};Q$.prototype.getDxf0=function(){return g(oX(this.g))};
  1883. Q$.prototype.getCustomEntityTypeName=function(){return g(pX(this.g))};Q$.prototype.getCustomEntityid=function(){return qX(this.g)};Q$.prototype.getCustomEntityTempid=function(){return rX(this.g)};Q$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sX(c,a)};Q$.prototype.getJson=function(){return g(tX(this.g))};Q$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!uX(c,a)};
  1884. Q$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!vX(c,a)};Q$.prototype.isNull=function(){return!!wX(this.g)};Q$.prototype.__destroy__=function(){xX(this.g)};function V$(){this.g=yX();n$(V$)[this.g]=this}V$.prototype=Object.create(u$.prototype);V$.prototype.constructor=V$;V$.prototype.h=V$;V$.i={};b.McDrawSelSet=V$;V$.prototype.allSelect=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return zX(c,a)};
  1885. V$.prototype.pointSelect=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return AX(f,a,c,d,e)};V$.prototype.crossingSelect=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return BX(l,a,c,d,e,f)};
  1886. V$.prototype.userSelect=V$.prototype.userSelect=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return CX(n,a,c,d,e,f,l)};
  1887. V$.prototype.userPointSelect=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return DX(f,a,c,d,e)};V$.prototype.getFilterEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(EX(d,a,c),J$)};V$.prototype.highlightEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);FX(c,a)};V$.prototype.count=V$.prototype.count=function(){return GX(this.g)};
  1888. V$.prototype.item=V$.prototype.item=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return HX(c,a)};V$.prototype.getObjectName=function(){return g(IX(this.g))};V$.prototype.getDxf0=function(){return g(JX(this.g))};V$.prototype.getCustomEntityTypeName=function(){return g(KX(this.g))};V$.prototype.getCustomEntityid=function(){return LX(this.g)};V$.prototype.getCustomEntityTempid=function(){return MX(this.g)};
  1889. V$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!NX(c,a)};V$.prototype.getJson=function(){return g(OX(this.g))};V$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!PX(c,a)};V$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!QX(c,a)};V$.prototype.isNull=function(){return!!RX(this.g)};V$.prototype.__destroy__=function(){SX(this.g)};
  1890. function S(){this.g=TX();n$(S)[this.g]=this}S.prototype=Object.create(B.prototype);S.prototype.constructor=S;S.prototype.h=S;S.i={};b.MdDbEllipse=S;S.prototype.center=function(){return k(UX(this.g),z)};S.prototype.setCenter=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!VX(c,a)};S.prototype.majorAxis=function(){return k(WX(this.g),A)};S.prototype.minorAxis=function(){return k(XX(this.g),A)};
  1891. S.prototype.setMajorAxis=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!YX(c,a)};S.prototype.setMinorAxis=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZX(c,a)};S.prototype.radiusRatio=function(){return $X(this.g)};S.prototype.setRadiusRatio=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!aY(c,a)};S.prototype.startAngle=function(){return bY(this.g)};
  1892. S.prototype.setStartAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!cY(c,a)};S.prototype.endAngle=function(){return dY(this.g)};S.prototype.setEndAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!eY(c,a)};S.prototype.InitData=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return!!fY(l,a,c,d,e,f)};
  1893. S.prototype.getStartParam=function(){return gY(this.g)};S.prototype.getEndParam=function(){return hY(this.g)};S.prototype.getDistAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return iY(c,a)};S.prototype.getParamAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return jY(c,a)};S.prototype.getDistAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return kY(c,a)};
  1894. S.prototype.getPointAtDist=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(lY(c,a),z)};S.prototype.getStartPoint=function(){return k(mY(this.g),z)};S.prototype.getEndPoint=function(){return k(nY(this.g),z)};S.prototype.getPointAtParam=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(oY(c,a),z)};S.prototype.getParamAtPoint=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return pY(c,a)};
  1895. S.prototype.getFirstDeriv=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(qY(c,a),A)};S.prototype.getFirstDerivEx=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(rY(c,a),A)};S.prototype.getClosestPointTo=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(sY(d,a,c),z)};S.prototype.offsetCurves=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(tY(d,a,c),x$)};
  1896. S.prototype.splitCurves=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(uY(c,a),x$)};S.prototype.getSamplePoints=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(vY(c,a),y)};S.prototype.getLength=function(){return wY(this.g)};S.prototype.explode=function(){return k(xY(this.g),y)};S.prototype.TrueColor=function(){return k(yY(this.g),v$)};S.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!zY(c,a)};S.prototype.ColorIndex=function(){return AY(this.g)};
  1897. S.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!BY(c,a)};S.prototype.Layer=function(){return g(CY(this.g))};S.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!DY(c,a)};S.prototype.LinetypeScale=function(){return EY(this.g)};S.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!FY(c,a)};S.prototype.Visible=function(){return!!GY(this.g)};
  1898. S.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!HY(c,a)};S.prototype.Lineweight=function(){return IY(this.g)};S.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JY(c,a)};S.prototype.TextStyle=function(){return g(KY(this.g))};S.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!LY(c,a)};
  1899. S.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!MY(c,a)};S.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!NY(d,a,c)};S.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!OY(d,a,c)};S.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!PY(d,a,c)};
  1900. S.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!QY(d,a,c)};S.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RY(c,a)};S.prototype.GetBoundingBox=function(){return k(SY(this.g),y)};S.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(TY(c,a),y)};S.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!UY(c,a)};
  1901. S.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(VY(d,a,c))};S.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!WY(e,a,c,d)};S.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return XY(d,a,c)};
  1902. S.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!YY(e,a,c,d)};S.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return ZY(d,a,c)};S.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!$Y(e,a,c,d)};
  1903. S.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(aZ(d,a,c),z)};S.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!bZ(e,a,c,d)};S.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!cZ(c,a)};S.prototype.GetAllAppName=function(){return k(dZ(this.g),w$)};
  1904. S.prototype.LayerId=function(){return eZ(this.g)};S.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!fZ(c,a)};S.prototype.LinetypeId=function(){return gZ(this.g)};S.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hZ(c,a)};S.prototype.Linetype=function(){return g(iZ(this.g))};S.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!jZ(c,a)};S.prototype.TextStyleId=function(){return kZ(this.g)};
  1905. S.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!lZ(c,a)};S.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(mZ(d,a,c),w)};S.prototype.getArea=function(){return nZ(this.g)};S.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oZ(c,a)};S.prototype.isPropertiesWindowCustom=function(){return!!pZ(this.g)};
  1906. S.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qZ(c,a)};S.prototype.updateDisplay=function(){return!!rZ(this.g)};S.prototype.DrawOrder=function(){return sZ(this.g)};S.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!tZ(c,a)};S.prototype.normal=function(){return k(uZ(this.g),A)};S.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vZ(c,a)};S.prototype.GetObjectID=function(){return wZ(this.g)};
  1907. S.prototype.Erase=function(){return!!xZ(this.g)};S.prototype.isErased=function(){return!!yZ(this.g)};S.prototype.unErase=function(){return!!zZ(this.g)};S.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!AZ(c,a)};S.prototype.GetExtensionDictionary=function(){return k(BZ(this.g),u)};S.prototype.CreateExtensionDictionary=function(){return!!CZ(this.g)};S.prototype.IsHaveExtensionDictionary=function(){return!!DZ(this.g)};
  1908. S.prototype.Clone=function(){return k(EZ(this.g),t)};S.prototype.GetHandle=function(){return g(FZ(this.g))};S.prototype.GetDatabase=function(){return k(GZ(this.g),v)};S.prototype.GetDatabaseIndexId=function(){return HZ(this.g)};S.prototype.GetOwnerID=function(){return IZ(this.g)};S.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!JZ(c,a)};
  1909. S.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!KZ(f,a,c,d,e)};S.prototype.getGripPoints=function(){return k(LZ(this.g),w)};S.prototype.getObjectName=function(){return g(MZ(this.g))};S.prototype.getDxf0=function(){return g(NZ(this.g))};S.prototype.getCustomEntityTypeName=function(){return g(OZ(this.g))};S.prototype.getCustomEntityid=function(){return PZ(this.g)};
  1910. S.prototype.getCustomEntityTempid=function(){return QZ(this.g)};S.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!RZ(c,a)};S.prototype.getJson=function(){return g(SZ(this.g))};S.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!TZ(c,a)};S.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!UZ(c,a)};S.prototype.isNull=function(){return!!VZ(this.g)};S.prototype.__destroy__=function(){WZ(this.g)};
  1911. function Y(){this.g=XZ();n$(Y)[this.g]=this}Y.prototype=Object.create(x.prototype);Y.prototype.constructor=Y;Y.prototype.h=Y;Y.i={};b.MdDbPoint=Y;Y.prototype.position=Y.prototype.position=function(){return k(YZ(this.g),z)};Y.prototype.setPosition=Y.prototype.setPosition=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ZZ(c,a)};Y.prototype.explode=function(){return k($Z(this.g),y)};Y.prototype.TrueColor=function(){return k(a_(this.g),v$)};
  1912. Y.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!b_(c,a)};Y.prototype.ColorIndex=function(){return c_(this.g)};Y.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!d_(c,a)};Y.prototype.Layer=function(){return g(e_(this.g))};Y.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!f_(c,a)};Y.prototype.LinetypeScale=function(){return g_(this.g)};
  1913. Y.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!h_(c,a)};Y.prototype.Visible=function(){return!!i_(this.g)};Y.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!j_(c,a)};Y.prototype.Lineweight=function(){return k_(this.g)};Y.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!l_(c,a)};Y.prototype.TextStyle=function(){return g(m_(this.g))};
  1914. Y.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!n_(c,a)};Y.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!o_(c,a)};Y.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!p_(d,a,c)};Y.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!q_(d,a,c)};
  1915. Y.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!r_(d,a,c)};Y.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!s_(d,a,c)};Y.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!t_(c,a)};Y.prototype.GetBoundingBox=function(){return k(u_(this.g),y)};
  1916. Y.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(v_(c,a),y)};Y.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!w_(c,a)};Y.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(x_(d,a,c))};
  1917. Y.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!y_(e,a,c,d)};Y.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return z_(d,a,c)};Y.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!A_(e,a,c,d)};
  1918. Y.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return B_(d,a,c)};Y.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!C_(e,a,c,d)};Y.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(D_(d,a,c),z)};
  1919. Y.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!E_(e,a,c,d)};Y.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!F_(c,a)};Y.prototype.GetAllAppName=function(){return k(G_(this.g),w$)};Y.prototype.LayerId=function(){return H_(this.g)};Y.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!I_(c,a)};
  1920. Y.prototype.LinetypeId=function(){return J_(this.g)};Y.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!K_(c,a)};Y.prototype.Linetype=function(){return g(L_(this.g))};Y.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!M_(c,a)};Y.prototype.TextStyleId=function(){return N_(this.g)};Y.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!O_(c,a)};
  1921. Y.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(P_(d,a,c),w)};Y.prototype.getArea=function(){return Q_(this.g)};Y.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!R_(c,a)};Y.prototype.isPropertiesWindowCustom=function(){return!!S_(this.g)};Y.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!T_(c,a)};
  1922. Y.prototype.updateDisplay=function(){return!!U_(this.g)};Y.prototype.DrawOrder=function(){return V_(this.g)};Y.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!W_(c,a)};Y.prototype.normal=function(){return k(X_(this.g),A)};Y.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Y_(c,a)};Y.prototype.GetObjectID=function(){return Z_(this.g)};Y.prototype.Erase=function(){return!!$_(this.g)};Y.prototype.isErased=function(){return!!a0(this.g)};
  1923. Y.prototype.unErase=function(){return!!b0(this.g)};Y.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!c0(c,a)};Y.prototype.GetExtensionDictionary=function(){return k(d0(this.g),u)};Y.prototype.CreateExtensionDictionary=function(){return!!e0(this.g)};Y.prototype.IsHaveExtensionDictionary=function(){return!!f0(this.g)};Y.prototype.Clone=function(){return k(g0(this.g),t)};Y.prototype.GetHandle=function(){return g(h0(this.g))};
  1924. Y.prototype.GetDatabase=function(){return k(i0(this.g),v)};Y.prototype.GetDatabaseIndexId=function(){return j0(this.g)};Y.prototype.GetOwnerID=function(){return k0(this.g)};Y.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!l0(c,a)};Y.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!m0(f,a,c,d,e)};
  1925. Y.prototype.getGripPoints=function(){return k(n0(this.g),w)};Y.prototype.getObjectName=function(){return g(o0(this.g))};Y.prototype.getDxf0=function(){return g(p0(this.g))};Y.prototype.getCustomEntityTypeName=function(){return g(q0(this.g))};Y.prototype.getCustomEntityid=function(){return r0(this.g)};Y.prototype.getCustomEntityTempid=function(){return s0(this.g)};Y.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!t0(c,a)};Y.prototype.getJson=function(){return g(u0(this.g))};
  1926. Y.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!v0(c,a)};Y.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!w0(c,a)};Y.prototype.isNull=function(){return!!x0(this.g)};Y.prototype.__destroy__=function(){y0(this.g)};function T(){this.g=z0();n$(T)[this.g]=this}T.prototype=Object.create(x.prototype);T.prototype.constructor=T;T.prototype.h=T;T.i={};b.MdDbHatch=T;T.prototype.numLoops=function(){return A0(this.g)};
  1927. T.prototype.loopTypeAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return B0(c,a)};T.prototype.getLoopAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(C0(c,a),y)};T.prototype.patternType=function(){return D0(this.g)};T.prototype.patternName=function(){return g(E0(this.g))};T.prototype.setPattern=function(a,c){var d=this.g;m();a&&"object"===typeof a&&(a=a.g);c=c&&"object"===typeof c?c.g:r(c);return!!F0(d,a,c)};T.prototype.patternAngle=function(){return G0(this.g)};
  1928. T.prototype.setPatternAngle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!H0(c,a)};T.prototype.patternScale=function(){return I0(this.g)};T.prototype.setPatternScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!J0(c,a)};T.prototype.patternSpace=function(){return K0(this.g)};T.prototype.setPatternSpace=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!L0(c,a)};T.prototype.patternDouble=function(){return!!M0(this.g)};
  1929. T.prototype.setPatternDouble=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!N0(c,a)};T.prototype.numPatternDefinitions=function(){return O0(this.g)};T.prototype.getPatternDefinitionAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(P0(c,a),K$)};
  1930. T.prototype.addPatternDefinition=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return!!Q0(n,a,c,d,e,f,l)};T.prototype.clearPatternDefinition=function(){return!!R0(this.g)};T.prototype.hatchStyle=function(){return S0(this.g)};
  1931. T.prototype.setHatchStyle=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!T0(c,a)};T.prototype.evaluateHatch=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!U0(c,a)};T.prototype.appendCircleLoop=function(a,c,d,e,f,l){var n=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);l&&"object"===typeof l&&(l=l.g);return!!V0(n,a,c,d,e,f,l)};
  1932. T.prototype.appendLoop=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!W0(e,a,c,d)};T.prototype.removeLoopAt=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!X0(c,a)};T.prototype.removeAllLoop=function(){return!!Y0(this.g)};
  1933. T.prototype.setLoopAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Z0(f,a,c,d,e)};T.prototype.isSolid=function(){return!!$0(this.g)};T.prototype.explode=function(){return k(a1(this.g),y)};T.prototype.TrueColor=function(){return k(b1(this.g),v$)};T.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!c1(c,a)};T.prototype.ColorIndex=function(){return d1(this.g)};
  1934. T.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!e1(c,a)};T.prototype.Layer=function(){return g(f1(this.g))};T.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!g1(c,a)};T.prototype.LinetypeScale=function(){return h1(this.g)};T.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!i1(c,a)};T.prototype.Visible=function(){return!!j1(this.g)};
  1935. T.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!k1(c,a)};T.prototype.Lineweight=function(){return l1(this.g)};T.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!m1(c,a)};T.prototype.TextStyle=function(){return g(n1(this.g))};T.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!o1(c,a)};
  1936. T.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!p1(c,a)};T.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!q1(d,a,c)};T.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!r1(d,a,c)};T.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!s1(d,a,c)};
  1937. T.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!t1(d,a,c)};T.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!u1(c,a)};T.prototype.GetBoundingBox=function(){return k(v1(this.g),y)};T.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(w1(c,a),y)};T.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!x1(c,a)};
  1938. T.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(y1(d,a,c))};T.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!z1(e,a,c,d)};T.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return A1(d,a,c)};
  1939. T.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!B1(e,a,c,d)};T.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return C1(d,a,c)};T.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!D1(e,a,c,d)};
  1940. T.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(E1(d,a,c),z)};T.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!F1(e,a,c,d)};T.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!G1(c,a)};T.prototype.GetAllAppName=function(){return k(H1(this.g),w$)};
  1941. T.prototype.LayerId=function(){return I1(this.g)};T.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!J1(c,a)};T.prototype.LinetypeId=function(){return K1(this.g)};T.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!L1(c,a)};T.prototype.Linetype=function(){return g(M1(this.g))};T.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!N1(c,a)};T.prototype.TextStyleId=function(){return O1(this.g)};
  1942. T.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!P1(c,a)};T.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(Q1(d,a,c),w)};T.prototype.getArea=function(){return R1(this.g)};T.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!S1(c,a)};T.prototype.isPropertiesWindowCustom=function(){return!!T1(this.g)};
  1943. T.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!U1(c,a)};T.prototype.updateDisplay=function(){return!!V1(this.g)};T.prototype.DrawOrder=function(){return W1(this.g)};T.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!X1(c,a)};T.prototype.normal=function(){return k(Y1(this.g),A)};T.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Z1(c,a)};T.prototype.GetObjectID=function(){return $1(this.g)};
  1944. T.prototype.Erase=function(){return!!a2(this.g)};T.prototype.isErased=function(){return!!b2(this.g)};T.prototype.unErase=function(){return!!c2(this.g)};T.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!d2(c,a)};T.prototype.GetExtensionDictionary=function(){return k(e2(this.g),u)};T.prototype.CreateExtensionDictionary=function(){return!!f2(this.g)};T.prototype.IsHaveExtensionDictionary=function(){return!!g2(this.g)};
  1945. T.prototype.Clone=function(){return k(h2(this.g),t)};T.prototype.GetHandle=function(){return g(i2(this.g))};T.prototype.GetDatabase=function(){return k(j2(this.g),v)};T.prototype.GetDatabaseIndexId=function(){return k2(this.g)};T.prototype.GetOwnerID=function(){return l2(this.g)};T.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!m2(c,a)};
  1946. T.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!n2(f,a,c,d,e)};T.prototype.getGripPoints=function(){return k(o2(this.g),w)};T.prototype.getObjectName=function(){return g(p2(this.g))};T.prototype.getDxf0=function(){return g(q2(this.g))};T.prototype.getCustomEntityTypeName=function(){return g(r2(this.g))};T.prototype.getCustomEntityid=function(){return s2(this.g)};
  1947. T.prototype.getCustomEntityTempid=function(){return t2(this.g)};T.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!u2(c,a)};T.prototype.getJson=function(){return g(v2(this.g))};T.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!w2(c,a)};T.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!x2(c,a)};T.prototype.isNull=function(){return!!y2(this.g)};T.prototype.__destroy__=function(){z2(this.g)};
  1948. function U(){this.g=A2();n$(U)[this.g]=this}U.prototype=Object.create(x.prototype);U.prototype.constructor=U;U.prototype.h=U;U.i={};b.MdDbProxyEntity=U;U.prototype.getAllTextContent=function(){return k(B2(this.g),w$)};U.prototype.getAllEntityIds=function(){return k(C2(this.g),J$)};U.prototype.getOriginalClassName=function(){return g(D2(this.g))};U.prototype.explode=function(){return k(E2(this.g),y)};U.prototype.TrueColor=function(){return k(F2(this.g),v$)};
  1949. U.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!G2(c,a)};U.prototype.ColorIndex=function(){return H2(this.g)};U.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!I2(c,a)};U.prototype.Layer=function(){return g(J2(this.g))};U.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!K2(c,a)};U.prototype.LinetypeScale=function(){return L2(this.g)};
  1950. U.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!M2(c,a)};U.prototype.Visible=function(){return!!N2(this.g)};U.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!O2(c,a)};U.prototype.Lineweight=function(){return P2(this.g)};U.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Q2(c,a)};U.prototype.TextStyle=function(){return g(R2(this.g))};
  1951. U.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!S2(c,a)};U.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!T2(c,a)};U.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!U2(d,a,c)};U.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!V2(d,a,c)};
  1952. U.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!W2(d,a,c)};U.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!X2(d,a,c)};U.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Y2(c,a)};U.prototype.GetBoundingBox=function(){return k(Z2(this.g),y)};
  1953. U.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k($2(c,a),y)};U.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!a3(c,a)};U.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(b3(d,a,c))};
  1954. U.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!c3(e,a,c,d)};U.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return d3(d,a,c)};U.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!e3(e,a,c,d)};
  1955. U.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return f3(d,a,c)};U.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!g3(e,a,c,d)};U.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(h3(d,a,c),z)};
  1956. U.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!i3(e,a,c,d)};U.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!j3(c,a)};U.prototype.GetAllAppName=function(){return k(k3(this.g),w$)};U.prototype.LayerId=function(){return l3(this.g)};U.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!m3(c,a)};
  1957. U.prototype.LinetypeId=function(){return n3(this.g)};U.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!o3(c,a)};U.prototype.Linetype=function(){return g(p3(this.g))};U.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!q3(c,a)};U.prototype.TextStyleId=function(){return r3(this.g)};U.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!s3(c,a)};
  1958. U.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(t3(d,a,c),w)};U.prototype.getArea=function(){return u3(this.g)};U.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!v3(c,a)};U.prototype.isPropertiesWindowCustom=function(){return!!w3(this.g)};U.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!x3(c,a)};
  1959. U.prototype.updateDisplay=function(){return!!y3(this.g)};U.prototype.DrawOrder=function(){return z3(this.g)};U.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!A3(c,a)};U.prototype.normal=function(){return k(B3(this.g),A)};U.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!C3(c,a)};U.prototype.GetObjectID=function(){return D3(this.g)};U.prototype.Erase=function(){return!!E3(this.g)};U.prototype.isErased=function(){return!!F3(this.g)};
  1960. U.prototype.unErase=function(){return!!G3(this.g)};U.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!H3(c,a)};U.prototype.GetExtensionDictionary=function(){return k(I3(this.g),u)};U.prototype.CreateExtensionDictionary=function(){return!!J3(this.g)};U.prototype.IsHaveExtensionDictionary=function(){return!!K3(this.g)};U.prototype.Clone=function(){return k(L3(this.g),t)};U.prototype.GetHandle=function(){return g(M3(this.g))};
  1961. U.prototype.GetDatabase=function(){return k(N3(this.g),v)};U.prototype.GetDatabaseIndexId=function(){return O3(this.g)};U.prototype.GetOwnerID=function(){return P3(this.g)};U.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Q3(c,a)};U.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!R3(f,a,c,d,e)};
  1962. U.prototype.getGripPoints=function(){return k(S3(this.g),w)};U.prototype.getObjectName=function(){return g(T3(this.g))};U.prototype.getDxf0=function(){return g(U3(this.g))};U.prototype.getCustomEntityTypeName=function(){return g(V3(this.g))};U.prototype.getCustomEntityid=function(){return W3(this.g)};U.prototype.getCustomEntityTempid=function(){return X3(this.g)};U.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Y3(c,a)};U.prototype.getJson=function(){return g(Z3(this.g))};
  1963. U.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!$3(c,a)};U.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!a4(c,a)};U.prototype.isNull=function(){return!!b4(this.g)};U.prototype.__destroy__=function(){c4(this.g)};function V(){this.g=d4();n$(V)[this.g]=this}V.prototype=Object.create(x.prototype);V.prototype.constructor=V;V.prototype.h=V;V.i={};b.MdDbRasterImage=V;
  1964. V.prototype.setOrientation=V.prototype.setOrientation=function(a,c,d){var e=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!e4(e,a,c,d)};V.prototype.getOrientation=function(){return k(f4(this.g),w)};V.prototype.setImageDefId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!g4(c,a)};V.prototype.imageDefId=function(){return h4(this.g)};
  1965. V.prototype.setClipBoundary=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!i4(d,a,c)};V.prototype.clipBoundary=function(){return k(j4(this.g),w)};V.prototype.clipBoundaryType=function(){return k4(this.g)};V.prototype.explode=function(){return k(l4(this.g),y)};V.prototype.TrueColor=function(){return k(m4(this.g),v$)};V.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!n4(c,a)};V.prototype.ColorIndex=function(){return o4(this.g)};
  1966. V.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!p4(c,a)};V.prototype.Layer=function(){return g(q4(this.g))};V.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!r4(c,a)};V.prototype.LinetypeScale=function(){return s4(this.g)};V.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!t4(c,a)};V.prototype.Visible=function(){return!!u4(this.g)};
  1967. V.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!v4(c,a)};V.prototype.Lineweight=function(){return w4(this.g)};V.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!x4(c,a)};V.prototype.TextStyle=function(){return g(y4(this.g))};V.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!z4(c,a)};
  1968. V.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!A4(c,a)};V.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!B4(d,a,c)};V.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!C4(d,a,c)};V.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!D4(d,a,c)};
  1969. V.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!E4(d,a,c)};V.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!F4(c,a)};V.prototype.GetBoundingBox=function(){return k(G4(this.g),y)};V.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(H4(c,a),y)};V.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!I4(c,a)};
  1970. V.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(J4(d,a,c))};V.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!K4(e,a,c,d)};V.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return L4(d,a,c)};
  1971. V.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!M4(e,a,c,d)};V.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return N4(d,a,c)};V.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!O4(e,a,c,d)};
  1972. V.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(P4(d,a,c),z)};V.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!Q4(e,a,c,d)};V.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!R4(c,a)};V.prototype.GetAllAppName=function(){return k(S4(this.g),w$)};
  1973. V.prototype.LayerId=function(){return T4(this.g)};V.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!U4(c,a)};V.prototype.LinetypeId=function(){return V4(this.g)};V.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!W4(c,a)};V.prototype.Linetype=function(){return g(X4(this.g))};V.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Y4(c,a)};V.prototype.TextStyleId=function(){return Z4(this.g)};
  1974. V.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$4(c,a)};V.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(a5(d,a,c),w)};V.prototype.getArea=function(){return b5(this.g)};V.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!c5(c,a)};V.prototype.isPropertiesWindowCustom=function(){return!!d5(this.g)};
  1975. V.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!e5(c,a)};V.prototype.updateDisplay=function(){return!!f5(this.g)};V.prototype.DrawOrder=function(){return g5(this.g)};V.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!h5(c,a)};V.prototype.normal=function(){return k(i5(this.g),A)};V.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!j5(c,a)};V.prototype.GetObjectID=function(){return k5(this.g)};
  1976. V.prototype.Erase=function(){return!!l5(this.g)};V.prototype.isErased=function(){return!!m5(this.g)};V.prototype.unErase=function(){return!!n5(this.g)};V.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!o5(c,a)};V.prototype.GetExtensionDictionary=function(){return k(p5(this.g),u)};V.prototype.CreateExtensionDictionary=function(){return!!q5(this.g)};V.prototype.IsHaveExtensionDictionary=function(){return!!r5(this.g)};
  1977. V.prototype.Clone=function(){return k(s5(this.g),t)};V.prototype.GetHandle=function(){return g(t5(this.g))};V.prototype.GetDatabase=function(){return k(u5(this.g),v)};V.prototype.GetDatabaseIndexId=function(){return v5(this.g)};V.prototype.GetOwnerID=function(){return w5(this.g)};V.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!x5(c,a)};
  1978. V.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!y5(f,a,c,d,e)};V.prototype.getGripPoints=function(){return k(z5(this.g),w)};V.prototype.getObjectName=function(){return g(A5(this.g))};V.prototype.getDxf0=function(){return g(B5(this.g))};V.prototype.getCustomEntityTypeName=function(){return g(C5(this.g))};V.prototype.getCustomEntityid=function(){return D5(this.g)};
  1979. V.prototype.getCustomEntityTempid=function(){return E5(this.g)};V.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!F5(c,a)};V.prototype.getJson=function(){return g(G5(this.g))};V.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!H5(c,a)};V.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!I5(c,a)};V.prototype.isNull=function(){return!!J5(this.g)};V.prototype.__destroy__=function(){K5(this.g)};
  1980. function B$(){this.g=L5();n$(B$)[this.g]=this}B$.prototype=Object.create(t.prototype);B$.prototype.constructor=B$;B$.prototype.h=B$;B$.i={};b.MdDbRasterImageDef=B$;B$.prototype.setSourceFileName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!M5(c,a)};B$.prototype.sourceFileName=function(){return g(N5(this.g))};B$.prototype.saveToBase64=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!O5(c,a)};B$.prototype.GetObjectID=function(){return P5(this.g)};
  1981. B$.prototype.Erase=function(){return!!Q5(this.g)};B$.prototype.isErased=function(){return!!R5(this.g)};B$.prototype.unErase=function(){return!!S5(this.g)};B$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!T5(c,a)};B$.prototype.GetExtensionDictionary=function(){return k(U5(this.g),u)};B$.prototype.CreateExtensionDictionary=function(){return!!V5(this.g)};B$.prototype.IsHaveExtensionDictionary=function(){return!!W5(this.g)};
  1982. B$.prototype.Clone=function(){return k(X5(this.g),t)};B$.prototype.GetHandle=function(){return g(Y5(this.g))};B$.prototype.GetDatabase=function(){return k(Z5(this.g),v)};B$.prototype.GetDatabaseIndexId=function(){return $5(this.g)};B$.prototype.GetOwnerID=function(){return a6(this.g)};B$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!b6(c,a)};
  1983. B$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!c6(f,a,c,d,e)};B$.prototype.getGripPoints=function(){return k(d6(this.g),w)};B$.prototype.getObjectName=function(){return g(e6(this.g))};B$.prototype.getDxf0=function(){return g(f6(this.g))};B$.prototype.getCustomEntityTypeName=function(){return g(g6(this.g))};B$.prototype.getCustomEntityid=function(){return h6(this.g)};
  1984. B$.prototype.getCustomEntityTempid=function(){return i6(this.g)};B$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!j6(c,a)};B$.prototype.getJson=function(){return g(k6(this.g))};B$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!l6(c,a)};B$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!m6(c,a)};B$.prototype.isNull=function(){return!!n6(this.g)};
  1985. B$.prototype.__destroy__=function(){o6(this.g)};function W(){this.g=p6();n$(W)[this.g]=this}W.prototype=Object.create(x.prototype);W.prototype.constructor=W;W.prototype.h=W;W.i={};b.MdDbWipeout=W;W.prototype.setVertices=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!q6(c,a)};W.prototype.getVertices=function(){return k(r6(this.g),w)};W.prototype.explode=function(){return k(s6(this.g),y)};W.prototype.TrueColor=function(){return k(t6(this.g),v$)};
  1986. W.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!u6(c,a)};W.prototype.ColorIndex=function(){return v6(this.g)};W.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!w6(c,a)};W.prototype.Layer=function(){return g(x6(this.g))};W.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!y6(c,a)};W.prototype.LinetypeScale=function(){return z6(this.g)};
  1987. W.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!A6(c,a)};W.prototype.Visible=function(){return!!B6(this.g)};W.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!C6(c,a)};W.prototype.Lineweight=function(){return D6(this.g)};W.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!E6(c,a)};W.prototype.TextStyle=function(){return g(F6(this.g))};
  1988. W.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!G6(c,a)};W.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!H6(c,a)};W.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!I6(d,a,c)};W.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!J6(d,a,c)};
  1989. W.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!K6(d,a,c)};W.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!L6(d,a,c)};W.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!M6(c,a)};W.prototype.GetBoundingBox=function(){return k(N6(this.g),y)};
  1990. W.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(O6(c,a),y)};W.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!P6(c,a)};W.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(Q6(d,a,c))};
  1991. W.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!R6(e,a,c,d)};W.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return S6(d,a,c)};W.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!T6(e,a,c,d)};
  1992. W.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return U6(d,a,c)};W.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!V6(e,a,c,d)};W.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(W6(d,a,c),z)};
  1993. W.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!X6(e,a,c,d)};W.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Y6(c,a)};W.prototype.GetAllAppName=function(){return k(Z6(this.g),w$)};W.prototype.LayerId=function(){return $6(this.g)};W.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!a7(c,a)};
  1994. W.prototype.LinetypeId=function(){return b7(this.g)};W.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!c7(c,a)};W.prototype.Linetype=function(){return g(d7(this.g))};W.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!e7(c,a)};W.prototype.TextStyleId=function(){return f7(this.g)};W.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!g7(c,a)};
  1995. W.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(h7(d,a,c),w)};W.prototype.getArea=function(){return i7(this.g)};W.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!j7(c,a)};W.prototype.isPropertiesWindowCustom=function(){return!!k7(this.g)};W.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!l7(c,a)};
  1996. W.prototype.updateDisplay=function(){return!!m7(this.g)};W.prototype.DrawOrder=function(){return n7(this.g)};W.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!o7(c,a)};W.prototype.normal=function(){return k(p7(this.g),A)};W.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!q7(c,a)};W.prototype.GetObjectID=function(){return r7(this.g)};W.prototype.Erase=function(){return!!s7(this.g)};W.prototype.isErased=function(){return!!t7(this.g)};
  1997. W.prototype.unErase=function(){return!!u7(this.g)};W.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!v7(c,a)};W.prototype.GetExtensionDictionary=function(){return k(w7(this.g),u)};W.prototype.CreateExtensionDictionary=function(){return!!x7(this.g)};W.prototype.IsHaveExtensionDictionary=function(){return!!y7(this.g)};W.prototype.Clone=function(){return k(z7(this.g),t)};W.prototype.GetHandle=function(){return g(A7(this.g))};
  1998. W.prototype.GetDatabase=function(){return k(B7(this.g),v)};W.prototype.GetDatabaseIndexId=function(){return C7(this.g)};W.prototype.GetOwnerID=function(){return D7(this.g)};W.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!E7(c,a)};W.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!F7(f,a,c,d,e)};
  1999. W.prototype.getGripPoints=function(){return k(G7(this.g),w)};W.prototype.getObjectName=function(){return g(H7(this.g))};W.prototype.getDxf0=function(){return g(I7(this.g))};W.prototype.getCustomEntityTypeName=function(){return g(J7(this.g))};W.prototype.getCustomEntityid=function(){return K7(this.g)};W.prototype.getCustomEntityTempid=function(){return L7(this.g)};W.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!M7(c,a)};W.prototype.getJson=function(){return g(N7(this.g))};
  2000. W.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!O7(c,a)};W.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!P7(c,a)};W.prototype.isNull=function(){return!!Q7(this.g)};W.prototype.__destroy__=function(){R7(this.g)};function u(){this.g=S7();n$(u)[this.g]=this}u.prototype=Object.create(t.prototype);u.prototype.constructor=u;u.prototype.h=u;u.i={};b.MdDbDictionary=u;
  2001. u.prototype.remove=u.prototype.remove=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!T7(c,a)};u.prototype.addObject=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return U7(d,a,c)};u.prototype.getAllObject=function(){return k(V7(this.g),J$)};u.prototype.getAllObjectName=function(){return k(W7(this.g),w$)};
  2002. u.prototype.getAt=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return X7(d,a,c)};u.prototype.GetObjectID=function(){return Y7(this.g)};u.prototype.Erase=function(){return!!Z7(this.g)};u.prototype.isErased=function(){return!!$7(this.g)};u.prototype.unErase=function(){return!!a8(this.g)};u.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!b8(c,a)};
  2003. u.prototype.GetExtensionDictionary=function(){return k(c8(this.g),u)};u.prototype.CreateExtensionDictionary=function(){return!!d8(this.g)};u.prototype.IsHaveExtensionDictionary=function(){return!!e8(this.g)};u.prototype.Clone=function(){return k(f8(this.g),t)};u.prototype.GetHandle=function(){return g(g8(this.g))};u.prototype.GetDatabase=function(){return k(h8(this.g),v)};u.prototype.GetDatabaseIndexId=function(){return i8(this.g)};u.prototype.GetOwnerID=function(){return j8(this.g)};
  2004. u.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!k8(c,a)};u.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!l8(f,a,c,d,e)};u.prototype.getGripPoints=function(){return k(m8(this.g),w)};u.prototype.getObjectName=function(){return g(n8(this.g))};u.prototype.getDxf0=function(){return g(o8(this.g))};
  2005. u.prototype.getCustomEntityTypeName=function(){return g(p8(this.g))};u.prototype.getCustomEntityid=function(){return q8(this.g)};u.prototype.getCustomEntityTempid=function(){return r8(this.g)};u.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!s8(c,a)};u.prototype.getJson=function(){return g(t8(this.g))};u.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!u8(c,a)};
  2006. u.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!v8(c,a)};u.prototype.isNull=function(){return!!w8(this.g)};u.prototype.__destroy__=function(){x8(this.g)};function C$(){this.g=y8();n$(C$)[this.g]=this}C$.prototype=Object.create(t.prototype);C$.prototype.constructor=C$;C$.prototype.h=C$;C$.i={};b.MdDbXrecord=C$;C$.prototype.getData=C$.prototype.getData=function(){return k(z8(this.g),y)};
  2007. C$.prototype.setData=C$.prototype.setData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!A8(c,a)};C$.prototype.GetObjectID=function(){return B8(this.g)};C$.prototype.Erase=function(){return!!C8(this.g)};C$.prototype.isErased=function(){return!!D8(this.g)};C$.prototype.unErase=function(){return!!E8(this.g)};C$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!F8(c,a)};
  2008. C$.prototype.GetExtensionDictionary=function(){return k(G8(this.g),u)};C$.prototype.CreateExtensionDictionary=function(){return!!H8(this.g)};C$.prototype.IsHaveExtensionDictionary=function(){return!!I8(this.g)};C$.prototype.Clone=function(){return k(J8(this.g),t)};C$.prototype.GetHandle=function(){return g(K8(this.g))};C$.prototype.GetDatabase=function(){return k(L8(this.g),v)};C$.prototype.GetDatabaseIndexId=function(){return M8(this.g)};C$.prototype.GetOwnerID=function(){return N8(this.g)};
  2009. C$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!O8(c,a)};C$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!P8(f,a,c,d,e)};C$.prototype.getGripPoints=function(){return k(Q8(this.g),w)};C$.prototype.getObjectName=function(){return g(R8(this.g))};C$.prototype.getDxf0=function(){return g(S8(this.g))};
  2010. C$.prototype.getCustomEntityTypeName=function(){return g(T8(this.g))};C$.prototype.getCustomEntityid=function(){return U8(this.g)};C$.prototype.getCustomEntityTempid=function(){return V8(this.g)};C$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!W8(c,a)};C$.prototype.getJson=function(){return g(X8(this.g))};C$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Y8(c,a)};
  2011. C$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Z8(c,a)};C$.prototype.isNull=function(){return!!$8(this.g)};C$.prototype.__destroy__=function(){a9(this.g)};function W$(){this.g=b9();n$(W$)[this.g]=this}W$.prototype=Object.create(t.prototype);W$.prototype.constructor=W$;W$.prototype.h=W$;W$.i={};b.MdDbGroup=W$;W$.prototype.description=W$.prototype.description=function(){return g(c9(this.g))};
  2012. W$.prototype.setDescription=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!d9(c,a)};W$.prototype.name=W$.prototype.name=function(){return g(e9(this.g))};W$.prototype.setName=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!f9(c,a)};W$.prototype.isSelectable=function(){return!!g9(this.g)};W$.prototype.setSelectable=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!h9(c,a)};W$.prototype.clear=W$.prototype.clear=function(){return!!i9(this.g)};
  2013. W$.prototype.append=W$.prototype.append=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!j9(c,a)};W$.prototype.appendArray=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!k9(c,a)};W$.prototype.has=W$.prototype.has=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!l9(c,a)};W$.prototype.getAllEntityId=function(){return k(m9(this.g),J$)};W$.prototype.numEntities=function(){return n9(this.g)};W$.prototype.GetObjectID=function(){return o9(this.g)};
  2014. W$.prototype.Erase=function(){return!!p9(this.g)};W$.prototype.isErased=function(){return!!q9(this.g)};W$.prototype.unErase=function(){return!!r9(this.g)};W$.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!s9(c,a)};W$.prototype.GetExtensionDictionary=function(){return k(t9(this.g),u)};W$.prototype.CreateExtensionDictionary=function(){return!!u9(this.g)};W$.prototype.IsHaveExtensionDictionary=function(){return!!v9(this.g)};
  2015. W$.prototype.Clone=function(){return k(w9(this.g),t)};W$.prototype.GetHandle=function(){return g(x9(this.g))};W$.prototype.GetDatabase=function(){return k(y9(this.g),v)};W$.prototype.GetDatabaseIndexId=function(){return z9(this.g)};W$.prototype.GetOwnerID=function(){return A9(this.g)};W$.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!B9(c,a)};
  2016. W$.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!C9(f,a,c,d,e)};W$.prototype.getGripPoints=function(){return k(D9(this.g),w)};W$.prototype.getObjectName=function(){return g(E9(this.g))};W$.prototype.getDxf0=function(){return g(F9(this.g))};W$.prototype.getCustomEntityTypeName=function(){return g(G9(this.g))};W$.prototype.getCustomEntityid=function(){return H9(this.g)};
  2017. W$.prototype.getCustomEntityTempid=function(){return I9(this.g)};W$.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!J9(c,a)};W$.prototype.getJson=function(){return g(K9(this.g))};W$.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!L9(c,a)};W$.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!M9(c,a)};W$.prototype.isNull=function(){return!!N9(this.g)};
  2018. W$.prototype.__destroy__=function(){O9(this.g)};function X(a){m();a=a&&"object"===typeof a?a.g:r(a);this.g=P9(a);n$(X)[this.g]=this}X.prototype=Object.create(x.prototype);X.prototype.constructor=X;X.prototype.h=X;X.i={};b.MdDbCustomEntity=X;X.prototype.getFilter=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return k(Q9(c,a),X$)};
  2019. X.prototype.assertWrite=function(a,c,d,e,f){var l=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);f&&"object"===typeof f&&(f=f.g);return!!R9(l,a,c,d,e,f)};X.prototype.explode=function(){return k(S9(this.g),y)};X.prototype.TrueColor=function(){return k(T9(this.g),v$)};X.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!U9(c,a)};X.prototype.ColorIndex=function(){return V9(this.g)};
  2020. X.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!W9(c,a)};X.prototype.Layer=function(){return g(X9(this.g))};X.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Y9(c,a)};X.prototype.LinetypeScale=function(){return Z9(this.g)};X.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!$9(c,a)};X.prototype.Visible=function(){return!!a$(this.g)};
  2021. X.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!b$(c,a)};X.prototype.Lineweight=function(){return c$(this.g)};X.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!d$(c,a)};X.prototype.TextStyle=function(){return g(e$(this.g))};X.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!f$(c,a)};
  2022. X.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!g$(c,a)};X.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!h$(d,a,c)};X.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!i$(d,a,c)};X.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!j$(d,a,c)};
  2023. X.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Saa(d,a,c)};X.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Taa(c,a)};X.prototype.GetBoundingBox=function(){return k(Uaa(this.g),y)};X.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(Vaa(c,a),y)};X.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Waa(c,a)};
  2024. X.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(Xaa(d,a,c))};X.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!Yaa(e,a,c,d)};X.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return Zaa(d,a,c)};
  2025. X.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!$aa(e,a,c,d)};X.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return aba(d,a,c)};X.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!bba(e,a,c,d)};
  2026. X.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(cba(d,a,c),z)};X.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!dba(e,a,c,d)};X.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!eba(c,a)};X.prototype.GetAllAppName=function(){return k(fba(this.g),w$)};
  2027. X.prototype.LayerId=function(){return gba(this.g)};X.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!hba(c,a)};X.prototype.LinetypeId=function(){return iba(this.g)};X.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!jba(c,a)};X.prototype.Linetype=function(){return g(kba(this.g))};X.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!lba(c,a)};X.prototype.TextStyleId=function(){return mba(this.g)};
  2028. X.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!nba(c,a)};X.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(oba(d,a,c),w)};X.prototype.getArea=function(){return pba(this.g)};X.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!qba(c,a)};X.prototype.isPropertiesWindowCustom=function(){return!!rba(this.g)};
  2029. X.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!sba(c,a)};X.prototype.updateDisplay=function(){return!!tba(this.g)};X.prototype.DrawOrder=function(){return uba(this.g)};X.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!vba(c,a)};X.prototype.normal=function(){return k(wba(this.g),A)};X.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!xba(c,a)};X.prototype.GetObjectID=function(){return yba(this.g)};
  2030. X.prototype.Erase=function(){return!!zba(this.g)};X.prototype.isErased=function(){return!!Aba(this.g)};X.prototype.unErase=function(){return!!Bba(this.g)};X.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Cba(c,a)};X.prototype.GetExtensionDictionary=function(){return k(Dba(this.g),u)};X.prototype.CreateExtensionDictionary=function(){return!!Eba(this.g)};X.prototype.IsHaveExtensionDictionary=function(){return!!Fba(this.g)};
  2031. X.prototype.Clone=function(){return k(Gba(this.g),t)};X.prototype.GetHandle=function(){return g(Hba(this.g))};X.prototype.GetDatabase=function(){return k(Iba(this.g),v)};X.prototype.GetDatabaseIndexId=function(){return Jba(this.g)};X.prototype.GetOwnerID=function(){return Kba(this.g)};X.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Lba(c,a)};
  2032. X.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Mba(f,a,c,d,e)};X.prototype.getGripPoints=function(){return k(Nba(this.g),w)};X.prototype.getObjectName=function(){return g(Oba(this.g))};X.prototype.getDxf0=function(){return g(Pba(this.g))};X.prototype.getCustomEntityTypeName=function(){return g(Qba(this.g))};X.prototype.getCustomEntityid=function(){return Rba(this.g)};
  2033. X.prototype.getCustomEntityTempid=function(){return Sba(this.g)};X.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Tba(c,a)};X.prototype.getJson=function(){return g(Uba(this.g))};X.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Vba(c,a)};X.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Wba(c,a)};X.prototype.isNull=function(){return!!Xba(this.g)};
  2034. X.prototype.__destroy__=function(){Yba(this.g)};function X$(){this.g=Zba();n$(X$)[this.g]=this}X$.prototype=Object.create(m$.prototype);X$.prototype.constructor=X$;X$.prototype.h=X$;X$.i={};b.MdDbCustomEntityDwgFiler=X$;X$.prototype.connect=X$.prototype.connect=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);$ba(c,a)};
  2035. X$.prototype.writePoint=function(a,c,d,e){var f=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!aca(f,a,c,d,e)};X$.prototype.readPoint=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(bca(c,a),z)};X$.prototype.writeLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!cca(d,a,c)};
  2036. X$.prototype.readLong=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return dca(c,a)};X$.prototype.writeDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!eca(d,a,c)};X$.prototype.readDouble=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return fca(c,a)};X$.prototype.writeString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c=c&&"object"===typeof c?c.g:r(c);return!!gca(d,a,c)};
  2037. X$.prototype.readString=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return g(hca(c,a))};X$.prototype.__destroy__=function(){ica(this.g)};function Y$(a){a&&"object"===typeof a&&(a=a.g);this.g=jca(a);n$(Y$)[this.g]=this}Y$.prototype=Object.create(m$.prototype);Y$.prototype.constructor=Y$;Y$.prototype.h=Y$;Y$.i={};b.MdGiWorldDraw=Y$;Y$.prototype.connect=Y$.prototype.connect=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);kca(c,a)};
  2038. Y$.prototype.drawEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);lca(c,a)};Y$.prototype.drawOsnapEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);mca(c,a)};Y$.prototype.trueColor=function(){return k(nca(this.g),v$)};Y$.prototype.setTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!oca(c,a)};Y$.prototype.connectVecOsnapEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);pca(c,a)};
  2039. Y$.prototype.connectVecExplodeEntity=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);qca(c,a)};Y$.prototype.__destroy__=function(){rca(this.g)};function Z(){throw"cannot construct a MdDbDwgBackgroundEntity, no constructor in IDL";}Z.prototype=Object.create(x.prototype);Z.prototype.constructor=Z;Z.prototype.h=Z;Z.i={};b.MdDbDwgBackgroundEntity=Z;Z.prototype.setShow=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!sca(d,a,c)};
  2040. Z.prototype.isShow=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!tca(c,a)};Z.prototype.setShowColor=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return!!uca(d,a,c)};Z.prototype.getBackgroundDatabase=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(vca(c,a),v)};Z.prototype.clearAll=function(){return!!wca(this.g)};
  2041. Z.prototype.clearDwg=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!xca(c,a)};Z.prototype.explode=function(){return k(yca(this.g),y)};Z.prototype.TrueColor=function(){return k(zca(this.g),v$)};Z.prototype.SetTrueColor=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Aca(c,a)};Z.prototype.ColorIndex=function(){return Bca(this.g)};Z.prototype.SetColorIndex=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Cca(c,a)};Z.prototype.Layer=function(){return g(Dca(this.g))};
  2042. Z.prototype.SetLayer=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Eca(c,a)};Z.prototype.LinetypeScale=function(){return Fca(this.g)};Z.prototype.SetLinetypeScale=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Gca(c,a)};Z.prototype.Visible=function(){return!!Hca(this.g)};Z.prototype.SetVisible=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Ica(c,a)};Z.prototype.Lineweight=function(){return Jca(this.g)};
  2043. Z.prototype.SetLineweight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Kca(c,a)};Z.prototype.TextStyle=function(){return g(Lca(this.g))};Z.prototype.SetTextStyle=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Mca(c,a)};Z.prototype.Highlight=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Nca(c,a)};Z.prototype.Move=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Oca(d,a,c)};
  2044. Z.prototype.Rotate=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Pca(d,a,c)};Z.prototype.Mirror=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Qca(d,a,c)};Z.prototype.ScaleEntity=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!Rca(d,a,c)};Z.prototype.TransformBy=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Sca(c,a)};
  2045. Z.prototype.GetBoundingBox=function(){return k(Tca(this.g),y)};Z.prototype.GetXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return k(Uca(c,a),y)};Z.prototype.SetXData=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Vca(c,a)};Z.prototype.GetxDataString=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return g(Wca(d,a,c))};
  2046. Z.prototype.SetxDataString=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d=d&&"object"===typeof d?d.g:r(d);return!!Xca(e,a,c,d)};Z.prototype.GetxDataDouble=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return Yca(d,a,c)};
  2047. Z.prototype.SetxDataDouble=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!Zca(e,a,c,d)};Z.prototype.GetxDataLong=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return $ca(d,a,c)};Z.prototype.SetxDataLong=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!ada(e,a,c,d)};
  2048. Z.prototype.GetxDataPoint=function(a,c){var d=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);return k(bda(d,a,c),z)};Z.prototype.SetxDataPoint=function(a,c,d){var e=this.g;m();a=a&&"object"===typeof a?a.g:r(a);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);return!!cda(e,a,c,d)};Z.prototype.DeleteXData=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!dda(c,a)};Z.prototype.GetAllAppName=function(){return k(eda(this.g),w$)};
  2049. Z.prototype.LayerId=function(){return fda(this.g)};Z.prototype.SetLayerId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!gda(c,a)};Z.prototype.LinetypeId=function(){return hda(this.g)};Z.prototype.SetLinetypeId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!ida(c,a)};Z.prototype.Linetype=function(){return g(jda(this.g))};Z.prototype.SetLinetype=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!kda(c,a)};Z.prototype.TextStyleId=function(){return lda(this.g)};
  2050. Z.prototype.SetTextStyleId=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!mda(c,a)};Z.prototype.IntersectWith=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return k(nda(d,a,c),w)};Z.prototype.getArea=function(){return oda(this.g)};Z.prototype.disableUpdateDisplay=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!pda(c,a)};Z.prototype.isPropertiesWindowCustom=function(){return!!qda(this.g)};
  2051. Z.prototype.setPropertiesWindowCustom=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!rda(c,a)};Z.prototype.updateDisplay=function(){return!!sda(this.g)};Z.prototype.DrawOrder=function(){return tda(this.g)};Z.prototype.SetDrawOrder=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!uda(c,a)};Z.prototype.normal=function(){return k(vda(this.g),A)};Z.prototype.setNormal=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!wda(c,a)};Z.prototype.GetObjectID=function(){return xda(this.g)};
  2052. Z.prototype.Erase=function(){return!!yda(this.g)};Z.prototype.isErased=function(){return!!zda(this.g)};Z.prototype.unErase=function(){return!!Ada(this.g)};Z.prototype.ConnectionTempObject=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Bda(c,a)};Z.prototype.GetExtensionDictionary=function(){return k(Cda(this.g),u)};Z.prototype.CreateExtensionDictionary=function(){return!!Dda(this.g)};Z.prototype.IsHaveExtensionDictionary=function(){return!!Eda(this.g)};
  2053. Z.prototype.Clone=function(){return k(Fda(this.g),t)};Z.prototype.GetHandle=function(){return g(Gda(this.g))};Z.prototype.GetDatabase=function(){return k(Hda(this.g),v)};Z.prototype.GetDatabaseIndexId=function(){return Ida(this.g)};Z.prototype.GetOwnerID=function(){return Jda(this.g)};Z.prototype.assertObjectModification=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Kda(c,a)};
  2054. Z.prototype.moveGripPointsAt=function(a,c,d,e){var f=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);d&&"object"===typeof d&&(d=d.g);e&&"object"===typeof e&&(e=e.g);return!!Lda(f,a,c,d,e)};Z.prototype.getGripPoints=function(){return k(Mda(this.g),w)};Z.prototype.getObjectName=function(){return g(Nda(this.g))};Z.prototype.getDxf0=function(){return g(Oda(this.g))};Z.prototype.getCustomEntityTypeName=function(){return g(Pda(this.g))};Z.prototype.getCustomEntityid=function(){return Qda(this.g)};
  2055. Z.prototype.getCustomEntityTempid=function(){return Rda(this.g)};Z.prototype.setCustomEntityTempid=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Sda(c,a)};Z.prototype.getJson=function(){return g(Tda(this.g))};Z.prototype.setJson=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Uda(c,a)};Z.prototype.isKindOf=function(a){var c=this.g;m();a=a&&"object"===typeof a?a.g:r(a);return!!Vda(c,a)};Z.prototype.isNull=function(){return!!Wda(this.g)};
  2056. Z.prototype.__destroy__=function(){Xda(this.g)};function Z$(){this.g=Yda();n$(Z$)[this.g]=this}Z$.prototype=Object.create(m$.prototype);Z$.prototype.constructor=Z$;Z$.prototype.h=Z$;Z$.i={};b.MxCompare=Z$;Z$.prototype.Do=function(a){var c=this.g;a&&"object"===typeof a&&(a=a.g);return!!Zda(c,a)};Z$.prototype.getResult=function(){return k($da(this.g),y)};Z$.prototype.__destroy__=function(){aea(this.g)};function $$(){this.g=cea();n$($$)[this.g]=this}$$.prototype=Object.create(m$.prototype);
  2057. $$.prototype.constructor=$$;$$.prototype.h=$$;$$.i={};b.MxTempModifyColor=$$;$$.prototype.Do=function(a,c){var d=this.g;a&&"object"===typeof a&&(a=a.g);c&&"object"===typeof c&&(c=c.g);return!!dea(d,a,c)};$$.prototype.DoRestore=function(){eea(this.g)};$$.prototype.__destroy__=function(){fea(this.g)};
  2058. return mxdrawassembly.ready
  2059. }
  2060. );
  2061. })();
  2062. if (typeof exports === 'object' && typeof module === 'object')
  2063. module.exports = mxdrawassembly;
  2064. else if (typeof define === 'function' && define['amd'])
  2065. define([], function() { return mxdrawassembly; });
  2066. else if (typeof exports === 'object')
  2067. exports["mxdrawassembly"] = mxdrawassembly;
  2068. self.mxdrawassembly = mxdrawassembly;