barcode-detector 2.1.5 → 2.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  A [Barcode Detection API](https://wicg.github.io/shape-detection-api/#barcode-detection-api) polyfill that uses [ZXing-C++ WebAssembly](https://github.com/Sec-ant/zxing-wasm) under the hood.
6
6
 
7
- > This package was originally published as [`@sec-ant/barcode-detector`](https://www.npmjs.com/package/@sec-ant/barcode-detector) on the npm registry. With appreciation for the generous offer from [@gruhn](https://github.com/gruhn), the package is now released under the name `barcode-detector` starting from version 2.0.0. The original package under the name `@sec-ant/barcode-detector` is deprecated.
7
+ Supported barcode formats: `aztec`, `code_128`, `code_39`, `code_93`, `codabar`, `databar`, `databar_expanded`, `data_matrix`, `dx_film_edge`, `ean_13`, `ean_8`, `itf`, `maxi_code` (only generated ones, and no position info), `micro_qr_code`, `pdf417`, `qr_code`, `rm_qr_code`, `upc_a`, `upc_e`, `linear_codes` and `matrix_codes` (for convenience).
8
8
 
9
9
  ## Install
10
10
 
@@ -1,7 +1,7 @@
1
1
  /// <reference types="dom-webcodecs" />
2
2
  import { type ZXingReaderModule } from "zxing-wasm/reader";
3
- import { BARCODE_DETECTOR_FORMATS } from "./utils.js";
4
- export type BarcodeFormat = (typeof BARCODE_DETECTOR_FORMATS)[number];
3
+ import { type BarcodeFormat, type ReadResultBarcodeFormat } from "./utils.js";
4
+ export { type BarcodeFormat } from "./utils.js";
5
5
  export interface BarcodeDetectorOptions {
6
6
  formats?: BarcodeFormat[];
7
7
  }
@@ -12,7 +12,7 @@ export interface Point2D {
12
12
  export interface DetectedBarcode {
13
13
  boundingBox: DOMRectReadOnly;
14
14
  rawValue: string;
15
- format: BarcodeFormat;
15
+ format: ReadResultBarcodeFormat;
16
16
  cornerPoints: [Point2D, Point2D, Point2D, Point2D];
17
17
  }
18
18
  interface CustomEventMap {
package/dist/cjs/pure.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";var Ye=(i,f,s)=>{if(!f.has(i))throw TypeError("Cannot "+s)};var Kt=(i,f,s)=>(Ye(i,f,"read from private field"),s?s.call(i):f.get(i)),ze=(i,f,s)=>{if(f.has(i))throw TypeError("Cannot add the same private member more than once");f instanceof WeakSet?f.add(i):f.set(i,s)},Ne=(i,f,s,w)=>(Ye(i,f,"write to private field"),w?w.call(i,s):f.set(i,s),s);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const Ge=["aztec","code_128","code_39","code_93","codabar","data_matrix","ean_13","ean_8","itf","pdf417","qr_code","upc_a","upc_e","unknown"];function ba(i){if(Ze(i))return{width:i.naturalWidth,height:i.naturalHeight};if(Je(i))return{width:i.width.baseVal.value,height:i.height.baseVal.value};if(Ke(i))return{width:i.videoWidth,height:i.videoHeight};if(er(i))return{width:i.width,height:i.height};if(nr(i))return{width:i.displayWidth,height:i.displayHeight};if(tr(i))return{width:i.width,height:i.height};if(rr(i))return{width:i.width,height:i.height};throw new TypeError("The provided value is not of type '(Blob or HTMLCanvasElement or HTMLImageElement or HTMLVideoElement or ImageBitmap or ImageData or OffscreenCanvas or SVGImageElement or VideoFrame)'.")}function Ze(i){try{return i instanceof HTMLImageElement}catch{return!1}}function Je(i){try{return i instanceof SVGImageElement}catch{return!1}}function Ke(i){try{return i instanceof HTMLVideoElement}catch{return!1}}function tr(i){try{return i instanceof HTMLCanvasElement}catch{return!1}}function er(i){try{return i instanceof ImageBitmap}catch{return!1}}function rr(i){try{return i instanceof OffscreenCanvas}catch{return!1}}function nr(i){try{return i instanceof VideoFrame}catch{return!1}}function ar(i){try{return i instanceof Blob}catch{return!1}}function Ca(i){try{return i instanceof ImageData}catch{return!1}}function _a(i,f){try{const s=new OffscreenCanvas(i,f);if(s.getContext("2d")instanceof OffscreenCanvasRenderingContext2D)return s;throw void 0}catch{const s=document.createElement("canvas");return s.width=i,s.height=f,s}}async function or(i){if(Ze(i)&&!await Aa(i))throw new DOMException("Failed to load or decode HTMLImageElement.","InvalidStateError");if(Je(i)&&!await Oa(i))throw new DOMException("Failed to load or decode SVGImageElement.","InvalidStateError");if(nr(i)&&Da(i))throw new DOMException("VideoFrame is closed.","InvalidStateError");if(Ke(i)&&(i.readyState===0||i.readyState===1))throw new DOMException("Invalid element or state.","InvalidStateError");if(er(i)&&Fa(i))throw new DOMException("The image source is detached.","InvalidStateError");const{width:f,height:s}=ba(i);if(f===0||s===0)return null;const v=_a(f,s).getContext("2d");v.drawImage(i,0,0);try{return v.getImageData(0,0,f,s)}catch{throw new DOMException("Source would taint origin.","SecurityError")}}async function Ta(i){let f;try{if(globalThis.createImageBitmap)f=await createImageBitmap(i);else if(globalThis.Image){f=new Image;let w="";try{w=URL.createObjectURL(i),f.src=w,await f.decode()}finally{URL.revokeObjectURL(w)}}else return i}catch{throw new DOMException("Failed to load or decode Blob.","InvalidStateError")}return await or(f)}function Pa(i){const{width:f,height:s}=i;if(f===0||s===0)return null;const w=i.getContext("2d");try{return w.getImageData(0,0,f,s)}catch{throw new DOMException("Source would taint origin.","SecurityError")}}async function Ea(i){if(ar(i))return await Ta(i);if(Ca(i)){if(Sa(i))throw new DOMException("The image data has been detached.","InvalidStateError");return i}return tr(i)||rr(i)?Pa(i):await or(i)}async function Aa(i){try{return await i.decode(),!0}catch{return!1}}async function Oa(i){var f;try{return await((f=i.decode)==null?void 0:f.call(i)),!0}catch{return!1}}function Da(i){return i.format===null}function Sa(i){return i.data.buffer.byteLength===0}function Fa(i){return i.width===0&&i.height===0}function Xe(i,f){return i instanceof DOMException?new DOMException(`${f}: ${i.message}`,i.name):i instanceof Error?new i.constructor(`${f}: ${i.message}`):new Error(`${f}: ${i}`)}const qe=["Aztec","Codabar","Code128","Code39","Code93","DataBar","DataBarExpanded","DataMatrix","EAN-13","EAN-8","ITF","Linear-Codes","Matrix-Codes","MaxiCode","MicroQRCode","None","PDF417","QRCode","rMQRCode","UPC-A","UPC-E"];function xa(i){return i.join("|")}function Ma(i){const f=Qe(i);let s=0,w=qe.length-1;for(;s<=w;){const v=Math.floor((s+w)/2),$=qe[v],H=Qe($);if(H===f)return $;H<f?s=v+1:w=v-1}return"None"}function Qe(i){return i.toLowerCase().replace(/_-\[\]/g,"")}function ja(i,f){return i.Binarizer[f]}function Ia(i,f){return i.CharacterSet[f]}const Ra=["Text","Binary","Mixed","GS1","ISO15434","UnknownECI"];function Wa(i){return Ra[i.value]}function ka(i,f){return i.EanAddOnSymbol[f]}function Ha(i,f){return i.TextMode[f]}const $t={formats:[],tryHarder:!0,tryRotate:!0,tryInvert:!0,tryDownscale:!0,binarizer:"LocalAverage",isPure:!1,downscaleFactor:3,downscaleThreshold:500,minLineCount:2,maxNumberOfSymbols:255,tryCode39ExtendedMode:!1,validateCode39CheckSum:!1,validateITFCheckSum:!1,returnCodabarStartEnd:!1,returnErrors:!1,eanAddOnSymbol:"Read",textMode:"Plain",characterSet:"Unknown"};function ir(i,f){return{...f,formats:xa(f.formats),binarizer:ja(i,f.binarizer),eanAddOnSymbol:ka(i,f.eanAddOnSymbol),textMode:Ha(i,f.textMode),characterSet:Ia(i,f.characterSet)}}const Ba={width:200,height:200,format:"QRCode",characterSet:"UTF8",eccLevel:-1,margin:10};function sr(i){return{...i,format:Ma(i.format),eccLevel:i.eccLevel,contentType:Wa(i.contentType)}}const Ua={locateFile:(i,f)=>{const s=i.match(/_(.+?)\.wasm$/);return s?`https://fastly.jsdelivr.net/npm/zxing-wasm@1.0.0/dist/${s[1]}/${i}`:f+i}};let te=new WeakMap;function re(i,f){var s;const w=te.get(i);if(w!=null&&w.modulePromise&&(f===void 0||Object.is(f,w.moduleOverrides)))return w.modulePromise;const v=(s=f!=null?f:w==null?void 0:w.moduleOverrides)!=null?s:Ua,$=i({...v});return te.set(i,{moduleOverrides:v,modulePromise:$}),$}function Va(i,f){te.set(i,{moduleOverrides:f})}async function La(i,f,s=$t){const w={...$t,...s},v=await re(i),{size:$}=f,H=new Uint8Array(await f.arrayBuffer()),L=v._malloc($);v.HEAPU8.set(H,L);const B=v.readBarcodesFromImage(L,$,ir(v,w));v._free(L);const O=[];for(let Y=0;Y<B.size();++Y)O.push(sr(B.get(Y)));return O}async function Ya(i,f,s=$t){const w={...$t,...s},v=await re(i),{data:$,width:H,height:L,data:{byteLength:B}}=f,O=v._malloc(B);v.HEAPU8.set($,O);const Y=v.readBarcodesFromPixmap(O,H,L,ir(v,w));v._free(O);const G=[];for(let U=0;U<Y.size();++U)G.push(sr(Y.get(U)));return G}structuredClone($t);structuredClone(Ba);var jt=(()=>{var i=typeof document<"u"&&document.currentScript?document.currentScript.src:void 0;return function(f={}){var s=f,w,v;s.ready=new Promise((t,e)=>{w=t,v=e});var $=Object.assign({},s),H="./this.program",L=typeof window=="object",B=typeof importScripts=="function";typeof process=="object"&&typeof process.versions=="object"&&process.versions.node;var O="";function Y(t){return s.locateFile?s.locateFile(t,O):O+t}var G;(L||B)&&(B?O=self.location.href:typeof document<"u"&&document.currentScript&&(O=document.currentScript.src),i&&(O=i),O.indexOf("blob:")!==0?O=O.substr(0,O.replace(/[?#].*/,"").lastIndexOf("/")+1):O="",B&&(G=t=>{var e=new XMLHttpRequest;return e.open("GET",t,!1),e.responseType="arraybuffer",e.send(null),new Uint8Array(e.response)})),s.print||console.log.bind(console);var U=s.printErr||console.error.bind(console);Object.assign(s,$),$=null,s.arguments&&s.arguments,s.thisProgram&&(H=s.thisProgram),s.quit&&s.quit;var Q;s.wasmBinary&&(Q=s.wasmBinary),typeof WebAssembly!="object"&&ft("no native wasm support detected");var tt,lt=!1;function It(t,e){t||ft(e)}var V,k,ot,dt,W,_,ne,ae;function oe(){var t=tt.buffer;s.HEAP8=V=new Int8Array(t),s.HEAP16=ot=new Int16Array(t),s.HEAPU8=k=new Uint8Array(t),s.HEAPU16=dt=new Uint16Array(t),s.HEAP32=W=new Int32Array(t),s.HEAPU32=_=new Uint32Array(t),s.HEAPF32=ne=new Float32Array(t),s.HEAPF64=ae=new Float64Array(t)}var ie=[],se=[],ue=[];function ur(){if(s.preRun)for(typeof s.preRun=="function"&&(s.preRun=[s.preRun]);s.preRun.length;)dr(s.preRun.shift());Rt(ie)}function cr(){Rt(se)}function lr(){if(s.postRun)for(typeof s.postRun=="function"&&(s.postRun=[s.postRun]);s.postRun.length;)fr(s.postRun.shift());Rt(ue)}function dr(t){ie.unshift(t)}function hr(t){se.unshift(t)}function fr(t){ue.unshift(t)}var et=0,ht=null;function pr(t){et++,s.monitorRunDependencies&&s.monitorRunDependencies(et)}function mr(t){if(et--,s.monitorRunDependencies&&s.monitorRunDependencies(et),et==0&&ht){var e=ht;ht=null,e()}}function ft(t){s.onAbort&&s.onAbort(t),t="Aborted("+t+")",U(t),lt=!0,t+=". Build with -sASSERTIONS for more info.";var e=new WebAssembly.RuntimeError(t);throw v(e),e}var yr="data:application/octet-stream;base64,",ce=t=>t.startsWith(yr),it;it="zxing_reader.wasm",ce(it)||(it=Y(it));function le(t){if(t==it&&Q)return new Uint8Array(Q);if(G)return G(t);throw"both async and sync fetching of the wasm failed"}function vr(t){return!Q&&(L||B)&&typeof fetch=="function"?fetch(t,{credentials:"same-origin"}).then(e=>{if(!e.ok)throw"failed to load wasm binary file at '"+t+"'";return e.arrayBuffer()}).catch(()=>le(t)):Promise.resolve().then(()=>le(t))}function de(t,e,r){return vr(t).then(n=>WebAssembly.instantiate(n,e)).then(n=>n).then(r,n=>{U(`failed to asynchronously prepare wasm: ${n}`),ft(n)})}function gr(t,e,r,n){return!t&&typeof WebAssembly.instantiateStreaming=="function"&&!ce(e)&&typeof fetch=="function"?fetch(e,{credentials:"same-origin"}).then(a=>{var o=WebAssembly.instantiateStreaming(a,r);return o.then(n,function(u){return U(`wasm streaming compile failed: ${u}`),U("falling back to ArrayBuffer instantiation"),de(e,r,n)})}):de(e,r,n)}function wr(){var t={a:ta};function e(n,a){return E=n.exports,tt=E.fa,oe(),_e=E.ja,hr(E.ga),mr(),E}pr();function r(n){e(n.instance)}if(s.instantiateWasm)try{return s.instantiateWasm(t,e)}catch(n){U(`Module.instantiateWasm callback failed with error: ${n}`),v(n)}return gr(Q,it,t,r).catch(v),{}}var Rt=t=>{for(;t.length>0;)t.shift()(s)};s.noExitRuntime;var bt=[],Ct=0,$r=t=>{var e=new Wt(t);return e.get_caught()||(e.set_caught(!0),Ct--),e.set_rethrown(!1),bt.push(e),He(e.excPtr),e.get_exception_ptr()},Z=0,br=()=>{A(0,0);var t=bt.pop();ke(t.excPtr),Z=0};function Wt(t){this.excPtr=t,this.ptr=t-24,this.set_type=function(e){_[this.ptr+4>>2]=e},this.get_type=function(){return _[this.ptr+4>>2]},this.set_destructor=function(e){_[this.ptr+8>>2]=e},this.get_destructor=function(){return _[this.ptr+8>>2]},this.set_caught=function(e){e=e?1:0,V[this.ptr+12>>0]=e},this.get_caught=function(){return V[this.ptr+12>>0]!=0},this.set_rethrown=function(e){e=e?1:0,V[this.ptr+13>>0]=e},this.get_rethrown=function(){return V[this.ptr+13>>0]!=0},this.init=function(e,r){this.set_adjusted_ptr(0),this.set_type(e),this.set_destructor(r)},this.set_adjusted_ptr=function(e){_[this.ptr+16>>2]=e},this.get_adjusted_ptr=function(){return _[this.ptr+16>>2]},this.get_exception_ptr=function(){var e=Ue(this.get_type());if(e)return _[this.excPtr>>2];var r=this.get_adjusted_ptr();return r!==0?r:this.excPtr}}var Cr=t=>{throw Z||(Z=t),Z},kt=t=>{var e=Z;if(!e)return wt(0),0;var r=new Wt(e);r.set_adjusted_ptr(e);var n=r.get_type();if(!n)return wt(0),e;for(var a in t){var o=t[a];if(o===0||o===n)break;var u=r.ptr+16;if(Be(o,n,u))return wt(o),e}return wt(n),e},_r=()=>kt([]),Tr=t=>kt([t]),Pr=(t,e)=>kt([t,e]),Er=()=>{var t=bt.pop();t||ft("no exception to throw");var e=t.excPtr;throw t.get_rethrown()||(bt.push(t),t.set_rethrown(!0),t.set_caught(!1),Ct++),Z=e,Z},Ar=(t,e,r)=>{var n=new Wt(t);throw n.init(e,r),Z=t,Ct++,Z},Or=()=>Ct,_t={},he=t=>{for(;t.length;){var e=t.pop(),r=t.pop();r(e)}};function Ht(t){return this.fromWireType(W[t>>2])}var st={},rt={},Tt={},fe,Pt=t=>{throw new fe(t)},nt=(t,e,r)=>{t.forEach(function(c){Tt[c]=e});function n(c){var l=r(c);l.length!==t.length&&Pt("Mismatched type converter count");for(var h=0;h<t.length;++h)X(t[h],l[h])}var a=new Array(e.length),o=[],u=0;e.forEach((c,l)=>{rt.hasOwnProperty(c)?a[l]=rt[c]:(o.push(c),st.hasOwnProperty(c)||(st[c]=[]),st[c].push(()=>{a[l]=rt[c],++u,u===o.length&&n(a)}))}),o.length===0&&n(a)},Dr=t=>{var e=_t[t];delete _t[t];var r=e.rawConstructor,n=e.rawDestructor,a=e.fields,o=a.map(u=>u.getterReturnType).concat(a.map(u=>u.setterArgumentType));nt([t],o,u=>{var c={};return a.forEach((l,h)=>{var p=l.fieldName,y=u[h],g=l.getter,b=l.getterContext,T=u[h+a.length],I=l.setter,P=l.setterContext;c[p]={read:R=>y.fromWireType(g(b,R)),write:(R,d)=>{var m=[];I(P,R,T.toWireType(m,d)),he(m)}}}),[{name:e.name,fromWireType:l=>{var h={};for(var p in c)h[p]=c[p].read(l);return n(l),h},toWireType:(l,h)=>{for(var p in c)if(!(p in h))throw new TypeError(`Missing field: "${p}"`);var y=r();for(p in c)c[p].write(y,h[p]);return l!==null&&l.push(n,y),y},argPackAdvance:q,readValueFromPointer:Ht,destructorFunction:n}]})},Sr=(t,e,r,n,a)=>{},Fr=()=>{for(var t=new Array(256),e=0;e<256;++e)t[e]=String.fromCharCode(e);pe=t},pe,j=t=>{for(var e="",r=t;k[r];)e+=pe[k[r++]];return e},ut,C=t=>{throw new ut(t)};function xr(t,e,r={}){var n=e.name;if(t||C(`type "${n}" must have a positive integer typeid pointer`),rt.hasOwnProperty(t)){if(r.ignoreDuplicateRegistrations)return;C(`Cannot register type '${n}' twice`)}if(rt[t]=e,delete Tt[t],st.hasOwnProperty(t)){var a=st[t];delete st[t],a.forEach(o=>o())}}function X(t,e,r={}){if(!("argPackAdvance"in e))throw new TypeError("registerType registeredInstance requires argPackAdvance");return xr(t,e,r)}var q=8,Mr=(t,e,r,n)=>{e=j(e),X(t,{name:e,fromWireType:function(a){return!!a},toWireType:function(a,o){return o?r:n},argPackAdvance:q,readValueFromPointer:function(a){return this.fromWireType(k[a])},destructorFunction:null})},jr=t=>({count:t.count,deleteScheduled:t.deleteScheduled,preservePointerOnDelete:t.preservePointerOnDelete,ptr:t.ptr,ptrType:t.ptrType,smartPtr:t.smartPtr,smartPtrType:t.smartPtrType}),Bt=t=>{function e(r){return r.$$.ptrType.registeredClass.name}C(e(t)+" instance already deleted")},Ut=!1,me=t=>{},Ir=t=>{t.smartPtr?t.smartPtrType.rawDestructor(t.smartPtr):t.ptrType.registeredClass.rawDestructor(t.ptr)},ye=t=>{t.count.value-=1;var e=t.count.value===0;e&&Ir(t)},ve=(t,e,r)=>{if(e===r)return t;if(r.baseClass===void 0)return null;var n=ve(t,e,r.baseClass);return n===null?null:r.downcast(n)},ge={},Rr=()=>Object.keys(yt).length,Wr=()=>{var t=[];for(var e in yt)yt.hasOwnProperty(e)&&t.push(yt[e]);return t},pt=[],Vt=()=>{for(;pt.length;){var t=pt.pop();t.$$.deleteScheduled=!1,t.delete()}},mt,kr=t=>{mt=t,pt.length&&mt&&mt(Vt)},Hr=()=>{s.getInheritedInstanceCount=Rr,s.getLiveInheritedInstances=Wr,s.flushPendingDeletes=Vt,s.setDelayFunction=kr},yt={},Br=(t,e)=>{for(e===void 0&&C("ptr should not be undefined");t.baseClass;)e=t.upcast(e),t=t.baseClass;return e},Ur=(t,e)=>(e=Br(t,e),yt[e]),Et=(t,e)=>{(!e.ptrType||!e.ptr)&&Pt("makeClassHandle requires ptr and ptrType");var r=!!e.smartPtrType,n=!!e.smartPtr;return r!==n&&Pt("Both smartPtrType and smartPtr must be specified"),e.count={value:1},vt(Object.create(t,{$$:{value:e}}))};function Vr(t){var e=this.getPointee(t);if(!e)return this.destructor(t),null;var r=Ur(this.registeredClass,e);if(r!==void 0){if(r.$$.count.value===0)return r.$$.ptr=e,r.$$.smartPtr=t,r.clone();var n=r.clone();return this.destructor(t),n}function a(){return this.isSmartPointer?Et(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:e,smartPtrType:this,smartPtr:t}):Et(this.registeredClass.instancePrototype,{ptrType:this,ptr:t})}var o=this.registeredClass.getActualType(e),u=ge[o];if(!u)return a.call(this);var c;this.isConst?c=u.constPointerType:c=u.pointerType;var l=ve(e,this.registeredClass,c.registeredClass);return l===null?a.call(this):this.isSmartPointer?Et(c.registeredClass.instancePrototype,{ptrType:c,ptr:l,smartPtrType:this,smartPtr:t}):Et(c.registeredClass.instancePrototype,{ptrType:c,ptr:l})}var vt=t=>typeof FinalizationRegistry>"u"?(vt=e=>e,t):(Ut=new FinalizationRegistry(e=>{ye(e.$$)}),vt=e=>{var r=e.$$,n=!!r.smartPtr;if(n){var a={$$:r};Ut.register(e,a,e)}return e},me=e=>Ut.unregister(e),vt(t)),Lr=()=>{Object.assign(At.prototype,{isAliasOf(t){if(!(this instanceof At)||!(t instanceof At))return!1;var e=this.$$.ptrType.registeredClass,r=this.$$.ptr;t.$$=t.$$;for(var n=t.$$.ptrType.registeredClass,a=t.$$.ptr;e.baseClass;)r=e.upcast(r),e=e.baseClass;for(;n.baseClass;)a=n.upcast(a),n=n.baseClass;return e===n&&r===a},clone(){if(this.$$.ptr||Bt(this),this.$$.preservePointerOnDelete)return this.$$.count.value+=1,this;var t=vt(Object.create(Object.getPrototypeOf(this),{$$:{value:jr(this.$$)}}));return t.$$.count.value+=1,t.$$.deleteScheduled=!1,t},delete(){this.$$.ptr||Bt(this),this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete&&C("Object already scheduled for deletion"),me(this),ye(this.$$),this.$$.preservePointerOnDelete||(this.$$.smartPtr=void 0,this.$$.ptr=void 0)},isDeleted(){return!this.$$.ptr},deleteLater(){return this.$$.ptr||Bt(this),this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete&&C("Object already scheduled for deletion"),pt.push(this),pt.length===1&&mt&&mt(Vt),this.$$.deleteScheduled=!0,this}})};function At(){}var Yr=48,zr=57,we=t=>{if(t===void 0)return"_unknown";t=t.replace(/[^a-zA-Z0-9_]/g,"$");var e=t.charCodeAt(0);return e>=Yr&&e<=zr?`_${t}`:t};function Lt(t,e){return t=we(t),{[t]:function(){return e.apply(this,arguments)}}[t]}var $e=(t,e,r)=>{if(t[e].overloadTable===void 0){var n=t[e];t[e]=function(){return t[e].overloadTable.hasOwnProperty(arguments.length)||C(`Function '${r}' called with an invalid number of arguments (${arguments.length}) - expects one of (${t[e].overloadTable})!`),t[e].overloadTable[arguments.length].apply(this,arguments)},t[e].overloadTable=[],t[e].overloadTable[n.argCount]=n}},Yt=(t,e,r)=>{s.hasOwnProperty(t)?((r===void 0||s[t].overloadTable!==void 0&&s[t].overloadTable[r]!==void 0)&&C(`Cannot register public name '${t}' twice`),$e(s,t,t),s.hasOwnProperty(r)&&C(`Cannot register multiple overloads of a function with the same number of arguments (${r})!`),s[t].overloadTable[r]=e):(s[t]=e,r!==void 0&&(s[t].numArguments=r))};function Nr(t,e,r,n,a,o,u,c){this.name=t,this.constructor=e,this.instancePrototype=r,this.rawDestructor=n,this.baseClass=a,this.getActualType=o,this.upcast=u,this.downcast=c,this.pureVirtualFunctions=[]}var zt=(t,e,r)=>{for(;e!==r;)e.upcast||C(`Expected null or instance of ${r.name}, got an instance of ${e.name}`),t=e.upcast(t),e=e.baseClass;return t};function Gr(t,e){if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),0;e.$$||C(`Cannot pass "${qt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`);var r=e.$$.ptrType.registeredClass,n=zt(e.$$.ptr,r,this.registeredClass);return n}function Xr(t,e){var r;if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),this.isSmartPointer?(r=this.rawConstructor(),t!==null&&t.push(this.rawDestructor,r),r):0;e.$$||C(`Cannot pass "${qt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`),!this.isConst&&e.$$.ptrType.isConst&&C(`Cannot convert argument of type ${e.$$.smartPtrType?e.$$.smartPtrType.name:e.$$.ptrType.name} to parameter type ${this.name}`);var n=e.$$.ptrType.registeredClass;if(r=zt(e.$$.ptr,n,this.registeredClass),this.isSmartPointer)switch(e.$$.smartPtr===void 0&&C("Passing raw pointer to smart pointer is illegal"),this.sharingPolicy){case 0:e.$$.smartPtrType===this?r=e.$$.smartPtr:C(`Cannot convert argument of type ${e.$$.smartPtrType?e.$$.smartPtrType.name:e.$$.ptrType.name} to parameter type ${this.name}`);break;case 1:r=e.$$.smartPtr;break;case 2:if(e.$$.smartPtrType===this)r=e.$$.smartPtr;else{var a=e.clone();r=this.rawShare(r,K.toHandle(()=>a.delete())),t!==null&&t.push(this.rawDestructor,r)}break;default:C("Unsupporting sharing policy")}return r}function qr(t,e){if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),0;e.$$||C(`Cannot pass "${qt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`),e.$$.ptrType.isConst&&C(`Cannot convert argument of type ${e.$$.ptrType.name} to parameter type ${this.name}`);var r=e.$$.ptrType.registeredClass,n=zt(e.$$.ptr,r,this.registeredClass);return n}function be(t){return this.fromWireType(_[t>>2])}var Qr=()=>{Object.assign(Ot.prototype,{getPointee(t){return this.rawGetPointee&&(t=this.rawGetPointee(t)),t},destructor(t){this.rawDestructor&&this.rawDestructor(t)},argPackAdvance:q,readValueFromPointer:be,deleteObject(t){t!==null&&t.delete()},fromWireType:Vr})};function Ot(t,e,r,n,a,o,u,c,l,h,p){this.name=t,this.registeredClass=e,this.isReference=r,this.isConst=n,this.isSmartPointer=a,this.pointeeType=o,this.sharingPolicy=u,this.rawGetPointee=c,this.rawConstructor=l,this.rawShare=h,this.rawDestructor=p,!a&&e.baseClass===void 0?n?(this.toWireType=Gr,this.destructorFunction=null):(this.toWireType=qr,this.destructorFunction=null):this.toWireType=Xr}var Ce=(t,e,r)=>{s.hasOwnProperty(t)||Pt("Replacing nonexistant public symbol"),s[t].overloadTable!==void 0&&r!==void 0?s[t].overloadTable[r]=e:(s[t]=e,s[t].argCount=r)},Zr=(t,e,r)=>{var n=s["dynCall_"+t];return r&&r.length?n.apply(null,[e].concat(r)):n.call(null,e)},Dt=[],_e,D=t=>{var e=Dt[t];return e||(t>=Dt.length&&(Dt.length=t+1),Dt[t]=e=_e.get(t)),e},Jr=(t,e,r)=>{if(t.includes("j"))return Zr(t,e,r);var n=D(e).apply(null,r);return n},Kr=(t,e)=>{var r=[];return function(){return r.length=0,Object.assign(r,arguments),Jr(t,e,r)}},N=(t,e)=>{t=j(t);function r(){return t.includes("j")?Kr(t,e):D(e)}var n=r();return typeof n!="function"&&C(`unknown function pointer with signature ${t}: ${e}`),n},tn=(t,e)=>{var r=Lt(e,function(n){this.name=e,this.message=n;var a=new Error(n).stack;a!==void 0&&(this.stack=this.toString()+`
2
- `+a.replace(/^Error(:[^\n]*)?\n/,""))});return r.prototype=Object.create(t.prototype),r.prototype.constructor=r,r.prototype.toString=function(){return this.message===void 0?this.name:`${this.name}: ${this.message}`},r},Te,Pe=t=>{var e=We(t),r=j(e);return J(e),r},St=(t,e)=>{var r=[],n={};function a(o){if(!n[o]&&!rt[o]){if(Tt[o]){Tt[o].forEach(a);return}r.push(o),n[o]=!0}}throw e.forEach(a),new Te(`${t}: `+r.map(Pe).join([", "]))},en=(t,e,r,n,a,o,u,c,l,h,p,y,g)=>{p=j(p),o=N(a,o),c&&(c=N(u,c)),h&&(h=N(l,h)),g=N(y,g);var b=we(p);Yt(b,function(){St(`Cannot construct ${p} due to unbound types`,[n])}),nt([t,e,r],n?[n]:[],function(T){T=T[0];var I,P;n?(I=T.registeredClass,P=I.instancePrototype):P=At.prototype;var R=Lt(b,function(){if(Object.getPrototypeOf(this)!==d)throw new ut("Use 'new' to construct "+p);if(m.constructor_body===void 0)throw new ut(p+" has no accessible constructor");var Mt=m.constructor_body[arguments.length];if(Mt===void 0)throw new ut(`Tried to invoke ctor of ${p} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(m.constructor_body).toString()}) parameters instead!`);return Mt.apply(this,arguments)}),d=Object.create(P,{constructor:{value:R}});R.prototype=d;var m=new Nr(p,R,d,g,I,o,c,h);m.baseClass&&(m.baseClass.__derivedClasses===void 0&&(m.baseClass.__derivedClasses=[]),m.baseClass.__derivedClasses.push(m));var x=new Ot(p,m,!0,!1,!1),M=new Ot(p+"*",m,!1,!1,!1),at=new Ot(p+" const*",m,!1,!0,!1);return ge[t]={pointerType:M,constPointerType:at},Ce(b,R),[x,M,at]})},Nt=(t,e)=>{for(var r=[],n=0;n<t;n++)r.push(_[e+n*4>>2]);return r};function Gt(t,e,r,n,a,o){var u=e.length;u<2&&C("argTypes array size mismatch! Must at least get return value and 'this' types!");for(var c=e[1]!==null&&r!==null,l=!1,h=1;h<e.length;++h)if(e[h]!==null&&e[h].destructorFunction===void 0){l=!0;break}var p=e[0].name!=="void",y=u-2,g=new Array(y),b=[],T=[];return function(){arguments.length!==y&&C(`function ${t} called with ${arguments.length} arguments, expected ${y}`),T.length=0;var I;b.length=c?2:1,b[0]=a,c&&(I=e[1].toWireType(T,this),b[1]=I);for(var P=0;P<y;++P)g[P]=e[P+2].toWireType(T,arguments[P]),b.push(g[P]);var R=n.apply(null,b);function d(m){if(l)he(T);else for(var x=c?1:2;x<e.length;x++){var M=x===1?I:g[x-2];e[x].destructorFunction!==null&&e[x].destructorFunction(M)}if(p)return e[0].fromWireType(m)}return d(R)}}var rn=(t,e,r,n,a,o)=>{var u=Nt(e,r);a=N(n,a),nt([],[t],function(c){c=c[0];var l=`constructor ${c.name}`;if(c.registeredClass.constructor_body===void 0&&(c.registeredClass.constructor_body=[]),c.registeredClass.constructor_body[e-1]!==void 0)throw new ut(`Cannot register multiple constructors with identical number of parameters (${e-1}) for class '${c.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);return c.registeredClass.constructor_body[e-1]=()=>{St(`Cannot construct ${c.name} due to unbound types`,u)},nt([],u,h=>(h.splice(1,0,null),c.registeredClass.constructor_body[e-1]=Gt(l,h,null,a,o),[])),[]})},Ee=t=>{t=t.trim();const e=t.indexOf("(");return e!==-1?(It(t[t.length-1]==")","Parentheses for argument names should match."),t.substr(0,e)):t},nn=(t,e,r,n,a,o,u,c,l)=>{var h=Nt(r,n);e=j(e),e=Ee(e),o=N(a,o),nt([],[t],function(p){p=p[0];var y=`${p.name}.${e}`;e.startsWith("@@")&&(e=Symbol[e.substring(2)]),c&&p.registeredClass.pureVirtualFunctions.push(e);function g(){St(`Cannot call ${y} due to unbound types`,h)}var b=p.registeredClass.instancePrototype,T=b[e];return T===void 0||T.overloadTable===void 0&&T.className!==p.name&&T.argCount===r-2?(g.argCount=r-2,g.className=p.name,b[e]=g):($e(b,e,y),b[e].overloadTable[r-2]=g),nt([],h,function(I){var P=Gt(y,I,p,o,u);return b[e].overloadTable===void 0?(P.argCount=r-2,b[e]=P):b[e].overloadTable[r-2]=P,[]}),[]})};function an(){Object.assign(Ae.prototype,{get(t){return this.allocated[t]},has(t){return this.allocated[t]!==void 0},allocate(t){var e=this.freelist.pop()||this.allocated.length;return this.allocated[e]=t,e},free(t){this.allocated[t]=void 0,this.freelist.push(t)}})}function Ae(){this.allocated=[void 0],this.freelist=[]}var z=new Ae,Oe=t=>{t>=z.reserved&&--z.get(t).refcount===0&&z.free(t)},on=()=>{for(var t=0,e=z.reserved;e<z.allocated.length;++e)z.allocated[e]!==void 0&&++t;return t},sn=()=>{z.allocated.push({value:void 0},{value:null},{value:!0},{value:!1}),z.reserved=z.allocated.length,s.count_emval_handles=on},K={toValue:t=>(t||C("Cannot use deleted val. handle = "+t),z.get(t).value),toHandle:t=>{switch(t){case void 0:return 1;case null:return 2;case!0:return 3;case!1:return 4;default:return z.allocate({refcount:1,value:t})}}},un=(t,e)=>{e=j(e),X(t,{name:e,fromWireType:r=>{var n=K.toValue(r);return Oe(r),n},toWireType:(r,n)=>K.toHandle(n),argPackAdvance:q,readValueFromPointer:Ht,destructorFunction:null})},cn=(t,e,r)=>{switch(e){case 1:return r?function(n){return this.fromWireType(V[n>>0])}:function(n){return this.fromWireType(k[n>>0])};case 2:return r?function(n){return this.fromWireType(ot[n>>1])}:function(n){return this.fromWireType(dt[n>>1])};case 4:return r?function(n){return this.fromWireType(W[n>>2])}:function(n){return this.fromWireType(_[n>>2])};default:throw new TypeError(`invalid integer width (${e}): ${t}`)}},ln=(t,e,r,n)=>{e=j(e);function a(){}a.values={},X(t,{name:e,constructor:a,fromWireType:function(o){return this.constructor.values[o]},toWireType:(o,u)=>u.value,argPackAdvance:q,readValueFromPointer:cn(e,r,n),destructorFunction:null}),Yt(e,a)},Xt=(t,e)=>{var r=rt[t];return r===void 0&&C(e+" has unknown type "+Pe(t)),r},dn=(t,e,r)=>{var n=Xt(t,"enum");e=j(e);var a=n.constructor,o=Object.create(n.constructor.prototype,{value:{value:r},constructor:{value:Lt(`${n.name}_${e}`,function(){})}});a.values[r]=o,a[e]=o},qt=t=>{if(t===null)return"null";var e=typeof t;return e==="object"||e==="array"||e==="function"?t.toString():""+t},hn=(t,e)=>{switch(e){case 4:return function(r){return this.fromWireType(ne[r>>2])};case 8:return function(r){return this.fromWireType(ae[r>>3])};default:throw new TypeError(`invalid float width (${e}): ${t}`)}},fn=(t,e,r)=>{e=j(e),X(t,{name:e,fromWireType:n=>n,toWireType:(n,a)=>a,argPackAdvance:q,readValueFromPointer:hn(e,r),destructorFunction:null})},pn=(t,e,r,n,a,o,u)=>{var c=Nt(e,r);t=j(t),t=Ee(t),a=N(n,a),Yt(t,function(){St(`Cannot call ${t} due to unbound types`,c)},e-1),nt([],c,function(l){var h=[l[0],null].concat(l.slice(1));return Ce(t,Gt(t,h,null,a,o),e-1),[]})},mn=(t,e,r)=>{switch(e){case 1:return r?n=>V[n>>0]:n=>k[n>>0];case 2:return r?n=>ot[n>>1]:n=>dt[n>>1];case 4:return r?n=>W[n>>2]:n=>_[n>>2];default:throw new TypeError(`invalid integer width (${e}): ${t}`)}},yn=(t,e,r,n,a)=>{e=j(e);var o=p=>p;if(n===0){var u=32-8*r;o=p=>p<<u>>>u}var c=e.includes("unsigned"),l=(p,y)=>{},h;c?h=function(p,y){return l(y,this.name),y>>>0}:h=function(p,y){return l(y,this.name),y},X(t,{name:e,fromWireType:o,toWireType:h,argPackAdvance:q,readValueFromPointer:mn(e,r,n!==0),destructorFunction:null})},vn=(t,e,r)=>{var n=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array],a=n[e];function o(u){var c=_[u>>2],l=_[u+4>>2];return new a(V.buffer,l,c)}r=j(r),X(t,{name:r,fromWireType:o,argPackAdvance:q,readValueFromPointer:o},{ignoreDuplicateRegistrations:!0})},De=(t,e,r,n)=>{if(!(n>0))return 0;for(var a=r,o=r+n-1,u=0;u<t.length;++u){var c=t.charCodeAt(u);if(c>=55296&&c<=57343){var l=t.charCodeAt(++u);c=65536+((c&1023)<<10)|l&1023}if(c<=127){if(r>=o)break;e[r++]=c}else if(c<=2047){if(r+1>=o)break;e[r++]=192|c>>6,e[r++]=128|c&63}else if(c<=65535){if(r+2>=o)break;e[r++]=224|c>>12,e[r++]=128|c>>6&63,e[r++]=128|c&63}else{if(r+3>=o)break;e[r++]=240|c>>18,e[r++]=128|c>>12&63,e[r++]=128|c>>6&63,e[r++]=128|c&63}}return e[r]=0,r-a},gn=(t,e,r)=>De(t,k,e,r),Se=t=>{for(var e=0,r=0;r<t.length;++r){var n=t.charCodeAt(r);n<=127?e++:n<=2047?e+=2:n>=55296&&n<=57343?(e+=4,++r):e+=3}return e},Fe=typeof TextDecoder<"u"?new TextDecoder("utf8"):void 0,wn=(t,e,r)=>{for(var n=e+r,a=e;t[a]&&!(a>=n);)++a;if(a-e>16&&t.buffer&&Fe)return Fe.decode(t.subarray(e,a));for(var o="";e<a;){var u=t[e++];if(!(u&128)){o+=String.fromCharCode(u);continue}var c=t[e++]&63;if((u&224)==192){o+=String.fromCharCode((u&31)<<6|c);continue}var l=t[e++]&63;if((u&240)==224?u=(u&15)<<12|c<<6|l:u=(u&7)<<18|c<<12|l<<6|t[e++]&63,u<65536)o+=String.fromCharCode(u);else{var h=u-65536;o+=String.fromCharCode(55296|h>>10,56320|h&1023)}}return o},Qt=(t,e)=>t?wn(k,t,e):"",$n=(t,e)=>{e=j(e);var r=e==="std::string";X(t,{name:e,fromWireType(n){var a=_[n>>2],o=n+4,u;if(r)for(var c=o,l=0;l<=a;++l){var h=o+l;if(l==a||k[h]==0){var p=h-c,y=Qt(c,p);u===void 0?u=y:(u+="\0",u+=y),c=h+1}}else{for(var g=new Array(a),l=0;l<a;++l)g[l]=String.fromCharCode(k[o+l]);u=g.join("")}return J(n),u},toWireType(n,a){a instanceof ArrayBuffer&&(a=new Uint8Array(a));var o,u=typeof a=="string";u||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int8Array||C("Cannot pass non-string to std::string"),r&&u?o=Se(a):o=a.length;var c=Jt(4+o+1),l=c+4;if(_[c>>2]=o,r&&u)gn(a,l,o+1);else if(u)for(var h=0;h<o;++h){var p=a.charCodeAt(h);p>255&&(J(l),C("String has UTF-16 code units that do not fit in 8 bits")),k[l+h]=p}else for(var h=0;h<o;++h)k[l+h]=a[h];return n!==null&&n.push(J,c),c},argPackAdvance:q,readValueFromPointer:be,destructorFunction(n){J(n)}})},xe=typeof TextDecoder<"u"?new TextDecoder("utf-16le"):void 0,bn=(t,e)=>{for(var r=t,n=r>>1,a=n+e/2;!(n>=a)&&dt[n];)++n;if(r=n<<1,r-t>32&&xe)return xe.decode(k.subarray(t,r));for(var o="",u=0;!(u>=e/2);++u){var c=ot[t+u*2>>1];if(c==0)break;o+=String.fromCharCode(c)}return o},Cn=(t,e,r)=>{if(r===void 0&&(r=2147483647),r<2)return 0;r-=2;for(var n=e,a=r<t.length*2?r/2:t.length,o=0;o<a;++o){var u=t.charCodeAt(o);ot[e>>1]=u,e+=2}return ot[e>>1]=0,e-n},_n=t=>t.length*2,Tn=(t,e)=>{for(var r=0,n="";!(r>=e/4);){var a=W[t+r*4>>2];if(a==0)break;if(++r,a>=65536){var o=a-65536;n+=String.fromCharCode(55296|o>>10,56320|o&1023)}else n+=String.fromCharCode(a)}return n},Pn=(t,e,r)=>{if(r===void 0&&(r=2147483647),r<4)return 0;for(var n=e,a=n+r-4,o=0;o<t.length;++o){var u=t.charCodeAt(o);if(u>=55296&&u<=57343){var c=t.charCodeAt(++o);u=65536+((u&1023)<<10)|c&1023}if(W[e>>2]=u,e+=4,e+4>a)break}return W[e>>2]=0,e-n},En=t=>{for(var e=0,r=0;r<t.length;++r){var n=t.charCodeAt(r);n>=55296&&n<=57343&&++r,e+=4}return e},An=(t,e,r)=>{r=j(r);var n,a,o,u,c;e===2?(n=bn,a=Cn,u=_n,o=()=>dt,c=1):e===4&&(n=Tn,a=Pn,u=En,o=()=>_,c=2),X(t,{name:r,fromWireType:l=>{for(var h=_[l>>2],p=o(),y,g=l+4,b=0;b<=h;++b){var T=l+4+b*e;if(b==h||p[T>>c]==0){var I=T-g,P=n(g,I);y===void 0?y=P:(y+="\0",y+=P),g=T+e}}return J(l),y},toWireType:(l,h)=>{typeof h!="string"&&C(`Cannot pass non-string to C++ string type ${r}`);var p=u(h),y=Jt(4+p+e);return _[y>>2]=p>>c,a(h,y+4,p+e),l!==null&&l.push(J,y),y},argPackAdvance:q,readValueFromPointer:Ht,destructorFunction(l){J(l)}})},On=(t,e,r,n,a,o)=>{_t[t]={name:j(e),rawConstructor:N(r,n),rawDestructor:N(a,o),fields:[]}},Dn=(t,e,r,n,a,o,u,c,l,h)=>{_t[t].fields.push({fieldName:j(e),getterReturnType:r,getter:N(n,a),getterContext:o,setterArgumentType:u,setter:N(c,l),setterContext:h})},Sn=(t,e)=>{e=j(e),X(t,{isVoid:!0,name:e,argPackAdvance:0,fromWireType:()=>{},toWireType:(r,n)=>{}})},Fn={},xn=t=>{var e=Fn[t];return e===void 0?j(t):e},Me=()=>{if(typeof globalThis=="object")return globalThis;function t(e){e.$$$embind_global$$$=e;var r=typeof $$$embind_global$$$=="object"&&e.$$$embind_global$$$==e;return r||delete e.$$$embind_global$$$,r}if(typeof $$$embind_global$$$=="object"||(typeof global=="object"&&t(global)?$$$embind_global$$$=global:typeof self=="object"&&t(self)&&($$$embind_global$$$=self),typeof $$$embind_global$$$=="object"))return $$$embind_global$$$;throw Error("unable to get global object.")},Mn=t=>t===0?K.toHandle(Me()):(t=xn(t),K.toHandle(Me()[t])),jn=t=>{t>4&&(z.get(t).refcount+=1)},In=t=>{var e=new Array(t+1);return function(r,n,a){e[0]=r;for(var o=0;o<t;++o){var u=Xt(_[n+o*4>>2],"parameter "+o);e[o+1]=u.readValueFromPointer(a),a+=u.argPackAdvance}var c=new(r.bind.apply(r,e));return K.toHandle(c)}},je={},Rn=(t,e,r,n)=>{t=K.toValue(t);var a=je[e];return a||(a=In(e),je[e]=a),a(t,r,n)},Wn=(t,e)=>{t=Xt(t,"_emval_take_value");var r=t.readValueFromPointer(e);return K.toHandle(r)},kn=()=>{ft("")},Hn=(t,e,r)=>k.copyWithin(t,e,e+r),Bn=()=>2147483648,Un=t=>{var e=tt.buffer,r=(t-e.byteLength+65535)/65536;try{return tt.grow(r),oe(),1}catch{}},Vn=t=>{var e=k.length;t>>>=0;var r=Bn();if(t>r)return!1;for(var n=(l,h)=>l+(h-l%h)%h,a=1;a<=4;a*=2){var o=e*(1+.2/a);o=Math.min(o,t+100663296);var u=Math.min(r,n(Math.max(t,o),65536)),c=Un(u);if(c)return!0}return!1},Zt={},Ln=()=>H||"./this.program",gt=()=>{if(!gt.strings){var t=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",e={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:t,_:Ln()};for(var r in Zt)Zt[r]===void 0?delete e[r]:e[r]=Zt[r];var n=[];for(var r in e)n.push(`${r}=${e[r]}`);gt.strings=n}return gt.strings},Yn=(t,e)=>{for(var r=0;r<t.length;++r)V[e++>>0]=t.charCodeAt(r);V[e>>0]=0},zn=(t,e)=>{var r=0;return gt().forEach((n,a)=>{var o=e+r;_[t+a*4>>2]=o,Yn(n,o),r+=n.length+1}),0},Nn=(t,e)=>{var r=gt();_[t>>2]=r.length;var n=0;return r.forEach(a=>n+=a.length+1),_[e>>2]=n,0},Gn=t=>t,Ft=t=>t%4===0&&(t%100!==0||t%400===0),Xn=(t,e)=>{for(var r=0,n=0;n<=e;r+=t[n++]);return r},Ie=[31,29,31,30,31,30,31,31,30,31,30,31],Re=[31,28,31,30,31,30,31,31,30,31,30,31],qn=(t,e)=>{for(var r=new Date(t.getTime());e>0;){var n=Ft(r.getFullYear()),a=r.getMonth(),o=(n?Ie:Re)[a];if(e>o-r.getDate())e-=o-r.getDate()+1,r.setDate(1),a<11?r.setMonth(a+1):(r.setMonth(0),r.setFullYear(r.getFullYear()+1));else return r.setDate(r.getDate()+e),r}return r};function Qn(t,e,r){var n=r>0?r:Se(t)+1,a=new Array(n),o=De(t,a,0,a.length);return e&&(a.length=o),a}var Zn=(t,e)=>{V.set(t,e)},Jn=(t,e,r,n)=>{var a=_[n+40>>2],o={tm_sec:W[n>>2],tm_min:W[n+4>>2],tm_hour:W[n+8>>2],tm_mday:W[n+12>>2],tm_mon:W[n+16>>2],tm_year:W[n+20>>2],tm_wday:W[n+24>>2],tm_yday:W[n+28>>2],tm_isdst:W[n+32>>2],tm_gmtoff:W[n+36>>2],tm_zone:a?Qt(a):""},u=Qt(r),c={"%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","%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 l in c)u=u.replace(new RegExp(l,"g"),c[l]);var h=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],p=["January","February","March","April","May","June","July","August","September","October","November","December"];function y(d,m,x){for(var M=typeof d=="number"?d.toString():d||"";M.length<m;)M=x[0]+M;return M}function g(d,m){return y(d,m,"0")}function b(d,m){function x(at){return at<0?-1:at>0?1:0}var M;return(M=x(d.getFullYear()-m.getFullYear()))===0&&(M=x(d.getMonth()-m.getMonth()))===0&&(M=x(d.getDate()-m.getDate())),M}function T(d){switch(d.getDay()){case 0:return new Date(d.getFullYear()-1,11,29);case 1:return d;case 2:return new Date(d.getFullYear(),0,3);case 3:return new Date(d.getFullYear(),0,2);case 4:return new Date(d.getFullYear(),0,1);case 5:return new Date(d.getFullYear()-1,11,31);case 6:return new Date(d.getFullYear()-1,11,30)}}function I(d){var m=qn(new Date(d.tm_year+1900,0,1),d.tm_yday),x=new Date(m.getFullYear(),0,4),M=new Date(m.getFullYear()+1,0,4),at=T(x),Mt=T(M);return b(at,m)<=0?b(Mt,m)<=0?m.getFullYear()+1:m.getFullYear():m.getFullYear()-1}var P={"%a":d=>h[d.tm_wday].substring(0,3),"%A":d=>h[d.tm_wday],"%b":d=>p[d.tm_mon].substring(0,3),"%B":d=>p[d.tm_mon],"%C":d=>{var m=d.tm_year+1900;return g(m/100|0,2)},"%d":d=>g(d.tm_mday,2),"%e":d=>y(d.tm_mday,2," "),"%g":d=>I(d).toString().substring(2),"%G":d=>I(d),"%H":d=>g(d.tm_hour,2),"%I":d=>{var m=d.tm_hour;return m==0?m=12:m>12&&(m-=12),g(m,2)},"%j":d=>g(d.tm_mday+Xn(Ft(d.tm_year+1900)?Ie:Re,d.tm_mon-1),3),"%m":d=>g(d.tm_mon+1,2),"%M":d=>g(d.tm_min,2),"%n":()=>`
3
- `,"%p":d=>d.tm_hour>=0&&d.tm_hour<12?"AM":"PM","%S":d=>g(d.tm_sec,2),"%t":()=>" ","%u":d=>d.tm_wday||7,"%U":d=>{var m=d.tm_yday+7-d.tm_wday;return g(Math.floor(m/7),2)},"%V":d=>{var m=Math.floor((d.tm_yday+7-(d.tm_wday+6)%7)/7);if((d.tm_wday+371-d.tm_yday-2)%7<=2&&m++,m){if(m==53){var x=(d.tm_wday+371-d.tm_yday)%7;x!=4&&(x!=3||!Ft(d.tm_year))&&(m=1)}}else{m=52;var M=(d.tm_wday+7-d.tm_yday-1)%7;(M==4||M==5&&Ft(d.tm_year%400-1))&&m++}return g(m,2)},"%w":d=>d.tm_wday,"%W":d=>{var m=d.tm_yday+7-(d.tm_wday+6)%7;return g(Math.floor(m/7),2)},"%y":d=>(d.tm_year+1900).toString().substring(2),"%Y":d=>d.tm_year+1900,"%z":d=>{var m=d.tm_gmtoff,x=m>=0;return m=Math.abs(m)/60,m=m/60*100+m%60,(x?"+":"-")+("0000"+m).slice(-4)},"%Z":d=>d.tm_zone,"%%":()=>"%"};u=u.replace(/%%/g,"\0\0");for(var l in P)u.includes(l)&&(u=u.replace(new RegExp(l,"g"),P[l](o)));u=u.replace(/\0\0/g,"%");var R=Qn(u,!1);return R.length>e?0:(Zn(R,t),R.length-1)},Kn=(t,e,r,n,a)=>Jn(t,e,r,n);fe=s.InternalError=class extends Error{constructor(t){super(t),this.name="InternalError"}},Fr(),ut=s.BindingError=class extends Error{constructor(t){super(t),this.name="BindingError"}},Lr(),Hr(),Qr(),Te=s.UnboundTypeError=tn(Error,"UnboundTypeError"),an(),sn();var ta={s:$r,v:br,b:_r,g:Tr,q:Pr,I:Er,f:Ar,T:Or,d:Cr,ba:Dr,P:Sr,Y:Mr,aa:en,$:rn,w:nn,X:un,x:ln,h:dn,K:fn,L:pn,t:yn,n:vn,J:$n,C:An,A:On,ca:Dn,Z:Sn,ea:Oe,da:Mn,M:jn,V:Rn,_:Wn,B:kn,W:Hn,U:Vn,R:zn,S:Nn,D:ma,E:pa,m:ya,a:ea,e:oa,o:ua,k:aa,G:ha,u:la,F:fa,z:ga,O:$a,l:ia,j:sa,c:na,p:ra,H:da,r:va,i:ca,y:wa,N:Gn,Q:Kn},E=wr(),J=s._free=t=>(J=s._free=E.ha)(t),Jt=s._malloc=t=>(Jt=s._malloc=E.ia)(t),We=t=>(We=E.ka)(t);s.__embind_initialize_bindings=()=>(s.__embind_initialize_bindings=E.la)();var A=(t,e)=>(A=E.ma)(t,e),wt=t=>(wt=E.na)(t),S=()=>(S=E.oa)(),F=t=>(F=E.pa)(t),ke=t=>(ke=E.qa)(t),He=t=>(He=E.ra)(t),Be=(t,e,r)=>(Be=E.sa)(t,e,r),Ue=t=>(Ue=E.ta)(t);s.dynCall_viijii=(t,e,r,n,a,o,u)=>(s.dynCall_viijii=E.ua)(t,e,r,n,a,o,u);var Ve=s.dynCall_jiiii=(t,e,r,n,a)=>(Ve=s.dynCall_jiiii=E.va)(t,e,r,n,a);s.dynCall_iiiiij=(t,e,r,n,a,o,u)=>(s.dynCall_iiiiij=E.wa)(t,e,r,n,a,o,u),s.dynCall_iiiiijj=(t,e,r,n,a,o,u,c,l)=>(s.dynCall_iiiiijj=E.xa)(t,e,r,n,a,o,u,c,l),s.dynCall_iiiiiijj=(t,e,r,n,a,o,u,c,l,h)=>(s.dynCall_iiiiiijj=E.ya)(t,e,r,n,a,o,u,c,l,h);function ea(t,e){var r=S();try{return D(t)(e)}catch(n){if(F(r),n!==n+0)throw n;A(1,0)}}function ra(t,e,r,n){var a=S();try{D(t)(e,r,n)}catch(o){if(F(a),o!==o+0)throw o;A(1,0)}}function na(t,e,r){var n=S();try{D(t)(e,r)}catch(a){if(F(n),a!==a+0)throw a;A(1,0)}}function aa(t,e,r,n,a){var o=S();try{return D(t)(e,r,n,a)}catch(u){if(F(o),u!==u+0)throw u;A(1,0)}}function oa(t,e,r){var n=S();try{return D(t)(e,r)}catch(a){if(F(n),a!==a+0)throw a;A(1,0)}}function ia(t){var e=S();try{D(t)()}catch(r){if(F(e),r!==r+0)throw r;A(1,0)}}function sa(t,e){var r=S();try{D(t)(e)}catch(n){if(F(r),n!==n+0)throw n;A(1,0)}}function ua(t,e,r,n){var a=S();try{return D(t)(e,r,n)}catch(o){if(F(a),o!==o+0)throw o;A(1,0)}}function ca(t,e,r,n,a,o,u,c,l,h,p){var y=S();try{D(t)(e,r,n,a,o,u,c,l,h,p)}catch(g){if(F(y),g!==g+0)throw g;A(1,0)}}function la(t,e,r,n,a,o,u){var c=S();try{return D(t)(e,r,n,a,o,u)}catch(l){if(F(c),l!==l+0)throw l;A(1,0)}}function da(t,e,r,n,a){var o=S();try{D(t)(e,r,n,a)}catch(u){if(F(o),u!==u+0)throw u;A(1,0)}}function ha(t,e,r,n,a,o){var u=S();try{return D(t)(e,r,n,a,o)}catch(c){if(F(u),c!==c+0)throw c;A(1,0)}}function fa(t,e,r,n,a,o,u,c){var l=S();try{return D(t)(e,r,n,a,o,u,c)}catch(h){if(F(l),h!==h+0)throw h;A(1,0)}}function pa(t,e,r,n){var a=S();try{return D(t)(e,r,n)}catch(o){if(F(a),o!==o+0)throw o;A(1,0)}}function ma(t,e,r,n){var a=S();try{return D(t)(e,r,n)}catch(o){if(F(a),o!==o+0)throw o;A(1,0)}}function ya(t){var e=S();try{return D(t)()}catch(r){if(F(e),r!==r+0)throw r;A(1,0)}}function va(t,e,r,n,a,o,u,c){var l=S();try{D(t)(e,r,n,a,o,u,c)}catch(h){if(F(l),h!==h+0)throw h;A(1,0)}}function ga(t,e,r,n,a,o,u,c,l,h,p,y){var g=S();try{return D(t)(e,r,n,a,o,u,c,l,h,p,y)}catch(b){if(F(g),b!==b+0)throw b;A(1,0)}}function wa(t,e,r,n,a,o,u,c,l,h,p,y,g,b,T,I){var P=S();try{D(t)(e,r,n,a,o,u,c,l,h,p,y,g,b,T,I)}catch(R){if(F(P),R!==R+0)throw R;A(1,0)}}function $a(t,e,r,n,a){var o=S();try{return Ve(t,e,r,n,a)}catch(u){if(F(o),u!==u+0)throw u;A(1,0)}}var xt;ht=function t(){xt||Le(),xt||(ht=t)};function Le(){if(et>0||(ur(),et>0))return;function t(){xt||(xt=!0,s.calledRun=!0,!lt&&(cr(),w(s),s.onRuntimeInitialized&&s.onRuntimeInitialized(),lr()))}s.setStatus?(s.setStatus("Running..."),setTimeout(function(){setTimeout(function(){s.setStatus("")},1),t()},1)):t()}if(s.preInit)for(typeof s.preInit=="function"&&(s.preInit=[s.preInit]);s.preInit.length>0;)s.preInit.pop()();return Le(),f.ready}})();function za(i){return re(jt,i)}function Na(i){return Va(jt,i)}async function Ga(i,f){return La(jt,i,f)}async function Xa(i,f){return Ya(jt,i,f)}const ee=new Map([["aztec","Aztec"],["code_128","Code128"],["code_39","Code39"],["code_93","Code93"],["codabar","Codabar"],["data_matrix","DataMatrix"],["ean_13","EAN-13"],["ean_8","EAN-8"],["itf","ITF"],["pdf417","PDF417"],["qr_code","QRCode"],["upc_a","UPC-A"],["upc_e","UPC-E"]]);function qa(i){for(const[f,s]of ee)if(i===s)return f;return"unknown"}var ct;class Qa extends EventTarget{constructor(s={}){var w;super();ze(this,ct,void 0);try{const v=(w=s==null?void 0:s.formats)==null?void 0:w.filter($=>$!=="unknown");if((v==null?void 0:v.length)===0)throw new TypeError("Hint option provided, but is empty.");v==null||v.forEach($=>{if(!Ge.includes($))throw new TypeError(`Failed to read the 'formats' property from 'BarcodeDetectorOptions': The provided value '${$}' is not a valid enum value of type BarcodeFormat.`)}),Ne(this,ct,v!=null?v:[]),za().then($=>{this.dispatchEvent(new CustomEvent("load",{detail:$}))}).catch($=>{this.dispatchEvent(new CustomEvent("error",{detail:$}))})}catch(v){throw Xe(v,"Failed to construct 'BarcodeDetector'")}}static async getSupportedFormats(){return Ge.filter(s=>s!=="unknown")}async detect(s){try{const w=await Ea(s);if(w===null)return[];let v;try{ar(w)?v=await Ga(w,{tryHarder:!0,formats:Kt(this,ct).map($=>ee.get($))}):v=await Xa(w,{tryHarder:!0,formats:Kt(this,ct).map($=>ee.get($))})}catch($){throw console.error($),new DOMException("Barcode detection service unavailable.","NotSupportedError")}return v.map($=>{const{topLeft:{x:H,y:L},topRight:{x:B,y:O},bottomLeft:{x:Y,y:G},bottomRight:{x:U,y:Q}}=$.position,tt=Math.min(H,B,Y,U),lt=Math.min(L,O,G,Q),It=Math.max(H,B,Y,U),V=Math.max(L,O,G,Q);return{boundingBox:new DOMRectReadOnly(tt,lt,It-tt,V-lt),rawValue:$.text,format:qa($.format),cornerPoints:[{x:H,y:L},{x:B,y:O},{x:U,y:Q},{x:Y,y:G}]}})}catch(w){throw Xe(w,"Failed to execute 'detect' on 'BarcodeDetector'")}}}ct=new WeakMap;exports.BarcodeDetector=Qa;exports.setZXingModuleOverrides=Na;
1
+ "use strict";var Ye=(o,h,s)=>{if(!h.has(o))throw TypeError("Cannot "+s)};var re=(o,h,s)=>(Ye(o,h,"read from private field"),s?s.call(o):h.get(o)),ze=(o,h,s)=>{if(h.has(o))throw TypeError("Cannot add the same private member more than once");h instanceof WeakSet?h.add(o):h.set(o,s)},Ne=(o,h,s,$)=>(Ye(o,h,"write to private field"),$?$.call(o,s):h.set(o,s),s);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const Qe=[["aztec","Aztec"],["code_128","Code128"],["code_39","Code39"],["code_93","Code93"],["codabar","Codabar"],["databar","DataBar"],["databar_expanded","DataBarExpanded"],["data_matrix","DataMatrix"],["dx_film_edge","DXFilmEdge"],["ean_13","EAN-13"],["ean_8","EAN-8"],["itf","ITF"],["maxi_code","MaxiCode"],["micro_qr_code","MicroQRCode"],["pdf417","PDF417"],["qr_code","QRCode"],["rm_qr_code","rMQRCode"],["upc_a","UPC-A"],["upc_e","UPC-E"],["linear_codes","Linear-Codes"],["matrix_codes","Matrix-Codes"]],Da=[...Qe,["unknown"]].map(o=>o[0]),It=new Map(Qe);function Fa(o){for(const[h,s]of It)if(o===s)return h;return"unknown"}function xa(o){if(Ze(o))return{width:o.naturalWidth,height:o.naturalHeight};if(Je(o))return{width:o.width.baseVal.value,height:o.height.baseVal.value};if(Ke(o))return{width:o.videoWidth,height:o.videoHeight};if(er(o))return{width:o.width,height:o.height};if(nr(o))return{width:o.displayWidth,height:o.displayHeight};if(tr(o))return{width:o.width,height:o.height};if(rr(o))return{width:o.width,height:o.height};throw new TypeError("The provided value is not of type '(Blob or HTMLCanvasElement or HTMLImageElement or HTMLVideoElement or ImageBitmap or ImageData or OffscreenCanvas or SVGImageElement or VideoFrame)'.")}function Ze(o){try{return o instanceof HTMLImageElement}catch{return!1}}function Je(o){try{return o instanceof SVGImageElement}catch{return!1}}function Ke(o){try{return o instanceof HTMLVideoElement}catch{return!1}}function tr(o){try{return o instanceof HTMLCanvasElement}catch{return!1}}function er(o){try{return o instanceof ImageBitmap}catch{return!1}}function rr(o){try{return o instanceof OffscreenCanvas}catch{return!1}}function nr(o){try{return o instanceof VideoFrame}catch{return!1}}function ar(o){try{return o instanceof Blob}catch{return!1}}function Sa(o){try{return o instanceof ImageData}catch{return!1}}function Ma(o,h){try{const s=new OffscreenCanvas(o,h);if(s.getContext("2d")instanceof OffscreenCanvasRenderingContext2D)return s;throw void 0}catch{const s=document.createElement("canvas");return s.width=o,s.height=h,s}}async function or(o){if(Ze(o)&&!await Wa(o))throw new DOMException("Failed to load or decode HTMLImageElement.","InvalidStateError");if(Je(o)&&!await ka(o))throw new DOMException("Failed to load or decode SVGImageElement.","InvalidStateError");if(nr(o)&&Ha(o))throw new DOMException("VideoFrame is closed.","InvalidStateError");if(Ke(o)&&(o.readyState===0||o.readyState===1))throw new DOMException("Invalid element or state.","InvalidStateError");if(er(o)&&Ua(o))throw new DOMException("The image source is detached.","InvalidStateError");const{width:h,height:s}=xa(o);if(h===0||s===0)return null;const g=Ma(h,s).getContext("2d");g.drawImage(o,0,0);try{return g.getImageData(0,0,h,s)}catch{throw new DOMException("Source would taint origin.","SecurityError")}}async function ja(o){let h;try{if(globalThis.createImageBitmap)h=await createImageBitmap(o);else if(globalThis.Image){h=new Image;let $="";try{$=URL.createObjectURL(o),h.src=$,await h.decode()}finally{URL.revokeObjectURL($)}}else return o}catch{throw new DOMException("Failed to load or decode Blob.","InvalidStateError")}return await or(h)}function Ia(o){const{width:h,height:s}=o;if(h===0||s===0)return null;const $=o.getContext("2d");try{return $.getImageData(0,0,h,s)}catch{throw new DOMException("Source would taint origin.","SecurityError")}}async function Ra(o){if(ar(o))return await ja(o);if(Sa(o)){if(Ba(o))throw new DOMException("The image data has been detached.","InvalidStateError");return o}return tr(o)||rr(o)?Ia(o):await or(o)}async function Wa(o){try{return await o.decode(),!0}catch{return!1}}async function ka(o){var h;try{return await((h=o.decode)==null?void 0:h.call(o)),!0}catch{return!1}}function Ha(o){return o.format===null}function Ba(o){return o.data.buffer.byteLength===0}function Ua(o){return o.width===0&&o.height===0}function Ge(o,h){return o instanceof DOMException?new DOMException(`${h}: ${o.message}`,o.name):o instanceof Error?new o.constructor(`${h}: ${o.message}`):new Error(`${h}: ${o}`)}const Xe=["Aztec","Codabar","Code128","Code39","Code93","DataBar","DataBarExpanded","DataMatrix","DXFilmEdge","EAN-13","EAN-8","ITF","Linear-Codes","Matrix-Codes","MaxiCode","MicroQRCode","None","PDF417","QRCode","rMQRCode","UPC-A","UPC-E"];function Va(o){return o.join("|")}function La(o){const h=qe(o);let s=0,$=Xe.length-1;for(;s<=$;){const g=Math.floor((s+$)/2),b=Xe[g],H=qe(b);if(H===h)return b;H<h?s=g+1:$=g-1}return"None"}function qe(o){return o.toLowerCase().replace(/_-\[\]/g,"")}function Ya(o,h){return o.Binarizer[h]}function za(o,h){return o.CharacterSet[h]}const Na=["Text","Binary","Mixed","GS1","ISO15434","UnknownECI"];function Ga(o){return Na[o.value]}function Xa(o,h){return o.EanAddOnSymbol[h]}function qa(o,h){return o.TextMode[h]}const $t={formats:[],tryHarder:!0,tryRotate:!0,tryInvert:!0,tryDownscale:!0,binarizer:"LocalAverage",isPure:!1,downscaleFactor:3,downscaleThreshold:500,minLineCount:2,maxNumberOfSymbols:255,tryCode39ExtendedMode:!1,validateCode39CheckSum:!1,validateITFCheckSum:!1,returnCodabarStartEnd:!1,returnErrors:!1,eanAddOnSymbol:"Read",textMode:"Plain",characterSet:"Unknown"};function ir(o,h){return{...h,formats:Va(h.formats),binarizer:Ya(o,h.binarizer),eanAddOnSymbol:Xa(o,h.eanAddOnSymbol),textMode:qa(o,h.textMode),characterSet:za(o,h.characterSet)}}const Qa={width:200,height:200,format:"QRCode",characterSet:"UTF8",eccLevel:-1,margin:10};function sr(o){return{...o,format:La(o.format),eccLevel:o.eccLevel,contentType:Ga(o.contentType)}}const Za={locateFile:(o,h)=>{const s=o.match(/_(.+?)\.wasm$/);return s?`https://fastly.jsdelivr.net/npm/zxing-wasm@1.1.2/dist/${s[1]}/${o}`:h+o}};let ne=new WeakMap;function ae(o,h){var s;const $=ne.get(o);if($!=null&&$.modulePromise&&(h===void 0||Object.is(h,$.moduleOverrides)))return $.modulePromise;const g=(s=h!=null?h:$==null?void 0:$.moduleOverrides)!=null?s:Za,b=o({...g});return ne.set(o,{moduleOverrides:g,modulePromise:b}),b}function Ja(o,h){ne.set(o,{moduleOverrides:h})}async function Ka(o,h,s=$t){const $={...$t,...s},g=await ae(o),{size:b}=h,H=new Uint8Array(await h.arrayBuffer()),L=g._malloc(b);g.HEAPU8.set(H,L);const B=g.readBarcodesFromImage(L,b,ir(g,$));g._free(L);const S=[];for(let Y=0;Y<B.size();++Y)S.push(sr(B.get(Y)));return S}async function to(o,h,s=$t){const $={...$t,...s},g=await ae(o),{data:b,width:H,height:L,data:{byteLength:B}}=h,S=g._malloc(B);g.HEAPU8.set(b,S);const Y=g.readBarcodesFromPixmap(S,H,L,ir(g,$));g._free(S);const G=[];for(let U=0;U<Y.size();++U)G.push(sr(Y.get(U)));return G}structuredClone($t);structuredClone(Qa);var Rt=(()=>{var o=typeof document<"u"&&document.currentScript?document.currentScript.src:void 0;return function(h={}){var s=h,$,g;s.ready=new Promise((t,e)=>{$=t,g=e});var b=Object.assign({},s),H="./this.program",L=typeof window=="object",B=typeof importScripts=="function";typeof process=="object"&&typeof process.versions=="object"&&process.versions.node;var S="";function Y(t){return s.locateFile?s.locateFile(t,S):S+t}var G;(L||B)&&(B?S=self.location.href:typeof document<"u"&&document.currentScript&&(S=document.currentScript.src),o&&(S=o),S.indexOf("blob:")!==0?S=S.substr(0,S.replace(/[?#].*/,"").lastIndexOf("/")+1):S="",B&&(G=t=>{var e=new XMLHttpRequest;return e.open("GET",t,!1),e.responseType="arraybuffer",e.send(null),new Uint8Array(e.response)})),s.print||console.log.bind(console);var U=s.printErr||console.error.bind(console);Object.assign(s,b),b=null,s.arguments&&s.arguments,s.thisProgram&&(H=s.thisProgram),s.quit&&s.quit;var Q;s.wasmBinary&&(Q=s.wasmBinary),typeof WebAssembly!="object"&&bt("no native wasm support detected");var tt,lt=!1,V,W,at,dt,k,_,oe,ie;function se(){var t=tt.buffer;s.HEAP8=V=new Int8Array(t),s.HEAP16=at=new Int16Array(t),s.HEAPU8=W=new Uint8Array(t),s.HEAPU16=dt=new Uint16Array(t),s.HEAP32=k=new Int32Array(t),s.HEAPU32=_=new Uint32Array(t),s.HEAPF32=oe=new Float32Array(t),s.HEAPF64=ie=new Float64Array(t)}var ue=[],ce=[],le=[];function ur(){if(s.preRun)for(typeof s.preRun=="function"&&(s.preRun=[s.preRun]);s.preRun.length;)dr(s.preRun.shift());Wt(ue)}function cr(){Wt(ce)}function lr(){if(s.postRun)for(typeof s.postRun=="function"&&(s.postRun=[s.postRun]);s.postRun.length;)hr(s.postRun.shift());Wt(le)}function dr(t){ue.unshift(t)}function fr(t){ce.unshift(t)}function hr(t){le.unshift(t)}var et=0,ft=null;function pr(t){var e;et++,(e=s.monitorRunDependencies)===null||e===void 0||e.call(s,et)}function mr(t){var e;if(et--,(e=s.monitorRunDependencies)===null||e===void 0||e.call(s,et),et==0&&ft){var r=ft;ft=null,r()}}function bt(t){var e;(e=s.onAbort)===null||e===void 0||e.call(s,t),t="Aborted("+t+")",U(t),lt=!0,t+=". Build with -sASSERTIONS for more info.";var r=new WebAssembly.RuntimeError(t);throw g(r),r}var vr="data:application/octet-stream;base64,",de=t=>t.startsWith(vr),ot;ot="zxing_reader.wasm",de(ot)||(ot=Y(ot));function fe(t){if(t==ot&&Q)return new Uint8Array(Q);if(G)return G(t);throw"both async and sync fetching of the wasm failed"}function yr(t){return!Q&&(L||B)&&typeof fetch=="function"?fetch(t,{credentials:"same-origin"}).then(e=>{if(!e.ok)throw"failed to load wasm binary file at '"+t+"'";return e.arrayBuffer()}).catch(()=>fe(t)):Promise.resolve().then(()=>fe(t))}function he(t,e,r){return yr(t).then(n=>WebAssembly.instantiate(n,e)).then(n=>n).then(r,n=>{U(`failed to asynchronously prepare wasm: ${n}`),bt(n)})}function gr(t,e,r,n){return!t&&typeof WebAssembly.instantiateStreaming=="function"&&!de(e)&&typeof fetch=="function"?fetch(e,{credentials:"same-origin"}).then(a=>{var i=WebAssembly.instantiateStreaming(a,r);return i.then(n,function(u){return U(`wasm streaming compile failed: ${u}`),U("falling back to ArrayBuffer instantiation"),he(e,r,n)})}):he(e,r,n)}function wr(){var t={a:sa};function e(n,a){return M=n.exports,tt=M.ia,se(),Te=M.ma,fr(M.ja),mr(),M}pr();function r(n){e(n.instance)}if(s.instantiateWasm)try{return s.instantiateWasm(t,e)}catch(n){U(`Module.instantiateWasm callback failed with error: ${n}`),g(n)}return gr(Q,ot,t,r).catch(g),{}}var Wt=t=>{for(;t.length>0;)t.shift()(s)};s.noExitRuntime;var Ct=[],Tt=0,$r=t=>{var e=new kt(t);return e.get_caught()||(e.set_caught(!0),Tt--),e.set_rethrown(!1),Ct.push(e),We(e.excPtr),e.get_exception_ptr()},Z=0,br=()=>{P(0,0);var t=Ct.pop();Re(t.excPtr),Z=0};function kt(t){this.excPtr=t,this.ptr=t-24,this.set_type=function(e){_[this.ptr+4>>2]=e},this.get_type=function(){return _[this.ptr+4>>2]},this.set_destructor=function(e){_[this.ptr+8>>2]=e},this.get_destructor=function(){return _[this.ptr+8>>2]},this.set_caught=function(e){e=e?1:0,V[this.ptr+12>>0]=e},this.get_caught=function(){return V[this.ptr+12>>0]!=0},this.set_rethrown=function(e){e=e?1:0,V[this.ptr+13>>0]=e},this.get_rethrown=function(){return V[this.ptr+13>>0]!=0},this.init=function(e,r){this.set_adjusted_ptr(0),this.set_type(e),this.set_destructor(r)},this.set_adjusted_ptr=function(e){_[this.ptr+16>>2]=e},this.get_adjusted_ptr=function(){return _[this.ptr+16>>2]},this.get_exception_ptr=function(){var e=He(this.get_type());if(e)return _[this.excPtr>>2];var r=this.get_adjusted_ptr();return r!==0?r:this.excPtr}}var Cr=t=>{throw Z||(Z=t),Z},Ht=t=>{var e=Z;if(!e)return wt(0),0;var r=new kt(e);r.set_adjusted_ptr(e);var n=r.get_type();if(!n)return wt(0),e;for(var a in t){var i=t[a];if(i===0||i===n)break;var u=r.ptr+16;if(ke(i,n,u))return wt(i),e}return wt(n),e},Tr=()=>Ht([]),_r=t=>Ht([t]),Pr=(t,e)=>Ht([t,e]),Er=()=>{var t=Ct.pop();t||bt("no exception to throw");var e=t.excPtr;throw t.get_rethrown()||(Ct.push(t),t.set_rethrown(!0),t.set_caught(!1),Tt++),Z=e,Z},Ar=(t,e,r)=>{var n=new kt(t);throw n.init(e,r),Z=t,Tt++,Z},Or=()=>Tt,_t={},Bt=t=>{for(;t.length;){var e=t.pop(),r=t.pop();r(e)}};function Ut(t){return this.fromWireType(k[t>>2])}var it={},rt={},Pt={},pe,Et=t=>{throw new pe(t)},nt=(t,e,r)=>{t.forEach(function(c){Pt[c]=e});function n(c){var l=r(c);l.length!==t.length&&Et("Mismatched type converter count");for(var f=0;f<t.length;++f)X(t[f],l[f])}var a=new Array(e.length),i=[],u=0;e.forEach((c,l)=>{rt.hasOwnProperty(c)?a[l]=rt[c]:(i.push(c),it.hasOwnProperty(c)||(it[c]=[]),it[c].push(()=>{a[l]=rt[c],++u,u===i.length&&n(a)}))}),i.length===0&&n(a)},Dr=t=>{var e=_t[t];delete _t[t];var r=e.rawConstructor,n=e.rawDestructor,a=e.fields,i=a.map(u=>u.getterReturnType).concat(a.map(u=>u.setterArgumentType));nt([t],i,u=>{var c={};return a.forEach((l,f)=>{var p=l.fieldName,v=u[f],y=l.getter,w=l.getterContext,E=u[f+a.length],F=l.setter,T=l.setterContext;c[p]={read:R=>v.fromWireType(y(w,R)),write:(R,d)=>{var m=[];F(T,R,E.toWireType(m,d)),Bt(m)}}}),[{name:e.name,fromWireType:l=>{var f={};for(var p in c)f[p]=c[p].read(l);return n(l),f},toWireType:(l,f)=>{for(var p in c)if(!(p in f))throw new TypeError(`Missing field: "${p}"`);var v=r();for(p in c)c[p].write(v,f[p]);return l!==null&&l.push(n,v),v},argPackAdvance:q,readValueFromPointer:Ut,destructorFunction:n}]})},Fr=(t,e,r,n,a)=>{},xr=()=>{for(var t=new Array(256),e=0;e<256;++e)t[e]=String.fromCharCode(e);me=t},me,I=t=>{for(var e="",r=t;W[r];)e+=me[W[r++]];return e},st,C=t=>{throw new st(t)};function Sr(t,e){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};var n=e.name;if(t||C(`type "${n}" must have a positive integer typeid pointer`),rt.hasOwnProperty(t)){if(r.ignoreDuplicateRegistrations)return;C(`Cannot register type '${n}' twice`)}if(rt[t]=e,delete Pt[t],it.hasOwnProperty(t)){var a=it[t];delete it[t],a.forEach(i=>i())}}function X(t,e){let r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{};if(!("argPackAdvance"in e))throw new TypeError("registerType registeredInstance requires argPackAdvance");return Sr(t,e,r)}var q=8,Mr=(t,e,r,n)=>{e=I(e),X(t,{name:e,fromWireType:function(a){return!!a},toWireType:function(a,i){return i?r:n},argPackAdvance:q,readValueFromPointer:function(a){return this.fromWireType(W[a])},destructorFunction:null})},jr=t=>({count:t.count,deleteScheduled:t.deleteScheduled,preservePointerOnDelete:t.preservePointerOnDelete,ptr:t.ptr,ptrType:t.ptrType,smartPtr:t.smartPtr,smartPtrType:t.smartPtrType}),Vt=t=>{function e(r){return r.$$.ptrType.registeredClass.name}C(e(t)+" instance already deleted")},Lt=!1,ve=t=>{},Ir=t=>{t.smartPtr?t.smartPtrType.rawDestructor(t.smartPtr):t.ptrType.registeredClass.rawDestructor(t.ptr)},ye=t=>{t.count.value-=1;var e=t.count.value===0;e&&Ir(t)},ge=(t,e,r)=>{if(e===r)return t;if(r.baseClass===void 0)return null;var n=ge(t,e,r.baseClass);return n===null?null:r.downcast(n)},we={},Rr=()=>Object.keys(mt).length,Wr=()=>{var t=[];for(var e in mt)mt.hasOwnProperty(e)&&t.push(mt[e]);return t},ht=[],Yt=()=>{for(;ht.length;){var t=ht.pop();t.$$.deleteScheduled=!1,t.delete()}},pt,kr=t=>{pt=t,ht.length&&pt&&pt(Yt)},Hr=()=>{s.getInheritedInstanceCount=Rr,s.getLiveInheritedInstances=Wr,s.flushPendingDeletes=Yt,s.setDelayFunction=kr},mt={},Br=(t,e)=>{for(e===void 0&&C("ptr should not be undefined");t.baseClass;)e=t.upcast(e),t=t.baseClass;return e},Ur=(t,e)=>(e=Br(t,e),mt[e]),At=(t,e)=>{(!e.ptrType||!e.ptr)&&Et("makeClassHandle requires ptr and ptrType");var r=!!e.smartPtrType,n=!!e.smartPtr;return r!==n&&Et("Both smartPtrType and smartPtr must be specified"),e.count={value:1},vt(Object.create(t,{$$:{value:e,writable:!0}}))};function Vr(t){var e=this.getPointee(t);if(!e)return this.destructor(t),null;var r=Ur(this.registeredClass,e);if(r!==void 0){if(r.$$.count.value===0)return r.$$.ptr=e,r.$$.smartPtr=t,r.clone();var n=r.clone();return this.destructor(t),n}function a(){return this.isSmartPointer?At(this.registeredClass.instancePrototype,{ptrType:this.pointeeType,ptr:e,smartPtrType:this,smartPtr:t}):At(this.registeredClass.instancePrototype,{ptrType:this,ptr:t})}var i=this.registeredClass.getActualType(e),u=we[i];if(!u)return a.call(this);var c;this.isConst?c=u.constPointerType:c=u.pointerType;var l=ge(e,this.registeredClass,c.registeredClass);return l===null?a.call(this):this.isSmartPointer?At(c.registeredClass.instancePrototype,{ptrType:c,ptr:l,smartPtrType:this,smartPtr:t}):At(c.registeredClass.instancePrototype,{ptrType:c,ptr:l})}var vt=t=>typeof FinalizationRegistry>"u"?(vt=e=>e,t):(Lt=new FinalizationRegistry(e=>{ye(e.$$)}),vt=e=>{var r=e.$$,n=!!r.smartPtr;if(n){var a={$$:r};Lt.register(e,a,e)}return e},ve=e=>Lt.unregister(e),vt(t)),Lr=()=>{Object.assign(Ot.prototype,{isAliasOf(t){if(!(this instanceof Ot)||!(t instanceof Ot))return!1;var e=this.$$.ptrType.registeredClass,r=this.$$.ptr;t.$$=t.$$;for(var n=t.$$.ptrType.registeredClass,a=t.$$.ptr;e.baseClass;)r=e.upcast(r),e=e.baseClass;for(;n.baseClass;)a=n.upcast(a),n=n.baseClass;return e===n&&r===a},clone(){if(this.$$.ptr||Vt(this),this.$$.preservePointerOnDelete)return this.$$.count.value+=1,this;var t=vt(Object.create(Object.getPrototypeOf(this),{$$:{value:jr(this.$$)}}));return t.$$.count.value+=1,t.$$.deleteScheduled=!1,t},delete(){this.$$.ptr||Vt(this),this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete&&C("Object already scheduled for deletion"),ve(this),ye(this.$$),this.$$.preservePointerOnDelete||(this.$$.smartPtr=void 0,this.$$.ptr=void 0)},isDeleted(){return!this.$$.ptr},deleteLater(){return this.$$.ptr||Vt(this),this.$$.deleteScheduled&&!this.$$.preservePointerOnDelete&&C("Object already scheduled for deletion"),ht.push(this),ht.length===1&&pt&&pt(Yt),this.$$.deleteScheduled=!0,this}})};function Ot(){}var yt=(t,e)=>Object.defineProperty(e,"name",{value:t}),$e=(t,e,r)=>{if(t[e].overloadTable===void 0){var n=t[e];t[e]=function(){return t[e].overloadTable.hasOwnProperty(arguments.length)||C(`Function '${r}' called with an invalid number of arguments (${arguments.length}) - expects one of (${t[e].overloadTable})!`),t[e].overloadTable[arguments.length].apply(this,arguments)},t[e].overloadTable=[],t[e].overloadTable[n.argCount]=n}},zt=(t,e,r)=>{s.hasOwnProperty(t)?((r===void 0||s[t].overloadTable!==void 0&&s[t].overloadTable[r]!==void 0)&&C(`Cannot register public name '${t}' twice`),$e(s,t,t),s.hasOwnProperty(r)&&C(`Cannot register multiple overloads of a function with the same number of arguments (${r})!`),s[t].overloadTable[r]=e):(s[t]=e,r!==void 0&&(s[t].numArguments=r))},Yr=48,zr=57,Nr=t=>{if(t===void 0)return"_unknown";t=t.replace(/[^a-zA-Z0-9_]/g,"$");var e=t.charCodeAt(0);return e>=Yr&&e<=zr?`_${t}`:t};function Gr(t,e,r,n,a,i,u,c){this.name=t,this.constructor=e,this.instancePrototype=r,this.rawDestructor=n,this.baseClass=a,this.getActualType=i,this.upcast=u,this.downcast=c,this.pureVirtualFunctions=[]}var Nt=(t,e,r)=>{for(;e!==r;)e.upcast||C(`Expected null or instance of ${r.name}, got an instance of ${e.name}`),t=e.upcast(t),e=e.baseClass;return t};function Xr(t,e){if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),0;e.$$||C(`Cannot pass "${Zt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`);var r=e.$$.ptrType.registeredClass,n=Nt(e.$$.ptr,r,this.registeredClass);return n}function qr(t,e){var r;if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),this.isSmartPointer?(r=this.rawConstructor(),t!==null&&t.push(this.rawDestructor,r),r):0;(!e||!e.$$)&&C(`Cannot pass "${Zt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`),!this.isConst&&e.$$.ptrType.isConst&&C(`Cannot convert argument of type ${e.$$.smartPtrType?e.$$.smartPtrType.name:e.$$.ptrType.name} to parameter type ${this.name}`);var n=e.$$.ptrType.registeredClass;if(r=Nt(e.$$.ptr,n,this.registeredClass),this.isSmartPointer)switch(e.$$.smartPtr===void 0&&C("Passing raw pointer to smart pointer is illegal"),this.sharingPolicy){case 0:e.$$.smartPtrType===this?r=e.$$.smartPtr:C(`Cannot convert argument of type ${e.$$.smartPtrType?e.$$.smartPtrType.name:e.$$.ptrType.name} to parameter type ${this.name}`);break;case 1:r=e.$$.smartPtr;break;case 2:if(e.$$.smartPtrType===this)r=e.$$.smartPtr;else{var a=e.clone();r=this.rawShare(r,J.toHandle(()=>a.delete())),t!==null&&t.push(this.rawDestructor,r)}break;default:C("Unsupporting sharing policy")}return r}function Qr(t,e){if(e===null)return this.isReference&&C(`null is not a valid ${this.name}`),0;e.$$||C(`Cannot pass "${Zt(e)}" as a ${this.name}`),e.$$.ptr||C(`Cannot pass deleted object as a pointer of type ${this.name}`),e.$$.ptrType.isConst&&C(`Cannot convert argument of type ${e.$$.ptrType.name} to parameter type ${this.name}`);var r=e.$$.ptrType.registeredClass,n=Nt(e.$$.ptr,r,this.registeredClass);return n}function be(t){return this.fromWireType(_[t>>2])}var Zr=()=>{Object.assign(Dt.prototype,{getPointee(t){return this.rawGetPointee&&(t=this.rawGetPointee(t)),t},destructor(t){var e;(e=this.rawDestructor)===null||e===void 0||e.call(this,t)},argPackAdvance:q,readValueFromPointer:be,deleteObject(t){t!==null&&t.delete()},fromWireType:Vr})};function Dt(t,e,r,n,a,i,u,c,l,f,p){this.name=t,this.registeredClass=e,this.isReference=r,this.isConst=n,this.isSmartPointer=a,this.pointeeType=i,this.sharingPolicy=u,this.rawGetPointee=c,this.rawConstructor=l,this.rawShare=f,this.rawDestructor=p,!a&&e.baseClass===void 0?n?(this.toWireType=Xr,this.destructorFunction=null):(this.toWireType=Qr,this.destructorFunction=null):this.toWireType=qr}var Ce=(t,e,r)=>{s.hasOwnProperty(t)||Et("Replacing nonexistant public symbol"),s[t].overloadTable!==void 0&&r!==void 0?s[t].overloadTable[r]=e:(s[t]=e,s[t].argCount=r)},Jr=(t,e,r)=>{var n=s["dynCall_"+t];return r&&r.length?n.apply(null,[e].concat(r)):n.call(null,e)},Ft=[],Te,A=t=>{var e=Ft[t];return e||(t>=Ft.length&&(Ft.length=t+1),Ft[t]=e=Te.get(t)),e},Kr=(t,e,r)=>{if(t.includes("j"))return Jr(t,e,r);var n=A(e).apply(null,r);return n},tn=(t,e)=>{var r=[];return function(){return r.length=0,Object.assign(r,arguments),Kr(t,e,r)}},N=(t,e)=>{t=I(t);function r(){return t.includes("j")?tn(t,e):A(e)}var n=r();return typeof n!="function"&&C(`unknown function pointer with signature ${t}: ${e}`),n},en=(t,e)=>{var r=yt(e,function(n){this.name=e,this.message=n;var a=new Error(n).stack;a!==void 0&&(this.stack=this.toString()+`
2
+ `+a.replace(/^Error(:[^\n]*)?\n/,""))});return r.prototype=Object.create(t.prototype),r.prototype.constructor=r,r.prototype.toString=function(){return this.message===void 0?this.name:`${this.name}: ${this.message}`},r},_e,Pe=t=>{var e=Ie(t),r=I(e);return K(e),r},xt=(t,e)=>{var r=[],n={};function a(i){if(!n[i]&&!rt[i]){if(Pt[i]){Pt[i].forEach(a);return}r.push(i),n[i]=!0}}throw e.forEach(a),new _e(`${t}: `+r.map(Pe).join([", "]))},rn=(t,e,r,n,a,i,u,c,l,f,p,v,y)=>{p=I(p),i=N(a,i),c&&(c=N(u,c)),f&&(f=N(l,f)),y=N(v,y);var w=Nr(p);zt(w,function(){xt(`Cannot construct ${p} due to unbound types`,[n])}),nt([t,e,r],n?[n]:[],function(E){E=E[0];var F,T;n?(F=E.registeredClass,T=F.instancePrototype):T=Ot.prototype;var R=yt(p,function(){if(Object.getPrototypeOf(this)!==d)throw new st("Use 'new' to construct "+p);if(m.constructor_body===void 0)throw new st(p+" has no accessible constructor");var Le=m.constructor_body[arguments.length];if(Le===void 0)throw new st(`Tried to invoke ctor of ${p} with invalid number of parameters (${arguments.length}) - expected (${Object.keys(m.constructor_body).toString()}) parameters instead!`);return Le.apply(this,arguments)}),d=Object.create(T,{constructor:{value:R}});R.prototype=d;var m=new Gr(p,R,d,y,F,i,c,f);if(m.baseClass){var x,j;(j=(x=m.baseClass).__derivedClasses)!==null&&j!==void 0||(x.__derivedClasses=[]),m.baseClass.__derivedClasses.push(m)}var ut=new Dt(p,m,!0,!1,!1),jt=new Dt(p+"*",m,!1,!1,!1),Ve=new Dt(p+" const*",m,!1,!0,!1);return we[t]={pointerType:jt,constPointerType:Ve},Ce(w,R),[ut,jt,Ve]})},Gt=(t,e)=>{for(var r=[],n=0;n<t;n++)r.push(_[e+n*4>>2]);return r};function nn(t){for(var e=1;e<t.length;++e)if(t[e]!==null&&t[e].destructorFunction===void 0)return!0;return!1}function Xt(t,e,r,n,a,i){var u=e.length;u<2&&C("argTypes array size mismatch! Must at least get return value and 'this' types!");var c=e[1]!==null&&r!==null,l=nn(e),f=e[0].name!=="void",p=u-2,v=new Array(p),y=[],w=[],E=function(){arguments.length!==p&&C(`function ${t} called with ${arguments.length} arguments, expected ${p}`),w.length=0;var F;y.length=c?2:1,y[0]=a,c&&(F=e[1].toWireType(w,this),y[1]=F);for(var T=0;T<p;++T)v[T]=e[T+2].toWireType(w,arguments[T]),y.push(v[T]);var R=n.apply(null,y);function d(m){if(l)Bt(w);else for(var x=c?1:2;x<e.length;x++){var j=x===1?F:v[x-2];e[x].destructorFunction!==null&&e[x].destructorFunction(j)}if(f)return e[0].fromWireType(m)}return d(R)};return yt(t,E)}var an=(t,e,r,n,a,i)=>{var u=Gt(e,r);a=N(n,a),nt([],[t],function(c){c=c[0];var l=`constructor ${c.name}`;if(c.registeredClass.constructor_body===void 0&&(c.registeredClass.constructor_body=[]),c.registeredClass.constructor_body[e-1]!==void 0)throw new st(`Cannot register multiple constructors with identical number of parameters (${e-1}) for class '${c.name}'! Overload resolution is currently only performed using the parameter count, not actual type info!`);return c.registeredClass.constructor_body[e-1]=()=>{xt(`Cannot construct ${c.name} due to unbound types`,u)},nt([],u,f=>(f.splice(1,0,null),c.registeredClass.constructor_body[e-1]=Xt(l,f,null,a,i),[])),[]})},Ee=t=>{t=t.trim();const e=t.indexOf("(");return e!==-1?t.substr(0,e):t},on=(t,e,r,n,a,i,u,c,l)=>{var f=Gt(r,n);e=I(e),e=Ee(e),i=N(a,i),nt([],[t],function(p){p=p[0];var v=`${p.name}.${e}`;e.startsWith("@@")&&(e=Symbol[e.substring(2)]),c&&p.registeredClass.pureVirtualFunctions.push(e);function y(){xt(`Cannot call ${v} due to unbound types`,f)}var w=p.registeredClass.instancePrototype,E=w[e];return E===void 0||E.overloadTable===void 0&&E.className!==p.name&&E.argCount===r-2?(y.argCount=r-2,y.className=p.name,w[e]=y):($e(w,e,v),w[e].overloadTable[r-2]=y),nt([],f,function(F){var T=Xt(v,F,p,i,u);return w[e].overloadTable===void 0?(T.argCount=r-2,w[e]=T):w[e].overloadTable[r-2]=T,[]}),[]})};function sn(){Object.assign(Ae.prototype,{get(t){return this.allocated[t]},has(t){return this.allocated[t]!==void 0},allocate(t){var e=this.freelist.pop()||this.allocated.length;return this.allocated[e]=t,e},free(t){this.allocated[t]=void 0,this.freelist.push(t)}})}function Ae(){this.allocated=[void 0],this.freelist=[]}var z=new Ae,qt=t=>{t>=z.reserved&&--z.get(t).refcount===0&&z.free(t)},un=()=>{for(var t=0,e=z.reserved;e<z.allocated.length;++e)z.allocated[e]!==void 0&&++t;return t},cn=()=>{z.allocated.push({value:void 0},{value:null},{value:!0},{value:!1}),z.reserved=z.allocated.length,s.count_emval_handles=un},J={toValue:t=>(t||C("Cannot use deleted val. handle = "+t),z.get(t).value),toHandle:t=>{switch(t){case void 0:return 1;case null:return 2;case!0:return 3;case!1:return 4;default:return z.allocate({refcount:1,value:t})}}},ln=(t,e)=>{e=I(e),X(t,{name:e,fromWireType:r=>{var n=J.toValue(r);return qt(r),n},toWireType:(r,n)=>J.toHandle(n),argPackAdvance:q,readValueFromPointer:Ut,destructorFunction:null})},dn=(t,e,r)=>{switch(e){case 1:return r?function(n){return this.fromWireType(V[n>>0])}:function(n){return this.fromWireType(W[n>>0])};case 2:return r?function(n){return this.fromWireType(at[n>>1])}:function(n){return this.fromWireType(dt[n>>1])};case 4:return r?function(n){return this.fromWireType(k[n>>2])}:function(n){return this.fromWireType(_[n>>2])};default:throw new TypeError(`invalid integer width (${e}): ${t}`)}},fn=(t,e,r,n)=>{e=I(e);function a(){}a.values={},X(t,{name:e,constructor:a,fromWireType:function(i){return this.constructor.values[i]},toWireType:(i,u)=>u.value,argPackAdvance:q,readValueFromPointer:dn(e,r,n),destructorFunction:null}),zt(e,a)},Qt=(t,e)=>{var r=rt[t];return r===void 0&&C(e+" has unknown type "+Pe(t)),r},hn=(t,e,r)=>{var n=Qt(t,"enum");e=I(e);var a=n.constructor,i=Object.create(n.constructor.prototype,{value:{value:r},constructor:{value:yt(`${n.name}_${e}`,function(){})}});a.values[r]=i,a[e]=i},Zt=t=>{if(t===null)return"null";var e=typeof t;return e==="object"||e==="array"||e==="function"?t.toString():""+t},pn=(t,e)=>{switch(e){case 4:return function(r){return this.fromWireType(oe[r>>2])};case 8:return function(r){return this.fromWireType(ie[r>>3])};default:throw new TypeError(`invalid float width (${e}): ${t}`)}},mn=(t,e,r)=>{e=I(e),X(t,{name:e,fromWireType:n=>n,toWireType:(n,a)=>a,argPackAdvance:q,readValueFromPointer:pn(e,r),destructorFunction:null})},vn=(t,e,r,n,a,i,u)=>{var c=Gt(e,r);t=I(t),t=Ee(t),a=N(n,a),zt(t,function(){xt(`Cannot call ${t} due to unbound types`,c)},e-1),nt([],c,function(l){var f=[l[0],null].concat(l.slice(1));return Ce(t,Xt(t,f,null,a,i),e-1),[]})},yn=(t,e,r)=>{switch(e){case 1:return r?n=>V[n>>0]:n=>W[n>>0];case 2:return r?n=>at[n>>1]:n=>dt[n>>1];case 4:return r?n=>k[n>>2]:n=>_[n>>2];default:throw new TypeError(`invalid integer width (${e}): ${t}`)}},gn=(t,e,r,n,a)=>{e=I(e);var i=p=>p;if(n===0){var u=32-8*r;i=p=>p<<u>>>u}var c=e.includes("unsigned"),l=(p,v)=>{},f;c?f=function(p,v){return l(v,this.name),v>>>0}:f=function(p,v){return l(v,this.name),v},X(t,{name:e,fromWireType:i,toWireType:f,argPackAdvance:q,readValueFromPointer:yn(e,r,n!==0),destructorFunction:null})},wn=(t,e,r)=>{var n=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array],a=n[e];function i(u){var c=_[u>>2],l=_[u+4>>2];return new a(V.buffer,l,c)}r=I(r),X(t,{name:r,fromWireType:i,argPackAdvance:q,readValueFromPointer:i},{ignoreDuplicateRegistrations:!0})},Oe=(t,e,r,n)=>{if(!(n>0))return 0;for(var a=r,i=r+n-1,u=0;u<t.length;++u){var c=t.charCodeAt(u);if(c>=55296&&c<=57343){var l=t.charCodeAt(++u);c=65536+((c&1023)<<10)|l&1023}if(c<=127){if(r>=i)break;e[r++]=c}else if(c<=2047){if(r+1>=i)break;e[r++]=192|c>>6,e[r++]=128|c&63}else if(c<=65535){if(r+2>=i)break;e[r++]=224|c>>12,e[r++]=128|c>>6&63,e[r++]=128|c&63}else{if(r+3>=i)break;e[r++]=240|c>>18,e[r++]=128|c>>12&63,e[r++]=128|c>>6&63,e[r++]=128|c&63}}return e[r]=0,r-a},$n=(t,e,r)=>Oe(t,W,e,r),De=t=>{for(var e=0,r=0;r<t.length;++r){var n=t.charCodeAt(r);n<=127?e++:n<=2047?e+=2:n>=55296&&n<=57343?(e+=4,++r):e+=3}return e},Fe=typeof TextDecoder<"u"?new TextDecoder("utf8"):void 0,bn=(t,e,r)=>{for(var n=e+r,a=e;t[a]&&!(a>=n);)++a;if(a-e>16&&t.buffer&&Fe)return Fe.decode(t.subarray(e,a));for(var i="";e<a;){var u=t[e++];if(!(u&128)){i+=String.fromCharCode(u);continue}var c=t[e++]&63;if((u&224)==192){i+=String.fromCharCode((u&31)<<6|c);continue}var l=t[e++]&63;if((u&240)==224?u=(u&15)<<12|c<<6|l:u=(u&7)<<18|c<<12|l<<6|t[e++]&63,u<65536)i+=String.fromCharCode(u);else{var f=u-65536;i+=String.fromCharCode(55296|f>>10,56320|f&1023)}}return i},Jt=(t,e)=>t?bn(W,t,e):"",Cn=(t,e)=>{e=I(e);var r=e==="std::string";X(t,{name:e,fromWireType(n){var a=_[n>>2],i=n+4,u;if(r)for(var c=i,l=0;l<=a;++l){var f=i+l;if(l==a||W[f]==0){var p=f-c,v=Jt(c,p);u===void 0?u=v:(u+="\0",u+=v),c=f+1}}else{for(var y=new Array(a),l=0;l<a;++l)y[l]=String.fromCharCode(W[i+l]);u=y.join("")}return K(n),u},toWireType(n,a){a instanceof ArrayBuffer&&(a=new Uint8Array(a));var i,u=typeof a=="string";u||a instanceof Uint8Array||a instanceof Uint8ClampedArray||a instanceof Int8Array||C("Cannot pass non-string to std::string"),r&&u?i=De(a):i=a.length;var c=ee(4+i+1),l=c+4;if(_[c>>2]=i,r&&u)$n(a,l,i+1);else if(u)for(var f=0;f<i;++f){var p=a.charCodeAt(f);p>255&&(K(l),C("String has UTF-16 code units that do not fit in 8 bits")),W[l+f]=p}else for(var f=0;f<i;++f)W[l+f]=a[f];return n!==null&&n.push(K,c),c},argPackAdvance:q,readValueFromPointer:be,destructorFunction(n){K(n)}})},xe=typeof TextDecoder<"u"?new TextDecoder("utf-16le"):void 0,Tn=(t,e)=>{for(var r=t,n=r>>1,a=n+e/2;!(n>=a)&&dt[n];)++n;if(r=n<<1,r-t>32&&xe)return xe.decode(W.subarray(t,r));for(var i="",u=0;!(u>=e/2);++u){var c=at[t+u*2>>1];if(c==0)break;i+=String.fromCharCode(c)}return i},_n=(t,e,r)=>{var n;if((n=r)!==null&&n!==void 0||(r=2147483647),r<2)return 0;r-=2;for(var a=e,i=r<t.length*2?r/2:t.length,u=0;u<i;++u){var c=t.charCodeAt(u);at[e>>1]=c,e+=2}return at[e>>1]=0,e-a},Pn=t=>t.length*2,En=(t,e)=>{for(var r=0,n="";!(r>=e/4);){var a=k[t+r*4>>2];if(a==0)break;if(++r,a>=65536){var i=a-65536;n+=String.fromCharCode(55296|i>>10,56320|i&1023)}else n+=String.fromCharCode(a)}return n},An=(t,e,r)=>{var n;if((n=r)!==null&&n!==void 0||(r=2147483647),r<4)return 0;for(var a=e,i=a+r-4,u=0;u<t.length;++u){var c=t.charCodeAt(u);if(c>=55296&&c<=57343){var l=t.charCodeAt(++u);c=65536+((c&1023)<<10)|l&1023}if(k[e>>2]=c,e+=4,e+4>i)break}return k[e>>2]=0,e-a},On=t=>{for(var e=0,r=0;r<t.length;++r){var n=t.charCodeAt(r);n>=55296&&n<=57343&&++r,e+=4}return e},Dn=(t,e,r)=>{r=I(r);var n,a,i,u,c;e===2?(n=Tn,a=_n,u=Pn,i=()=>dt,c=1):e===4&&(n=En,a=An,u=On,i=()=>_,c=2),X(t,{name:r,fromWireType:l=>{for(var f=_[l>>2],p=i(),v,y=l+4,w=0;w<=f;++w){var E=l+4+w*e;if(w==f||p[E>>c]==0){var F=E-y,T=n(y,F);v===void 0?v=T:(v+="\0",v+=T),y=E+e}}return K(l),v},toWireType:(l,f)=>{typeof f!="string"&&C(`Cannot pass non-string to C++ string type ${r}`);var p=u(f),v=ee(4+p+e);return _[v>>2]=p>>c,a(f,v+4,p+e),l!==null&&l.push(K,v),v},argPackAdvance:q,readValueFromPointer:Ut,destructorFunction(l){K(l)}})},Fn=(t,e,r,n,a,i)=>{_t[t]={name:I(e),rawConstructor:N(r,n),rawDestructor:N(a,i),fields:[]}},xn=(t,e,r,n,a,i,u,c,l,f)=>{_t[t].fields.push({fieldName:I(e),getterReturnType:r,getter:N(n,a),getterContext:i,setterArgumentType:u,setter:N(c,l),setterContext:f})},Sn=(t,e)=>{e=I(e),X(t,{isVoid:!0,name:e,argPackAdvance:0,fromWireType:()=>{},toWireType:(r,n)=>{}})},Kt=[],Mn=(t,e,r,n)=>(t=Kt[t],e=J.toValue(e),t(null,e,r,n)),jn={},In=t=>{var e=jn[t];return e===void 0?I(t):e},Se=()=>{if(typeof globalThis=="object")return globalThis;function t(e){e.$$$embind_global$$$=e;var r=typeof $$$embind_global$$$=="object"&&e.$$$embind_global$$$==e;return r||delete e.$$$embind_global$$$,r}if(typeof $$$embind_global$$$=="object"||(typeof global=="object"&&t(global)?$$$embind_global$$$=global:typeof self=="object"&&t(self)&&($$$embind_global$$$=self),typeof $$$embind_global$$$=="object"))return $$$embind_global$$$;throw Error("unable to get global object.")},Rn=t=>t===0?J.toHandle(Se()):(t=In(t),J.toHandle(Se()[t])),Wn=t=>{var e=Kt.length;return Kt.push(t),e},kn=(t,e)=>{for(var r=new Array(t),n=0;n<t;++n)r[n]=Qt(_[e+n*4>>2],"parameter "+n);return r},Hn=Reflect.construct,Bn=(t,e,r)=>{var n=[],a=t.toWireType(n,r);return n.length&&(_[e>>2]=J.toHandle(n)),a},Un=(t,e,r)=>{var n=kn(t,e),a=n.shift();t--;var i=new Array(t),u=(l,f,p,v)=>{for(var y=0,w=0;w<t;++w)i[w]=n[w].readValueFromPointer(v+y),y+=n[w].argPackAdvance;for(var E=r===1?Hn(f,i):f.apply(l,i),w=0;w<t;++w){var F,T;(F=(T=n[w]).deleteObject)===null||F===void 0||F.call(T,i[w])}return Bn(a,p,E)},c=`methodCaller<(${n.map(l=>l.name).join(", ")}) => ${a.name}>`;return Wn(yt(c,u))},Vn=t=>{t>4&&(z.get(t).refcount+=1)},Ln=t=>{var e=J.toValue(t);Bt(e),qt(t)},Yn=(t,e)=>{t=Qt(t,"_emval_take_value");var r=t.readValueFromPointer(e);return J.toHandle(r)},zn=()=>{bt("")},Nn=(t,e,r)=>W.copyWithin(t,e,e+r),Gn=()=>2147483648,Xn=t=>{var e=tt.buffer,r=(t-e.byteLength+65535)/65536;try{return tt.grow(r),se(),1}catch{}},qn=t=>{var e=W.length;t>>>=0;var r=Gn();if(t>r)return!1;for(var n=(l,f)=>l+(f-l%f)%f,a=1;a<=4;a*=2){var i=e*(1+.2/a);i=Math.min(i,t+100663296);var u=Math.min(r,n(Math.max(t,i),65536)),c=Xn(u);if(c)return!0}return!1},te={},Qn=()=>H||"./this.program",gt=()=>{if(!gt.strings){var t=(typeof navigator=="object"&&navigator.languages&&navigator.languages[0]||"C").replace("-","_")+".UTF-8",e={USER:"web_user",LOGNAME:"web_user",PATH:"/",PWD:"/",HOME:"/home/web_user",LANG:t,_:Qn()};for(var r in te)te[r]===void 0?delete e[r]:e[r]=te[r];var n=[];for(var r in e)n.push(`${r}=${e[r]}`);gt.strings=n}return gt.strings},Zn=(t,e)=>{for(var r=0;r<t.length;++r)V[e++>>0]=t.charCodeAt(r);V[e>>0]=0},Jn=(t,e)=>{var r=0;return gt().forEach((n,a)=>{var i=e+r;_[t+a*4>>2]=i,Zn(n,i),r+=n.length+1}),0},Kn=(t,e)=>{var r=gt();_[t>>2]=r.length;var n=0;return r.forEach(a=>n+=a.length+1),_[e>>2]=n,0},ta=t=>t,St=t=>t%4===0&&(t%100!==0||t%400===0),ea=(t,e)=>{for(var r=0,n=0;n<=e;r+=t[n++]);return r},Me=[31,29,31,30,31,30,31,31,30,31,30,31],je=[31,28,31,30,31,30,31,31,30,31,30,31],ra=(t,e)=>{for(var r=new Date(t.getTime());e>0;){var n=St(r.getFullYear()),a=r.getMonth(),i=(n?Me:je)[a];if(e>i-r.getDate())e-=i-r.getDate()+1,r.setDate(1),a<11?r.setMonth(a+1):(r.setMonth(0),r.setFullYear(r.getFullYear()+1));else return r.setDate(r.getDate()+e),r}return r};function na(t,e,r){var n=r>0?r:De(t)+1,a=new Array(n),i=Oe(t,a,0,a.length);return e&&(a.length=i),a}var aa=(t,e)=>{V.set(t,e)},oa=(t,e,r,n)=>{var a=_[n+40>>2],i={tm_sec:k[n>>2],tm_min:k[n+4>>2],tm_hour:k[n+8>>2],tm_mday:k[n+12>>2],tm_mon:k[n+16>>2],tm_year:k[n+20>>2],tm_wday:k[n+24>>2],tm_yday:k[n+28>>2],tm_isdst:k[n+32>>2],tm_gmtoff:k[n+36>>2],tm_zone:a?Jt(a):""},u=Jt(r),c={"%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","%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 l in c)u=u.replace(new RegExp(l,"g"),c[l]);var f=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],p=["January","February","March","April","May","June","July","August","September","October","November","December"];function v(d,m,x){for(var j=typeof d=="number"?d.toString():d||"";j.length<m;)j=x[0]+j;return j}function y(d,m){return v(d,m,"0")}function w(d,m){function x(ut){return ut<0?-1:ut>0?1:0}var j;return(j=x(d.getFullYear()-m.getFullYear()))===0&&(j=x(d.getMonth()-m.getMonth()))===0&&(j=x(d.getDate()-m.getDate())),j}function E(d){switch(d.getDay()){case 0:return new Date(d.getFullYear()-1,11,29);case 1:return d;case 2:return new Date(d.getFullYear(),0,3);case 3:return new Date(d.getFullYear(),0,2);case 4:return new Date(d.getFullYear(),0,1);case 5:return new Date(d.getFullYear()-1,11,31);case 6:return new Date(d.getFullYear()-1,11,30)}}function F(d){var m=ra(new Date(d.tm_year+1900,0,1),d.tm_yday),x=new Date(m.getFullYear(),0,4),j=new Date(m.getFullYear()+1,0,4),ut=E(x),jt=E(j);return w(ut,m)<=0?w(jt,m)<=0?m.getFullYear()+1:m.getFullYear():m.getFullYear()-1}var T={"%a":d=>f[d.tm_wday].substring(0,3),"%A":d=>f[d.tm_wday],"%b":d=>p[d.tm_mon].substring(0,3),"%B":d=>p[d.tm_mon],"%C":d=>{var m=d.tm_year+1900;return y(m/100|0,2)},"%d":d=>y(d.tm_mday,2),"%e":d=>v(d.tm_mday,2," "),"%g":d=>F(d).toString().substring(2),"%G":d=>F(d),"%H":d=>y(d.tm_hour,2),"%I":d=>{var m=d.tm_hour;return m==0?m=12:m>12&&(m-=12),y(m,2)},"%j":d=>y(d.tm_mday+ea(St(d.tm_year+1900)?Me:je,d.tm_mon-1),3),"%m":d=>y(d.tm_mon+1,2),"%M":d=>y(d.tm_min,2),"%n":()=>`
3
+ `,"%p":d=>d.tm_hour>=0&&d.tm_hour<12?"AM":"PM","%S":d=>y(d.tm_sec,2),"%t":()=>" ","%u":d=>d.tm_wday||7,"%U":d=>{var m=d.tm_yday+7-d.tm_wday;return y(Math.floor(m/7),2)},"%V":d=>{var m=Math.floor((d.tm_yday+7-(d.tm_wday+6)%7)/7);if((d.tm_wday+371-d.tm_yday-2)%7<=2&&m++,m){if(m==53){var x=(d.tm_wday+371-d.tm_yday)%7;x!=4&&(x!=3||!St(d.tm_year))&&(m=1)}}else{m=52;var j=(d.tm_wday+7-d.tm_yday-1)%7;(j==4||j==5&&St(d.tm_year%400-1))&&m++}return y(m,2)},"%w":d=>d.tm_wday,"%W":d=>{var m=d.tm_yday+7-(d.tm_wday+6)%7;return y(Math.floor(m/7),2)},"%y":d=>(d.tm_year+1900).toString().substring(2),"%Y":d=>d.tm_year+1900,"%z":d=>{var m=d.tm_gmtoff,x=m>=0;return m=Math.abs(m)/60,m=m/60*100+m%60,(x?"+":"-")+("0000"+m).slice(-4)},"%Z":d=>d.tm_zone,"%%":()=>"%"};u=u.replace(/%%/g,"\0\0");for(var l in T)u.includes(l)&&(u=u.replace(new RegExp(l,"g"),T[l](i)));u=u.replace(/\0\0/g,"%");var R=na(u,!1);return R.length>e?0:(aa(R,t),R.length-1)},ia=(t,e,r,n,a)=>oa(t,e,r,n);pe=s.InternalError=class extends Error{constructor(t){super(t),this.name="InternalError"}},xr(),st=s.BindingError=class extends Error{constructor(t){super(t),this.name="BindingError"}},Lr(),Hr(),Zr(),_e=s.UnboundTypeError=en(Error,"UnboundTypeError"),sn(),cn();var sa={s:$r,u:br,b:Tr,g:_r,q:Pr,J:Er,f:Ar,V:Or,d:Cr,da:Dr,Q:Fr,_:Mr,ca:rn,ba:an,w:on,Y:ln,x:fn,h:hn,L:mn,M:vn,t:gn,o:wn,K:Cn,C:Dn,A:Fn,ea:xn,$:Sn,R:Mn,ha:qt,fa:Rn,Z:Un,N:Vn,O:Ln,aa:Yn,B:zn,X:Nn,W:qn,T:Jn,U:Kn,E:Ta,D:fa,F:Ca,n:_a,a:ua,e:pa,m:da,k:va,H:$a,v:ga,G:ba,z:Ea,P:Oa,l:ma,j:ha,c:la,p:ca,I:wa,r:Pa,i:ya,y:Aa,ga:ta,S:ia},M=wr(),K=s._free=t=>(K=s._free=M.ka)(t),ee=s._malloc=t=>(ee=s._malloc=M.la)(t),Ie=t=>(Ie=M.na)(t),P=(t,e)=>(P=M.oa)(t,e),wt=t=>(wt=M.pa)(t),O=()=>(O=M.qa)(),D=t=>(D=M.ra)(t),Re=t=>(Re=M.sa)(t),We=t=>(We=M.ta)(t),ke=(t,e,r)=>(ke=M.ua)(t,e,r),He=t=>(He=M.va)(t);s.dynCall_viijii=(t,e,r,n,a,i,u)=>(s.dynCall_viijii=M.wa)(t,e,r,n,a,i,u);var Be=s.dynCall_jiiii=(t,e,r,n,a)=>(Be=s.dynCall_jiiii=M.xa)(t,e,r,n,a);s.dynCall_iiiiij=(t,e,r,n,a,i,u)=>(s.dynCall_iiiiij=M.ya)(t,e,r,n,a,i,u),s.dynCall_iiiiijj=(t,e,r,n,a,i,u,c,l)=>(s.dynCall_iiiiijj=M.za)(t,e,r,n,a,i,u,c,l),s.dynCall_iiiiiijj=(t,e,r,n,a,i,u,c,l,f)=>(s.dynCall_iiiiiijj=M.Aa)(t,e,r,n,a,i,u,c,l,f);function ua(t,e){var r=O();try{return A(t)(e)}catch(n){if(D(r),n!==n+0)throw n;P(1,0)}}function ca(t,e,r,n){var a=O();try{A(t)(e,r,n)}catch(i){if(D(a),i!==i+0)throw i;P(1,0)}}function la(t,e,r){var n=O();try{A(t)(e,r)}catch(a){if(D(n),a!==a+0)throw a;P(1,0)}}function da(t,e,r,n){var a=O();try{return A(t)(e,r,n)}catch(i){if(D(a),i!==i+0)throw i;P(1,0)}}function fa(t,e,r,n,a){var i=O();try{return A(t)(e,r,n,a)}catch(u){if(D(i),u!==u+0)throw u;P(1,0)}}function ha(t,e){var r=O();try{A(t)(e)}catch(n){if(D(r),n!==n+0)throw n;P(1,0)}}function pa(t,e,r){var n=O();try{return A(t)(e,r)}catch(a){if(D(n),a!==a+0)throw a;P(1,0)}}function ma(t){var e=O();try{A(t)()}catch(r){if(D(e),r!==r+0)throw r;P(1,0)}}function va(t,e,r,n,a){var i=O();try{return A(t)(e,r,n,a)}catch(u){if(D(i),u!==u+0)throw u;P(1,0)}}function ya(t,e,r,n,a,i,u,c,l,f,p){var v=O();try{A(t)(e,r,n,a,i,u,c,l,f,p)}catch(y){if(D(v),y!==y+0)throw y;P(1,0)}}function ga(t,e,r,n,a,i,u){var c=O();try{return A(t)(e,r,n,a,i,u)}catch(l){if(D(c),l!==l+0)throw l;P(1,0)}}function wa(t,e,r,n,a){var i=O();try{A(t)(e,r,n,a)}catch(u){if(D(i),u!==u+0)throw u;P(1,0)}}function $a(t,e,r,n,a,i){var u=O();try{return A(t)(e,r,n,a,i)}catch(c){if(D(u),c!==c+0)throw c;P(1,0)}}function ba(t,e,r,n,a,i,u,c){var l=O();try{return A(t)(e,r,n,a,i,u,c)}catch(f){if(D(l),f!==f+0)throw f;P(1,0)}}function Ca(t,e,r,n){var a=O();try{return A(t)(e,r,n)}catch(i){if(D(a),i!==i+0)throw i;P(1,0)}}function Ta(t,e,r,n){var a=O();try{return A(t)(e,r,n)}catch(i){if(D(a),i!==i+0)throw i;P(1,0)}}function _a(t){var e=O();try{return A(t)()}catch(r){if(D(e),r!==r+0)throw r;P(1,0)}}function Pa(t,e,r,n,a,i,u,c){var l=O();try{A(t)(e,r,n,a,i,u,c)}catch(f){if(D(l),f!==f+0)throw f;P(1,0)}}function Ea(t,e,r,n,a,i,u,c,l,f,p,v){var y=O();try{return A(t)(e,r,n,a,i,u,c,l,f,p,v)}catch(w){if(D(y),w!==w+0)throw w;P(1,0)}}function Aa(t,e,r,n,a,i,u,c,l,f,p,v,y,w,E,F){var T=O();try{A(t)(e,r,n,a,i,u,c,l,f,p,v,y,w,E,F)}catch(R){if(D(T),R!==R+0)throw R;P(1,0)}}function Oa(t,e,r,n,a){var i=O();try{return Be(t,e,r,n,a)}catch(u){if(D(i),u!==u+0)throw u;P(1,0)}}var Mt;ft=function t(){Mt||Ue(),Mt||(ft=t)};function Ue(){if(et>0||(ur(),et>0))return;function t(){Mt||(Mt=!0,s.calledRun=!0,!lt&&(cr(),$(s),s.onRuntimeInitialized&&s.onRuntimeInitialized(),lr()))}s.setStatus?(s.setStatus("Running..."),setTimeout(function(){setTimeout(function(){s.setStatus("")},1),t()},1)):t()}if(s.preInit)for(typeof s.preInit=="function"&&(s.preInit=[s.preInit]);s.preInit.length>0;)s.preInit.pop()();return Ue(),h.ready}})();function eo(o){return ae(Rt,o)}function ro(o){return Ja(Rt,o)}async function no(o,h){return Ka(Rt,o,h)}async function ao(o,h){return to(Rt,o,h)}var ct;class oo extends EventTarget{constructor(s={}){var $;super();ze(this,ct,void 0);try{const g=($=s==null?void 0:s.formats)==null?void 0:$.filter(b=>b!=="unknown");if((g==null?void 0:g.length)===0)throw new TypeError("Hint option provided, but is empty.");g==null||g.forEach(b=>{if(!It.has(b))throw new TypeError(`Failed to read the 'formats' property from 'BarcodeDetectorOptions': The provided value '${b}' is not a valid enum value of type BarcodeFormat.`)}),Ne(this,ct,g!=null?g:[]),eo().then(b=>{this.dispatchEvent(new CustomEvent("load",{detail:b}))}).catch(b=>{this.dispatchEvent(new CustomEvent("error",{detail:b}))})}catch(g){throw Ge(g,"Failed to construct 'BarcodeDetector'")}}static async getSupportedFormats(){return Da.filter(s=>s!=="unknown")}async detect(s){try{const $=await Ra(s);if($===null)return[];let g;try{ar($)?g=await no($,{tryHarder:!0,formats:re(this,ct).map(b=>It.get(b))}):g=await ao($,{tryHarder:!0,formats:re(this,ct).map(b=>It.get(b))})}catch(b){throw console.error(b),new DOMException("Barcode detection service unavailable.","NotSupportedError")}return g.map(b=>{const{topLeft:{x:H,y:L},topRight:{x:B,y:S},bottomLeft:{x:Y,y:G},bottomRight:{x:U,y:Q}}=b.position,tt=Math.min(H,B,Y,U),lt=Math.min(L,S,G,Q),V=Math.max(H,B,Y,U),W=Math.max(L,S,G,Q);return{boundingBox:new DOMRectReadOnly(tt,lt,V-tt,W-lt),rawValue:b.text,format:Fa(b.format),cornerPoints:[{x:H,y:L},{x:B,y:S},{x:U,y:Q},{x:Y,y:G}]}})}catch($){throw Ge($,"Failed to execute 'detect' on 'BarcodeDetector'")}}}ct=new WeakMap;exports.BarcodeDetector=oo;exports.setZXingModuleOverrides=ro;
@@ -1,24 +1,8 @@
1
- /// <reference types="dom-webcodecs" />
2
- import { Point2D } from "./BarcodeDetector.js";
3
1
  export { setZXingModuleOverrides } from "./BarcodeDetector.js";
4
- import { BARCODE_DETECTOR_FORMATS } from "./utils.js";
5
2
  declare global {
6
- var BarcodeDetector: {
7
- readonly prototype: BarcodeDetector;
8
- new (barcodeDectorOptions?: BarcodeDetectorOptions): BarcodeDetector;
9
- getSupportedFormats(): Promise<readonly BarcodeFormat[]>;
10
- };
11
- interface BarcodeDetector {
12
- detect(image: ImageBitmapSourceWebCodecs): Promise<DetectedBarcode[]>;
13
- }
14
- type BarcodeFormat = (typeof BARCODE_DETECTOR_FORMATS)[number];
15
- interface BarcodeDetectorOptions {
16
- formats?: BarcodeFormat[];
17
- }
18
- interface DetectedBarcode {
19
- boundingBox: DOMRectReadOnly;
20
- rawValue: string;
21
- format: BarcodeFormat;
22
- cornerPoints: [Point2D, Point2D, Point2D, Point2D];
23
- }
3
+ var BarcodeDetector: typeof import("./BarcodeDetector.js").BarcodeDetector;
4
+ type BarcodeDetector = import("./BarcodeDetector.js").BarcodeDetector;
5
+ type BarcodeFormat = import("./BarcodeDetector.js").BarcodeFormat;
6
+ type BarcodeDetectorOptions = import("./BarcodeDetector.js").BarcodeDetectorOptions;
7
+ type DetectedBarcode = import("./BarcodeDetector.js").DetectedBarcode;
24
8
  }
@@ -1,5 +1,10 @@
1
1
  /// <reference types="dom-webcodecs" />
2
- export declare const BARCODE_DETECTOR_FORMATS: readonly ["aztec", "code_128", "code_39", "code_93", "codabar", "data_matrix", "ean_13", "ean_8", "itf", "pdf417", "qr_code", "upc_a", "upc_e", "unknown"];
2
+ import { type ReadInputBarcodeFormat, type ReadOutputBarcodeFormat } from "zxing-wasm/reader";
3
+ export declare const BARCODE_FORMATS: ("aztec" | "code_128" | "code_39" | "code_93" | "codabar" | "databar" | "databar_expanded" | "data_matrix" | "dx_film_edge" | "ean_13" | "ean_8" | "itf" | "maxi_code" | "micro_qr_code" | "pdf417" | "qr_code" | "rm_qr_code" | "upc_a" | "upc_e" | "linear_codes" | "matrix_codes" | "unknown")[];
4
+ export type BarcodeFormat = (typeof BARCODE_FORMATS)[number];
5
+ export type ReadResultBarcodeFormat = Exclude<BarcodeFormat, "linear_codes" | "matrix_codes">;
6
+ export declare const formatMap: Map<"aztec" | "code_128" | "code_39" | "code_93" | "codabar" | "databar" | "databar_expanded" | "data_matrix" | "dx_film_edge" | "ean_13" | "ean_8" | "itf" | "maxi_code" | "micro_qr_code" | "pdf417" | "qr_code" | "rm_qr_code" | "upc_a" | "upc_e" | "linear_codes" | "matrix_codes" | "unknown", ReadInputBarcodeFormat>;
7
+ export declare function convertFormat(target: ReadOutputBarcodeFormat): ReadResultBarcodeFormat;
3
8
  export declare function isBlob(image: ImageBitmapSourceWebCodecs): image is Blob;
4
9
  export declare function getImageDataOrBlobFromImageBitmapSource(image: ImageBitmapSourceWebCodecs): Promise<ImageData | Blob | null>;
5
10
  declare global {
@@ -1,7 +1,7 @@
1
1
  /// <reference types="dom-webcodecs" />
2
2
  import { type ZXingReaderModule } from "zxing-wasm/reader";
3
- import { BARCODE_DETECTOR_FORMATS } from "./utils.js";
4
- export type BarcodeFormat = (typeof BARCODE_DETECTOR_FORMATS)[number];
3
+ import { type BarcodeFormat, type ReadResultBarcodeFormat } from "./utils.js";
4
+ export { type BarcodeFormat } from "./utils.js";
5
5
  export interface BarcodeDetectorOptions {
6
6
  formats?: BarcodeFormat[];
7
7
  }
@@ -12,7 +12,7 @@ export interface Point2D {
12
12
  export interface DetectedBarcode {
13
13
  boundingBox: DOMRectReadOnly;
14
14
  rawValue: string;
15
- format: BarcodeFormat;
15
+ format: ReadResultBarcodeFormat;
16
16
  cornerPoints: [Point2D, Point2D, Point2D, Point2D];
17
17
  }
18
18
  interface CustomEventMap {