@genome-spy/core 0.70.0 → 0.72.0
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/dist/bundle/index.es.js +3923 -3598
- package/dist/bundle/index.js +150 -143
- package/dist/bundle/parquetRead-BnAGCa4_.js +1663 -0
- package/dist/schema.json +0 -48
- package/dist/src/data/formats/parquet.d.ts +12 -0
- package/dist/src/data/formats/parquet.d.ts.map +1 -0
- package/dist/src/data/formats/parquet.js +29 -0
- package/dist/src/data/formats/parquetRead.d.ts +18 -0
- package/dist/src/data/formats/parquetRead.d.ts.map +1 -0
- package/dist/src/data/formats/parquetRead.js +326 -0
- package/dist/src/data/sources/urlSource.d.ts.map +1 -1
- package/dist/src/data/sources/urlSource.js +8 -3
- package/dist/src/encoder/encoder.d.ts +2 -2
- package/dist/src/fonts/bmFontManager.d.ts +1 -1
- package/dist/src/genome/genome.d.ts +1 -1
- package/dist/src/genomeSpy/containerUi.d.ts.map +1 -1
- package/dist/src/genomeSpy/containerUi.js +0 -1
- package/dist/src/genomeSpy/viewHighlight.js +2 -2
- package/dist/src/genomeSpy.d.ts +3 -3
- package/dist/src/genomeSpy.d.ts.map +1 -1
- package/dist/src/genomeSpy.js +29 -3
- package/dist/src/gl/hashTable.d.ts +78 -0
- package/dist/src/gl/hashTable.d.ts.map +1 -0
- package/dist/src/gl/hashTable.js +164 -0
- package/dist/src/gl/includes/common.glsl.js +1 -1
- package/dist/src/gl/webGLHelper.d.ts.map +1 -1
- package/dist/src/gl/webGLHelper.js +12 -6
- package/dist/src/marks/mark.d.ts +2 -2
- package/dist/src/marks/mark.d.ts.map +1 -1
- package/dist/src/marks/mark.js +2 -3
- package/dist/src/spec/view.d.ts +0 -10
- package/dist/src/utils/keyboardZoomMotion.d.ts +93 -0
- package/dist/src/utils/keyboardZoomMotion.d.ts.map +1 -0
- package/dist/src/utils/keyboardZoomMotion.js +285 -0
- package/dist/src/utils/radixSort.d.ts.map +1 -1
- package/dist/src/utils/radixSort.js +26 -1
- package/dist/src/view/axisGridView.d.ts +1 -1
- package/dist/src/view/axisGridView.js +0 -1
- package/dist/src/view/axisView.d.ts +1 -1
- package/dist/src/view/concatView.d.ts +6 -3
- package/dist/src/view/concatView.d.ts.map +1 -1
- package/dist/src/view/concatView.js +9 -2
- package/dist/src/view/containerMutationHelper.d.ts +6 -6
- package/dist/src/view/containerMutationHelper.d.ts.map +1 -1
- package/dist/src/view/containerView.d.ts +7 -5
- package/dist/src/view/containerView.d.ts.map +1 -1
- package/dist/src/view/containerView.js +4 -1
- package/dist/src/view/facetView.d.ts +2 -2
- package/dist/src/view/flowBuilder.d.ts +1 -1
- package/dist/src/view/flowBuilder.d.ts.map +1 -1
- package/dist/src/view/gridView/gridChild.d.ts +3 -3
- package/dist/src/view/gridView/gridChild.d.ts.map +1 -1
- package/dist/src/view/gridView/gridChild.js +0 -2
- package/dist/src/view/gridView/gridView.d.ts +13 -11
- package/dist/src/view/gridView/gridView.d.ts.map +1 -1
- package/dist/src/view/gridView/gridView.js +17 -26
- package/dist/src/view/gridView/keyboardZoomController.d.ts +21 -0
- package/dist/src/view/gridView/keyboardZoomController.d.ts.map +1 -0
- package/dist/src/view/gridView/keyboardZoomController.js +202 -0
- package/dist/src/view/gridView/scrollbar.d.ts +1 -1
- package/dist/src/view/gridView/scrollbar.d.ts.map +1 -1
- package/dist/src/view/gridView/scrollbar.js +0 -1
- package/dist/src/view/gridView/selectionRect.d.ts +1 -1
- package/dist/src/view/gridView/selectionRect.d.ts.map +1 -1
- package/dist/src/view/gridView/selectionRect.js +0 -1
- package/dist/src/view/gridView/separatorView.js +0 -1
- package/dist/src/view/gridView/zoomNavigationUtils.d.ts +19 -0
- package/dist/src/view/gridView/zoomNavigationUtils.d.ts.map +1 -0
- package/dist/src/view/gridView/zoomNavigationUtils.js +51 -0
- package/dist/src/view/layerView.d.ts +8 -5
- package/dist/src/view/layerView.d.ts.map +1 -1
- package/dist/src/view/layerView.js +6 -2
- package/dist/src/view/title.d.ts.map +1 -1
- package/dist/src/view/title.js +0 -1
- package/dist/src/view/unitView.d.ts +8 -5
- package/dist/src/view/unitView.d.ts.map +1 -1
- package/dist/src/view/unitView.js +5 -1
- package/dist/src/view/view.d.ts +13 -9
- package/dist/src/view/view.d.ts.map +1 -1
- package/dist/src/view/view.js +7 -1
- package/dist/src/view/viewError.d.ts +1 -1
- package/dist/src/view/viewError.d.ts.map +1 -1
- package/dist/src/view/viewFactory.d.ts +3 -44
- package/dist/src/view/viewFactory.d.ts.map +1 -1
- package/dist/src/view/viewFactory.js +28 -69
- package/dist/src/view/viewSelectors.d.ts.map +1 -1
- package/dist/src/view/viewSelectors.js +123 -160
- package/dist/src/view/viewSpecGuards.d.ts +43 -0
- package/dist/src/view/viewSpecGuards.d.ts.map +1 -0
- package/dist/src/view/viewSpecGuards.js +69 -0
- package/dist/src/view/viewUtils.d.ts +1 -1
- package/dist/src/view/viewUtils.d.ts.map +1 -1
- package/dist/src/view/zoom.d.ts +1 -0
- package/dist/src/view/zoom.d.ts.map +1 -1
- package/dist/src/view/zoom.js +5 -1
- package/package.json +4 -3
- package/dist/src/data/collector.test.d.ts +0 -2
- package/dist/src/data/collector.test.d.ts.map +0 -1
- package/dist/src/data/dataFlow.test.d.ts +0 -2
- package/dist/src/data/dataFlow.test.d.ts.map +0 -1
- package/dist/src/data/flow.test.d.ts +0 -2
- package/dist/src/data/flow.test.d.ts.map +0 -1
- package/dist/src/data/flowInit.test.d.ts +0 -2
- package/dist/src/data/flowInit.test.d.ts.map +0 -1
- package/dist/src/data/flowNode.test.d.ts +0 -2
- package/dist/src/data/flowNode.test.d.ts.map +0 -1
- package/dist/src/data/flowOptimizer.test.d.ts +0 -2
- package/dist/src/data/flowOptimizer.test.d.ts.map +0 -1
- package/dist/src/data/formats/fasta.test.d.ts +0 -2
- package/dist/src/data/formats/fasta.test.d.ts.map +0 -1
- package/dist/src/data/keyIndex.test.d.ts +0 -2
- package/dist/src/data/keyIndex.test.d.ts.map +0 -1
- package/dist/src/data/sources/inlineSource.test.d.ts +0 -2
- package/dist/src/data/sources/inlineSource.test.d.ts.map +0 -1
- package/dist/src/data/sources/sequenceSource.test.d.ts +0 -2
- package/dist/src/data/sources/sequenceSource.test.d.ts.map +0 -1
- package/dist/src/data/transforms/aggregate.test.d.ts +0 -2
- package/dist/src/data/transforms/aggregate.test.d.ts.map +0 -1
- package/dist/src/data/transforms/clone.test.d.ts +0 -2
- package/dist/src/data/transforms/clone.test.d.ts.map +0 -1
- package/dist/src/data/transforms/coverage.test.d.ts +0 -2
- package/dist/src/data/transforms/coverage.test.d.ts.map +0 -1
- package/dist/src/data/transforms/filter.test.d.ts +0 -2
- package/dist/src/data/transforms/filter.test.d.ts.map +0 -1
- package/dist/src/data/transforms/filterScoredLabels.test.d.ts +0 -2
- package/dist/src/data/transforms/filterScoredLabels.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flatten.test.d.ts +0 -2
- package/dist/src/data/transforms/flatten.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flattenDelimited.test.d.ts +0 -2
- package/dist/src/data/transforms/flattenDelimited.test.d.ts.map +0 -1
- package/dist/src/data/transforms/flattenSequence.test.d.ts +0 -2
- package/dist/src/data/transforms/flattenSequence.test.d.ts.map +0 -1
- package/dist/src/data/transforms/formula.test.d.ts +0 -2
- package/dist/src/data/transforms/formula.test.d.ts.map +0 -1
- package/dist/src/data/transforms/identifier.test.d.ts +0 -2
- package/dist/src/data/transforms/identifier.test.d.ts.map +0 -1
- package/dist/src/data/transforms/pileup.test.d.ts +0 -2
- package/dist/src/data/transforms/pileup.test.d.ts.map +0 -1
- package/dist/src/data/transforms/project.test.d.ts +0 -2
- package/dist/src/data/transforms/project.test.d.ts.map +0 -1
- package/dist/src/data/transforms/regexExtract.test.d.ts +0 -2
- package/dist/src/data/transforms/regexExtract.test.d.ts.map +0 -1
- package/dist/src/data/transforms/regexFold.test.d.ts +0 -2
- package/dist/src/data/transforms/regexFold.test.d.ts.map +0 -1
- package/dist/src/data/transforms/sample.test.d.ts +0 -2
- package/dist/src/data/transforms/sample.test.d.ts.map +0 -1
- package/dist/src/data/transforms/stack.test.d.ts +0 -2
- package/dist/src/data/transforms/stack.test.d.ts.map +0 -1
- package/dist/src/encoder/accessor.test.d.ts +0 -2
- package/dist/src/encoder/accessor.test.d.ts.map +0 -1
- package/dist/src/encoder/encoder.test.d.ts +0 -2
- package/dist/src/encoder/encoder.test.d.ts.map +0 -1
- package/dist/src/encoder/metadataChannels.test.d.ts +0 -2
- package/dist/src/encoder/metadataChannels.test.d.ts.map +0 -1
- package/dist/src/genome/genome.test.d.ts +0 -2
- package/dist/src/genome/genome.test.d.ts.map +0 -1
- package/dist/src/genome/genomes.test.d.ts +0 -2
- package/dist/src/genome/genomes.test.d.ts.map +0 -1
- package/dist/src/genome/scaleIndex.test.d.ts +0 -2
- package/dist/src/genome/scaleIndex.test.d.ts.map +0 -1
- package/dist/src/genome/scaleLocus.test.d.ts +0 -2
- package/dist/src/genome/scaleLocus.test.d.ts.map +0 -1
- package/dist/src/genomeSpy/viewDataInit.test.d.ts +0 -2
- package/dist/src/genomeSpy/viewDataInit.test.d.ts.map +0 -1
- package/dist/src/gl/colorUtils.test.d.ts +0 -2
- package/dist/src/gl/colorUtils.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/expressionRef.test.d.ts +0 -2
- package/dist/src/paramRuntime/expressionRef.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/graphRuntime.test.d.ts +0 -2
- package/dist/src/paramRuntime/graphRuntime.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/paramRuntime.test.d.ts +0 -2
- package/dist/src/paramRuntime/paramRuntime.test.d.ts.map +0 -1
- package/dist/src/paramRuntime/paramStore.test.d.ts +0 -2
- package/dist/src/paramRuntime/paramStore.test.d.ts.map +0 -1
- package/dist/src/scale/scale.test.d.ts +0 -2
- package/dist/src/scale/scale.test.d.ts.map +0 -1
- package/dist/src/scale/ticks.test.d.ts +0 -2
- package/dist/src/scale/ticks.test.d.ts.map +0 -1
- package/dist/src/scales/axisResolution.test.d.ts +0 -2
- package/dist/src/scales/axisResolution.test.d.ts.map +0 -1
- package/dist/src/scales/domainPlanner.test.d.ts +0 -2
- package/dist/src/scales/domainPlanner.test.d.ts.map +0 -1
- package/dist/src/scales/scaleInstanceManager.test.d.ts +0 -2
- package/dist/src/scales/scaleInstanceManager.test.d.ts.map +0 -1
- package/dist/src/scales/scaleInteractionController.test.d.ts +0 -2
- package/dist/src/scales/scaleInteractionController.test.d.ts.map +0 -1
- package/dist/src/scales/scaleResolution.test.d.ts +0 -2
- package/dist/src/scales/scaleResolution.test.d.ts.map +0 -1
- package/dist/src/scales/scaleRules.test.d.ts +0 -2
- package/dist/src/scales/scaleRules.test.d.ts.map +0 -1
- package/dist/src/selection/selection.test.d.ts +0 -2
- package/dist/src/selection/selection.test.d.ts.map +0 -1
- package/dist/src/tooltip/dataTooltipHandler.test.d.ts +0 -2
- package/dist/src/tooltip/dataTooltipHandler.test.d.ts.map +0 -1
- package/dist/src/tooltip/flattenDatumRows.test.d.ts +0 -2
- package/dist/src/tooltip/flattenDatumRows.test.d.ts.map +0 -1
- package/dist/src/tooltip/tooltipContext.test.d.ts +0 -2
- package/dist/src/tooltip/tooltipContext.test.d.ts.map +0 -1
- package/dist/src/utils/addBaseUrl.test.d.ts +0 -2
- package/dist/src/utils/addBaseUrl.test.d.ts.map +0 -1
- package/dist/src/utils/binnedIndex.test.d.ts +0 -2
- package/dist/src/utils/binnedIndex.test.d.ts.map +0 -1
- package/dist/src/utils/cloner.test.d.ts +0 -2
- package/dist/src/utils/cloner.test.d.ts.map +0 -1
- package/dist/src/utils/coalesce.test.d.ts +0 -2
- package/dist/src/utils/coalesce.test.d.ts.map +0 -1
- package/dist/src/utils/concatIterables.test.d.ts +0 -2
- package/dist/src/utils/concatIterables.test.d.ts.map +0 -1
- package/dist/src/utils/deepEqual.test.d.ts +0 -2
- package/dist/src/utils/deepEqual.test.d.ts.map +0 -1
- package/dist/src/utils/domainArray.test.d.ts +0 -2
- package/dist/src/utils/domainArray.test.d.ts.map +0 -1
- package/dist/src/utils/fetchUtils.test.d.ts +0 -2
- package/dist/src/utils/fetchUtils.test.d.ts.map +0 -1
- package/dist/src/utils/indexer.test.d.ts +0 -2
- package/dist/src/utils/indexer.test.d.ts.map +0 -1
- package/dist/src/utils/interactionEvent.test.d.ts +0 -2
- package/dist/src/utils/interactionEvent.test.d.ts.map +0 -1
- package/dist/src/utils/iterateNestedMaps.test.d.ts +0 -2
- package/dist/src/utils/iterateNestedMaps.test.d.ts.map +0 -1
- package/dist/src/utils/kWayMerge.test.d.ts +0 -2
- package/dist/src/utils/kWayMerge.test.d.ts.map +0 -1
- package/dist/src/utils/mergeObjects.test.d.ts +0 -2
- package/dist/src/utils/mergeObjects.test.d.ts.map +0 -1
- package/dist/src/utils/numberExtractor.test.d.ts +0 -2
- package/dist/src/utils/numberExtractor.test.d.ts.map +0 -1
- package/dist/src/utils/propertyCacher.test.d.ts +0 -2
- package/dist/src/utils/propertyCacher.test.d.ts.map +0 -1
- package/dist/src/utils/propertyCoalescer.test.d.ts +0 -2
- package/dist/src/utils/propertyCoalescer.test.d.ts.map +0 -1
- package/dist/src/utils/radixSort.test.d.ts +0 -2
- package/dist/src/utils/radixSort.test.d.ts.map +0 -1
- package/dist/src/utils/reservationMap.test.d.ts +0 -2
- package/dist/src/utils/reservationMap.test.d.ts.map +0 -1
- package/dist/src/utils/ringBuffer.test.d.ts +0 -2
- package/dist/src/utils/ringBuffer.test.d.ts.map +0 -1
- package/dist/src/utils/throttle.test.d.ts +0 -2
- package/dist/src/utils/throttle.test.d.ts.map +0 -1
- package/dist/src/utils/topK.test.d.ts +0 -2
- package/dist/src/utils/topK.test.d.ts.map +0 -1
- package/dist/src/utils/trees.test.d.ts +0 -2
- package/dist/src/utils/trees.test.d.ts.map +0 -1
- package/dist/src/utils/ui/tooltip.test.d.ts +0 -2
- package/dist/src/utils/ui/tooltip.test.d.ts.map +0 -1
- package/dist/src/utils/url.test.d.ts +0 -2
- package/dist/src/utils/url.test.d.ts.map +0 -1
- package/dist/src/utils/variableTools.test.d.ts +0 -2
- package/dist/src/utils/variableTools.test.d.ts.map +0 -1
- package/dist/src/view/concatView.test.d.ts +0 -2
- package/dist/src/view/concatView.test.d.ts.map +0 -1
- package/dist/src/view/dataReadiness.test.d.ts +0 -2
- package/dist/src/view/dataReadiness.test.d.ts.map +0 -1
- package/dist/src/view/flowBuilder.test.d.ts +0 -2
- package/dist/src/view/flowBuilder.test.d.ts.map +0 -1
- package/dist/src/view/gridView/gridView.test.d.ts +0 -2
- package/dist/src/view/gridView/gridView.test.d.ts.map +0 -1
- package/dist/src/view/gridView/selectionRect.test.d.ts +0 -2
- package/dist/src/view/gridView/selectionRect.test.d.ts.map +0 -1
- package/dist/src/view/layerView.test.d.ts +0 -2
- package/dist/src/view/layerView.test.d.ts.map +0 -1
- package/dist/src/view/layout/flexLayout.test.d.ts +0 -2
- package/dist/src/view/layout/flexLayout.test.d.ts.map +0 -1
- package/dist/src/view/layout/grid.test.d.ts +0 -2
- package/dist/src/view/layout/grid.test.d.ts.map +0 -1
- package/dist/src/view/layout/rectangle.test.d.ts +0 -2
- package/dist/src/view/layout/rectangle.test.d.ts.map +0 -1
- package/dist/src/view/multiscale.test.d.ts +0 -2
- package/dist/src/view/multiscale.test.d.ts.map +0 -1
- package/dist/src/view/view.test.d.ts +0 -2
- package/dist/src/view/view.test.d.ts.map +0 -1
- package/dist/src/view/viewDispose.test.d.ts +0 -2
- package/dist/src/view/viewDispose.test.d.ts.map +0 -1
- package/dist/src/view/viewFactory.test.d.ts +0 -2
- package/dist/src/view/viewFactory.test.d.ts.map +0 -1
- package/dist/src/view/viewParamRuntime.test.d.ts +0 -2
- package/dist/src/view/viewParamRuntime.test.d.ts.map +0 -1
- package/dist/src/view/viewSelectors.test.d.ts +0 -2
- package/dist/src/view/viewSelectors.test.d.ts.map +0 -1
- package/dist/src/view/viewUtils.test.d.ts +0 -2
- package/dist/src/view/viewUtils.test.d.ts.map +0 -1
package/dist/bundle/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
(function(bt,ft){typeof exports=="object"&&typeof module<"u"?ft(exports):typeof define=="function"&&define.amd?define(["exports"],ft):(bt=typeof globalThis<"u"?globalThis:bt||self,ft(bt.genomeSpyEmbed={}))})(this,(function(bt){"use strict";function ft(n,e,t){return n.fields=e||[],n.fname=t,n}function Zy(n){return n==null?null:n.fname}function $y(n){return n==null?null:n.fields}function e2(n){return n.length===1?t2(n[0]):n2(n)}const t2=n=>function(e){return e[n]},n2=n=>{const e=n.length;return function(t){for(let r=0;r<e;++r)t=t[n[r]];return t}};function Ee(n){throw Error(n)}function r2(n){const e=[],t=n.length;let r=null,i=0,s="",o,a,l;n=n+"";function c(){e.push(s+n.substring(o,a)),s="",o=a+1}for(o=a=0;a<t;++a)if(l=n[a],l==="\\")s+=n.substring(o,a++),o=a;else if(l===r)c(),r=null,i=-1;else{if(r)continue;o===i&&l==='"'||o===i&&l==="'"?(o=a+1,r=l):l==="."&&!i?a>o?c():o=a+1:l==="["?(a>o&&c(),i=o=a+1):l==="]"&&(i||Ee("Access path missing open bracket: "+n),i>0&&c(),i=0,o=a+1)}return i&&Ee("Access path missing closing bracket: "+n),r&&Ee("Access path missing closing quote: "+n),a>o&&(a++,c()),e}function wo(n,e,t){const r=r2(n);return n=r.length===1?r[0]:n,ft((t&&t.get||e2)(r),[n],e||n)}wo("id");const Co=ft(n=>n,[],"identity");ft(()=>0,[],"zero"),ft(()=>1,[],"one"),ft(()=>!0,[],"true"),ft(()=>!1,[],"false");const i2=new Set([...Object.getOwnPropertyNames(Object.prototype).filter(n=>typeof Object.prototype[n]=="function"),"__proto__"]);var ye=Array.isArray;function ze(n){return n===Object(n)}function Et(n){return n[n.length-1]}function Ni(n){return n==null||n===""?null:+n}const NA=n=>e=>n*Math.exp(e),TA=n=>e=>Math.log(n*e),s2=n=>e=>Math.sign(e)*Math.log1p(Math.abs(e/n)),o2=n=>e=>Math.sign(e)*Math.expm1(Math.abs(e))*n,yo=n=>e=>e<0?-Math.pow(-e,n):Math.pow(e,n);function Tc(n,e,t,r){const i=t(n[0]),s=t(Et(n)),o=(s-i)*e;return[r(i-o),r(s-o)]}function a2(n,e){return Tc(n,e,Ni,Co)}function c2(n,e){var t=Math.sign(n[0]);return Tc(n,e,TA(t),NA(t))}function l2(n,e,t){return Tc(n,e,yo(t),yo(1/t))}function Io(n,e,t,r,i){const s=r(n[0]),o=r(Et(n)),a=e!=null?r(e):(s+o)/2;return[i(a+(s-a)*t),i(a+(o-a)*t)]}function PA(n,e,t){return Io(n,e,t,Ni,Co)}function LA(n,e,t){const r=Math.sign(n[0]);return Io(n,e,t,TA(r),NA(r))}function Pc(n,e,t,r){return Io(n,e,t,yo(r),yo(1/r))}function u2(n,e,t,r){return Io(n,e,t,s2(r),o2(r))}function Lc(n){return n!=null?ye(n)?n:[n]:[]}function f2(n,e,t){let r=n[0],i=n[1],s;return i<r&&(s=i,i=r,r=s),s=i-r,s>=t-e?[e,t]:[r=Math.min(Math.max(r,e),t-s),r+s]}function At(n){return typeof n=="function"}const A2="descending";function OA(n,e,t){t=t||{},e=Lc(e)||[];const r=[],i=[],s={},o=t.comparator||h2;return Lc(n).forEach((a,l)=>{a!=null&&(r.push(e[l]===A2?-1:1),i.push(a=At(a)?a:wo(a,null,t)),($y(a)||[]).forEach(c=>s[c]=1))}),i.length===0?null:ft(o(i,r),Object.keys(s))}const UA=(n,e)=>(n<e||n==null)&&e!=null?-1:(n>e||e==null)&&n!=null?1:(e=e instanceof Date?+e:e,(n=n instanceof Date?+n:n)!==n&&e===e?-1:e!==e&&n===n?1:0),h2=(n,e)=>n.length===1?d2(n[0],e[0]):g2(n,e,n.length),d2=(n,e)=>function(t,r){return UA(n(t),n(r))*e},g2=(n,e,t)=>(e.push(0),function(r,i){let s,o=0,a=-1;for(;o===0&&++a<t;)s=n[a],o=UA(s(r),s(i));return o*e[a]});function p2(n){for(let e,t,r=1,i=arguments.length;r<i;++r){e=arguments[r];for(t in e)n[t]=e[t]}return n}function kr(n,e){return Object.hasOwn(n,e)}function Ti(n){return typeof n=="boolean"}function m2(n){return Object.prototype.toString.call(n)==="[object Date]"}function w2(n){return n&&At(n[Symbol.iterator])}function Ye(n){return typeof n=="number"}function C2(n){return Object.prototype.toString.call(n)==="[object RegExp]"}function le(n){return typeof n=="string"}function GA(n,e){const t=n[0],r=Et(n),i=+e;return i?i===1?r:t+i*(r-t):t}function Pi(n){return n&&Et(n)-n[0]||0}function Oc(n){return ye(n)?`[${n.map(e=>e===null?"null":Oc(e))}]`:ze(n)||le(n)?JSON.stringify(n).replaceAll("\u2028","\\u2028").replaceAll("\u2029","\\u2029"):n}function y2(n){return n==null||n===""?null:!n||n==="false"||n==="0"?!1:!!n}const I2=n=>Ye(n)||m2(n)?n:Date.parse(n);function b2(n,e){return e=e||I2,n==null||n===""?null:e(n)}function E2(n){return n==null||n===""?null:n+""}function bo(n){const e={},t=n.length;for(let r=0;r<t;++r)e[n[r]]=!0;return e}const Eo=globalThis,Uc=Eo.ShadowRoot&&(Eo.ShadyCSS===void 0||Eo.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,zA=Symbol(),HA=new WeakMap;let x2=class{constructor(e,t,r){if(this._$cssResult$=!0,r!==zA)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e,this.t=t}get styleSheet(){let e=this.o;const t=this.t;if(Uc&&e===void 0){const r=t!==void 0&&t.length===1;r&&(e=HA.get(t)),e===void 0&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),r&&HA.set(t,e))}return e}toString(){return this.cssText}};const B2=n=>new x2(typeof n=="string"?n:n+"",void 0,zA),v2=(n,e)=>{if(Uc)n.adoptedStyleSheets=e.map(t=>t instanceof CSSStyleSheet?t:t.styleSheet);else for(const t of e){const r=document.createElement("style"),i=Eo.litNonce;i!==void 0&&r.setAttribute("nonce",i),r.textContent=t.cssText,n.appendChild(r)}},VA=Uc?n=>n:n=>n instanceof CSSStyleSheet?(e=>{let t="";for(const r of e.cssRules)t+=r.cssText;return B2(t)})(n):n;const{is:S2,defineProperty:Q2,getOwnPropertyDescriptor:D2,getOwnPropertyNames:k2,getOwnPropertySymbols:F2,getPrototypeOf:R2}=Object,xo=globalThis,_A=xo.trustedTypes,M2=_A?_A.emptyScript:"",N2=xo.reactiveElementPolyfillSupport,Li=(n,e)=>n,Gc={toAttribute(n,e){switch(e){case Boolean:n=n?M2:null;break;case Object:case Array:n=n==null?n:JSON.stringify(n)}return n},fromAttribute(n,e){let t=n;switch(e){case Boolean:t=n!==null;break;case Number:t=n===null?null:Number(n);break;case Object:case Array:try{t=JSON.parse(n)}catch{t=null}}return t}},YA=(n,e)=>!S2(n,e),JA={attribute:!0,type:String,converter:Gc,reflect:!1,useDefault:!1,hasChanged:YA};Symbol.metadata??=Symbol("metadata"),xo.litPropertyMetadata??=new WeakMap;let Fr=class extends HTMLElement{static addInitializer(e){this._$Ei(),(this.l??=[]).push(e)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(e,t=JA){if(t.state&&(t.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(e)&&((t=Object.create(t)).wrapped=!0),this.elementProperties.set(e,t),!t.noAccessor){const r=Symbol(),i=this.getPropertyDescriptor(e,r,t);i!==void 0&&Q2(this.prototype,e,i)}}static getPropertyDescriptor(e,t,r){const{get:i,set:s}=D2(this.prototype,e)??{get(){return this[t]},set(o){this[t]=o}};return{get:i,set(o){const a=i?.call(this);s?.call(this,o),this.requestUpdate(e,a,r)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){return this.elementProperties.get(e)??JA}static _$Ei(){if(this.hasOwnProperty(Li("elementProperties")))return;const e=R2(this);e.finalize(),e.l!==void 0&&(this.l=[...e.l]),this.elementProperties=new Map(e.elementProperties)}static finalize(){if(this.hasOwnProperty(Li("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Li("properties"))){const t=this.properties,r=[...k2(t),...F2(t)];for(const i of r)this.createProperty(i,t[i])}const e=this[Symbol.metadata];if(e!==null){const t=litPropertyMetadata.get(e);if(t!==void 0)for(const[r,i]of t)this.elementProperties.set(r,i)}this._$Eh=new Map;for(const[t,r]of this.elementProperties){const i=this._$Eu(t,r);i!==void 0&&this._$Eh.set(i,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(e){const t=[];if(Array.isArray(e)){const r=new Set(e.flat(1/0).reverse());for(const i of r)t.unshift(VA(i))}else e!==void 0&&t.push(VA(e));return t}static _$Eu(e,t){const r=t.attribute;return r===!1?void 0:typeof r=="string"?r:typeof e=="string"?e.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(e=>e(this))}addController(e){(this._$EO??=new Set).add(e),this.renderRoot!==void 0&&this.isConnected&&e.hostConnected?.()}removeController(e){this._$EO?.delete(e)}_$E_(){const e=new Map,t=this.constructor.elementProperties;for(const r of t.keys())this.hasOwnProperty(r)&&(e.set(r,this[r]),delete this[r]);e.size>0&&(this._$Ep=e)}createRenderRoot(){const e=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return v2(e,this.constructor.elementStyles),e}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(e=>e.hostConnected?.())}enableUpdating(e){}disconnectedCallback(){this._$EO?.forEach(e=>e.hostDisconnected?.())}attributeChangedCallback(e,t,r){this._$AK(e,r)}_$ET(e,t){const r=this.constructor.elementProperties.get(e),i=this.constructor._$Eu(e,r);if(i!==void 0&&r.reflect===!0){const s=(r.converter?.toAttribute!==void 0?r.converter:Gc).toAttribute(t,r.type);this._$Em=e,s==null?this.removeAttribute(i):this.setAttribute(i,s),this._$Em=null}}_$AK(e,t){const r=this.constructor,i=r._$Eh.get(e);if(i!==void 0&&this._$Em!==i){const s=r.getPropertyOptions(i),o=typeof s.converter=="function"?{fromAttribute:s.converter}:s.converter?.fromAttribute!==void 0?s.converter:Gc;this._$Em=i;const a=o.fromAttribute(t,s.type);this[i]=a??this._$Ej?.get(i)??a,this._$Em=null}}requestUpdate(e,t,r,i=!1,s){if(e!==void 0){const o=this.constructor;if(i===!1&&(s=this[e]),r??=o.getPropertyOptions(e),!((r.hasChanged??YA)(s,t)||r.useDefault&&r.reflect&&s===this._$Ej?.get(e)&&!this.hasAttribute(o._$Eu(e,r))))return;this.C(e,t,r)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(e,t,{useDefault:r,reflect:i,wrapped:s},o){r&&!(this._$Ej??=new Map).has(e)&&(this._$Ej.set(e,o??t??this[e]),s!==!0||o!==void 0)||(this._$AL.has(e)||(this.hasUpdated||r||(t=void 0),this._$AL.set(e,t)),i===!0&&this._$Em!==e&&(this._$Eq??=new Set).add(e))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(t){Promise.reject(t)}const e=this.scheduleUpdate();return e!=null&&await e,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[i,s]of this._$Ep)this[i]=s;this._$Ep=void 0}const r=this.constructor.elementProperties;if(r.size>0)for(const[i,s]of r){const{wrapped:o}=s,a=this[i];o!==!0||this._$AL.has(i)||a===void 0||this.C(i,void 0,s,a)}}let e=!1;const t=this._$AL;try{e=this.shouldUpdate(t),e?(this.willUpdate(t),this._$EO?.forEach(r=>r.hostUpdate?.()),this.update(t)):this._$EM()}catch(r){throw e=!1,this._$EM(),r}e&&this._$AE(t)}willUpdate(e){}_$AE(e){this._$EO?.forEach(t=>t.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(e){return!0}update(e){this._$Eq&&=this._$Eq.forEach(t=>this._$ET(t,this[t])),this._$EM()}updated(e){}firstUpdated(e){}};Fr.elementStyles=[],Fr.shadowRootOptions={mode:"open"},Fr[Li("elementProperties")]=new Map,Fr[Li("finalized")]=new Map,N2?.({ReactiveElement:Fr}),(xo.reactiveElementVersions??=[]).push("2.1.2");const zc=globalThis,qA=n=>n,Bo=zc.trustedTypes,KA=Bo?Bo.createPolicy("lit-html",{createHTML:n=>n}):void 0,jA="$lit$",mn=`lit$${Math.random().toFixed(9).slice(2)}$`,WA="?"+mn,T2=`<${WA}>`,Yn=document,Oi=()=>Yn.createComment(""),Ui=n=>n===null||typeof n!="object"&&typeof n!="function",Hc=Array.isArray,P2=n=>Hc(n)||typeof n?.[Symbol.iterator]=="function",Vc=`[
|
|
2
|
-
\f\r]`,
|
|
3
|
-
\f\r"'\`<>=]|("|')|))|$)`,"g")
|
|
4
|
-
\r]`),t
|
|
5
|
-
`)}function a(
|
|
6
|
-
`)}function l(
|
|
7
|
-
`)}function c(f){return f.map(u).join(n)}function u(f){return f==null?"":f instanceof Date?K2(f):e.test(f+="")?'"'+f.replace(/"/g,'""')+'"':f}return{parse:r,parseRows:i,format:o,formatBody:a,formatRows:l,formatRow:c,formatValue:u}}var j2=ah(" "),W2=j2.parseRows;function X2(n){return n}function Z2(n){if(n==null)return X2;var e,t,r=n.scale[0],i=n.scale[1],s=n.translate[0],o=n.translate[1];return function(a,l){l||(e=t=0);var c=2,u=a.length,f=new Array(u);for(f[0]=(e+=a[0])*r+s,f[1]=(t+=a[1])*i+o;c<u;)f[c]=a[c],++c;return f}}function $2(n,e){for(var t,r=n.length,i=r-e;i<--r;)t=n[i],n[i++]=n[r],n[r]=t}function eI(n,e){return typeof e=="string"&&(e=n.objects[e]),e.type==="GeometryCollection"?{type:"FeatureCollection",features:e.geometries.map(function(t){return ch(n,t)})}:ch(n,e)}function ch(n,e){var t=e.id,r=e.bbox,i=e.properties==null?{}:e.properties,s=lh(n,e);return t==null&&r==null?{type:"Feature",properties:i,geometry:s}:r==null?{type:"Feature",id:t,properties:i,geometry:s}:{type:"Feature",id:t,bbox:r,properties:i,geometry:s}}function lh(n,e){var t=Z2(n.transform),r=n.arcs;function i(u,f){f.length&&f.pop();for(var h=r[u<0?~u:u],A=0,d=h.length;A<d;++A)f.push(t(h[A],A));u<0&&$2(f,d)}function s(u){return t(u)}function o(u){for(var f=[],h=0,A=u.length;h<A;++h)i(u[h],f);return f.length<2&&f.push(f[0]),f}function a(u){for(var f=o(u);f.length<4;)f.push(f[0]);return f}function l(u){return u.map(a)}function c(u){var f=u.type,h;switch(f){case"GeometryCollection":return{type:f,geometries:u.geometries.map(c)};case"Point":h=s(u.coordinates);break;case"MultiPoint":h=u.coordinates.map(s);break;case"LineString":h=o(u.arcs);break;case"MultiLineString":h=u.arcs.map(o);break;case"Polygon":h=l(u.arcs);break;case"MultiPolygon":h=u.arcs.map(l);break;default:return null}return{type:f,coordinates:h}}return c(e)}function tI(n,e){var t={},r={},i={},s=[],o=-1;e.forEach(function(c,u){var f=n.arcs[c<0?~c:c],h;f.length<3&&!f[1][0]&&!f[1][1]&&(h=e[++o],e[o]=c,e[u]=h)}),e.forEach(function(c){var u=a(c),f=u[0],h=u[1],A,d;if(A=i[f])if(delete i[A.end],A.push(c),A.end=h,d=r[h]){delete r[d.start];var g=d===A?A:A.concat(d);r[g.start=A.start]=i[g.end=d.end]=g}else r[A.start]=i[A.end]=A;else if(A=r[h])if(delete r[A.start],A.unshift(c),A.start=f,d=i[f]){delete i[d.end];var p=d===A?A:d.concat(A);r[p.start=d.start]=i[p.end=A.end]=p}else r[A.start]=i[A.end]=A;else A=[c],r[A.start=f]=i[A.end=h]=A});function a(c){var u=n.arcs[c<0?~c:c],f=u[0],h;return n.transform?(h=[0,0],u.forEach(function(A){h[0]+=A[0],h[1]+=A[1]})):h=u[u.length-1],c<0?[h,f]:[f,h]}function l(c,u){for(var f in c){var h=c[f];delete u[h.start],delete h.start,delete h.end,h.forEach(function(A){t[A<0?~A:A]=1}),s.push(h)}}return l(i,r),l(r,i),e.forEach(function(c){t[c<0?~c:c]||s.push([c])}),s}function nI(n){return lh(n,rI.apply(this,arguments))}function rI(n,e,t){var r,i,s;if(arguments.length>1)r=iI(n,e,t);else for(i=0,r=new Array(s=n.arcs.length);i<s;++i)r[i]=i;return{type:"MultiLineString",arcs:tI(n,r)}}function iI(n,e,t){var r=[],i=[],s;function o(f){var h=f<0?~f:f;(i[h]||(i[h]=[])).push({i:f,g:s})}function a(f){f.forEach(o)}function l(f){f.forEach(a)}function c(f){f.forEach(l)}function u(f){switch(s=f,f.type){case"GeometryCollection":f.geometries.forEach(u);break;case"LineString":a(f.arcs);break;case"MultiLineString":case"Polygon":l(f.arcs);break;case"MultiPolygon":c(f.arcs);break}}return u(e),i.forEach(t==null?function(f){r.push(f[0].i)}:function(f){t(f[0].g,f[f.length-1].g)&&r.push(f[0].i)}),r}function jn(n,e){return n==null||e==null?NaN:n<e?-1:n>e?1:n>=e?0:NaN}function sI(n,e){return n==null||e==null?NaN:e<n?-1:e>n?1:e>=n?0:NaN}function Wn(n){let e,t,r;n.length!==2?(e=jn,t=(a,l)=>jn(n(a),l),r=(a,l)=>n(a)-l):(e=n===jn||n===sI?n:oI,t=n,r=n);function i(a,l,c=0,u=a.length){if(c<u){if(e(l,l)!==0)return u;do{const f=c+u>>>1;t(a[f],l)<0?c=f+1:u=f}while(c<u)}return c}function s(a,l,c=0,u=a.length){if(c<u){if(e(l,l)!==0)return u;do{const f=c+u>>>1;t(a[f],l)<=0?c=f+1:u=f}while(c<u)}return c}function o(a,l,c=0,u=a.length){const f=i(a,l,c,u-1);return f>c&&r(a[f-1],l)>-r(a[f],l)?f-1:f}return{left:i,center:o,right:s}}function oI(){return 0}function uh(n){return n===null?NaN:+n}function*aI(n,e){if(e===void 0)for(let t of n)t!=null&&(t=+t)>=t&&(yield t);else{let t=-1;for(let r of n)(r=e(r,++t,n))!=null&&(r=+r)>=r&&(yield r)}}const fh=Wn(jn),wn=fh.right;fh.left,Wn(uh).center;function cI(n,e){let t=0;if(e===void 0)for(let r of n)r!=null&&(r=+r)>=r&&++t;else{let r=-1;for(let i of n)(i=e(i,++r,n))!=null&&(i=+i)>=i&&++t}return t}function lI(n,e){let t=0,r,i=0,s=0;if(e===void 0)for(let o of n)o!=null&&(o=+o)>=o&&(r=o-i,i+=r/++t,s+=r*(o-i));else{let o=-1;for(let a of n)(a=e(a,++o,n))!=null&&(a=+a)>=a&&(r=a-i,i+=r/++t,s+=r*(a-i))}if(t>1)return s/(t-1)}function uI(n,e){let t,r;for(const i of n)i!=null&&(t===void 0?i>=i&&(t=r=i):(t>i&&(t=i),r<i&&(r=i)));return[t,r]}class jt extends Map{constructor(e,t=hI){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:t}}),e!=null)for(const[r,i]of e)this.set(r,i)}get(e){return super.get(Ah(this,e))}has(e){return super.has(Ah(this,e))}set(e,t){return super.set(fI(this,e),t)}delete(e){return super.delete(AI(this,e))}}function Ah({_intern:n,_key:e},t){const r=e(t);return n.has(r)?n.get(r):t}function fI({_intern:n,_key:e},t){const r=e(t);return n.has(r)?n.get(r):(n.set(r,t),t)}function AI({_intern:n,_key:e},t){const r=e(t);return n.has(r)&&(t=n.get(r),n.delete(r)),t}function hI(n){return n!==null&&typeof n=="object"?n.valueOf():n}function Kc(n){return n}function Qo(n,...e){return hh(n,Kc,Kc,e)}function dI(n,...e){return hh(n,Array.from,Kc,e)}function hh(n,e,t,r){return(function i(s,o){if(o>=r.length)return t(s);const a=new jt,l=r[o++];let c=-1;for(const u of s){const f=l(u,++c,s),h=a.get(f);h?h.push(u):a.set(f,[u])}for(const[u,f]of a)a.set(u,i(f,o));return e(a)})(n,0)}function gI(n=jn){if(n===jn)return dh;if(typeof n!="function")throw new TypeError("compare is not a function");return(e,t)=>{const r=n(e,t);return r||r===0?r:(n(t,t)===0)-(n(e,e)===0)}}function dh(n,e){return(n==null||!(n>=n))-(e==null||!(e>=e))||(n<e?-1:n>e?1:0)}const pI=Math.sqrt(50),mI=Math.sqrt(10),wI=Math.sqrt(2);function Do(n,e,t){const r=(e-n)/Math.max(0,t),i=Math.floor(Math.log10(r)),s=r/Math.pow(10,i),o=s>=pI?10:s>=mI?5:s>=wI?2:1;let a,l,c;return i<0?(c=Math.pow(10,-i)/o,a=Math.round(n*c),l=Math.round(e*c),a/c<n&&++a,l/c>e&&--l,c=-c):(c=Math.pow(10,i)*o,a=Math.round(n/c),l=Math.round(e/c),a*c<n&&++a,l*c>e&&--l),l<a&&.5<=t&&t<2?Do(n,e,t*2):[a,l,c]}function ko(n,e,t){if(e=+e,n=+n,t=+t,!(t>0))return[];if(n===e)return[n];const r=e<n,[i,s,o]=r?Do(e,n,t):Do(n,e,t);if(!(s>=i))return[];const a=s-i+1,l=new Array(a);if(r)if(o<0)for(let c=0;c<a;++c)l[c]=(s-c)/-o;else for(let c=0;c<a;++c)l[c]=(s-c)*o;else if(o<0)for(let c=0;c<a;++c)l[c]=(i+c)/-o;else for(let c=0;c<a;++c)l[c]=(i+c)*o;return l}function jc(n,e,t){return e=+e,n=+n,t=+t,Do(n,e,t)[2]}function Xn(n,e,t){e=+e,n=+n,t=+t;const r=e<n,i=r?jc(e,n,t):jc(n,e,t);return(r?-1:1)*(i<0?1/-i:i)}function Wc(n,e){let t;if(e===void 0)for(const r of n)r!=null&&(t<r||t===void 0&&r>=r)&&(t=r);else{let r=-1;for(let i of n)(i=e(i,++r,n))!=null&&(t<i||t===void 0&&i>=i)&&(t=i)}return t}function Xc(n,e){let t;if(e===void 0)for(const r of n)r!=null&&(t>r||t===void 0&&r>=r)&&(t=r);else{let r=-1;for(let i of n)(i=e(i,++r,n))!=null&&(t>i||t===void 0&&i>=i)&&(t=i)}return t}function gh(n,e,t=0,r=1/0,i){if(e=Math.floor(e),t=Math.floor(Math.max(0,t)),r=Math.floor(Math.min(n.length-1,r)),!(t<=e&&e<=r))return n;for(i=i===void 0?dh:gI(i);r>t;){if(r-t>600){const l=r-t+1,c=e-t+1,u=Math.log(l),f=.5*Math.exp(2*u/3),h=.5*Math.sqrt(u*f*(l-f)/l)*(c-l/2<0?-1:1),A=Math.max(t,Math.floor(e-c*f/l+h)),d=Math.min(r,Math.floor(e+(l-c)*f/l+h));gh(n,e,A,d,i)}const s=n[e];let o=t,a=r;for(Yi(n,t,e),i(n[r],s)>0&&Yi(n,t,r);o<a;){for(Yi(n,o,a),++o,--a;i(n[o],s)<0;)++o;for(;i(n[a],s)>0;)--a}i(n[t],s)===0?Yi(n,t,a):(++a,Yi(n,a,r)),a<=e&&(t=a+1),e<=a&&(r=a-1)}return n}function Yi(n,e,t){const r=n[e];n[e]=n[t],n[t]=r}function CI(n,e,t){if(n=Float64Array.from(aI(n,t)),!(!(r=n.length)||isNaN(e=+e))){if(e<=0||r<2)return Xc(n);if(e>=1)return Wc(n);var r,i=(r-1)*e,s=Math.floor(i),o=Wc(gh(n,s).subarray(0,s+1)),a=Xc(n.subarray(s+1));return o+(a-o)*(i-s)}}function ph(n,e,t=uh){if(!(!(r=n.length)||isNaN(e=+e))){if(e<=0||r<2)return+t(n[0],0,n);if(e>=1)return+t(n[r-1],r-1,n);var r,i=(r-1)*e,s=Math.floor(i),o=+t(n[s],s,n),a=+t(n[s+1],s+1,n);return o+(a-o)*(i-s)}}function yI(n,e){let t=0,r=0;if(e===void 0)for(let i of n)i!=null&&(i=+i)>=i&&(++t,r+=i);else{let i=-1;for(let s of n)(s=e(s,++i,n))!=null&&(s=+s)>=s&&(++t,r+=s)}if(t)return r/t}function II(n,e){return CI(n,.5,e)}function Ji(n,e,t){n=+n,e=+e,t=(i=arguments.length)<2?(e=n,n=0,1):i<3?1:+t;for(var r=-1,i=Math.max(0,Math.ceil((e-n)/t))|0,s=new Array(i);++r<i;)s[r]=n+r*t;return s}function qi(n,e){let t=0;if(e===void 0)for(let r of n)(r=+r)&&(t+=r);else{let r=-1;for(let i of n)(i=+e(i,++r,n))&&(t+=i)}return t}function bI(n){return Math.abs(n=Math.round(n))>=1e21?n.toLocaleString("en").replace(/,/g,""):n.toString(10)}function Fo(n,e){if(!isFinite(n)||n===0)return null;var t=(n=e?n.toExponential(e-1):n.toExponential()).indexOf("e"),r=n.slice(0,t);return[r.length>1?r[0]+r.slice(2):r,+n.slice(t+1)]}function Mr(n){return n=Fo(Math.abs(n)),n?n[1]:NaN}function EI(n,e){return function(t,r){for(var i=t.length,s=[],o=0,a=n[0],l=0;i>0&&a>0&&(l+a+1>r&&(a=Math.max(1,r-l)),s.push(t.substring(i-=a,i+a)),!((l+=a+1)>r));)a=n[o=(o+1)%n.length];return s.reverse().join(e)}}function xI(n){return function(e){return e.replace(/[0-9]/g,function(t){return n[+t]})}}var BI=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Nr(n){if(!(e=BI.exec(n)))throw new Error("invalid format: "+n);var e;return new Zc({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}Nr.prototype=Zc.prototype;function Zc(n){this.fill=n.fill===void 0?" ":n.fill+"",this.align=n.align===void 0?">":n.align+"",this.sign=n.sign===void 0?"-":n.sign+"",this.symbol=n.symbol===void 0?"":n.symbol+"",this.zero=!!n.zero,this.width=n.width===void 0?void 0:+n.width,this.comma=!!n.comma,this.precision=n.precision===void 0?void 0:+n.precision,this.trim=!!n.trim,this.type=n.type===void 0?"":n.type+""}Zc.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function vI(n){e:for(var e=n.length,t=1,r=-1,i;t<e;++t)switch(n[t]){case".":r=i=t;break;case"0":r===0&&(r=t),i=t;break;default:if(!+n[t])break e;r>0&&(r=0);break}return r>0?n.slice(0,r)+n.slice(i+1):n}var Ro;function SI(n,e){var t=Fo(n,e);if(!t)return Ro=void 0,n.toPrecision(e);var r=t[0],i=t[1],s=i-(Ro=Math.max(-8,Math.min(8,Math.floor(i/3)))*3)+1,o=r.length;return s===o?r:s>o?r+new Array(s-o+1).join("0"):s>0?r.slice(0,s)+"."+r.slice(s):"0."+new Array(1-s).join("0")+Fo(n,Math.max(0,e+s-1))[0]}function mh(n,e){var t=Fo(n,e);if(!t)return n+"";var r=t[0],i=t[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}const wh={"%":(n,e)=>(n*100).toFixed(e),b:n=>Math.round(n).toString(2),c:n=>n+"",d:bI,e:(n,e)=>n.toExponential(e),f:(n,e)=>n.toFixed(e),g:(n,e)=>n.toPrecision(e),o:n=>Math.round(n).toString(8),p:(n,e)=>mh(n*100,e),r:mh,s:SI,X:n=>Math.round(n).toString(16).toUpperCase(),x:n=>Math.round(n).toString(16)};function Ch(n){return n}var yh=Array.prototype.map,Ih=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function QI(n){var e=n.grouping===void 0||n.thousands===void 0?Ch:EI(yh.call(n.grouping,Number),n.thousands+""),t=n.currency===void 0?"":n.currency[0]+"",r=n.currency===void 0?"":n.currency[1]+"",i=n.decimal===void 0?".":n.decimal+"",s=n.numerals===void 0?Ch:xI(yh.call(n.numerals,String)),o=n.percent===void 0?"%":n.percent+"",a=n.minus===void 0?"−":n.minus+"",l=n.nan===void 0?"NaN":n.nan+"";function c(f,h){f=Nr(f);var A=f.fill,d=f.align,g=f.sign,p=f.symbol,m=f.zero,C=f.width,y=f.comma,w=f.precision,E=f.trim,x=f.type;x==="n"?(y=!0,x="g"):wh[x]||(w===void 0&&(w=12),E=!0,x="g"),(m||A==="0"&&d==="=")&&(m=!0,A="0",d="=");var b=(h&&h.prefix!==void 0?h.prefix:"")+(p==="$"?t:p==="#"&&/[boxX]/.test(x)?"0"+x.toLowerCase():""),S=(p==="$"?r:/[%p]/.test(x)?o:"")+(h&&h.suffix!==void 0?h.suffix:""),Q=wh[x],v=/[defgprs%]/.test(x);w=w===void 0?6:/[gprs]/.test(x)?Math.max(1,Math.min(21,w)):Math.max(0,Math.min(20,w));function F(R){var N=b,O=S,H,G,_;if(x==="c")O=Q(R)+O,R="";else{R=+R;var te=R<0||1/R<0;if(R=isNaN(R)?l:Q(Math.abs(R),w),E&&(R=vI(R)),te&&+R==0&&g!=="+"&&(te=!1),N=(te?g==="("?g:a:g==="-"||g==="("?"":g)+N,O=(x==="s"&&!isNaN(R)&&Ro!==void 0?Ih[8+Ro/3]:"")+O+(te&&g==="("?")":""),v){for(H=-1,G=R.length;++H<G;)if(_=R.charCodeAt(H),48>_||_>57){O=(_===46?i+R.slice(H+1):R.slice(H))+O,R=R.slice(0,H);break}}}y&&!m&&(R=e(R,1/0));var oe=N.length+R.length+O.length,ne=oe<C?new Array(C-oe+1).join(A):"";switch(y&&m&&(R=e(ne+R,ne.length?C-O.length:1/0),ne=""),d){case"<":R=N+R+O+ne;break;case"=":R=N+ne+R+O;break;case"^":R=ne.slice(0,oe=ne.length>>1)+N+R+O+ne.slice(oe);break;default:R=ne+N+R+O;break}return s(R)}return F.toString=function(){return f+""},F}function u(f,h){var A=Math.max(-8,Math.min(8,Math.floor(Mr(h)/3)))*3,d=Math.pow(10,-A),g=c((f=Nr(f),f.type="f",f),{suffix:Ih[8+A/3]});return function(p){return g(d*p)}}return{format:c,formatPrefix:u}}var Mo,He,bh;DI({thousands:",",grouping:[3],currency:["$",""]});function DI(n){return Mo=QI(n),He=Mo.format,bh=Mo.formatPrefix,Mo}function kI(n){return Math.max(0,-Mr(Math.abs(n)))}function FI(n,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Mr(e)/3)))*3-Mr(Math.abs(n)))}function RI(n,e){return n=Math.abs(n),e=Math.abs(e)-n,Math.max(0,Mr(e)-Mr(n))+1}const $c=new Date,el=new Date;function Se(n,e,t,r){function i(s){return n(s=arguments.length===0?new Date:new Date(+s)),s}return i.floor=s=>(n(s=new Date(+s)),s),i.ceil=s=>(n(s=new Date(s-1)),e(s,1),n(s),s),i.round=s=>{const o=i(s),a=i.ceil(s);return s-o<a-s?o:a},i.offset=(s,o)=>(e(s=new Date(+s),o==null?1:Math.floor(o)),s),i.range=(s,o,a)=>{const l=[];if(s=i.ceil(s),a=a==null?1:Math.floor(a),!(s<o)||!(a>0))return l;let c;do l.push(c=new Date(+s)),e(s,a),n(s);while(c<s&&s<o);return l},i.filter=s=>Se(o=>{if(o>=o)for(;n(o),!s(o);)o.setTime(o-1)},(o,a)=>{if(o>=o)if(a<0)for(;++a<=0;)for(;e(o,-1),!s(o););else for(;--a>=0;)for(;e(o,1),!s(o););}),t&&(i.count=(s,o)=>($c.setTime(+s),el.setTime(+o),n($c),n(el),Math.floor(t($c,el))),i.every=s=>(s=Math.floor(s),!isFinite(s)||!(s>0)?null:s>1?i.filter(r?o=>r(o)%s===0:o=>i.count(0,o)%s===0):i)),i}const Tr=Se(()=>{},(n,e)=>{n.setTime(+n+e)},(n,e)=>e-n);Tr.every=n=>(n=Math.floor(n),!isFinite(n)||!(n>0)?null:n>1?Se(e=>{e.setTime(Math.floor(e/n)*n)},(e,t)=>{e.setTime(+e+t*n)},(e,t)=>(t-e)/n):Tr),Tr.range;const Wt=1e3,ht=Wt*60,Xt=ht*60,Zt=Xt*24,tl=Zt*7,Eh=Zt*30,nl=Zt*365,$t=Se(n=>{n.setTime(n-n.getMilliseconds())},(n,e)=>{n.setTime(+n+e*Wt)},(n,e)=>(e-n)/Wt,n=>n.getUTCSeconds());$t.range;const No=Se(n=>{n.setTime(n-n.getMilliseconds()-n.getSeconds()*Wt)},(n,e)=>{n.setTime(+n+e*ht)},(n,e)=>(e-n)/ht,n=>n.getMinutes());No.range;const To=Se(n=>{n.setUTCSeconds(0,0)},(n,e)=>{n.setTime(+n+e*ht)},(n,e)=>(e-n)/ht,n=>n.getUTCMinutes());To.range;const Po=Se(n=>{n.setTime(n-n.getMilliseconds()-n.getSeconds()*Wt-n.getMinutes()*ht)},(n,e)=>{n.setTime(+n+e*Xt)},(n,e)=>(e-n)/Xt,n=>n.getHours());Po.range;const Lo=Se(n=>{n.setUTCMinutes(0,0,0)},(n,e)=>{n.setTime(+n+e*Xt)},(n,e)=>(e-n)/Xt,n=>n.getUTCHours());Lo.range;const Cn=Se(n=>n.setHours(0,0,0,0),(n,e)=>n.setDate(n.getDate()+e),(n,e)=>(e-n-(e.getTimezoneOffset()-n.getTimezoneOffset())*ht)/Zt,n=>n.getDate()-1);Cn.range;const Zn=Se(n=>{n.setUTCHours(0,0,0,0)},(n,e)=>{n.setUTCDate(n.getUTCDate()+e)},(n,e)=>(e-n)/Zt,n=>n.getUTCDate()-1);Zn.range;const xh=Se(n=>{n.setUTCHours(0,0,0,0)},(n,e)=>{n.setUTCDate(n.getUTCDate()+e)},(n,e)=>(e-n)/Zt,n=>Math.floor(n/Zt));xh.range;function $n(n){return Se(e=>{e.setDate(e.getDate()-(e.getDay()+7-n)%7),e.setHours(0,0,0,0)},(e,t)=>{e.setDate(e.getDate()+t*7)},(e,t)=>(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*ht)/tl)}const Ki=$n(0),Oo=$n(1),MI=$n(2),NI=$n(3),Pr=$n(4),TI=$n(5),PI=$n(6);Ki.range,Oo.range,MI.range,NI.range,Pr.range,TI.range,PI.range;function er(n){return Se(e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-n)%7),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCDate(e.getUTCDate()+t*7)},(e,t)=>(t-e)/tl)}const ji=er(0),Uo=er(1),LI=er(2),OI=er(3),Lr=er(4),UI=er(5),GI=er(6);ji.range,Uo.range,LI.range,OI.range,Lr.range,UI.range,GI.range;const Wi=Se(n=>{n.setDate(1),n.setHours(0,0,0,0)},(n,e)=>{n.setMonth(n.getMonth()+e)},(n,e)=>e.getMonth()-n.getMonth()+(e.getFullYear()-n.getFullYear())*12,n=>n.getMonth());Wi.range;const Xi=Se(n=>{n.setUTCDate(1),n.setUTCHours(0,0,0,0)},(n,e)=>{n.setUTCMonth(n.getUTCMonth()+e)},(n,e)=>e.getUTCMonth()-n.getUTCMonth()+(e.getUTCFullYear()-n.getUTCFullYear())*12,n=>n.getUTCMonth());Xi.range;const Rt=Se(n=>{n.setMonth(0,1),n.setHours(0,0,0,0)},(n,e)=>{n.setFullYear(n.getFullYear()+e)},(n,e)=>e.getFullYear()-n.getFullYear(),n=>n.getFullYear());Rt.every=n=>!isFinite(n=Math.floor(n))||!(n>0)?null:Se(e=>{e.setFullYear(Math.floor(e.getFullYear()/n)*n),e.setMonth(0,1),e.setHours(0,0,0,0)},(e,t)=>{e.setFullYear(e.getFullYear()+t*n)}),Rt.range;const Mt=Se(n=>{n.setUTCMonth(0,1),n.setUTCHours(0,0,0,0)},(n,e)=>{n.setUTCFullYear(n.getUTCFullYear()+e)},(n,e)=>e.getUTCFullYear()-n.getUTCFullYear(),n=>n.getUTCFullYear());Mt.every=n=>!isFinite(n=Math.floor(n))||!(n>0)?null:Se(e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/n)*n),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,t)=>{e.setUTCFullYear(e.getUTCFullYear()+t*n)}),Mt.range;function Bh(n,e,t,r,i,s){const o=[[$t,1,Wt],[$t,5,5*Wt],[$t,15,15*Wt],[$t,30,30*Wt],[s,1,ht],[s,5,5*ht],[s,15,15*ht],[s,30,30*ht],[i,1,Xt],[i,3,3*Xt],[i,6,6*Xt],[i,12,12*Xt],[r,1,Zt],[r,2,2*Zt],[t,1,tl],[e,1,Eh],[e,3,3*Eh],[n,1,nl]];function a(c,u,f){const h=u<c;h&&([c,u]=[u,c]);const A=f&&typeof f.range=="function"?f:l(c,u,f),d=A?A.range(c,+u+1):[];return h?d.reverse():d}function l(c,u,f){const h=Math.abs(u-c)/f,A=Wn(([,,p])=>p).right(o,h);if(A===o.length)return n.every(Xn(c/nl,u/nl,f));if(A===0)return Tr.every(Math.max(Xn(c,u,f),1));const[d,g]=o[h/o[A-1][2]<o[A][2]/h?A-1:A];return d.every(g)}return[a,l]}const[zI,HI]=Bh(Mt,Xi,ji,xh,Lo,To),[VI,_I]=Bh(Rt,Wi,Ki,Cn,Po,No),Zi="year",$i="quarter",es="month",ts="week",ns="date",Go="day",rl="dayofyear",rs="hours",is="minutes",ss="seconds",zo="milliseconds";[Zi,$i,es,ts,ns,Go,rl,rs,is,ss,zo].reduce((n,e,t)=>(n[e]=1+t,n),{});const YI={[Zi]:Rt,[$i]:Wi.every(3),[es]:Wi,[ts]:Ki,[ns]:Cn,[Go]:Cn,[rl]:Cn,[rs]:Po,[is]:No,[ss]:$t,[zo]:Tr},JI={[Zi]:Mt,[$i]:Xi.every(3),[es]:Xi,[ts]:ji,[ns]:Zn,[Go]:Zn,[rl]:Zn,[rs]:Lo,[is]:To,[ss]:$t,[zo]:Tr};function qI(n){return YI[n]}function KI(n){return JI[n]}function il(n){if(0<=n.y&&n.y<100){var e=new Date(-1,n.m,n.d,n.H,n.M,n.S,n.L);return e.setFullYear(n.y),e}return new Date(n.y,n.m,n.d,n.H,n.M,n.S,n.L)}function sl(n){if(0<=n.y&&n.y<100){var e=new Date(Date.UTC(-1,n.m,n.d,n.H,n.M,n.S,n.L));return e.setUTCFullYear(n.y),e}return new Date(Date.UTC(n.y,n.m,n.d,n.H,n.M,n.S,n.L))}function os(n,e,t){return{y:n,m:e,d:t,H:0,M:0,S:0,L:0}}function vh(n){var e=n.dateTime,t=n.date,r=n.time,i=n.periods,s=n.days,o=n.shortDays,a=n.months,l=n.shortMonths,c=as(i),u=cs(i),f=as(s),h=cs(s),A=as(o),d=cs(o),g=as(a),p=cs(a),m=as(l),C=cs(l),y={a:_,A:te,b:oe,B:ne,c:null,d:Rh,e:Rh,f:mb,g:Sb,G:Db,H:db,I:gb,j:pb,L:Mh,m:wb,M:Cb,p:Ge,q:qt,Q:Uh,s:Gh,S:yb,u:Ib,U:bb,V:Eb,w:xb,W:Bb,x:null,X:null,y:vb,Y:Qb,Z:kb,"%":Oh},w={a:ho,A:Ri,b:An,B:Dr,c:null,d:Th,e:Th,f:Nb,g:_b,G:Jb,H:Fb,I:Rb,j:Mb,L:Ph,m:Tb,M:Pb,p:go,q:Mi,Q:Uh,s:Gh,S:Lb,u:Ob,U:Ub,V:Gb,w:zb,W:Hb,x:null,X:null,y:Vb,Y:Yb,Z:qb,"%":Oh},E={a:v,A:F,b:R,B:N,c:O,d:kh,e:kh,f:ub,g:Dh,G:Qh,H:Fh,I:Fh,j:ob,L:lb,m:sb,M:ab,p:Q,q:ib,Q:Ab,s:hb,S:cb,u:$I,U:eb,V:tb,w:ZI,W:nb,x:H,X:G,y:Dh,Y:Qh,Z:rb,"%":fb};y.x=x(t,y),y.X=x(r,y),y.c=x(e,y),w.x=x(t,w),w.X=x(r,w),w.c=x(e,w);function x(U,K){return function(W){var M=[],Xe=-1,se=0,nt=U.length,Ze,hn,po;for(W instanceof Date||(W=new Date(+W));++Xe<nt;)U.charCodeAt(Xe)===37&&(M.push(U.slice(se,Xe)),(hn=Sh[Ze=U.charAt(++Xe)])!=null?Ze=U.charAt(++Xe):hn=Ze==="e"?" ":"0",(po=K[Ze])&&(Ze=po(W,hn)),M.push(Ze),se=Xe+1);return M.push(U.slice(se,Xe)),M.join("")}}function b(U,K){return function(W){var M=os(1900,void 0,1),Xe=S(M,U,W+="",0),se,nt;if(Xe!=W.length)return null;if("Q"in M)return new Date(M.Q);if("s"in M)return new Date(M.s*1e3+("L"in M?M.L:0));if(K&&!("Z"in M)&&(M.Z=0),"p"in M&&(M.H=M.H%12+M.p*12),M.m===void 0&&(M.m="q"in M?M.q:0),"V"in M){if(M.V<1||M.V>53)return null;"w"in M||(M.w=1),"Z"in M?(se=sl(os(M.y,0,1)),nt=se.getUTCDay(),se=nt>4||nt===0?Uo.ceil(se):Uo(se),se=Zn.offset(se,(M.V-1)*7),M.y=se.getUTCFullYear(),M.m=se.getUTCMonth(),M.d=se.getUTCDate()+(M.w+6)%7):(se=il(os(M.y,0,1)),nt=se.getDay(),se=nt>4||nt===0?Oo.ceil(se):Oo(se),se=Cn.offset(se,(M.V-1)*7),M.y=se.getFullYear(),M.m=se.getMonth(),M.d=se.getDate()+(M.w+6)%7)}else("W"in M||"U"in M)&&("w"in M||(M.w="u"in M?M.u%7:"W"in M?1:0),nt="Z"in M?sl(os(M.y,0,1)).getUTCDay():il(os(M.y,0,1)).getDay(),M.m=0,M.d="W"in M?(M.w+6)%7+M.W*7-(nt+5)%7:M.w+M.U*7-(nt+6)%7);return"Z"in M?(M.H+=M.Z/100|0,M.M+=M.Z%100,sl(M)):il(M)}}function S(U,K,W,M){for(var Xe=0,se=K.length,nt=W.length,Ze,hn;Xe<se;){if(M>=nt)return-1;if(Ze=K.charCodeAt(Xe++),Ze===37){if(Ze=K.charAt(Xe++),hn=E[Ze in Sh?K.charAt(Xe++):Ze],!hn||(M=hn(U,W,M))<0)return-1}else if(Ze!=W.charCodeAt(M++))return-1}return M}function Q(U,K,W){var M=c.exec(K.slice(W));return M?(U.p=u.get(M[0].toLowerCase()),W+M[0].length):-1}function v(U,K,W){var M=A.exec(K.slice(W));return M?(U.w=d.get(M[0].toLowerCase()),W+M[0].length):-1}function F(U,K,W){var M=f.exec(K.slice(W));return M?(U.w=h.get(M[0].toLowerCase()),W+M[0].length):-1}function R(U,K,W){var M=m.exec(K.slice(W));return M?(U.m=C.get(M[0].toLowerCase()),W+M[0].length):-1}function N(U,K,W){var M=g.exec(K.slice(W));return M?(U.m=p.get(M[0].toLowerCase()),W+M[0].length):-1}function O(U,K,W){return S(U,e,K,W)}function H(U,K,W){return S(U,t,K,W)}function G(U,K,W){return S(U,r,K,W)}function _(U){return o[U.getDay()]}function te(U){return s[U.getDay()]}function oe(U){return l[U.getMonth()]}function ne(U){return a[U.getMonth()]}function Ge(U){return i[+(U.getHours()>=12)]}function qt(U){return 1+~~(U.getMonth()/3)}function ho(U){return o[U.getUTCDay()]}function Ri(U){return s[U.getUTCDay()]}function An(U){return l[U.getUTCMonth()]}function Dr(U){return a[U.getUTCMonth()]}function go(U){return i[+(U.getUTCHours()>=12)]}function Mi(U){return 1+~~(U.getUTCMonth()/3)}return{format:function(U){var K=x(U+="",y);return K.toString=function(){return U},K},parse:function(U){var K=b(U+="",!1);return K.toString=function(){return U},K},utcFormat:function(U){var K=x(U+="",w);return K.toString=function(){return U},K},utcParse:function(U){var K=b(U+="",!0);return K.toString=function(){return U},K}}}var Sh={"-":"",_:" ",0:"0"},Re=/^\s*\d+/,jI=/^%/,WI=/[\\^$*+?|[\]().{}]/g;function Z(n,e,t){var r=n<0?"-":"",i=(r?-n:n)+"",s=i.length;return r+(s<t?new Array(t-s+1).join(e)+i:i)}function XI(n){return n.replace(WI,"\\$&")}function as(n){return new RegExp("^(?:"+n.map(XI).join("|")+")","i")}function cs(n){return new Map(n.map((e,t)=>[e.toLowerCase(),t]))}function ZI(n,e,t){var r=Re.exec(e.slice(t,t+1));return r?(n.w=+r[0],t+r[0].length):-1}function $I(n,e,t){var r=Re.exec(e.slice(t,t+1));return r?(n.u=+r[0],t+r[0].length):-1}function eb(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.U=+r[0],t+r[0].length):-1}function tb(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.V=+r[0],t+r[0].length):-1}function nb(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.W=+r[0],t+r[0].length):-1}function Qh(n,e,t){var r=Re.exec(e.slice(t,t+4));return r?(n.y=+r[0],t+r[0].length):-1}function Dh(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.y=+r[0]+(+r[0]>68?1900:2e3),t+r[0].length):-1}function rb(n,e,t){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(t,t+6));return r?(n.Z=r[1]?0:-(r[2]+(r[3]||"00")),t+r[0].length):-1}function ib(n,e,t){var r=Re.exec(e.slice(t,t+1));return r?(n.q=r[0]*3-3,t+r[0].length):-1}function sb(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.m=r[0]-1,t+r[0].length):-1}function kh(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.d=+r[0],t+r[0].length):-1}function ob(n,e,t){var r=Re.exec(e.slice(t,t+3));return r?(n.m=0,n.d=+r[0],t+r[0].length):-1}function Fh(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.H=+r[0],t+r[0].length):-1}function ab(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.M=+r[0],t+r[0].length):-1}function cb(n,e,t){var r=Re.exec(e.slice(t,t+2));return r?(n.S=+r[0],t+r[0].length):-1}function lb(n,e,t){var r=Re.exec(e.slice(t,t+3));return r?(n.L=+r[0],t+r[0].length):-1}function ub(n,e,t){var r=Re.exec(e.slice(t,t+6));return r?(n.L=Math.floor(r[0]/1e3),t+r[0].length):-1}function fb(n,e,t){var r=jI.exec(e.slice(t,t+1));return r?t+r[0].length:-1}function Ab(n,e,t){var r=Re.exec(e.slice(t));return r?(n.Q=+r[0],t+r[0].length):-1}function hb(n,e,t){var r=Re.exec(e.slice(t));return r?(n.s=+r[0],t+r[0].length):-1}function Rh(n,e){return Z(n.getDate(),e,2)}function db(n,e){return Z(n.getHours(),e,2)}function gb(n,e){return Z(n.getHours()%12||12,e,2)}function pb(n,e){return Z(1+Cn.count(Rt(n),n),e,3)}function Mh(n,e){return Z(n.getMilliseconds(),e,3)}function mb(n,e){return Mh(n,e)+"000"}function wb(n,e){return Z(n.getMonth()+1,e,2)}function Cb(n,e){return Z(n.getMinutes(),e,2)}function yb(n,e){return Z(n.getSeconds(),e,2)}function Ib(n){var e=n.getDay();return e===0?7:e}function bb(n,e){return Z(Ki.count(Rt(n)-1,n),e,2)}function Nh(n){var e=n.getDay();return e>=4||e===0?Pr(n):Pr.ceil(n)}function Eb(n,e){return n=Nh(n),Z(Pr.count(Rt(n),n)+(Rt(n).getDay()===4),e,2)}function xb(n){return n.getDay()}function Bb(n,e){return Z(Oo.count(Rt(n)-1,n),e,2)}function vb(n,e){return Z(n.getFullYear()%100,e,2)}function Sb(n,e){return n=Nh(n),Z(n.getFullYear()%100,e,2)}function Qb(n,e){return Z(n.getFullYear()%1e4,e,4)}function Db(n,e){var t=n.getDay();return n=t>=4||t===0?Pr(n):Pr.ceil(n),Z(n.getFullYear()%1e4,e,4)}function kb(n){var e=n.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+Z(e/60|0,"0",2)+Z(e%60,"0",2)}function Th(n,e){return Z(n.getUTCDate(),e,2)}function Fb(n,e){return Z(n.getUTCHours(),e,2)}function Rb(n,e){return Z(n.getUTCHours()%12||12,e,2)}function Mb(n,e){return Z(1+Zn.count(Mt(n),n),e,3)}function Ph(n,e){return Z(n.getUTCMilliseconds(),e,3)}function Nb(n,e){return Ph(n,e)+"000"}function Tb(n,e){return Z(n.getUTCMonth()+1,e,2)}function Pb(n,e){return Z(n.getUTCMinutes(),e,2)}function Lb(n,e){return Z(n.getUTCSeconds(),e,2)}function Ob(n){var e=n.getUTCDay();return e===0?7:e}function Ub(n,e){return Z(ji.count(Mt(n)-1,n),e,2)}function Lh(n){var e=n.getUTCDay();return e>=4||e===0?Lr(n):Lr.ceil(n)}function Gb(n,e){return n=Lh(n),Z(Lr.count(Mt(n),n)+(Mt(n).getUTCDay()===4),e,2)}function zb(n){return n.getUTCDay()}function Hb(n,e){return Z(Uo.count(Mt(n)-1,n),e,2)}function Vb(n,e){return Z(n.getUTCFullYear()%100,e,2)}function _b(n,e){return n=Lh(n),Z(n.getUTCFullYear()%100,e,2)}function Yb(n,e){return Z(n.getUTCFullYear()%1e4,e,4)}function Jb(n,e){var t=n.getUTCDay();return n=t>=4||t===0?Lr(n):Lr.ceil(n),Z(n.getUTCFullYear()%1e4,e,4)}function qb(){return"+0000"}function Oh(){return"%"}function Uh(n){return+n}function Gh(n){return Math.floor(+n/1e3)}var Or,ol,zh,al,Hh;Kb({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function Kb(n){return Or=vh(n),ol=Or.format,zh=Or.parse,al=Or.utcFormat,Hh=Or.utcParse,Or}function Ho(n){const e={};return t=>e[t]||(e[t]=n(t))}function Vh(n,e,t){t=t||{},ze(t)||Ee(`Invalid time multi-format specifier: ${t}`);const r=e(ss),i=e(is),s=e(rs),o=e(ns),a=e(ts),l=e(es),c=e($i),u=e(Zi),f=n(t[zo]||".%L"),h=n(t[ss]||":%S"),A=n(t[is]||"%I:%M"),d=n(t[rs]||"%I %p"),g=n(t[ns]||t[Go]||"%a %d"),p=n(t[ts]||"%b %d"),m=n(t[es]||"%B"),C=n(t[$i]||"%B"),y=n(t[Zi]||"%Y");return w=>(r(w)<w?f:i(w)<w?h:s(w)<w?A:o(w)<w?d:l(w)<w?a(w)<w?g:p:u(w)<w?c(w)<w?m:C:y)(w)}function _h(n){const e=Ho(n.format),t=Ho(n.utcFormat);return{timeFormat:r=>le(r)?e(r):Vh(e,qI,r),utcFormat:r=>le(r)?t(r):Vh(t,KI,r),timeParse:Ho(n.parse),utcParse:Ho(n.utcParse)}}let cl;jb();function jb(){return cl=_h({format:ol,parse:zh,utcFormat:al,utcParse:Hh})}function Wb(n){return _h(vh(n))}function Xb(n){return arguments.length?cl=Wb(n):cl}const Zb=n=>n!=null&&n===n,$b=n=>n==="true"||n==="false"||n===!0||n===!1,eE=n=>!Number.isNaN(Date.parse(n)),Yh=n=>!Number.isNaN(+n)&&!(n instanceof Date),tE=n=>Yh(n)&&Number.isInteger(+n),Jh={boolean:y2,integer:Ni,number:Ni,date:b2,string:E2,unknown:Co},Vo=[$b,tE,Yh,eE],nE=["boolean","integer","number","date"];function rE(n,e){if(!n||!n.length)return"unknown";const t=n.length,r=Vo.length,i=Vo.map((s,o)=>o+1);for(let s=0,o=0,a,l;s<t;++s)for(l=e?n[s][e]:n[s],a=0;a<r;++a)if(i[a]&&Zb(l)&&!Vo[a](l)&&(i[a]=0,++o,o===Vo.length))return"string";return nE[i.reduce((s,o)=>s===0?o:s,0)-1]}function iE(n,e){return e.reduce((t,r)=>(t[r]=rE(n,r),t),{})}function qh(n){const e=function(t,r){const i={delimiter:n};return ll(t,r?p2(r,i):i)};return e.responseType="text",e}function ll(n,e){return e.header&&(n=e.header.map(Oc).join(e.delimiter)+`
|
|
8
|
-
`+
|
|
1
|
+
(function(bt,At){typeof exports=="object"&&typeof module<"u"?At(exports):typeof define=="function"&&define.amd?define(["exports"],At):(bt=typeof globalThis<"u"?globalThis:bt||self,At(bt.genomeSpyEmbed={}))})(this,(function(bt){"use strict";function At(t,e,n){return t.fields=e||[],t.fname=n,t}function dI(t){return t==null?null:t.fname}function gI(t){return t==null?null:t.fields}function pI(t){return t.length===1?mI(t[0]):wI(t)}const mI=t=>function(e){return e[t]},wI=t=>{const e=t.length;return function(n){for(let i=0;i<e;++i)n=n[t[i]];return n}};function be(t){throw Error(t)}function yI(t){const e=[],n=t.length;let i=null,r=0,s="",o,a,l;t=t+"";function c(){e.push(s+t.substring(o,a)),s="",o=a+1}for(o=a=0;a<n;++a)if(l=t[a],l==="\\")s+=t.substring(o,a++),o=a;else if(l===i)c(),i=null,r=-1;else{if(i)continue;o===r&&l==='"'||o===r&&l==="'"?(o=a+1,i=l):l==="."&&!r?a>o?c():o=a+1:l==="["?(a>o&&c(),r=o=a+1):l==="]"&&(r||be("Access path missing open bracket: "+t),r>0&&c(),r=0,o=a+1)}return r&&be("Access path missing closing bracket: "+t),i&&be("Access path missing closing quote: "+t),a>o&&(a++,c()),e}function Qo(t,e,n){const i=yI(t);return t=i.length===1?i[0]:t,At((n&&n.get||pI)(i),[t],e||t)}Qo("id");const Do=At(t=>t,[],"identity");At(()=>0,[],"zero"),At(()=>1,[],"one"),At(()=>!0,[],"true"),At(()=>!1,[],"false");const CI=new Set([...Object.getOwnPropertyNames(Object.prototype).filter(t=>typeof Object.prototype[t]=="function"),"__proto__"]);var Ce=Array.isArray;function Ge(t){return t===Object(t)}function xt(t){return t[t.length-1]}function Gr(t){return t==null||t===""?null:+t}const Ah=t=>e=>t*Math.exp(e),hh=t=>e=>Math.log(t*e),EI=t=>e=>Math.sign(e)*Math.log1p(Math.abs(e/t)),II=t=>e=>Math.sign(e)*Math.expm1(Math.abs(e))*t,ko=t=>e=>e<0?-Math.pow(-e,t):Math.pow(e,t);function $c(t,e,n,i){const r=n(t[0]),s=n(xt(t)),o=(s-r)*e;return[i(r-o),i(s-o)]}function bI(t,e){return $c(t,e,Gr,Do)}function xI(t,e){var n=Math.sign(t[0]);return $c(t,e,hh(n),Ah(n))}function BI(t,e,n){return $c(t,e,ko(n),ko(1/n))}function Fo(t,e,n,i,r){const s=i(t[0]),o=i(xt(t)),a=e!=null?i(e):(s+o)/2;return[r(a+(s-a)*n),r(a+(o-a)*n)]}function dh(t,e,n){return Fo(t,e,n,Gr,Do)}function gh(t,e,n){const i=Math.sign(t[0]);return Fo(t,e,n,hh(i),Ah(i))}function el(t,e,n,i){return Fo(t,e,n,ko(i),ko(1/i))}function vI(t,e,n,i){return Fo(t,e,n,EI(i),II(i))}function tl(t){return t!=null?Ce(t)?t:[t]:[]}function SI(t,e,n){let i=t[0],r=t[1],s;return r<i&&(s=r,r=i,i=s),s=r-i,s>=n-e?[e,n]:[i=Math.min(Math.max(i,e),n-s),i+s]}function ht(t){return typeof t=="function"}const QI="descending";function ph(t,e,n){n=n||{},e=tl(e)||[];const i=[],r=[],s={},o=n.comparator||DI;return tl(t).forEach((a,l)=>{a!=null&&(i.push(e[l]===QI?-1:1),r.push(a=ht(a)?a:Qo(a,null,n)),(gI(a)||[]).forEach(c=>s[c]=1))}),r.length===0?null:At(o(r,i),Object.keys(s))}const mh=(t,e)=>(t<e||t==null)&&e!=null?-1:(t>e||e==null)&&t!=null?1:(e=e instanceof Date?+e:e,(t=t instanceof Date?+t:t)!==t&&e===e?-1:e!==e&&t===t?1:0),DI=(t,e)=>t.length===1?kI(t[0],e[0]):FI(t,e,t.length),kI=(t,e)=>function(n,i){return mh(t(n),t(i))*e},FI=(t,e,n)=>(e.push(0),function(i,r){let s,o=0,a=-1;for(;o===0&&++a<n;)s=t[a],o=mh(s(i),s(r));return o*e[a]});function RI(t){for(let e,n,i=1,r=arguments.length;i<r;++i){e=arguments[i];for(n in e)t[n]=e[n]}return t}function Mi(t,e){return Object.hasOwn(t,e)}function zr(t){return typeof t=="boolean"}function NI(t){return Object.prototype.toString.call(t)==="[object Date]"}function MI(t){return t&&ht(t[Symbol.iterator])}function Ve(t){return typeof t=="number"}function TI(t){return Object.prototype.toString.call(t)==="[object RegExp]"}function le(t){return typeof t=="string"}function wh(t,e){const n=t[0],i=xt(t),r=+e;return r?r===1?i:n+r*(i-n):n}function Hr(t){return t&&xt(t)-t[0]||0}function nl(t){return Ce(t)?`[${t.map(e=>e===null?"null":nl(e))}]`:Ge(t)||le(t)?JSON.stringify(t).replaceAll("\u2028","\\u2028").replaceAll("\u2029","\\u2029"):t}function PI(t){return t==null||t===""?null:!t||t==="false"||t==="0"?!1:!!t}const LI=t=>Ve(t)||NI(t)?t:Date.parse(t);function OI(t,e){return e=e||LI,t==null||t===""?null:e(t)}function UI(t){return t==null||t===""?null:t+""}function Ro(t){const e={},n=t.length;for(let i=0;i<n;++i)e[t[i]]=!0;return e}const No=globalThis,il=No.ShadowRoot&&(No.ShadyCSS===void 0||No.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,yh=Symbol(),Ch=new WeakMap;let _I=class{constructor(e,n,i){if(this._$cssResult$=!0,i!==yh)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=e,this.t=n}get styleSheet(){let e=this.o;const n=this.t;if(il&&e===void 0){const i=n!==void 0&&n.length===1;i&&(e=Ch.get(n)),e===void 0&&((this.o=e=new CSSStyleSheet).replaceSync(this.cssText),i&&Ch.set(n,e))}return e}toString(){return this.cssText}};const GI=t=>new _I(typeof t=="string"?t:t+"",void 0,yh),zI=(t,e)=>{if(il)t.adoptedStyleSheets=e.map(n=>n instanceof CSSStyleSheet?n:n.styleSheet);else for(const n of e){const i=document.createElement("style"),r=No.litNonce;r!==void 0&&i.setAttribute("nonce",r),i.textContent=n.cssText,t.appendChild(i)}},Eh=il?t=>t:t=>t instanceof CSSStyleSheet?(e=>{let n="";for(const i of e.cssRules)n+=i.cssText;return GI(n)})(t):t;const{is:HI,defineProperty:YI,getOwnPropertyDescriptor:VI,getOwnPropertyNames:JI,getOwnPropertySymbols:qI,getPrototypeOf:KI}=Object,Mo=globalThis,Ih=Mo.trustedTypes,jI=Ih?Ih.emptyScript:"",WI=Mo.reactiveElementPolyfillSupport,Yr=(t,e)=>t,rl={toAttribute(t,e){switch(e){case Boolean:t=t?jI:null;break;case Object:case Array:t=t==null?t:JSON.stringify(t)}return t},fromAttribute(t,e){let n=t;switch(e){case Boolean:n=t!==null;break;case Number:n=t===null?null:Number(t);break;case Object:case Array:try{n=JSON.parse(t)}catch{n=null}}return n}},bh=(t,e)=>!HI(t,e),xh={attribute:!0,type:String,converter:rl,reflect:!1,useDefault:!1,hasChanged:bh};Symbol.metadata??=Symbol("metadata"),Mo.litPropertyMetadata??=new WeakMap;let Ti=class extends HTMLElement{static addInitializer(e){this._$Ei(),(this.l??=[]).push(e)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(e,n=xh){if(n.state&&(n.attribute=!1),this._$Ei(),this.prototype.hasOwnProperty(e)&&((n=Object.create(n)).wrapped=!0),this.elementProperties.set(e,n),!n.noAccessor){const i=Symbol(),r=this.getPropertyDescriptor(e,i,n);r!==void 0&&YI(this.prototype,e,r)}}static getPropertyDescriptor(e,n,i){const{get:r,set:s}=VI(this.prototype,e)??{get(){return this[n]},set(o){this[n]=o}};return{get:r,set(o){const a=r?.call(this);s?.call(this,o),this.requestUpdate(e,a,i)},configurable:!0,enumerable:!0}}static getPropertyOptions(e){return this.elementProperties.get(e)??xh}static _$Ei(){if(this.hasOwnProperty(Yr("elementProperties")))return;const e=KI(this);e.finalize(),e.l!==void 0&&(this.l=[...e.l]),this.elementProperties=new Map(e.elementProperties)}static finalize(){if(this.hasOwnProperty(Yr("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Yr("properties"))){const n=this.properties,i=[...JI(n),...qI(n)];for(const r of i)this.createProperty(r,n[r])}const e=this[Symbol.metadata];if(e!==null){const n=litPropertyMetadata.get(e);if(n!==void 0)for(const[i,r]of n)this.elementProperties.set(i,r)}this._$Eh=new Map;for(const[n,i]of this.elementProperties){const r=this._$Eu(n,i);r!==void 0&&this._$Eh.set(r,n)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(e){const n=[];if(Array.isArray(e)){const i=new Set(e.flat(1/0).reverse());for(const r of i)n.unshift(Eh(r))}else e!==void 0&&n.push(Eh(e));return n}static _$Eu(e,n){const i=n.attribute;return i===!1?void 0:typeof i=="string"?i:typeof e=="string"?e.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$ES=new Promise(e=>this.enableUpdating=e),this._$AL=new Map,this._$E_(),this.requestUpdate(),this.constructor.l?.forEach(e=>e(this))}addController(e){(this._$EO??=new Set).add(e),this.renderRoot!==void 0&&this.isConnected&&e.hostConnected?.()}removeController(e){this._$EO?.delete(e)}_$E_(){const e=new Map,n=this.constructor.elementProperties;for(const i of n.keys())this.hasOwnProperty(i)&&(e.set(i,this[i]),delete this[i]);e.size>0&&(this._$Ep=e)}createRenderRoot(){const e=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return zI(e,this.constructor.elementStyles),e}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$EO?.forEach(e=>e.hostConnected?.())}enableUpdating(e){}disconnectedCallback(){this._$EO?.forEach(e=>e.hostDisconnected?.())}attributeChangedCallback(e,n,i){this._$AK(e,i)}_$ET(e,n){const i=this.constructor.elementProperties.get(e),r=this.constructor._$Eu(e,i);if(r!==void 0&&i.reflect===!0){const s=(i.converter?.toAttribute!==void 0?i.converter:rl).toAttribute(n,i.type);this._$Em=e,s==null?this.removeAttribute(r):this.setAttribute(r,s),this._$Em=null}}_$AK(e,n){const i=this.constructor,r=i._$Eh.get(e);if(r!==void 0&&this._$Em!==r){const s=i.getPropertyOptions(r),o=typeof s.converter=="function"?{fromAttribute:s.converter}:s.converter?.fromAttribute!==void 0?s.converter:rl;this._$Em=r;const a=o.fromAttribute(n,s.type);this[r]=a??this._$Ej?.get(r)??a,this._$Em=null}}requestUpdate(e,n,i,r=!1,s){if(e!==void 0){const o=this.constructor;if(r===!1&&(s=this[e]),i??=o.getPropertyOptions(e),!((i.hasChanged??bh)(s,n)||i.useDefault&&i.reflect&&s===this._$Ej?.get(e)&&!this.hasAttribute(o._$Eu(e,i))))return;this.C(e,n,i)}this.isUpdatePending===!1&&(this._$ES=this._$EP())}C(e,n,{useDefault:i,reflect:r,wrapped:s},o){i&&!(this._$Ej??=new Map).has(e)&&(this._$Ej.set(e,o??n??this[e]),s!==!0||o!==void 0)||(this._$AL.has(e)||(this.hasUpdated||i||(n=void 0),this._$AL.set(e,n)),r===!0&&this._$Em!==e&&(this._$Eq??=new Set).add(e))}async _$EP(){this.isUpdatePending=!0;try{await this._$ES}catch(n){Promise.reject(n)}const e=this.scheduleUpdate();return e!=null&&await e,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[r,s]of this._$Ep)this[r]=s;this._$Ep=void 0}const i=this.constructor.elementProperties;if(i.size>0)for(const[r,s]of i){const{wrapped:o}=s,a=this[r];o!==!0||this._$AL.has(r)||a===void 0||this.C(r,void 0,s,a)}}let e=!1;const n=this._$AL;try{e=this.shouldUpdate(n),e?(this.willUpdate(n),this._$EO?.forEach(i=>i.hostUpdate?.()),this.update(n)):this._$EM()}catch(i){throw e=!1,this._$EM(),i}e&&this._$AE(n)}willUpdate(e){}_$AE(e){this._$EO?.forEach(n=>n.hostUpdated?.()),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(e)),this.updated(e)}_$EM(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$ES}shouldUpdate(e){return!0}update(e){this._$Eq&&=this._$Eq.forEach(n=>this._$ET(n,this[n])),this._$EM()}updated(e){}firstUpdated(e){}};Ti.elementStyles=[],Ti.shadowRootOptions={mode:"open"},Ti[Yr("elementProperties")]=new Map,Ti[Yr("finalized")]=new Map,WI?.({ReactiveElement:Ti}),(Mo.reactiveElementVersions??=[]).push("2.1.2");const sl=globalThis,Bh=t=>t,To=sl.trustedTypes,vh=To?To.createPolicy("lit-html",{createHTML:t=>t}):void 0,Sh="$lit$",wn=`lit$${Math.random().toFixed(9).slice(2)}$`,Qh="?"+wn,XI=`<${Qh}>`,qn=document,Vr=()=>qn.createComment(""),Jr=t=>t===null||typeof t!="object"&&typeof t!="function",ol=Array.isArray,ZI=t=>ol(t)||typeof t?.[Symbol.iterator]=="function",al=`[
|
|
2
|
+
\f\r]`,qr=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Dh=/-->/g,kh=/>/g,Kn=RegExp(`>|${al}(?:([^\\s"'>=/]+)(${al}*=${al}*(?:[^
|
|
3
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),Fh=/'/g,Rh=/"/g,Nh=/^(?:script|style|textarea|title)$/i,$I=t=>(e,...n)=>({_$litType$:t,strings:e,values:n}),ce=$I(1),jn=Symbol.for("lit-noChange"),Ie=Symbol.for("lit-nothing"),Mh=new WeakMap,Wn=qn.createTreeWalker(qn,129);function Th(t,e){if(!ol(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return vh!==void 0?vh.createHTML(e):e}const e2=(t,e)=>{const n=t.length-1,i=[];let r,s=e===2?"<svg>":e===3?"<math>":"",o=qr;for(let a=0;a<n;a++){const l=t[a];let c,f,u=-1,h=0;for(;h<l.length&&(o.lastIndex=h,f=o.exec(l),f!==null);)h=o.lastIndex,o===qr?f[1]==="!--"?o=Dh:f[1]!==void 0?o=kh:f[2]!==void 0?(Nh.test(f[2])&&(r=RegExp("</"+f[2],"g")),o=Kn):f[3]!==void 0&&(o=Kn):o===Kn?f[0]===">"?(o=r??qr,u=-1):f[1]===void 0?u=-2:(u=o.lastIndex-f[2].length,c=f[1],o=f[3]===void 0?Kn:f[3]==='"'?Rh:Fh):o===Rh||o===Fh?o=Kn:o===Dh||o===kh?o=qr:(o=Kn,r=void 0);const A=o===Kn&&t[a+1].startsWith("/>")?" ":"";s+=o===qr?l+XI:u>=0?(i.push(c),l.slice(0,u)+Sh+l.slice(u)+wn+A):l+wn+(u===-2?a:A)}return[Th(t,s+(t[n]||"<?>")+(e===2?"</svg>":e===3?"</math>":"")),i]};class Kr{constructor({strings:e,_$litType$:n},i){let r;this.parts=[];let s=0,o=0;const a=e.length-1,l=this.parts,[c,f]=e2(e,n);if(this.el=Kr.createElement(c,i),Wn.currentNode=this.el.content,n===2||n===3){const u=this.el.content.firstChild;u.replaceWith(...u.childNodes)}for(;(r=Wn.nextNode())!==null&&l.length<a;){if(r.nodeType===1){if(r.hasAttributes())for(const u of r.getAttributeNames())if(u.endsWith(Sh)){const h=f[o++],A=r.getAttribute(u).split(wn),d=/([.?@])?(.*)/.exec(h);l.push({type:1,index:s,name:d[2],strings:A,ctor:d[1]==="."?n2:d[1]==="?"?i2:d[1]==="@"?r2:Po}),r.removeAttribute(u)}else u.startsWith(wn)&&(l.push({type:6,index:s}),r.removeAttribute(u));if(Nh.test(r.tagName)){const u=r.textContent.split(wn),h=u.length-1;if(h>0){r.textContent=To?To.emptyScript:"";for(let A=0;A<h;A++)r.append(u[A],Vr()),Wn.nextNode(),l.push({type:2,index:++s});r.append(u[h],Vr())}}}else if(r.nodeType===8)if(r.data===Qh)l.push({type:2,index:s});else{let u=-1;for(;(u=r.data.indexOf(wn,u+1))!==-1;)l.push({type:7,index:s}),u+=wn.length-1}s++}}static createElement(e,n){const i=qn.createElement("template");return i.innerHTML=e,i}}function Pi(t,e,n=t,i){if(e===jn)return e;let r=i!==void 0?n._$Co?.[i]:n._$Cl;const s=Jr(e)?void 0:e._$litDirective$;return r?.constructor!==s&&(r?._$AO?.(!1),s===void 0?r=void 0:(r=new s(t),r._$AT(t,n,i)),i!==void 0?(n._$Co??=[])[i]=r:n._$Cl=r),r!==void 0&&(e=Pi(t,r._$AS(t,e.values),r,i)),e}class t2{constructor(e,n){this._$AV=[],this._$AN=void 0,this._$AD=e,this._$AM=n}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(e){const{el:{content:n},parts:i}=this._$AD,r=(e?.creationScope??qn).importNode(n,!0);Wn.currentNode=r;let s=Wn.nextNode(),o=0,a=0,l=i[0];for(;l!==void 0;){if(o===l.index){let c;l.type===2?c=new jr(s,s.nextSibling,this,e):l.type===1?c=new l.ctor(s,l.name,l.strings,this,e):l.type===6&&(c=new s2(s,this,e)),this._$AV.push(c),l=i[++a]}o!==l?.index&&(s=Wn.nextNode(),o++)}return Wn.currentNode=qn,r}p(e){let n=0;for(const i of this._$AV)i!==void 0&&(i.strings!==void 0?(i._$AI(e,i,n),n+=i.strings.length-2):i._$AI(e[n])),n++}}class jr{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(e,n,i,r){this.type=2,this._$AH=Ie,this._$AN=void 0,this._$AA=e,this._$AB=n,this._$AM=i,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let e=this._$AA.parentNode;const n=this._$AM;return n!==void 0&&e?.nodeType===11&&(e=n.parentNode),e}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(e,n=this){e=Pi(this,e,n),Jr(e)?e===Ie||e==null||e===""?(this._$AH!==Ie&&this._$AR(),this._$AH=Ie):e!==this._$AH&&e!==jn&&this._(e):e._$litType$!==void 0?this.$(e):e.nodeType!==void 0?this.T(e):ZI(e)?this.k(e):this._(e)}O(e){return this._$AA.parentNode.insertBefore(e,this._$AB)}T(e){this._$AH!==e&&(this._$AR(),this._$AH=this.O(e))}_(e){this._$AH!==Ie&&Jr(this._$AH)?this._$AA.nextSibling.data=e:this.T(qn.createTextNode(e)),this._$AH=e}$(e){const{values:n,_$litType$:i}=e,r=typeof i=="number"?this._$AC(e):(i.el===void 0&&(i.el=Kr.createElement(Th(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===r)this._$AH.p(n);else{const s=new t2(r,this),o=s.u(this.options);s.p(n),this.T(o),this._$AH=s}}_$AC(e){let n=Mh.get(e.strings);return n===void 0&&Mh.set(e.strings,n=new Kr(e)),n}k(e){ol(this._$AH)||(this._$AH=[],this._$AR());const n=this._$AH;let i,r=0;for(const s of e)r===n.length?n.push(i=new jr(this.O(Vr()),this.O(Vr()),this,this.options)):i=n[r],i._$AI(s),r++;r<n.length&&(this._$AR(i&&i._$AB.nextSibling,r),n.length=r)}_$AR(e=this._$AA.nextSibling,n){for(this._$AP?.(!1,!0,n);e!==this._$AB;){const i=Bh(e).nextSibling;Bh(e).remove(),e=i}}setConnected(e){this._$AM===void 0&&(this._$Cv=e,this._$AP?.(e))}}class Po{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(e,n,i,r,s){this.type=1,this._$AH=Ie,this._$AN=void 0,this.element=e,this.name=n,this._$AM=r,this.options=s,i.length>2||i[0]!==""||i[1]!==""?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=Ie}_$AI(e,n=this,i,r){const s=this.strings;let o=!1;if(s===void 0)e=Pi(this,e,n,0),o=!Jr(e)||e!==this._$AH&&e!==jn,o&&(this._$AH=e);else{const a=e;let l,c;for(e=s[0],l=0;l<s.length-1;l++)c=Pi(this,a[i+l],n,l),c===jn&&(c=this._$AH[l]),o||=!Jr(c)||c!==this._$AH[l],c===Ie?e=Ie:e!==Ie&&(e+=(c??"")+s[l+1]),this._$AH[l]=c}o&&!r&&this.j(e)}j(e){e===Ie?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,e??"")}}class n2 extends Po{constructor(){super(...arguments),this.type=3}j(e){this.element[this.name]=e===Ie?void 0:e}}class i2 extends Po{constructor(){super(...arguments),this.type=4}j(e){this.element.toggleAttribute(this.name,!!e&&e!==Ie)}}let r2=class extends Po{constructor(e,n,i,r,s){super(e,n,i,r,s),this.type=5}_$AI(e,n=this){if((e=Pi(this,e,n,0)??Ie)===jn)return;const i=this._$AH,r=e===Ie&&i!==Ie||e.capture!==i.capture||e.once!==i.once||e.passive!==i.passive,s=e!==Ie&&(i===Ie||r);r&&this.element.removeEventListener(this.name,this,i),s&&this.element.addEventListener(this.name,this,e),this._$AH=e}handleEvent(e){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,e):this._$AH.handleEvent(e)}};class s2{constructor(e,n,i){this.element=e,this.type=6,this._$AN=void 0,this._$AM=n,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(e){Pi(this,e)}}const o2=sl.litHtmlPolyfillSupport;o2?.(Kr,jr),(sl.litHtmlVersions??=[]).push("3.3.2");const Wr=(t,e,n)=>{const i=n?.renderBefore??e;let r=i._$litPart$;if(r===void 0){const s=n?.renderBefore??null;i._$litPart$=r=new jr(e.insertBefore(Vr(),s),s,void 0,n??{})}return r._$AI(t),r};const cl=globalThis;let Lo=class extends Ti{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const e=super.createRenderRoot();return this.renderOptions.renderBefore??=e.firstChild,e}update(e){const n=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(e),this._$Do=Wr(n,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return jn}};Lo._$litElement$=!0,Lo.finalized=!0,cl.litElementHydrateSupport?.({LitElement:Lo});const a2=cl.litElementPolyfillSupport;a2?.({LitElement:Lo}),(cl.litElementVersions??=[]).push("4.2.2");var Ph={},ll={},fl=34,Xr=10,ul=13;function Lh(t){return new Function("d","return {"+t.map(function(e,n){return JSON.stringify(e)+": d["+n+'] || ""'}).join(",")+"}")}function c2(t,e){var n=Lh(t);return function(i,r){return e(n(i),r,t)}}function Oh(t){var e=Object.create(null),n=[];return t.forEach(function(i){for(var r in i)r in e||n.push(e[r]=r)}),n}function st(t,e){var n=t+"",i=n.length;return i<e?new Array(e-i+1).join(0)+n:n}function l2(t){return t<0?"-"+st(-t,6):t>9999?"+"+st(t,6):st(t,4)}function f2(t){var e=t.getUTCHours(),n=t.getUTCMinutes(),i=t.getUTCSeconds(),r=t.getUTCMilliseconds();return isNaN(t)?"Invalid Date":l2(t.getUTCFullYear())+"-"+st(t.getUTCMonth()+1,2)+"-"+st(t.getUTCDate(),2)+(r?"T"+st(e,2)+":"+st(n,2)+":"+st(i,2)+"."+st(r,3)+"Z":i?"T"+st(e,2)+":"+st(n,2)+":"+st(i,2)+"Z":n||e?"T"+st(e,2)+":"+st(n,2)+"Z":"")}function Uh(t){var e=new RegExp('["'+t+`
|
|
4
|
+
\r]`),n=t.charCodeAt(0);function i(u,h){var A,d,g=r(u,function(m,p){if(A)return A(m,p-1);d=m,A=h?c2(m,h):Lh(m)});return g.columns=d||[],g}function r(u,h){var A=[],d=u.length,g=0,m=0,p,w=d<=0,C=!1;u.charCodeAt(d-1)===Xr&&--d,u.charCodeAt(d-1)===ul&&--d;function y(){if(w)return ll;if(C)return C=!1,Ph;var x,I=g,S;if(u.charCodeAt(I)===fl){for(;g++<d&&u.charCodeAt(g)!==fl||u.charCodeAt(++g)===fl;);return(x=g)>=d?w=!0:(S=u.charCodeAt(g++))===Xr?C=!0:S===ul&&(C=!0,u.charCodeAt(g)===Xr&&++g),u.slice(I+1,x-1).replace(/""/g,'"')}for(;g<d;){if((S=u.charCodeAt(x=g++))===Xr)C=!0;else if(S===ul)C=!0,u.charCodeAt(g)===Xr&&++g;else if(S!==n)continue;return u.slice(I,x)}return w=!0,u.slice(I,d)}for(;(p=y())!==ll;){for(var b=[];p!==Ph&&p!==ll;)b.push(p),p=y();h&&(b=h(b,m++))==null||A.push(b)}return A}function s(u,h){return u.map(function(A){return h.map(function(d){return f(A[d])}).join(t)})}function o(u,h){return h==null&&(h=Oh(u)),[h.map(f).join(t)].concat(s(u,h)).join(`
|
|
5
|
+
`)}function a(u,h){return h==null&&(h=Oh(u)),s(u,h).join(`
|
|
6
|
+
`)}function l(u){return u.map(c).join(`
|
|
7
|
+
`)}function c(u){return u.map(f).join(t)}function f(u){return u==null?"":u instanceof Date?f2(u):e.test(u+="")?'"'+u.replace(/"/g,'""')+'"':u}return{parse:i,parseRows:r,format:o,formatBody:a,formatRows:l,formatRow:c,formatValue:f}}var u2=Uh(" "),A2=u2.parseRows;function h2(t){return t}function d2(t){if(t==null)return h2;var e,n,i=t.scale[0],r=t.scale[1],s=t.translate[0],o=t.translate[1];return function(a,l){l||(e=n=0);var c=2,f=a.length,u=new Array(f);for(u[0]=(e+=a[0])*i+s,u[1]=(n+=a[1])*r+o;c<f;)u[c]=a[c],++c;return u}}function g2(t,e){for(var n,i=t.length,r=i-e;r<--i;)n=t[r],t[r++]=t[i],t[i]=n}function p2(t,e){return typeof e=="string"&&(e=t.objects[e]),e.type==="GeometryCollection"?{type:"FeatureCollection",features:e.geometries.map(function(n){return _h(t,n)})}:_h(t,e)}function _h(t,e){var n=e.id,i=e.bbox,r=e.properties==null?{}:e.properties,s=Gh(t,e);return n==null&&i==null?{type:"Feature",properties:r,geometry:s}:i==null?{type:"Feature",id:n,properties:r,geometry:s}:{type:"Feature",id:n,bbox:i,properties:r,geometry:s}}function Gh(t,e){var n=d2(t.transform),i=t.arcs;function r(f,u){u.length&&u.pop();for(var h=i[f<0?~f:f],A=0,d=h.length;A<d;++A)u.push(n(h[A],A));f<0&&g2(u,d)}function s(f){return n(f)}function o(f){for(var u=[],h=0,A=f.length;h<A;++h)r(f[h],u);return u.length<2&&u.push(u[0]),u}function a(f){for(var u=o(f);u.length<4;)u.push(u[0]);return u}function l(f){return f.map(a)}function c(f){var u=f.type,h;switch(u){case"GeometryCollection":return{type:u,geometries:f.geometries.map(c)};case"Point":h=s(f.coordinates);break;case"MultiPoint":h=f.coordinates.map(s);break;case"LineString":h=o(f.arcs);break;case"MultiLineString":h=f.arcs.map(o);break;case"Polygon":h=l(f.arcs);break;case"MultiPolygon":h=f.arcs.map(l);break;default:return null}return{type:u,coordinates:h}}return c(e)}function m2(t,e){var n={},i={},r={},s=[],o=-1;e.forEach(function(c,f){var u=t.arcs[c<0?~c:c],h;u.length<3&&!u[1][0]&&!u[1][1]&&(h=e[++o],e[o]=c,e[f]=h)}),e.forEach(function(c){var f=a(c),u=f[0],h=f[1],A,d;if(A=r[u])if(delete r[A.end],A.push(c),A.end=h,d=i[h]){delete i[d.start];var g=d===A?A:A.concat(d);i[g.start=A.start]=r[g.end=d.end]=g}else i[A.start]=r[A.end]=A;else if(A=i[h])if(delete i[A.start],A.unshift(c),A.start=u,d=r[u]){delete r[d.end];var m=d===A?A:d.concat(A);i[m.start=d.start]=r[m.end=A.end]=m}else i[A.start]=r[A.end]=A;else A=[c],i[A.start=u]=r[A.end=h]=A});function a(c){var f=t.arcs[c<0?~c:c],u=f[0],h;return t.transform?(h=[0,0],f.forEach(function(A){h[0]+=A[0],h[1]+=A[1]})):h=f[f.length-1],c<0?[h,u]:[u,h]}function l(c,f){for(var u in c){var h=c[u];delete f[h.start],delete h.start,delete h.end,h.forEach(function(A){n[A<0?~A:A]=1}),s.push(h)}}return l(r,i),l(i,r),e.forEach(function(c){n[c<0?~c:c]||s.push([c])}),s}function w2(t){return Gh(t,y2.apply(this,arguments))}function y2(t,e,n){var i,r,s;if(arguments.length>1)i=C2(t,e,n);else for(r=0,i=new Array(s=t.arcs.length);r<s;++r)i[r]=r;return{type:"MultiLineString",arcs:m2(t,i)}}function C2(t,e,n){var i=[],r=[],s;function o(u){var h=u<0?~u:u;(r[h]||(r[h]=[])).push({i:u,g:s})}function a(u){u.forEach(o)}function l(u){u.forEach(a)}function c(u){u.forEach(l)}function f(u){switch(s=u,u.type){case"GeometryCollection":u.geometries.forEach(f);break;case"LineString":a(u.arcs);break;case"MultiLineString":case"Polygon":l(u.arcs);break;case"MultiPolygon":c(u.arcs);break}}return f(e),r.forEach(n==null?function(u){i.push(u[0].i)}:function(u){n(u[0].g,u[u.length-1].g)&&i.push(u[0].i)}),i}function Xn(t,e){return t==null||e==null?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function E2(t,e){return t==null||e==null?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function Zn(t){let e,n,i;t.length!==2?(e=Xn,n=(a,l)=>Xn(t(a),l),i=(a,l)=>t(a)-l):(e=t===Xn||t===E2?t:I2,n=t,i=t);function r(a,l,c=0,f=a.length){if(c<f){if(e(l,l)!==0)return f;do{const u=c+f>>>1;n(a[u],l)<0?c=u+1:f=u}while(c<f)}return c}function s(a,l,c=0,f=a.length){if(c<f){if(e(l,l)!==0)return f;do{const u=c+f>>>1;n(a[u],l)<=0?c=u+1:f=u}while(c<f)}return c}function o(a,l,c=0,f=a.length){const u=r(a,l,c,f-1);return u>c&&i(a[u-1],l)>-i(a[u],l)?u-1:u}return{left:r,center:o,right:s}}function I2(){return 0}function zh(t){return t===null?NaN:+t}function*b2(t,e){if(e===void 0)for(let n of t)n!=null&&(n=+n)>=n&&(yield n);else{let n=-1;for(let i of t)(i=e(i,++n,t))!=null&&(i=+i)>=i&&(yield i)}}const Hh=Zn(Xn),yn=Hh.right;Hh.left,Zn(zh).center;function x2(t,e){let n=0;if(e===void 0)for(let i of t)i!=null&&(i=+i)>=i&&++n;else{let i=-1;for(let r of t)(r=e(r,++i,t))!=null&&(r=+r)>=r&&++n}return n}function B2(t,e){let n=0,i,r=0,s=0;if(e===void 0)for(let o of t)o!=null&&(o=+o)>=o&&(i=o-r,r+=i/++n,s+=i*(o-r));else{let o=-1;for(let a of t)(a=e(a,++o,t))!=null&&(a=+a)>=a&&(i=a-r,r+=i/++n,s+=i*(a-r))}if(n>1)return s/(n-1)}function v2(t,e){let n,i;for(const r of t)r!=null&&(n===void 0?r>=r&&(n=i=r):(n>r&&(n=r),i<r&&(i=r)));return[n,i]}class Wt extends Map{constructor(e,n=D2){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:n}}),e!=null)for(const[i,r]of e)this.set(i,r)}get(e){return super.get(Yh(this,e))}has(e){return super.has(Yh(this,e))}set(e,n){return super.set(S2(this,e),n)}delete(e){return super.delete(Q2(this,e))}}function Yh({_intern:t,_key:e},n){const i=e(n);return t.has(i)?t.get(i):n}function S2({_intern:t,_key:e},n){const i=e(n);return t.has(i)?t.get(i):(t.set(i,n),n)}function Q2({_intern:t,_key:e},n){const i=e(n);return t.has(i)&&(n=t.get(i),t.delete(i)),n}function D2(t){return t!==null&&typeof t=="object"?t.valueOf():t}function Al(t){return t}function Oo(t,...e){return Vh(t,Al,Al,e)}function k2(t,...e){return Vh(t,Array.from,Al,e)}function Vh(t,e,n,i){return(function r(s,o){if(o>=i.length)return n(s);const a=new Wt,l=i[o++];let c=-1;for(const f of s){const u=l(f,++c,s),h=a.get(u);h?h.push(f):a.set(u,[f])}for(const[f,u]of a)a.set(f,r(u,o));return e(a)})(t,0)}function F2(t=Xn){if(t===Xn)return Jh;if(typeof t!="function")throw new TypeError("compare is not a function");return(e,n)=>{const i=t(e,n);return i||i===0?i:(t(n,n)===0)-(t(e,e)===0)}}function Jh(t,e){return(t==null||!(t>=t))-(e==null||!(e>=e))||(t<e?-1:t>e?1:0)}const R2=Math.sqrt(50),N2=Math.sqrt(10),M2=Math.sqrt(2);function Uo(t,e,n){const i=(e-t)/Math.max(0,n),r=Math.floor(Math.log10(i)),s=i/Math.pow(10,r),o=s>=R2?10:s>=N2?5:s>=M2?2:1;let a,l,c;return r<0?(c=Math.pow(10,-r)/o,a=Math.round(t*c),l=Math.round(e*c),a/c<t&&++a,l/c>e&&--l,c=-c):(c=Math.pow(10,r)*o,a=Math.round(t/c),l=Math.round(e/c),a*c<t&&++a,l*c>e&&--l),l<a&&.5<=n&&n<2?Uo(t,e,n*2):[a,l,c]}function _o(t,e,n){if(e=+e,t=+t,n=+n,!(n>0))return[];if(t===e)return[t];const i=e<t,[r,s,o]=i?Uo(e,t,n):Uo(t,e,n);if(!(s>=r))return[];const a=s-r+1,l=new Array(a);if(i)if(o<0)for(let c=0;c<a;++c)l[c]=(s-c)/-o;else for(let c=0;c<a;++c)l[c]=(s-c)*o;else if(o<0)for(let c=0;c<a;++c)l[c]=(r+c)/-o;else for(let c=0;c<a;++c)l[c]=(r+c)*o;return l}function hl(t,e,n){return e=+e,t=+t,n=+n,Uo(t,e,n)[2]}function $n(t,e,n){e=+e,t=+t,n=+n;const i=e<t,r=i?hl(e,t,n):hl(t,e,n);return(i?-1:1)*(r<0?1/-r:r)}function dl(t,e){let n;if(e===void 0)for(const i of t)i!=null&&(n<i||n===void 0&&i>=i)&&(n=i);else{let i=-1;for(let r of t)(r=e(r,++i,t))!=null&&(n<r||n===void 0&&r>=r)&&(n=r)}return n}function gl(t,e){let n;if(e===void 0)for(const i of t)i!=null&&(n>i||n===void 0&&i>=i)&&(n=i);else{let i=-1;for(let r of t)(r=e(r,++i,t))!=null&&(n>r||n===void 0&&r>=r)&&(n=r)}return n}function qh(t,e,n=0,i=1/0,r){if(e=Math.floor(e),n=Math.floor(Math.max(0,n)),i=Math.floor(Math.min(t.length-1,i)),!(n<=e&&e<=i))return t;for(r=r===void 0?Jh:F2(r);i>n;){if(i-n>600){const l=i-n+1,c=e-n+1,f=Math.log(l),u=.5*Math.exp(2*f/3),h=.5*Math.sqrt(f*u*(l-u)/l)*(c-l/2<0?-1:1),A=Math.max(n,Math.floor(e-c*u/l+h)),d=Math.min(i,Math.floor(e+(l-c)*u/l+h));qh(t,e,A,d,r)}const s=t[e];let o=n,a=i;for(Zr(t,n,e),r(t[i],s)>0&&Zr(t,n,i);o<a;){for(Zr(t,o,a),++o,--a;r(t[o],s)<0;)++o;for(;r(t[a],s)>0;)--a}r(t[n],s)===0?Zr(t,n,a):(++a,Zr(t,a,i)),a<=e&&(n=a+1),e<=a&&(i=a-1)}return t}function Zr(t,e,n){const i=t[e];t[e]=t[n],t[n]=i}function T2(t,e,n){if(t=Float64Array.from(b2(t,n)),!(!(i=t.length)||isNaN(e=+e))){if(e<=0||i<2)return gl(t);if(e>=1)return dl(t);var i,r=(i-1)*e,s=Math.floor(r),o=dl(qh(t,s).subarray(0,s+1)),a=gl(t.subarray(s+1));return o+(a-o)*(r-s)}}function Kh(t,e,n=zh){if(!(!(i=t.length)||isNaN(e=+e))){if(e<=0||i<2)return+n(t[0],0,t);if(e>=1)return+n(t[i-1],i-1,t);var i,r=(i-1)*e,s=Math.floor(r),o=+n(t[s],s,t),a=+n(t[s+1],s+1,t);return o+(a-o)*(r-s)}}function P2(t,e){let n=0,i=0;if(e===void 0)for(let r of t)r!=null&&(r=+r)>=r&&(++n,i+=r);else{let r=-1;for(let s of t)(s=e(s,++r,t))!=null&&(s=+s)>=s&&(++n,i+=s)}if(n)return i/n}function L2(t,e){return T2(t,.5,e)}function $r(t,e,n){t=+t,e=+e,n=(r=arguments.length)<2?(e=t,t=0,1):r<3?1:+n;for(var i=-1,r=Math.max(0,Math.ceil((e-t)/n))|0,s=new Array(r);++i<r;)s[i]=t+i*n;return s}function es(t,e){let n=0;if(e===void 0)for(let i of t)(i=+i)&&(n+=i);else{let i=-1;for(let r of t)(r=+e(r,++i,t))&&(n+=r)}return n}function O2(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)}function Go(t,e){if(!isFinite(t)||t===0)return null;var n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"),i=t.slice(0,n);return[i.length>1?i[0]+i.slice(2):i,+t.slice(n+1)]}function Li(t){return t=Go(Math.abs(t)),t?t[1]:NaN}function U2(t,e){return function(n,i){for(var r=n.length,s=[],o=0,a=t[0],l=0;r>0&&a>0&&(l+a+1>i&&(a=Math.max(1,i-l)),s.push(n.substring(r-=a,r+a)),!((l+=a+1)>i));)a=t[o=(o+1)%t.length];return s.reverse().join(e)}}function _2(t){return function(e){return e.replace(/[0-9]/g,function(n){return t[+n]})}}var G2=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Oi(t){if(!(e=G2.exec(t)))throw new Error("invalid format: "+t);var e;return new pl({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}Oi.prototype=pl.prototype;function pl(t){this.fill=t.fill===void 0?" ":t.fill+"",this.align=t.align===void 0?">":t.align+"",this.sign=t.sign===void 0?"-":t.sign+"",this.symbol=t.symbol===void 0?"":t.symbol+"",this.zero=!!t.zero,this.width=t.width===void 0?void 0:+t.width,this.comma=!!t.comma,this.precision=t.precision===void 0?void 0:+t.precision,this.trim=!!t.trim,this.type=t.type===void 0?"":t.type+""}pl.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function z2(t){e:for(var e=t.length,n=1,i=-1,r;n<e;++n)switch(t[n]){case".":i=r=n;break;case"0":i===0&&(i=n),r=n;break;default:if(!+t[n])break e;i>0&&(i=0);break}return i>0?t.slice(0,i)+t.slice(r+1):t}var zo;function H2(t,e){var n=Go(t,e);if(!n)return zo=void 0,t.toPrecision(e);var i=n[0],r=n[1],s=r-(zo=Math.max(-8,Math.min(8,Math.floor(r/3)))*3)+1,o=i.length;return s===o?i:s>o?i+new Array(s-o+1).join("0"):s>0?i.slice(0,s)+"."+i.slice(s):"0."+new Array(1-s).join("0")+Go(t,Math.max(0,e+s-1))[0]}function jh(t,e){var n=Go(t,e);if(!n)return t+"";var i=n[0],r=n[1];return r<0?"0."+new Array(-r).join("0")+i:i.length>r+1?i.slice(0,r+1)+"."+i.slice(r+1):i+new Array(r-i.length+2).join("0")}const Wh={"%":(t,e)=>(t*100).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:O2,e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>jh(t*100,e),r:jh,s:H2,X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function Xh(t){return t}var Zh=Array.prototype.map,$h=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function Y2(t){var e=t.grouping===void 0||t.thousands===void 0?Xh:U2(Zh.call(t.grouping,Number),t.thousands+""),n=t.currency===void 0?"":t.currency[0]+"",i=t.currency===void 0?"":t.currency[1]+"",r=t.decimal===void 0?".":t.decimal+"",s=t.numerals===void 0?Xh:_2(Zh.call(t.numerals,String)),o=t.percent===void 0?"%":t.percent+"",a=t.minus===void 0?"−":t.minus+"",l=t.nan===void 0?"NaN":t.nan+"";function c(u,h){u=Oi(u);var A=u.fill,d=u.align,g=u.sign,m=u.symbol,p=u.zero,w=u.width,C=u.comma,y=u.precision,b=u.trim,x=u.type;x==="n"?(C=!0,x="g"):Wh[x]||(y===void 0&&(y=12),b=!0,x="g"),(p||A==="0"&&d==="=")&&(p=!0,A="0",d="=");var I=(h&&h.prefix!==void 0?h.prefix:"")+(m==="$"?n:m==="#"&&/[boxX]/.test(x)?"0"+x.toLowerCase():""),S=(m==="$"?i:/[%p]/.test(x)?o:"")+(h&&h.suffix!==void 0?h.suffix:""),Q=Wh[x],v=/[defgprs%]/.test(x);y=y===void 0?6:/[gprs]/.test(x)?Math.max(1,Math.min(21,y)):Math.max(0,Math.min(20,y));function F(R){var M=I,O=S,z,_,Y;if(x==="c")O=Q(R)+O,R="";else{R=+R;var te=R<0||1/R<0;if(R=isNaN(R)?l:Q(Math.abs(R),y),b&&(R=z2(R)),te&&+R==0&&g!=="+"&&(te=!1),M=(te?g==="("?g:a:g==="-"||g==="("?"":g)+M,O=(x==="s"&&!isNaN(R)&&zo!==void 0?$h[8+zo/3]:"")+O+(te&&g==="("?")":""),v){for(z=-1,_=R.length;++z<_;)if(Y=R.charCodeAt(z),48>Y||Y>57){O=(Y===46?r+R.slice(z+1):R.slice(z))+O,R=R.slice(0,z);break}}}C&&!p&&(R=e(R,1/0));var oe=M.length+R.length+O.length,ne=oe<w?new Array(w-oe+1).join(A):"";switch(C&&p&&(R=e(ne+R,ne.length?w-O.length:1/0),ne=""),d){case"<":R=M+R+O+ne;break;case"=":R=M+ne+R+O;break;case"^":R=ne.slice(0,oe=ne.length>>1)+M+R+O+ne.slice(oe);break;default:R=ne+M+R+O;break}return s(R)}return F.toString=function(){return u+""},F}function f(u,h){var A=Math.max(-8,Math.min(8,Math.floor(Li(h)/3)))*3,d=Math.pow(10,-A),g=c((u=Oi(u),u.type="f",u),{suffix:$h[8+A/3]});return function(m){return g(d*m)}}return{format:c,formatPrefix:f}}var Ho,ze,ed;V2({thousands:",",grouping:[3],currency:["$",""]});function V2(t){return Ho=Y2(t),ze=Ho.format,ed=Ho.formatPrefix,Ho}function J2(t){return Math.max(0,-Li(Math.abs(t)))}function q2(t,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(Li(e)/3)))*3-Li(Math.abs(t)))}function K2(t,e){return t=Math.abs(t),e=Math.abs(e)-t,Math.max(0,Li(e)-Li(t))+1}const ml=new Date,wl=new Date;function Se(t,e,n,i){function r(s){return t(s=arguments.length===0?new Date:new Date(+s)),s}return r.floor=s=>(t(s=new Date(+s)),s),r.ceil=s=>(t(s=new Date(s-1)),e(s,1),t(s),s),r.round=s=>{const o=r(s),a=r.ceil(s);return s-o<a-s?o:a},r.offset=(s,o)=>(e(s=new Date(+s),o==null?1:Math.floor(o)),s),r.range=(s,o,a)=>{const l=[];if(s=r.ceil(s),a=a==null?1:Math.floor(a),!(s<o)||!(a>0))return l;let c;do l.push(c=new Date(+s)),e(s,a),t(s);while(c<s&&s<o);return l},r.filter=s=>Se(o=>{if(o>=o)for(;t(o),!s(o);)o.setTime(o-1)},(o,a)=>{if(o>=o)if(a<0)for(;++a<=0;)for(;e(o,-1),!s(o););else for(;--a>=0;)for(;e(o,1),!s(o););}),n&&(r.count=(s,o)=>(ml.setTime(+s),wl.setTime(+o),t(ml),t(wl),Math.floor(n(ml,wl))),r.every=s=>(s=Math.floor(s),!isFinite(s)||!(s>0)?null:s>1?r.filter(i?o=>i(o)%s===0:o=>r.count(0,o)%s===0):r)),r}const Ui=Se(()=>{},(t,e)=>{t.setTime(+t+e)},(t,e)=>e-t);Ui.every=t=>(t=Math.floor(t),!isFinite(t)||!(t>0)?null:t>1?Se(e=>{e.setTime(Math.floor(e/t)*t)},(e,n)=>{e.setTime(+e+n*t)},(e,n)=>(n-e)/t):Ui),Ui.range;const Xt=1e3,dt=Xt*60,Zt=dt*60,$t=Zt*24,yl=$t*7,td=$t*30,Cl=$t*365,en=Se(t=>{t.setTime(t-t.getMilliseconds())},(t,e)=>{t.setTime(+t+e*Xt)},(t,e)=>(e-t)/Xt,t=>t.getUTCSeconds());en.range;const Yo=Se(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*Xt)},(t,e)=>{t.setTime(+t+e*dt)},(t,e)=>(e-t)/dt,t=>t.getMinutes());Yo.range;const Vo=Se(t=>{t.setUTCSeconds(0,0)},(t,e)=>{t.setTime(+t+e*dt)},(t,e)=>(e-t)/dt,t=>t.getUTCMinutes());Vo.range;const Jo=Se(t=>{t.setTime(t-t.getMilliseconds()-t.getSeconds()*Xt-t.getMinutes()*dt)},(t,e)=>{t.setTime(+t+e*Zt)},(t,e)=>(e-t)/Zt,t=>t.getHours());Jo.range;const qo=Se(t=>{t.setUTCMinutes(0,0,0)},(t,e)=>{t.setTime(+t+e*Zt)},(t,e)=>(e-t)/Zt,t=>t.getUTCHours());qo.range;const Cn=Se(t=>t.setHours(0,0,0,0),(t,e)=>t.setDate(t.getDate()+e),(t,e)=>(e-t-(e.getTimezoneOffset()-t.getTimezoneOffset())*dt)/$t,t=>t.getDate()-1);Cn.range;const ei=Se(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/$t,t=>t.getUTCDate()-1);ei.range;const nd=Se(t=>{t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCDate(t.getUTCDate()+e)},(t,e)=>(e-t)/$t,t=>Math.floor(t/$t));nd.range;function ti(t){return Se(e=>{e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)},(e,n)=>{e.setDate(e.getDate()+n*7)},(e,n)=>(n-e-(n.getTimezoneOffset()-e.getTimezoneOffset())*dt)/yl)}const ts=ti(0),Ko=ti(1),j2=ti(2),W2=ti(3),_i=ti(4),X2=ti(5),Z2=ti(6);ts.range,Ko.range,j2.range,W2.range,_i.range,X2.range,Z2.range;function ni(t){return Se(e=>{e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)},(e,n)=>{e.setUTCDate(e.getUTCDate()+n*7)},(e,n)=>(n-e)/yl)}const ns=ni(0),jo=ni(1),$2=ni(2),eb=ni(3),Gi=ni(4),tb=ni(5),nb=ni(6);ns.range,jo.range,$2.range,eb.range,Gi.range,tb.range,nb.range;const is=Se(t=>{t.setDate(1),t.setHours(0,0,0,0)},(t,e)=>{t.setMonth(t.getMonth()+e)},(t,e)=>e.getMonth()-t.getMonth()+(e.getFullYear()-t.getFullYear())*12,t=>t.getMonth());is.range;const rs=Se(t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCMonth(t.getUTCMonth()+e)},(t,e)=>e.getUTCMonth()-t.getUTCMonth()+(e.getUTCFullYear()-t.getUTCFullYear())*12,t=>t.getUTCMonth());rs.range;const Rt=Se(t=>{t.setMonth(0,1),t.setHours(0,0,0,0)},(t,e)=>{t.setFullYear(t.getFullYear()+e)},(t,e)=>e.getFullYear()-t.getFullYear(),t=>t.getFullYear());Rt.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:Se(e=>{e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)},(e,n)=>{e.setFullYear(e.getFullYear()+n*t)}),Rt.range;const Nt=Se(t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,e)=>{t.setUTCFullYear(t.getUTCFullYear()+e)},(t,e)=>e.getUTCFullYear()-t.getUTCFullYear(),t=>t.getUTCFullYear());Nt.every=t=>!isFinite(t=Math.floor(t))||!(t>0)?null:Se(e=>{e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)},(e,n)=>{e.setUTCFullYear(e.getUTCFullYear()+n*t)}),Nt.range;function id(t,e,n,i,r,s){const o=[[en,1,Xt],[en,5,5*Xt],[en,15,15*Xt],[en,30,30*Xt],[s,1,dt],[s,5,5*dt],[s,15,15*dt],[s,30,30*dt],[r,1,Zt],[r,3,3*Zt],[r,6,6*Zt],[r,12,12*Zt],[i,1,$t],[i,2,2*$t],[n,1,yl],[e,1,td],[e,3,3*td],[t,1,Cl]];function a(c,f,u){const h=f<c;h&&([c,f]=[f,c]);const A=u&&typeof u.range=="function"?u:l(c,f,u),d=A?A.range(c,+f+1):[];return h?d.reverse():d}function l(c,f,u){const h=Math.abs(f-c)/u,A=Zn(([,,m])=>m).right(o,h);if(A===o.length)return t.every($n(c/Cl,f/Cl,u));if(A===0)return Ui.every(Math.max($n(c,f,u),1));const[d,g]=o[h/o[A-1][2]<o[A][2]/h?A-1:A];return d.every(g)}return[a,l]}const[ib,rb]=id(Nt,rs,ns,nd,qo,Vo),[sb,ob]=id(Rt,is,ts,Cn,Jo,Yo),ss="year",os="quarter",as="month",cs="week",ls="date",Wo="day",El="dayofyear",fs="hours",us="minutes",As="seconds",Xo="milliseconds";[ss,os,as,cs,ls,Wo,El,fs,us,As,Xo].reduce((t,e,n)=>(t[e]=1+n,t),{});const ab={[ss]:Rt,[os]:is.every(3),[as]:is,[cs]:ts,[ls]:Cn,[Wo]:Cn,[El]:Cn,[fs]:Jo,[us]:Yo,[As]:en,[Xo]:Ui},cb={[ss]:Nt,[os]:rs.every(3),[as]:rs,[cs]:ns,[ls]:ei,[Wo]:ei,[El]:ei,[fs]:qo,[us]:Vo,[As]:en,[Xo]:Ui};function lb(t){return ab[t]}function fb(t){return cb[t]}function Il(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function bl(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function hs(t,e,n){return{y:t,m:e,d:n,H:0,M:0,S:0,L:0}}function rd(t){var e=t.dateTime,n=t.date,i=t.time,r=t.periods,s=t.days,o=t.shortDays,a=t.months,l=t.shortMonths,c=ds(r),f=gs(r),u=ds(s),h=gs(s),A=ds(o),d=gs(o),g=ds(a),m=gs(a),p=ds(l),w=gs(l),C={a:Y,A:te,b:oe,B:ne,c:null,d:fd,e:fd,f:Nb,g:Hb,G:Vb,H:kb,I:Fb,j:Rb,L:ud,m:Mb,M:Tb,p:_e,q:Kt,Q:md,s:wd,S:Pb,u:Lb,U:Ob,V:Ub,w:_b,W:Gb,x:null,X:null,y:zb,Y:Yb,Z:Jb,"%":pd},y={a:xo,A:Ur,b:hn,B:Ni,c:null,d:hd,e:hd,f:Wb,g:ox,G:cx,H:qb,I:Kb,j:jb,L:dd,m:Xb,M:Zb,p:Bo,q:_r,Q:md,s:wd,S:$b,u:ex,U:tx,V:nx,w:ix,W:rx,x:null,X:null,y:sx,Y:ax,Z:lx,"%":pd},b={a:v,A:F,b:R,B:M,c:O,d:cd,e:cd,f:vb,g:ad,G:od,H:ld,I:ld,j:Ib,L:Bb,m:Eb,M:bb,p:Q,q:Cb,Q:Qb,s:Db,S:xb,u:gb,U:pb,V:mb,w:db,W:wb,x:z,X:_,y:ad,Y:od,Z:yb,"%":Sb};C.x=x(n,C),C.X=x(i,C),C.c=x(e,C),y.x=x(n,y),y.X=x(i,y),y.c=x(e,y);function x(U,K){return function(W){var N=[],Ze=-1,se=0,it=U.length,$e,dn,vo;for(W instanceof Date||(W=new Date(+W));++Ze<it;)U.charCodeAt(Ze)===37&&(N.push(U.slice(se,Ze)),(dn=sd[$e=U.charAt(++Ze)])!=null?$e=U.charAt(++Ze):dn=$e==="e"?" ":"0",(vo=K[$e])&&($e=vo(W,dn)),N.push($e),se=Ze+1);return N.push(U.slice(se,Ze)),N.join("")}}function I(U,K){return function(W){var N=hs(1900,void 0,1),Ze=S(N,U,W+="",0),se,it;if(Ze!=W.length)return null;if("Q"in N)return new Date(N.Q);if("s"in N)return new Date(N.s*1e3+("L"in N?N.L:0));if(K&&!("Z"in N)&&(N.Z=0),"p"in N&&(N.H=N.H%12+N.p*12),N.m===void 0&&(N.m="q"in N?N.q:0),"V"in N){if(N.V<1||N.V>53)return null;"w"in N||(N.w=1),"Z"in N?(se=bl(hs(N.y,0,1)),it=se.getUTCDay(),se=it>4||it===0?jo.ceil(se):jo(se),se=ei.offset(se,(N.V-1)*7),N.y=se.getUTCFullYear(),N.m=se.getUTCMonth(),N.d=se.getUTCDate()+(N.w+6)%7):(se=Il(hs(N.y,0,1)),it=se.getDay(),se=it>4||it===0?Ko.ceil(se):Ko(se),se=Cn.offset(se,(N.V-1)*7),N.y=se.getFullYear(),N.m=se.getMonth(),N.d=se.getDate()+(N.w+6)%7)}else("W"in N||"U"in N)&&("w"in N||(N.w="u"in N?N.u%7:"W"in N?1:0),it="Z"in N?bl(hs(N.y,0,1)).getUTCDay():Il(hs(N.y,0,1)).getDay(),N.m=0,N.d="W"in N?(N.w+6)%7+N.W*7-(it+5)%7:N.w+N.U*7-(it+6)%7);return"Z"in N?(N.H+=N.Z/100|0,N.M+=N.Z%100,bl(N)):Il(N)}}function S(U,K,W,N){for(var Ze=0,se=K.length,it=W.length,$e,dn;Ze<se;){if(N>=it)return-1;if($e=K.charCodeAt(Ze++),$e===37){if($e=K.charAt(Ze++),dn=b[$e in sd?K.charAt(Ze++):$e],!dn||(N=dn(U,W,N))<0)return-1}else if($e!=W.charCodeAt(N++))return-1}return N}function Q(U,K,W){var N=c.exec(K.slice(W));return N?(U.p=f.get(N[0].toLowerCase()),W+N[0].length):-1}function v(U,K,W){var N=A.exec(K.slice(W));return N?(U.w=d.get(N[0].toLowerCase()),W+N[0].length):-1}function F(U,K,W){var N=u.exec(K.slice(W));return N?(U.w=h.get(N[0].toLowerCase()),W+N[0].length):-1}function R(U,K,W){var N=p.exec(K.slice(W));return N?(U.m=w.get(N[0].toLowerCase()),W+N[0].length):-1}function M(U,K,W){var N=g.exec(K.slice(W));return N?(U.m=m.get(N[0].toLowerCase()),W+N[0].length):-1}function O(U,K,W){return S(U,e,K,W)}function z(U,K,W){return S(U,n,K,W)}function _(U,K,W){return S(U,i,K,W)}function Y(U){return o[U.getDay()]}function te(U){return s[U.getDay()]}function oe(U){return l[U.getMonth()]}function ne(U){return a[U.getMonth()]}function _e(U){return r[+(U.getHours()>=12)]}function Kt(U){return 1+~~(U.getMonth()/3)}function xo(U){return o[U.getUTCDay()]}function Ur(U){return s[U.getUTCDay()]}function hn(U){return l[U.getUTCMonth()]}function Ni(U){return a[U.getUTCMonth()]}function Bo(U){return r[+(U.getUTCHours()>=12)]}function _r(U){return 1+~~(U.getUTCMonth()/3)}return{format:function(U){var K=x(U+="",C);return K.toString=function(){return U},K},parse:function(U){var K=I(U+="",!1);return K.toString=function(){return U},K},utcFormat:function(U){var K=x(U+="",y);return K.toString=function(){return U},K},utcParse:function(U){var K=I(U+="",!0);return K.toString=function(){return U},K}}}var sd={"-":"",_:" ",0:"0"},Re=/^\s*\d+/,ub=/^%/,Ab=/[\\^$*+?|[\]().{}]/g;function Z(t,e,n){var i=t<0?"-":"",r=(i?-t:t)+"",s=r.length;return i+(s<n?new Array(n-s+1).join(e)+r:r)}function hb(t){return t.replace(Ab,"\\$&")}function ds(t){return new RegExp("^(?:"+t.map(hb).join("|")+")","i")}function gs(t){return new Map(t.map((e,n)=>[e.toLowerCase(),n]))}function db(t,e,n){var i=Re.exec(e.slice(n,n+1));return i?(t.w=+i[0],n+i[0].length):-1}function gb(t,e,n){var i=Re.exec(e.slice(n,n+1));return i?(t.u=+i[0],n+i[0].length):-1}function pb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.U=+i[0],n+i[0].length):-1}function mb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.V=+i[0],n+i[0].length):-1}function wb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.W=+i[0],n+i[0].length):-1}function od(t,e,n){var i=Re.exec(e.slice(n,n+4));return i?(t.y=+i[0],n+i[0].length):-1}function ad(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.y=+i[0]+(+i[0]>68?1900:2e3),n+i[0].length):-1}function yb(t,e,n){var i=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(e.slice(n,n+6));return i?(t.Z=i[1]?0:-(i[2]+(i[3]||"00")),n+i[0].length):-1}function Cb(t,e,n){var i=Re.exec(e.slice(n,n+1));return i?(t.q=i[0]*3-3,n+i[0].length):-1}function Eb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.m=i[0]-1,n+i[0].length):-1}function cd(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.d=+i[0],n+i[0].length):-1}function Ib(t,e,n){var i=Re.exec(e.slice(n,n+3));return i?(t.m=0,t.d=+i[0],n+i[0].length):-1}function ld(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.H=+i[0],n+i[0].length):-1}function bb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.M=+i[0],n+i[0].length):-1}function xb(t,e,n){var i=Re.exec(e.slice(n,n+2));return i?(t.S=+i[0],n+i[0].length):-1}function Bb(t,e,n){var i=Re.exec(e.slice(n,n+3));return i?(t.L=+i[0],n+i[0].length):-1}function vb(t,e,n){var i=Re.exec(e.slice(n,n+6));return i?(t.L=Math.floor(i[0]/1e3),n+i[0].length):-1}function Sb(t,e,n){var i=ub.exec(e.slice(n,n+1));return i?n+i[0].length:-1}function Qb(t,e,n){var i=Re.exec(e.slice(n));return i?(t.Q=+i[0],n+i[0].length):-1}function Db(t,e,n){var i=Re.exec(e.slice(n));return i?(t.s=+i[0],n+i[0].length):-1}function fd(t,e){return Z(t.getDate(),e,2)}function kb(t,e){return Z(t.getHours(),e,2)}function Fb(t,e){return Z(t.getHours()%12||12,e,2)}function Rb(t,e){return Z(1+Cn.count(Rt(t),t),e,3)}function ud(t,e){return Z(t.getMilliseconds(),e,3)}function Nb(t,e){return ud(t,e)+"000"}function Mb(t,e){return Z(t.getMonth()+1,e,2)}function Tb(t,e){return Z(t.getMinutes(),e,2)}function Pb(t,e){return Z(t.getSeconds(),e,2)}function Lb(t){var e=t.getDay();return e===0?7:e}function Ob(t,e){return Z(ts.count(Rt(t)-1,t),e,2)}function Ad(t){var e=t.getDay();return e>=4||e===0?_i(t):_i.ceil(t)}function Ub(t,e){return t=Ad(t),Z(_i.count(Rt(t),t)+(Rt(t).getDay()===4),e,2)}function _b(t){return t.getDay()}function Gb(t,e){return Z(Ko.count(Rt(t)-1,t),e,2)}function zb(t,e){return Z(t.getFullYear()%100,e,2)}function Hb(t,e){return t=Ad(t),Z(t.getFullYear()%100,e,2)}function Yb(t,e){return Z(t.getFullYear()%1e4,e,4)}function Vb(t,e){var n=t.getDay();return t=n>=4||n===0?_i(t):_i.ceil(t),Z(t.getFullYear()%1e4,e,4)}function Jb(t){var e=t.getTimezoneOffset();return(e>0?"-":(e*=-1,"+"))+Z(e/60|0,"0",2)+Z(e%60,"0",2)}function hd(t,e){return Z(t.getUTCDate(),e,2)}function qb(t,e){return Z(t.getUTCHours(),e,2)}function Kb(t,e){return Z(t.getUTCHours()%12||12,e,2)}function jb(t,e){return Z(1+ei.count(Nt(t),t),e,3)}function dd(t,e){return Z(t.getUTCMilliseconds(),e,3)}function Wb(t,e){return dd(t,e)+"000"}function Xb(t,e){return Z(t.getUTCMonth()+1,e,2)}function Zb(t,e){return Z(t.getUTCMinutes(),e,2)}function $b(t,e){return Z(t.getUTCSeconds(),e,2)}function ex(t){var e=t.getUTCDay();return e===0?7:e}function tx(t,e){return Z(ns.count(Nt(t)-1,t),e,2)}function gd(t){var e=t.getUTCDay();return e>=4||e===0?Gi(t):Gi.ceil(t)}function nx(t,e){return t=gd(t),Z(Gi.count(Nt(t),t)+(Nt(t).getUTCDay()===4),e,2)}function ix(t){return t.getUTCDay()}function rx(t,e){return Z(jo.count(Nt(t)-1,t),e,2)}function sx(t,e){return Z(t.getUTCFullYear()%100,e,2)}function ox(t,e){return t=gd(t),Z(t.getUTCFullYear()%100,e,2)}function ax(t,e){return Z(t.getUTCFullYear()%1e4,e,4)}function cx(t,e){var n=t.getUTCDay();return t=n>=4||n===0?Gi(t):Gi.ceil(t),Z(t.getUTCFullYear()%1e4,e,4)}function lx(){return"+0000"}function pd(){return"%"}function md(t){return+t}function wd(t){return Math.floor(+t/1e3)}var zi,xl,yd,Bl,Cd;fx({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});function fx(t){return zi=rd(t),xl=zi.format,yd=zi.parse,Bl=zi.utcFormat,Cd=zi.utcParse,zi}function Zo(t){const e={};return n=>e[n]||(e[n]=t(n))}function Ed(t,e,n){n=n||{},Ge(n)||be(`Invalid time multi-format specifier: ${n}`);const i=e(As),r=e(us),s=e(fs),o=e(ls),a=e(cs),l=e(as),c=e(os),f=e(ss),u=t(n[Xo]||".%L"),h=t(n[As]||":%S"),A=t(n[us]||"%I:%M"),d=t(n[fs]||"%I %p"),g=t(n[ls]||n[Wo]||"%a %d"),m=t(n[cs]||"%b %d"),p=t(n[as]||"%B"),w=t(n[os]||"%B"),C=t(n[ss]||"%Y");return y=>(i(y)<y?u:r(y)<y?h:s(y)<y?A:o(y)<y?d:l(y)<y?a(y)<y?g:m:f(y)<y?c(y)<y?p:w:C)(y)}function Id(t){const e=Zo(t.format),n=Zo(t.utcFormat);return{timeFormat:i=>le(i)?e(i):Ed(e,lb,i),utcFormat:i=>le(i)?n(i):Ed(n,fb,i),timeParse:Zo(t.parse),utcParse:Zo(t.utcParse)}}let vl;ux();function ux(){return vl=Id({format:xl,parse:yd,utcFormat:Bl,utcParse:Cd})}function Ax(t){return Id(rd(t))}function hx(t){return arguments.length?vl=Ax(t):vl}const dx=t=>t!=null&&t===t,gx=t=>t==="true"||t==="false"||t===!0||t===!1,px=t=>!Number.isNaN(Date.parse(t)),bd=t=>!Number.isNaN(+t)&&!(t instanceof Date),mx=t=>bd(t)&&Number.isInteger(+t),xd={boolean:PI,integer:Gr,number:Gr,date:OI,string:UI,unknown:Do},$o=[gx,mx,bd,px],wx=["boolean","integer","number","date"];function yx(t,e){if(!t||!t.length)return"unknown";const n=t.length,i=$o.length,r=$o.map((s,o)=>o+1);for(let s=0,o=0,a,l;s<n;++s)for(l=e?t[s][e]:t[s],a=0;a<i;++a)if(r[a]&&dx(l)&&!$o[a](l)&&(r[a]=0,++o,o===$o.length))return"string";return wx[r.reduce((s,o)=>s===0?o:s,0)-1]}function Cx(t,e){return e.reduce((n,i)=>(n[i]=yx(t,i),n),{})}function Bd(t){const e=function(n,i){const r={delimiter:t};return Sl(n,i?RI(i,r):r)};return e.responseType="text",e}function Sl(t,e){return e.header&&(t=e.header.map(nl).join(e.delimiter)+`
|
|
8
|
+
`+t),Uh(e.delimiter).parse(t+"")}Sl.responseType="text";function Ex(t){return typeof Buffer=="function"&&ht(Buffer.isBuffer)?Buffer.isBuffer(t):!1}function Ql(t,e){const n=e&&e.property?Qo(e.property):Do;return Ge(t)&&!Ex(t)?Ix(n(t),e):n(JSON.parse(t))}Ql.responseType="json";function Ix(t,e){return!Ce(t)&&MI(t)&&(t=[...t]),e&&e.copy?JSON.parse(JSON.stringify(t)):t}const bx={interior:(t,e)=>t!==e,exterior:(t,e)=>t===e};function vd(t,e){let n,i,r,s;return t=Ql(t,e),e&&e.feature?(n=p2,r=e.feature):e&&e.mesh?(n=w2,r=e.mesh,s=bx[e.filter]):be("Missing TopoJSON feature or mesh parameter."),i=(i=t.objects[r])?n(t,i,s):be("Invalid TopoJSON object: "+r),i&&i.features||[i]}vd.responseType="json";const Dl={dsv:Sl,csv:Bd(","),tsv:Bd(" "),json:Ql,topojson:vd};function ea(t,e){return arguments.length>1?(Dl[t]=e,this):Mi(Dl,t)?Dl[t]:null}function kl(t,e,n,i){e=e||{};const r=ea(e.type||"json");return r||be("Unknown data format type: "+e.type),t=r(t,e),e.parse&&xx(t,e.parse,n,i),Mi(t,"columns")&&delete t.columns,t}function xx(t,e,n,i){if(!t.length)return;const r=hx();n=n||r.timeParse,i=i||r.utcParse;let s=t.columns||Object.keys(t[0]),o,a,l,c,f,u;e==="auto"&&(e=Cx(t,s)),s=Object.keys(e);const h=s.map(A=>{const d=e[A];let g,m;if(d&&(d.startsWith("date:")||d.startsWith("utc:")))return g=d.split(/:(.+)?/,2),m=g[1],(m[0]==="'"&&m[m.length-1]==="'"||m[0]==='"'&&m[m.length-1]==='"')&&(m=m.slice(1,-1)),(g[0]==="utc"?i:n)(m);if(!xd[d])throw Error("Illegal format pattern: "+A+":"+d);return xd[d]});for(l=0,f=t.length,u=s.length;l<f;++l)for(o=t[l],c=0;c<u;++c)a=s[c],o[a]=h[c](o[a])}const Bx=`
|
|
9
9
|
:root {
|
|
10
10
|
--genome-spy-basic-spacing: 10px;
|
|
11
11
|
--genome-spy-font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial,
|
|
@@ -249,94 +249,94 @@ flex-basis: content;
|
|
|
249
249
|
font-size: 14px;
|
|
250
250
|
padding: var(--genome-spy-basic-spacing);
|
|
251
251
|
}
|
|
252
|
-
`;function
|
|
252
|
+
`;function vx(t,e){var n=t.getBoundingClientRect();return[e.clientX-n.left-t.clientLeft,e.clientY-n.top-t.clientTop]}function Hi(t,e){return t.length==e.length&&t.every((n,i)=>t[i]===e[i])}function Ne(t){return Array.isArray(t)?t:typeof t<"u"?[t]:[]}function ta(t){return t[t.length-1]}class Sx{#e=!1;#t=!0;#n=void 0;#i=0;#s=void 0;#o=0;#r;#a;#c=[!0];constructor(e){this.#a=e,this.#r=document.createElement("div"),this.#r.className="tooltip",this.#a.appendChild(this.#r),this.clear()}set sticky(e){!e&&this.#e&&this.clear(),this.#e=e,this.#r.classList.toggle("sticky",this.#e)}get sticky(){return this.#e}set visible(e){e!=this.#t&&(this.#r.style.display=e?null:"none",this.#t=e)}get visible(){return this.#t}get enabled(){return ta(this.#c)??!0}pushEnabledState(e){this.#c.push(e),e||(this.visible=!1)}popEnabledState(){this.#c.pop()}handleMouseMove(e){if(this.#e)return;this.mouseCoords=vx(this.#a,e);const n=performance.now();!this.visible&&!this._isPenalty()&&n-this.#o>500&&(this.#i=n+70),this.#s&&Qx(this.mouseCoords,this.#s)>20&&(this.#i=n+400),this.#s=this.mouseCoords,this.visible&&this.updatePlacement(),this.#o=n}updatePlacement(){const[n,i]=this.mouseCoords;let r=n+20;r>this.#a.clientWidth-this.#r.offsetWidth&&(r=n-20-this.#r.offsetWidth),this.#r.style.left=r+"px",this.#r.style.top=Math.min(i+20,this.#a.clientHeight-this.#r.offsetHeight)+"px"}setContent(e){if(!this.#e){if(!e||!this.enabled||this._isPenalty()){this.visible&&(Wr("",this.#r),this.visible=!1),this.#n=void 0;return}Wr(e,this.#r),this.visible=!0,this.updatePlacement()}}clear(){this.#n=void 0,this.setContent(void 0)}updateWithDatum(e,n){if(e!==this.#n){this.#n=e,n||(n=r=>Promise.resolve(ce` ${JSON.stringify(r)} `));const i=e;n(e).then(r=>{this.#n===i&&this.setContent(r)}).catch(r=>{if(r!=="debounced")throw r})}}_isPenalty(){return this.#i&&this.#i>performance.now()}}function Qx(t,e){let n=0;for(let i=0;i<t.length;i++)n+=(t[i]-e[i])**2;return Math.sqrt(n)}function Dx(t){t.classList.add("genome-spy");const e=document.createElement("style");e.innerHTML=Bx,t.appendChild(e);const n=Sd("div",{class:"canvas-wrapper"});t.appendChild(n),n.classList.add("loading");const i=Sd("div",{class:"loading-indicators"}),r=new Sx(t);return{canvasWrapper:n,loadingIndicatorsElement:i,tooltip:r,styleElement:e}}function kx(t,e){const n=document.createElement("div");n.className="message-box";const i=document.createElement("div");i.textContent=e,n.appendChild(i),t.appendChild(n)}function Sd(t,e){const n=document.createElement(t);for(const[i,r]of Object.entries(e))["innerHTML","innerText","className"].includes(i)&&(n[i]=r),n.setAttribute(i,r);return n}const Fx={ATTRIBUTE:1},Rx=t=>(...e)=>({_$litDirective$:t,values:e});let Nx=class{constructor(e){}get _$AU(){return this._$AM._$AU}_$AT(e,n,i){this._$Ct=e,this._$AM=n,this._$Ci=i}_$AS(e,n){return this.update(e,n)}update(e,n){return this.render(...n)}};const Qd="important",Mx=" !"+Qd,Dd=Rx(class extends Nx{constructor(t){if(super(t),t.type!==Fx.ATTRIBUTE||t.name!=="style"||t.strings?.length>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(t){return Object.keys(t).reduce((e,n)=>{const i=t[n];return i==null?e:e+`${n=n.includes("-")?n:n.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${i};`},"")}update(t,[e]){const{style:n}=t.element;if(this.ft===void 0)return this.ft=new Set(Object.keys(e)),this.render(e);for(const i of this.ft)e[i]==null&&(this.ft.delete(i),i.includes("-")?n.removeProperty(i):n[i]=null);for(const i in e){const r=e[i];if(r!=null){this.ft.add(i);const s=typeof r=="string"&&r.endsWith(Mx);i.includes("-")||s?n.setProperty(i,s?r.slice(0,-11):r,s?Qd:""):n[i]=r}}return jn}}),kd="data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3e%3cstyle%3e.spinner_ajPY{transform-origin:center;animation:spinner_AtaB%20.75s%20infinite%20linear}@keyframes%20spinner_AtaB{100%25{transform:rotate(360deg)}}%3c/style%3e%3cpath%20d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z'%20opacity='.25'/%3e%3cpath%20d='M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z'%20class='spinner_ajPY'/%3e%3c/svg%3e";class Tx{#e;#t;#n=null;constructor(e,n){this.#e=e,this.#t=n,this.#n=this.#t.subscribe(()=>this.updateLayout()),this.updateLayout()}destroy(){this.#n&&(this.#n(),this.#n=null)}updateLayout(){const e=[],n=()=>{for(const[,s]of this.#t.entries())if(s.status=="loading"||s.status=="error")return!0;return!1};let i,r=!1;for(const[s,o]of this.#t.entries()){const a=o.status=="loading"||o.status=="error",l=s.coords;if(!l&&a&&!i&&(i=o),l){a&&(r=!0);const c={left:`${l.x}px`,top:`${l.y}px`,width:`${l.width}px`,height:`${l.height}px`};e.push(ce`<div style=${Dd(c)}>
|
|
253
253
|
<div class=${o.status}>
|
|
254
254
|
${o.status=="error"?ce`<span
|
|
255
255
|
>Loading
|
|
256
|
-
failed${o.detail?ce`: ${o.detail}`:
|
|
256
|
+
failed${o.detail?ce`: ${o.detail}`:Ie}</span
|
|
257
257
|
>`:ce`
|
|
258
|
-
<img src="${
|
|
258
|
+
<img src="${kd}" alt="" />
|
|
259
259
|
<span>Loading...</span>
|
|
260
260
|
`}
|
|
261
261
|
</div>
|
|
262
|
-
</div>`)}}if(r
|
|
263
|
-
<div class=${
|
|
264
|
-
${
|
|
262
|
+
</div>`)}}if(i&&!r){const s={left:"0px",top:"0px",width:"100%",height:"100%"};e.push(ce`<div style=${Dd(s)}>
|
|
263
|
+
<div class=${i.status}>
|
|
264
|
+
${i.status=="error"?ce`<span
|
|
265
265
|
>Loading
|
|
266
|
-
failed${
|
|
266
|
+
failed${i.detail?ce`: ${i.detail}`:Ie}</span
|
|
267
267
|
>`:ce`
|
|
268
|
-
<img src="${
|
|
268
|
+
<img src="${kd}" alt="" />
|
|
269
269
|
<span>Loading...</span>
|
|
270
270
|
`}
|
|
271
271
|
</div>
|
|
272
|
-
</div>`)}
|
|
272
|
+
</div>`)}n()?this.#e.style.display="block":setTimeout(()=>{n()||(this.#e.style.display="none")},3e3),Wr(e,this.#e)}}class Fd{#e=new Map;#t=new Set;set(e,n,i){if(!e)throw new Error("LoadingStatusRegistry.set requires a view.");this.#e.set(e,{status:n,detail:i});const r={view:e,status:n,detail:i};for(const s of this.#t)s(r)}delete(e){const n=this.#e.get(e);if(!n)return;this.#e.delete(e);const i={view:e,status:n.status,detail:n.detail};for(const r of this.#t)r(i)}get(e){return this.#e.get(e)}entries(){return this.#e.entries()}subscribe(e){return this.#t.add(e),()=>{this.#t.delete(e)}}}function Px(t){return e=>{if(t.querySelector(".view-highlight")?.remove(),e){if(!e.isVisible())return;const n=e.coords;if(n){const i=document.createElement("div");i.className="view-highlight",i.style.position="absolute",i.style.left=n.x+"px",i.style.top=n.y+"px",i.style.width=n.width+"px",i.style.height=n.height+"px",i.style.border="1px solid green",i.style.backgroundColor="rgba(0, 255, 0, 0.05)",i.style.pointerEvents="none",t.appendChild(i)}}}}class Lx{#e;constructor(){this.#e=new Map}add(e,n){document.addEventListener(e,n);let i=this.#e.get(e);i||(i=[],this.#e.set(e,i)),i.push(n)}removeAll(){for(const[e,n]of this.#e)for(const i of n)document.removeEventListener(e,i);this.#e.clear()}}class Rd{#e;constructor(){this.#e=new Map}add(e,n){let i=this.#e.get(e);i||(i=new Set,this.#e.set(e,i)),i.add(n)}remove(e,n){this.#e.get(e)?.delete(n)}emit(e,n){this.#e.get(e)?.forEach(i=>i(n))}}function na(t,e,n=!0){let i,r=o=>{};return function(...a){return new Promise((l,c)=>{const f=()=>{clearTimeout(i),r=u=>{},l(t(...a))};n&&r("debounced"),clearTimeout(i),r=c,i=window.setTimeout(f,typeof e=="function"?e():e)})}}const Mt=1,En=2,Fl=4;class Rl{stats={count:0,first:null};#e=!1;#t=!1;#n=[];paramRuntimeProvider=null;get behavior(){return 0}get label(){return`(${this.constructor.name})`}constructor(e){this.paramRuntimeProvider=e,this.children=[],this.parent=void 0,this.completed=!1}get disposed(){return this.#t}reset(){this.completed=!1;for(const e of this.children)e.reset();this.stats.count=0,this.stats.first=null}initialize(){}initializeOnce(){this.#e||(this.initialize(),this.#e=!0)}#i(){this._propagate=Function("children","stats",$r(this.children.length).map(e=>`const child${e} = children[${e}];`).join(`
|
|
273
273
|
`)+`return function propagate(datum) {
|
|
274
274
|
if (stats.count === 0) {
|
|
275
275
|
stats.first = structuredClone(datum);
|
|
276
276
|
}
|
|
277
277
|
stats.count++;
|
|
278
|
-
${
|
|
278
|
+
${$r(this.children.length).map(e=>`child${e}.handle(datum);`).join(`
|
|
279
279
|
`)}
|
|
280
|
-
};`)(this.children,this.stats)}setParent(e){this.parent=e}addChild(e){if(e.parent)throw new Error("Cannot add the child! It already has a parent.");return this.children.push(e),e.setParent(this),this.#
|
|
281
|
-
${
|
|
280
|
+
};`)(this.children,this.stats)}setParent(e){this.parent=e}addChild(e){if(e.parent)throw new Error("Cannot add the child! It already has a parent.");return this.children.push(e),e.setParent(this),this.#i(),this}adopt(e){e.parent&&e.parent.removeChild(e),this.addChild(e)}adoptChildrenOf(e){for(const n of e.children)this.adopt(n)}insertAsParent(e){if(this.isRoot())throw new Error("Cannot insert a new parent for a root node!");e.parent=this.parent,this.parent.children[this.parent.children.indexOf(this)]=e,this.parent.#i(),this.parent=void 0,e.addChild(this)}removeChild(e){const n=this.children.indexOf(e);if(n>-1)this.children.splice(n,1),e.parent=void 0,this.#i();else throw new Error("Trying to remove an unknown child node!")}excise(){if(this.isRoot())throw new Error("Cannot excise root node!");if(this.isTerminal())this.parent.removeChild(this);else if(this.children.length==1){const e=this.children[0];e.setParent(this.parent),this.parent.children[this.parent.children.indexOf(this)]=e,this.parent.#i(),this.setParent(void 0),this.children.length=0}else throw new Error("Cannot excise a node that has multiple children!")}isRoot(){return!this.parent}isBranching(){return this.children.length>1}isTerminal(){return this.children.length==0}visit(e){e(this);for(const n of this.children)n.visit(e);e.afterChildren&&e.afterChildren(this)}subtreeToString(e=0){const n=this.children.map(i=>i.subtreeToString(e+1)).join("");return`${" ".repeat(e*2)}* ${this.label}${"identifier"in this&&this.identifier?": "+this.identifier:""}
|
|
281
|
+
${n}`}handle(e){this._propagate(e)}complete(){this.completed=!0;for(const e of this.children)e.complete()}registerDisposer(e){this.#t?e():this.#n.push(e)}dispose(){if(!this.#t){this.#t=!0;for(const e of this.#n)e();this.#n.length=0}}disposeSubtree(){const e=()=>{};e.afterChildren=n=>{n.dispose()},this.visit(e)}beginBatch(e){for(const n of this.children)n.beginBatch(e)}get paramRuntime(){if(this.paramRuntimeProvider&&this.paramRuntimeProvider.paramRuntime)return this.paramRuntimeProvider.paramRuntime;if(!this.parent)throw new Error("Cannot find paramRuntime!");return this.parent.paramRuntime}repropagate(){if(this.parent)this.parent.repropagate();else throw new Error("Cannot repropagate data, no FlowNode with stored data found!")}_propagate(e){}}function Nd(t){return t.type=="file"}function Ox(t){return t.type=="facet"}class Qe extends Rl{#e;constructor(e,n){super(n),this.#e=e.type}get label(){return this.#e}}const gt="_uniqueId",Md=1e4,Td=[null];class Nl extends Qe{get behavior(){return En}constructor(e){super(e),this.params=e,this.as=e.as??gt,this._blocks=[],this._usedBlocks=0,this._id=-1}initialize(){}reset(){super.reset(),this._usedBlocks=0,this._id=-1}handle(e){e[this.as]=this._nextId(),this._propagate(e)}_nextId(){return++this._id%Md==0&&(this._id=this._getBlock()*Md),this._id}_getBlock(){return this._usedBlocks<this._blocks.length?this._blocks[this._usedBlocks++]:this._reserveBlock()}_reserveBlock(){const e=Td.length;return Td[e]=this,this._blocks.push(e),this._usedBlocks++,e}}function $(t,e=t){if(/^[A-Za-z0-9_]+$/.test(t)){const n=function(r){t in r||Ux(r,t)},i=new Function("validator",`
|
|
282
282
|
let validated = !validator;
|
|
283
283
|
return function accessField(datum) {
|
|
284
284
|
if (!validated) {
|
|
285
285
|
validator(datum);
|
|
286
286
|
validated = true;
|
|
287
287
|
}
|
|
288
|
-
return datum[${JSON.stringify(
|
|
289
|
-
}`)(
|
|
288
|
+
return datum[${JSON.stringify(t)}];
|
|
289
|
+
}`)(n);return At(i,[t],e)}else return Qo(t)}function Ux(t,e){throw new Error(`Invalid field "${e}". Available fields or properties: ${Object.keys(t).join(", ")}`)}function Pd(t,e,n){if(!t)return;function i(s){const o=s;return o.fields??=[],o.constant=o.fields.length===0,o.channelDef=e,o.channel=t,o.sourceKey=Gx(e),o.scaleChannel=((pt(e)&&e.resolutionChannel)??(ra(t)&&t))||void 0,o.scaleChannel!==void 0&&(o.domainKeyBase=Od({scaleChannel:o.scaleChannel,source:Ml(e)}).domainKeyBase),"param"in e?(o.predicate=t0(!1),o.predicate.param=e.param,o.predicate.empty=e.empty??!0):(o.predicate=t0(!0),o.predicate.empty=!1),o.equals=a=>a?o===a||o.sourceKey!==void 0&&o.sourceKey===a.sourceKey:!1,o.asNumberAccessor=()=>o,o}function r(s){if(Ee(s)){const o=i(n.createExpression(s.expr));if(o.fields.length>0)throw new Error("Expression in DatumDef/ValueDef cannot access data fields: "+s.expr);return o}else{const o=s;return i(()=>o)}}if(tn(e))try{return i($(e.field))}catch(s){throw new Error(`Invalid field definition: ${s.message}`)}else{if(Vi(e))return i(n.createExpression(e.expr));if(Yi(e))return r(e.datum);if(ut(e))return r(e.value);throw new Error(`Invalid channel definition: "${t}": ${JSON.stringify(e)}! The channel definition must contain one of the following properties: "field", "datum", "value" or "expr".`)}}function _x(t,e,n){const i=[];if(Jx(e)||Tl(e)){const r=Array.isArray(e.condition)?e.condition:[e.condition];for(const s of r)i.push(Pd(t,s,n))}if(i.push(Pd(t,e,n)),i.filter(r=>!r.constant).length>1)throw new Error("Only one accessor can be non-constant. Channel: "+t);return i}function Ld(t){return t.scaleChannel!==void 0}function Ml(t){if(tn(t))return{kind:"field",value:t.field};if(Vi(t))return{kind:"expr",value:t.expr};if(Yi(t))return{kind:"datum",value:t.datum};if(ut(t))return{kind:"value",value:t.value};throw new Error("Cannot derive a domain key from channel definition: "+JSON.stringify(t))}function Gx(t){const e=Ml(t);return e.kind==="datum"||e.kind==="value"?"constant|"+Gd(e.value):e.kind+"|"+_d(e)}function Od({scaleChannel:t,source:e,type:n}){if(!t)throw new Error("Cannot build a domain key without a scale channel.");const i=t+"|"+e.kind+"|"+_d(e),r=n?n+"|"+i:void 0;return{domainKeyBase:i,domainKey:r}}function Ud(t,e){const{domainKey:n,domainKeyBase:i}=Od({scaleChannel:t.scaleChannel,source:Ml(t.channelDef),type:e});if(!n)throw new Error("Cannot finalize a domain key without a resolved type.");return t.domainKeyBase=i,t.domainKey=n,n}function _d(t){switch(t.kind){case"field":case"expr":return t.value;case"datum":case"value":return Gd(t.value);default:throw new Error("Unknown domain key source.")}}function Gd(t){return Ee(t)?"expr:"+t.expr:t===void 0?"undefined":JSON.stringify(t)}function zx(t,e){const n={},i=r=>t.getScaleResolution(r)?.getScale();for(const[r,s]of Object.entries(e)){if(!s)continue;const o=r;if(Hx(o))continue;const a=s;n[o]=Yx(_x(o,a,t.paramRuntime),i)}return n}function Hx(t){return t==="key"||t==="search"}function Yx(t,e){if(t.length===1)return zd(t[0],e);const n=t.map(s=>s.predicate),i=t.map(s=>zd(s,e));return Object.assign(s=>{for(let o=0;o<i.length;o++)if(n[o](s))return i[o](s)},{constant:!1,accessors:i.map(s=>s.accessors[0]),dataAccessor:i.map(s=>s.dataAccessor).find(s=>s),scale:i.map(s=>s.scale).find(s=>s),channelDef:t.at(-1).channelDef})}function zd(t,e){const{channel:n,scaleChannel:i,channelDef:r}=t,s=t.scaleChannel?e(i):void 0;if(i&&!s)throw new Error(`Missing scale! "${n}": ${JSON.stringify(r)}`);return Object.assign(s?o=>s(t(o)):o=>t(o),{scale:s,constant:t.constant,accessors:[t],dataAccessor:t.constant?void 0:t,channelDef:r})}function ut(t){return t&&"value"in t}function tn(t){return t&&"field"in t}function Yi(t){return t&&"datum"in t}function pt(t){return tn(t)||Yi(t)||Vi(t)||Yd(t)}function Hd(t){if(Tl(t)){const e=t.condition;if(!Array.isArray(e)&&pt(e))return e}else if(pt(t))return t}function Vx(t,e){const n=t.mark.encoding[e];if(!Array.isArray(n)&&pt(n))return n;throw new Error("Not a channel def with scale!")}function Yd(t){return t&&"chrom"in t}function Vi(t){return t&&"expr"in t}function Jx(t){return(tn(t)||Yi(t))&&"condition"in t}function Tl(t){return ut(t)&&"condition"in t}const ii=["x","y"],qx=["x2","y2"],Kx=[...ii,...qx];function Pl(t){return ii.includes(t)}function ps(t){return Kx.includes(t)}const Vd={x:"x2",y:"y2"},Jd=Object.fromEntries(Object.entries(Vd).map(t=>[t[1],t[0]]));function Ll(t){return t in Jd}function Ol(t){const e=Vd[t];if(e)return e;throw new Error(`${t} has no secondary channel!`)}function In(t){return Jd[t]??t}function bn(t){return["color","fill","stroke"].includes(In(t))}function ia(t){return["shape"].includes(t)}function ra(t){return["x","y","x2","y2","color","fill","stroke","opacity","fillOpacity","strokeOpacity","strokeWidth","size","shape","angle","dx","dy","sample"].includes(t)}function jx(t){if(t==="shape")return["circle","square","cross","diamond","triangle-up","triangle-right","triangle-down","triangle-left","tick-up","tick-right","tick-down","tick-left"]}function qd(t){if(!ia(t))throw new Error("Not a discrete channel: "+t);const e=new Map(jx(t).map((n,i)=>[n,i]));return n=>{const i=e.get(n);if(i!==void 0)return i;throw new Error(`Invalid value for "${t}" channel: ${n}`)}}function Ul(t){return{type:"single",datum:t,uniqueId:t?.[gt]}}function _l(t){return t??=[],{type:"multi",data:new Map(t.map(e=>[e[gt],e]))}}function Kd(t){return{type:"interval",intervals:Object.fromEntries(t.map(e=>[e,null]))}}function Wx(t,{add:e,remove:n,toggle:i}){const r=t.data;for(const s of e??[])r.set(s[gt],s);for(const s of n??[])r.delete(s[gt]);for(const s of i??[]){const o=s[gt];r.has(o)?r.delete(o):r.set(o,s)}return{type:"multi",data:r}}function Xx(t,e){const n=!!(t.empty??!0),i=Tt(t.param),r=t.fields??{};if(Wd(e))return`${i}.uniqueId == null ? ${n} : ${i}.uniqueId === datum[${JSON.stringify(gt)}]`;if(Gl(e))return`${i}.data.size == 0 ? ${n} : mapHasKey(${i}.data, datum[${JSON.stringify(gt)}])`;if(jd(e)){const s=Object.keys(e.intervals),o=Object.keys(r).filter(Pl);if(o.length===0)throw new Error("Filtering using interval selections requires at least one primary positional channel in the config! "+JSON.stringify(t));if(o.some(c=>!s.includes(c)))throw new Error(`Selection channels (${s.join(", ")}) do not match the fields: ${JSON.stringify(t)}!`);const a=c=>`datum[${JSON.stringify(c)}]`;return s.map(c=>{const f=Ol(c),u=r[c],h=r[f]??r[c],A=`${i}.intervals.${c}[0] <= ${a(h)}`,d=`${a(u)} <= ${i}.intervals.${c}[1]`;return`(${i}.intervals.${c} ? (${A} && ${d}) : ${n})`}).join(" && ")}else throw new Error(`Unrecognized selection type : ${JSON.stringify(e)}`)}function jd(t){return t.type==="interval"}function Wd(t){return t.type==="single"}function Gl(t){return t.type==="multi"}function sa(t){const e=typeof t=="string"?{type:t}:{...t};return e.on=e.on?$d(e.on):oa(e)?{type:"click"}:void 0,e.clear=e.clear===!1?void 0:e.clear===!0||e.clear==null?{type:"dblclick"}:$d(e.clear),oa(e)&&e.on.type==="click"&&(e.toggle=!0),e}function oa(t){return t&&t.type=="point"}function Xd(t){return t&&t.type=="interval"}function Zd(t){return Object.values(t.intervals).some(e=>e&&e.length===2)}function Zx(t,e){return Object.entries(t.intervals).every(([n,i])=>(n=="x"||n=="y")&&i&&i[0]<=e[n]&&i[1]>=e[n])}function $d(t){if(typeof t=="string"){const e=t.match(/^([a-zA-Z]+)(?:\[(.+)\])?$/);if(!e)throw new Error(`Invalid event type string: ${t}`);const[,n,i]=e,r={type:n};return i&&(r.filter=i),r}else return t}function Ee(t){return typeof t=="object"&&t!=null&&"expr"in t&&le(t.expr)}function xe(t){if(Ee(t))throw new Error("ExprRef "+JSON.stringify(t)+" not allowed here. Expected a scalar value.");return t}function e0(t){return("expr"in t||"bind"in t)&&!("select"in t)}function zl(t){return!("expr"in t||"bind"in t)&&"select"in t}function Tt(t){if(!/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(t))throw new Error("Invalid parameter name: "+t+". Must be a valid JavaScript identifier.");return t}function Hl(t,e,n){if("select"in t){const i=sa(t.select);if(oa(i))return i.toggle?_l():Ul(null);if(Xd(i)){if(!i.encodings)throw new Error('Interval selection "'+t.name+'" must have encodings defined!');return Kd(i.encodings)}throw new Error('Unknown selection config for parameter "'+t.name+'".')}if("expr"in t){const i=e?.createExpression(t.expr);if(!i)throw new Error('Cannot evaluate expression for parameter "'+t.name+'".');return i(null)}return"value"in t?t.value:null}function ms(t,e,n,i,r={}){const s={...e},o=new Set;let a=!1,l=!1;const c=r.batchMode??"microtask";i?.(()=>{l=!0,o.clear(),a=!1});const u=()=>{if(l)return;if(!n||o.size===0){a=!1;return}const A=new Set(o);o.clear(),a=!1,n(A)},h=A=>{l||(o.add(A),a||(a=!0,queueMicrotask(()=>{l||(c=="whenPropagated"&&t.whenPropagated?t.whenPropagated().then(u).catch(()=>{u()}):u())})))};for(const[A,d]of Object.entries(e))if(Ee(d))if(n){const g=()=>h(A),m=t.watchExpression?t.watchExpression(d.expr,g,{scopeOwned:!i,registerDisposer:i}):t.createExpression(d.expr);if(!t.watchExpression){const p=m.subscribe(g);i?.(p)}Object.defineProperty(s,A,{enumerable:!0,get(){return m()}})}else{const g=t.createExpression(d.expr);Object.defineProperty(s,A,{enumerable:!0,get(){return g()}})}else s[A]=d;return s}function t0(t){return Object.assign(()=>t,{subscribe:()=>()=>{},invalidate:()=>{},identifier:()=>"constant",fields:[],globals:[],code:JSON.stringify(t)})}function $x(t){const e=Math.floor(Math.random()*16777215).toString(16),n=[];for(const i of t.paramConfigs.values()){if(!e0(i))continue;const r=i.bind;if(!r||!("input"in r))continue;const s=i.name,o=u=>{t.setValue(s,u)},a=t.getValue(s),l=r.name??s,c=r.debounce?na(o,r.debounce,!1):o,f=`${e}-param-${s}`;if(r.input=="range")n.push(ce`<label for=${f}>${l}</label>
|
|
290
290
|
<div>
|
|
291
291
|
<input
|
|
292
|
-
id=${
|
|
292
|
+
id=${f}
|
|
293
293
|
type="range"
|
|
294
|
-
min=${
|
|
295
|
-
max=${
|
|
296
|
-
step=${
|
|
294
|
+
min=${r.min??0}
|
|
295
|
+
max=${r.max??100}
|
|
296
|
+
step=${r.step??$n(r.min,r.max,100)}
|
|
297
297
|
.value=${a}
|
|
298
|
-
@input=${
|
|
298
|
+
@input=${u=>{c(u.target.valueAsNumber),u.target.nextElementSibling.textContent=u.target.valueAsNumber}}
|
|
299
299
|
/><span>${a}</span>
|
|
300
|
-
</div>`);else if(
|
|
300
|
+
</div>`);else if(r.input=="checkbox")n.push(ce`<label for=${f}>${l}</label>
|
|
301
301
|
<input
|
|
302
|
-
id=${
|
|
302
|
+
id=${f}
|
|
303
303
|
type="checkbox"
|
|
304
304
|
?checked=${a}
|
|
305
|
-
@input=${
|
|
306
|
-
/>`);else if(
|
|
305
|
+
@input=${u=>c(u.target.checked)}
|
|
306
|
+
/>`);else if(r.input=="radio")n.push(ce`<span class="label">${l}</span>
|
|
307
307
|
<div class="radio-group">
|
|
308
|
-
${
|
|
308
|
+
${r.options.map((u,h)=>ce`<label>
|
|
309
309
|
<input
|
|
310
310
|
type="radio"
|
|
311
311
|
name=${s}
|
|
312
|
-
value=${
|
|
313
|
-
.checked=${a==
|
|
312
|
+
value=${u}
|
|
313
|
+
.checked=${a==u}
|
|
314
314
|
@input=${A=>c(A.target.value)}
|
|
315
|
-
/>${
|
|
315
|
+
/>${r.labels?.[h]??u}</label
|
|
316
316
|
>`)}
|
|
317
|
-
</div>`);else if(
|
|
317
|
+
</div>`);else if(r.input=="select")n.push(ce`<label for=${f}>${l}</label>
|
|
318
318
|
<select
|
|
319
|
-
id=${
|
|
320
|
-
@input=${
|
|
319
|
+
id=${f}
|
|
320
|
+
@input=${u=>c(u.target.value)}
|
|
321
321
|
>
|
|
322
|
-
${
|
|
323
|
-
value=${
|
|
324
|
-
?selected=${a==
|
|
322
|
+
${r.options.map((u,h)=>ce`<option
|
|
323
|
+
value=${u}
|
|
324
|
+
?selected=${a==u}
|
|
325
325
|
>
|
|
326
|
-
${
|
|
326
|
+
${r.labels?.[h]??u}
|
|
327
327
|
</option>`)}
|
|
328
|
-
</select> `);else if(
|
|
328
|
+
</select> `);else if(r.input=="text"||r.input=="number"||r.input=="color")n.push(ce`<label for=${f}>${l}</label>
|
|
329
329
|
<div>
|
|
330
330
|
<input
|
|
331
|
-
id=${
|
|
332
|
-
type=${
|
|
333
|
-
placeholder=${
|
|
334
|
-
autocomplete=${
|
|
331
|
+
id=${f}
|
|
332
|
+
type=${r.input}
|
|
333
|
+
placeholder=${r.placeholder??""}
|
|
334
|
+
autocomplete=${r.autocomplete??"off"}
|
|
335
335
|
.value=${a}
|
|
336
|
-
@focus=${
|
|
337
|
-
@input=${
|
|
336
|
+
@focus=${u=>u.target.select()}
|
|
337
|
+
@input=${u=>{c(r.input=="number"?u.target.valueAsNumber:u.target.value)}}
|
|
338
338
|
/>
|
|
339
|
-
</div>`);else throw new Error("Unsupported input type: "+i.input);i.description&&t.push(ce`<div class="description">${i.description}</div>`)}return t}class OE{#e;#t;#n;constructor(e,t){this.#e=e,this.#t=t,this.#n=void 0}initialize(e){const t=[];e.visit(i=>{const s=i.paramRuntime;t.push(...LE(s))});const r=this.#t.inputBindingContainer;if(!(!r||r=="none"||!t.length)){if(this.#n=document.createElement("div"),this.#n.className="gs-input-bindings",r=="default")this.#e.appendChild(this.#n);else if(r instanceof HTMLElement)r.appendChild(this.#n);else throw new Error("Invalid inputBindingContainer");t.length&&Vi(ce`<div class="gs-input-binding">${t}</div>`,this.#n)}}remove(){this.#n?.remove()}}const Sl=5120,fs=5121,Ql=5122,Dl=5123,kl=5124,Fl=5125,Rl=5126,UE=32819,GE=32820,zE=33635,HE=5131,VE=33640,_E=35899,YE=35902,JE=36269,qE=34042,xd={};{const n=xd;n[Sl]=Int8Array,n[fs]=Uint8Array,n[Ql]=Int16Array,n[Dl]=Uint16Array,n[kl]=Int32Array,n[Fl]=Uint32Array,n[Rl]=Float32Array,n[UE]=Uint16Array,n[GE]=Uint16Array,n[zE]=Uint16Array,n[HE]=Uint16Array,n[VE]=Uint32Array,n[_E]=Uint32Array,n[YE]=Uint32Array,n[JE]=Uint32Array,n[qE]=Uint32Array}function Ml(n){if(n instanceof Int8Array)return Sl;if(n instanceof Uint8Array||n instanceof Uint8ClampedArray)return fs;if(n instanceof Int16Array)return Ql;if(n instanceof Uint16Array)return Dl;if(n instanceof Int32Array)return kl;if(n instanceof Uint32Array)return Fl;if(n instanceof Float32Array)return Rl;throw new Error("unsupported typed array type")}function KE(n){if(n===Int8Array)return Sl;if(n===Uint8Array||n===Uint8ClampedArray)return fs;if(n===Int16Array)return Ql;if(n===Uint16Array)return Dl;if(n===Int32Array)return kl;if(n===Uint32Array)return Fl;if(n===Float32Array)return Rl;throw new Error("unsupported typed array type")}function jE(n){const e=xd[n];if(!e)throw new Error("unknown gl type");return e}const Wo=typeof SharedArrayBuffer<"u"?function(e){return e&&e.buffer&&(e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer)}:function(e){return e&&e.buffer&&e.buffer instanceof ArrayBuffer};function WE(...n){console.error(...n)}function Bd(...n){console.warn(...n)}function XE(n,e){return typeof WebGLBuffer<"u"&&e instanceof WebGLBuffer}function vd(n,e){return typeof WebGLRenderbuffer<"u"&&e instanceof WebGLRenderbuffer}function Xo(n,e){return typeof WebGLTexture<"u"&&e instanceof WebGLTexture}function ZE(n,e){return typeof WebGLSampler<"u"&&e instanceof WebGLSampler}const Sd=35044,Pt=34962,$E=34963,ex=34660,tx=5120,nx=5121,rx=5122,ix=5123,sx=5124,ox=5125,ax=5126,Qd={attribPrefix:""};function Dd(n,e,t,r,i){n.bindBuffer(e,t),n.bufferData(e,r,i||Sd)}function kd(n,e,t,r){if(XE(n,e))return e;t=t||Pt;const i=n.createBuffer();return Dd(n,t,i,e,r),i}function Fd(n){return n==="indices"}function cx(n){return n instanceof Int8Array||n instanceof Uint8Array}function lx(n){return n===Int8Array||n===Uint8Array}function ux(n){return n.length?n:n.data}const fx=/coord|texture/i,Ax=/color|colour/i;function Rd(n,e){let t;if(fx.test(n)?t=2:Ax.test(n)?t=4:t=3,e%t>0)throw new Error(`Can not guess numComponents for attribute '${n}'. Tried ${t} but ${e} values is not evenly divisible by ${t}. You should specify it.`);return t}function hx(n,e){return n.numComponents||n.size||Rd(e,ux(n).length)}function Nl(n,e){if(Wo(n))return n;if(Wo(n.data))return n.data;Array.isArray(n)&&(n={data:n});let t=n.type;return t||(Fd(e)?t=Uint16Array:t=Float32Array),new t(n.data)}function dx(n,e){const t={};return Object.keys(e).forEach(function(r){if(!Fd(r)){const i=e[r],s=i.attrib||i.name||i.attribName||Qd.attribPrefix+r;if(i.value){if(!Array.isArray(i.value)&&!Wo(i.value))throw new Error("array.value is not array or typedarray");t[s]={value:i.value}}else{let o,a,l,c;if(i.buffer&&i.buffer instanceof WebGLBuffer)o=i.buffer,c=i.numComponents||i.size,a=i.type,l=i.normalize;else if(typeof i=="number"||typeof i.data=="number"){const u=i.data||i,f=i.type||Float32Array,h=u*f.BYTES_PER_ELEMENT;a=KE(f),l=i.normalize!==void 0?i.normalize:lx(f),c=i.numComponents||i.size||Rd(r,u),o=n.createBuffer(),n.bindBuffer(Pt,o),n.bufferData(Pt,h,i.drawType||Sd)}else{const u=Nl(i,r);o=kd(n,u,void 0,i.drawType),a=Ml(u),l=i.normalize!==void 0?i.normalize:cx(u),c=hx(i,r)}t[s]={buffer:o,numComponents:c,type:a,normalize:l,stride:i.stride||0,offset:i.offset||0,divisor:i.divisor===void 0?void 0:i.divisor,drawType:i.drawType}}}}),n.bindBuffer(Pt,null),t}function gx(n,e,t,r){t=Nl(t),r!==void 0?(n.bindBuffer(Pt,e.buffer),n.bufferSubData(Pt,r,t)):Dd(n,Pt,e.buffer,t,e.drawType)}function px(n,e){return e===tx||e===nx?1:e===rx||e===ix?2:e===sx||e===ox||e===ax?4:0}const Tl=["position","positions","a_position"];function mx(n,e){let t,r;for(r=0;r<Tl.length&&(t=Tl[r],!(t in e||(t=Qd.attribPrefix+t,t in e)));++r);r===Tl.length&&(t=Object.keys(e)[0]);const i=e[t];if(!i.buffer)return 1;n.bindBuffer(Pt,i.buffer);const s=n.getBufferParameter(Pt,ex);n.bindBuffer(Pt,null);const o=px(n,i.type),a=s/o,l=i.numComponents||i.size,c=a/l;if(c%1!==0)throw new Error(`numComponents ${l} not correct for length ${length}`);return c}function wx(n,e,t){const r=dx(n,e),i=Object.assign({},t||{});i.attribs=Object.assign({},t?t.attribs:{},r);const s=e.indices;if(s){const o=Nl(s,"indices");i.indices=kd(n,o,$E),i.numElements=o.length,i.elementType=Ml(o)}else i.numElements||(i.numElements=mx(n,i.attribs));return i}function Hr(n){return!!n.texStorage2D}const Pl=(function(){const n={},e={};function t(r){const i=r.constructor.name;if(!n[i]){for(const s in r)if(typeof r[s]=="number"){const o=e[r[s]];e[r[s]]=o?`${o} | ${s}`:s}n[i]=!0}}return function(i,s){return t(i),e[s]||(typeof s=="number"?`0x${s.toString(16)}`:s)}})(),En={textureColor:new Uint8Array([128,192,255,255]),textureOptions:{},crossOrigin:void 0},Vr=Wo,Md=(function(){let n;return function(){return n=n||(typeof document<"u"&&document.createElement?document.createElement("canvas").getContext("2d"):null),n}})(),Nd=6406,Lt=6407,de=6408,Td=6409,Pd=6410,As=6402,Ld=34041,Zo=33071,Cx=9728,yx=9729,tn=3553,nn=34067,xn=32879,Bn=35866,$o=34069,Ix=34070,bx=34071,Ex=34072,xx=34073,Bx=34074,Ll=10241,Ol=10240,ea=10242,ta=10243,Od=32882,vx=33082,Sx=33083,Qx=33084,Dx=33085,Ul=3317,Ud=3314,Gd=32878,zd=3316,Hd=3315,Vd=32877,kx=37443,Fx=37441,Rx=37440,Mx=33321,Nx=36756,Tx=33325,Px=33326,Lx=33330,Ox=33329,Ux=33338,Gx=33337,zx=33340,Hx=33339,Vx=33323,_x=36757,Yx=33327,Jx=33328,qx=33336,Kx=33335,jx=33332,Wx=33331,Xx=33334,Zx=33333,$x=32849,eB=35905,tB=36194,nB=36758,rB=35898,iB=35901,sB=34843,oB=34837,aB=36221,cB=36239,lB=36215,uB=36233,fB=36209,AB=36227,hB=32856,dB=35907,gB=36759,pB=32855,mB=32854,wB=32857,CB=34842,yB=34836,IB=36220,bB=36238,EB=36975,xB=36214,BB=36232,vB=36226,SB=36208,QB=33189,DB=33190,kB=36012,FB=36013,RB=35056,vn=5120,ge=5121,na=5122,_r=5123,ra=5124,nr=5125,Je=5126,_d=32819,Yd=32820,Jd=33635,xt=5131,hs=36193,Gl=33640,MB=35899,NB=35902,TB=36269,PB=34042,ia=33319,Yr=33320,sa=6403,Jr=36244,qr=36248,rr=36249;let zl;function oa(n){if(!zl){const e={};e[Nd]={textureFormat:Nd,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1,2,2,4],type:[ge,xt,hs,Je]},e[Td]={textureFormat:Td,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1,2,2,4],type:[ge,xt,hs,Je]},e[Pd]={textureFormat:Pd,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[2,4,4,8],type:[ge,xt,hs,Je]},e[Lt]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3,6,6,12,2],type:[ge,xt,hs,Je,Jd]},e[de]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,8,8,16,2,2],type:[ge,xt,hs,Je,_d,Yd]},e[As]={textureFormat:As,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2,4],type:[nr,_r]},e[Mx]={textureFormat:sa,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1],type:[ge]},e[Nx]={textureFormat:sa,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[1],type:[vn]},e[Tx]={textureFormat:sa,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[4,2],type:[Je,xt]},e[Px]={textureFormat:sa,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[4],type:[Je]},e[Lx]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[1],type:[ge]},e[Ox]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[1],type:[vn]},e[jx]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[_r]},e[Wx]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[na]},e[Xx]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[nr]},e[Zx]={textureFormat:Jr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ra]},e[Vx]={textureFormat:ia,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[2],type:[ge]},e[_x]={textureFormat:ia,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[2],type:[vn]},e[Yx]={textureFormat:ia,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[8,4],type:[Je,xt]},e[Jx]={textureFormat:ia,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[8],type:[Je]},e[qx]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[ge]},e[Kx]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[vn]},e[Ux]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[_r]},e[Gx]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[na]},e[zx]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[nr]},e[Hx]={textureFormat:Yr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[ra]},e[$x]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3],type:[ge]},e[eB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[3],type:[ge]},e[tB]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3,2],type:[ge,Jd]},e[nB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[3],type:[vn]},e[rB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6,4],type:[Je,xt,MB]},e[iB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6,4],type:[Je,xt,NB]},e[sB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6],type:[Je,xt]},e[oB]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[Je]},e[aB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[3],type:[ge]},e[cB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[3],type:[vn]},e[lB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[6],type:[_r]},e[uB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[6],type:[na]},e[fB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[nr]},e[AB]={textureFormat:qr,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[ra]},e[hB]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[ge]},e[dB]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[ge]},e[gB]={textureFormat:de,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[4],type:[vn]},e[pB]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,2,4],type:[ge,Yd,Gl]},e[mB]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,2],type:[ge,_d]},e[wB]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[Gl]},e[CB]={textureFormat:de,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[16,8],type:[Je,xt]},e[yB]={textureFormat:de,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[16],type:[Je]},e[IB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ge]},e[bB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[vn]},e[EB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Gl]},e[xB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[_r]},e[BB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[na]},e[vB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[16],type:[ra]},e[SB]={textureFormat:rr,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[16],type:[nr]},e[QB]={textureFormat:As,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2,4],type:[_r,nr]},e[DB]={textureFormat:As,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[nr]},e[kB]={textureFormat:As,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Je]},e[RB]={textureFormat:Ld,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[PB]},e[FB]={textureFormat:Ld,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[TB]},Object.keys(e).forEach(function(t){const r=e[t];r.bytesPerElementMap={},r.bytesPerElement.forEach(function(i,s){const o=r.type[s];r.bytesPerElementMap[o]=i})}),zl=e}return zl[n]}function LB(n,e){const t=oa(n);if(!t)throw"unknown internal format";const r=t.bytesPerElementMap[e];if(r===void 0)throw"unknown internal format";return r}function Kr(n){const e=oa(n);if(!e)throw"unknown internal format";return{format:e.textureFormat,type:e.type[0]}}function qd(n){return(n&n-1)===0}function OB(n,e,t,r){if(!Hr(n))return qd(e)&&qd(t);const i=oa(r);if(!i)throw"unknown internal format";return i.colorRenderable&&i.textureFilterable}function UB(n){const e=oa(n);if(!e)throw"unknown internal format";return e.textureFilterable}function Kd(n,e,t){return Vr(e)?Ml(e):t||ge}function aa(n,e,t,r,i){if(i%1!==0)throw"can't guess dimensions";if(!t&&!r){const s=Math.sqrt(i/(e===nn?6:1));s%1===0?(t=s,r=s):(t=i,r=1)}else if(r){if(!t&&(t=i/r,t%1))throw"can't guess dimensions"}else if(r=i/t,r%1)throw"can't guess dimensions";return{width:t,height:r}}function jr(n,e){e.colorspaceConversion!==void 0&&n.pixelStorei(kx,e.colorspaceConversion),e.premultiplyAlpha!==void 0&&n.pixelStorei(Fx,e.premultiplyAlpha),e.flipY!==void 0&&n.pixelStorei(Rx,e.flipY)}function jd(n){n.pixelStorei(Ul,4),Hr(n)&&(n.pixelStorei(Ud,0),n.pixelStorei(Gd,0),n.pixelStorei(zd,0),n.pixelStorei(Hd,0),n.pixelStorei(Vd,0))}function GB(n,e,t,r){r.minMag&&(t.call(n,e,Ll,r.minMag),t.call(n,e,Ol,r.minMag)),r.min&&t.call(n,e,Ll,r.min),r.mag&&t.call(n,e,Ol,r.mag),r.wrap&&(t.call(n,e,ea,r.wrap),t.call(n,e,ta,r.wrap),(e===xn||ZE(n,e))&&t.call(n,e,Od,r.wrap)),r.wrapR&&t.call(n,e,Od,r.wrapR),r.wrapS&&t.call(n,e,ea,r.wrapS),r.wrapT&&t.call(n,e,ta,r.wrapT),r.minLod&&t.call(n,e,vx,r.minLod),r.maxLod&&t.call(n,e,Sx,r.maxLod),r.baseLevel&&t.call(n,e,Qx,r.baseLevel),r.maxLevel&&t.call(n,e,Dx,r.maxLevel)}function Wd(n,e,t){const r=t.target||tn;n.bindTexture(r,e),GB(n,r,n.texParameteri,t)}function zB(n){return n=n||En.textureColor,Vr(n)?n:new Uint8Array([n[0]*255,n[1]*255,n[2]*255,n[3]*255])}function Hl(n,e,t,r,i,s){t=t||En.textureOptions,s=s||de;const o=t.target||tn;if(r=r||t.width,i=i||t.height,n.bindTexture(o,e),OB(n,r,i,s))n.generateMipmap(o);else{const a=UB(s)?yx:Cx;n.texParameteri(o,Ll,a),n.texParameteri(o,Ol,a),n.texParameteri(o,ea,Zo),n.texParameteri(o,ta,Zo)}}function ds(n){return n.auto===!0||n.auto===void 0&&n.level===void 0}function Vl(n,e){return e=e||{},e.cubeFaceOrder||[$o,Ix,bx,Ex,xx,Bx]}function _l(n,e){const r=Vl(n,e).map(function(i,s){return{face:i,ndx:s}});return r.sort(function(i,s){return i.face-s.face}),r}function Xd(n,e,t,r){r=r||En.textureOptions;const i=r.target||tn,s=r.level||0;let o=t.width,a=t.height;const l=r.internalFormat||r.format||de,c=Kr(l),u=r.format||c.format,f=r.type||c.type;if(jr(n,r),n.bindTexture(i,e),i===nn){const h=t.width,A=t.height;let d,g;if(h/6===A)d=A,g=[0,0,1,0,2,0,3,0,4,0,5,0];else if(A/6===h)d=h,g=[0,0,0,1,0,2,0,3,0,4,0,5];else if(h/3===A/2)d=h/3,g=[0,0,1,0,2,0,0,1,1,1,2,1];else if(h/2===A/3)d=h/2,g=[0,0,1,0,0,1,1,1,0,2,1,2];else throw"can't figure out cube map from element: "+(t.src?t.src:t.nodeName);const p=Md();p?(p.canvas.width=d,p.canvas.height=d,o=d,a=d,_l(n,r).forEach(function(m){const C=g[m.ndx*2+0]*d,y=g[m.ndx*2+1]*d;p.drawImage(t,C,y,d,d,0,0,d,d),n.texImage2D(m.face,s,l,u,f,p.canvas)}),p.canvas.width=1,p.canvas.height=1):typeof createImageBitmap<"u"&&(o=d,a=d,_l(n,r).forEach(function(m){const C=g[m.ndx*2+0]*d,y=g[m.ndx*2+1]*d;n.texImage2D(m.face,s,l,d,d,0,u,f,null),createImageBitmap(t,C,y,d,d,{premultiplyAlpha:"none",colorSpaceConversion:"none"}).then(function(w){jr(n,r),n.bindTexture(i,e),n.texImage2D(m.face,s,l,u,f,w),ds(r)&&Hl(n,e,r,o,a,l)})}))}else if(i===xn||i===Bn){const h=Math.min(t.width,t.height),A=Math.max(t.width,t.height),d=A/h;if(d%1!==0)throw"can not compute 3D dimensions of element";const g=t.width===A?1:0,p=t.height===A?1:0;n.pixelStorei(Ul,1),n.pixelStorei(Ud,t.width),n.pixelStorei(Gd,0),n.pixelStorei(Vd,0),n.texImage3D(i,s,l,h,h,h,0,u,f,null);for(let m=0;m<d;++m){const C=m*h*g,y=m*h*p;n.pixelStorei(zd,C),n.pixelStorei(Hd,y),n.texSubImage3D(i,s,0,0,m,h,h,1,u,f,t)}jd(n)}else n.texImage2D(i,s,l,u,f,t);ds(r)&&Hl(n,e,r,o,a,l),Wd(n,e,r)}function gs(){}function HB(n){if(typeof document<"u"){const e=document.createElement("a");return e.href=n,e.hostname===location.hostname&&e.port===location.port&&e.protocol===location.protocol}else{const e=new URL(location.href).origin;return new URL(n,location.href).origin===e}}function VB(n,e){return e===void 0&&!HB(n)?"anonymous":e}function _B(n,e,t){t=t||gs;let r;if(e=e!==void 0?e:En.crossOrigin,e=VB(n,e),typeof Image<"u"){r=new Image,e!==void 0&&(r.crossOrigin=e);const i=function(){r.removeEventListener("error",s),r.removeEventListener("load",o),r=null},s=function(){const l="couldn't load image: "+n;WE(l),t(l,r),i()},o=function(){t(null,r),i()};return r.addEventListener("error",s),r.addEventListener("load",o),r.src=n,r}else if(typeof ImageBitmap<"u"){let i,s;const o=function(){t(i,s)},a={};e&&(a.mode="cors"),fetch(n,a).then(function(l){if(!l.ok)throw l;return l.blob()}).then(function(l){return createImageBitmap(l,{premultiplyAlpha:"none",colorSpaceConversion:"none"})}).then(function(l){s=l,setTimeout(o)}).catch(function(l){i=l,setTimeout(o)}),r=null}return r}function Zd(n){return typeof ImageBitmap<"u"&&n instanceof ImageBitmap||typeof ImageData<"u"&&n instanceof ImageData||typeof HTMLElement<"u"&&n instanceof HTMLElement}function Yl(n,e,t){return Zd(n)?(setTimeout(function(){t(null,n)}),n):_B(n,e,t)}function Jl(n,e,t){t=t||En.textureOptions;const r=t.target||tn;if(n.bindTexture(r,e),t.color===!1)return;const i=zB(t.color);if(r===nn)for(let s=0;s<6;++s)n.texImage2D($o+s,0,de,1,1,0,de,ge,i);else r===xn||r===Bn?n.texImage3D(r,0,de,1,1,1,0,de,ge,i):n.texImage2D(r,0,de,1,1,0,de,ge,i)}function YB(n,e,t,r){return r=r||gs,t=t||En.textureOptions,Jl(n,e,t),t=Object.assign({},t),Yl(t.src,t.crossOrigin,function(s,o){s?r(s,e,o):(Xd(n,e,o,t),r(null,e,o))})}function JB(n,e,t,r){r=r||gs;const i=t.src;if(i.length!==6)throw"there must be 6 urls for a cubemap";const s=t.level||0,o=t.internalFormat||t.format||de,a=Kr(o),l=t.format||a.format,c=t.type||ge,u=t.target||tn;if(u!==nn)throw"target must be TEXTURE_CUBE_MAP";Jl(n,e,t),t=Object.assign({},t);let f=6;const h=[],A=Vl(n,t);let d;function g(p){return function(m,C){--f,m?h.push(m):C.width!==C.height?h.push("cubemap face img is not a square: "+C.src):(jr(n,t),n.bindTexture(u,e),f===5?Vl().forEach(function(y){n.texImage2D(y,s,o,l,c,C)}):n.texImage2D(p,s,o,l,c,C),ds(t)&&n.generateMipmap(u)),f===0&&r(h.length?h:void 0,e,d)}}d=i.map(function(p,m){return Yl(p,t.crossOrigin,g(A[m]))})}function qB(n,e,t,r){r=r||gs;const i=t.src,s=t.internalFormat||t.format||de,o=Kr(s),a=t.format||o.format,l=t.type||ge,c=t.target||Bn;if(c!==xn&&c!==Bn)throw"target must be TEXTURE_3D or TEXTURE_2D_ARRAY";Jl(n,e,t),t=Object.assign({},t);let u=i.length;const f=[];let h;const A=t.level||0;let d=t.width,g=t.height;const p=i.length;let m=!0;function C(y){return function(w,E){if(--u,w)f.push(w);else{if(jr(n,t),n.bindTexture(c,e),m){m=!1,d=t.width||E.width,g=t.height||E.height,n.texImage3D(c,A,s,d,g,p,0,a,l,null);for(let x=0;x<p;++x)n.texSubImage3D(c,A,0,0,x,d,g,1,a,l,E)}else{let x=E,b;(E.width!==d||E.height!==g)&&(b=Md(),x=b.canvas,b.canvas.width=d,b.canvas.height=g,b.drawImage(E,0,0,d,g)),n.texSubImage3D(c,A,0,0,y,d,g,1,a,l,x),b&&x===b.canvas&&(b.canvas.width=0,b.canvas.height=0)}ds(t)&&n.generateMipmap(c)}u===0&&r(f.length?f:void 0,e,h)}}h=i.map(function(y,w){return Yl(y,t.crossOrigin,C(w))})}function $d(n,e,t,r){r=r||En.textureOptions;const i=r.target||tn;n.bindTexture(i,e);let s=r.width,o=r.height,a=r.depth;const l=r.level||0,c=r.internalFormat||r.format||de,u=Kr(c),f=r.format||u.format,h=r.type||Kd(n,t,u.type);if(Vr(t))t instanceof Uint8ClampedArray&&(t=new Uint8Array(t.buffer));else{const p=jE(h);t=new p(t)}const A=LB(c,h),d=t.byteLength/A;if(d%1)throw"length wrong size for format: "+Pl(n,f);let g;if(i===xn||i===Bn)if(!s&&!o&&!a){const p=Math.cbrt(d);if(p%1!==0)throw"can't guess cube size of array of numElements: "+d;s=p,o=p,a=p}else s&&(!o||!a)?(g=aa(n,i,o,a,d/s),o=g.width,a=g.height):o&&(!s||!a)?(g=aa(n,i,s,a,d/o),s=g.width,a=g.height):(g=aa(n,i,s,o,d/a),s=g.width,o=g.height);else g=aa(n,i,s,o,d),s=g.width,o=g.height;if(jd(n),n.pixelStorei(Ul,r.unpackAlignment||1),jr(n,r),i===nn){const p=A/t.BYTES_PER_ELEMENT,m=d/6*p;_l(n,r).forEach(C=>{const y=m*C.ndx,w=t.subarray(y,y+m);n.texImage2D(C.face,l,c,s,o,0,f,h,w)})}else i===xn||i===Bn?n.texImage3D(i,l,c,s,o,a,0,f,h,t):n.texImage2D(i,l,c,s,o,0,f,h,t);return{width:s,height:o,depth:a,type:h}}function KB(n,e,t){const r=t.target||tn;n.bindTexture(r,e);const i=t.level||0,s=t.internalFormat||t.format||de,o=Kr(s),a=t.format||o.format,l=t.type||o.type;if(jr(n,t),r===nn)for(let c=0;c<6;++c)n.texImage2D($o+c,i,s,t.width,t.height,0,a,l,null);else r===xn||r===Bn?n.texImage3D(r,i,s,t.width,t.height,t.depth,0,a,l,null):n.texImage2D(r,i,s,t.width,t.height,0,a,l,null)}function ps(n,e,t){t=t||gs,e=e||En.textureOptions;const r=n.createTexture(),i=e.target||tn;let s=e.width||1,o=e.height||1;const a=e.internalFormat||de;n.bindTexture(i,r),i===nn&&(n.texParameteri(i,ea,Zo),n.texParameteri(i,ta,Zo));let l=e.src;if(l)if(typeof l=="function"&&(l=l(n,e)),typeof l=="string")YB(n,r,e,t);else if(Vr(l)||Array.isArray(l)&&(typeof l[0]=="number"||Array.isArray(l[0])||Vr(l[0]))){const c=$d(n,r,l,e);s=c.width,o=c.height}else Array.isArray(l)&&(typeof l[0]=="string"||Zd(l[0]))?i===nn?JB(n,r,e,t):qB(n,r,e,t):(Xd(n,r,l,e),s=l.width,o=l.height);else KB(n,r,e);return ds(e)&&Hl(n,r,e,s,o,a),Wd(n,r,e),r}function jB(n,e,t,r,i,s){r=r||t.width,i=i||t.height,s=s||t.depth;const o=t.target||tn;n.bindTexture(o,e);const a=t.level||0,l=t.internalFormat||t.format||de,c=Kr(l),u=t.format||c.format;let f;const h=t.src;if(h&&(Vr(h)||Array.isArray(h)&&typeof h[0]=="number")?f=t.type||Kd(n,h,c.type):f=t.type||c.type,o===nn)for(let A=0;A<6;++A)n.texImage2D($o+A,a,l,r,i,0,u,f,null);else o===xn||o===Bn?n.texImage3D(o,a,l,r,i,s,0,u,f,null):n.texImage2D(o,a,l,r,i,0,u,f,null)}const WB=Bd,ca=33984,XB=35048,la=34962,ZB=34963,ql=35345,e0=35718,$B=35721,ev=35971,tv=35382,nv=35396,rv=35398,iv=35392,sv=35395,ua=5126,t0=35664,n0=35665,r0=35666,Kl=5124,i0=35667,s0=35668,o0=35669,a0=35670,c0=35671,l0=35672,u0=35673,f0=35674,A0=35675,h0=35676,ov=35678,av=35680,cv=35679,lv=35682,uv=35685,fv=35686,Av=35687,hv=35688,dv=35689,gv=35690,pv=36289,mv=36292,wv=36293,jl=5125,d0=36294,g0=36295,p0=36296,Cv=36298,yv=36299,Iv=36300,bv=36303,Ev=36306,xv=36307,Bv=36308,vv=36311,fa=3553,Aa=34067,Wl=32879,ha=35866,q={};function m0(n,e){return q[e].bindPoint}function Sv(n,e){return function(t){n.uniform1f(e,t)}}function Qv(n,e){return function(t){n.uniform1fv(e,t)}}function Dv(n,e){return function(t){n.uniform2fv(e,t)}}function kv(n,e){return function(t){n.uniform3fv(e,t)}}function Fv(n,e){return function(t){n.uniform4fv(e,t)}}function w0(n,e){return function(t){n.uniform1i(e,t)}}function C0(n,e){return function(t){n.uniform1iv(e,t)}}function y0(n,e){return function(t){n.uniform2iv(e,t)}}function I0(n,e){return function(t){n.uniform3iv(e,t)}}function b0(n,e){return function(t){n.uniform4iv(e,t)}}function Rv(n,e){return function(t){n.uniform1ui(e,t)}}function Mv(n,e){return function(t){n.uniform1uiv(e,t)}}function Nv(n,e){return function(t){n.uniform2uiv(e,t)}}function Tv(n,e){return function(t){n.uniform3uiv(e,t)}}function Pv(n,e){return function(t){n.uniform4uiv(e,t)}}function Lv(n,e){return function(t){n.uniformMatrix2fv(e,!1,t)}}function Ov(n,e){return function(t){n.uniformMatrix3fv(e,!1,t)}}function Uv(n,e){return function(t){n.uniformMatrix4fv(e,!1,t)}}function Gv(n,e){return function(t){n.uniformMatrix2x3fv(e,!1,t)}}function zv(n,e){return function(t){n.uniformMatrix3x2fv(e,!1,t)}}function Hv(n,e){return function(t){n.uniformMatrix2x4fv(e,!1,t)}}function Vv(n,e){return function(t){n.uniformMatrix4x2fv(e,!1,t)}}function _v(n,e){return function(t){n.uniformMatrix3x4fv(e,!1,t)}}function Yv(n,e){return function(t){n.uniformMatrix4x3fv(e,!1,t)}}function $e(n,e,t,r){const i=m0(n,e);return Hr(n)?function(s){let o,a;Xo(n,s)?(o=s,a=null):(o=s.texture,a=s.sampler),n.uniform1i(r,t),n.activeTexture(ca+t),n.bindTexture(i,o),n.bindSampler(t,a)}:function(s){n.uniform1i(r,t),n.activeTexture(ca+t),n.bindTexture(i,s)}}function et(n,e,t,r,i){const s=m0(n,e),o=new Int32Array(i);for(let a=0;a<i;++a)o[a]=t+a;return Hr(n)?function(a){n.uniform1iv(r,o),a.forEach(function(l,c){n.activeTexture(ca+o[c]);let u,f;Xo(n,l)?(u=l,f=null):(u=l.texture,f=l.sampler),n.bindSampler(t,f),n.bindTexture(s,u)})}:function(a){n.uniform1iv(r,o),a.forEach(function(l,c){n.activeTexture(ca+o[c]),n.bindTexture(s,l)})}}q[ua]={Type:Float32Array,size:4,setter:Sv,arraySetter:Qv},q[t0]={Type:Float32Array,size:8,setter:Dv,cols:2},q[n0]={Type:Float32Array,size:12,setter:kv,cols:3},q[r0]={Type:Float32Array,size:16,setter:Fv,cols:4},q[Kl]={Type:Int32Array,size:4,setter:w0,arraySetter:C0},q[i0]={Type:Int32Array,size:8,setter:y0,cols:2},q[s0]={Type:Int32Array,size:12,setter:I0,cols:3},q[o0]={Type:Int32Array,size:16,setter:b0,cols:4},q[jl]={Type:Uint32Array,size:4,setter:Rv,arraySetter:Mv},q[d0]={Type:Uint32Array,size:8,setter:Nv,cols:2},q[g0]={Type:Uint32Array,size:12,setter:Tv,cols:3},q[p0]={Type:Uint32Array,size:16,setter:Pv,cols:4},q[a0]={Type:Uint32Array,size:4,setter:w0,arraySetter:C0},q[c0]={Type:Uint32Array,size:8,setter:y0,cols:2},q[l0]={Type:Uint32Array,size:12,setter:I0,cols:3},q[u0]={Type:Uint32Array,size:16,setter:b0,cols:4},q[f0]={Type:Float32Array,size:32,setter:Lv,rows:2,cols:2},q[A0]={Type:Float32Array,size:48,setter:Ov,rows:3,cols:3},q[h0]={Type:Float32Array,size:64,setter:Uv,rows:4,cols:4},q[uv]={Type:Float32Array,size:32,setter:Gv,rows:2,cols:3},q[fv]={Type:Float32Array,size:32,setter:Hv,rows:2,cols:4},q[Av]={Type:Float32Array,size:48,setter:zv,rows:3,cols:2},q[hv]={Type:Float32Array,size:48,setter:_v,rows:3,cols:4},q[dv]={Type:Float32Array,size:64,setter:Vv,rows:4,cols:2},q[gv]={Type:Float32Array,size:64,setter:Yv,rows:4,cols:3},q[ov]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:fa},q[av]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Aa},q[cv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Wl},q[lv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:fa},q[pv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:ha},q[mv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:ha},q[wv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Aa},q[Cv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:fa},q[yv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Wl},q[Iv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Aa},q[bv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:ha},q[Ev]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:fa},q[xv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Wl},q[Bv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:Aa},q[vv]={Type:null,size:0,setter:$e,arraySetter:et,bindPoint:ha};function da(n,e){return function(t){if(t.value)switch(n.disableVertexAttribArray(e),t.value.length){case 4:n.vertexAttrib4fv(e,t.value);break;case 3:n.vertexAttrib3fv(e,t.value);break;case 2:n.vertexAttrib2fv(e,t.value);break;case 1:n.vertexAttrib1fv(e,t.value);break;default:throw new Error("the length of a float constant value must be between 1 and 4!")}else n.bindBuffer(la,t.buffer),n.enableVertexAttribArray(e),n.vertexAttribPointer(e,t.numComponents||t.size,t.type||ua,t.normalize||!1,t.stride||0,t.offset||0),t.divisor!==void 0&&n.vertexAttribDivisor(e,t.divisor)}}function Sn(n,e){return function(t){if(t.value)if(n.disableVertexAttribArray(e),t.value.length===4)n.vertexAttrib4iv(e,t.value);else throw new Error("The length of an integer constant value must be 4!");else n.bindBuffer(la,t.buffer),n.enableVertexAttribArray(e),n.vertexAttribIPointer(e,t.numComponents||t.size,t.type||Kl,t.stride||0,t.offset||0),t.divisor!==void 0&&n.vertexAttribDivisor(e,t.divisor)}}function ga(n,e){return function(t){if(t.value)if(n.disableVertexAttribArray(e),t.value.length===4)n.vertexAttrib4uiv(e,t.value);else throw new Error("The length of an unsigned integer constant value must be 4!");else n.bindBuffer(la,t.buffer),n.enableVertexAttribArray(e),n.vertexAttribIPointer(e,t.numComponents||t.size,t.type||jl,t.stride||0,t.offset||0),t.divisor!==void 0&&n.vertexAttribDivisor(e,t.divisor)}}function Xl(n,e,t){const r=t.size,i=t.count;return function(s){n.bindBuffer(la,s.buffer);const o=s.size||s.numComponents||r,a=o/i,l=s.type||ua,u=q[l].size*o,f=s.normalize||!1,h=s.offset||0,A=u/i;for(let d=0;d<i;++d)n.enableVertexAttribArray(e+d),n.vertexAttribPointer(e+d,a,l,f,u,h+A*d),s.divisor!==void 0&&n.vertexAttribDivisor(e+d,s.divisor)}}const Be={};Be[ua]={size:4,setter:da},Be[t0]={size:8,setter:da},Be[n0]={size:12,setter:da},Be[r0]={size:16,setter:da},Be[Kl]={size:4,setter:Sn},Be[i0]={size:8,setter:Sn},Be[s0]={size:12,setter:Sn},Be[o0]={size:16,setter:Sn},Be[jl]={size:4,setter:ga},Be[d0]={size:8,setter:ga},Be[g0]={size:12,setter:ga},Be[p0]={size:16,setter:ga},Be[a0]={size:4,setter:Sn},Be[c0]={size:8,setter:Sn},Be[l0]={size:12,setter:Sn},Be[u0]={size:16,setter:Sn},Be[f0]={size:4,setter:Xl,count:2},Be[A0]={size:9,setter:Xl,count:3},Be[h0]={size:16,setter:Xl,count:4};function E0(n){const e=n.name;return e.startsWith("gl_")||e.startsWith("webgl_")}const Jv=/(\.|\[|]|\w+)/g,qv=n=>n>="0"&&n<="9";function x0(n,e,t,r){const i=n.split(Jv).filter(a=>a!=="");let s=0,o="";for(;;){const a=i[s++];o+=a;const l=qv(a[0]),c=l?parseInt(a):a;if(l&&(o+=i[s++]),s===i.length){t[c]=e;break}else{const f=i[s++],h=f==="[",A=t[c]||(h?[]:{});t[c]=A,t=A,r[o]=r[o]||(function(d){return function(g){D0(d,g)}})(A),o+=f}}}function Kv(n,e){let t=0;function r(a,l,c){const u=l.name.endsWith("[0]"),f=l.type,h=q[f];if(!h)throw new Error(`unknown type: 0x${f.toString(16)}`);let A;if(h.bindPoint){const d=t;t+=l.size,u?A=h.arraySetter(n,f,d,c,l.size):A=h.setter(n,f,d,c,l.size)}else h.arraySetter&&u?A=h.arraySetter(n,c):A=h.setter(n,c);return A.location=c,A}const i={},s={},o=n.getProgramParameter(e,e0);for(let a=0;a<o;++a){const l=n.getActiveUniform(e,a);if(E0(l))continue;let c=l.name;c.endsWith("[0]")&&(c=c.substr(0,c.length-3));const u=n.getUniformLocation(e,l.name);if(u){const f=r(e,l,u);i[c]=f,x0(c,f,s,i)}}return i}function jv(n,e){const t={},r=n.getProgramParameter(e,ev);for(let i=0;i<r;++i){const s=n.getTransformFeedbackVarying(e,i);t[s.name]={index:i,type:s.type,size:s.size}}return t}function Wv(n,e){const t=n.getProgramParameter(e,e0),r=[],i=[];for(let a=0;a<t;++a){i.push(a),r.push({});const l=n.getActiveUniform(e,a);r[a].name=l.name}[["UNIFORM_TYPE","type"],["UNIFORM_SIZE","size"],["UNIFORM_BLOCK_INDEX","blockNdx"],["UNIFORM_OFFSET","offset"]].forEach(function(a){const l=a[0],c=a[1];n.getActiveUniforms(e,i,n[l]).forEach(function(u,f){r[f][c]=u})});const s={},o=n.getProgramParameter(e,tv);for(let a=0;a<o;++a){const l=n.getActiveUniformBlockName(e,a),c={index:n.getUniformBlockIndex(e,l),usedByVertexShader:n.getActiveUniformBlockParameter(e,a,nv),usedByFragmentShader:n.getActiveUniformBlockParameter(e,a,rv),size:n.getActiveUniformBlockParameter(e,a,iv),uniformIndices:n.getActiveUniformBlockParameter(e,a,sv)};c.used=c.usedByVertexShader||c.usedByFragmentShader,s[l]=c}return{blockSpecs:s,uniformData:r}}const B0=/\[\d+\]\.$/,Xv=(n,e)=>((n+(e-1))/e|0)*e;function Zv(n,e,t,r){if(e||t){r=r||1;const s=n.length/4;return function(o){let a=0,l=0;for(let c=0;c<s;++c){for(let u=0;u<r;++u)n[a++]=o[l++];a+=4-r}}}else return function(i){i.length?n.set(i):n[0]=i}}function $v(n,e,t,r){const i=t.blockSpecs,s=t.uniformData,o=i[r];if(!o)return WB("no uniform block object named:",r),{name:r,uniforms:{}};const a=new ArrayBuffer(o.size),l=n.createBuffer(),c=o.index;n.bindBuffer(ql,l),n.uniformBlockBinding(e,o.index,c);let u=r+".";B0.test(u)&&(u=u.replace(B0,"."));const f={},h={},A={};return o.uniformIndices.forEach(function(d){const g=s[d];let p=g.name;p.startsWith(u)&&(p=p.substr(u.length));const m=p.endsWith("[0]");m&&(p=p.substr(0,p.length-3));const C=q[g.type],y=C.Type,w=m?Xv(C.size,16)*g.size:C.size*g.size,E=new y(a,g.offset,w/y.BYTES_PER_ELEMENT);f[p]=E;const x=Zv(E,m,C.rows,C.cols);h[p]=x,x0(p,x,A,h)}),{name:r,array:a,asFloat:new Float32Array(a),buffer:l,uniforms:f,setters:h}}function v0(n,e,t){return $v(n,e.program,e.uniformBlockSpec,t)}function S0(n,e,t){const i=(e.uniformBlockSpec||e).blockSpecs[t.name];if(i){const s=i.index;return n.bindBufferRange(ql,s,t.buffer,t.offset||0,t.array.byteLength),!0}return!1}function Q0(n,e,t){S0(n,e,t)&&n.bufferData(ql,t.array,XB)}function ms(n,e){const t=n.setters;for(const r in e){const i=t[r];if(i){const s=e[r];i(s)}}}function D0(n,e){for(const t in e){const r=n[t];typeof r=="function"?r(e[t]):D0(n[t],e[t])}}function ir(n,...e){const t=n.uniformSetters||n,r=e.length;for(let i=0;i<r;++i){const s=e[i];if(Array.isArray(s)){const o=s.length;for(let a=0;a<o;++a)ir(t,s[a])}else for(const o in s){const a=t[o];a&&a(s[o])}}}function e3(n,e){const t={},r=n.getProgramParameter(e,$B);for(let i=0;i<r;++i){const s=n.getActiveAttrib(e,i);if(E0(s))continue;const o=n.getAttribLocation(e,s.name),a=Be[s.type],l=a.setter(n,o,a);l.location=o,t[s.name]=l}return t}function t3(n,e){for(const t in e){const r=n[t];r&&r(e[t])}}function sr(n,e,t){t.vertexArrayObject?n.bindVertexArray(t.vertexArrayObject):(t3(e.attribSetters||e,t.attribs),t.indices&&n.bindBuffer(ZB,t.indices))}function n3(n,e){const t=Kv(n,e),r=e3(n,e),i={program:e,uniformSetters:t,attribSetters:r};return Hr(n)&&(i.uniformBlockSpec=Wv(n,e),i.transformFeedbackInfo=jv(n,e)),i}const r3=4,k0=5123;function pa(n,e,t,r,i,s){t=t===void 0?r3:t;const o=e.indices,a=e.elementType,l=r===void 0?e.numElements:r;i=i===void 0?0:i,a||o?s!==void 0?n.drawElementsInstanced(t,l,a===void 0?k0:e.elementType,i,s):n.drawElements(t,l,a===void 0?k0:e.elementType,i):s!==void 0?n.drawArraysInstanced(t,i,l,s):n.drawArrays(t,i,l)}const i3=36160,or=36161,s3=3553,o3=5121,a3=6402,c3=6408,l3=33190,u3=36012,f3=35056,A3=36013,h3=32854,d3=32855,g3=36194,F0=33189,R0=6401,M0=36168,Zl=34041,$l=36064,ma=36096,N0=36128,eu=33306,tu=33071,nu=9729,T0=[{format:c3,type:o3,min:nu,wrap:tu},{format:Zl}],Bt={};Bt[Zl]=eu,Bt[R0]=N0,Bt[M0]=N0,Bt[a3]=ma,Bt[F0]=ma,Bt[l3]=ma,Bt[u3]=ma,Bt[f3]=eu,Bt[A3]=eu;function p3(n,e){return Bt[n]||Bt[e]}const Qn={};Qn[h3]=!0,Qn[d3]=!0,Qn[g3]=!0,Qn[Zl]=!0,Qn[F0]=!0,Qn[R0]=!0,Qn[M0]=!0;function m3(n){return Qn[n]}const w3=32;function C3(n){return n>=$l&&n<$l+w3}function P0(n,e,t,r){const i=i3,s=n.createFramebuffer();n.bindFramebuffer(i,s),t=t||n.drawingBufferWidth,r=r||n.drawingBufferHeight,e=e||T0;const o=[],a={framebuffer:s,attachments:[],width:t,height:r};return e.forEach(function(l,c){let u=l.attachment;const f=l.samples,h=l.format;let A=l.attachmentPoint||p3(h,l.internalFormat);if(A||(A=$l+c),C3(A)&&o.push(A),!u)if(f!==void 0||m3(h))u=n.createRenderbuffer(),n.bindRenderbuffer(or,u),f>1?n.renderbufferStorageMultisample(or,f,h,t,r):n.renderbufferStorage(or,h,t,r);else{const d=Object.assign({},l);d.width=t,d.height=r,d.auto===void 0&&(d.auto=!1,d.min=d.min||d.minMag||nu,d.mag=d.mag||d.minMag||nu,d.wrapS=d.wrapS||d.wrap||tu,d.wrapT=d.wrapT||d.wrap||tu),u=ps(n,d)}if(vd(n,u))n.framebufferRenderbuffer(i,A,or,u);else if(Xo(n,u))l.layer!==void 0?n.framebufferTextureLayer(i,A,u,l.level||0,l.layer):n.framebufferTexture2D(i,A,l.target||s3,u,l.level||0);else throw new Error("unknown attachment type");a.attachments.push(u)}),n.drawBuffers&&n.drawBuffers(o),a}function y3(n,e,t,r,i){r=r||n.drawingBufferWidth,i=i||n.drawingBufferHeight,e.width=r,e.height=i,t=t||T0,t.forEach(function(s,o){const a=e.attachments[o],l=s.format,c=s.samples;if(c!==void 0||vd(n,a))n.bindRenderbuffer(or,a),c>1?n.renderbufferStorageMultisample(or,c,l,r,i):n.renderbufferStorage(or,l,r,i);else if(Xo(n,a))jB(n,a,s,r,i);else throw new Error("unknown attachment type")})}function I3(n,e,t){const r=n.createVertexArray();return n.bindVertexArray(r),e.length||(e=[e]),e.forEach(function(i){sr(n,i,t)}),n.bindVertexArray(null),{numElements:t.numElements,elementType:t.elementType,vertexArrayObject:r}}const b3=/^(.*?)_/;function E3(n,e){Pl(n,0);const t=n.getExtension(e);if(t){const r={},i=b3.exec(e)[1],s="_"+i;for(const o in t){const a=t[o],l=typeof a=="function",c=l?i:s;let u=o;o.endsWith(c)&&(u=o.substring(0,o.length-c.length)),n[u]!==void 0?!l&&n[u]!==a&&Bd(u,n[u],a,o):l?n[u]=(function(f){return function(){return f.apply(t,arguments)}})(a):(n[u]=a,r[u]=a)}r.constructor={name:t.constructor.name},Pl(r,0)}return t}const L0=["ANGLE_instanced_arrays","EXT_blend_minmax","EXT_color_buffer_float","EXT_color_buffer_half_float","EXT_disjoint_timer_query","EXT_disjoint_timer_query_webgl2","EXT_frag_depth","EXT_sRGB","EXT_shader_texture_lod","EXT_texture_filter_anisotropic","OES_element_index_uint","OES_standard_derivatives","OES_texture_float","OES_texture_float_linear","OES_texture_half_float","OES_texture_half_float_linear","OES_vertex_array_object","WEBGL_color_buffer_float","WEBGL_compressed_texture_atc","WEBGL_compressed_texture_etc1","WEBGL_compressed_texture_pvrtc","WEBGL_compressed_texture_s3tc","WEBGL_compressed_texture_s3tc_srgb","WEBGL_depth_texture","WEBGL_draw_buffers"];function O0(n){for(let e=0;e<L0.length;++e)E3(n,L0[e])}function x3(n,e){const t=["webgl2","webgl","experimental-webgl"];let r=null;for(let i=0;i<t.length;++i)if(r=n.getContext(t[i],e),r){O0(r);break}return r}function B3(n,e){return x3(n,e)}const v3=`flat out lowp vec4 vFillColor;flat out lowp vec4 vStrokeColor;flat out float vHalfStrokeWidth;flat out vec4 vCornerRadii;
|
|
339
|
+
</div>`);else throw new Error("Unsupported input type: "+r.input);r.description&&n.push(ce`<div class="description">${r.description}</div>`)}return n}class eB{#e;#t;#n;constructor(e,n){this.#e=e,this.#t=n,this.#n=void 0}initialize(e){const n=[];e.visit(r=>{const s=r.paramRuntime;n.push(...$x(s))});const i=this.#t.inputBindingContainer;if(!(!i||i=="none"||!n.length)){if(this.#n=document.createElement("div"),this.#n.className="gs-input-bindings",i=="default")this.#e.appendChild(this.#n);else if(i instanceof HTMLElement)i.appendChild(this.#n);else throw new Error("Invalid inputBindingContainer");n.length&&Wr(ce`<div class="gs-input-binding">${n}</div>`,this.#n)}}remove(){this.#n?.remove()}}const Yl=5120,ws=5121,Vl=5122,Jl=5123,ql=5124,Kl=5125,jl=5126,tB=32819,nB=32820,iB=33635,rB=5131,sB=33640,oB=35899,aB=35902,cB=36269,lB=34042,n0={};{const t=n0;t[Yl]=Int8Array,t[ws]=Uint8Array,t[Vl]=Int16Array,t[Jl]=Uint16Array,t[ql]=Int32Array,t[Kl]=Uint32Array,t[jl]=Float32Array,t[tB]=Uint16Array,t[nB]=Uint16Array,t[iB]=Uint16Array,t[rB]=Uint16Array,t[sB]=Uint32Array,t[oB]=Uint32Array,t[aB]=Uint32Array,t[cB]=Uint32Array,t[lB]=Uint32Array}function Wl(t){if(t instanceof Int8Array)return Yl;if(t instanceof Uint8Array||t instanceof Uint8ClampedArray)return ws;if(t instanceof Int16Array)return Vl;if(t instanceof Uint16Array)return Jl;if(t instanceof Int32Array)return ql;if(t instanceof Uint32Array)return Kl;if(t instanceof Float32Array)return jl;throw new Error("unsupported typed array type")}function fB(t){if(t===Int8Array)return Yl;if(t===Uint8Array||t===Uint8ClampedArray)return ws;if(t===Int16Array)return Vl;if(t===Uint16Array)return Jl;if(t===Int32Array)return ql;if(t===Uint32Array)return Kl;if(t===Float32Array)return jl;throw new Error("unsupported typed array type")}function uB(t){const e=n0[t];if(!e)throw new Error("unknown gl type");return e}const aa=typeof SharedArrayBuffer<"u"?function(e){return e&&e.buffer&&(e.buffer instanceof ArrayBuffer||e.buffer instanceof SharedArrayBuffer)}:function(e){return e&&e.buffer&&e.buffer instanceof ArrayBuffer};function AB(...t){console.error(...t)}function i0(...t){console.warn(...t)}function hB(t,e){return typeof WebGLBuffer<"u"&&e instanceof WebGLBuffer}function r0(t,e){return typeof WebGLRenderbuffer<"u"&&e instanceof WebGLRenderbuffer}function ca(t,e){return typeof WebGLTexture<"u"&&e instanceof WebGLTexture}function dB(t,e){return typeof WebGLSampler<"u"&&e instanceof WebGLSampler}const s0=35044,Pt=34962,gB=34963,pB=34660,mB=5120,wB=5121,yB=5122,CB=5123,EB=5124,IB=5125,bB=5126,o0={attribPrefix:""};function a0(t,e,n,i,r){t.bindBuffer(e,n),t.bufferData(e,i,r||s0)}function c0(t,e,n,i){if(hB(t,e))return e;n=n||Pt;const r=t.createBuffer();return a0(t,n,r,e,i),r}function l0(t){return t==="indices"}function xB(t){return t instanceof Int8Array||t instanceof Uint8Array}function BB(t){return t===Int8Array||t===Uint8Array}function vB(t){return t.length?t:t.data}const SB=/coord|texture/i,QB=/color|colour/i;function f0(t,e){let n;if(SB.test(t)?n=2:QB.test(t)?n=4:n=3,e%n>0)throw new Error(`Can not guess numComponents for attribute '${t}'. Tried ${n} but ${e} values is not evenly divisible by ${n}. You should specify it.`);return n}function DB(t,e){return t.numComponents||t.size||f0(e,vB(t).length)}function Xl(t,e){if(aa(t))return t;if(aa(t.data))return t.data;Array.isArray(t)&&(t={data:t});let n=t.type;return n||(l0(e)?n=Uint16Array:n=Float32Array),new n(t.data)}function kB(t,e){const n={};return Object.keys(e).forEach(function(i){if(!l0(i)){const r=e[i],s=r.attrib||r.name||r.attribName||o0.attribPrefix+i;if(r.value){if(!Array.isArray(r.value)&&!aa(r.value))throw new Error("array.value is not array or typedarray");n[s]={value:r.value}}else{let o,a,l,c;if(r.buffer&&r.buffer instanceof WebGLBuffer)o=r.buffer,c=r.numComponents||r.size,a=r.type,l=r.normalize;else if(typeof r=="number"||typeof r.data=="number"){const f=r.data||r,u=r.type||Float32Array,h=f*u.BYTES_PER_ELEMENT;a=fB(u),l=r.normalize!==void 0?r.normalize:BB(u),c=r.numComponents||r.size||f0(i,f),o=t.createBuffer(),t.bindBuffer(Pt,o),t.bufferData(Pt,h,r.drawType||s0)}else{const f=Xl(r,i);o=c0(t,f,void 0,r.drawType),a=Wl(f),l=r.normalize!==void 0?r.normalize:xB(f),c=DB(r,i)}n[s]={buffer:o,numComponents:c,type:a,normalize:l,stride:r.stride||0,offset:r.offset||0,divisor:r.divisor===void 0?void 0:r.divisor,drawType:r.drawType}}}}),t.bindBuffer(Pt,null),n}function FB(t,e,n,i){n=Xl(n),i!==void 0?(t.bindBuffer(Pt,e.buffer),t.bufferSubData(Pt,i,n)):a0(t,Pt,e.buffer,n,e.drawType)}function RB(t,e){return e===mB||e===wB?1:e===yB||e===CB?2:e===EB||e===IB||e===bB?4:0}const Zl=["position","positions","a_position"];function NB(t,e){let n,i;for(i=0;i<Zl.length&&(n=Zl[i],!(n in e||(n=o0.attribPrefix+n,n in e)));++i);i===Zl.length&&(n=Object.keys(e)[0]);const r=e[n];if(!r.buffer)return 1;t.bindBuffer(Pt,r.buffer);const s=t.getBufferParameter(Pt,pB);t.bindBuffer(Pt,null);const o=RB(t,r.type),a=s/o,l=r.numComponents||r.size,c=a/l;if(c%1!==0)throw new Error(`numComponents ${l} not correct for length ${length}`);return c}function MB(t,e,n){const i=kB(t,e),r=Object.assign({},n||{});r.attribs=Object.assign({},n?n.attribs:{},i);const s=e.indices;if(s){const o=Xl(s,"indices");r.indices=c0(t,o,gB),r.numElements=o.length,r.elementType=Wl(o)}else r.numElements||(r.numElements=NB(t,r.attribs));return r}function Ji(t){return!!t.texStorage2D}const $l=(function(){const t={},e={};function n(i){const r=i.constructor.name;if(!t[r]){for(const s in i)if(typeof i[s]=="number"){const o=e[i[s]];e[i[s]]=o?`${o} | ${s}`:s}t[r]=!0}}return function(r,s){return n(r),e[s]||(typeof s=="number"?`0x${s.toString(16)}`:s)}})(),xn={textureColor:new Uint8Array([128,192,255,255]),textureOptions:{},crossOrigin:void 0},qi=aa,u0=(function(){let t;return function(){return t=t||(typeof document<"u"&&document.createElement?document.createElement("canvas").getContext("2d"):null),t}})(),A0=6406,Lt=6407,de=6408,h0=6409,d0=6410,ys=6402,g0=34041,la=33071,TB=9728,PB=9729,nn=3553,rn=34067,Bn=32879,vn=35866,fa=34069,LB=34070,OB=34071,UB=34072,_B=34073,GB=34074,ef=10241,tf=10240,ua=10242,Aa=10243,p0=32882,zB=33082,HB=33083,YB=33084,VB=33085,nf=3317,m0=3314,w0=32878,y0=3316,C0=3315,E0=32877,JB=37443,qB=37441,KB=37440,jB=33321,WB=36756,XB=33325,ZB=33326,$B=33330,ev=33329,tv=33338,nv=33337,iv=33340,rv=33339,sv=33323,ov=36757,av=33327,cv=33328,lv=33336,fv=33335,uv=33332,Av=33331,hv=33334,dv=33333,gv=32849,pv=35905,mv=36194,wv=36758,yv=35898,Cv=35901,Ev=34843,Iv=34837,bv=36221,xv=36239,Bv=36215,vv=36233,Sv=36209,Qv=36227,Dv=32856,kv=35907,Fv=36759,Rv=32855,Nv=32854,Mv=32857,Tv=34842,Pv=34836,Lv=36220,Ov=36238,Uv=36975,_v=36214,Gv=36232,zv=36226,Hv=36208,Yv=33189,Vv=33190,Jv=36012,qv=36013,Kv=35056,Sn=5120,ge=5121,ha=5122,Ki=5123,da=5124,ri=5125,Je=5126,I0=32819,b0=32820,x0=33635,Bt=5131,Cs=36193,rf=33640,jv=35899,Wv=35902,Xv=36269,Zv=34042,ga=33319,ji=33320,pa=6403,Wi=36244,Xi=36248,si=36249;let sf;function ma(t){if(!sf){const e={};e[A0]={textureFormat:A0,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1,2,2,4],type:[ge,Bt,Cs,Je]},e[h0]={textureFormat:h0,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1,2,2,4],type:[ge,Bt,Cs,Je]},e[d0]={textureFormat:d0,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[2,4,4,8],type:[ge,Bt,Cs,Je]},e[Lt]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3,6,6,12,2],type:[ge,Bt,Cs,Je,x0]},e[de]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,8,8,16,2,2],type:[ge,Bt,Cs,Je,I0,b0]},e[ys]={textureFormat:ys,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2,4],type:[ri,Ki]},e[jB]={textureFormat:pa,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[1],type:[ge]},e[WB]={textureFormat:pa,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[1],type:[Sn]},e[XB]={textureFormat:pa,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[4,2],type:[Je,Bt]},e[ZB]={textureFormat:pa,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[4],type:[Je]},e[$B]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[1],type:[ge]},e[ev]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[1],type:[Sn]},e[uv]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[Ki]},e[Av]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[ha]},e[hv]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ri]},e[dv]={textureFormat:Wi,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[da]},e[sv]={textureFormat:ga,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[2],type:[ge]},e[ov]={textureFormat:ga,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[2],type:[Sn]},e[av]={textureFormat:ga,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[8,4],type:[Je,Bt]},e[cv]={textureFormat:ga,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[8],type:[Je]},e[lv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[ge]},e[fv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2],type:[Sn]},e[tv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Ki]},e[nv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ha]},e[iv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[ri]},e[rv]={textureFormat:ji,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[da]},e[gv]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3],type:[ge]},e[pv]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[3],type:[ge]},e[mv]={textureFormat:Lt,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[3,2],type:[ge,x0]},e[wv]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[3],type:[Sn]},e[yv]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6,4],type:[Je,Bt,jv]},e[Cv]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6,4],type:[Je,Bt,Wv]},e[Ev]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[12,6],type:[Je,Bt]},e[Iv]={textureFormat:Lt,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[Je]},e[bv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[3],type:[ge]},e[xv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[3],type:[Sn]},e[Bv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[6],type:[Ki]},e[vv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[6],type:[ha]},e[Sv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[ri]},e[Qv]={textureFormat:Xi,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[12],type:[da]},e[Dv]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[ge]},e[kv]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[ge]},e[Fv]={textureFormat:de,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[4],type:[Sn]},e[Rv]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,2,4],type:[ge,b0,rf]},e[Nv]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4,2],type:[ge,I0]},e[Mv]={textureFormat:de,colorRenderable:!0,textureFilterable:!0,bytesPerElement:[4],type:[rf]},e[Tv]={textureFormat:de,colorRenderable:!1,textureFilterable:!0,bytesPerElement:[16,8],type:[Je,Bt]},e[Pv]={textureFormat:de,colorRenderable:!1,textureFilterable:!1,bytesPerElement:[16],type:[Je]},e[Lv]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ge]},e[Ov]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Sn]},e[Uv]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[rf]},e[_v]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[Ki]},e[Gv]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[8],type:[ha]},e[zv]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[16],type:[da]},e[Hv]={textureFormat:si,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[16],type:[ri]},e[Yv]={textureFormat:ys,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[2,4],type:[Ki,ri]},e[Vv]={textureFormat:ys,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[ri]},e[Jv]={textureFormat:ys,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Je]},e[Kv]={textureFormat:g0,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Zv]},e[qv]={textureFormat:g0,colorRenderable:!0,textureFilterable:!1,bytesPerElement:[4],type:[Xv]},Object.keys(e).forEach(function(n){const i=e[n];i.bytesPerElementMap={},i.bytesPerElement.forEach(function(r,s){const o=i.type[s];i.bytesPerElementMap[o]=r})}),sf=e}return sf[t]}function $v(t,e){const n=ma(t);if(!n)throw"unknown internal format";const i=n.bytesPerElementMap[e];if(i===void 0)throw"unknown internal format";return i}function Zi(t){const e=ma(t);if(!e)throw"unknown internal format";return{format:e.textureFormat,type:e.type[0]}}function B0(t){return(t&t-1)===0}function e3(t,e,n,i){if(!Ji(t))return B0(e)&&B0(n);const r=ma(i);if(!r)throw"unknown internal format";return r.colorRenderable&&r.textureFilterable}function t3(t){const e=ma(t);if(!e)throw"unknown internal format";return e.textureFilterable}function v0(t,e,n){return qi(e)?Wl(e):n||ge}function wa(t,e,n,i,r){if(r%1!==0)throw"can't guess dimensions";if(!n&&!i){const s=Math.sqrt(r/(e===rn?6:1));s%1===0?(n=s,i=s):(n=r,i=1)}else if(i){if(!n&&(n=r/i,n%1))throw"can't guess dimensions"}else if(i=r/n,i%1)throw"can't guess dimensions";return{width:n,height:i}}function $i(t,e){e.colorspaceConversion!==void 0&&t.pixelStorei(JB,e.colorspaceConversion),e.premultiplyAlpha!==void 0&&t.pixelStorei(qB,e.premultiplyAlpha),e.flipY!==void 0&&t.pixelStorei(KB,e.flipY)}function S0(t){t.pixelStorei(nf,4),Ji(t)&&(t.pixelStorei(m0,0),t.pixelStorei(w0,0),t.pixelStorei(y0,0),t.pixelStorei(C0,0),t.pixelStorei(E0,0))}function n3(t,e,n,i){i.minMag&&(n.call(t,e,ef,i.minMag),n.call(t,e,tf,i.minMag)),i.min&&n.call(t,e,ef,i.min),i.mag&&n.call(t,e,tf,i.mag),i.wrap&&(n.call(t,e,ua,i.wrap),n.call(t,e,Aa,i.wrap),(e===Bn||dB(t,e))&&n.call(t,e,p0,i.wrap)),i.wrapR&&n.call(t,e,p0,i.wrapR),i.wrapS&&n.call(t,e,ua,i.wrapS),i.wrapT&&n.call(t,e,Aa,i.wrapT),i.minLod&&n.call(t,e,zB,i.minLod),i.maxLod&&n.call(t,e,HB,i.maxLod),i.baseLevel&&n.call(t,e,YB,i.baseLevel),i.maxLevel&&n.call(t,e,VB,i.maxLevel)}function Q0(t,e,n){const i=n.target||nn;t.bindTexture(i,e),n3(t,i,t.texParameteri,n)}function i3(t){return t=t||xn.textureColor,qi(t)?t:new Uint8Array([t[0]*255,t[1]*255,t[2]*255,t[3]*255])}function of(t,e,n,i,r,s){n=n||xn.textureOptions,s=s||de;const o=n.target||nn;if(i=i||n.width,r=r||n.height,t.bindTexture(o,e),e3(t,i,r,s))t.generateMipmap(o);else{const a=t3(s)?PB:TB;t.texParameteri(o,ef,a),t.texParameteri(o,tf,a),t.texParameteri(o,ua,la),t.texParameteri(o,Aa,la)}}function Es(t){return t.auto===!0||t.auto===void 0&&t.level===void 0}function af(t,e){return e=e||{},e.cubeFaceOrder||[fa,LB,OB,UB,_B,GB]}function cf(t,e){const i=af(t,e).map(function(r,s){return{face:r,ndx:s}});return i.sort(function(r,s){return r.face-s.face}),i}function D0(t,e,n,i){i=i||xn.textureOptions;const r=i.target||nn,s=i.level||0;let o=n.width,a=n.height;const l=i.internalFormat||i.format||de,c=Zi(l),f=i.format||c.format,u=i.type||c.type;if($i(t,i),t.bindTexture(r,e),r===rn){const h=n.width,A=n.height;let d,g;if(h/6===A)d=A,g=[0,0,1,0,2,0,3,0,4,0,5,0];else if(A/6===h)d=h,g=[0,0,0,1,0,2,0,3,0,4,0,5];else if(h/3===A/2)d=h/3,g=[0,0,1,0,2,0,0,1,1,1,2,1];else if(h/2===A/3)d=h/2,g=[0,0,1,0,0,1,1,1,0,2,1,2];else throw"can't figure out cube map from element: "+(n.src?n.src:n.nodeName);const m=u0();m?(m.canvas.width=d,m.canvas.height=d,o=d,a=d,cf(t,i).forEach(function(p){const w=g[p.ndx*2+0]*d,C=g[p.ndx*2+1]*d;m.drawImage(n,w,C,d,d,0,0,d,d),t.texImage2D(p.face,s,l,f,u,m.canvas)}),m.canvas.width=1,m.canvas.height=1):typeof createImageBitmap<"u"&&(o=d,a=d,cf(t,i).forEach(function(p){const w=g[p.ndx*2+0]*d,C=g[p.ndx*2+1]*d;t.texImage2D(p.face,s,l,d,d,0,f,u,null),createImageBitmap(n,w,C,d,d,{premultiplyAlpha:"none",colorSpaceConversion:"none"}).then(function(y){$i(t,i),t.bindTexture(r,e),t.texImage2D(p.face,s,l,f,u,y),Es(i)&&of(t,e,i,o,a,l)})}))}else if(r===Bn||r===vn){const h=Math.min(n.width,n.height),A=Math.max(n.width,n.height),d=A/h;if(d%1!==0)throw"can not compute 3D dimensions of element";const g=n.width===A?1:0,m=n.height===A?1:0;t.pixelStorei(nf,1),t.pixelStorei(m0,n.width),t.pixelStorei(w0,0),t.pixelStorei(E0,0),t.texImage3D(r,s,l,h,h,h,0,f,u,null);for(let p=0;p<d;++p){const w=p*h*g,C=p*h*m;t.pixelStorei(y0,w),t.pixelStorei(C0,C),t.texSubImage3D(r,s,0,0,p,h,h,1,f,u,n)}S0(t)}else t.texImage2D(r,s,l,f,u,n);Es(i)&&of(t,e,i,o,a,l),Q0(t,e,i)}function Is(){}function r3(t){if(typeof document<"u"){const e=document.createElement("a");return e.href=t,e.hostname===location.hostname&&e.port===location.port&&e.protocol===location.protocol}else{const e=new URL(location.href).origin;return new URL(t,location.href).origin===e}}function s3(t,e){return e===void 0&&!r3(t)?"anonymous":e}function o3(t,e,n){n=n||Is;let i;if(e=e!==void 0?e:xn.crossOrigin,e=s3(t,e),typeof Image<"u"){i=new Image,e!==void 0&&(i.crossOrigin=e);const r=function(){i.removeEventListener("error",s),i.removeEventListener("load",o),i=null},s=function(){const l="couldn't load image: "+t;AB(l),n(l,i),r()},o=function(){n(null,i),r()};return i.addEventListener("error",s),i.addEventListener("load",o),i.src=t,i}else if(typeof ImageBitmap<"u"){let r,s;const o=function(){n(r,s)},a={};e&&(a.mode="cors"),fetch(t,a).then(function(l){if(!l.ok)throw l;return l.blob()}).then(function(l){return createImageBitmap(l,{premultiplyAlpha:"none",colorSpaceConversion:"none"})}).then(function(l){s=l,setTimeout(o)}).catch(function(l){r=l,setTimeout(o)}),i=null}return i}function k0(t){return typeof ImageBitmap<"u"&&t instanceof ImageBitmap||typeof ImageData<"u"&&t instanceof ImageData||typeof HTMLElement<"u"&&t instanceof HTMLElement}function lf(t,e,n){return k0(t)?(setTimeout(function(){n(null,t)}),t):o3(t,e,n)}function ff(t,e,n){n=n||xn.textureOptions;const i=n.target||nn;if(t.bindTexture(i,e),n.color===!1)return;const r=i3(n.color);if(i===rn)for(let s=0;s<6;++s)t.texImage2D(fa+s,0,de,1,1,0,de,ge,r);else i===Bn||i===vn?t.texImage3D(i,0,de,1,1,1,0,de,ge,r):t.texImage2D(i,0,de,1,1,0,de,ge,r)}function a3(t,e,n,i){return i=i||Is,n=n||xn.textureOptions,ff(t,e,n),n=Object.assign({},n),lf(n.src,n.crossOrigin,function(s,o){s?i(s,e,o):(D0(t,e,o,n),i(null,e,o))})}function c3(t,e,n,i){i=i||Is;const r=n.src;if(r.length!==6)throw"there must be 6 urls for a cubemap";const s=n.level||0,o=n.internalFormat||n.format||de,a=Zi(o),l=n.format||a.format,c=n.type||ge,f=n.target||nn;if(f!==rn)throw"target must be TEXTURE_CUBE_MAP";ff(t,e,n),n=Object.assign({},n);let u=6;const h=[],A=af(t,n);let d;function g(m){return function(p,w){--u,p?h.push(p):w.width!==w.height?h.push("cubemap face img is not a square: "+w.src):($i(t,n),t.bindTexture(f,e),u===5?af().forEach(function(C){t.texImage2D(C,s,o,l,c,w)}):t.texImage2D(m,s,o,l,c,w),Es(n)&&t.generateMipmap(f)),u===0&&i(h.length?h:void 0,e,d)}}d=r.map(function(m,p){return lf(m,n.crossOrigin,g(A[p]))})}function l3(t,e,n,i){i=i||Is;const r=n.src,s=n.internalFormat||n.format||de,o=Zi(s),a=n.format||o.format,l=n.type||ge,c=n.target||vn;if(c!==Bn&&c!==vn)throw"target must be TEXTURE_3D or TEXTURE_2D_ARRAY";ff(t,e,n),n=Object.assign({},n);let f=r.length;const u=[];let h;const A=n.level||0;let d=n.width,g=n.height;const m=r.length;let p=!0;function w(C){return function(y,b){if(--f,y)u.push(y);else{if($i(t,n),t.bindTexture(c,e),p){p=!1,d=n.width||b.width,g=n.height||b.height,t.texImage3D(c,A,s,d,g,m,0,a,l,null);for(let x=0;x<m;++x)t.texSubImage3D(c,A,0,0,x,d,g,1,a,l,b)}else{let x=b,I;(b.width!==d||b.height!==g)&&(I=u0(),x=I.canvas,I.canvas.width=d,I.canvas.height=g,I.drawImage(b,0,0,d,g)),t.texSubImage3D(c,A,0,0,C,d,g,1,a,l,x),I&&x===I.canvas&&(I.canvas.width=0,I.canvas.height=0)}Es(n)&&t.generateMipmap(c)}f===0&&i(u.length?u:void 0,e,h)}}h=r.map(function(C,y){return lf(C,n.crossOrigin,w(y))})}function F0(t,e,n,i){i=i||xn.textureOptions;const r=i.target||nn;t.bindTexture(r,e);let s=i.width,o=i.height,a=i.depth;const l=i.level||0,c=i.internalFormat||i.format||de,f=Zi(c),u=i.format||f.format,h=i.type||v0(t,n,f.type);if(qi(n))n instanceof Uint8ClampedArray&&(n=new Uint8Array(n.buffer));else{const m=uB(h);n=new m(n)}const A=$v(c,h),d=n.byteLength/A;if(d%1)throw"length wrong size for format: "+$l(t,u);let g;if(r===Bn||r===vn)if(!s&&!o&&!a){const m=Math.cbrt(d);if(m%1!==0)throw"can't guess cube size of array of numElements: "+d;s=m,o=m,a=m}else s&&(!o||!a)?(g=wa(t,r,o,a,d/s),o=g.width,a=g.height):o&&(!s||!a)?(g=wa(t,r,s,a,d/o),s=g.width,a=g.height):(g=wa(t,r,s,o,d/a),s=g.width,o=g.height);else g=wa(t,r,s,o,d),s=g.width,o=g.height;if(S0(t),t.pixelStorei(nf,i.unpackAlignment||1),$i(t,i),r===rn){const m=A/n.BYTES_PER_ELEMENT,p=d/6*m;cf(t,i).forEach(w=>{const C=p*w.ndx,y=n.subarray(C,C+p);t.texImage2D(w.face,l,c,s,o,0,u,h,y)})}else r===Bn||r===vn?t.texImage3D(r,l,c,s,o,a,0,u,h,n):t.texImage2D(r,l,c,s,o,0,u,h,n);return{width:s,height:o,depth:a,type:h}}function f3(t,e,n){const i=n.target||nn;t.bindTexture(i,e);const r=n.level||0,s=n.internalFormat||n.format||de,o=Zi(s),a=n.format||o.format,l=n.type||o.type;if($i(t,n),i===rn)for(let c=0;c<6;++c)t.texImage2D(fa+c,r,s,n.width,n.height,0,a,l,null);else i===Bn||i===vn?t.texImage3D(i,r,s,n.width,n.height,n.depth,0,a,l,null):t.texImage2D(i,r,s,n.width,n.height,0,a,l,null)}function bs(t,e,n){n=n||Is,e=e||xn.textureOptions;const i=t.createTexture(),r=e.target||nn;let s=e.width||1,o=e.height||1;const a=e.internalFormat||de;t.bindTexture(r,i),r===rn&&(t.texParameteri(r,ua,la),t.texParameteri(r,Aa,la));let l=e.src;if(l)if(typeof l=="function"&&(l=l(t,e)),typeof l=="string")a3(t,i,e,n);else if(qi(l)||Array.isArray(l)&&(typeof l[0]=="number"||Array.isArray(l[0])||qi(l[0]))){const c=F0(t,i,l,e);s=c.width,o=c.height}else Array.isArray(l)&&(typeof l[0]=="string"||k0(l[0]))?r===rn?c3(t,i,e,n):l3(t,i,e,n):(D0(t,i,l,e),s=l.width,o=l.height);else f3(t,i,e);return Es(e)&&of(t,i,e,s,o,a),Q0(t,i,e),i}function u3(t,e,n,i,r,s){i=i||n.width,r=r||n.height,s=s||n.depth;const o=n.target||nn;t.bindTexture(o,e);const a=n.level||0,l=n.internalFormat||n.format||de,c=Zi(l),f=n.format||c.format;let u;const h=n.src;if(h&&(qi(h)||Array.isArray(h)&&typeof h[0]=="number")?u=n.type||v0(t,h,c.type):u=n.type||c.type,o===rn)for(let A=0;A<6;++A)t.texImage2D(fa+A,a,l,i,r,0,f,u,null);else o===Bn||o===vn?t.texImage3D(o,a,l,i,r,s,0,f,u,null):t.texImage2D(o,a,l,i,r,0,f,u,null)}const A3=i0,ya=33984,h3=35048,Ca=34962,d3=34963,uf=35345,R0=35718,g3=35721,p3=35971,m3=35382,w3=35396,y3=35398,C3=35392,E3=35395,Ea=5126,N0=35664,M0=35665,T0=35666,Af=5124,P0=35667,L0=35668,O0=35669,U0=35670,_0=35671,G0=35672,z0=35673,H0=35674,Y0=35675,V0=35676,I3=35678,b3=35680,x3=35679,B3=35682,v3=35685,S3=35686,Q3=35687,D3=35688,k3=35689,F3=35690,R3=36289,N3=36292,M3=36293,hf=5125,J0=36294,q0=36295,K0=36296,T3=36298,P3=36299,L3=36300,O3=36303,U3=36306,_3=36307,G3=36308,z3=36311,Ia=3553,ba=34067,df=32879,xa=35866,q={};function j0(t,e){return q[e].bindPoint}function H3(t,e){return function(n){t.uniform1f(e,n)}}function Y3(t,e){return function(n){t.uniform1fv(e,n)}}function V3(t,e){return function(n){t.uniform2fv(e,n)}}function J3(t,e){return function(n){t.uniform3fv(e,n)}}function q3(t,e){return function(n){t.uniform4fv(e,n)}}function W0(t,e){return function(n){t.uniform1i(e,n)}}function X0(t,e){return function(n){t.uniform1iv(e,n)}}function Z0(t,e){return function(n){t.uniform2iv(e,n)}}function $0(t,e){return function(n){t.uniform3iv(e,n)}}function eg(t,e){return function(n){t.uniform4iv(e,n)}}function K3(t,e){return function(n){t.uniform1ui(e,n)}}function j3(t,e){return function(n){t.uniform1uiv(e,n)}}function W3(t,e){return function(n){t.uniform2uiv(e,n)}}function X3(t,e){return function(n){t.uniform3uiv(e,n)}}function Z3(t,e){return function(n){t.uniform4uiv(e,n)}}function $3(t,e){return function(n){t.uniformMatrix2fv(e,!1,n)}}function eS(t,e){return function(n){t.uniformMatrix3fv(e,!1,n)}}function tS(t,e){return function(n){t.uniformMatrix4fv(e,!1,n)}}function nS(t,e){return function(n){t.uniformMatrix2x3fv(e,!1,n)}}function iS(t,e){return function(n){t.uniformMatrix3x2fv(e,!1,n)}}function rS(t,e){return function(n){t.uniformMatrix2x4fv(e,!1,n)}}function sS(t,e){return function(n){t.uniformMatrix4x2fv(e,!1,n)}}function oS(t,e){return function(n){t.uniformMatrix3x4fv(e,!1,n)}}function aS(t,e){return function(n){t.uniformMatrix4x3fv(e,!1,n)}}function et(t,e,n,i){const r=j0(t,e);return Ji(t)?function(s){let o,a;ca(t,s)?(o=s,a=null):(o=s.texture,a=s.sampler),t.uniform1i(i,n),t.activeTexture(ya+n),t.bindTexture(r,o),t.bindSampler(n,a)}:function(s){t.uniform1i(i,n),t.activeTexture(ya+n),t.bindTexture(r,s)}}function tt(t,e,n,i,r){const s=j0(t,e),o=new Int32Array(r);for(let a=0;a<r;++a)o[a]=n+a;return Ji(t)?function(a){t.uniform1iv(i,o),a.forEach(function(l,c){t.activeTexture(ya+o[c]);let f,u;ca(t,l)?(f=l,u=null):(f=l.texture,u=l.sampler),t.bindSampler(n,u),t.bindTexture(s,f)})}:function(a){t.uniform1iv(i,o),a.forEach(function(l,c){t.activeTexture(ya+o[c]),t.bindTexture(s,l)})}}q[Ea]={Type:Float32Array,size:4,setter:H3,arraySetter:Y3},q[N0]={Type:Float32Array,size:8,setter:V3,cols:2},q[M0]={Type:Float32Array,size:12,setter:J3,cols:3},q[T0]={Type:Float32Array,size:16,setter:q3,cols:4},q[Af]={Type:Int32Array,size:4,setter:W0,arraySetter:X0},q[P0]={Type:Int32Array,size:8,setter:Z0,cols:2},q[L0]={Type:Int32Array,size:12,setter:$0,cols:3},q[O0]={Type:Int32Array,size:16,setter:eg,cols:4},q[hf]={Type:Uint32Array,size:4,setter:K3,arraySetter:j3},q[J0]={Type:Uint32Array,size:8,setter:W3,cols:2},q[q0]={Type:Uint32Array,size:12,setter:X3,cols:3},q[K0]={Type:Uint32Array,size:16,setter:Z3,cols:4},q[U0]={Type:Uint32Array,size:4,setter:W0,arraySetter:X0},q[_0]={Type:Uint32Array,size:8,setter:Z0,cols:2},q[G0]={Type:Uint32Array,size:12,setter:$0,cols:3},q[z0]={Type:Uint32Array,size:16,setter:eg,cols:4},q[H0]={Type:Float32Array,size:32,setter:$3,rows:2,cols:2},q[Y0]={Type:Float32Array,size:48,setter:eS,rows:3,cols:3},q[V0]={Type:Float32Array,size:64,setter:tS,rows:4,cols:4},q[v3]={Type:Float32Array,size:32,setter:nS,rows:2,cols:3},q[S3]={Type:Float32Array,size:32,setter:rS,rows:2,cols:4},q[Q3]={Type:Float32Array,size:48,setter:iS,rows:3,cols:2},q[D3]={Type:Float32Array,size:48,setter:oS,rows:3,cols:4},q[k3]={Type:Float32Array,size:64,setter:sS,rows:4,cols:2},q[F3]={Type:Float32Array,size:64,setter:aS,rows:4,cols:3},q[I3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:Ia},q[b3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:ba},q[x3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:df},q[B3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:Ia},q[R3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:xa},q[N3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:xa},q[M3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:ba},q[T3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:Ia},q[P3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:df},q[L3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:ba},q[O3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:xa},q[U3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:Ia},q[_3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:df},q[G3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:ba},q[z3]={Type:null,size:0,setter:et,arraySetter:tt,bindPoint:xa};function Ba(t,e){return function(n){if(n.value)switch(t.disableVertexAttribArray(e),n.value.length){case 4:t.vertexAttrib4fv(e,n.value);break;case 3:t.vertexAttrib3fv(e,n.value);break;case 2:t.vertexAttrib2fv(e,n.value);break;case 1:t.vertexAttrib1fv(e,n.value);break;default:throw new Error("the length of a float constant value must be between 1 and 4!")}else t.bindBuffer(Ca,n.buffer),t.enableVertexAttribArray(e),t.vertexAttribPointer(e,n.numComponents||n.size,n.type||Ea,n.normalize||!1,n.stride||0,n.offset||0),n.divisor!==void 0&&t.vertexAttribDivisor(e,n.divisor)}}function Qn(t,e){return function(n){if(n.value)if(t.disableVertexAttribArray(e),n.value.length===4)t.vertexAttrib4iv(e,n.value);else throw new Error("The length of an integer constant value must be 4!");else t.bindBuffer(Ca,n.buffer),t.enableVertexAttribArray(e),t.vertexAttribIPointer(e,n.numComponents||n.size,n.type||Af,n.stride||0,n.offset||0),n.divisor!==void 0&&t.vertexAttribDivisor(e,n.divisor)}}function va(t,e){return function(n){if(n.value)if(t.disableVertexAttribArray(e),n.value.length===4)t.vertexAttrib4uiv(e,n.value);else throw new Error("The length of an unsigned integer constant value must be 4!");else t.bindBuffer(Ca,n.buffer),t.enableVertexAttribArray(e),t.vertexAttribIPointer(e,n.numComponents||n.size,n.type||hf,n.stride||0,n.offset||0),n.divisor!==void 0&&t.vertexAttribDivisor(e,n.divisor)}}function gf(t,e,n){const i=n.size,r=n.count;return function(s){t.bindBuffer(Ca,s.buffer);const o=s.size||s.numComponents||i,a=o/r,l=s.type||Ea,f=q[l].size*o,u=s.normalize||!1,h=s.offset||0,A=f/r;for(let d=0;d<r;++d)t.enableVertexAttribArray(e+d),t.vertexAttribPointer(e+d,a,l,u,f,h+A*d),s.divisor!==void 0&&t.vertexAttribDivisor(e+d,s.divisor)}}const Be={};Be[Ea]={size:4,setter:Ba},Be[N0]={size:8,setter:Ba},Be[M0]={size:12,setter:Ba},Be[T0]={size:16,setter:Ba},Be[Af]={size:4,setter:Qn},Be[P0]={size:8,setter:Qn},Be[L0]={size:12,setter:Qn},Be[O0]={size:16,setter:Qn},Be[hf]={size:4,setter:va},Be[J0]={size:8,setter:va},Be[q0]={size:12,setter:va},Be[K0]={size:16,setter:va},Be[U0]={size:4,setter:Qn},Be[_0]={size:8,setter:Qn},Be[G0]={size:12,setter:Qn},Be[z0]={size:16,setter:Qn},Be[H0]={size:4,setter:gf,count:2},Be[Y0]={size:9,setter:gf,count:3},Be[V0]={size:16,setter:gf,count:4};function tg(t){const e=t.name;return e.startsWith("gl_")||e.startsWith("webgl_")}const cS=/(\.|\[|]|\w+)/g,lS=t=>t>="0"&&t<="9";function ng(t,e,n,i){const r=t.split(cS).filter(a=>a!=="");let s=0,o="";for(;;){const a=r[s++];o+=a;const l=lS(a[0]),c=l?parseInt(a):a;if(l&&(o+=r[s++]),s===r.length){n[c]=e;break}else{const u=r[s++],h=u==="[",A=n[c]||(h?[]:{});n[c]=A,n=A,i[o]=i[o]||(function(d){return function(g){ag(d,g)}})(A),o+=u}}}function fS(t,e){let n=0;function i(a,l,c){const f=l.name.endsWith("[0]"),u=l.type,h=q[u];if(!h)throw new Error(`unknown type: 0x${u.toString(16)}`);let A;if(h.bindPoint){const d=n;n+=l.size,f?A=h.arraySetter(t,u,d,c,l.size):A=h.setter(t,u,d,c,l.size)}else h.arraySetter&&f?A=h.arraySetter(t,c):A=h.setter(t,c);return A.location=c,A}const r={},s={},o=t.getProgramParameter(e,R0);for(let a=0;a<o;++a){const l=t.getActiveUniform(e,a);if(tg(l))continue;let c=l.name;c.endsWith("[0]")&&(c=c.substr(0,c.length-3));const f=t.getUniformLocation(e,l.name);if(f){const u=i(e,l,f);r[c]=u,ng(c,u,s,r)}}return r}function uS(t,e){const n={},i=t.getProgramParameter(e,p3);for(let r=0;r<i;++r){const s=t.getTransformFeedbackVarying(e,r);n[s.name]={index:r,type:s.type,size:s.size}}return n}function AS(t,e){const n=t.getProgramParameter(e,R0),i=[],r=[];for(let a=0;a<n;++a){r.push(a),i.push({});const l=t.getActiveUniform(e,a);i[a].name=l.name}[["UNIFORM_TYPE","type"],["UNIFORM_SIZE","size"],["UNIFORM_BLOCK_INDEX","blockNdx"],["UNIFORM_OFFSET","offset"]].forEach(function(a){const l=a[0],c=a[1];t.getActiveUniforms(e,r,t[l]).forEach(function(f,u){i[u][c]=f})});const s={},o=t.getProgramParameter(e,m3);for(let a=0;a<o;++a){const l=t.getActiveUniformBlockName(e,a),c={index:t.getUniformBlockIndex(e,l),usedByVertexShader:t.getActiveUniformBlockParameter(e,a,w3),usedByFragmentShader:t.getActiveUniformBlockParameter(e,a,y3),size:t.getActiveUniformBlockParameter(e,a,C3),uniformIndices:t.getActiveUniformBlockParameter(e,a,E3)};c.used=c.usedByVertexShader||c.usedByFragmentShader,s[l]=c}return{blockSpecs:s,uniformData:i}}const ig=/\[\d+\]\.$/,hS=(t,e)=>((t+(e-1))/e|0)*e;function dS(t,e,n,i){if(e||n){i=i||1;const s=t.length/4;return function(o){let a=0,l=0;for(let c=0;c<s;++c){for(let f=0;f<i;++f)t[a++]=o[l++];a+=4-i}}}else return function(r){r.length?t.set(r):t[0]=r}}function gS(t,e,n,i){const r=n.blockSpecs,s=n.uniformData,o=r[i];if(!o)return A3("no uniform block object named:",i),{name:i,uniforms:{}};const a=new ArrayBuffer(o.size),l=t.createBuffer(),c=o.index;t.bindBuffer(uf,l),t.uniformBlockBinding(e,o.index,c);let f=i+".";ig.test(f)&&(f=f.replace(ig,"."));const u={},h={},A={};return o.uniformIndices.forEach(function(d){const g=s[d];let m=g.name;m.startsWith(f)&&(m=m.substr(f.length));const p=m.endsWith("[0]");p&&(m=m.substr(0,m.length-3));const w=q[g.type],C=w.Type,y=p?hS(w.size,16)*g.size:w.size*g.size,b=new C(a,g.offset,y/C.BYTES_PER_ELEMENT);u[m]=b;const x=dS(b,p,w.rows,w.cols);h[m]=x,ng(m,x,A,h)}),{name:i,array:a,asFloat:new Float32Array(a),buffer:l,uniforms:u,setters:h}}function rg(t,e,n){return gS(t,e.program,e.uniformBlockSpec,n)}function sg(t,e,n){const r=(e.uniformBlockSpec||e).blockSpecs[n.name];if(r){const s=r.index;return t.bindBufferRange(uf,s,n.buffer,n.offset||0,n.array.byteLength),!0}return!1}function og(t,e,n){sg(t,e,n)&&t.bufferData(uf,n.array,h3)}function xs(t,e){const n=t.setters;for(const i in e){const r=n[i];if(r){const s=e[i];r(s)}}}function ag(t,e){for(const n in e){const i=t[n];typeof i=="function"?i(e[n]):ag(t[n],e[n])}}function oi(t,...e){const n=t.uniformSetters||t,i=e.length;for(let r=0;r<i;++r){const s=e[r];if(Array.isArray(s)){const o=s.length;for(let a=0;a<o;++a)oi(n,s[a])}else for(const o in s){const a=n[o];a&&a(s[o])}}}function pS(t,e){const n={},i=t.getProgramParameter(e,g3);for(let r=0;r<i;++r){const s=t.getActiveAttrib(e,r);if(tg(s))continue;const o=t.getAttribLocation(e,s.name),a=Be[s.type],l=a.setter(t,o,a);l.location=o,n[s.name]=l}return n}function mS(t,e){for(const n in e){const i=t[n];i&&i(e[n])}}function ai(t,e,n){n.vertexArrayObject?t.bindVertexArray(n.vertexArrayObject):(mS(e.attribSetters||e,n.attribs),n.indices&&t.bindBuffer(d3,n.indices))}function wS(t,e){const n=fS(t,e),i=pS(t,e),r={program:e,uniformSetters:n,attribSetters:i};return Ji(t)&&(r.uniformBlockSpec=AS(t,e),r.transformFeedbackInfo=uS(t,e)),r}const yS=4,cg=5123;function Sa(t,e,n,i,r,s){n=n===void 0?yS:n;const o=e.indices,a=e.elementType,l=i===void 0?e.numElements:i;r=r===void 0?0:r,a||o?s!==void 0?t.drawElementsInstanced(n,l,a===void 0?cg:e.elementType,r,s):t.drawElements(n,l,a===void 0?cg:e.elementType,r):s!==void 0?t.drawArraysInstanced(n,r,l,s):t.drawArrays(n,r,l)}const CS=36160,ci=36161,ES=3553,IS=5121,bS=6402,xS=6408,BS=33190,vS=36012,SS=35056,QS=36013,DS=32854,kS=32855,FS=36194,lg=33189,fg=6401,ug=36168,pf=34041,mf=36064,Qa=36096,Ag=36128,wf=33306,yf=33071,Cf=9729,hg=[{format:xS,type:IS,min:Cf,wrap:yf},{format:pf}],vt={};vt[pf]=wf,vt[fg]=Ag,vt[ug]=Ag,vt[bS]=Qa,vt[lg]=Qa,vt[BS]=Qa,vt[vS]=Qa,vt[SS]=wf,vt[QS]=wf;function RS(t,e){return vt[t]||vt[e]}const Dn={};Dn[DS]=!0,Dn[kS]=!0,Dn[FS]=!0,Dn[pf]=!0,Dn[lg]=!0,Dn[fg]=!0,Dn[ug]=!0;function NS(t){return Dn[t]}const MS=32;function TS(t){return t>=mf&&t<mf+MS}function dg(t,e,n,i){const r=CS,s=t.createFramebuffer();t.bindFramebuffer(r,s),n=n||t.drawingBufferWidth,i=i||t.drawingBufferHeight,e=e||hg;const o=[],a={framebuffer:s,attachments:[],width:n,height:i};return e.forEach(function(l,c){let f=l.attachment;const u=l.samples,h=l.format;let A=l.attachmentPoint||RS(h,l.internalFormat);if(A||(A=mf+c),TS(A)&&o.push(A),!f)if(u!==void 0||NS(h))f=t.createRenderbuffer(),t.bindRenderbuffer(ci,f),u>1?t.renderbufferStorageMultisample(ci,u,h,n,i):t.renderbufferStorage(ci,h,n,i);else{const d=Object.assign({},l);d.width=n,d.height=i,d.auto===void 0&&(d.auto=!1,d.min=d.min||d.minMag||Cf,d.mag=d.mag||d.minMag||Cf,d.wrapS=d.wrapS||d.wrap||yf,d.wrapT=d.wrapT||d.wrap||yf),f=bs(t,d)}if(r0(t,f))t.framebufferRenderbuffer(r,A,ci,f);else if(ca(t,f))l.layer!==void 0?t.framebufferTextureLayer(r,A,f,l.level||0,l.layer):t.framebufferTexture2D(r,A,l.target||ES,f,l.level||0);else throw new Error("unknown attachment type");a.attachments.push(f)}),t.drawBuffers&&t.drawBuffers(o),a}function PS(t,e,n,i,r){i=i||t.drawingBufferWidth,r=r||t.drawingBufferHeight,e.width=i,e.height=r,n=n||hg,n.forEach(function(s,o){const a=e.attachments[o],l=s.format,c=s.samples;if(c!==void 0||r0(t,a))t.bindRenderbuffer(ci,a),c>1?t.renderbufferStorageMultisample(ci,c,l,i,r):t.renderbufferStorage(ci,l,i,r);else if(ca(t,a))u3(t,a,s,i,r);else throw new Error("unknown attachment type")})}function LS(t,e,n){const i=t.createVertexArray();return t.bindVertexArray(i),e.length||(e=[e]),e.forEach(function(r){ai(t,r,n)}),t.bindVertexArray(null),{numElements:n.numElements,elementType:n.elementType,vertexArrayObject:i}}const OS=/^(.*?)_/;function US(t,e){$l(t,0);const n=t.getExtension(e);if(n){const i={},r=OS.exec(e)[1],s="_"+r;for(const o in n){const a=n[o],l=typeof a=="function",c=l?r:s;let f=o;o.endsWith(c)&&(f=o.substring(0,o.length-c.length)),t[f]!==void 0?!l&&t[f]!==a&&i0(f,t[f],a,o):l?t[f]=(function(u){return function(){return u.apply(n,arguments)}})(a):(t[f]=a,i[f]=a)}i.constructor={name:n.constructor.name},$l(i,0)}return n}const gg=["ANGLE_instanced_arrays","EXT_blend_minmax","EXT_color_buffer_float","EXT_color_buffer_half_float","EXT_disjoint_timer_query","EXT_disjoint_timer_query_webgl2","EXT_frag_depth","EXT_sRGB","EXT_shader_texture_lod","EXT_texture_filter_anisotropic","OES_element_index_uint","OES_standard_derivatives","OES_texture_float","OES_texture_float_linear","OES_texture_half_float","OES_texture_half_float_linear","OES_vertex_array_object","WEBGL_color_buffer_float","WEBGL_compressed_texture_atc","WEBGL_compressed_texture_etc1","WEBGL_compressed_texture_pvrtc","WEBGL_compressed_texture_s3tc","WEBGL_compressed_texture_s3tc_srgb","WEBGL_depth_texture","WEBGL_draw_buffers"];function pg(t){for(let e=0;e<gg.length;++e)US(t,gg[e])}function _S(t,e){const n=["webgl2","webgl","experimental-webgl"];let i=null;for(let r=0;r<n.length;++r)if(i=t.getContext(n[r],e),i){pg(i);break}return i}function GS(t,e){return _S(t,e)}const zS=`flat out lowp vec4 vFillColor;flat out lowp vec4 vStrokeColor;flat out float vHalfStrokeWidth;flat out vec4 vCornerRadii;
|
|
340
340
|
#if defined(ROUNDED_CORNERS) || defined(STROKED) || defined(SHADOW)
|
|
341
341
|
out vec2 vPosInPixels;
|
|
342
342
|
#endif
|
|
@@ -344,7 +344,7 @@ flat out vec2 vHalfSizeInPixels;/***Adjusts the vertex position to ensure that t
|
|
|
344
344
|
#if defined(ROUNDED_CORNERS) || defined(STROKED) || defined(SHADOW)
|
|
345
345
|
float aaPadding=1.0/uDevicePixelRatio;float shadowPadding=uShadowBlur+max(abs(uShadowOffsetX),abs(uShadowOffsetY));float strokeWidth=getScaled_strokeWidth();float strokeOpacity=getScaled_strokeOpacity()*opaFactor;vec2 centeredFrac=frac-0.5;vec2 expand=centeredFrac*(strokeWidth+aaPadding+shadowPadding*2.0)/uViewportSize;pos+=expand;vec2 sizeInPixels=size*uViewportSize;vPosInPixels=(centeredFrac+expand/size)*sizeInPixels;vHalfSizeInPixels=sizeInPixels/2.0;vCornerRadii=min(cornerRadii,min(vHalfSizeInPixels.x,vHalfSizeInPixels.y));vHalfStrokeWidth=strokeWidth/2.0;vStrokeColor=vec4(getScaled_stroke()*strokeOpacity,strokeOpacity);
|
|
346
346
|
#endif
|
|
347
|
-
gl_Position=unitToNdc(pos);float fillOpacity=getScaled_fillOpacity()*opaFactor;vFillColor=vec4(getScaled_fill()*fillOpacity,fillOpacity);setupPicking();}`,
|
|
347
|
+
gl_Position=unitToNdc(pos);float fillOpacity=getScaled_fillOpacity()*opaFactor;vFillColor=vec4(getScaled_fill()*fillOpacity,fillOpacity);setupPicking();}`,HS=`#if defined(ROUNDED_CORNERS) || defined(STROKED) || defined(SHADOW)
|
|
348
348
|
in vec2 vPosInPixels;
|
|
349
349
|
#endif
|
|
350
350
|
flat in vec2 vHalfSizeInPixels;flat in lowp vec4 vFillColor;flat in lowp vec4 vStrokeColor;flat in float vHalfStrokeWidth;flat in vec4 vCornerRadii;out lowp vec4 fragColor;
|
|
@@ -370,59 +370,59 @@ if(vHalfStrokeWidth>0.0&&uHatchPattern>0){d=max(d,-pattern());}fragColor=distanc
|
|
|
370
370
|
#else
|
|
371
371
|
fragColor=vFillColor;if(uPickingEnabled){fragColor=vPickingColor;}
|
|
372
372
|
#endif
|
|
373
|
-
}`,
|
|
373
|
+
}`,YS=`layout(std140)uniform Mark{uniform float uMinWidth;uniform float uMinHeight;uniform float uMinOpacity;uniform float uCornerRadiusTopRight;uniform float uCornerRadiusBottomRight;uniform float uCornerRadiusTopLeft;uniform float uCornerRadiusBottomLeft;uniform int uHatchPattern;uniform vec3 uShadowColor;uniform float uShadowOpacity;uniform float uShadowBlur;uniform float uShadowOffsetX;uniform float uShadowOffsetY;
|
|
374
374
|
#pragma markUniforms
|
|
375
|
-
};`,
|
|
376
|
-
`),
|
|
375
|
+
};`,mg=1e4;class VS{#e=!1;constructor(e){this.size=e,this.arrays={},this.pushers=[],this.dataUpdaters=[],this.vertexCount=0}configure(){if(this.#e)throw new Error("Already configured!");this.#t(),this.#n(),this.#e=!0}addConverter(e,n){const i=this.createUpdater(e,n.numComponents||1,n.targetArrayType??Float32Array,n.arrayReference),r=n.f;this.dataUpdaters.push(n.arrayReference?s=>i(r(s)):s=>i(r(s)))}createUpdater(e,n,i=Float32Array,r=void 0){if(!Ve(this.size))throw new Error("The number of vertices must be defined!");let s,o,a=0;const l=new i(this.size*n);if(this.arrays[e]={data:l,numComponents:n},n==1){let c=0;const f=u=>{c=+u};s=()=>{l[a++]=c},o=f}else{let c=r??[0];const f=r?u=>{}:u=>{c=u};switch(n){case 1:break;case 2:s=()=>{l[a++]=c[0],l[a++]=c[1]},o=f;break;case 3:s=()=>{l[a++]=c[0],l[a++]=c[1],l[a++]=c[2]},o=f;break;case 4:s=()=>{l[a++]=c[0],l[a++]=c[1],l[a++]=c[2],l[a++]=c[3]},o=f;break;default:throw new Error("Invalid numComponents: "+n)}}return this.pushers.push(s),o}pushAll(){throw new Error("Call configure() first!")}updateFromDatum(e){throw new Error("Call configure() first!")}#t(){if(this.size>mg){const e=this.pushers.map((i,r)=>`const p${r} = that.pushers[${r}];`).join(`
|
|
376
|
+
`),n=this.pushers.map((i,r)=>` p${r}();`).join(`
|
|
377
377
|
`);this.pushAll=new Function("that",`${e}
|
|
378
378
|
return function unrolledPushAll() {
|
|
379
|
-
${
|
|
379
|
+
${n}
|
|
380
380
|
that.vertexCount++;
|
|
381
|
-
};`)(this)}else this.pushAll=()=>{for(let e=0;e<this.pushers.length;e++)this.pushers[e]();this.vertexCount++}}#n(){if(this.size>
|
|
382
|
-
`),
|
|
381
|
+
};`)(this)}else this.pushAll=()=>{for(let e=0;e<this.pushers.length;e++)this.pushers[e]();this.vertexCount++}}#n(){if(this.size>mg){const e=this.dataUpdaters.map((i,r)=>`const u${r} = that.dataUpdaters[${r}];`).join(`
|
|
382
|
+
`),n=this.dataUpdaters.map((i,r)=>` u${r}(datum);`).join(`
|
|
383
383
|
`);this.updateFromDatum=new Function("that","datum",`${e}
|
|
384
384
|
return function unrolledUpdateFromDatum(datum) {
|
|
385
|
-
${
|
|
386
|
-
};`)(this)}else this.updateFromDatum=e=>{for(let t=0;t<this.dataUpdaters.length;t++)this.dataUpdaters[t](e)}}pushFromDatum(e){this.updateFromDatum(e),this.pushAll()}}const Wr=5,ru=127;function iu(n){const e=[];for(let d=0;d<=ru;d++)e.push(void 0);const t=new Map;for(const d of n.chars)d.id<=ru?e[d.id]=d:t.set(d.id,d);const r=8722;t.has(r)||t.set(r,e[45]);function i(d){return(d<=ru?e[d]:t.get(d))||e[63]}function s(d){return i(d.charCodeAt(0))}const o=n.common.base,a=s("x"),l=s("X"),c=s("q"),u=a.height-Wr*2,f=l.height-Wr*2,h=c.height-a.height+c.yoffset-a.yoffset;function A(d,g=1){let p=0;for(let m=0;m<d.length;m++)p+=i(d.charCodeAt(m)).xadvance;return p/o*g}return{measureWidth:A,getCharByCode:i,getChar:s,xHeight:u,capHeight:f,descent:h,common:n.common}}function Xr(n,e=0,t=1){return Math.max(e,Math.min(t,n))}const G0=2**31-1,k3=-2147483648;function F3(n,e,t,r=t){const i=new Array(n);i.fill(G0);let s=k3,o=-1/0,a=!1;const l=new Array(n);l.fill(0);const c=e[0],f=(e[1]-e[0])/n,h=(m,C)=>{const y=(m-c)/f,w=Math.floor(y);return Xr(C&&w==y?w-1:w,0,n-1)};function A(m,C,y){if(a)return;if(C>s)s=C;else{a=!0;return}const w=t(m);if(w<o){a=!0;return}o=w;const E=h(w,!1);i[E]>C&&(i[E]=C),l[E]<y&&(l[E]=y)}function d(m,C,y){if(a)return;if(C>s)s=C;else{a=!0,console.debug("Items (vertices) are not ordered properly. Disabling binned index.");return}const w=t(m),E=r(m);if(w<o){a=!0;return}else if(E<w){a=!0;return}o=w;const x=h(w,!1),b=h(E,!0);for(let S=x;S<=b;S++)i[S]>C&&(i[S]=C),l[S]<y&&(l[S]=y)}const g=(m,C,y=[0,0])=>{const w=h(m,!1),E=h(C,!0),x=i[w],b=Math.max(l[E],x);return y[0]=x,y[1]=b,y},p=()=>{if(a)return;for(let C=1;C<l.length;C++)l[C]<l[C-1]&&(l[C]=l[C-1]);let m=!0;for(let C=i.length-1;C>0;C--)m&&i[C]==G0?(i[C]=l[C],m=!1):i[C-1]>i[C]&&(i[C-1]=i[C]);return g};return A.getIndex=p,d.getIndex=p,t==r?A:d}function Ot(n,e){switch(arguments.length){case 0:break;case 1:this.range(n);break;default:this.range(e).domain(n);break}return this}function Dn(n,e){switch(arguments.length){case 0:break;case 1:{typeof n=="function"?this.interpolator(n):this.range(n);break}default:{this.domain(n),typeof e=="function"?this.interpolator(e):this.range(e);break}}return this}const wa=Symbol("implicit");function su(){var n=new jt,e=[],t=[],r=wa;function i(s){let o=n.get(s);if(o===void 0){if(r!==wa)return r;n.set(s,o=e.push(s)-1)}return t[o%t.length]}return i.domain=function(s){if(!arguments.length)return e.slice();e=[],n=new jt;for(const o of s)n.has(o)||n.set(o,e.push(o)-1);return i},i.range=function(s){return arguments.length?(t=Array.from(s),i):t.slice()},i.unknown=function(s){return arguments.length?(r=s,i):r},i.copy=function(){return su(e,t).unknown(r)},Ot.apply(i,arguments),i}function Zr(n,e,t){n.prototype=e.prototype=t,t.constructor=n}function ws(n,e){var t=Object.create(n.prototype);for(var r in e)t[r]=e[r];return t}function kn(){}var ar=.7,$r=1/ar,ei="\\s*([+-]?\\d+)\\s*",Cs="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ut="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",R3=/^#([0-9a-f]{3,8})$/,M3=new RegExp(`^rgb\\(${ei},${ei},${ei}\\)$`),N3=new RegExp(`^rgb\\(${Ut},${Ut},${Ut}\\)$`),T3=new RegExp(`^rgba\\(${ei},${ei},${ei},${Cs}\\)$`),P3=new RegExp(`^rgba\\(${Ut},${Ut},${Ut},${Cs}\\)$`),L3=new RegExp(`^hsl\\(${Cs},${Ut},${Ut}\\)$`),O3=new RegExp(`^hsla\\(${Cs},${Ut},${Ut},${Cs}\\)$`),z0={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};Zr(kn,Fn,{copy(n){return Object.assign(new this.constructor,this,n)},displayable(){return this.rgb().displayable()},hex:H0,formatHex:H0,formatHex8:U3,formatHsl:G3,formatRgb:V0,toString:V0});function H0(){return this.rgb().formatHex()}function U3(){return this.rgb().formatHex8()}function G3(){return K0(this).formatHsl()}function V0(){return this.rgb().formatRgb()}function Fn(n){var e,t;return n=(n+"").trim().toLowerCase(),(e=R3.exec(n))?(t=e[1].length,e=parseInt(e[1],16),t===6?_0(e):t===3?new Ne(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):t===8?Ca(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):t===4?Ca(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=M3.exec(n))?new Ne(e[1],e[2],e[3],1):(e=N3.exec(n))?new Ne(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=T3.exec(n))?Ca(e[1],e[2],e[3],e[4]):(e=P3.exec(n))?Ca(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=L3.exec(n))?q0(e[1],e[2]/100,e[3]/100,1):(e=O3.exec(n))?q0(e[1],e[2]/100,e[3]/100,e[4]):z0.hasOwnProperty(n)?_0(z0[n]):n==="transparent"?new Ne(NaN,NaN,NaN,0):null}function _0(n){return new Ne(n>>16&255,n>>8&255,n&255,1)}function Ca(n,e,t,r){return r<=0&&(n=e=t=NaN),new Ne(n,e,t,r)}function ou(n){return n instanceof kn||(n=Fn(n)),n?(n=n.rgb(),new Ne(n.r,n.g,n.b,n.opacity)):new Ne}function ya(n,e,t,r){return arguments.length===1?ou(n):new Ne(n,e,t,r??1)}function Ne(n,e,t,r){this.r=+n,this.g=+e,this.b=+t,this.opacity=+r}Zr(Ne,ya,ws(kn,{brighter(n){return n=n==null?$r:Math.pow($r,n),new Ne(this.r*n,this.g*n,this.b*n,this.opacity)},darker(n){return n=n==null?ar:Math.pow(ar,n),new Ne(this.r*n,this.g*n,this.b*n,this.opacity)},rgb(){return this},clamp(){return new Ne(cr(this.r),cr(this.g),cr(this.b),Ia(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Y0,formatHex:Y0,formatHex8:z3,formatRgb:J0,toString:J0}));function Y0(){return`#${lr(this.r)}${lr(this.g)}${lr(this.b)}`}function z3(){return`#${lr(this.r)}${lr(this.g)}${lr(this.b)}${lr((isNaN(this.opacity)?1:this.opacity)*255)}`}function J0(){const n=Ia(this.opacity);return`${n===1?"rgb(":"rgba("}${cr(this.r)}, ${cr(this.g)}, ${cr(this.b)}${n===1?")":`, ${n})`}`}function Ia(n){return isNaN(n)?1:Math.max(0,Math.min(1,n))}function cr(n){return Math.max(0,Math.min(255,Math.round(n)||0))}function lr(n){return n=cr(n),(n<16?"0":"")+n.toString(16)}function q0(n,e,t,r){return r<=0?n=e=t=NaN:t<=0||t>=1?n=e=NaN:e<=0&&(n=NaN),new vt(n,e,t,r)}function K0(n){if(n instanceof vt)return new vt(n.h,n.s,n.l,n.opacity);if(n instanceof kn||(n=Fn(n)),!n)return new vt;if(n instanceof vt)return n;n=n.rgb();var e=n.r/255,t=n.g/255,r=n.b/255,i=Math.min(e,t,r),s=Math.max(e,t,r),o=NaN,a=s-i,l=(s+i)/2;return a?(e===s?o=(t-r)/a+(t<r)*6:t===s?o=(r-e)/a+2:o=(e-t)/a+4,a/=l<.5?s+i:2-s-i,o*=60):a=l>0&&l<1?0:o,new vt(o,a,l,n.opacity)}function au(n,e,t,r){return arguments.length===1?K0(n):new vt(n,e,t,r??1)}function vt(n,e,t,r){this.h=+n,this.s=+e,this.l=+t,this.opacity=+r}Zr(vt,au,ws(kn,{brighter(n){return n=n==null?$r:Math.pow($r,n),new vt(this.h,this.s,this.l*n,this.opacity)},darker(n){return n=n==null?ar:Math.pow(ar,n),new vt(this.h,this.s,this.l*n,this.opacity)},rgb(){var n=this.h%360+(this.h<0)*360,e=isNaN(n)||isNaN(this.s)?0:this.s,t=this.l,r=t+(t<.5?t:1-t)*e,i=2*t-r;return new Ne(cu(n>=240?n-240:n+120,i,r),cu(n,i,r),cu(n<120?n+240:n-120,i,r),this.opacity)},clamp(){return new vt(j0(this.h),ba(this.s),ba(this.l),Ia(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const n=Ia(this.opacity);return`${n===1?"hsl(":"hsla("}${j0(this.h)}, ${ba(this.s)*100}%, ${ba(this.l)*100}%${n===1?")":`, ${n})`}`}}));function j0(n){return n=(n||0)%360,n<0?n+360:n}function ba(n){return Math.max(0,Math.min(1,n||0))}function cu(n,e,t){return(n<60?e+(t-e)*n/60:n<180?t:n<240?e+(t-e)*(240-n)/60:e)*255}const W0=Math.PI/180,X0=180/Math.PI,Ea=18,Z0=.96422,$0=1,eg=.82521,tg=4/29,ti=6/29,ng=3*ti*ti,H3=ti*ti*ti;function rg(n){if(n instanceof Gt)return new Gt(n.l,n.a,n.b,n.opacity);if(n instanceof rn)return ig(n);n instanceof Ne||(n=ou(n));var e=hu(n.r),t=hu(n.g),r=hu(n.b),i=uu((.2225045*e+.7168786*t+.0606169*r)/$0),s,o;return e===t&&t===r?s=o=i:(s=uu((.4360747*e+.3850649*t+.1430804*r)/Z0),o=uu((.0139322*e+.0971045*t+.7141733*r)/eg)),new Gt(116*i-16,500*(s-i),200*(i-o),n.opacity)}function lu(n,e,t,r){return arguments.length===1?rg(n):new Gt(n,e,t,r??1)}function Gt(n,e,t,r){this.l=+n,this.a=+e,this.b=+t,this.opacity=+r}Zr(Gt,lu,ws(kn,{brighter(n){return new Gt(this.l+Ea*(n??1),this.a,this.b,this.opacity)},darker(n){return new Gt(this.l-Ea*(n??1),this.a,this.b,this.opacity)},rgb(){var n=(this.l+16)/116,e=isNaN(this.a)?n:n+this.a/500,t=isNaN(this.b)?n:n-this.b/200;return e=Z0*fu(e),n=$0*fu(n),t=eg*fu(t),new Ne(Au(3.1338561*e-1.6168667*n-.4906146*t),Au(-.9787684*e+1.9161415*n+.033454*t),Au(.0719453*e-.2289914*n+1.4052427*t),this.opacity)}}));function uu(n){return n>H3?Math.pow(n,1/3):n/ng+tg}function fu(n){return n>ti?n*n*n:ng*(n-tg)}function Au(n){return 255*(n<=.0031308?12.92*n:1.055*Math.pow(n,1/2.4)-.055)}function hu(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function V3(n){if(n instanceof rn)return new rn(n.h,n.c,n.l,n.opacity);if(n instanceof Gt||(n=rg(n)),n.a===0&&n.b===0)return new rn(NaN,0<n.l&&n.l<100?0:NaN,n.l,n.opacity);var e=Math.atan2(n.b,n.a)*X0;return new rn(e<0?e+360:e,Math.sqrt(n.a*n.a+n.b*n.b),n.l,n.opacity)}function du(n,e,t,r){return arguments.length===1?V3(n):new rn(n,e,t,r??1)}function rn(n,e,t,r){this.h=+n,this.c=+e,this.l=+t,this.opacity=+r}function ig(n){if(isNaN(n.h))return new Gt(n.l,0,0,n.opacity);var e=n.h*W0;return new Gt(n.l,Math.cos(e)*n.c,Math.sin(e)*n.c,n.opacity)}Zr(rn,du,ws(kn,{brighter(n){return new rn(this.h,this.c,this.l+Ea*(n??1),this.opacity)},darker(n){return new rn(this.h,this.c,this.l-Ea*(n??1),this.opacity)},rgb(){return ig(this).rgb()}}));var sg=-.14861,gu=1.78277,pu=-.29227,xa=-.90649,ys=1.97294,og=ys*xa,ag=ys*gu,cg=gu*pu-xa*sg;function _3(n){if(n instanceof ur)return new ur(n.h,n.s,n.l,n.opacity);n instanceof Ne||(n=ou(n));var e=n.r/255,t=n.g/255,r=n.b/255,i=(cg*r+og*e-ag*t)/(cg+og-ag),s=r-i,o=(ys*(t-i)-pu*s)/xa,a=Math.sqrt(o*o+s*s)/(ys*i*(1-i)),l=a?Math.atan2(o,s)*X0-120:NaN;return new ur(l<0?l+360:l,a,i,n.opacity)}function mu(n,e,t,r){return arguments.length===1?_3(n):new ur(n,e,t,r??1)}function ur(n,e,t,r){this.h=+n,this.s=+e,this.l=+t,this.opacity=+r}Zr(ur,mu,ws(kn,{brighter(n){return n=n==null?$r:Math.pow($r,n),new ur(this.h,this.s,this.l*n,this.opacity)},darker(n){return n=n==null?ar:Math.pow(ar,n),new ur(this.h,this.s,this.l*n,this.opacity)},rgb(){var n=isNaN(this.h)?0:(this.h+120)*W0,e=+this.l,t=isNaN(this.s)?0:this.s*e*(1-e),r=Math.cos(n),i=Math.sin(n);return new Ne(255*(e+t*(sg*r+gu*i)),255*(e+t*(pu*r+xa*i)),255*(e+t*(ys*r)),this.opacity)}}));function lg(n,e,t,r,i){var s=n*n,o=s*n;return((1-3*n+3*s-o)*e+(4-6*s+3*o)*t+(1+3*n+3*s-3*o)*r+o*i)/6}function ug(n){var e=n.length-1;return function(t){var r=t<=0?t=0:t>=1?(t=1,e-1):Math.floor(t*e),i=n[r],s=n[r+1],o=r>0?n[r-1]:2*i-s,a=r<e-1?n[r+2]:2*s-i;return lg((t-r/e)*e,o,i,s,a)}}function fg(n){var e=n.length;return function(t){var r=Math.floor(((t%=1)<0?++t:t)*e),i=n[(r+e-1)%e],s=n[r%e],o=n[(r+1)%e],a=n[(r+2)%e];return lg((t-r/e)*e,i,s,o,a)}}const Ba=n=>()=>n;function Ag(n,e){return function(t){return n+t*e}}function Y3(n,e,t){return n=Math.pow(n,t),e=Math.pow(e,t)-n,t=1/t,function(r){return Math.pow(n+r*e,t)}}function va(n,e){var t=e-n;return t?Ag(n,t>180||t<-180?t-360*Math.round(t/360):t):Ba(isNaN(n)?e:n)}function J3(n){return(n=+n)==1?Te:function(e,t){return t-e?Y3(e,t,n):Ba(isNaN(e)?t:e)}}function Te(n,e){var t=e-n;return t?Ag(n,t):Ba(isNaN(n)?e:n)}const wu=(function n(e){var t=J3(e);function r(i,s){var o=t((i=ya(i)).r,(s=ya(s)).r),a=t(i.g,s.g),l=t(i.b,s.b),c=Te(i.opacity,s.opacity);return function(u){return i.r=o(u),i.g=a(u),i.b=l(u),i.opacity=c(u),i+""}}return r.gamma=n,r})(1);function hg(n){return function(e){var t=e.length,r=new Array(t),i=new Array(t),s=new Array(t),o,a;for(o=0;o<t;++o)a=ya(e[o]),r[o]=a.r||0,i[o]=a.g||0,s[o]=a.b||0;return r=n(r),i=n(i),s=n(s),a.opacity=1,function(l){return a.r=r(l),a.g=i(l),a.b=s(l),a+""}}}var q3=hg(ug),K3=hg(fg);function Cu(n,e){e||(e=[]);var t=n?Math.min(e.length,n.length):0,r=e.slice(),i;return function(s){for(i=0;i<t;++i)r[i]=n[i]*(1-s)+e[i]*s;return r}}function dg(n){return ArrayBuffer.isView(n)&&!(n instanceof DataView)}function j3(n,e){return(dg(e)?Cu:gg)(n,e)}function gg(n,e){var t=e?e.length:0,r=n?Math.min(t,n.length):0,i=new Array(r),s=new Array(t),o;for(o=0;o<r;++o)i[o]=Rn(n[o],e[o]);for(;o<t;++o)s[o]=e[o];return function(a){for(o=0;o<r;++o)s[o]=i[o](a);return s}}function pg(n,e){var t=new Date;return n=+n,e=+e,function(r){return t.setTime(n*(1-r)+e*r),t}}function St(n,e){return n=+n,e=+e,function(t){return n*(1-t)+e*t}}function mg(n,e){var t={},r={},i;(n===null||typeof n!="object")&&(n={}),(e===null||typeof e!="object")&&(e={});for(i in e)i in n?t[i]=Rn(n[i],e[i]):r[i]=e[i];return function(s){for(i in t)r[i]=t[i](s);return r}}var yu=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Iu=new RegExp(yu.source,"g");function W3(n){return function(){return n}}function X3(n){return function(e){return n(e)+""}}function wg(n,e){var t=yu.lastIndex=Iu.lastIndex=0,r,i,s,o=-1,a=[],l=[];for(n=n+"",e=e+"";(r=yu.exec(n))&&(i=Iu.exec(e));)(s=i.index)>t&&(s=e.slice(t,s),a[o]?a[o]+=s:a[++o]=s),(r=r[0])===(i=i[0])?a[o]?a[o]+=i:a[++o]=i:(a[++o]=null,l.push({i:o,x:St(r,i)})),t=Iu.lastIndex;return t<e.length&&(s=e.slice(t),a[o]?a[o]+=s:a[++o]=s),a.length<2?l[0]?X3(l[0].x):W3(e):(e=l.length,function(c){for(var u=0,f;u<e;++u)a[(f=l[u]).i]=f.x(c);return a.join("")})}function Rn(n,e){var t=typeof e,r;return e==null||t==="boolean"?Ba(e):(t==="number"?St:t==="string"?(r=Fn(e))?(e=r,wu):wg:e instanceof Fn?wu:e instanceof Date?pg:dg(e)?Cu:Array.isArray(e)?gg:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?mg:St)(n,e)}function Z3(n){var e=n.length;return function(t){return n[Math.max(0,Math.min(e-1,Math.floor(t*e)))]}}function $3(n,e){var t=va(+n,+e);return function(r){var i=t(r);return i-360*Math.floor(i/360)}}function Is(n,e){return n=+n,e=+e,function(t){return Math.round(n*(1-t)+e*t)}}var Cg=180/Math.PI,bu={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function yg(n,e,t,r,i,s){var o,a,l;return(o=Math.sqrt(n*n+e*e))&&(n/=o,e/=o),(l=n*t+e*r)&&(t-=n*l,r-=e*l),(a=Math.sqrt(t*t+r*r))&&(t/=a,r/=a,l/=a),n*r<e*t&&(n=-n,e=-e,l=-l,o=-o),{translateX:i,translateY:s,rotate:Math.atan2(e,n)*Cg,skewX:Math.atan(l)*Cg,scaleX:o,scaleY:a}}var Sa;function eS(n){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(n+"");return e.isIdentity?bu:yg(e.a,e.b,e.c,e.d,e.e,e.f)}function tS(n){return n==null||(Sa||(Sa=document.createElementNS("http://www.w3.org/2000/svg","g")),Sa.setAttribute("transform",n),!(n=Sa.transform.baseVal.consolidate()))?bu:(n=n.matrix,yg(n.a,n.b,n.c,n.d,n.e,n.f))}function Ig(n,e,t,r){function i(c){return c.length?c.pop()+" ":""}function s(c,u,f,h,A,d){if(c!==f||u!==h){var g=A.push("translate(",null,e,null,t);d.push({i:g-4,x:St(c,f)},{i:g-2,x:St(u,h)})}else(f||h)&&A.push("translate("+f+e+h+t)}function o(c,u,f,h){c!==u?(c-u>180?u+=360:u-c>180&&(c+=360),h.push({i:f.push(i(f)+"rotate(",null,r)-2,x:St(c,u)})):u&&f.push(i(f)+"rotate("+u+r)}function a(c,u,f,h){c!==u?h.push({i:f.push(i(f)+"skewX(",null,r)-2,x:St(c,u)}):u&&f.push(i(f)+"skewX("+u+r)}function l(c,u,f,h,A,d){if(c!==f||u!==h){var g=A.push(i(A)+"scale(",null,",",null,")");d.push({i:g-4,x:St(c,f)},{i:g-2,x:St(u,h)})}else(f!==1||h!==1)&&A.push(i(A)+"scale("+f+","+h+")")}return function(c,u){var f=[],h=[];return c=n(c),u=n(u),s(c.translateX,c.translateY,u.translateX,u.translateY,f,h),o(c.rotate,u.rotate,f,h),a(c.skewX,u.skewX,f,h),l(c.scaleX,c.scaleY,u.scaleX,u.scaleY,f,h),c=u=null,function(A){for(var d=-1,g=h.length,p;++d<g;)f[(p=h[d]).i]=p.x(A);return f.join("")}}}var nS=Ig(eS,"px, ","px)","deg)"),rS=Ig(tS,", ",")",")"),iS=1e-12;function bg(n){return((n=Math.exp(n))+1/n)/2}function sS(n){return((n=Math.exp(n))-1/n)/2}function oS(n){return((n=Math.exp(2*n))-1)/(n+1)}const aS=(function n(e,t,r){function i(s,o){var a=s[0],l=s[1],c=s[2],u=o[0],f=o[1],h=o[2],A=u-a,d=f-l,g=A*A+d*d,p,m;if(g<iS)m=Math.log(h/c)/e,p=function(b){return[a+b*A,l+b*d,c*Math.exp(e*b*m)]};else{var C=Math.sqrt(g),y=(h*h-c*c+r*g)/(2*c*t*C),w=(h*h-c*c-r*g)/(2*h*t*C),E=Math.log(Math.sqrt(y*y+1)-y),x=Math.log(Math.sqrt(w*w+1)-w);m=(x-E)/e,p=function(b){var S=b*m,Q=bg(E),v=c/(t*C)*(Q*oS(e*S+E)-sS(E));return[a+v*A,l+v*d,c*Q/bg(e*S+E)]}}return p.duration=m*1e3*e/Math.SQRT2,p}return i.rho=function(s){var o=Math.max(.001,+s),a=o*o,l=a*a;return n(o,a,l)},i})(Math.SQRT2,2,4);function Eg(n){return function(e,t){var r=n((e=au(e)).h,(t=au(t)).h),i=Te(e.s,t.s),s=Te(e.l,t.l),o=Te(e.opacity,t.opacity);return function(a){return e.h=r(a),e.s=i(a),e.l=s(a),e.opacity=o(a),e+""}}}const cS=Eg(va);var lS=Eg(Te);function uS(n,e){var t=Te((n=lu(n)).l,(e=lu(e)).l),r=Te(n.a,e.a),i=Te(n.b,e.b),s=Te(n.opacity,e.opacity);return function(o){return n.l=t(o),n.a=r(o),n.b=i(o),n.opacity=s(o),n+""}}function xg(n){return function(e,t){var r=n((e=du(e)).h,(t=du(t)).h),i=Te(e.c,t.c),s=Te(e.l,t.l),o=Te(e.opacity,t.opacity);return function(a){return e.h=r(a),e.c=i(a),e.l=s(a),e.opacity=o(a),e+""}}}const fS=xg(va);var AS=xg(Te);function Bg(n){return(function e(t){t=+t;function r(i,s){var o=n((i=mu(i)).h,(s=mu(s)).h),a=Te(i.s,s.s),l=Te(i.l,s.l),c=Te(i.opacity,s.opacity);return function(u){return i.h=o(u),i.s=a(u),i.l=l(Math.pow(u,t)),i.opacity=c(u),i+""}}return r.gamma=e,r})(1)}const hS=Bg(va);var dS=Bg(Te);function Eu(n,e){e===void 0&&(e=n,n=Rn);for(var t=0,r=e.length-1,i=e[0],s=new Array(r<0?0:r);t<r;)s[t]=n(i,i=e[++t]);return function(o){var a=Math.max(0,Math.min(r-1,Math.floor(o*=r)));return s[a](o-a)}}function gS(n,e){for(var t=new Array(e),r=0;r<e;++r)t[r]=n(r/(e-1));return t}const pS=Object.freeze(Object.defineProperty({__proto__:null,interpolate:Rn,interpolateArray:j3,interpolateBasis:ug,interpolateBasisClosed:fg,interpolateCubehelix:hS,interpolateCubehelixLong:dS,interpolateDate:pg,interpolateDiscrete:Z3,interpolateHcl:fS,interpolateHclLong:AS,interpolateHsl:cS,interpolateHslLong:lS,interpolateHue:$3,interpolateLab:uS,interpolateNumber:St,interpolateNumberArray:Cu,interpolateObject:mg,interpolateRgb:wu,interpolateRgbBasis:q3,interpolateRgbBasisClosed:K3,interpolateRound:Is,interpolateString:wg,interpolateTransformCss:nS,interpolateTransformSvg:rS,interpolateZoom:aS,piecewise:Eu,quantize:gS},Symbol.toStringTag,{value:"Module"}));function mS(n){return function(){return n}}function xu(n){return+n}var vg=[0,1];function st(n){return n}function Bu(n,e){return(e-=n=+n)?function(t){return(t-n)/e}:mS(isNaN(e)?NaN:.5)}function wS(n,e){var t;return n>e&&(t=n,n=e,e=t),function(r){return Math.max(n,Math.min(e,r))}}function CS(n,e,t){var r=n[0],i=n[1],s=e[0],o=e[1];return i<r?(r=Bu(i,r),s=t(o,s)):(r=Bu(r,i),s=t(s,o)),function(a){return s(r(a))}}function yS(n,e,t){var r=Math.min(n.length,e.length)-1,i=new Array(r),s=new Array(r),o=-1;for(n[r]<n[0]&&(n=n.slice().reverse(),e=e.slice().reverse());++o<r;)i[o]=Bu(n[o],n[o+1]),s[o]=t(e[o],e[o+1]);return function(a){var l=wn(n,a,1,r)-1;return s[l](i[l](a))}}function bs(n,e){return e.domain(n.domain()).range(n.range()).interpolate(n.interpolate()).clamp(n.clamp()).unknown(n.unknown())}function Qa(){var n=vg,e=vg,t=Rn,r,i,s,o=st,a,l,c;function u(){var h=Math.min(n.length,e.length);return o!==st&&(o=wS(n[0],n[h-1])),a=h>2?yS:CS,l=c=null,f}function f(h){return h==null||isNaN(h=+h)?s:(l||(l=a(n.map(r),e,t)))(r(o(h)))}return f.invert=function(h){return o(i((c||(c=a(e,n.map(r),St)))(h)))},f.domain=function(h){return arguments.length?(n=Array.from(h,xu),u()):n.slice()},f.range=function(h){return arguments.length?(e=Array.from(h),u()):e.slice()},f.rangeRound=function(h){return e=Array.from(h),t=Is,u()},f.clamp=function(h){return arguments.length?(o=h?!0:st,u()):o!==st},f.interpolate=function(h){return arguments.length?(t=h,u()):t},f.unknown=function(h){return arguments.length?(s=h,f):s},function(h,A){return r=h,i=A,u()}}function Sg(){return Qa()(st,st)}function Qg(n,e,t,r){var i=Xn(n,e,t),s;switch(r=Nr(r??",f"),r.type){case"s":{var o=Math.max(Math.abs(n),Math.abs(e));return r.precision==null&&!isNaN(s=FI(i,o))&&(r.precision=s),bh(r,o)}case"":case"e":case"g":case"p":case"r":{r.precision==null&&!isNaN(s=RI(i,Math.max(Math.abs(n),Math.abs(e))))&&(r.precision=s-(r.type==="e"));break}case"f":case"%":{r.precision==null&&!isNaN(s=kI(i))&&(r.precision=s-(r.type==="%")*2);break}}return He(r)}function fr(n){var e=n.domain;return n.ticks=function(t){var r=e();return ko(r[0],r[r.length-1],t??10)},n.tickFormat=function(t,r){var i=e();return Qg(i[0],i[i.length-1],t??10,r)},n.nice=function(t){t==null&&(t=10);var r=e(),i=0,s=r.length-1,o=r[i],a=r[s],l,c,u=10;for(a<o&&(c=o,o=a,a=c,c=i,i=s,s=c);u-- >0;){if(c=jc(o,a,t),c===l)return r[i]=o,r[s]=a,e(r);if(c>0)o=Math.floor(o/c)*c,a=Math.ceil(a/c)*c;else if(c<0)o=Math.ceil(o*c)/c,a=Math.floor(a*c)/c;else break;l=c}return n},n}function Dg(){var n=Sg();return n.copy=function(){return bs(n,Dg())},Ot.apply(n,arguments),fr(n)}function kg(n){var e;function t(r){return r==null||isNaN(r=+r)?e:r}return t.invert=t,t.domain=t.range=function(r){return arguments.length?(n=Array.from(r,xu),t):n.slice()},t.unknown=function(r){return arguments.length?(e=r,t):e},t.copy=function(){return kg(n).unknown(e)},n=arguments.length?Array.from(n,xu):[0,1],fr(t)}function Fg(n,e){n=n.slice();var t=0,r=n.length-1,i=n[t],s=n[r],o;return s<i&&(o=t,t=r,r=o,o=i,i=s,s=o),n[t]=e.floor(i),n[r]=e.ceil(s),n}function Rg(n){return Math.log(n)}function Mg(n){return Math.exp(n)}function IS(n){return-Math.log(-n)}function bS(n){return-Math.exp(-n)}function ES(n){return isFinite(n)?+("1e"+n):n<0?0:n}function xS(n){return n===10?ES:n===Math.E?Math.exp:e=>Math.pow(n,e)}function BS(n){return n===Math.E?Math.log:n===10&&Math.log10||n===2&&Math.log2||(n=Math.log(n),e=>Math.log(e)/n)}function Ng(n){return(e,t)=>-n(-e,t)}function vu(n){const e=n(Rg,Mg),t=e.domain;let r=10,i,s;function o(){return i=BS(r),s=xS(r),t()[0]<0?(i=Ng(i),s=Ng(s),n(IS,bS)):n(Rg,Mg),e}return e.base=function(a){return arguments.length?(r=+a,o()):r},e.domain=function(a){return arguments.length?(t(a),o()):t()},e.ticks=a=>{const l=t();let c=l[0],u=l[l.length-1];const f=u<c;f&&([c,u]=[u,c]);let h=i(c),A=i(u),d,g;const p=a==null?10:+a;let m=[];if(!(r%1)&&A-h<p){if(h=Math.floor(h),A=Math.ceil(A),c>0){for(;h<=A;++h)for(d=1;d<r;++d)if(g=h<0?d/s(-h):d*s(h),!(g<c)){if(g>u)break;m.push(g)}}else for(;h<=A;++h)for(d=r-1;d>=1;--d)if(g=h>0?d/s(-h):d*s(h),!(g<c)){if(g>u)break;m.push(g)}m.length*2<p&&(m=ko(c,u,p))}else m=ko(h,A,Math.min(A-h,p)).map(s);return f?m.reverse():m},e.tickFormat=(a,l)=>{if(a==null&&(a=10),l==null&&(l=r===10?"s":","),typeof l!="function"&&(!(r%1)&&(l=Nr(l)).precision==null&&(l.trim=!0),l=He(l)),a===1/0)return l;const c=Math.max(1,r*a/e.ticks().length);return u=>{let f=u/s(Math.round(i(u)));return f*r<r-.5&&(f*=r),f<=c?l(u):""}},e.nice=()=>t(Fg(t(),{floor:a=>s(Math.floor(i(a))),ceil:a=>s(Math.ceil(i(a)))})),e}function Su(){const n=vu(Qa()).domain([1,10]);return n.copy=()=>bs(n,Su()).base(n.base()),Ot.apply(n,arguments),n}function Tg(n){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/n))}}function Pg(n){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*n}}function Qu(n){var e=1,t=n(Tg(e),Pg(e));return t.constant=function(r){return arguments.length?n(Tg(e=+r),Pg(e)):e},fr(t)}function Lg(){var n=Qu(Qa());return n.copy=function(){return bs(n,Lg()).constant(n.constant())},Ot.apply(n,arguments)}function Og(n){return function(e){return e<0?-Math.pow(-e,n):Math.pow(e,n)}}function vS(n){return n<0?-Math.sqrt(-n):Math.sqrt(n)}function SS(n){return n<0?-n*n:n*n}function Du(n){var e=n(st,st),t=1;function r(){return t===1?n(st,st):t===.5?n(vS,SS):n(Og(t),Og(1/t))}return e.exponent=function(i){return arguments.length?(t=+i,r()):t},fr(e)}function ku(){var n=Du(Qa());return n.copy=function(){return bs(n,ku()).exponent(n.exponent())},Ot.apply(n,arguments),n}function QS(){return ku.apply(null,arguments).exponent(.5)}function Ug(){var n=[],e=[],t=[],r;function i(){var o=0,a=Math.max(1,e.length);for(t=new Array(a-1);++o<a;)t[o-1]=ph(n,o/a);return s}function s(o){return o==null||isNaN(o=+o)?r:e[wn(t,o)]}return s.invertExtent=function(o){var a=e.indexOf(o);return a<0?[NaN,NaN]:[a>0?t[a-1]:n[0],a<t.length?t[a]:n[n.length-1]]},s.domain=function(o){if(!arguments.length)return n.slice();n=[];for(let a of o)a!=null&&!isNaN(a=+a)&&n.push(a);return n.sort(jn),i()},s.range=function(o){return arguments.length?(e=Array.from(o),i()):e.slice()},s.unknown=function(o){return arguments.length?(r=o,s):r},s.quantiles=function(){return t.slice()},s.copy=function(){return Ug().domain(n).range(e).unknown(r)},Ot.apply(s,arguments)}function Gg(){var n=0,e=1,t=1,r=[.5],i=[0,1],s;function o(l){return l!=null&&l<=l?i[wn(r,l,0,t)]:s}function a(){var l=-1;for(r=new Array(t);++l<t;)r[l]=((l+1)*e-(l-t)*n)/(t+1);return o}return o.domain=function(l){return arguments.length?([n,e]=l,n=+n,e=+e,a()):[n,e]},o.range=function(l){return arguments.length?(t=(i=Array.from(l)).length-1,a()):i.slice()},o.invertExtent=function(l){var c=i.indexOf(l);return c<0?[NaN,NaN]:c<1?[n,r[0]]:c>=t?[r[t-1],e]:[r[c-1],r[c]]},o.unknown=function(l){return arguments.length&&(s=l),o},o.thresholds=function(){return r.slice()},o.copy=function(){return Gg().domain([n,e]).range(i).unknown(s)},Ot.apply(fr(o),arguments)}function zg(){var n=[.5],e=[0,1],t,r=1;function i(s){return s!=null&&s<=s?e[wn(n,s,0,r)]:t}return i.domain=function(s){return arguments.length?(n=Array.from(s),r=Math.min(n.length,e.length-1),i):n.slice()},i.range=function(s){return arguments.length?(e=Array.from(s),r=Math.min(n.length,e.length-1),i):e.slice()},i.invertExtent=function(s){var o=e.indexOf(s);return[n[o-1],n[o]]},i.unknown=function(s){return arguments.length?(t=s,i):t},i.copy=function(){return zg().domain(n).range(e).unknown(t)},Ot.apply(i,arguments)}function DS(n){return new Date(n)}function kS(n){return n instanceof Date?+n:+new Date(+n)}function Fu(n,e,t,r,i,s,o,a,l,c){var u=Sg(),f=u.invert,h=u.domain,A=c(".%L"),d=c(":%S"),g=c("%I:%M"),p=c("%I %p"),m=c("%a %d"),C=c("%b %d"),y=c("%B"),w=c("%Y");function E(x){return(l(x)<x?A:a(x)<x?d:o(x)<x?g:s(x)<x?p:r(x)<x?i(x)<x?m:C:t(x)<x?y:w)(x)}return u.invert=function(x){return new Date(f(x))},u.domain=function(x){return arguments.length?h(Array.from(x,kS)):h().map(DS)},u.ticks=function(x){var b=h();return n(b[0],b[b.length-1],x??10)},u.tickFormat=function(x,b){return b==null?E:c(b)},u.nice=function(x){var b=h();return(!x||typeof x.range!="function")&&(x=e(b[0],b[b.length-1],x??10)),x?h(Fg(b,x)):u},u.copy=function(){return bs(u,Fu(n,e,t,r,i,s,o,a,l,c))},u}function FS(){return Ot.apply(Fu(VI,_I,Rt,Wi,Ki,Cn,Po,No,$t,ol).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}function RS(){return Ot.apply(Fu(zI,HI,Mt,Xi,ji,Zn,Lo,To,$t,al).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)]),arguments)}function Da(){var n=0,e=1,t,r,i,s,o=st,a=!1,l;function c(f){return f==null||isNaN(f=+f)?l:o(i===0?.5:(f=(s(f)-t)*i,a?Math.max(0,Math.min(1,f)):f))}c.domain=function(f){return arguments.length?([n,e]=f,t=s(n=+n),r=s(e=+e),i=t===r?0:1/(r-t),c):[n,e]},c.clamp=function(f){return arguments.length?(a=!!f,c):a},c.interpolator=function(f){return arguments.length?(o=f,c):o};function u(f){return function(h){var A,d;return arguments.length?([A,d]=h,o=f(A,d),c):[o(0),o(1)]}}return c.range=u(Rn),c.rangeRound=u(Is),c.unknown=function(f){return arguments.length?(l=f,c):l},function(f){return s=f,t=f(n),r=f(e),i=t===r?0:1/(r-t),c}}function Mn(n,e){return e.domain(n.domain()).interpolator(n.interpolator()).clamp(n.clamp()).unknown(n.unknown())}function Ru(){var n=fr(Da()(st));return n.copy=function(){return Mn(n,Ru())},Dn.apply(n,arguments)}function Hg(){var n=vu(Da()).domain([1,10]);return n.copy=function(){return Mn(n,Hg()).base(n.base())},Dn.apply(n,arguments)}function Vg(){var n=Qu(Da());return n.copy=function(){return Mn(n,Vg()).constant(n.constant())},Dn.apply(n,arguments)}function Mu(){var n=Du(Da());return n.copy=function(){return Mn(n,Mu()).exponent(n.exponent())},Dn.apply(n,arguments)}function MS(){return Mu.apply(null,arguments).exponent(.5)}function ka(){var n=0,e=.5,t=1,r=1,i,s,o,a,l,c=st,u,f=!1,h;function A(g){return isNaN(g=+g)?h:(g=.5+((g=+u(g))-s)*(r*g<r*s?a:l),c(f?Math.max(0,Math.min(1,g)):g))}A.domain=function(g){return arguments.length?([n,e,t]=g,i=u(n=+n),s=u(e=+e),o=u(t=+t),a=i===s?0:.5/(s-i),l=s===o?0:.5/(o-s),r=s<i?-1:1,A):[n,e,t]},A.clamp=function(g){return arguments.length?(f=!!g,A):f},A.interpolator=function(g){return arguments.length?(c=g,A):c};function d(g){return function(p){var m,C,y;return arguments.length?([m,C,y]=p,c=Eu(g,[m,C,y]),A):[c(0),c(.5),c(1)]}}return A.range=d(Rn),A.rangeRound=d(Is),A.unknown=function(g){return arguments.length?(h=g,A):h},function(g){return u=g,i=g(n),s=g(e),o=g(t),a=i===s?0:.5/(s-i),l=s===o?0:.5/(o-s),r=s<i?-1:1,A}}function _g(){var n=fr(ka()(st));return n.copy=function(){return Mn(n,_g())},Dn.apply(n,arguments)}function Yg(){var n=vu(ka()).domain([.1,1,10]);return n.copy=function(){return Mn(n,Yg()).base(n.base())},Dn.apply(n,arguments)}function Jg(){var n=Qu(ka());return n.copy=function(){return Mn(n,Jg()).constant(n.constant())},Dn.apply(n,arguments)}function Nu(){var n=Du(ka());return n.copy=function(){return Mn(n,Nu()).exponent(n.exponent())},Dn.apply(n,arguments)}function NS(){return Nu.apply(null,arguments).exponent(.5)}function zt(n){for(var e=n.length/6|0,t=new Array(e),r=0;r<e;)t[r]="#"+n.slice(r*6,++r*6);return t}const TS=zt("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),PS=zt("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),LS=zt("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),OS=zt("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0"),US=zt("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),GS=zt("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),zS=zt("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),HS=zt("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),VS=zt("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),_S=zt("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f");function Tu(n,e,t){const r=n-e+t*2;return n?r>0?r:1:0}const YS="identity",ni="linear",Nn="log",Es="pow",xs="sqrt",Fa="symlog",qg="time",Kg="utc",Ht="sequential",ri="diverging",Pu="quantile",jg="quantize",Wg="threshold",Bs="ordinal",Lu="point",Xg="band",Ou="bin-ordinal",De="continuous",vs="discrete",Ss="discretizing",pt="interpolating",Zg="temporal";function JS(n){return function(e){let t=e[0],r=e[1],i;return r<t&&(i=t,t=r,r=i),[n.invert(t),n.invert(r)]}}function qS(n){return function(e){const t=n.range();let r=e[0],i=e[1],s=-1,o,a,l,c;for(i<r&&(a=r,r=i,i=a),l=0,c=t.length;l<c;++l)t[l]>=r&&t[l]<=i&&(s<0&&(s=l),o=l);if(!(s<0))return r=n.invertExtent(t[s]),i=n.invertExtent(t[o]),[r[0]===void 0?r[1]:r[0],i[1]===void 0?i[0]:i[1]]}}function Uu(){const n=su().unknown(void 0),e=n.domain,t=n.range;let r=[0,1],i,s,o=!1,a=0,l=0,c=.5;delete n.unknown;function u(){const f=e().length,h=r[1]<r[0],A=r[1-h],d=Tu(f,a,l);let g=r[h-0];i=(A-g)/(d||1),o&&(i=Math.floor(i)),g+=(A-g-i*(f-a))*c,s=i*(1-a),o&&(g=Math.round(g),s=Math.round(s));const p=Ji(f).map(m=>g+i*m);return t(h?p.reverse():p)}return n.domain=function(f){return arguments.length?(e(f),u()):e()},n.range=function(f){return arguments.length?(r=[+f[0],+f[1]],u()):r.slice()},n.rangeRound=function(f){return r=[+f[0],+f[1]],o=!0,u()},n.bandwidth=function(){return s},n.step=function(){return i},n.round=function(f){return arguments.length?(o=!!f,u()):o},n.padding=function(f){return arguments.length?(l=Math.max(0,Math.min(1,f)),a=l,u()):a},n.paddingInner=function(f){return arguments.length?(a=Math.max(0,Math.min(1,f)),u()):a},n.paddingOuter=function(f){return arguments.length?(l=Math.max(0,Math.min(1,f)),u()):l},n.align=function(f){return arguments.length?(c=Math.max(0,Math.min(1,f)),u()):c},n.invertRange=function(f){if(f[0]==null||f[1]==null)return;const h=r[1]<r[0],A=h?t().reverse():t(),d=A.length-1;let g=+f[0],p=+f[1],m,C,y;if(!(g!==g||p!==p)&&(p<g&&(y=g,g=p,p=y),!(p<A[0]||g>r[1-h])))return m=Math.max(0,wn(A,g)-1),C=g===p?m:wn(A,p)-1,g-A[m]>s+1e-10&&++m,h&&(y=m,m=d-C,C=d-y),m>C?void 0:e().slice(m,C+1)},n.invert=function(f){const h=n.invertRange([f,f]);return h&&h[0]},n.copy=function(){return Uu().domain(e()).range(r).round(o).paddingInner(a).paddingOuter(l).align(c)},u()}function $g(n){const e=n.copy;return n.padding=n.paddingOuter,delete n.paddingInner,n.copy=function(){return $g(e())},n}function KS(){return $g(Uu().paddingInner(1))}var jS=Array.prototype.map;function WS(n){return jS.call(n,Ni)}const XS=Array.prototype.slice;function ep(){let n=[],e=[];function t(r){return r==null||r!==r?void 0:e[(wn(n,r)-1)%e.length]}return t.domain=function(r){return arguments.length?(n=WS(r),t):n.slice()},t.range=function(r){return arguments.length?(e=XS.call(r),t):e.slice()},t.tickFormat=function(r,i){return Qg(n[0],Et(n),r??10,i)},t.copy=function(){return ep().domain(t.domain()).range(t.range())},t}const Ra=new Map,ZS=Symbol("vega_scale");function $S(n){return n[ZS]=!0,n}function eQ(n,e,t){const r=function(){const s=e();return s.invertRange||(s.invertRange=s.invert?JS(s):s.invertExtent?qS(s):void 0),s.type=n,$S(s)};return r.metadata=bo(Lc(t)),r}function re(n,e,t){return arguments.length>1?(Ra.set(n,eQ(n,e,t)),this):tQ(n)?Ra.get(n):void 0}re(YS,kg),re(ni,Dg,De),re(Nn,Su,[De,Nn]),re(Es,ku,De),re(xs,QS,De),re(Fa,Lg,De),re(qg,FS,[De,Zg]),re(Kg,RS,[De,Zg]),re(Ht,Ru,[De,pt]),re(`${Ht}-${ni}`,Ru,[De,pt]),re(`${Ht}-${Nn}`,Hg,[De,pt,Nn]),re(`${Ht}-${Es}`,Mu,[De,pt]),re(`${Ht}-${xs}`,MS,[De,pt]),re(`${Ht}-${Fa}`,Vg,[De,pt]),re(`${ri}-${ni}`,_g,[De,pt]),re(`${ri}-${Nn}`,Yg,[De,pt,Nn]),re(`${ri}-${Es}`,Nu,[De,pt]),re(`${ri}-${xs}`,NS,[De,pt]),re(`${ri}-${Fa}`,Jg,[De,pt]),re(Pu,Ug,[Ss,Pu]),re(jg,Gg,Ss),re(Wg,zg,Ss),re(Ou,ep,[vs,Ss]),re(Bs,su,vs),re(Xg,Uu,vs),re(Lu,KS,vs);function tQ(n){return Ra.has(n)}function Qs(n,e){const t=Ra.get(n);return t&&t.metadata[e]}function Pe(n){return Qs(n,De)}function sn(n){return Qs(n,vs)}function Ar(n){return Qs(n,Ss)}function tp(n){return Qs(n,Nn)}function Ma(n){return Qs(n,pt)}function nQ(n,e){const t=e[0],r=Et(e)-t;return function(i){return n(t+i*r)}}function Na(n,e,t){return Eu(np(e||"rgb",t),n)}function rQ(n,e){const t=new Array(e),r=e+1;for(let i=0;i<e;)t[i]=n(++i/r);return t}function np(n,e){const t=pS[iQ(n)];return e!=null&&t&&t.gamma?t.gamma(e):t}function iQ(n){return"interpolate"+n.toLowerCase().split("-").map(e=>e[0].toUpperCase()+e.slice(1)).join("")}const sQ={blues:"cfe1f2bed8eca8cee58fc1de74b2d75ba3cf4592c63181bd206fb2125ca40a4a90",greens:"d3eecdc0e6baabdda594d3917bc77d60ba6c46ab5e329a512089430e7735036429",greys:"e2e2e2d4d4d4c4c4c4b1b1b19d9d9d8888887575756262624d4d4d3535351e1e1e",oranges:"fdd8b3fdc998fdb87bfda55efc9244f87f2cf06b18e4580bd14904b93d029f3303",purples:"e2e1efd4d4e8c4c5e0b4b3d6a3a0cc928ec3827cb97566ae684ea25c3696501f8c",reds:"fdc9b4fcb49afc9e80fc8767fa7051f6573fec3f2fdc2a25c81b1db21218970b13",blueGreen:"d5efedc1e8e0a7ddd18bd2be70c6a958ba9144ad77319c5d2089460e7736036429",bluePurple:"ccddecbad0e4a8c2dd9ab0d4919cc98d85be8b6db28a55a6873c99822287730f71",greenBlue:"d3eecec5e8c3b1e1bb9bd8bb82cec269c2ca51b2cd3c9fc7288abd1675b10b60a1",orangeRed:"fddcaffdcf9bfdc18afdad77fb9562f67d53ee6545e24932d32d1ebf130da70403",purpleBlue:"dbdaebc8cee4b1c3de97b7d87bacd15b9fc93a90c01e7fb70b70ab056199045281",purpleBlueGreen:"dbd8eac8cee4b0c3de93b7d872acd1549fc83892bb1c88a3097f8702736b016353",purpleRed:"dcc9e2d3b3d7ce9eccd186c0da6bb2e14da0e23189d91e6fc61159ab07498f023a",redPurple:"fccfccfcbec0faa9b8f98faff571a5ec539ddb3695c41b8aa908808d0179700174",yellowGreen:"e4f4acd1eca0b9e2949ed68880c97c62bb6e47aa5e3297502083440e723b036034",yellowOrangeBrown:"feeaa1fedd84fecc63feb746fca031f68921eb7215db5e0bc54c05ab3d038f3204",yellowOrangeRed:"fee087fed16ffebd59fea849fd903efc7335f9522bee3423de1b20ca0b22af0225",blueOrange:"134b852f78b35da2cb9dcae1d2e5eff2f0ebfce0bafbbf74e8932fc5690d994a07",brownBlueGreen:"704108a0651ac79548e3c78af3e6c6eef1eac9e9e48ed1c74da79e187a72025147",purpleGreen:"5b1667834792a67fb6c9aed3e6d6e8eff0efd9efd5aedda971bb75368e490e5e29",purpleOrange:"4114696647968f83b7b9b4d6dadbebf3eeeafce0bafbbf74e8932fc5690d994a07",redBlue:"8c0d25bf363adf745ef4ae91fbdbc9f2efeed2e5ef9dcae15da2cb2f78b3134b85",redGrey:"8c0d25bf363adf745ef4ae91fcdccbfaf4f1e2e2e2c0c0c0969696646464343434",yellowGreenBlue:"eff9bddbf1b4bde5b594d5b969c5be45b4c22c9ec02182b82163aa23479c1c3185",redYellowBlue:"a50026d4322cf16e43fcac64fedd90faf8c1dcf1ecabd6e875abd04a74b4313695",redYellowGreen:"a50026d4322cf16e43fcac63fedd8df9f7aed7ee8ea4d86e64bc6122964f006837",pinkYellowGreen:"8e0152c0267edd72adf0b3d6faddedf5f3efe1f2cab6de8780bb474f9125276419",spectral:"9e0142d13c4bf0704afcac63fedd8dfbf8b0e0f3a1a9dda269bda94288b55e4fa2",viridis:"440154470e61481a6c482575472f7d443a834144873d4e8a39568c35608d31688e2d708e2a788e27818e23888e21918d1f988b1fa08822a8842ab07f35b77943bf7154c56866cc5d7ad1518fd744a5db36bcdf27d2e21be9e51afde725",magma:"0000040404130b0924150e3720114b2c11603b0f704a107957157e651a80721f817f24828c29819a2e80a8327db6377ac43c75d1426fde4968e95462f1605df76f5cfa7f5efc8f65fe9f6dfeaf78febf84fece91fddea0fcedaffcfdbf",inferno:"0000040403130c0826170c3b240c4f330a5f420a68500d6c5d126e6b176e781c6d86216b932667a12b62ae305cbb3755c73e4cd24644dd513ae65c30ed6925f3771af8850ffb9506fca50afcb519fac62df6d645f2e661f3f484fcffa4",plasma:"0d088723069033059742039d5002a25d01a66a00a87801a88405a7900da49c179ea72198b12a90ba3488c33d80cb4779d35171da5a69e16462e76e5bed7953f2834cf68f44fa9a3dfca636fdb32ffec029fcce25f9dc24f5ea27f0f921",cividis:"00205100235800265d002961012b65042e670831690d346b11366c16396d1c3c6e213f6e26426e2c456e31476e374a6e3c4d6e42506e47536d4c566d51586e555b6e5a5e6e5e616e62646f66676f6a6a706e6d717270717573727976737c79747f7c75827f758682768985778c8877908b78938e789691789a94789e9778a19b78a59e77a9a177aea575b2a874b6ab73bbaf71c0b26fc5b66dc9b96acebd68d3c065d8c462ddc85fe2cb5ce7cf58ebd355f0d652f3da4ff7de4cfae249fce647",rainbow:"6e40aa883eb1a43db3bf3cafd83fa4ee4395fe4b83ff576eff6659ff7847ff8c38f3a130e2b72fcfcc36bee044aff05b8ff4576ff65b52f6673af27828ea8d1ddfa319d0b81cbecb23abd82f96e03d82e14c6edb5a5dd0664dbf6e40aa",sinebow:"ff4040fc582af47218e78d0bd5a703bfbf00a7d5038de70b72f41858fc2a40ff402afc5818f4720be78d03d5a700bfbf03a7d50b8de71872f42a58fc4040ff582afc7218f48d0be7a703d5bf00bfd503a7e70b8df41872fc2a58ff4040",turbo:"23171b32204a3e2a71453493493eae4b49c54a53d7485ee44569ee4074f53c7ff8378af93295f72e9ff42ba9ef28b3e926bce125c5d925cdcf27d5c629dcbc2de3b232e9a738ee9d3ff39347f68950f9805afc7765fd6e70fe667cfd5e88fc5795fb51a1f84badf545b9f140c5ec3cd0e637dae034e4d931ecd12ef4c92bfac029ffb626ffad24ffa223ff9821ff8d1fff821dff771cfd6c1af76118f05616e84b14df4111d5380fcb2f0dc0260ab61f07ac1805a313029b0f00950c00910b00",browns:"eedbbdecca96e9b97ae4a865dc9856d18954c7784cc0673fb85536ad44339f3632",tealBlues:"bce4d89dd3d181c3cb65b3c245a2b9368fae347da0306a932c5985",teals:"bbdfdfa2d4d58ac9c975bcbb61b0af4da5a43799982b8b8c1e7f7f127273006667",warmGreys:"dcd4d0cec5c1c0b8b4b3aaa7a59c9998908c8b827f7e7673726866665c5a59504e",goldGreen:"f4d166d5ca60b6c35c98bb597cb25760a6564b9c533f8f4f33834a257740146c36",goldOrange:"f4d166f8be5cf8aa4cf5983bf3852aef701be2621fd65322c54923b142239e3a26",goldRed:"f4d166f6be59f9aa51fc964ef6834bee734ae56249db5247cf4244c43141b71d3e",lightGreyRed:"efe9e6e1dad7d5cbc8c8bdb9bbaea9cd967ddc7b43e15f19df4011dc000b",lightGreyTeal:"e4eaead6dcddc8ced2b7c2c7a6b4bc64b0bf22a6c32295c11f85be1876bc",lightMulti:"e0f1f2c4e9d0b0de9fd0e181f6e072f6c053f3993ef77440ef4a3c",lightOrange:"f2e7daf7d5baf9c499fab184fa9c73f68967ef7860e8645bde515bd43d5b",lightTealBlue:"e3e9e0c0dccf9aceca7abfc859afc0389fb9328dad2f7ca0276b95255988",darkBlue:"3232322d46681a5c930074af008cbf05a7ce25c0dd38daed50f3faffffff",darkGold:"3c3c3c584b37725e348c7631ae8b2bcfa424ecc31ef9de30fff184ffffff",darkGreen:"3a3a3a215748006f4d048942489e4276b340a6c63dd2d836ffeb2cffffaa",darkMulti:"3737371f5287197d8c29a86995ce3fffe800ffffff",darkRed:"3434347036339e3c38cc4037e75d1eec8620eeab29f0ce32ffeb2c"},oQ={accent:PS,category10:TS,category20:"1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5",category20b:"393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6",category20c:"3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9",dark2:LS,observable10:OS,paired:US,pastel1:GS,pastel2:zS,set1:HS,set2:VS,set3:_S,tableau10:"4c78a8f58518e4575672b7b254a24beeca3bb279a2ff9da69d755dbab0ac",tableau20:"4c78a89ecae9f58518ffbf7954a24b88d27ab79a20f2cf5b43989483bcb6e45756ff9d9879706ebab0acd67195fcbfd2b279a2d6a5c99e765fd8b5a5"};function rp(n){if(ye(n))return n;const e=n.length/6|0,t=new Array(e);for(let r=0;r<e;)t[r]="#"+n.slice(r*6,++r*6);return t}function ip(n,e){for(const t in n)Gu(t,e(n[t]))}const sp={};ip(oQ,rp),ip(sQ,n=>Na(rp(n)));function Gu(n,e){return n=n&&n.toLowerCase(),arguments.length>1?(sp[n]=e,this):sp[n]}function zu(){const n=e=>e;return n.invert=e=>e,n.copy=zu,n.invertRange=()=>{},n.type="null",n}class aQ{constructor(e,t,r={}){this._container=e,this._sizeSource=t??(()=>({width:void 0,height:void 0})),this._shaderCache=new Map,this.rangeTextures=new WeakMap,this.selectionTextures=new WeakMap;const i=document.createElement("canvas");e.appendChild(i);const s=B3(i,{antialias:!0,depth:!1,premultipliedAlpha:!0,...r});if(!s)throw new Error("Unable to initialize WebGL. Your browser or machine may not support it.");if(!Hr(s))throw new Error("Your web browser does not support WebGL 2.0. Chrome, Firefox, and Safari Tech Preview should work.");O0(s);const o=s.getExtension("WEBGL_provoking_vertex");o&&o.provokingVertexWEBGL(o.FIRST_VERTEX_CONVENTION_WEBGL),s.blendFunc(s.ONE,s.ONE_MINUS_SRC_ALPHA),this.canvas=i,this.gl=s,this._pickingAttachmentOptions=[{format:s.RGBA,type:s.UNSIGNED_BYTE,minMag:s.LINEAR,wrap:s.CLAMP_TO_EDGE}],this._pickingBufferInfo=P0(s,this._pickingAttachmentOptions),s.bindFramebuffer(s.FRAMEBUFFER,null),this.adjustGl()}invalidateSize(){this._logicalCanvasSize=void 0,this.adjustGl()}compileShader(e,t){const r="#version 300 es",i="precision mediump float;";ye(t)&&(t=t.join(`
|
|
385
|
+
${n}
|
|
386
|
+
};`)(this)}else this.updateFromDatum=e=>{for(let n=0;n<this.dataUpdaters.length;n++)this.dataUpdaters[n](e)}}pushFromDatum(e){this.updateFromDatum(e),this.pushAll()}}const er=5,Ef=127;function If(t){const e=[];for(let d=0;d<=Ef;d++)e.push(void 0);const n=new Map;for(const d of t.chars)d.id<=Ef?e[d.id]=d:n.set(d.id,d);const i=8722;n.has(i)||n.set(i,e[45]);function r(d){return(d<=Ef?e[d]:n.get(d))||e[63]}function s(d){return r(d.charCodeAt(0))}const o=t.common.base,a=s("x"),l=s("X"),c=s("q"),f=a.height-er*2,u=l.height-er*2,h=c.height-a.height+c.yoffset-a.yoffset;function A(d,g=1){let m=0;for(let p=0;p<d.length;p++)m+=r(d.charCodeAt(p)).xadvance;return m/o*g}return{measureWidth:A,getCharByCode:r,getChar:s,xHeight:f,capHeight:u,descent:h,common:t.common}}function tr(t,e=0,n=1){return Math.max(e,Math.min(n,t))}const wg=2**31-1,JS=-2147483648;function qS(t,e,n,i=n){const r=new Array(t);r.fill(wg);let s=JS,o=-1/0,a=!1;const l=new Array(t);l.fill(0);const c=e[0],u=(e[1]-e[0])/t,h=(p,w)=>{const C=(p-c)/u,y=Math.floor(C);return tr(w&&y==C?y-1:y,0,t-1)};function A(p,w,C){if(a)return;if(w>s)s=w;else{a=!0;return}const y=n(p);if(y<o){a=!0;return}o=y;const b=h(y,!1);r[b]>w&&(r[b]=w),l[b]<C&&(l[b]=C)}function d(p,w,C){if(a)return;if(w>s)s=w;else{a=!0,console.debug("Items (vertices) are not ordered properly. Disabling binned index.");return}const y=n(p),b=i(p);if(y<o){a=!0;return}else if(b<y){a=!0;return}o=y;const x=h(y,!1),I=h(b,!0);for(let S=x;S<=I;S++)r[S]>w&&(r[S]=w),l[S]<C&&(l[S]=C)}const g=(p,w,C=[0,0])=>{const y=h(p,!1),b=h(w,!0),x=r[y],I=Math.max(l[b],x);return C[0]=x,C[1]=I,C},m=()=>{if(a)return;for(let w=1;w<l.length;w++)l[w]<l[w-1]&&(l[w]=l[w-1]);let p=!0;for(let w=r.length-1;w>0;w--)p&&r[w]==wg?(r[w]=l[w],p=!1):r[w-1]>r[w]&&(r[w-1]=r[w]);return g};return A.getIndex=m,d.getIndex=m,n==i?A:d}function Ot(t,e){switch(arguments.length){case 0:break;case 1:this.range(t);break;default:this.range(e).domain(t);break}return this}function kn(t,e){switch(arguments.length){case 0:break;case 1:{typeof t=="function"?this.interpolator(t):this.range(t);break}default:{this.domain(t),typeof e=="function"?this.interpolator(e):this.range(e);break}}return this}const Da=Symbol("implicit");function bf(){var t=new Wt,e=[],n=[],i=Da;function r(s){let o=t.get(s);if(o===void 0){if(i!==Da)return i;t.set(s,o=e.push(s)-1)}return n[o%n.length]}return r.domain=function(s){if(!arguments.length)return e.slice();e=[],t=new Wt;for(const o of s)t.has(o)||t.set(o,e.push(o)-1);return r},r.range=function(s){return arguments.length?(n=Array.from(s),r):n.slice()},r.unknown=function(s){return arguments.length?(i=s,r):i},r.copy=function(){return bf(e,n).unknown(i)},Ot.apply(r,arguments),r}function nr(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function Bs(t,e){var n=Object.create(t.prototype);for(var i in e)n[i]=e[i];return n}function Fn(){}var li=.7,ir=1/li,rr="\\s*([+-]?\\d+)\\s*",vs="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",Ut="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",KS=/^#([0-9a-f]{3,8})$/,jS=new RegExp(`^rgb\\(${rr},${rr},${rr}\\)$`),WS=new RegExp(`^rgb\\(${Ut},${Ut},${Ut}\\)$`),XS=new RegExp(`^rgba\\(${rr},${rr},${rr},${vs}\\)$`),ZS=new RegExp(`^rgba\\(${Ut},${Ut},${Ut},${vs}\\)$`),$S=new RegExp(`^hsl\\(${vs},${Ut},${Ut}\\)$`),eQ=new RegExp(`^hsla\\(${vs},${Ut},${Ut},${vs}\\)$`),yg={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};nr(Fn,Rn,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:Cg,formatHex:Cg,formatHex8:tQ,formatHsl:nQ,formatRgb:Eg,toString:Eg});function Cg(){return this.rgb().formatHex()}function tQ(){return this.rgb().formatHex8()}function nQ(){return vg(this).formatHsl()}function Eg(){return this.rgb().formatRgb()}function Rn(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=KS.exec(t))?(n=e[1].length,e=parseInt(e[1],16),n===6?Ig(e):n===3?new Me(e>>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):n===8?ka(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):n===4?ka(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=jS.exec(t))?new Me(e[1],e[2],e[3],1):(e=WS.exec(t))?new Me(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=XS.exec(t))?ka(e[1],e[2],e[3],e[4]):(e=ZS.exec(t))?ka(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=$S.exec(t))?Bg(e[1],e[2]/100,e[3]/100,1):(e=eQ.exec(t))?Bg(e[1],e[2]/100,e[3]/100,e[4]):yg.hasOwnProperty(t)?Ig(yg[t]):t==="transparent"?new Me(NaN,NaN,NaN,0):null}function Ig(t){return new Me(t>>16&255,t>>8&255,t&255,1)}function ka(t,e,n,i){return i<=0&&(t=e=n=NaN),new Me(t,e,n,i)}function xf(t){return t instanceof Fn||(t=Rn(t)),t?(t=t.rgb(),new Me(t.r,t.g,t.b,t.opacity)):new Me}function Fa(t,e,n,i){return arguments.length===1?xf(t):new Me(t,e,n,i??1)}function Me(t,e,n,i){this.r=+t,this.g=+e,this.b=+n,this.opacity=+i}nr(Me,Fa,Bs(Fn,{brighter(t){return t=t==null?ir:Math.pow(ir,t),new Me(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=t==null?li:Math.pow(li,t),new Me(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new Me(fi(this.r),fi(this.g),fi(this.b),Ra(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:bg,formatHex:bg,formatHex8:iQ,formatRgb:xg,toString:xg}));function bg(){return`#${ui(this.r)}${ui(this.g)}${ui(this.b)}`}function iQ(){return`#${ui(this.r)}${ui(this.g)}${ui(this.b)}${ui((isNaN(this.opacity)?1:this.opacity)*255)}`}function xg(){const t=Ra(this.opacity);return`${t===1?"rgb(":"rgba("}${fi(this.r)}, ${fi(this.g)}, ${fi(this.b)}${t===1?")":`, ${t})`}`}function Ra(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function fi(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function ui(t){return t=fi(t),(t<16?"0":"")+t.toString(16)}function Bg(t,e,n,i){return i<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new St(t,e,n,i)}function vg(t){if(t instanceof St)return new St(t.h,t.s,t.l,t.opacity);if(t instanceof Fn||(t=Rn(t)),!t)return new St;if(t instanceof St)return t;t=t.rgb();var e=t.r/255,n=t.g/255,i=t.b/255,r=Math.min(e,n,i),s=Math.max(e,n,i),o=NaN,a=s-r,l=(s+r)/2;return a?(e===s?o=(n-i)/a+(n<i)*6:n===s?o=(i-e)/a+2:o=(e-n)/a+4,a/=l<.5?s+r:2-s-r,o*=60):a=l>0&&l<1?0:o,new St(o,a,l,t.opacity)}function Bf(t,e,n,i){return arguments.length===1?vg(t):new St(t,e,n,i??1)}function St(t,e,n,i){this.h=+t,this.s=+e,this.l=+n,this.opacity=+i}nr(St,Bf,Bs(Fn,{brighter(t){return t=t==null?ir:Math.pow(ir,t),new St(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?li:Math.pow(li,t),new St(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+(this.h<0)*360,e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,i=n+(n<.5?n:1-n)*e,r=2*n-i;return new Me(vf(t>=240?t-240:t+120,r,i),vf(t,r,i),vf(t<120?t+240:t-120,r,i),this.opacity)},clamp(){return new St(Sg(this.h),Na(this.s),Na(this.l),Ra(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const t=Ra(this.opacity);return`${t===1?"hsl(":"hsla("}${Sg(this.h)}, ${Na(this.s)*100}%, ${Na(this.l)*100}%${t===1?")":`, ${t})`}`}}));function Sg(t){return t=(t||0)%360,t<0?t+360:t}function Na(t){return Math.max(0,Math.min(1,t||0))}function vf(t,e,n){return(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)*255}const Qg=Math.PI/180,Dg=180/Math.PI,Ma=18,kg=.96422,Fg=1,Rg=.82521,Ng=4/29,sr=6/29,Mg=3*sr*sr,rQ=sr*sr*sr;function Tg(t){if(t instanceof _t)return new _t(t.l,t.a,t.b,t.opacity);if(t instanceof sn)return Pg(t);t instanceof Me||(t=xf(t));var e=Ff(t.r),n=Ff(t.g),i=Ff(t.b),r=Qf((.2225045*e+.7168786*n+.0606169*i)/Fg),s,o;return e===n&&n===i?s=o=r:(s=Qf((.4360747*e+.3850649*n+.1430804*i)/kg),o=Qf((.0139322*e+.0971045*n+.7141733*i)/Rg)),new _t(116*r-16,500*(s-r),200*(r-o),t.opacity)}function Sf(t,e,n,i){return arguments.length===1?Tg(t):new _t(t,e,n,i??1)}function _t(t,e,n,i){this.l=+t,this.a=+e,this.b=+n,this.opacity=+i}nr(_t,Sf,Bs(Fn,{brighter(t){return new _t(this.l+Ma*(t??1),this.a,this.b,this.opacity)},darker(t){return new _t(this.l-Ma*(t??1),this.a,this.b,this.opacity)},rgb(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,n=isNaN(this.b)?t:t-this.b/200;return e=kg*Df(e),t=Fg*Df(t),n=Rg*Df(n),new Me(kf(3.1338561*e-1.6168667*t-.4906146*n),kf(-.9787684*e+1.9161415*t+.033454*n),kf(.0719453*e-.2289914*t+1.4052427*n),this.opacity)}}));function Qf(t){return t>rQ?Math.pow(t,1/3):t/Mg+Ng}function Df(t){return t>sr?t*t*t:Mg*(t-Ng)}function kf(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Ff(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function sQ(t){if(t instanceof sn)return new sn(t.h,t.c,t.l,t.opacity);if(t instanceof _t||(t=Tg(t)),t.a===0&&t.b===0)return new sn(NaN,0<t.l&&t.l<100?0:NaN,t.l,t.opacity);var e=Math.atan2(t.b,t.a)*Dg;return new sn(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function Rf(t,e,n,i){return arguments.length===1?sQ(t):new sn(t,e,n,i??1)}function sn(t,e,n,i){this.h=+t,this.c=+e,this.l=+n,this.opacity=+i}function Pg(t){if(isNaN(t.h))return new _t(t.l,0,0,t.opacity);var e=t.h*Qg;return new _t(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}nr(sn,Rf,Bs(Fn,{brighter(t){return new sn(this.h,this.c,this.l+Ma*(t??1),this.opacity)},darker(t){return new sn(this.h,this.c,this.l-Ma*(t??1),this.opacity)},rgb(){return Pg(this).rgb()}}));var Lg=-.14861,Nf=1.78277,Mf=-.29227,Ta=-.90649,Ss=1.97294,Og=Ss*Ta,Ug=Ss*Nf,_g=Nf*Mf-Ta*Lg;function oQ(t){if(t instanceof Ai)return new Ai(t.h,t.s,t.l,t.opacity);t instanceof Me||(t=xf(t));var e=t.r/255,n=t.g/255,i=t.b/255,r=(_g*i+Og*e-Ug*n)/(_g+Og-Ug),s=i-r,o=(Ss*(n-r)-Mf*s)/Ta,a=Math.sqrt(o*o+s*s)/(Ss*r*(1-r)),l=a?Math.atan2(o,s)*Dg-120:NaN;return new Ai(l<0?l+360:l,a,r,t.opacity)}function Tf(t,e,n,i){return arguments.length===1?oQ(t):new Ai(t,e,n,i??1)}function Ai(t,e,n,i){this.h=+t,this.s=+e,this.l=+n,this.opacity=+i}nr(Ai,Tf,Bs(Fn,{brighter(t){return t=t==null?ir:Math.pow(ir,t),new Ai(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=t==null?li:Math.pow(li,t),new Ai(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=isNaN(this.h)?0:(this.h+120)*Qg,e=+this.l,n=isNaN(this.s)?0:this.s*e*(1-e),i=Math.cos(t),r=Math.sin(t);return new Me(255*(e+n*(Lg*i+Nf*r)),255*(e+n*(Mf*i+Ta*r)),255*(e+n*(Ss*i)),this.opacity)}}));function Gg(t,e,n,i,r){var s=t*t,o=s*t;return((1-3*t+3*s-o)*e+(4-6*s+3*o)*n+(1+3*t+3*s-3*o)*i+o*r)/6}function zg(t){var e=t.length-1;return function(n){var i=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),r=t[i],s=t[i+1],o=i>0?t[i-1]:2*r-s,a=i<e-1?t[i+2]:2*s-r;return Gg((n-i/e)*e,o,r,s,a)}}function Hg(t){var e=t.length;return function(n){var i=Math.floor(((n%=1)<0?++n:n)*e),r=t[(i+e-1)%e],s=t[i%e],o=t[(i+1)%e],a=t[(i+2)%e];return Gg((n-i/e)*e,r,s,o,a)}}const Pa=t=>()=>t;function Yg(t,e){return function(n){return t+n*e}}function aQ(t,e,n){return t=Math.pow(t,n),e=Math.pow(e,n)-t,n=1/n,function(i){return Math.pow(t+i*e,n)}}function La(t,e){var n=e-t;return n?Yg(t,n>180||n<-180?n-360*Math.round(n/360):n):Pa(isNaN(t)?e:t)}function cQ(t){return(t=+t)==1?Te:function(e,n){return n-e?aQ(e,n,t):Pa(isNaN(e)?n:e)}}function Te(t,e){var n=e-t;return n?Yg(t,n):Pa(isNaN(t)?e:t)}const Pf=(function t(e){var n=cQ(e);function i(r,s){var o=n((r=Fa(r)).r,(s=Fa(s)).r),a=n(r.g,s.g),l=n(r.b,s.b),c=Te(r.opacity,s.opacity);return function(f){return r.r=o(f),r.g=a(f),r.b=l(f),r.opacity=c(f),r+""}}return i.gamma=t,i})(1);function Vg(t){return function(e){var n=e.length,i=new Array(n),r=new Array(n),s=new Array(n),o,a;for(o=0;o<n;++o)a=Fa(e[o]),i[o]=a.r||0,r[o]=a.g||0,s[o]=a.b||0;return i=t(i),r=t(r),s=t(s),a.opacity=1,function(l){return a.r=i(l),a.g=r(l),a.b=s(l),a+""}}}var lQ=Vg(zg),fQ=Vg(Hg);function Lf(t,e){e||(e=[]);var n=t?Math.min(e.length,t.length):0,i=e.slice(),r;return function(s){for(r=0;r<n;++r)i[r]=t[r]*(1-s)+e[r]*s;return i}}function Jg(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function uQ(t,e){return(Jg(e)?Lf:qg)(t,e)}function qg(t,e){var n=e?e.length:0,i=t?Math.min(n,t.length):0,r=new Array(i),s=new Array(n),o;for(o=0;o<i;++o)r[o]=Nn(t[o],e[o]);for(;o<n;++o)s[o]=e[o];return function(a){for(o=0;o<i;++o)s[o]=r[o](a);return s}}function Kg(t,e){var n=new Date;return t=+t,e=+e,function(i){return n.setTime(t*(1-i)+e*i),n}}function Qt(t,e){return t=+t,e=+e,function(n){return t*(1-n)+e*n}}function jg(t,e){var n={},i={},r;(t===null||typeof t!="object")&&(t={}),(e===null||typeof e!="object")&&(e={});for(r in e)r in t?n[r]=Nn(t[r],e[r]):i[r]=e[r];return function(s){for(r in n)i[r]=n[r](s);return i}}var Of=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,Uf=new RegExp(Of.source,"g");function AQ(t){return function(){return t}}function hQ(t){return function(e){return t(e)+""}}function Wg(t,e){var n=Of.lastIndex=Uf.lastIndex=0,i,r,s,o=-1,a=[],l=[];for(t=t+"",e=e+"";(i=Of.exec(t))&&(r=Uf.exec(e));)(s=r.index)>n&&(s=e.slice(n,s),a[o]?a[o]+=s:a[++o]=s),(i=i[0])===(r=r[0])?a[o]?a[o]+=r:a[++o]=r:(a[++o]=null,l.push({i:o,x:Qt(i,r)})),n=Uf.lastIndex;return n<e.length&&(s=e.slice(n),a[o]?a[o]+=s:a[++o]=s),a.length<2?l[0]?hQ(l[0].x):AQ(e):(e=l.length,function(c){for(var f=0,u;f<e;++f)a[(u=l[f]).i]=u.x(c);return a.join("")})}function Nn(t,e){var n=typeof e,i;return e==null||n==="boolean"?Pa(e):(n==="number"?Qt:n==="string"?(i=Rn(e))?(e=i,Pf):Wg:e instanceof Rn?Pf:e instanceof Date?Kg:Jg(e)?Lf:Array.isArray(e)?qg:typeof e.valueOf!="function"&&typeof e.toString!="function"||isNaN(e)?jg:Qt)(t,e)}function dQ(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}function gQ(t,e){var n=La(+t,+e);return function(i){var r=n(i);return r-360*Math.floor(r/360)}}function Qs(t,e){return t=+t,e=+e,function(n){return Math.round(t*(1-n)+e*n)}}var Xg=180/Math.PI,_f={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function Zg(t,e,n,i,r,s){var o,a,l;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(l=t*n+e*i)&&(n-=t*l,i-=e*l),(a=Math.sqrt(n*n+i*i))&&(n/=a,i/=a,l/=a),t*i<e*n&&(t=-t,e=-e,l=-l,o=-o),{translateX:r,translateY:s,rotate:Math.atan2(e,t)*Xg,skewX:Math.atan(l)*Xg,scaleX:o,scaleY:a}}var Oa;function pQ(t){const e=new(typeof DOMMatrix=="function"?DOMMatrix:WebKitCSSMatrix)(t+"");return e.isIdentity?_f:Zg(e.a,e.b,e.c,e.d,e.e,e.f)}function mQ(t){return t==null||(Oa||(Oa=document.createElementNS("http://www.w3.org/2000/svg","g")),Oa.setAttribute("transform",t),!(t=Oa.transform.baseVal.consolidate()))?_f:(t=t.matrix,Zg(t.a,t.b,t.c,t.d,t.e,t.f))}function $g(t,e,n,i){function r(c){return c.length?c.pop()+" ":""}function s(c,f,u,h,A,d){if(c!==u||f!==h){var g=A.push("translate(",null,e,null,n);d.push({i:g-4,x:Qt(c,u)},{i:g-2,x:Qt(f,h)})}else(u||h)&&A.push("translate("+u+e+h+n)}function o(c,f,u,h){c!==f?(c-f>180?f+=360:f-c>180&&(c+=360),h.push({i:u.push(r(u)+"rotate(",null,i)-2,x:Qt(c,f)})):f&&u.push(r(u)+"rotate("+f+i)}function a(c,f,u,h){c!==f?h.push({i:u.push(r(u)+"skewX(",null,i)-2,x:Qt(c,f)}):f&&u.push(r(u)+"skewX("+f+i)}function l(c,f,u,h,A,d){if(c!==u||f!==h){var g=A.push(r(A)+"scale(",null,",",null,")");d.push({i:g-4,x:Qt(c,u)},{i:g-2,x:Qt(f,h)})}else(u!==1||h!==1)&&A.push(r(A)+"scale("+u+","+h+")")}return function(c,f){var u=[],h=[];return c=t(c),f=t(f),s(c.translateX,c.translateY,f.translateX,f.translateY,u,h),o(c.rotate,f.rotate,u,h),a(c.skewX,f.skewX,u,h),l(c.scaleX,c.scaleY,f.scaleX,f.scaleY,u,h),c=f=null,function(A){for(var d=-1,g=h.length,m;++d<g;)u[(m=h[d]).i]=m.x(A);return u.join("")}}}var wQ=$g(pQ,"px, ","px)","deg)"),yQ=$g(mQ,", ",")",")"),CQ=1e-12;function ep(t){return((t=Math.exp(t))+1/t)/2}function EQ(t){return((t=Math.exp(t))-1/t)/2}function IQ(t){return((t=Math.exp(2*t))-1)/(t+1)}const bQ=(function t(e,n,i){function r(s,o){var a=s[0],l=s[1],c=s[2],f=o[0],u=o[1],h=o[2],A=f-a,d=u-l,g=A*A+d*d,m,p;if(g<CQ)p=Math.log(h/c)/e,m=function(I){return[a+I*A,l+I*d,c*Math.exp(e*I*p)]};else{var w=Math.sqrt(g),C=(h*h-c*c+i*g)/(2*c*n*w),y=(h*h-c*c-i*g)/(2*h*n*w),b=Math.log(Math.sqrt(C*C+1)-C),x=Math.log(Math.sqrt(y*y+1)-y);p=(x-b)/e,m=function(I){var S=I*p,Q=ep(b),v=c/(n*w)*(Q*IQ(e*S+b)-EQ(b));return[a+v*A,l+v*d,c*Q/ep(e*S+b)]}}return m.duration=p*1e3*e/Math.SQRT2,m}return r.rho=function(s){var o=Math.max(.001,+s),a=o*o,l=a*a;return t(o,a,l)},r})(Math.SQRT2,2,4);function tp(t){return function(e,n){var i=t((e=Bf(e)).h,(n=Bf(n)).h),r=Te(e.s,n.s),s=Te(e.l,n.l),o=Te(e.opacity,n.opacity);return function(a){return e.h=i(a),e.s=r(a),e.l=s(a),e.opacity=o(a),e+""}}}const xQ=tp(La);var BQ=tp(Te);function vQ(t,e){var n=Te((t=Sf(t)).l,(e=Sf(e)).l),i=Te(t.a,e.a),r=Te(t.b,e.b),s=Te(t.opacity,e.opacity);return function(o){return t.l=n(o),t.a=i(o),t.b=r(o),t.opacity=s(o),t+""}}function np(t){return function(e,n){var i=t((e=Rf(e)).h,(n=Rf(n)).h),r=Te(e.c,n.c),s=Te(e.l,n.l),o=Te(e.opacity,n.opacity);return function(a){return e.h=i(a),e.c=r(a),e.l=s(a),e.opacity=o(a),e+""}}}const SQ=np(La);var QQ=np(Te);function ip(t){return(function e(n){n=+n;function i(r,s){var o=t((r=Tf(r)).h,(s=Tf(s)).h),a=Te(r.s,s.s),l=Te(r.l,s.l),c=Te(r.opacity,s.opacity);return function(f){return r.h=o(f),r.s=a(f),r.l=l(Math.pow(f,n)),r.opacity=c(f),r+""}}return i.gamma=e,i})(1)}const DQ=ip(La);var kQ=ip(Te);function Gf(t,e){e===void 0&&(e=t,t=Nn);for(var n=0,i=e.length-1,r=e[0],s=new Array(i<0?0:i);n<i;)s[n]=t(r,r=e[++n]);return function(o){var a=Math.max(0,Math.min(i-1,Math.floor(o*=i)));return s[a](o-a)}}function FQ(t,e){for(var n=new Array(e),i=0;i<e;++i)n[i]=t(i/(e-1));return n}const RQ=Object.freeze(Object.defineProperty({__proto__:null,interpolate:Nn,interpolateArray:uQ,interpolateBasis:zg,interpolateBasisClosed:Hg,interpolateCubehelix:DQ,interpolateCubehelixLong:kQ,interpolateDate:Kg,interpolateDiscrete:dQ,interpolateHcl:SQ,interpolateHclLong:QQ,interpolateHsl:xQ,interpolateHslLong:BQ,interpolateHue:gQ,interpolateLab:vQ,interpolateNumber:Qt,interpolateNumberArray:Lf,interpolateObject:jg,interpolateRgb:Pf,interpolateRgbBasis:lQ,interpolateRgbBasisClosed:fQ,interpolateRound:Qs,interpolateString:Wg,interpolateTransformCss:wQ,interpolateTransformSvg:yQ,interpolateZoom:bQ,piecewise:Gf,quantize:FQ},Symbol.toStringTag,{value:"Module"}));function NQ(t){return function(){return t}}function zf(t){return+t}var rp=[0,1];function ot(t){return t}function Hf(t,e){return(e-=t=+t)?function(n){return(n-t)/e}:NQ(isNaN(e)?NaN:.5)}function MQ(t,e){var n;return t>e&&(n=t,t=e,e=n),function(i){return Math.max(t,Math.min(e,i))}}function TQ(t,e,n){var i=t[0],r=t[1],s=e[0],o=e[1];return r<i?(i=Hf(r,i),s=n(o,s)):(i=Hf(i,r),s=n(s,o)),function(a){return s(i(a))}}function PQ(t,e,n){var i=Math.min(t.length,e.length)-1,r=new Array(i),s=new Array(i),o=-1;for(t[i]<t[0]&&(t=t.slice().reverse(),e=e.slice().reverse());++o<i;)r[o]=Hf(t[o],t[o+1]),s[o]=n(e[o],e[o+1]);return function(a){var l=yn(t,a,1,i)-1;return s[l](r[l](a))}}function Ds(t,e){return e.domain(t.domain()).range(t.range()).interpolate(t.interpolate()).clamp(t.clamp()).unknown(t.unknown())}function Ua(){var t=rp,e=rp,n=Nn,i,r,s,o=ot,a,l,c;function f(){var h=Math.min(t.length,e.length);return o!==ot&&(o=MQ(t[0],t[h-1])),a=h>2?PQ:TQ,l=c=null,u}function u(h){return h==null||isNaN(h=+h)?s:(l||(l=a(t.map(i),e,n)))(i(o(h)))}return u.invert=function(h){return o(r((c||(c=a(e,t.map(i),Qt)))(h)))},u.domain=function(h){return arguments.length?(t=Array.from(h,zf),f()):t.slice()},u.range=function(h){return arguments.length?(e=Array.from(h),f()):e.slice()},u.rangeRound=function(h){return e=Array.from(h),n=Qs,f()},u.clamp=function(h){return arguments.length?(o=h?!0:ot,f()):o!==ot},u.interpolate=function(h){return arguments.length?(n=h,f()):n},u.unknown=function(h){return arguments.length?(s=h,u):s},function(h,A){return i=h,r=A,f()}}function sp(){return Ua()(ot,ot)}function op(t,e,n,i){var r=$n(t,e,n),s;switch(i=Oi(i??",f"),i.type){case"s":{var o=Math.max(Math.abs(t),Math.abs(e));return i.precision==null&&!isNaN(s=q2(r,o))&&(i.precision=s),ed(i,o)}case"":case"e":case"g":case"p":case"r":{i.precision==null&&!isNaN(s=K2(r,Math.max(Math.abs(t),Math.abs(e))))&&(i.precision=s-(i.type==="e"));break}case"f":case"%":{i.precision==null&&!isNaN(s=J2(r))&&(i.precision=s-(i.type==="%")*2);break}}return ze(i)}function hi(t){var e=t.domain;return t.ticks=function(n){var i=e();return _o(i[0],i[i.length-1],n??10)},t.tickFormat=function(n,i){var r=e();return op(r[0],r[r.length-1],n??10,i)},t.nice=function(n){n==null&&(n=10);var i=e(),r=0,s=i.length-1,o=i[r],a=i[s],l,c,f=10;for(a<o&&(c=o,o=a,a=c,c=r,r=s,s=c);f-- >0;){if(c=hl(o,a,n),c===l)return i[r]=o,i[s]=a,e(i);if(c>0)o=Math.floor(o/c)*c,a=Math.ceil(a/c)*c;else if(c<0)o=Math.ceil(o*c)/c,a=Math.floor(a*c)/c;else break;l=c}return t},t}function ap(){var t=sp();return t.copy=function(){return Ds(t,ap())},Ot.apply(t,arguments),hi(t)}function cp(t){var e;function n(i){return i==null||isNaN(i=+i)?e:i}return n.invert=n,n.domain=n.range=function(i){return arguments.length?(t=Array.from(i,zf),n):t.slice()},n.unknown=function(i){return arguments.length?(e=i,n):e},n.copy=function(){return cp(t).unknown(e)},t=arguments.length?Array.from(t,zf):[0,1],hi(n)}function lp(t,e){t=t.slice();var n=0,i=t.length-1,r=t[n],s=t[i],o;return s<r&&(o=n,n=i,i=o,o=r,r=s,s=o),t[n]=e.floor(r),t[i]=e.ceil(s),t}function fp(t){return Math.log(t)}function up(t){return Math.exp(t)}function LQ(t){return-Math.log(-t)}function OQ(t){return-Math.exp(-t)}function UQ(t){return isFinite(t)?+("1e"+t):t<0?0:t}function _Q(t){return t===10?UQ:t===Math.E?Math.exp:e=>Math.pow(t,e)}function GQ(t){return t===Math.E?Math.log:t===10&&Math.log10||t===2&&Math.log2||(t=Math.log(t),e=>Math.log(e)/t)}function Ap(t){return(e,n)=>-t(-e,n)}function Yf(t){const e=t(fp,up),n=e.domain;let i=10,r,s;function o(){return r=GQ(i),s=_Q(i),n()[0]<0?(r=Ap(r),s=Ap(s),t(LQ,OQ)):t(fp,up),e}return e.base=function(a){return arguments.length?(i=+a,o()):i},e.domain=function(a){return arguments.length?(n(a),o()):n()},e.ticks=a=>{const l=n();let c=l[0],f=l[l.length-1];const u=f<c;u&&([c,f]=[f,c]);let h=r(c),A=r(f),d,g;const m=a==null?10:+a;let p=[];if(!(i%1)&&A-h<m){if(h=Math.floor(h),A=Math.ceil(A),c>0){for(;h<=A;++h)for(d=1;d<i;++d)if(g=h<0?d/s(-h):d*s(h),!(g<c)){if(g>f)break;p.push(g)}}else for(;h<=A;++h)for(d=i-1;d>=1;--d)if(g=h>0?d/s(-h):d*s(h),!(g<c)){if(g>f)break;p.push(g)}p.length*2<m&&(p=_o(c,f,m))}else p=_o(h,A,Math.min(A-h,m)).map(s);return u?p.reverse():p},e.tickFormat=(a,l)=>{if(a==null&&(a=10),l==null&&(l=i===10?"s":","),typeof l!="function"&&(!(i%1)&&(l=Oi(l)).precision==null&&(l.trim=!0),l=ze(l)),a===1/0)return l;const c=Math.max(1,i*a/e.ticks().length);return f=>{let u=f/s(Math.round(r(f)));return u*i<i-.5&&(u*=i),u<=c?l(f):""}},e.nice=()=>n(lp(n(),{floor:a=>s(Math.floor(r(a))),ceil:a=>s(Math.ceil(r(a)))})),e}function Vf(){const t=Yf(Ua()).domain([1,10]);return t.copy=()=>Ds(t,Vf()).base(t.base()),Ot.apply(t,arguments),t}function hp(t){return function(e){return Math.sign(e)*Math.log1p(Math.abs(e/t))}}function dp(t){return function(e){return Math.sign(e)*Math.expm1(Math.abs(e))*t}}function Jf(t){var e=1,n=t(hp(e),dp(e));return n.constant=function(i){return arguments.length?t(hp(e=+i),dp(e)):e},hi(n)}function gp(){var t=Jf(Ua());return t.copy=function(){return Ds(t,gp()).constant(t.constant())},Ot.apply(t,arguments)}function pp(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}function zQ(t){return t<0?-Math.sqrt(-t):Math.sqrt(t)}function HQ(t){return t<0?-t*t:t*t}function qf(t){var e=t(ot,ot),n=1;function i(){return n===1?t(ot,ot):n===.5?t(zQ,HQ):t(pp(n),pp(1/n))}return e.exponent=function(r){return arguments.length?(n=+r,i()):n},hi(e)}function Kf(){var t=qf(Ua());return t.copy=function(){return Ds(t,Kf()).exponent(t.exponent())},Ot.apply(t,arguments),t}function YQ(){return Kf.apply(null,arguments).exponent(.5)}function mp(){var t=[],e=[],n=[],i;function r(){var o=0,a=Math.max(1,e.length);for(n=new Array(a-1);++o<a;)n[o-1]=Kh(t,o/a);return s}function s(o){return o==null||isNaN(o=+o)?i:e[yn(n,o)]}return s.invertExtent=function(o){var a=e.indexOf(o);return a<0?[NaN,NaN]:[a>0?n[a-1]:t[0],a<n.length?n[a]:t[t.length-1]]},s.domain=function(o){if(!arguments.length)return t.slice();t=[];for(let a of o)a!=null&&!isNaN(a=+a)&&t.push(a);return t.sort(Xn),r()},s.range=function(o){return arguments.length?(e=Array.from(o),r()):e.slice()},s.unknown=function(o){return arguments.length?(i=o,s):i},s.quantiles=function(){return n.slice()},s.copy=function(){return mp().domain(t).range(e).unknown(i)},Ot.apply(s,arguments)}function wp(){var t=0,e=1,n=1,i=[.5],r=[0,1],s;function o(l){return l!=null&&l<=l?r[yn(i,l,0,n)]:s}function a(){var l=-1;for(i=new Array(n);++l<n;)i[l]=((l+1)*e-(l-n)*t)/(n+1);return o}return o.domain=function(l){return arguments.length?([t,e]=l,t=+t,e=+e,a()):[t,e]},o.range=function(l){return arguments.length?(n=(r=Array.from(l)).length-1,a()):r.slice()},o.invertExtent=function(l){var c=r.indexOf(l);return c<0?[NaN,NaN]:c<1?[t,i[0]]:c>=n?[i[n-1],e]:[i[c-1],i[c]]},o.unknown=function(l){return arguments.length&&(s=l),o},o.thresholds=function(){return i.slice()},o.copy=function(){return wp().domain([t,e]).range(r).unknown(s)},Ot.apply(hi(o),arguments)}function yp(){var t=[.5],e=[0,1],n,i=1;function r(s){return s!=null&&s<=s?e[yn(t,s,0,i)]:n}return r.domain=function(s){return arguments.length?(t=Array.from(s),i=Math.min(t.length,e.length-1),r):t.slice()},r.range=function(s){return arguments.length?(e=Array.from(s),i=Math.min(t.length,e.length-1),r):e.slice()},r.invertExtent=function(s){var o=e.indexOf(s);return[t[o-1],t[o]]},r.unknown=function(s){return arguments.length?(n=s,r):n},r.copy=function(){return yp().domain(t).range(e).unknown(n)},Ot.apply(r,arguments)}function VQ(t){return new Date(t)}function JQ(t){return t instanceof Date?+t:+new Date(+t)}function jf(t,e,n,i,r,s,o,a,l,c){var f=sp(),u=f.invert,h=f.domain,A=c(".%L"),d=c(":%S"),g=c("%I:%M"),m=c("%I %p"),p=c("%a %d"),w=c("%b %d"),C=c("%B"),y=c("%Y");function b(x){return(l(x)<x?A:a(x)<x?d:o(x)<x?g:s(x)<x?m:i(x)<x?r(x)<x?p:w:n(x)<x?C:y)(x)}return f.invert=function(x){return new Date(u(x))},f.domain=function(x){return arguments.length?h(Array.from(x,JQ)):h().map(VQ)},f.ticks=function(x){var I=h();return t(I[0],I[I.length-1],x??10)},f.tickFormat=function(x,I){return I==null?b:c(I)},f.nice=function(x){var I=h();return(!x||typeof x.range!="function")&&(x=e(I[0],I[I.length-1],x??10)),x?h(lp(I,x)):f},f.copy=function(){return Ds(f,jf(t,e,n,i,r,s,o,a,l,c))},f}function qQ(){return Ot.apply(jf(sb,ob,Rt,is,ts,Cn,Jo,Yo,en,xl).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}function KQ(){return Ot.apply(jf(ib,rb,Nt,rs,ns,ei,qo,Vo,en,Bl).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)]),arguments)}function _a(){var t=0,e=1,n,i,r,s,o=ot,a=!1,l;function c(u){return u==null||isNaN(u=+u)?l:o(r===0?.5:(u=(s(u)-n)*r,a?Math.max(0,Math.min(1,u)):u))}c.domain=function(u){return arguments.length?([t,e]=u,n=s(t=+t),i=s(e=+e),r=n===i?0:1/(i-n),c):[t,e]},c.clamp=function(u){return arguments.length?(a=!!u,c):a},c.interpolator=function(u){return arguments.length?(o=u,c):o};function f(u){return function(h){var A,d;return arguments.length?([A,d]=h,o=u(A,d),c):[o(0),o(1)]}}return c.range=f(Nn),c.rangeRound=f(Qs),c.unknown=function(u){return arguments.length?(l=u,c):l},function(u){return s=u,n=u(t),i=u(e),r=n===i?0:1/(i-n),c}}function Mn(t,e){return e.domain(t.domain()).interpolator(t.interpolator()).clamp(t.clamp()).unknown(t.unknown())}function Wf(){var t=hi(_a()(ot));return t.copy=function(){return Mn(t,Wf())},kn.apply(t,arguments)}function Cp(){var t=Yf(_a()).domain([1,10]);return t.copy=function(){return Mn(t,Cp()).base(t.base())},kn.apply(t,arguments)}function Ep(){var t=Jf(_a());return t.copy=function(){return Mn(t,Ep()).constant(t.constant())},kn.apply(t,arguments)}function Xf(){var t=qf(_a());return t.copy=function(){return Mn(t,Xf()).exponent(t.exponent())},kn.apply(t,arguments)}function jQ(){return Xf.apply(null,arguments).exponent(.5)}function Ga(){var t=0,e=.5,n=1,i=1,r,s,o,a,l,c=ot,f,u=!1,h;function A(g){return isNaN(g=+g)?h:(g=.5+((g=+f(g))-s)*(i*g<i*s?a:l),c(u?Math.max(0,Math.min(1,g)):g))}A.domain=function(g){return arguments.length?([t,e,n]=g,r=f(t=+t),s=f(e=+e),o=f(n=+n),a=r===s?0:.5/(s-r),l=s===o?0:.5/(o-s),i=s<r?-1:1,A):[t,e,n]},A.clamp=function(g){return arguments.length?(u=!!g,A):u},A.interpolator=function(g){return arguments.length?(c=g,A):c};function d(g){return function(m){var p,w,C;return arguments.length?([p,w,C]=m,c=Gf(g,[p,w,C]),A):[c(0),c(.5),c(1)]}}return A.range=d(Nn),A.rangeRound=d(Qs),A.unknown=function(g){return arguments.length?(h=g,A):h},function(g){return f=g,r=g(t),s=g(e),o=g(n),a=r===s?0:.5/(s-r),l=s===o?0:.5/(o-s),i=s<r?-1:1,A}}function Ip(){var t=hi(Ga()(ot));return t.copy=function(){return Mn(t,Ip())},kn.apply(t,arguments)}function bp(){var t=Yf(Ga()).domain([.1,1,10]);return t.copy=function(){return Mn(t,bp()).base(t.base())},kn.apply(t,arguments)}function xp(){var t=Jf(Ga());return t.copy=function(){return Mn(t,xp()).constant(t.constant())},kn.apply(t,arguments)}function Zf(){var t=qf(Ga());return t.copy=function(){return Mn(t,Zf()).exponent(t.exponent())},kn.apply(t,arguments)}function WQ(){return Zf.apply(null,arguments).exponent(.5)}function Gt(t){for(var e=t.length/6|0,n=new Array(e),i=0;i<e;)n[i]="#"+t.slice(i*6,++i*6);return n}const XQ=Gt("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),ZQ=Gt("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),$Q=Gt("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),eD=Gt("4269d0efb118ff725c6cc5b03ca951ff8ab7a463f297bbf59c6b4e9498a0"),tD=Gt("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),nD=Gt("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),iD=Gt("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),rD=Gt("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),sD=Gt("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),oD=Gt("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f");function $f(t,e,n){const i=t-e+n*2;return t?i>0?i:1:0}const aD="identity",or="linear",Tn="log",ks="pow",Fs="sqrt",za="symlog",Bp="time",vp="utc",zt="sequential",ar="diverging",eu="quantile",Sp="quantize",Qp="threshold",Rs="ordinal",tu="point",Dp="band",nu="bin-ordinal",De="continuous",Ns="discrete",Ms="discretizing",mt="interpolating",kp="temporal";function cD(t){return function(e){let n=e[0],i=e[1],r;return i<n&&(r=n,n=i,i=r),[t.invert(n),t.invert(i)]}}function lD(t){return function(e){const n=t.range();let i=e[0],r=e[1],s=-1,o,a,l,c;for(r<i&&(a=i,i=r,r=a),l=0,c=n.length;l<c;++l)n[l]>=i&&n[l]<=r&&(s<0&&(s=l),o=l);if(!(s<0))return i=t.invertExtent(n[s]),r=t.invertExtent(n[o]),[i[0]===void 0?i[1]:i[0],r[1]===void 0?r[0]:r[1]]}}function iu(){const t=bf().unknown(void 0),e=t.domain,n=t.range;let i=[0,1],r,s,o=!1,a=0,l=0,c=.5;delete t.unknown;function f(){const u=e().length,h=i[1]<i[0],A=i[1-h],d=$f(u,a,l);let g=i[h-0];r=(A-g)/(d||1),o&&(r=Math.floor(r)),g+=(A-g-r*(u-a))*c,s=r*(1-a),o&&(g=Math.round(g),s=Math.round(s));const m=$r(u).map(p=>g+r*p);return n(h?m.reverse():m)}return t.domain=function(u){return arguments.length?(e(u),f()):e()},t.range=function(u){return arguments.length?(i=[+u[0],+u[1]],f()):i.slice()},t.rangeRound=function(u){return i=[+u[0],+u[1]],o=!0,f()},t.bandwidth=function(){return s},t.step=function(){return r},t.round=function(u){return arguments.length?(o=!!u,f()):o},t.padding=function(u){return arguments.length?(l=Math.max(0,Math.min(1,u)),a=l,f()):a},t.paddingInner=function(u){return arguments.length?(a=Math.max(0,Math.min(1,u)),f()):a},t.paddingOuter=function(u){return arguments.length?(l=Math.max(0,Math.min(1,u)),f()):l},t.align=function(u){return arguments.length?(c=Math.max(0,Math.min(1,u)),f()):c},t.invertRange=function(u){if(u[0]==null||u[1]==null)return;const h=i[1]<i[0],A=h?n().reverse():n(),d=A.length-1;let g=+u[0],m=+u[1],p,w,C;if(!(g!==g||m!==m)&&(m<g&&(C=g,g=m,m=C),!(m<A[0]||g>i[1-h])))return p=Math.max(0,yn(A,g)-1),w=g===m?p:yn(A,m)-1,g-A[p]>s+1e-10&&++p,h&&(C=p,p=d-w,w=d-C),p>w?void 0:e().slice(p,w+1)},t.invert=function(u){const h=t.invertRange([u,u]);return h&&h[0]},t.copy=function(){return iu().domain(e()).range(i).round(o).paddingInner(a).paddingOuter(l).align(c)},f()}function Fp(t){const e=t.copy;return t.padding=t.paddingOuter,delete t.paddingInner,t.copy=function(){return Fp(e())},t}function fD(){return Fp(iu().paddingInner(1))}var uD=Array.prototype.map;function AD(t){return uD.call(t,Gr)}const hD=Array.prototype.slice;function Rp(){let t=[],e=[];function n(i){return i==null||i!==i?void 0:e[(yn(t,i)-1)%e.length]}return n.domain=function(i){return arguments.length?(t=AD(i),n):t.slice()},n.range=function(i){return arguments.length?(e=hD.call(i),n):e.slice()},n.tickFormat=function(i,r){return op(t[0],xt(t),i??10,r)},n.copy=function(){return Rp().domain(n.domain()).range(n.range())},n}const Ha=new Map,dD=Symbol("vega_scale");function gD(t){return t[dD]=!0,t}function pD(t,e,n){const i=function(){const s=e();return s.invertRange||(s.invertRange=s.invert?cD(s):s.invertExtent?lD(s):void 0),s.type=t,gD(s)};return i.metadata=Ro(tl(n)),i}function ie(t,e,n){return arguments.length>1?(Ha.set(t,pD(t,e,n)),this):mD(t)?Ha.get(t):void 0}ie(aD,cp),ie(or,ap,De),ie(Tn,Vf,[De,Tn]),ie(ks,Kf,De),ie(Fs,YQ,De),ie(za,gp,De),ie(Bp,qQ,[De,kp]),ie(vp,KQ,[De,kp]),ie(zt,Wf,[De,mt]),ie(`${zt}-${or}`,Wf,[De,mt]),ie(`${zt}-${Tn}`,Cp,[De,mt,Tn]),ie(`${zt}-${ks}`,Xf,[De,mt]),ie(`${zt}-${Fs}`,jQ,[De,mt]),ie(`${zt}-${za}`,Ep,[De,mt]),ie(`${ar}-${or}`,Ip,[De,mt]),ie(`${ar}-${Tn}`,bp,[De,mt,Tn]),ie(`${ar}-${ks}`,Zf,[De,mt]),ie(`${ar}-${Fs}`,WQ,[De,mt]),ie(`${ar}-${za}`,xp,[De,mt]),ie(eu,mp,[Ms,eu]),ie(Sp,wp,Ms),ie(Qp,yp,Ms),ie(nu,Rp,[Ns,Ms]),ie(Rs,bf,Ns),ie(Dp,iu,Ns),ie(tu,fD,Ns);function mD(t){return Ha.has(t)}function Ts(t,e){const n=Ha.get(t);return n&&n.metadata[e]}function Pe(t){return Ts(t,De)}function on(t){return Ts(t,Ns)}function di(t){return Ts(t,Ms)}function Np(t){return Ts(t,Tn)}function Ya(t){return Ts(t,mt)}function wD(t,e){const n=e[0],i=xt(e)-n;return function(r){return t(n+r*i)}}function Va(t,e,n){return Gf(Mp(e||"rgb",n),t)}function yD(t,e){const n=new Array(e),i=e+1;for(let r=0;r<e;)n[r]=t(++r/i);return n}function Mp(t,e){const n=RQ[CD(t)];return e!=null&&n&&n.gamma?n.gamma(e):n}function CD(t){return"interpolate"+t.toLowerCase().split("-").map(e=>e[0].toUpperCase()+e.slice(1)).join("")}const ED={blues:"cfe1f2bed8eca8cee58fc1de74b2d75ba3cf4592c63181bd206fb2125ca40a4a90",greens:"d3eecdc0e6baabdda594d3917bc77d60ba6c46ab5e329a512089430e7735036429",greys:"e2e2e2d4d4d4c4c4c4b1b1b19d9d9d8888887575756262624d4d4d3535351e1e1e",oranges:"fdd8b3fdc998fdb87bfda55efc9244f87f2cf06b18e4580bd14904b93d029f3303",purples:"e2e1efd4d4e8c4c5e0b4b3d6a3a0cc928ec3827cb97566ae684ea25c3696501f8c",reds:"fdc9b4fcb49afc9e80fc8767fa7051f6573fec3f2fdc2a25c81b1db21218970b13",blueGreen:"d5efedc1e8e0a7ddd18bd2be70c6a958ba9144ad77319c5d2089460e7736036429",bluePurple:"ccddecbad0e4a8c2dd9ab0d4919cc98d85be8b6db28a55a6873c99822287730f71",greenBlue:"d3eecec5e8c3b1e1bb9bd8bb82cec269c2ca51b2cd3c9fc7288abd1675b10b60a1",orangeRed:"fddcaffdcf9bfdc18afdad77fb9562f67d53ee6545e24932d32d1ebf130da70403",purpleBlue:"dbdaebc8cee4b1c3de97b7d87bacd15b9fc93a90c01e7fb70b70ab056199045281",purpleBlueGreen:"dbd8eac8cee4b0c3de93b7d872acd1549fc83892bb1c88a3097f8702736b016353",purpleRed:"dcc9e2d3b3d7ce9eccd186c0da6bb2e14da0e23189d91e6fc61159ab07498f023a",redPurple:"fccfccfcbec0faa9b8f98faff571a5ec539ddb3695c41b8aa908808d0179700174",yellowGreen:"e4f4acd1eca0b9e2949ed68880c97c62bb6e47aa5e3297502083440e723b036034",yellowOrangeBrown:"feeaa1fedd84fecc63feb746fca031f68921eb7215db5e0bc54c05ab3d038f3204",yellowOrangeRed:"fee087fed16ffebd59fea849fd903efc7335f9522bee3423de1b20ca0b22af0225",blueOrange:"134b852f78b35da2cb9dcae1d2e5eff2f0ebfce0bafbbf74e8932fc5690d994a07",brownBlueGreen:"704108a0651ac79548e3c78af3e6c6eef1eac9e9e48ed1c74da79e187a72025147",purpleGreen:"5b1667834792a67fb6c9aed3e6d6e8eff0efd9efd5aedda971bb75368e490e5e29",purpleOrange:"4114696647968f83b7b9b4d6dadbebf3eeeafce0bafbbf74e8932fc5690d994a07",redBlue:"8c0d25bf363adf745ef4ae91fbdbc9f2efeed2e5ef9dcae15da2cb2f78b3134b85",redGrey:"8c0d25bf363adf745ef4ae91fcdccbfaf4f1e2e2e2c0c0c0969696646464343434",yellowGreenBlue:"eff9bddbf1b4bde5b594d5b969c5be45b4c22c9ec02182b82163aa23479c1c3185",redYellowBlue:"a50026d4322cf16e43fcac64fedd90faf8c1dcf1ecabd6e875abd04a74b4313695",redYellowGreen:"a50026d4322cf16e43fcac63fedd8df9f7aed7ee8ea4d86e64bc6122964f006837",pinkYellowGreen:"8e0152c0267edd72adf0b3d6faddedf5f3efe1f2cab6de8780bb474f9125276419",spectral:"9e0142d13c4bf0704afcac63fedd8dfbf8b0e0f3a1a9dda269bda94288b55e4fa2",viridis:"440154470e61481a6c482575472f7d443a834144873d4e8a39568c35608d31688e2d708e2a788e27818e23888e21918d1f988b1fa08822a8842ab07f35b77943bf7154c56866cc5d7ad1518fd744a5db36bcdf27d2e21be9e51afde725",magma:"0000040404130b0924150e3720114b2c11603b0f704a107957157e651a80721f817f24828c29819a2e80a8327db6377ac43c75d1426fde4968e95462f1605df76f5cfa7f5efc8f65fe9f6dfeaf78febf84fece91fddea0fcedaffcfdbf",inferno:"0000040403130c0826170c3b240c4f330a5f420a68500d6c5d126e6b176e781c6d86216b932667a12b62ae305cbb3755c73e4cd24644dd513ae65c30ed6925f3771af8850ffb9506fca50afcb519fac62df6d645f2e661f3f484fcffa4",plasma:"0d088723069033059742039d5002a25d01a66a00a87801a88405a7900da49c179ea72198b12a90ba3488c33d80cb4779d35171da5a69e16462e76e5bed7953f2834cf68f44fa9a3dfca636fdb32ffec029fcce25f9dc24f5ea27f0f921",cividis:"00205100235800265d002961012b65042e670831690d346b11366c16396d1c3c6e213f6e26426e2c456e31476e374a6e3c4d6e42506e47536d4c566d51586e555b6e5a5e6e5e616e62646f66676f6a6a706e6d717270717573727976737c79747f7c75827f758682768985778c8877908b78938e789691789a94789e9778a19b78a59e77a9a177aea575b2a874b6ab73bbaf71c0b26fc5b66dc9b96acebd68d3c065d8c462ddc85fe2cb5ce7cf58ebd355f0d652f3da4ff7de4cfae249fce647",rainbow:"6e40aa883eb1a43db3bf3cafd83fa4ee4395fe4b83ff576eff6659ff7847ff8c38f3a130e2b72fcfcc36bee044aff05b8ff4576ff65b52f6673af27828ea8d1ddfa319d0b81cbecb23abd82f96e03d82e14c6edb5a5dd0664dbf6e40aa",sinebow:"ff4040fc582af47218e78d0bd5a703bfbf00a7d5038de70b72f41858fc2a40ff402afc5818f4720be78d03d5a700bfbf03a7d50b8de71872f42a58fc4040ff582afc7218f48d0be7a703d5bf00bfd503a7e70b8df41872fc2a58ff4040",turbo:"23171b32204a3e2a71453493493eae4b49c54a53d7485ee44569ee4074f53c7ff8378af93295f72e9ff42ba9ef28b3e926bce125c5d925cdcf27d5c629dcbc2de3b232e9a738ee9d3ff39347f68950f9805afc7765fd6e70fe667cfd5e88fc5795fb51a1f84badf545b9f140c5ec3cd0e637dae034e4d931ecd12ef4c92bfac029ffb626ffad24ffa223ff9821ff8d1fff821dff771cfd6c1af76118f05616e84b14df4111d5380fcb2f0dc0260ab61f07ac1805a313029b0f00950c00910b00",browns:"eedbbdecca96e9b97ae4a865dc9856d18954c7784cc0673fb85536ad44339f3632",tealBlues:"bce4d89dd3d181c3cb65b3c245a2b9368fae347da0306a932c5985",teals:"bbdfdfa2d4d58ac9c975bcbb61b0af4da5a43799982b8b8c1e7f7f127273006667",warmGreys:"dcd4d0cec5c1c0b8b4b3aaa7a59c9998908c8b827f7e7673726866665c5a59504e",goldGreen:"f4d166d5ca60b6c35c98bb597cb25760a6564b9c533f8f4f33834a257740146c36",goldOrange:"f4d166f8be5cf8aa4cf5983bf3852aef701be2621fd65322c54923b142239e3a26",goldRed:"f4d166f6be59f9aa51fc964ef6834bee734ae56249db5247cf4244c43141b71d3e",lightGreyRed:"efe9e6e1dad7d5cbc8c8bdb9bbaea9cd967ddc7b43e15f19df4011dc000b",lightGreyTeal:"e4eaead6dcddc8ced2b7c2c7a6b4bc64b0bf22a6c32295c11f85be1876bc",lightMulti:"e0f1f2c4e9d0b0de9fd0e181f6e072f6c053f3993ef77440ef4a3c",lightOrange:"f2e7daf7d5baf9c499fab184fa9c73f68967ef7860e8645bde515bd43d5b",lightTealBlue:"e3e9e0c0dccf9aceca7abfc859afc0389fb9328dad2f7ca0276b95255988",darkBlue:"3232322d46681a5c930074af008cbf05a7ce25c0dd38daed50f3faffffff",darkGold:"3c3c3c584b37725e348c7631ae8b2bcfa424ecc31ef9de30fff184ffffff",darkGreen:"3a3a3a215748006f4d048942489e4276b340a6c63dd2d836ffeb2cffffaa",darkMulti:"3737371f5287197d8c29a86995ce3fffe800ffffff",darkRed:"3434347036339e3c38cc4037e75d1eec8620eeab29f0ce32ffeb2c"},ID={accent:ZQ,category10:XQ,category20:"1f77b4aec7e8ff7f0effbb782ca02c98df8ad62728ff98969467bdc5b0d58c564bc49c94e377c2f7b6d27f7f7fc7c7c7bcbd22dbdb8d17becf9edae5",category20b:"393b795254a36b6ecf9c9ede6379398ca252b5cf6bcedb9c8c6d31bd9e39e7ba52e7cb94843c39ad494ad6616be7969c7b4173a55194ce6dbdde9ed6",category20c:"3182bd6baed69ecae1c6dbefe6550dfd8d3cfdae6bfdd0a231a35474c476a1d99bc7e9c0756bb19e9ac8bcbddcdadaeb636363969696bdbdbdd9d9d9",dark2:$Q,observable10:eD,paired:tD,pastel1:nD,pastel2:iD,set1:rD,set2:sD,set3:oD,tableau10:"4c78a8f58518e4575672b7b254a24beeca3bb279a2ff9da69d755dbab0ac",tableau20:"4c78a89ecae9f58518ffbf7954a24b88d27ab79a20f2cf5b43989483bcb6e45756ff9d9879706ebab0acd67195fcbfd2b279a2d6a5c99e765fd8b5a5"};function Tp(t){if(Ce(t))return t;const e=t.length/6|0,n=new Array(e);for(let i=0;i<e;)n[i]="#"+t.slice(i*6,++i*6);return n}function Pp(t,e){for(const n in t)ru(n,e(t[n]))}const Lp={};Pp(ID,Tp),Pp(ED,t=>Va(Tp(t)));function ru(t,e){return t=t&&t.toLowerCase(),arguments.length>1?(Lp[t]=e,this):Lp[t]}function su(){const t=e=>e;return t.invert=e=>e,t.copy=su,t.invertRange=()=>{},t.type="null",t}const ou=4294967295,bD=.6,xD=4294967295;function BD(t){let e=t>>>0;return e^=e>>>16,e=Math.imul(e,2146121005),e^=e>>>15,e=Math.imul(e,2221713035),e^=e>>>16,e>>>0}function vD(t,e={}){const n=Array.from(t,l=>QD(l,"key")),i=n.length,r=e.maxLoadFactor??bD;if(!(r>0&&r<1))throw new Error("maxLoadFactor must be between 0 and 1.");const s=e.capacity??DD(Math.ceil(i/r));if(!Number.isSafeInteger(s)||s<1)throw new Error("capacity must be a positive power of two.");if((s&s-1)!==0)throw new Error("capacity must be a power of two.");const o=new Uint32Array(s);o.fill(ou);const a=s-1;for(const l of n){if(l===ou)throw new Error("Hash table keys must not equal the empty sentinel (0xffffffff).");let c=BD(l)&a,f=!1;for(let u=0;u<s;u+=1){const h=o[c];if(h===ou||h===l){o[c]=l,f=!0;break}c=c+1&a}if(!f)throw new Error("Hash table insertion failed. Increase capacity or lower load factor.")}return{table:o,capacity:s,size:i}}function SD(t,e){if(!Number.isSafeInteger(t)||t<1)throw new Error("capacity must be a positive integer.");if((t&t-1)!==0)throw new Error("capacity must be a power of two.");if(!Number.isSafeInteger(e)||e<1)throw new Error("maxTextureSize must be a positive integer.");const n=e*e;if(t>n)throw new Error("Selection hash table exceeds maximum texture capacity.");const i=1<<Math.floor(Math.log2(e)),r=Math.min(t,i),s=t/r;if(s>e)throw new Error("Selection hash table dimensions exceed maximum texture size.");return{width:r,height:s}}function QD(t,e){if(!Number.isSafeInteger(t)||t<0||t>xD)throw new Error(e+" must be a non-negative u32.");return t>>>0}function DD(t){let e=Math.max(1,t);return e-=1,e|=e>>>1,e|=e>>>2,e|=e>>>4,e|=e>>>8,e|=e>>>16,e+1}class kD{constructor(e,n,i={}){this._container=e,this._sizeSource=n??(()=>({width:void 0,height:void 0})),this._shaderCache=new Map,this.rangeTextures=new WeakMap,this.selectionTextures=new WeakMap;const r=document.createElement("canvas");e.appendChild(r);const s=GS(r,{antialias:!0,depth:!1,premultipliedAlpha:!0,...i});if(!s)throw new Error("Unable to initialize WebGL. Your browser or machine may not support it.");if(!Ji(s))throw new Error("Your web browser does not support WebGL 2.0. Chrome, Firefox, and Safari Tech Preview should work.");pg(s);const o=s.getExtension("WEBGL_provoking_vertex");o&&o.provokingVertexWEBGL(o.FIRST_VERTEX_CONVENTION_WEBGL),s.blendFunc(s.ONE,s.ONE_MINUS_SRC_ALPHA),this.canvas=r,this.gl=s,this._pickingAttachmentOptions=[{format:s.RGBA,type:s.UNSIGNED_BYTE,minMag:s.LINEAR,wrap:s.CLAMP_TO_EDGE}],this._pickingBufferInfo=dg(s,this._pickingAttachmentOptions),s.bindFramebuffer(s.FRAMEBUFFER,null),this.adjustGl()}invalidateSize(){this._logicalCanvasSize=void 0,this.adjustGl()}compileShader(e,n){const i="#version 300 es",r="precision mediump float;";Ce(n)&&(n=n.join(`
|
|
387
387
|
|
|
388
|
-
`));const s=this.gl,o=
|
|
388
|
+
`));const s=this.gl,o=n.replaceAll(/ {2,}|^\s*\/\/.*$/gm,"");let a=this._shaderCache.get(o);if(!a){const l=[i,r,n].join(`
|
|
389
389
|
|
|
390
|
-
`);a=s.createShader(e),s.shaderSource(a,l),s.compileShader(a),this._shaderCache.set(o,a)}return a}adjustGl(){const e=this.getLogicalCanvasSize();this.canvas.style.width=`${e.width}px`,this.canvas.style.height=`${e.height}px`;const
|
|
391
|
-
`).map((o,a)=>{const l=s.get(a);return`${a+1+
|
|
390
|
+
`);a=s.createShader(e),s.shaderSource(a,l),s.compileShader(a),this._shaderCache.set(o,a)}return a}adjustGl(){const e=this.getLogicalCanvasSize();this.canvas.style.width=`${e.width}px`,this.canvas.style.height=`${e.height}px`;const n=this.getPhysicalCanvasSize(e);this.canvas.width=n.width,this.canvas.height=n.height,PS(this.gl,this._pickingBufferInfo,this._pickingAttachmentOptions)}finalize(){this.canvas.remove()}getPhysicalCanvasSize(e){const n=window.devicePixelRatio??1;return e=e||this.getLogicalCanvasSize(),{width:e.width*n,height:e.height*n}}getLogicalCanvasSize(){if(this._logicalCanvasSize)return this._logicalCanvasSize;const e=this._sizeSource(),n=window.getComputedStyle(this._container,null),i=e.width??this._container.clientWidth-parseFloat(n.paddingLeft)-parseFloat(n.paddingRight),r=e.height??this._container.clientHeight-parseFloat(n.paddingTop)-parseFloat(n.paddingBottom);return this._logicalCanvasSize={width:i,height:r},this._logicalCanvasSize}createRangeTexture(e,n=!1){const i=this.rangeTextures.get(e.getScale());if(!n&&i)return;function r(o,a){return on(a.type)?a.domain().length:a.type=="threshold"?a.domain().length+1:a.type=="quantize"||a.type=="quantile"?o??4:o}const s=e.channel;if(bn(s)){const o=e.getScale(),a=o.props,l=o.range();let c;if(a.scheme)if(o.type=="threshold"&&l)c=au(l,this.gl,o.domain().length,i);else{let f=le(a.scheme)?void 0:a.scheme.count;f=r(f,o),c=TD(a.scheme,this.gl,f,i,!!a.reverse)}else Ya(o.type)||Pe(o.type)&&l.length>1?c=PD(l,a.interpolate,this.gl,i):c=au(l,this.gl,o.domain().length,i);this.rangeTextures.set(o,c)}else{const o=e.getScale();if(o.type==="ordinal"||di(o.type)){const a=ia(s)?qd(s):c=>c,l=o.range();this.rangeTextures.set(o,LD(l.map(a),this.gl,o.domain().length,i))}}}createSelectionTexture(e,n=!0){if(!Gl(e))throw new Error("Not a multi-point selection, cannot create texture");const{table:i,capacity:r}=vD(e.data.keys()),{width:s,height:o}=SD(r,this.gl.getParameter(this.gl.MAX_TEXTURE_SIZE)),a=this.selectionTextures.get(e),l=this.gl,c=Ps(this.gl,{level:0,minMag:l.NEAREST,format:l.RED_INTEGER,internalFormat:l.R32UI,width:s,height:o},i,n?a:!1);this.selectionTextures.set(e,c)}}function FD(t,e="",n=0){const i=/ERROR:\s*\d+:(\d+)/gi,r=[...e.matchAll(i)],s=new Map(r.map((o,a)=>{const l=parseInt(o[1]),c=r[a+1],f=c?c.index:e.length,u=e.substring(o.index,f);return[l-1,u]}));return t.split(`
|
|
391
|
+
`).map((o,a)=>{const l=s.get(a);return`${a+1+n}: ${o}${l?`
|
|
392
392
|
|
|
393
393
|
^^^ ${l}`:""}`}).join(`
|
|
394
|
-
`)}function
|
|
395
|
-
Error compiling: ${s}`,
|
|
396
|
-
${
|
|
394
|
+
`)}function RD(t,e,n){const i=t.createProgram();t.attachShader(i,e),t.attachShader(i,n),t.linkProgram(i);function r(){let s,o;if(!t.getProgramParameter(i,t.LINK_STATUS)){s=t.getProgramInfoLog(i);for(const l of[e,n])t.getShaderParameter(l,t.COMPILE_STATUS)||(s=t.getShaderInfoLog(l),o=FD(t.getShaderSource(l),s,0)+`
|
|
395
|
+
Error compiling: ${s}`,t.deleteShader(l));t.deleteProgram(i)}if(s)return{message:s,detail:o}}return{program:i,getProgramErrors:r}}function Ps(t,e,n,i){return i?F0(t,i,n,e):i=bs(t,{...e,src:n}),i}function ND(t,e,n,i){const{height:r,framebuffer:s}=e,o=new Uint8Array(4);return t.bindFramebuffer(t.FRAMEBUFFER,s),t.readPixels(n,r-i-1,1,1,t.RGBA,t.UNSIGNED_BYTE,o),t.bindFramebuffer(t.FRAMEBUFFER,null),o}function MD(t,e,n="image/png"){const{width:i,height:r}=e,s=new Uint8Array(i*r*4);t.bindFramebuffer(t.FRAMEBUFFER,e.framebuffer),t.readPixels(0,0,i,r,t.RGBA,t.UNSIGNED_BYTE,s),t.bindFramebuffer(t.FRAMEBUFFER,null);const o=document.createElement("canvas");o.width=i,o.height=r;const a=o.getContext("2d"),l=a.createImageData(i,r);for(let c=0;c<r;c++){const f=(r-1-c)*i*4,u=c*i*4;l.data.set(s.subarray(f,f+i*4),u)}return a.putImageData(l,0,0),o.toDataURL(n)}function TD(t,e,n,i,r=!1){const s=le(t)?t:t.name,o=!le(t)&&t.extent||[0,1];if(n===void 0&&!le(t)&&(n=t.count),s){const a=ru(s);if(ht(a)){const l=Op(a,{extent:o,count:n,reverse:r});return Ps(e,{minMag:e.LINEAR,format:e.RGB,height:1,wrap:e.CLAMP_TO_EDGE},l,i)}else{if(Ce(a))return au(r?Array.from(a).reverse():a,e,n,i);throw new Error("Unknown scheme: "+s)}}}function PD(t,e="rgb",n,i){const r=Va(t,le(e)?e:e.type,le(e)?void 0:e.gamma),s=Op(r);return Ps(n,{minMag:n.LINEAR,format:n.RGB,height:1,wrap:n.CLAMP_TO_EDGE},s,i)}function LD(t,e,n,i){const r=Math.max(t.length,n||0),s=new Float32Array(r);for(let o=0;o<r;o++)s[o]=t[o%t.length];return Ps(e,{minMag:e.NEAREST,format:e.RED,internalFormat:e.R32F,height:1},s,i)}function au(t,e,n,i){const r=Up(t,n);return Ps(e,{minMag:e.NEAREST,format:e.RGB,height:1},r,i)}function Op(t,{extent:e=[0,1],reverse:n=!1,count:i=256}={}){const r=e[0],s=ta(e)-r,o=$r(i).map(a=>a/(i-1)).map(a=>r+a/s).map(t);return n&&o.reverse(),Up(o)}function Up(t,e){const n=Math.max(t.length,e||0),i=new Uint8Array(n*3);for(let r=0;r<n;r++){const s=t[r%t.length],o=Rn(s);if(!o)throw new Error(`Invalid color "${s}" in the scheme ${JSON.stringify(t)}!`);const a=o.rgb();i[r*3+0]=a.r,i[r*3+1]=a.g,i[r*3+2]=a.b}return i}function cu(t){const e=Rn(t).rgb();return[e.r,e.g,e.b].map(n=>n/255)}const OD="attr_",UD="uDomain_",_D="range_",GD="accessor_",_p="scale_",zD="getScaled_",lu="uRangeTexture_",Ja="uParam_",Ls="checkSelection_",Gp=3402823466e29;function HD(t){const e=t.match(/^(?:(\w+)-)?(\w+)$/);if(!e)throw new Error("Not a scale type: "+t);return{family:e[1]||"continuous",transform:e[2]}}function Os(t,e){return`${GD}${t}_${e}`}function YD(t,e,n){let i;if(ia(t))i=gi(qd(t)(n));else if(le(n))if(bn(t))i=jD(n);else throw new Error(`String values are not supported on the "${t}" channel: ${n}`);else if(zr(n))i=gi(n?1:0);else if(n===null)if(bn(t))i=gi([0,0,0]);else throw new Error(`null value is not supported on the "${t}" chanel.`);else i=gi(n);const r=Os(t,e),s=`
|
|
396
|
+
${i.type} ${r}() {
|
|
397
397
|
// Constant value
|
|
398
|
-
return ${r};
|
|
399
|
-
}`;return{channel:n,accessorGlsl:s,accessorFunctionName:i}}function bQ(n,e){let t="float",r=l=>l;bn(n)&&(t="vec3",r=l=>Vu(l));const i=`u${FQ(n)}_${e}`,s=` // Dynamic value
|
|
400
|
-
uniform ${t} ${i};`,o=Fs(n,e);let a=`
|
|
401
|
-
${t} ${o}() {
|
|
402
|
-
// Dynamic value
|
|
403
398
|
return ${i};
|
|
404
|
-
}`;return{channel:
|
|
405
|
-
${
|
|
399
|
+
}`;return{channel:t,accessorGlsl:s,accessorFunctionName:r}}function VD(t,e){let n="float",i=l=>l;bn(t)&&(n="vec3",i=l=>cu(l));const r=`u${e4(t)}_${e}`,s=` // Dynamic value
|
|
400
|
+
uniform ${n} ${r};`,o=Os(t,e);let a=`
|
|
401
|
+
${n} ${o}() {
|
|
402
|
+
// Dynamic value
|
|
403
|
+
return ${r};
|
|
404
|
+
}`;return{channel:t,uniformName:r,uniformGlsl:s,accessorGlsl:a,accessorFunctionName:o,adjuster:i}}function zp(t,e,n,i=[t]){const{attributeType:r}=cr(e,t),s=lr(i),o=`in highp ${r} ${s};`,a=Os(t,n),l=`
|
|
405
|
+
${r} ${a}() {
|
|
406
406
|
return ${s};
|
|
407
|
-
}`;return{channel:
|
|
408
|
-
${
|
|
409
|
-
return ${
|
|
410
|
-
}`;return{channel:
|
|
411
|
-
${
|
|
412
|
-
${
|
|
407
|
+
}`;return{channel:t,attributeName:s,attributeGlsl:o,accessorGlsl:l,accessorFunctionName:a}}function JD(t,e,n){const{attributeType:i}=cr(e,t),r=lr(t),s=` uniform highp ${i} ${r};`,o=Os(t,n),a=`
|
|
408
|
+
${i} ${o}() {
|
|
409
|
+
return ${r};
|
|
410
|
+
}`;return{channel:t,uniformName:r,uniformGlsl:s,accessorGlsl:a,accessorFunctionName:o}}function qD(t,e,n){e??=su();const i=In(t),r=UD+i,s=_D+i,{hp:o,attributeType:a}=cr(e,t),l=e.domain?e.domain().length:void 0;let c;const f=[];f.push(""),f.push("/".repeat(70)),f.push(`// Channel: ${t}`),f.push("");const{transform:u}=HD(e.type),h=(I,...S)=>WD.apply(null,[I,"value",...S]);let A;switch(u){case"linear":A=h("scaleLinear","domain",s);break;case"log":A=h("scaleLog","domain",s,e.base());break;case"symlog":A=h("scaleSymlog","domain",s,e.constant());break;case"pow":case"sqrt":A=h("scalePow","domain",s,e.exponent());break;case"index":case"locus":A=h("scaleBandHp","domain",s,e.paddingInner(),e.paddingOuter(),e.align(),n.band??.5);break;case"point":case"band":A=h("scaleBand","domain",s,e.paddingInner(),e.paddingOuter(),e.align(),n.band??.5);break;case"ordinal":case"null":case"identity":A=h("scaleIdentity");break;case"threshold":break;default:throw new Error(`Unsupported scale type: ${e.type}! ${t}: ${JSON.stringify(n)}`)}const d=Wp(e,t);let g;if(d&&t==i){const I=e.props.range??[];if(Ee(I)||I.some(Ee)){if(d.length<1||d.length>4)throw new Error(`A range with ExprRefs must have 1-4 elements, not ${d.length}! Range: ${JSON.stringify(d)}`);g=` uniform ${Yp(d.length)} ${s};`}else if(d.length&&d.every(Ve)){const S=Jp(d);f.push(`const ${S.type} ${s} = ${S};`)}}const m=Vp(t);let p;if(bn(t)){const I=lu+i;if(t==i&&f.push(`uniform sampler2D ${I};`),Pe(e.type))p=`getInterpolatedColor(${I}, transformed)`;else if(on(e.type)||di(e.type))p=`getDiscreteColor(${I}, int(transformed))`;else throw new Error("Problem with color scale!")}else if(e.type==="ordinal"||di(e.type)){const I=lu+i;t==i&&f.push(`uniform sampler2D ${I};`),p=`getDiscreteColor(${I}, int(transformed)).r`}const w=[],C=Pe(e.type)&&l>2,y=di(e.type)||C;if(w.push("int slot = 0;"),y){const I=r;w.push(C?`while (slot < ${I}.length() - 2 && value >= ${I}[slot + 1]) { slot++; }`:`while (slot < ${I}.length() && value >= ${I}[slot]) { slot++; }`)}const b=Pe(e.type)||di(e.type)||["band","point"].includes(e.type);if(A){const I=r;b&&(o?w.push(`vec3 domain = ${I};`):w.push(`vec2 domain = vec2(${I}[slot], ${I}[slot + 1]);`)),w.push(`float transformed = ${A};`),C&&w.push(`transformed = (float(slot) + transformed) / (float(${I}.length() - 1));`)}else w.push("float transformed = float(slot);");"clamp"in e&&e.clamp()&&w.push(`transformed = clampToRange(transformed, ${Jp(d)});`),w.push(`return ${p??"transformed"};`),f.push(`
|
|
411
|
+
${m} ${_p}${t}(${a} value) {
|
|
412
|
+
${w.map(I=>` ${I}
|
|
413
413
|
`).join("")}
|
|
414
|
-
}`);const x=
|
|
415
|
-
`);if(
|
|
416
|
-
${
|
|
414
|
+
}`);const x=f.join(`
|
|
415
|
+
`);if(b&&t==i){const I=Pe(e.type)||di(e.type)?l:2;c=o?` highp vec3 ${r};`:` mediump float ${r}[${I}];`}return{glsl:x,domainUniformName:r,domainUniform:c,rangeUniformName:s,rangeUniform:g}}function KD(t,e){const n=Vp(t),i=[],r=[];for(let s=0;s<e.length;s++){const o=e[s],a=Os(t,s),{param:l,empty:c}=o.predicate;i.push(l?`${Ls}${l}(${!!c})`:null),r.push(o.scaleChannel?`return ${_p}${t}(${a}());`:`return ${a}();`)}return`${n} ${zD}${t}() {
|
|
416
|
+
${t4(i,r)}
|
|
417
417
|
}
|
|
418
418
|
|
|
419
|
-
#define ${
|
|
420
|
-
${e[
|
|
421
|
-
}`)}return
|
|
422
|
-
`)}function
|
|
419
|
+
#define ${t}_DEFINED`}function Hp(t){if(!Ve(t))throw new Error(`Not a number: ${t}`);if(t==1/0)return""+Gp;if(t==-1/0)return""+-Gp;{let e=`${t}`;return/^(-)?\d+$/.test(e)&&(e+=".0"),e}}function gi(t){typeof t=="number"&&(t=[t]);const e=t.length;if(e<1||e>4)throw new Error("Invalid number of components: "+e);const n=Yp(e),i=`${n}(${t.map(Hp).join(", ")})`;return Object.assign(i,{type:n,numComponents:e})}function Yp(t){switch(t){case 1:return"float";case 2:return"vec2";case 3:return"vec3";case 4:return"vec4";default:throw new Error("Invalid number of components: "+t)}}function Vp(t){return bn(t)?"vec3":t=="uniqueId"?"uint":"float"}function jD(t){return gi(cu(t))}function Jp(t){return gi([t[0],ta(t)])}function WD(t,...e){const n=[];for(const i of e)Ve(i)?n.push(Hp(i)):Ce(i)?n.push(gi(i)):n.push(i);return`${t}(${n.join(", ")})`}function cr(t,e){const n=t&&on(t.type),i=t&&qp(t.type),r=i&&XD(t.domain()),s=r?{attributeType:"uvec2",arrayConstructor:Uint32Array}:i?{attributeType:"uint",arrayConstructor:Uint32Array}:n?{attributeType:"uint",arrayConstructor:Uint16Array}:e=="uniqueId"?{attributeType:"uint",arrayConstructor:Uint32Array}:{attributeType:"float",arrayConstructor:Float32Array};return Object.assign(s,{numComponents:+(s.attributeType.match(/^vec([234])$/)?.[1]??1),discrete:n,hp:i,largeHp:r})}function qp(t){return t=="index"||t=="locus"}function XD(t){return t[1]>2**32}const fu=2**12;function Kp(t,e=[]){const n=t%fu,i=(t-n)/fu;return e[0]=i,e[1]=n,e}function ZD(t){const e=t%fu;return[t-e,e]}function $D(t){return[...ZD(t[0]),t[1]-t[0]]}function jp(t){const e=new Wt([],JSON.stringify);for(const[n,i]of Object.entries(t)){const r=i.channelDef;if(tn(r)){const o=[r.field,i.scale?(Pe(i.scale.type)||di(i.scale.type))??!1:!1];e.set(o,[...e.get(o)??[],n])}}return e}function lr(t){return OD+Ne(t).toSorted().join("_")}function e4(t){return t[0].toUpperCase()+t.slice(1)}const Wp=(t,e)=>Ya(t.type)||Pe(t.type)&&bn(e)?[0,1]:t.range?t.range():void 0;function t4(t,e){if(t.length!=e.length)throw new Error("Unequal array lengths");const n=t.length;if(n==0)return"";if(n==1&&t[0]==null)return e[0];const i=[];for(let r=0;r<n;r++){const s=t[r],o=r==0?`if (${s})`:s==null&&r==n-1?"else":`else if (${s})`;i.push(` ${o} {
|
|
420
|
+
${e[r]}
|
|
421
|
+
}`)}return i.join(`
|
|
422
|
+
`)}function Xp(){let t=0,e,n=0;const i=new Map,r=s=>(s===e||(n=i.get(s),n===void 0&&(n=t++,i.set(s,n)),e=s),n);return r.addAll=s=>{for(const o of s)r(o)},r.invert=s=>{for(const o of i.entries())if(o[1]==s)return o[0]},r.domain=()=>[...i.keys()],r}class Us{constructor({encoders:e,numVertices:n=void 0,attributes:i=[]}){this.encoders=e,this.variableEncoders=Object.fromEntries(Object.entries(e).filter(([s,o])=>i.includes(s)&&o&&!o.constant));const r=[...jp(e).entries()].filter(([s,o])=>s[1]&&o.length>1).map(([s,o])=>o);this.allocatedVertices=n,this.variableBuilder=new VS(n);for(const[s,o]of Object.entries(this.variableEncoders)){const a=o.dataAccessor;if(!a)continue;const l=r.find(C=>C.find(y=>y==s));if(l&&s!=l[0])continue;const c=a.asNumberAccessor(),f=o.scale,{largeHp:u,arrayConstructor:h,discrete:A,numComponents:d}=cr(f,s),g=[0,0];let m;if(f&&A)if("props"in f&&f.props.domainIndexer)m=f.props.domainIndexer;else if("domain"in f)m=Xp(),m.addAll(f.domain());else throw new Error("Missing domain indexer for discrete scale.");const p=m?C=>m(a(C)):u?C=>Kp(c(C),g):c,w=lr(l??s);this.variableBuilder.addConverter(w,{f:p,numComponents:d,arrayReference:u?g:void 0,targetArrayType:h})}this.lastOffset=0,this.rangeMap=new Wt([],JSON.stringify)}registerBatch(e){const n=this.lastOffset,i=this.variableBuilder.vertexCount,r=i-n;r&&this.rangeMap.set(e,{offset:n,count:r,xIndex:this.xIndexer?.getIndex()}),this.lastOffset=i}addBatches(e){for(const[n,i]of e)this.addBatch(n,i)}addBatch(e,n,i=0,r=n.length){this.prepareXIndexer(n,i,r);for(let s=i;s<r;s++){const o=n[s];this.variableBuilder.pushFromDatum(o),this.addToXIndex(o)}this.registerBatch(e)}prepareXIndexer(e,n=0,i=n+e.length){const r=()=>{this.addToXIndex=c=>{},this.xIndexer=void 0},s=this.encoders.x?.channelDef;if(!("buildIndex"in s)||!s.buildIndex||!e.length||i-n<0){r();return}const o=c=>c&&Pe(c.scale?.type)&&c,a=o(this.variableEncoders.x),l=o(this.variableEncoders.x2);if(a&&!a.constant&&(!l||!l.constant)){const c=a.dataAccessor.asNumberAccessor(),f=l?l.dataAccessor.asNumberAccessor():c,u=[c(e[n]),f(e[i-1])];if(u[1]>u[0]){this.xIndexer=qS(50,u,c,f);let h=this.variableBuilder.vertexCount;this.addToXIndex=A=>{let d=this.variableBuilder.vertexCount;this.xIndexer(A,h,d),h=d}}else r()}else r()}addToXIndex(e){}toArrays(){return{arrays:this.variableBuilder.arrays,vertexCount:this.variableBuilder.vertexCount,allocatedVertices:this.allocatedVertices,rangeMap:this.rangeMap}}}class n4 extends Us{constructor({encoders:e,attributes:n,numItems:i}){super({encoders:e,attributes:n,numVertices:i*6}),this.variableBuilder.configure();const r=this.variableBuilder.pushAll;this.pushAllSixTimes=i>500?new Function("pushAll",`return function unrolledPushAllSixTimes() {
|
|
423
423
|
pushAll(); pushAll(); pushAll(); pushAll(); pushAll(); pushAll();
|
|
424
|
-
};`)(
|
|
425
|
-
uniform View{mediump vec2 uViewOffset;mediump vec2 uViewScale;mediump vec2 uViewportSize;lowp float uDevicePixelRatio;lowp float uViewOpacity;bool uPickingEnabled;};/***Maps a coordinate on the unit scale to a normalized device coordinate.*(0,0)is at the bottom left corner.*/vec4 unitToNdc(vec2 coord){return vec4((coord*uViewScale+uViewOffset)*2.0-1.0,0.0,1.0);}vec4 unitToNdc(float x,float y){return unitToNdc(vec2(x,y));}vec4 pixelsToNdc(vec2 coord){return unitToNdc(coord/uViewportSize);}vec4 pixelsToNdc(float x,float y){return pixelsToNdc(vec2(x,y));}float linearstep(float edge0,float edge1,float x){return clamp((x-edge0)/(edge1-edge0),0.0,1.0);}bool
|
|
424
|
+
};`)(r):function(){r(),r(),r(),r(),r(),r()}}addBatch(e,n,i=0,r=n.length){if(!(r<=i)){this.prepareXIndexer(n,i,r);for(let s=i;s<r;s++){const o=n[s];this.variableBuilder.updateFromDatum(o),this.pushAllSixTimes(),this.addToXIndex(o)}this.registerBatch(e)}}}class i4 extends Us{constructor({encoders:e,attributes:n,tessellationThreshold:i=1/0,visibleRange:r=[-1/0,1/0],numItems:s}){super({encoders:e,attributes:n,numVertices:i==1/0?s*6:void 0}),this.visibleRange=r,this.tessellationThreshold=i||1/0,this.updateSide=this.variableBuilder.createUpdater("side",1),this.updatePos=this.variableBuilder.createUpdater("pos",1),this.variableBuilder.configure()}addBatch(e,n,i=0,r=n.length){this.prepareXIndexer(n,i,r);for(let s=i;s<r;s++){const o=n[s];this.variableBuilder.updateFromDatum(o),this.updateSide(-.5),this.updatePos(0),this.variableBuilder.pushAll();const a=1;for(let l=0;l<=a;l++)this.updatePos(l/a),this.updateSide(-.5),this.variableBuilder.pushAll(),this.updateSide(.5),this.variableBuilder.pushAll();this.variableBuilder.pushAll(),this.addToXIndex(o)}this.registerBatch(e)}}class r4 extends Us{constructor({encoders:e,attributes:n,numItems:i=void 0}){super({encoders:e,attributes:n,numVertices:i}),this.variableBuilder.configure()}}class s4 extends Us{constructor({encoders:e,attributes:n,numItems:i=void 0}){super({encoders:e,attributes:n,numVertices:i}),this.variableBuilder.configure()}toArrays(){const e=this.variableBuilder.arrays;for(let n of Object.values(e))n.divisor=1;return super.toArrays()}}class o4 extends Us{constructor({encoders:e,attributes:n,fontMetrics:i,properties:r,numCharacters:s=void 0}){super({encoders:e,attributes:n,numVertices:s*6}),this.metadata=i,this.metrics=i,this.properties=r;const a=e.text.channelDef;this.numberFormat=!ut(a)&&"format"in a&&a.format?ze(a.format):l=>l,this.updateVertexCoord=this.variableBuilder.createUpdater("vertexCoord",2),this.updateTextureCoord=this.variableBuilder.createUpdater("textureCoord",2),this.updateWidth=this.variableBuilder.createUpdater("width",1),this.variableBuilder.configure()}addBatch(e,n,i=0,r=n.length){const s=this.properties.align||"left",o=this.properties.logoLetters??!1,a=this.metadata.common.base,l=this.metadata.common.scaleH;let c=-er;switch(this.properties.baseline){case"top":c+=this.metrics.capHeight;break;case"middle":c+=this.metrics.capHeight/2;break;case"bottom":c-=this.metrics.descent;break}const f=this.encoders.text,u=[0,0];this.updateVertexCoord(u);const h=[0,0];this.updateTextureCoord(h),this.prepareXIndexer(n,i,r);for(let A=i;A<r;A++){const d=n[A],g=this.numberFormat(f(d)),m=le(g)?g:g===null?"":""+g;if(m.length==0)continue;this.variableBuilder.updateFromDatum(d);const p=o?m.length:this.metrics.measureWidth(m);this.updateWidth(p);let w=s=="right"?-p:s=="center"?-p/2:0;if(!o){const x=this.metrics.getCharByCode(m.charCodeAt(0));w-=(x.width-x.xadvance)/a/2}let C=-.5,y=1,b=1;for(let x=0;x<m.length;x++){const I=this.metrics.getCharByCode(m.charCodeAt(x)),S=o?1:I.xadvance/a;if(I.id==32){w+=S;continue}o?(b=(I.width+er*2)/I.width,w=-b/2,y=(I.height+er*2)/I.height,C=-.5-er/I.height):(y=I.height/a,C=-(I.height+I.yoffset+c)/a,b=I.width/a);const Q=I.x,v=I.y;u[0]=w,u[1]=C+y,h[0]=Q/l,h[1]=v/l,this.variableBuilder.pushAll(),u[0]=w+b,u[1]=C+y,h[0]=(Q+I.width)/l,h[1]=v/l,this.variableBuilder.pushAll(),u[0]=w,u[1]=C,h[0]=Q/l,h[1]=(v+I.height)/l,this.variableBuilder.pushAll(),u[0]=w+b,u[1]=C+y,h[0]=(Q+I.width)/l,h[1]=v/l,this.variableBuilder.pushAll(),u[0]=w,u[1]=C,h[0]=Q/l,h[1]=(v+I.height)/l,this.variableBuilder.pushAll(),u[0]=w+b,u[1]=C,h[0]=(Q+I.width)/l,h[1]=(v+I.height)/l,this.variableBuilder.pushAll(),w+=S}this.addToXIndex(d)}this.registerBatch(e)}}const Zp=`#define PI 3.141593
|
|
425
|
+
uniform View{mediump vec2 uViewOffset;mediump vec2 uViewScale;mediump vec2 uViewportSize;lowp float uDevicePixelRatio;lowp float uViewOpacity;bool uPickingEnabled;};/***Maps a coordinate on the unit scale to a normalized device coordinate.*(0,0)is at the bottom left corner.*/vec4 unitToNdc(vec2 coord){return vec4((coord*uViewScale+uViewOffset)*2.0-1.0,0.0,1.0);}vec4 unitToNdc(float x,float y){return unitToNdc(vec2(x,y));}vec4 pixelsToNdc(vec2 coord){return unitToNdc(coord/uViewportSize);}vec4 pixelsToNdc(float x,float y){return pixelsToNdc(vec2(x,y));}float linearstep(float edge0,float edge1,float x){return clamp((x-edge0)/(edge1-edge0),0.0,1.0);}const highp uint HASH_EMPTY_KEY=0xffffffffu;highp uint hash32(highp uint key){highp uint v=key;v ^=v>>16u;v*=0x7feb352du;v ^=v>>15u;v*=0x846ca68bu;v ^=v>>16u;return v;}bool isEmptyHashTexture(highp usampler2D s){ivec2 texSize=textureSize(s,0);return texSize.x==1&&texSize.y==1&&texelFetch(s,ivec2(0,0),0).r==HASH_EMPTY_KEY;}bool hashContainsTexture(highp usampler2D s,highp uint value){ivec2 texSize=textureSize(s,0);highp uint width=uint(texSize.x);highp uint size=width*uint(texSize.y);highp uint mask=size-1u;highp uint index=hash32(value)&mask;for(highp uint probe=0u;probe<size;probe+=1u){ivec2 coord=ivec2(int(index % width),int(index/width));highp uint entry=texelFetch(s,coord,0).r;if(entry==value){return true;}if(entry==HASH_EMPTY_KEY){return false;}index=(index+1u)&mask;}return false;}/***Calculates a gamma for antialiasing opacity based on the color.*/float getGammaForColor(vec3 rgb){return mix(1.25,0.75,smoothstep(0.0,1.0,dot(rgb,vec3(0.299,0.587,0.114))));}/***Specialized linearstep for doing antialiasing*/float distanceToRatio(float d){return clamp(d*uDevicePixelRatio+0.5,0.0,1.0);}vec4 distanceToColor(float d,vec4 fill,vec4 stroke,vec4 background,float halfStrokeWidth){if(halfStrokeWidth>0.0){float sd=abs(d)-halfStrokeWidth;return mix(stroke,d<=0.0 ? fill : background,distanceToRatio(sd));}else{return mix(background,fill,distanceToRatio(-d));}}`,a4="uniform highp float uZero;vec3 getDiscreteColor(sampler2D s,int index){return texelFetch(s,ivec2(index % textureSize(s,0).x,0),0).rgb;}vec3 getInterpolatedColor(sampler2D s,float unitValue){return texture(s,vec2(unitValue,0.0)).rgb;}float clampToRange(float value,vec2 range){return clamp(value,min(range[0],range[1]),max(range[0],range[1]));}float scaleIdentity(float value){return value;}float scaleIdentity(uint value){return float(value);}float scaleLinear(float value,vec2 domain,vec2 range){float domainSpan=domain[1]-domain[0];float rangeSpan=range[1]-range[0];return(value-domain[0])/domainSpan*rangeSpan+range[0];}float scaleLog(float value,vec2 domain,vec2 range,float base){return scaleLinear(log(value)/log(base),log(domain)/log(base),range);}float symlog(float value,float constant){return sign(value)*log(abs(value/constant)+1.0);}float scaleSymlog(float value,vec2 domain,vec2 range,float constant){return scaleLinear(symlog(value,constant),vec2(symlog(domain[0],constant),symlog(domain[1],constant)),range);}float scalePow(float value,vec2 domain,vec2 range,float exponent){return scaleLinear(pow(abs(value),exponent)*sign(value),pow(abs(domain),vec2(exponent))*sign(domain),range);}float scaleBand(uint value,vec2 domainExtent,vec2 range,float paddingInner,float paddingOuter,float align,float band){float start=range[0];float stop=range[1];float rangeSpan=stop-start;float n=domainExtent[1]-domainExtent[0];paddingInner=int(n)>1 ? paddingInner : 0.0;float step=rangeSpan/max(1.0,n-paddingInner+paddingOuter*2.0);start+=(rangeSpan-step*(n-paddingInner))*align;float bandwidth=step*(1.0-paddingInner);return start+(float(value)-domainExtent[0])*step+bandwidth*band;}const int lowBits=12;const float lowDivisor=pow(2.0,float(lowBits));const uint lowMask=uint(lowDivisor-1.0);vec2 splitUint(uint value){uint valueLo=value&lowMask;uint valueHi=value-valueLo;return vec2(float(valueHi),float(valueLo));}/***High precision variant of scaleBand for index/locus scales*/float scaleBandHp(uint value,vec3 domainExtent,vec2 range,float paddingInner,float paddingOuter,float align,float band){float start=range[0];float stop=range[1];float rangeSpan=stop-start;vec2 domainStart=domainExtent.xy;float n=domainExtent[2];float step=rangeSpan/max(1.0,n-paddingInner+paddingOuter*2.0);start+=(rangeSpan-step*(n-paddingInner))*align;float bandwidth=step*(1.0-paddingInner);vec2 splitValue=splitUint(value);float inf=1.0/uZero;float hi=max(splitValue[0]-domainStart[0],-inf);float lo=max(splitValue[1]-domainStart[1],-inf);return dot(vec4(start,hi,lo,bandwidth),vec4(1.0,step,step,band));}/***High precision variant of scaleBand for index/locus scales for large*domains where 32bit uints are not sufficient to represent the domain.*/float scaleBandHp(uvec2 value,vec3 domainExtent,vec2 range,float paddingInner,float paddingOuter,float align,float band){float start=range[0];float stop=range[1];float rangeSpan=stop-start;vec2 domainStart=domainExtent.xy;float n=domainExtent[2];float step=rangeSpan/max(1.0,n-paddingInner+paddingOuter*2.0);start+=(rangeSpan-step*(n-paddingInner))*align;float bandwidth=step*(1.0-paddingInner);vec2 splitValue=vec2(float(value[0])*lowDivisor,float(value[1]));float inf=1.0/uZero;float hi=max(splitValue[0]-domainStart[0],-inf);float lo=max(splitValue[1]-domainStart[1],-inf);return dot(vec4(start,hi,lo,bandwidth),vec4(1.0,step,step,band));}",c4=`/***Describes where a sample facet should be shown. Interpolating between the*current and target positions/heights allows for transitioning between facet*configurations.*/struct SampleFacetPosition{float pos;float height;float targetPos;float targetHeight;};/***Trasition fraction[0,1]between the current and target configurations.*/uniform float uTransitionOffset;
|
|
426
426
|
#if !defined(SAMPLE_FACET_UNIFORM) && !defined(SAMPLE_FACET_TEXTURE)
|
|
427
427
|
SampleFacetPosition getSampleFacetPos(){return SampleFacetPosition(0.0,1.0,0.0,1.0);}
|
|
428
428
|
#elif defined(SAMPLE_FACET_UNIFORM)
|
|
@@ -430,37 +430,37 @@ SampleFacetPosition getSampleFacetPos(){return SampleFacetPosition(0.0,1.0,0.0,1
|
|
|
430
430
|
#elif defined(SAMPLE_FACET_TEXTURE)
|
|
431
431
|
uniform sampler2D uSampleFacetTexture;SampleFacetPosition getSampleFacetPos(){vec4 texel=texelFetch(uSampleFacetTexture,ivec2(int(attr_facetIndex),0),0);return SampleFacetPosition(1.0-texel.r-texel.g,texel.g,1.0-texel.r-texel.g,texel.g);}
|
|
432
432
|
#endif
|
|
433
|
-
bool isFacetedSamples(SampleFacetPosition facetPos){return facetPos!=SampleFacetPosition(0.0,1.0,0.0,1.0);}bool isFacetedSamples(){return isFacetedSamples(getSampleFacetPos());}bool isInTransit(){return uTransitionOffset>0.0;}float getTransitionFraction(float xPos){return smoothstep(0.0,0.7+uTransitionOffset,(xPos-uTransitionOffset)*2.0);}vec2 applySampleFacet(vec2 pos){SampleFacetPosition facetPos=getSampleFacetPos();if(!isFacetedSamples(facetPos)){return pos;}else if(isInTransit()){vec2 interpolated=mix(vec2(facetPos.pos,facetPos.height),vec2(facetPos.targetPos,facetPos.targetHeight),getTransitionFraction(pos.x));return vec2(pos.x,interpolated[0]+pos.y*interpolated[1]);}else{return vec2(pos.x,facetPos.pos+pos.y*facetPos.height);}}float getSampleFacetHeight(vec2 pos){SampleFacetPosition facetPos=getSampleFacetPos();if(!isFacetedSamples(facetPos)){return 1.0;}else if(isInTransit()){return mix(facetPos.height,facetPos.targetHeight,getTransitionFraction(pos.x));}else{return facetPos.height;}}`,
|
|
433
|
+
bool isFacetedSamples(SampleFacetPosition facetPos){return facetPos!=SampleFacetPosition(0.0,1.0,0.0,1.0);}bool isFacetedSamples(){return isFacetedSamples(getSampleFacetPos());}bool isInTransit(){return uTransitionOffset>0.0;}float getTransitionFraction(float xPos){return smoothstep(0.0,0.7+uTransitionOffset,(xPos-uTransitionOffset)*2.0);}vec2 applySampleFacet(vec2 pos){SampleFacetPosition facetPos=getSampleFacetPos();if(!isFacetedSamples(facetPos)){return pos;}else if(isInTransit()){vec2 interpolated=mix(vec2(facetPos.pos,facetPos.height),vec2(facetPos.targetPos,facetPos.targetHeight),getTransitionFraction(pos.x));return vec2(pos.x,interpolated[0]+pos.y*interpolated[1]);}else{return vec2(pos.x,facetPos.pos+pos.y*facetPos.height);}}float getSampleFacetHeight(vec2 pos){SampleFacetPosition facetPos=getSampleFacetPos();if(!isFacetedSamples(facetPos)){return 1.0;}else if(isInTransit()){return mix(facetPos.height,facetPos.targetHeight,getTransitionFraction(pos.x));}else{return facetPos.height;}}`,l4=`/**Based on concepts presented at:*https:*https:*/out highp vec4 vPickingColor;/***Passes the unique id to the fragment shader as a color if picking is enabled.*Returns true if picking is enabled.*/bool setupPicking(){if(uPickingEnabled){
|
|
434
434
|
#ifdef uniqueId_DEFINED
|
|
435
435
|
uint id=attr_uniqueId;vPickingColor=vec4(ivec4(id>>0,id>>8,id>>16,id>>24)&0xFF)/float(0xFF);
|
|
436
436
|
#else
|
|
437
437
|
vPickingColor=vec4(1.0);
|
|
438
438
|
#endif
|
|
439
|
-
return true;}return false;}`,
|
|
440
|
-
return ${
|
|
441
|
-
}`)}}else if(
|
|
442
|
-
uniform highp usampler2D ${v};`);const F=this.getContext().glHelper,R=F.selectionTextures;this.selectionTextureOps.push(()=>{const O=
|
|
443
|
-
return
|
|
444
|
-
}`),F.createSelectionTexture(S),
|
|
439
|
+
return true;}return false;}`,f4="in highp vec4 vPickingColor;",qa=Symbol("cacheMap");function Ka(t,e,n){let i=Gs(t).get(e);return i===void 0&&(i=n(e),Gs(t).set(e,i)),i}function uu(t,e){Gs(t).delete(e)}function _s(t,e){const n=Gs(t);for(const i of n.keys())i.startsWith(e)&&n.delete(i);Gs(t).delete(e)}function $p(t){t[qa]=new Map}function Gs(t){return t[qa]||$p(t),t[qa]}function em(...t){const e={get(n,i,r){for(const s of t){const a=s()[i];if(a!==void 0)return a}},has(n,i,r){for(const s of t){const o=s();if(i in o)return!0}return!1}};return new Proxy({},e)}function u4(t){return le(t)||Ve(t)||zr(t)}class He extends Error{constructor(e,n){super(e),this.name="ViewError",this.view=n}}const A4="SAMPLE_FACET_UNIFORM",tm="SAMPLE_FACET_TEXTURE",nm="uSelectionTexture_";class zs{#e=[];constructor(e){this.unitView=e,this.encoders=void 0,this.bufferInfo=void 0,this.bytesPerElement=new Map,this.programInfo=void 0,this.vertexArrayInfo=void 0,this.viewUniformInfo=void 0,this.markUniformInfo=void 0,this.markUniformsAltered=!0,this.selectionTextureOps=[],this.rangeMap=new h4,this.defaultProperties={get clip(){return["x","y"].map(n=>e.getScaleResolution(n)).some(n=>n?.isZoomable()??!1)},xOffset:0,yOffset:0,minBufferSize:0},this.properties=em(typeof this.unitView.spec.mark=="object"?()=>this.unitView.spec.mark:()=>({}),()=>this.defaultProperties)}augmentDefaultProperties(e){Object.defineProperties(this.defaultProperties,Object.getOwnPropertyDescriptors(e))}get opaque(){return!1}get defaultHitTestMode(){return"intersects"}getAttributes(){throw new Error("Not implemented!")}getSupportedChannels(){return["sample","facetIndex","x","y","color","opacity","search","uniqueId"]}getDefaultEncoding(){const e={sample:void 0,uniqueId:void 0};return this.isPickingParticipant()&&(e.uniqueId={field:gt}),e}fixEncoding(e){return e}setupExprRefsNeedingGraphicsUpdate(e){const n=this.getSupportedChannels(),i={};for(const s of e){const o=this.properties[s];if(o&&Ee(o)){const a=this.unitView.paramRuntime.watchExpression(o.expr,()=>{this.updateGraphicsData(),this.unitView.context.animator.requestRender()});n.includes(s)||Object.defineProperty(i,s,{get(){return a()}})}}const r=this.properties;this.properties=em(()=>i,()=>r)}get encoding(){return Ka(this,"encoding",()=>{const e=this.getDefaultEncoding(),n=this.unitView.getEncoding(),i=o=>{const a=this.properties[o];return u4(a)||Ee(a)?{value:a}:void 0},r=Object.fromEntries(this.getSupportedChannels().map(o=>[o,i(o)]).filter(o=>ut(o[1]))),s=this.fixEncoding({...e,...r,...n});for(const o of Object.keys(s))this.getSupportedChannels().includes(o)||delete s[o];return s.x&&(s.x.buildIndex??=!0),s})}getContext(){return this.unitView.context}getType(){return this.unitView.getMarkType()}initializeData(){}initializeEncoders(){this.encoders=zx(this.unitView,this.encoding)}async initializeGraphics(){}updateGraphicsData(){}getSampleFacetMode(){if(this.encoders.facetIndex)return tm;if(this.unitView.getLayoutAncestors().find(e=>"samples"in e.spec))return A4}createAndLinkShaders(e,n,i=[]){const r=this.getAttributes(),s=this.encoders,o=this.getSampleFacetMode();o&&i.push(`#define ${o}`);const a="// view: "+this.unitView.getPathString();let l=[];const c=new Set,f=jp(s),u=[],h=Object.values(s).flatMap(b=>b.accessors).map(b=>b.predicate).filter(b=>b.param),A=new Map;for(const b of h){const x=b.param,I=this.unitView.paramRuntime,S=I.findValue(x);if(!S)throw new Error(`Cannot infer selection type as the parameter "${x}" has no value. Please ensure that the parameter is properly defined!`);const Q=lr("uniqueId");if(Wd(S)){if(!A.has(x)){A.set(x,"single");const v=Ja+Tt(x);u.push(" // Selection parameter"),u.push(` uniform highp uint ${v};`),this.#e.push(()=>{this.registerMarkUniformValue(v,{expr:x},F=>F.uniqueId??0)}),l.push(`bool ${Ls}${x}(bool empty) {
|
|
440
|
+
return ${Ja}${x} == ${Q} || (empty && ${Ja}${x} == 0u);
|
|
441
|
+
}`)}}else if(Gl(S)){if(!A.has(x)){A.set(x,"multi");const v=nm+Tt(x);l.push(`// Selection texture
|
|
442
|
+
uniform highp usampler2D ${v};`);const F=this.getContext().glHelper,R=F.selectionTextures;this.selectionTextureOps.push(()=>{const O=I.getValue(x),z=R.get(O);if(!z)throw new Error(`Bug: no selection texture found for "${x}"!`);oi(this.programInfo,{[v]:z})});const M=nm+x;l.push(`bool ${Ls}${x}(bool empty) {
|
|
443
|
+
return hashContainsTexture(${M}, ${Q}) || (empty && isEmptyHashTexture(${M}));
|
|
444
|
+
}`),F.createSelectionTexture(S),I.watchExpression(x,()=>{const O=I.getValue(x);F.createSelectionTexture(O),this.getContext().animator.requestRender()})}}else if(jd(S)&&!A.has(x)){A.set(x,"interval");const v=[],F=[];for(const R of Object.keys(S.intervals)){if(!["x","y"].includes(R))continue;const M=Ja+Tt(x)+`_${R}`,{attributeType:O}=cr(this.unitView.getScaleResolution(R).getScale(),R);u.push(" // Selection parameter"),u.push(` uniform highp ${O}[2] ${M};`),this.#e.push(()=>{this.registerMarkUniformValue(M,{expr:x},ne=>ne.intervals[R]??[1,0])});const z=ne=>{for(const[_e,Kt]of f.entries())if(_e[1]&&Kt.includes(ne))return lr(Kt);return lr(ne)},_=z(R),Y=M+"[0]",te=M+"[1]",oe=Ol(R);if(this.encoding[oe]){const ne=z(oe),_e=this.defaultHitTestMode;if(_e=="endpoints")v.push(`((${Y} <= ${_} && ${_} <= ${te}) || (${Y} <= ${ne} && ${ne} <= ${te}))`);else if(_e=="encloses")v.push(`(${Y} <= ${_} && ${ne} <= ${te})`);else if(_e=="intersects")v.push(`(${Y} <= ${ne} && ${_} <= ${te})`);else throw new He(`Unsupported hit test mode "${_e}" for interval selection!`,this.unitView)}else v.push(`(${Y} <= ${_} && ${_} <= ${te})`);F.push(`${Y} > ${te}`)}l.push(`bool ${Ls}${x}(bool empty) {
|
|
445
445
|
return ${v.join(" && ")} || (empty && (${F.join(" || ")}));
|
|
446
|
-
}`)}}const d=(
|
|
446
|
+
}`)}}const d=(b,x,I,S)=>{const Q=x.channelDef;if(ut(Q))if(Ee(Q.value)){const{uniformName:v,uniformGlsl:F,accessorGlsl:R,adjuster:M}=VD(b,I);l.push(R),u.push(F),this.#e.push(()=>{this.registerMarkUniformValue(v,Q.value,M)})}else l.push(YD(b,I,Q.value).accessorGlsl);else if(Yi(Q)){const{uniformName:v,uniformGlsl:F,accessorGlsl:R}=JD(b,S,I);u.push(F),l.push(R);const{largeHp:M,discrete:O}=cr(S,b),z=O&&"domain"in S?_=>S.domain().indexOf(_):M?Kp:_=>+_;this.#e.push(()=>{this.registerMarkUniformValue(v,Q.datum,z)})}else if(tn(Q)){const v=f.get([Q.field,!0]),{attributeGlsl:F,accessorGlsl:R}=zp(b,S,I,v?.includes(b)?v:void 0);c.add(F),l.push(R)}else if(Vi(Q)){const{attributeGlsl:v,accessorGlsl:F}=zp(b,S,I);c.add(v),l.push(F)}else throw new He(`Unsupported channel definition: ${JSON.stringify(Q)}`,this.unitView)};for(const[b,x]of Object.entries(s)){if(!r.includes(b))continue;const{channelDef:I,accessors:S,scale:Q}=x;for(let v=0;v<S.length;v++)d(b,S[v],v,Q);if(Q){const v=Hd(I),F=v&&v.resolutionChannel||b,R=ra(F)?this.unitView.getScaleResolution(F):null,{glsl:M,domainUniform:O,domainUniformName:z,rangeUniform:_,rangeUniformName:Y}=qD(b,Q,I);l.push(M),u.push(O),u.push(_),_&&this.#e.push(()=>{const te=this.createMarkUniformSetter(Y),oe=()=>te(Wp(Q,b));R.addEventListener("range",oe),oe()}),O&&this.#e.push(()=>{const te=this.createMarkUniformSetter(z),oe=()=>{const ne=on(Q.type)?[0,Q.domain().length]:Q.domain();te(qp(Q.type)?$D(ne):ne)};R.addEventListener("domain",oe),oe()})}l.push(KD(b,S))}const g=[...A.keys()].map(b=>`${Ls}${b}(false)`);l.push(`bool isPointSelected() {
|
|
447
447
|
`+(this.encoders.uniqueId&&g.length>0?` return ${g.join(" || ")};`:" return false;")+`
|
|
448
|
-
}`);const
|
|
449
|
-
precision highp int;`,
|
|
450
|
-
`));
|
|
451
|
-
`),...l,UQ,GQ,e],y=[p,a,...r,yp,zQ,t],w=this.gl;this.programStatus=lQ(w,this.glHelper.compileShader(w.VERTEX_SHADER,C),this.glHelper.compileShader(w.FRAGMENT_SHADER,y))}finalizeGraphicsInitialization(){if(this.programInfo)return;if(!this.programStatus)throw new Error("No program status found! "+this.unitView.getPathString());const e=this.programStatus.getProgramErrors();if(e){e.detail&&console.warn(e.detail);const t=new Error("Cannot create shader program: "+e.message);throw t.view=this.unitView,t}this.programInfo=n3(this.gl,this.programStatus.program),delete this.programStatus,this.viewUniformInfo=v0(this.gl,this.programInfo,"View"),this.markUniformInfo=v0(this.gl,this.programInfo,"Mark"),this.gl.useProgram(this.programInfo.program),ir(this.programInfo,{uSampleFacet:[0,1,0,1],uTransitionOffset:0,uZero:0});for(const t of this.#e)t();this.#e=void 0}createMarkUniformSetter(e){const t=this.markUniformInfo.setters[e];if(!t)throw new Error(`Uniform "${e}" not found int the Mark block!`);return r=>{t(r),this.markUniformsAltered=!0,this.unitView.context.animator.requestRender()}}registerMarkUniformValue(e,t,r=i=>i){const i=this.createMarkUniformSetter(e),s=o=>{if(o==null)throw new Error(`Trying to set null/undefined value for uniform: ${e}${Ie(t)?`Expr: ${t.expr}`:""}`);i(o)};if(Ie(t)){let o;const a=()=>s(r(o(null)));o=this.unitView.paramRuntime.watchExpression(t.expr,a),a()}else s(r(t))}deleteGraphicsData(){const e=this.glHelper;if(!e){this.vertexArrayInfo=void 0,this.bufferInfo=void 0;return}const t=e.gl;if(this.vertexArrayInfo&&(this.gl.bindVertexArray(null),t.deleteVertexArray(this.vertexArrayInfo.vertexArrayObject),this.vertexArrayInfo=void 0),this.bufferInfo){for(let r=0;r<8;r++)t.disableVertexAttribArray(r);Object.values(this.bufferInfo.attribs).forEach(r=>this.gl.deleteBuffer(r.buffer)),this.bufferInfo.indices&&this.gl.deleteBuffer(this.bufferInfo.indices),this.bufferInfo=void 0}}dispose(){this.deleteGraphicsData()}updateBufferInfo(e){if(this.gl.bindVertexArray(null),this.bufferInfo&&e.vertexCount<=this.bufferInfo.allocatedVertices)for(const[t,r]of Object.entries(e.arrays))r.data&&gx(this.gl,this.bufferInfo.attribs[t],r.data,0);else{this.deleteGraphicsData(),this.bufferInfo=wx(this.gl,e.arrays,{numElements:e.vertexCount}),this.bufferInfo.allocatedVertices=e.allocatedVertices;for(const[t,r]of Object.entries(e.arrays))this.bytesPerElement.set(t,r.data.BYTES_PER_ELEMENT)}}get glHelper(){return this.getContext().glHelper}get gl(){return this.glHelper.gl}isReady(){return this.bufferInfo&&this.programInfo}isPickingParticipant(){if(this.properties.tooltip===null&&!this.unitView.paramRuntime.hasPointSelections())return!1;for(const e of this.unitView.getLayoutAncestors())if(!e.isPickingSupported())return!1;return!0}bindOrSetMarkUniformBlock(){this.markUniformsAltered?(Q0(this.gl,this.programInfo,this.markUniformInfo),this.markUniformsAltered=!1):S0(this.gl,this.programInfo,this.markUniformInfo)}prepareRender(e){const t=this.glHelper,r=this.gl,i=[];i.push(()=>{this.vertexArrayInfo||(this.vertexArrayInfo=I3(this.gl,this.programInfo,this.bufferInfo)),r.useProgram(this.programInfo.program)});for(const[o,a]of Object.entries(this.encoders)){const l=t.rangeTextures.get(a.scale);l&&i.push(()=>ir(this.programInfo,{[_u+o]:l}))}i.push(...this.selectionTextureOps),this.getSampleFacetMode()==Ep&&i.push(()=>{let o;for(const a of this.unitView.getLayoutAncestors())if(o=a.getSampleFacetTexture(),o)break;if(!o)throw new Error("No facet texture available. This is bug.");ir(this.programInfo,{uSampleFacetTexture:o})});const s=(e.picking??!1)&&this.isPickingParticipant();return i.push(()=>ms(this.viewUniformInfo,{uViewOpacity:this.unitView.getEffectiveOpacity(),uPickingEnabled:s})),this.opaque||e.picking?i.push(()=>r.disable(r.BLEND)):i.push(()=>r.enable(r.BLEND)),i}prepareSampleFacetRendering(e){const t=e.sampleFacetRenderingOptions,r=this.programInfo.uniformSetters.uSampleFacet;if(t&&r){const i=t.pixelToUnit,s=t.locSize.location*i,o=t.locSize.size*i;if(s>1||s+o<0)return!1;this.gl.uniform4f(r.location,s,o,s,o)}return!0}render(e){}createRenderCallback(e,t){if(!this.bufferInfo)return()=>{};const r=this;let i;const s=this.unitView.getScaleResolution("x")?.getScale(),o=s&&Pe(s.type),a=["index","locus"].includes(s?.type)?-1:0,l=[0,0];i=f=>{if(o&&f.xIndex){const h=s.domain(),A=f.xIndex(h[0]+a,h[1],l),d=A[0],g=A[1]-d;g>0&&e(d,g)}else e(f.offset,f.count)};const c=this.rangeMap.get(void 0).count==0?t.facetId:void 0,u=this.rangeMap.get(c);return t.sampleFacetRenderingOptions?function(){u.count&&r.prepareSampleFacetRendering(t)&&i(u)}:function(){u.count&&i(u)}}setViewport(e,t,r,i){r=r.flatten();const s=this.gl,o=this.properties,a=.5,l=(o.xOffset??0)+a,c=(o.yOffset??0)+a;let u,f=r;if(o.clip!=="never"&&(o.clip||i)){let h=0,A=0,d;if(i){if(f=r.intersect(i).flatten(),!f.isDefined())return!1;d=[r.width/f.width,r.height/f.height],A=Math.max(0,r.y2-i.y2),h=Math.min(0,r.x-i.x)}else d=[1,1];const g=[f.x,e.height-f.y2,f.width,f.height].map(y=>y*t),p=g.map(y=>Math.floor(y)),m=g[0]-p[0],C=g[1]-p[1];s.viewport(...p),s.scissor(...p),s.enable(s.SCISSOR_TEST),u={uViewOffset:[(l+h+m/t)/f.width,-(c+A-C/t)/f.height],uViewScale:d}}else{if(!r.isDefined())return!1;s.viewport(0,0,e.width*t,e.height*t),s.disable(s.SCISSOR_TEST),u={uViewOffset:[(r.x+l)/e.width,(e.height-r.y-c-r.height)/e.height],uViewScale:[r.width/e.width,r.height/e.height]}}return ms(this.viewUniformInfo,{...u,uViewportSize:[r.width,r.height],uDevicePixelRatio:t}),Q0(this.gl,this.programInfo,this.viewUniformInfo),!0}findDatumAt(e,t){}}class _Q extends jt{constructor(){super([],JSON.stringify)}get(e){let t=super.get(e);return t===void 0&&(t={offset:0,count:0,xIndex:void 0},super.set(e,t)),t}migrateEntries(e){for(const[t,r]of this.entries())e.has(t)||(r.offset=0,r.count=0,r.xIndex=void 0);for(const[t,r]of e.entries())Object.assign(this.get(t),r)}}function qu(n,e){const t=Il(e);let r=n[e]&&{...n[e]},i=n[t]&&{...n[t]};if(!(ut(r)||ut(i))){if(r){if(!gt(n[e]))return;if(i){if(r.type!="quantitative"){const s=(1-(r.band||1))/2;r.band=s,i.band=-s}}else if(r.type=="quantitative")i={datum:0,domainInert:!0};else{i={...r};const s=(1-(r.band??1))/2;r.band=0+s,i.band=1-s}}else r={value:0},i={value:1};n[e]=r,n[t]=i}}function Oa(n,e){const t=fd(n);t&&(t.resolutionChannel=e)}function Bp(n,e){n.stroke||(e?n.stroke={value:null}:(n.stroke=structuredClone(n.color),Oa(n.stroke,"color"))),ut(n.stroke)&&n.stroke.value===null&&(n.strokeWidth={value:0}),n.strokeOpacity||(n.strokeOpacity=structuredClone(n.opacity),Oa(n.strokeOpacity,"opacity"))}function vp(n,e){ut(n.fill)&&n.fill.value===null?n.fillOpacity={value:0}:n.fill||(n.fill=structuredClone(n.color),Oa(n.fill,"color"),!e&&!n.fillOpacity&&(n.fillOpacity={value:0})),n.fillOpacity||(e?(n.fillOpacity=structuredClone(n.opacity),Oa(n.fillOpacity,"opacity")):n.fillOpacity={value:0})}const YQ=["none","diagonal","antiDiagonal","cross","vertical","horizontal","grid","dots","rings","ringsLarge"];class JQ extends Ts{constructor(e){super(e),this.augmentDefaultProperties({x2:void 0,y2:void 0,filled:!0,color:"#4c78a8",opacity:1,strokeWidth:3,cornerRadius:0,minWidth:.5,minHeight:.5,minOpacity:1})}getAttributes(){return["uniqueId","facetIndex","x","x2","y","y2","fill","stroke","fillOpacity","strokeOpacity","strokeWidth"]}getSupportedChannels(){return[...super.getSupportedChannels(),"x2","y2","fill","stroke","fillOpacity","strokeOpacity","strokeWidth"]}get opaque(){return La(this,"opaque",()=>!this.#e()&&!this.#t()&&!this.properties.shadowOpacity&&ut(this.encoding.fillOpacity)&&this.encoding.fillOpacity.value==1&&this.properties.minOpacity==1)&&this.unitView.getEffectiveOpacity()==1}fixEncoding(e){return qu(e,"x"),qu(e,"y"),Bp(e,this.properties.filled),vp(e,this.properties.filled),delete e.color,delete e.opacity,e}#e(){const e=this.properties;return e.cornerRadius||e.cornerRadiusBottomLeft||e.cornerRadiusBottomRight||e.cornerRadiusTopLeft||e.cornerRadiusTopRight}#t(){const e=this.encoding.strokeWidth;return!(ut(e)&&!e.value)||"condition"in e}async initializeGraphics(){await super.initializeGraphics();const e=[];this.#e()&&e.push("ROUNDED_CORNERS"),this.#t()&&e.push("STROKED"),this.properties.shadowOpacity&&e.push("SHADOW"),this.createAndLinkShaders(v3,S3,[Q3,...e.map(t=>"#define "+t)])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties;this.registerMarkUniformValue("uMinWidth",e.minWidth),this.registerMarkUniformValue("uMinHeight",e.minHeight),this.registerMarkUniformValue("uMinOpacity",e.minOpacity),this.registerMarkUniformValue("uCornerRadiusTopRight",e.cornerRadiusTopRight??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusBottomRight",e.cornerRadiusBottomRight??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusTopLeft",e.cornerRadiusTopLeft??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusBottomLeft",e.cornerRadiusBottomLeft??e.cornerRadius??0),this.registerMarkUniformValue("uHatchPattern",e.hatch,t=>Math.max(0,YQ.indexOf(t??"none"))),this.registerMarkUniformValue("uShadowBlur",e.shadowBlur??0),this.registerMarkUniformValue("uShadowOpacity",e.shadowOpacity??0),this.registerMarkUniformValue("uShadowOffsetX",e.shadowOffsetX??0),this.registerMarkUniformValue("uShadowOffsetY",e.shadowOffsetY??0),this.registerMarkUniformValue("uShadowColor",e.shadowColor??"black",Vu)}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const t=e.getItemCount(),r=new MQ({encoders:this.encoders,attributes:this.getAttributes(),numItems:t});r.addBatches(e.facetBatches);const i=r.toArrays();this.rangeMap.migrateEntries(i.rangeMap),this.updateBufferInfo(i)}prepareRender(e){const t=super.prepareRender(e);return t.push(()=>this.bindOrSetMarkUniformBlock()),t.push(()=>sr(this.gl,this.programInfo,this.vertexArrayInfo)),t}render(e){const t=this.gl;return this.createRenderCallback((r,i)=>{pa(t,this.vertexArrayInfo,t.TRIANGLE_STRIP,i,r)},e)}findDatumAt(e,t){e=Me(e);const r=this.unitView.getCollector().facetBatches.get(e);if(!r)return;const i=this.encoders,s=i.x.scale.type;if(sn(s)){const o=i.x.dataAccessor;return r.find(a=>t==o(a))}else{const o=i.x.dataAccessor,a=i.x2.dataAccessor;return r.find(l=>t>=o(l)&&t<a(l))}}}const qQ=`flat out float vRadius;flat out float vRadiusWithPadding;flat out lowp vec4 vFillColor;flat out lowp vec4 vStrokeColor;flat out lowp float vShape;flat out lowp float vHalfStrokeWidth;flat out mat2 vRotationMatrix;const float CIRCLE=0.0;const float SQUARE=1.0;const float CROSS=2.0;const float DIAMOND=3.0;const float TRIANGLE_UP=4.0;const float TRIANGLE_RIGHT=5.0;const float TRIANGLE_DOWN=6.0;const float TRIANGLE_LEFT=7.0;const float TICK_UP=8.0;const float TICK_RIGHT=9.0;const float TICK_DOWN=10.0;const float TICK_LEFT=11.0;float computeSemanticThresholdFactor(){return getScaled_semanticScore()>=uSemanticThreshold ? 1.0 : 0.0;}vec2 getDxDy(){
|
|
448
|
+
}`);const m=`precision highp float;
|
|
449
|
+
precision highp int;`,p=b=>b.replace("#pragma markUniforms",u.join(`
|
|
450
|
+
`));i=i.map(p),e=p(e),n=p(n);const w=[m,a,...i,Zp,a4,[...c].join(`
|
|
451
|
+
`),...l,c4,l4,e],C=[m,a,...i,Zp,f4,n],y=this.gl;this.programStatus=RD(y,this.glHelper.compileShader(y.VERTEX_SHADER,w),this.glHelper.compileShader(y.FRAGMENT_SHADER,C))}finalizeGraphicsInitialization(){if(this.programInfo)return;if(!this.programStatus)throw new Error("No program status found! "+this.unitView.getPathString());const e=this.programStatus.getProgramErrors();if(e){e.detail&&console.warn(e.detail);const n=new Error("Cannot create shader program: "+e.message);throw n.view=this.unitView,n}this.programInfo=wS(this.gl,this.programStatus.program),delete this.programStatus,this.viewUniformInfo=rg(this.gl,this.programInfo,"View"),this.markUniformInfo=rg(this.gl,this.programInfo,"Mark"),this.gl.useProgram(this.programInfo.program),oi(this.programInfo,{uSampleFacet:[0,1,0,1],uTransitionOffset:0,uZero:0});for(const n of this.#e)n();this.#e=void 0}createMarkUniformSetter(e){const n=this.markUniformInfo.setters[e];if(!n)throw new Error(`Uniform "${e}" not found int the Mark block!`);return i=>{n(i),this.markUniformsAltered=!0,this.unitView.context.animator.requestRender()}}registerMarkUniformValue(e,n,i=r=>r){const r=this.createMarkUniformSetter(e),s=o=>{if(o==null)throw new Error(`Trying to set null/undefined value for uniform: ${e}${Ee(n)?`Expr: ${n.expr}`:""}`);r(o)};if(Ee(n)){let o;const a=()=>s(i(o(null)));o=this.unitView.paramRuntime.watchExpression(n.expr,a),a()}else s(i(n))}deleteGraphicsData(){const e=this.glHelper;if(!e){this.vertexArrayInfo=void 0,this.bufferInfo=void 0;return}const n=e.gl;if(this.vertexArrayInfo&&(this.gl.bindVertexArray(null),n.deleteVertexArray(this.vertexArrayInfo.vertexArrayObject),this.vertexArrayInfo=void 0),this.bufferInfo){for(let i=0;i<8;i++)n.disableVertexAttribArray(i);Object.values(this.bufferInfo.attribs).forEach(i=>this.gl.deleteBuffer(i.buffer)),this.bufferInfo.indices&&this.gl.deleteBuffer(this.bufferInfo.indices),this.bufferInfo=void 0}}dispose(){this.deleteGraphicsData()}updateBufferInfo(e){if(this.gl.bindVertexArray(null),this.bufferInfo&&e.vertexCount<=this.bufferInfo.allocatedVertices)for(const[n,i]of Object.entries(e.arrays))i.data&&FB(this.gl,this.bufferInfo.attribs[n],i.data,0);else{this.deleteGraphicsData(),this.bufferInfo=MB(this.gl,e.arrays,{numElements:e.vertexCount}),this.bufferInfo.allocatedVertices=e.allocatedVertices;for(const[n,i]of Object.entries(e.arrays))this.bytesPerElement.set(n,i.data.BYTES_PER_ELEMENT)}}get glHelper(){return this.getContext().glHelper}get gl(){return this.glHelper.gl}isReady(){return this.bufferInfo&&this.programInfo}isPickingParticipant(){if(this.properties.tooltip===null&&!this.unitView.paramRuntime.hasPointSelections())return!1;for(const e of this.unitView.getLayoutAncestors())if(!e.isPickingSupported())return!1;return!0}bindOrSetMarkUniformBlock(){this.markUniformsAltered?(og(this.gl,this.programInfo,this.markUniformInfo),this.markUniformsAltered=!1):sg(this.gl,this.programInfo,this.markUniformInfo)}prepareRender(e){const n=this.glHelper,i=this.gl,r=[];r.push(()=>{this.vertexArrayInfo||(this.vertexArrayInfo=LS(this.gl,this.programInfo,this.bufferInfo)),i.useProgram(this.programInfo.program)});for(const[o,a]of Object.entries(this.encoders)){const l=n.rangeTextures.get(a.scale);l&&r.push(()=>oi(this.programInfo,{[lu+o]:l}))}r.push(...this.selectionTextureOps),this.getSampleFacetMode()==tm&&r.push(()=>{let o;for(const a of this.unitView.getLayoutAncestors())if(o=a.getSampleFacetTexture(),o)break;if(!o)throw new Error("No facet texture available. This is bug.");oi(this.programInfo,{uSampleFacetTexture:o})});const s=(e.picking??!1)&&this.isPickingParticipant();return r.push(()=>xs(this.viewUniformInfo,{uViewOpacity:this.unitView.getEffectiveOpacity(),uPickingEnabled:s})),this.opaque||e.picking?r.push(()=>i.disable(i.BLEND)):r.push(()=>i.enable(i.BLEND)),r}prepareSampleFacetRendering(e){const n=e.sampleFacetRenderingOptions,i=this.programInfo.uniformSetters.uSampleFacet;if(n&&i){const r=n.pixelToUnit,s=n.locSize.location*r,o=n.locSize.size*r;if(s>1||s+o<0)return!1;this.gl.uniform4f(i.location,s,o,s,o)}return!0}render(e){}createRenderCallback(e,n){if(!this.bufferInfo)return()=>{};const i=this;let r;const s=this.unitView.getScaleResolution("x")?.getScale(),o=s&&Pe(s.type),a=["index","locus"].includes(s?.type)?-1:0,l=[0,0];r=u=>{if(o&&u.xIndex){const h=s.domain(),A=u.xIndex(h[0]+a,h[1],l),d=A[0],g=A[1]-d;g>0&&e(d,g)}else e(u.offset,u.count)};const c=this.rangeMap.get(void 0).count==0?n.facetId:void 0,f=this.rangeMap.get(c);return n.sampleFacetRenderingOptions?function(){f.count&&i.prepareSampleFacetRendering(n)&&r(f)}:function(){f.count&&r(f)}}setViewport(e,n,i,r){i=i.flatten();const s=this.gl,o=this.properties,a=.5,l=(o.xOffset??0)+a,c=(o.yOffset??0)+a;let f,u=i;if(o.clip!=="never"&&(o.clip||r)){let h=0,A=0,d;if(r){if(u=i.intersect(r).flatten(),!u.isDefined())return!1;d=[i.width/u.width,i.height/u.height],A=Math.max(0,i.y2-r.y2),h=Math.min(0,i.x-r.x)}else d=[1,1];const g=[u.x,e.height-u.y2,u.width,u.height].map(C=>C*n),m=g.map(C=>Math.floor(C)),p=g[0]-m[0],w=g[1]-m[1];s.viewport(...m),s.scissor(...m),s.enable(s.SCISSOR_TEST),f={uViewOffset:[(l+h+p/n)/u.width,-(c+A-w/n)/u.height],uViewScale:d}}else{if(!i.isDefined())return!1;s.viewport(0,0,e.width*n,e.height*n),s.disable(s.SCISSOR_TEST),f={uViewOffset:[(i.x+l)/e.width,(e.height-i.y-c-i.height)/e.height],uViewScale:[i.width/e.width,i.height/e.height]}}return xs(this.viewUniformInfo,{...f,uViewportSize:[i.width,i.height],uDevicePixelRatio:n}),og(this.gl,this.programInfo,this.viewUniformInfo),!0}findDatumAt(e,n){}}class h4 extends Wt{constructor(){super([],JSON.stringify)}get(e){let n=super.get(e);return n===void 0&&(n={offset:0,count:0,xIndex:void 0},super.set(e,n)),n}migrateEntries(e){for(const[n,i]of this.entries())e.has(n)||(i.offset=0,i.count=0,i.xIndex=void 0);for(const[n,i]of e.entries())Object.assign(this.get(n),i)}}function Au(t,e){const n=Ol(e);let i=t[e]&&{...t[e]},r=t[n]&&{...t[n]};if(!(ut(i)||ut(r))){if(i){if(!pt(t[e]))return;if(r){if(i.type!="quantitative"){const s=(1-(i.band||1))/2;i.band=s,r.band=-s}}else if(i.type=="quantitative")r={datum:0,domainInert:!0};else{r={...i};const s=(1-(i.band??1))/2;i.band=0+s,r.band=1-s}}else i={value:0},r={value:1};t[e]=i,t[n]=r}}function ja(t,e){const n=Hd(t);n&&(n.resolutionChannel=e)}function im(t,e){t.stroke||(e?t.stroke={value:null}:(t.stroke=structuredClone(t.color),ja(t.stroke,"color"))),ut(t.stroke)&&t.stroke.value===null&&(t.strokeWidth={value:0}),t.strokeOpacity||(t.strokeOpacity=structuredClone(t.opacity),ja(t.strokeOpacity,"opacity"))}function rm(t,e){ut(t.fill)&&t.fill.value===null?t.fillOpacity={value:0}:t.fill||(t.fill=structuredClone(t.color),ja(t.fill,"color"),!e&&!t.fillOpacity&&(t.fillOpacity={value:0})),t.fillOpacity||(e?(t.fillOpacity=structuredClone(t.opacity),ja(t.fillOpacity,"opacity")):t.fillOpacity={value:0})}const d4=["none","diagonal","antiDiagonal","cross","vertical","horizontal","grid","dots","rings","ringsLarge"];class g4 extends zs{constructor(e){super(e),this.augmentDefaultProperties({x2:void 0,y2:void 0,filled:!0,color:"#4c78a8",opacity:1,strokeWidth:3,cornerRadius:0,minWidth:.5,minHeight:.5,minOpacity:1})}getAttributes(){return["uniqueId","facetIndex","x","x2","y","y2","fill","stroke","fillOpacity","strokeOpacity","strokeWidth"]}getSupportedChannels(){return[...super.getSupportedChannels(),"x2","y2","fill","stroke","fillOpacity","strokeOpacity","strokeWidth"]}get opaque(){return Ka(this,"opaque",()=>!this.#e()&&!this.#t()&&!this.properties.shadowOpacity&&ut(this.encoding.fillOpacity)&&this.encoding.fillOpacity.value==1&&this.properties.minOpacity==1)&&this.unitView.getEffectiveOpacity()==1}fixEncoding(e){return Au(e,"x"),Au(e,"y"),im(e,this.properties.filled),rm(e,this.properties.filled),delete e.color,delete e.opacity,e}#e(){const e=this.properties;return e.cornerRadius||e.cornerRadiusBottomLeft||e.cornerRadiusBottomRight||e.cornerRadiusTopLeft||e.cornerRadiusTopRight}#t(){const e=this.encoding.strokeWidth;return!(ut(e)&&!e.value)||"condition"in e}async initializeGraphics(){await super.initializeGraphics();const e=[];this.#e()&&e.push("ROUNDED_CORNERS"),this.#t()&&e.push("STROKED"),this.properties.shadowOpacity&&e.push("SHADOW"),this.createAndLinkShaders(zS,HS,[YS,...e.map(n=>"#define "+n)])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties;this.registerMarkUniformValue("uMinWidth",e.minWidth),this.registerMarkUniformValue("uMinHeight",e.minHeight),this.registerMarkUniformValue("uMinOpacity",e.minOpacity),this.registerMarkUniformValue("uCornerRadiusTopRight",e.cornerRadiusTopRight??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusBottomRight",e.cornerRadiusBottomRight??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusTopLeft",e.cornerRadiusTopLeft??e.cornerRadius??0),this.registerMarkUniformValue("uCornerRadiusBottomLeft",e.cornerRadiusBottomLeft??e.cornerRadius??0),this.registerMarkUniformValue("uHatchPattern",e.hatch,n=>Math.max(0,d4.indexOf(n??"none"))),this.registerMarkUniformValue("uShadowBlur",e.shadowBlur??0),this.registerMarkUniformValue("uShadowOpacity",e.shadowOpacity??0),this.registerMarkUniformValue("uShadowOffsetX",e.shadowOffsetX??0),this.registerMarkUniformValue("uShadowOffsetY",e.shadowOffsetY??0),this.registerMarkUniformValue("uShadowColor",e.shadowColor??"black",cu)}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const n=e.getItemCount(),i=new n4({encoders:this.encoders,attributes:this.getAttributes(),numItems:n});i.addBatches(e.facetBatches);const r=i.toArrays();this.rangeMap.migrateEntries(r.rangeMap),this.updateBufferInfo(r)}prepareRender(e){const n=super.prepareRender(e);return n.push(()=>this.bindOrSetMarkUniformBlock()),n.push(()=>ai(this.gl,this.programInfo,this.vertexArrayInfo)),n}render(e){const n=this.gl;return this.createRenderCallback((i,r)=>{Sa(n,this.vertexArrayInfo,n.TRIANGLE_STRIP,r,i)},e)}findDatumAt(e,n){e=Ne(e);const i=this.unitView.getCollector().facetBatches.get(e);if(!i)return;const r=this.encoders,s=r.x.scale.type;if(on(s)){const o=r.x.dataAccessor;return i.find(a=>n==o(a))}else{const o=r.x.dataAccessor,a=r.x2.dataAccessor;return i.find(l=>n>=o(l)&&n<a(l))}}}const p4=`flat out float vRadius;flat out float vRadiusWithPadding;flat out lowp vec4 vFillColor;flat out lowp vec4 vStrokeColor;flat out lowp float vShape;flat out lowp float vHalfStrokeWidth;flat out mat2 vRotationMatrix;const float CIRCLE=0.0;const float SQUARE=1.0;const float CROSS=2.0;const float DIAMOND=3.0;const float TRIANGLE_UP=4.0;const float TRIANGLE_RIGHT=5.0;const float TRIANGLE_DOWN=6.0;const float TRIANGLE_LEFT=7.0;const float TICK_UP=8.0;const float TICK_RIGHT=9.0;const float TICK_DOWN=10.0;const float TICK_LEFT=11.0;float computeSemanticThresholdFactor(){return getScaled_semanticScore()>=uSemanticThreshold ? 1.0 : 0.0;}vec2 getDxDy(){
|
|
452
452
|
#if defined(dx_DEFINED) || defined(dy_DEFINED)
|
|
453
453
|
return vec2(getScaled_dx(),getScaled_dy())/uViewportSize;
|
|
454
454
|
#else
|
|
455
455
|
return vec2(0.0,0.0);
|
|
456
456
|
#endif
|
|
457
|
-
}void main(void){float shapeAngle=0.0;float semanticThresholdFactor=isPointSelected()? 1.0: computeSemanticThresholdFactor();if(semanticThresholdFactor<=0.0){gl_PointSize=0.0;gl_Position=vec4(100.0,0.0,0.0,0.0);return;}float size=getScaled_size();vec2 pos=vec2(getScaled_x(),getScaled_y())+getDxDy();gl_Position=unitToNdc(applySampleFacet(pos));float strokeWidth=getScaled_strokeWidth();float diameter=sqrt(size)*uScaleFactor*semanticThresholdFactor;float opacity=uViewOpacity;if(strokeWidth<=0.0||uInwardStroke){float minDiameter=1.0/uDevicePixelRatio;if(diameter<minDiameter){opacity*=pow(diameter/minDiameter,2.5);diameter=minDiameter;}}float fillOpa=getScaled_fillOpacity()*opacity;float strokeOpa=getScaled_strokeOpacity()*opacity;vShape=getScaled_shape();bool circle=vShape==0.0;if(vShape>TICK_UP&&vShape<=TICK_LEFT){shapeAngle=(vShape-TICK_UP)*90.0;vShape=TICK_UP;}else if(vShape>TRIANGLE_UP&&vShape<=TRIANGLE_LEFT){shapeAngle=(vShape-TRIANGLE_UP)*90.0;vShape=TRIANGLE_UP;}float angleInDegrees=getScaled_angle();float angle=-(shapeAngle+angleInDegrees)*PI/180.0;float sinTheta=sin(angle);float cosTheta=cos(angle);vRotationMatrix=mat2(cosTheta,sinTheta,-sinTheta,cosTheta);float roomForRotation=circle ? 1.0 : sin(mod(angle,PI/2.0)+PI/4.0)/sin(PI/4.0);float aaPadding=1.0/uDevicePixelRatio;float rotationPadding=(diameter*roomForRotation)-diameter;float strokePadding=uInwardStroke ? 0.0 : strokeWidth*(circle ? 1.0 : sqrt(3.0));float padding=rotationPadding+strokePadding+aaPadding;gl_PointSize=max((diameter+padding),uPickingEnabled ? uMinPickingSize : 0.0)*uDevicePixelRatio;vRadius=diameter/2.0;vRadiusWithPadding=vRadius+padding/2.0;vHalfStrokeWidth=strokeWidth/2.0;vFillColor=vec4(getScaled_fill()*fillOpa,fillOpa);vStrokeColor=vec4(getScaled_stroke()*strokeOpa,strokeOpa);setupPicking();}`,
|
|
457
|
+
}void main(void){float shapeAngle=0.0;float semanticThresholdFactor=isPointSelected()? 1.0: computeSemanticThresholdFactor();if(semanticThresholdFactor<=0.0){gl_PointSize=0.0;gl_Position=vec4(100.0,0.0,0.0,0.0);return;}float size=getScaled_size();vec2 pos=vec2(getScaled_x(),getScaled_y())+getDxDy();gl_Position=unitToNdc(applySampleFacet(pos));float strokeWidth=getScaled_strokeWidth();float diameter=sqrt(size)*uScaleFactor*semanticThresholdFactor;float opacity=uViewOpacity;if(strokeWidth<=0.0||uInwardStroke){float minDiameter=1.0/uDevicePixelRatio;if(diameter<minDiameter){opacity*=pow(diameter/minDiameter,2.5);diameter=minDiameter;}}float fillOpa=getScaled_fillOpacity()*opacity;float strokeOpa=getScaled_strokeOpacity()*opacity;vShape=getScaled_shape();bool circle=vShape==0.0;if(vShape>TICK_UP&&vShape<=TICK_LEFT){shapeAngle=(vShape-TICK_UP)*90.0;vShape=TICK_UP;}else if(vShape>TRIANGLE_UP&&vShape<=TRIANGLE_LEFT){shapeAngle=(vShape-TRIANGLE_UP)*90.0;vShape=TRIANGLE_UP;}float angleInDegrees=getScaled_angle();float angle=-(shapeAngle+angleInDegrees)*PI/180.0;float sinTheta=sin(angle);float cosTheta=cos(angle);vRotationMatrix=mat2(cosTheta,sinTheta,-sinTheta,cosTheta);float roomForRotation=circle ? 1.0 : sin(mod(angle,PI/2.0)+PI/4.0)/sin(PI/4.0);float aaPadding=1.0/uDevicePixelRatio;float rotationPadding=(diameter*roomForRotation)-diameter;float strokePadding=uInwardStroke ? 0.0 : strokeWidth*(circle ? 1.0 : sqrt(3.0));float padding=rotationPadding+strokePadding+aaPadding;gl_PointSize=max((diameter+padding),uPickingEnabled ? uMinPickingSize : 0.0)*uDevicePixelRatio;vRadius=diameter/2.0;vRadiusWithPadding=vRadius+padding/2.0;vHalfStrokeWidth=strokeWidth/2.0;vFillColor=vec4(getScaled_fill()*fillOpa,fillOpa);vStrokeColor=vec4(getScaled_stroke()*strokeOpa,strokeOpa);setupPicking();}`,m4="const lowp vec4 white=vec4(1.0);const lowp vec4 black=vec4(0.0,0.0,0.0,1.0);flat in float vRadius;flat in float vRadiusWithPadding;flat in lowp vec4 vFillColor;flat in lowp vec4 vStrokeColor;flat in lowp float vShape;flat in lowp float vHalfStrokeWidth;flat in mat2 vRotationMatrix;out lowp vec4 fragColor;const float CIRCLE=0.0;const float SQUARE=1.0;const float CROSS=2.0;const float DIAMOND=3.0;const float TRIANGLE_UP=4.0;const float TICK_UP=8.0;float circle(vec2 p,float r){return length(p)-r;}float square(vec2 p,float r){p=abs(p);return max(p.x,p.y)-r;}float tickUp(vec2 p,float r){float halfR=r*0.5;p.y+=halfR;p=abs(p);return max(p.x-r*0.15,p.y-halfR);}float equilateralTriangle(vec2 p,float r){p.y=-p.y;float k=sqrt(3.0);float kr=k*r;p.y-=kr/2.0;return max((abs(p.x)*k+p.y)/2.0,-p.y-kr);}float crossShape(vec2 p,float r){p=abs(p);vec2 b=vec2(0.4,1.0)*r;vec2 v=abs(p)-b.xy;vec2 h=abs(p)-b.yx;return min(max(v.x,v.y),max(h.x,h.y));}float diamond(vec2 p,float r){p=abs(p);return(max(abs(p.x-p.y),abs(p.x+p.y))-r)/sqrt(2.0);}void main(){float d;vec2 p=vRotationMatrix*(2.0*gl_PointCoord-1.0)*vRadiusWithPadding;float r=vRadius;if(vShape==CIRCLE){d=circle(p,r);}else if(vShape==SQUARE){d=square(p,r);}else if(vShape==CROSS){d=crossShape(p,r);}else if(vShape==DIAMOND){d=diamond(p,r);}else if(vShape==TRIANGLE_UP){d=equilateralTriangle(p,r);}else if(vShape==TICK_UP){d=tickUp(p,r);}else{d=0.0;}if(!uPickingEnabled){lowp vec4 fillColor=mix(vFillColor,white,-d*uGradientStrength/vRadius);fragColor=distanceToColor(d+(uInwardStroke ? vHalfStrokeWidth : 0.0),fillColor,vStrokeColor,vec4(0.0),vHalfStrokeWidth);}else if(d-vHalfStrokeWidth<=0.0){fragColor=vPickingColor;}else{discard;}}",w4=`layout(std140)uniform Mark{/***The stroke should only grow inwards,e.g,the diameter/outline is not affected by the stroke width.*Thus,a point that has a zero size has no visible stroke. This allows strokes to be used with*geometric zoom,etc.*/uniform bool uInwardStroke;uniform float uMinPickingSize;uniform mediump float uScaleFactor;uniform mediump float uZoomLevel;uniform highp float uSemanticThreshold;uniform mediump float uGradientStrength;
|
|
458
458
|
#pragma markUniforms
|
|
459
|
-
};`;class
|
|
459
|
+
};`;class sm extends Qe{constructor(e){super(e),this.params=e,this.k=e.size||500,this.reset()}reset(){super.reset(),this.reservoir=[],this.W=void 0,this.ingester=this._initialIngester}_initialIngester(e){this.reservoir.push(e),this.reservoir.length==this.k&&(this.W=Math.exp(Math.log(Math.random())/this.k),this.i=this.k,this.next=this.i,this.ingester=this._finalIngester,this._setNextStop())}_finalIngester(e){++this.i==this.next&&(this.reservoir[Math.floor(Math.random()*this.k)]=e,this.W*=Math.exp(Math.log(Math.random())/this.k),this._setNextStop())}_setNextStop(){this.next+=Math.floor(Math.log(Math.random())/Math.log(1-this.W))+1}handle(e){this.ingester(e)}complete(){for(const e of this.reservoir)this._propagate(e);super.complete()}}function y4(t,e,n){const i=new sm({type:"sample",size:t});for(const r of e)i.handle(n(r));return i.complete(),i.reservoir}const C4={};class E4 extends zs{#e=()=>0;constructor(e){super(e),this.augmentDefaultProperties({x:.5,y:.5,color:"#4c78a8",filled:!0,opacity:1,size:100,semanticScore:0,shape:"circle",strokeWidth:2,fillGradientStrength:0,dx:0,dy:0,angle:0,sampleFacetPadding:.1,semanticZoomFraction:.02,minPickingSize:2});const n=this.properties.semanticZoomFraction;if(n!=null)if(Ee(n)){const i=this.unitView.paramRuntime.watchExpression(n.expr,()=>this.getContext().animator.requestRender());this.#e=i}else this.#e=()=>n;"geometricZoomBound"in this.properties&&console.warn('geometricZoomBound is deprecated. Use something like the following instead: "size": { "expr": "min(0.5 * pow(zoomLevel, 2), 200)" }.')}getAttributes(){return["uniqueId","facetIndex","x","y","size","semanticScore","shape","strokeWidth","dx","dy","fill","stroke","fillOpacity","strokeOpacity","angle"]}getSupportedChannels(){return[...super.getSupportedChannels(),"size","semanticScore","shape","strokeWidth","dx","dy","fill","stroke","fillOpacity","strokeOpacity","angle"]}getDefaultEncoding(){return{...super.getDefaultEncoding(),...C4}}fixEncoding(e){return im(e,this.properties.filled),rm(e,this.properties.filled),delete e.color,delete e.opacity,e}initializeData(){super.initializeData();const e=this.encoders.semanticScore?.dataAccessor?.asNumberAccessor();e&&(this.sampledSemanticScores=Float32Array.from(y4(1e4,this.unitView.getCollector().getData(),e)),this.sampledSemanticScores.sort((n,i)=>n-i))}async initializeGraphics(){await super.initializeGraphics(),this.createAndLinkShaders(p4,m4,[w4])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties;this.registerMarkUniformValue("uInwardStroke",e.inwardStroke,n=>!!n),this.registerMarkUniformValue("uGradientStrength",e.fillGradientStrength),this.registerMarkUniformValue("uMinPickingSize",e.minPickingSize)}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const n=e.getItemCount(),i=new r4({encoders:this.encoders,attributes:this.getAttributes(),numItems:Math.max(n,this.properties.minBufferSize||0)});i.addBatches(e.facetBatches);const r=i.toArrays();this.rangeMap.migrateEntries(r.rangeMap),this.updateBufferInfo(r)}#t(){const e=Math.pow(2,this.properties.geometricZoomBound||0);return Math.pow(Math.min(1,this.unitView.getZoomLevel()/e),1/3)}getSemanticThreshold(){if(this.sampledSemanticScores){const e=Math.max(0,1-this.#e()*this.unitView.getZoomLevel());if(e<=0)return-1/0;if(e>=1)return 1/0;{const n=this.sampledSemanticScores;return Kh(n,e)}}else return-1}prepareRender(e){const n=super.prepareRender(e);return n.push(()=>{xs(this.markUniformInfo,{uScaleFactor:this.#t(),uSemanticThreshold:this.getSemanticThreshold()}),this.markUniformsAltered=!0}),n.push(()=>this.bindOrSetMarkUniformBlock()),n.push(()=>ai(this.gl,this.programInfo,this.vertexArrayInfo)),n}render(e){const n=this.gl;return this.createRenderCallback((i,r)=>{r&&Sa(n,this.vertexArrayInfo,n.POINTS,r,i)},e)}}const I4="const int BUTT=0;const int SQUARE=1;const int ROUND=2;in float pos;in float side;flat out vec4 vColor;flat out float vSize;out float vNormalLengthInPixels;out highp vec2 vPosInPixels;void main(void){float pixelSize=1.0/uDevicePixelRatio;float size=getScaled_size();float opacity=getScaled_opacity()*uViewOpacity;if(size<pixelSize){opacity*=size/pixelSize;size=pixelSize;}vec2 a=applySampleFacet(vec2(getScaled_x(),getScaled_y()));vec2 b=applySampleFacet(vec2(getScaled_x2(),getScaled_y2()));vec2 tangent=b-a;float offset=0.0;float relativeDiff=0.0;if(uMinLength>0.0||uStrokeCap!=BUTT){float len=length(tangent*uViewportSize);float diff=max(0.0,uMinLength-len);if(uStrokeCap!=BUTT){diff+=size;}relativeDiff=diff/len;offset=relativeDiff*(pos-0.5);}vec2 p=pos<1.0? a+tangent*(pos+offset): b+tangent*offset;float aaPadding=pixelSize;vec2 normal=normalize(vec2(-tangent.y,tangent.x)/uViewportSize);p+=normal*side*(size+aaPadding)/uViewportSize;gl_Position=unitToNdc(p);vColor=vec4(getScaled_color()*opacity,opacity);vSize=size;vNormalLengthInPixels=side*(size+aaPadding);vPosInPixels=vec2(pos,(1.0-pos))*(1.0+relativeDiff)*length(tangent*uViewportSize)-vec2(uStrokeCap!=BUTT ? size/2.0 : 0.0);setupPicking();}",b4="const int BUTT=0;const int SQUARE=1;const int ROUND=2;uniform sampler2D uDashTexture;flat in vec4 vColor;flat in float vSize;in vec2 vPosInPixels;in float vNormalLengthInPixels;out lowp vec4 fragColor;void main(void){float dpr=uDevicePixelRatio;float distanceFromEnd=-min(vPosInPixels[0],vPosInPixels[1]);float distance;if(distanceFromEnd>0.0&&uStrokeCap==ROUND){distance=length(vec2(distanceFromEnd,vNormalLengthInPixels));}else{distance=abs(vNormalLengthInPixels);}float opacity=clamp(((vSize/2.0-distance)*dpr),-0.5,0.5)+0.5;if(uDashTextureSize>0.0){float pos=(vPosInPixels[0]+uStrokeDashOffset)*dpr;float floored=floor(pos);vec2 texelPositions=(floored+vec2(0.5,1.5))/dpr/uDashTextureSize;opacity*=mix(texture(uDashTexture,vec2(texelPositions[0],0)).r,texture(uDashTexture,vec2(texelPositions[1],0)).r,clamp((pos-floored),0.0,1.0));}fragColor=vColor*opacity;if(uPickingEnabled){fragColor=vPickingColor;}}",x4=`layout(std140)uniform Mark{uniform mediump float uMinLength;uniform mediump float uDashTextureSize;uniform lowp int uStrokeCap;uniform mediump float uStrokeDashOffset;
|
|
460
460
|
#pragma markUniforms
|
|
461
|
-
};`;class
|
|
461
|
+
};`;class B4 extends zs{constructor(e){super(e),this.dashTextureSize=0,this.augmentDefaultProperties({x2:void 0,y2:void 0,size:1,color:"black",opacity:1,minLength:0,strokeDash:null,strokeDashOffset:0,strokeCap:"butt"})}getAttributes(){return["uniqueId","facetIndex","x","x2","y","y2","size","color","opacity"]}getSupportedChannels(){return[...super.getSupportedChannels(),"x2","y2","size"]}fixEncoding(e){if(!(e.x&&e.y&&e.x2&&e.y2))if(e.x&&e.x2&&!e.y)e.y={value:.5},e.y2=e.y;else if(e.y&&e.y2&&!e.x)e.x={value:.5},e.x2=e.x;else if(e.x&&!e.y)e.y={value:0},e.y2={value:1},e.x2=e.x;else if(e.y&&!e.x)e.x={value:0},e.x2={value:1},e.y2=e.y;else if(e.x&&e.y&&e.y2)e.x2=e.x;else if(e.y&&e.x&&e.x2)e.y2=e.y;else if(e.y&&e.x)if(!e.x2&&pt(e.y)&&e.y.type=="quantitative")e.x2=e.x,e.y2={datum:0};else if(!e.y2&&pt(e.x)&&e.x.type=="quantitative")e.y2=e.y,e.x2={datum:0};else throw new Error("A bug!");else throw new Error("At a minimum, either the x or y channel must be defined in the rule mark's encoding: "+JSON.stringify(e));return e}async initializeGraphics(){await super.initializeGraphics();const e=this.gl,n=v4(this.properties.strokeDash);this.dashTexture=bs(e,{level:0,mag:e.NEAREST,min:e.NEAREST,internalFormat:e.R8,format:e.RED,src:n,height:1}),this.dashTextureSize=n.length,this.createAndLinkShaders(I4,b4,[x4])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties;this.registerMarkUniformValue("uMinLength",e.minLength),this.registerMarkUniformValue("uStrokeCap",e.strokeCap??"butt",n=>["butt","square","round"].indexOf(n)),xs(this.markUniformInfo,{uDashTextureSize:+this.dashTextureSize}),this.markUniformsAltered=!0}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const n=e.getItemCount(),i=new i4({encoders:this.encoders,attributes:this.getAttributes(),numItems:Math.max(n,this.properties.minBufferSize||0)});i.addBatches(e.facetBatches);const r=i.toArrays();this.rangeMap.migrateEntries(r.rangeMap),this.updateBufferInfo(r)}prepareRender(e){const n=super.prepareRender(e);return n.push(()=>this.bindOrSetMarkUniformBlock()),n.push(()=>oi(this.programInfo,{uDashTexture:this.dashTexture})),n.push(()=>ai(this.gl,this.programInfo,this.vertexArrayInfo)),n}render(e){const n=this.gl;return this.createRenderCallback((i,r)=>Sa(n,this.vertexArrayInfo,n.TRIANGLE_STRIP,r,i),e)}}function v4(t){if(!t)return new Uint8Array(0);if(t.length==0||t.length%2||t.findIndex(s=>Math.round(s)!=s||s<1||s>1e3)>=0)throw new Error("Invalid stroke dash pattern: "+JSON.stringify(t));const e=t.reduce((s,o)=>s+o),n=new Uint8Array(e);let i=!0,r=0;for(let s of t){for(;s;)n[r++]=i&&255||0,s--;i=!i}return n}const S4="flat out vec4 vColor;flat out float vSize;out float vNormalLengthInPixels;flat out float vGamma;const int SHAPE_ARC=0;const int SHAPE_DOME=1;const int SHAPE_DIAGONAL=2;const int SHAPE_LINE=3;const int ORIENT_VERTICAL=0;const int ORIENT_HORIZONTAL=1;float distanceFromLine(vec2 pointOnLine1,vec2 pointOnLine2,vec2 point){vec2 a=point-pointOnLine1;vec2 b=pointOnLine2-pointOnLine1;vec2 proj=dot(a,b)/dot(b,b)*b;return length(a-proj);}bool isInsideViewport(vec2 point,float marginFactor){vec2 margin=uViewportSize*vec2(marginFactor);return point.x>=-margin.x&&point.x<=uViewportSize.x+margin.x&&point.y>=-margin.y&&point.y<=uViewportSize.y+margin.y;}void main(void){float pixelSize=1.0/uDevicePixelRatio;float opacity=getScaled_opacity()*uViewOpacity;vec2 p1,p2,p3,p4;vec2 a=applySampleFacet(vec2(getScaled_x(),getScaled_y()))*uViewportSize;vec2 b=applySampleFacet(vec2(getScaled_x2(),getScaled_y2()))*uViewportSize;if(uShape<=SHAPE_DOME){if(uShape==SHAPE_DOME){vec2 height=vec2(0.0);if(uOrient==ORIENT_VERTICAL){p1=vec2(min(a.x,b.x),b.y);p4=vec2(max(a.x,b.x),b.y);height=vec2(0.0,a.y-b.y);if(uClampApex){if(p4.x>0.0){p1.x=max(p1.x,-p4.x);}if(p1.x<uViewportSize.x){p4.x=min(p4.x,2.0*uViewportSize.x-p1.x);}}}else{p1=vec2(b.x,min(a.y,b.y));p4=vec2(b.x,max(a.y,b.y));height=vec2(a.x-b.x,0.0);if(uClampApex){if(p4.y>0.0){p1.y=max(p1.y,-p4.y);}if(p1.y<uViewportSize.y){p4.y=min(p4.y,2.0*uViewportSize.y-p1.y);}}}vec2 controlOffset=height/0.75;p2=p1+controlOffset;p3=p4+controlOffset;}if(uShape==SHAPE_ARC){p1=a;p4=b;vec2 chordVector=p4-p1;vec2 unitChordVector=normalize(chordVector);vec2 chordNormal=vec2(-unitChordVector.y,unitChordVector.x);float chordLength=length(chordVector);if(chordLength>uMaxChordLength){if(isInsideViewport(p1,2.0)){chordLength=uMaxChordLength;p4=p1+unitChordVector*uMaxChordLength;}else if(isInsideViewport(p4,2.0)){chordLength=uMaxChordLength;p1=p4-unitChordVector*uMaxChordLength;}}float height=max(chordLength/2.0*uArcHeightFactor,uMinArcHeight);vec2 controlOffset=chordNormal*height/0.75;p2=p1+controlOffset;p3=p4+controlOffset;}}else if(uShape==SHAPE_DIAGONAL){if(uOrient==ORIENT_VERTICAL){p1=a;p2=vec2(a.x,(a.y+b.y)/2.0);p3=vec2(b.x,(a.y+b.y)/2.0);p4=b;}else{p1=a;p2=vec2((a.x+b.x)/2.0,a.y);p3=vec2((a.x+b.x)/2.0,b.y);p4=b;}}else if(uShape==SHAPE_LINE){p1=a;p2=(a+b)/2.0;p3=p2;p4=b;}vec2 strip=vec2(float(gl_VertexID/2)/float(uSegmentBreaks),float(gl_VertexID % 2)-0.5);float t=smoothstep(0.0,1.0,strip.x);vec2 C1=p4-3.0*p3+3.0*p2-p1;vec2 C2=3.0*p3-6.0*p2+3.0*p1;vec2 C3=3.0*p2-3.0*p1;vec2 C4=p1;vec2 p;if(t==0.0){p=p1;}else if(t==1.0){p=p4;}else{p=C1*t*t*t+C2*t*t+C3*t+C4;}vec2 tangent=normalize(3.0*C1*t*t+2.0*C2*t+C3);vec2 normal=vec2(-tangent.y,tangent.x);float size=getScaled_size();if(size<pixelSize){opacity*=size/pixelSize;size=pixelSize;}float paddedSize=uPickingEnabled? max(size,uMinPickingSize): size+pixelSize;vNormalLengthInPixels=strip.y*paddedSize;if(uShape==SHAPE_ARC&&uArcFadingDistance[0]>0.0&&uArcFadingDistance[1]>0.0&&(!uNoFadingOnPointSelection||!isPointSelected())){float d=distanceFromLine(p1,p4,p);float distanceOpacity=smoothstep(uArcFadingDistance[1],uArcFadingDistance[0],d);opacity*=distanceOpacity;if(distanceOpacity<=0.0){vNormalLengthInPixels=0.0;}}p+=normal*vNormalLengthInPixels;gl_Position=pixelsToNdc(p);vec3 color=getScaled_color();vColor=vec4(color*opacity,opacity);vGamma=getGammaForColor(color);vSize=paddedSize;setupPicking();}",Q4="flat in vec4 vColor;flat in float vSize;in float vNormalLengthInPixels;flat in float vGamma;out lowp vec4 fragColor;void main(void){float dpr=uDevicePixelRatio;float distance=abs(vNormalLengthInPixels);float opacity=clamp(((vSize/2.0-distance)*dpr),0.0,1.0);opacity=pow(opacity,vGamma);fragColor=vColor*opacity;if(uPickingEnabled){fragColor=vPickingColor;}}",D4=`layout(std140)uniform Mark{uniform float uArcHeightFactor;uniform float uMinArcHeight;uniform float uMinPickingSize;uniform int uShape;uniform int uOrient;uniform bool uClampApex;uniform float uMaxChordLength;uniform vec2 uArcFadingDistance;uniform bool uNoFadingOnPointSelection;uniform int uSegmentBreaks;
|
|
462
462
|
#pragma markUniforms
|
|
463
|
-
};`,
|
|
463
|
+
};`,k4=["arc","dome","diagonal","line"],F4=["vertical","horizontal"];class R4 extends zs{constructor(e){super(e),this.augmentDefaultProperties({x:0,x2:void 0,y:0,y2:void 0,size:1,color:"black",opacity:1,segments:101,arcHeightFactor:1,minArcHeight:1.5,minPickingSize:3,clampApex:!1,maxChordLength:5e4,arcFadingDistance:!1,noFadingOnPointSelection:!0,linkShape:"arc",orient:"vertical"}),this._baseInstanceExt=this.gl.getExtension("WEBGL_draw_instanced_base_vertex_base_instance")}get defaultHitTestMode(){return"endpoints"}getAttributes(){return["uniqueId","facetIndex","x","x2","y","y2","size","color","opacity"]}getSupportedChannels(){return[...super.getSupportedChannels(),"x2","y2","size"]}fixEncoding(e){return e.x2||(pt(e.x)?e.x2={datum:0}:e.x2=e.x),e.y2||(pt(e.y)?e.y2={datum:0}:e.y2=e.y),e}async initializeGraphics(){await super.initializeGraphics(),this.createAndLinkShaders(S4,Q4,[D4])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties;this.registerMarkUniformValue("uArcFadingDistance",e.arcFadingDistance,n=>n||[0,0]),this.registerMarkUniformValue("uArcHeightFactor",e.arcHeightFactor),this.registerMarkUniformValue("uMinArcHeight",e.minArcHeight),this.registerMarkUniformValue("uMinPickingSize",e.minPickingSize),this.registerMarkUniformValue("uShape",e.linkShape,n=>k4.indexOf(n)),this.registerMarkUniformValue("uOrient",e.orient,n=>F4.indexOf(n)),this.registerMarkUniformValue("uClampApex",e.clampApex,n=>!!n),this.registerMarkUniformValue("uMaxChordLength",e.maxChordLength),this.registerMarkUniformValue("uSegmentBreaks",e.segments,n=>n),this.registerMarkUniformValue("uNoFadingOnPointSelection",e.noFadingOnPointSelection,n=>!!n)}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const n=e.getItemCount(),i=new s4({encoders:this.encoders,attributes:this.getAttributes(),numItems:n});i.addBatches(e.facetBatches);const r=i.toArrays();this.rangeMap.migrateEntries(r.rangeMap),this.arrays=Object.fromEntries(Object.entries(r.arrays).map(([s,o])=>[s,{...o,data:void 0}])),this.updateBufferInfo(r)}prepareRender(e){const n=super.prepareRender(e);return n.push(()=>this.bindOrSetMarkUniformBlock()),this._baseInstanceExt?n.push(()=>ai(this.gl,this.programInfo,this.vertexArrayInfo)):n.push(()=>this.gl.bindVertexArray(null)),n}render(e){const n=this.gl,i=()=>(this.markUniformInfo.uniforms.uSegmentBreaks[0]+1)*2;return this._baseInstanceExt?this.createRenderCallback((r,s)=>{this._baseInstanceExt.drawArraysInstancedBaseInstanceWEBGL(n.TRIANGLE_STRIP,0,i(),s,r)},e):this.createRenderCallback((r,s)=>{for(const o of Object.entries(this.bufferInfo.attribs)){const[a,l]=o;l.buffer&&l.numComponents&&l.divisor&&(l.offset=r*this.arrays[a].numComponents*this.bytesPerElement.get(a))}ai(n,this.programInfo,this.bufferInfo),n.drawArraysInstanced(n.TRIANGLE_STRIP,0,i(),s)},e)}}const N4=`in mediump vec2 vertexCoord;in lowp vec2 textureCoord;in float width;out vec2 vTexCoord;out float vEdgeFadeOpacity;flat out vec4 vColor;flat out float vSlope;flat out float vGamma;struct RangeResult{float pos;float scale;};float minValue(vec4 v){return min(min(v.x,v.y),min(v.z,v.w));}float maxValue(vec4 v){return max(max(v.x,v.y),max(v.z,v.w));}/***All measures are in[0,1]*/RangeResult positionInsideRange(float a,float b,float width,float padding,int align,bool flush){float span=b-a;float paddedWidth=width+2.0*padding;if(a>1.0||b<0.0){return RangeResult(0.0,0.0);}float extra=max(0.0,span-paddedWidth);float pos;if(align==0){float centre=a+b;if(flush){float leftOver=max(0.0,paddedWidth-centre);centre+=min(leftOver,extra);float rightOver=max(0.0,paddedWidth+centre-2.0);centre-=min(rightOver,extra);}pos=centre/2.0;}else if(align<0){float edge=a;if(flush){float over=max(0.0,-edge);edge+=min(over,extra);}pos=edge+padding;}else{float edge=b;if(flush){float over=max(0.0,edge-1.0);edge-=min(over,extra);}pos=edge-padding;}float scale=clamp((span-padding)/paddedWidth,0.0,1.0);return RangeResult(pos,scale);}vec2 calculateRotatedDimensions(float width,mat2 rotationMatrix){vec2 a=abs(rotationMatrix*vec2(width/2.0,0.5));vec2 b=abs(rotationMatrix*vec2(width/2.0,-0.5));return vec2(max(a.x,b.x),max(a.y,b.y))*2.0;}ivec2 fixAlignForAngle(ivec2 align,float angleInDegrees){float a=mod(angleInDegrees+45.0,360.0);int x=align.x;int y=-align.y;if(a<90.0){return ivec2(x,y);}else if(a<180.0){return ivec2(y,-x);}else if(a<270.0){return ivec2(-x,y);}else{return ivec2(-y,x);}}void main(void){float opacity=getScaled_opacity()*uViewOpacity;vec2 size=vec2(getScaled_size());float x=getScaled_x();float y=getScaled_y();float scale=1.0;float angleInDegrees=getScaled_angle();float angle=-angleInDegrees*PI/180.0;float sinTheta=sin(angle);float cosTheta=cos(angle);mat2 rotationMatrix=mat2(cosTheta,sinTheta,-sinTheta,cosTheta);vec2 flushSize=calculateRotatedDimensions(width,rotationMatrix);
|
|
464
464
|
#if defined(x2_DEFINED) || defined(y2_DEFINED)
|
|
465
465
|
ivec2 align=fixAlignForAngle(uAlign,angleInDegrees);
|
|
466
466
|
#else
|
|
@@ -473,9 +473,9 @@ vec2 pos=applySampleFacet(vec2(x,y));
|
|
|
473
473
|
#ifdef y2_DEFINED
|
|
474
474
|
float y2=getScaled_y2();vec2 pos2=applySampleFacet(vec2(x,y2));if(uLogoLetter){size.y=(pos2.y-pos.y)*uViewportSize.y;pos.y+=(pos2.y-pos.y)/2.0;}else{RangeResult result=positionInsideRange(min(pos.y,pos2.y),max(pos.y,pos2.y),size.y*scale*flushSize.y/uViewportSize.y,uPaddingY/uViewportSize.y,align.y,uFlushY);pos.y=result.pos;scale*=result.scale;}
|
|
475
475
|
#endif
|
|
476
|
-
if(scale<1.0){if(uSqueeze){vec2 scaleFadeExtent=vec2(3.0,6.0)/size;if(scale<scaleFadeExtent[0]){gl_Position=vec4(0.0);return;}size*=scale;opacity*=linearstep(scaleFadeExtent[0],scaleFadeExtent[1],scale);}else if(scale<1.0){gl_Position=vec4(0.0);return;}}vec2 charPos=rotationMatrix*(vertexCoord*size+uD);vec2 unitPos=pos+charPos/uViewportSize;gl_Position=unitToNdc(unitPos);vSlope=max(1.0,min(size.x,size.y)/uSdfNumerator*uDevicePixelRatio);vec3 color=getScaled_color();vColor=vec4(color*opacity,opacity);vGamma=getGammaForColor(color);vTexCoord=textureCoord;if(maxValue(uViewportEdgeFadeDistance)>-pow(10.0,10.0)){vEdgeFadeOpacity=minValue(((vec4(1.0,1.0,0.0,0.0)+vec4(-1.0,-1.0,1.0,1.0)*unitPos.yxyx)*uViewportSize.yxyx-uViewportEdgeFadeDistance)/uViewportEdgeFadeWidth);}else{vEdgeFadeOpacity=1.0;}setupPicking();}`,
|
|
476
|
+
if(scale<1.0){if(uSqueeze){vec2 scaleFadeExtent=vec2(3.0,6.0)/size;if(scale<scaleFadeExtent[0]){gl_Position=vec4(0.0);return;}size*=scale;opacity*=linearstep(scaleFadeExtent[0],scaleFadeExtent[1],scale);}else if(scale<1.0){gl_Position=vec4(0.0);return;}}vec2 charPos=rotationMatrix*(vertexCoord*size+uD);vec2 unitPos=pos+charPos/uViewportSize;gl_Position=unitToNdc(unitPos);vSlope=max(1.0,min(size.x,size.y)/uSdfNumerator*uDevicePixelRatio);vec3 color=getScaled_color();vColor=vec4(color*opacity,opacity);vGamma=getGammaForColor(color);vTexCoord=textureCoord;if(maxValue(uViewportEdgeFadeDistance)>-pow(10.0,10.0)){vEdgeFadeOpacity=minValue(((vec4(1.0,1.0,0.0,0.0)+vec4(-1.0,-1.0,1.0,1.0)*unitPos.yxyx)*uViewportSize.yxyx-uViewportEdgeFadeDistance)/uViewportEdgeFadeWidth);}else{vEdgeFadeOpacity=1.0;}setupPicking();}`,M4="uniform sampler2D uTexture;in vec2 vTexCoord;in float vEdgeFadeOpacity;flat in vec4 vColor;flat in float vSlope;flat in float vGamma;out lowp vec4 fragColor;float median(float r,float g,float b){return max(min(r,g),min(max(r,g),b));}float getDist(vec2 uv){vec3 c=texture(uTexture,uv).rgb;return 1.0-median(c.r,c.g,c.b);}/***Calculates the super-sampled distance to the edge.*This is used to avoid aliasing when rendering small text,*as mip-mapping cannot be used here.*The distance is averaged over a grid of n x n samples.*/float getSuperDist(vec2 uv){vec2 dx=dFdx(uv);vec2 dy=dFdy(uv);float n=2.0;float sum=0.0;for(float x=0.5;x<n;x++){for(float y=0.5;y<n;y++){sum+=getDist(uv+x/n*dx+y/n*dy);}}return sum/(n*n);}void main(){float sigDist=getSuperDist(vTexCoord);float slope=vSlope;if(uLogoLetter){slope=0.7/length(vec2(dFdy(sigDist),dFdx(sigDist)));}float opa=clamp((sigDist-0.5)*slope+0.5,0.0,1.0);opa*=clamp(vEdgeFadeOpacity,0.0,1.0);opa=pow(opa,vGamma);fragColor=vColor*opa;if(uPickingEnabled){fragColor=vPickingColor;}}",T4=`layout(std140)uniform Mark{uniform mediump float uSdfNumerator;uniform mediump vec2 uD;uniform mediump vec4 uViewportEdgeFadeWidth;uniform mediump vec4 uViewportEdgeFadeDistance;uniform bool uSqueeze;uniform bool uLogoLetter;uniform lowp ivec2 uAlign;uniform mediump float uPaddingX;uniform bool uFlushX;uniform mediump float uPaddingY;uniform bool uFlushY;
|
|
477
477
|
#pragma markUniforms
|
|
478
|
-
};`,
|
|
478
|
+
};`,P4={left:-1,center:0,right:1},L4={top:-1,middle:0,bottom:1,alphabetic:1};class O4 extends zs{constructor(e){super(e),this.augmentDefaultProperties({x:.5,y:.5,x2:void 0,y2:void 0,text:"",size:11,color:"black",opacity:1,font:void 0,fontStyle:void 0,fontWeight:void 0,align:"center",baseline:"middle",dx:0,dy:0,angle:0,fitToBand:!1,squeeze:!0,paddingX:0,paddingY:0,flushX:!0,flushY:!0,logoLetters:!1,viewportEdgeFadeWidthTop:0,viewportEdgeFadeWidthRight:0,viewportEdgeFadeWidthBottom:0,viewportEdgeFadeWidthLeft:0,viewportEdgeFadeDistanceTop:-1/0,viewportEdgeFadeDistanceRight:-1/0,viewportEdgeFadeDistanceBottom:-1/0,viewportEdgeFadeDistanceLeft:-1/0}),this.font=this.properties.font?e.context.fontManager.getFont(this.properties.font,this.properties.fontStyle,this.properties.fontWeight):e.context.fontManager.getDefaultFont(),this.setupExprRefsNeedingGraphicsUpdate(["text","fitToBand","logoLetters"])}getAttributes(){return["uniqueId","facetIndex","x","x2","y","y2","color","size","opacity","angle"]}getSupportedChannels(){return[...super.getSupportedChannels(),"x2","y2","size","text","angle"]}fixEncoding(e){for(const n of ii)this.properties.fitToBand&&Au(e,n);return e}async initializeGraphics(){await super.initializeGraphics(),this.createAndLinkShaders(N4,M4,[T4])}finalizeGraphicsInitialization(){super.finalizeGraphicsInitialization(),this.gl.useProgram(this.programInfo.program);const e=this.properties,n=this.font.metrics.common.base*.35*(this.properties.logoLetters?.5:1);this.registerMarkUniformValue("uPaddingX",e.paddingX),this.registerMarkUniformValue("uPaddingY",e.paddingY),this.registerMarkUniformValue("uFlushX",e.flushX,i=>!!i),this.registerMarkUniformValue("uFlushY",e.flushY,i=>!!i),this.registerMarkUniformValue("uSqueeze",e.squeeze,i=>!!i),xs(this.markUniformInfo,{uAlign:[P4[e.align],L4[e.baseline]],uD:[e.dx,-e.dy],uLogoLetter:!!e.logoLetters,uSdfNumerator:n,uViewportEdgeFadeWidth:[e.viewportEdgeFadeWidthTop,e.viewportEdgeFadeWidthRight,e.viewportEdgeFadeWidthBottom,e.viewportEdgeFadeWidthLeft],uViewportEdgeFadeDistance:[e.viewportEdgeFadeDistanceTop,e.viewportEdgeFadeDistanceRight,e.viewportEdgeFadeDistanceBottom,e.viewportEdgeFadeDistanceLeft]})}updateGraphicsData(){const e=this.unitView.getCollector();if(!e){console.debug("No collector");return}const n=e.getData(),i=this.encoding,r=this.encoders.text;let s=0;const o="format"in i.text?ze(i.text.format):c=>c;for(const c of n){const f=o(r(c)),u=le(f)?f:f===null?"":""+f;s+=u&&u.length||0}const a=new o4({encoders:this.encoders,attributes:this.getAttributes(),properties:this.properties,fontMetrics:this.font.metrics,numCharacters:Math.max(s,this.properties.minBufferSize||1024)});a.addBatches(e.facetBatches);const l=a.toArrays();this.rangeMap.migrateEntries(l.rangeMap),this.updateBufferInfo(l)}prepareRender(e){const n=super.prepareRender(e);return n.push(()=>{oi(this.programInfo,{uTexture:this.font.texture})}),n.push(()=>this.bindOrSetMarkUniformBlock()),n.push(()=>ai(this.gl,this.programInfo,this.vertexArrayInfo)),n}render(e){const n=this.gl;return this.createRenderCallback((i,r)=>Sa(n,this.vertexArrayInfo,n.TRIANGLES,r,i),e)}}const om=1;function hu(){let t=[0,1],e=[0,1],n=1,i=1,r=0,s=0,o=.5,a=0;const c=f=>(f+o-t[0])/n*i+e[0];return c.invert=f=>(f-e[0])/i*n+t[0]-o,c.domain=function(f){if(arguments.length){t=v2(f),n=t[1]-t[0];const u=t[0]===0&&t[0]===0;if(n<om&&!u){n=om;const h=(t[0]+t[1])/2;t[0]=h-n/2,t[1]=h+n/2}return c}else return t.slice()},c.range=function(f){return arguments.length?(e=[...f],i=e[1]-e[0],c):e},c.numberingOffset=function(f){return arguments.length?(a=f,c):a},c.padding=function(f){return arguments.length?(s=f,r=Math.min(1,f),c):r},c.paddingInner=function(f){return arguments.length?(r=Math.min(1,f),c):r},c.paddingOuter=function(f){return arguments.length?(s=f,c):s},c.align=function(f){return arguments.length?(o=Math.max(0,Math.min(1,f)),c):o},c.step=()=>i/n,c.bandwidth=()=>c.step(),c.ticks=f=>{const u=c.align(),h=c.numberingOffset();return _o(t[0]-u+h,t[1]-u+h,Math.min(f,Math.ceil(n))).filter(Number.isInteger).map(A=>A-a)},c.tickFormat=(f,u)=>{if(u)throw new Error("Index scale's tickFormat does not support a specifier!");const A=$n(t[0],t[1],Math.min(f,Math.ceil(n)))<1e5?ze(","):ze(".3s");return d=>A(d+a)},c.copy=()=>hu().domain(t).range(e).paddingInner(r).paddingOuter(s).numberingOffset(a),c}const du=ze(",d");function U4(t){return t.chrom+":"+du(Math.floor(t.pos+1))}function _4(t,e){return t.chrom+":"+du(Math.floor(t.pos+1))+"-"+(t.chrom!=e.chrom?e.chrom+":":"")+du(Math.ceil(e.pos))}const am={dm6:`chr3R 32079331
|
|
479
479
|
chr3L 28110227
|
|
480
480
|
chr2R 25286936
|
|
481
481
|
chrX 23542271
|
|
@@ -596,24 +596,24 @@ chr18 90702639
|
|
|
596
596
|
chr19 61431566
|
|
597
597
|
chrX 171031299
|
|
598
598
|
chrY 91744698
|
|
599
|
-
chrM 16299`};function
|
|
600
|
-
`).map(e=>{const t=e.split(" ");return{name:t[0],size:parseInt(t[1])}})}const CD=/^([A-Za-z]+:)?\/\//;function dr(n,e){if(e&&CD.test(e))return e;const t=typeof n=="function"?n():n;if(!t)return e;if(!e)return t;if(/[#?]/.test(t))throw new Error(`Cannot append to a url with query or hash. Append: ${e}, base: ${t}`);return kp(t)+e}function kp(n){const e=n.replace(/[^/]*$/,"");return e===""?void 0:e.endsWith("://")?n+"/":e}class yD{constructor(e){if(this.config={name:"custom",...e},"baseUrl"in e)throw new Error("The `baseUrl` property in genome config has been removed in GenomeSpy v0.52.0. Use `url` instead. See https://genomespy.app/docs/genomic-data/genomic-coordinates/.");if(!Wu(e))throw new Error("Not a genome configuration: "+JSON.stringify(e));if(this.chromosomes=[],this.cumulativeChromPositions=new Map,this.chromosomesByName=new Map,this.startByIndex=[],this.totalSize=0,Rp(this.config))this.setChromSizes(this.config.contigs);else if(!Xu(this.config)){const t=wD(this.config.name);if(t)this.setChromSizes(t);else throw new Error(`Unknown genome: ${this.config.name}. Please provide contigs or a URL. See https://genomespy.app/docs/genomic-data/genomic-coordinates/.`)}}get name(){return this.config.name}async load(e){if(Xu(this.config))try{const t=dr(e,this.config.url),r=await fetch(t);if(!r.ok)throw new Error(`${r.status} ${r.statusText}`);this.setChromSizes(ID(await r.text()))}catch(t){throw new Error(`Could not load chrom sizes: ${this.config.url}. Reason: ${t.message}`)}}hasChrPrefix(){return this.chromosomes.some(e=>e.name.startsWith("chr"))}setChromSizes(e){let t=0;this.startByIndex=[0];for(let r=0;r<e.length;r++){this.startByIndex.push(t);const i=e[r].size,s={...e[r],continuousStart:t,continuousEnd:t+i,continuousInterval:[t,t+i],index:r,number:r+1,odd:!(r&1)};this.chromosomes.push(s);const o=s.name.replace(/^chr/i,"");for(const a of["chr"+o,"CHR"+o,"Chr"+o,s.number,""+s.number,o,s.name])this.cumulativeChromPositions.set(a,t),this.chromosomesByName.set(a,s);t+=s.size}this.totalSize=t}getExtent(){return[0,this.totalSize]}toContinuous(e,t){let r=this.cumulativeChromPositions.get(e);if(r===void 0)throw new Error("Unknown chromosome/contig: "+e);return r+ +t}toChromosome(e){if(e>this.totalSize)return;e=Math.floor(e);const t=wn(this.startByIndex,e)-1;if(t>0&&t<=this.chromosomes.length)return this.chromosomes[t-1]}toChromosomal(e){const t=this.toChromosome(e);if(t)return{chrom:t.name,pos:Math.floor(e)-t.continuousStart}}getChromosome(e){return this.chromosomesByName.get(e)}formatInterval(e){return mD(...this.toChromosomalInterval(e))}formatLocus(e){const t=this.toChromosomal(e);if(t)return pD(t)}toChromosomalInterval(e){const t=this.toChromosomal(e[0]+.5),r=this.toChromosomal(e[1]-.5);return r.pos+=1,[t,r]}toContinuousInterval(e){let[t,r]=e;return r||(r=t),[this.toContinuous(t.chrom,t.pos??0),this.toContinuous(r.chrom,r.pos??this.chromosomesByName.get(r.chrom)?.size)]}toDiscreteChromosomeIntervals(e){const t=e[0],r=e[1],i=[];if(t.chrom===r.chrom)i.push({chrom:t.chrom,startPos:t.pos,endPos:r.pos});else{const s=this.chromosomes.findIndex(a=>a.name===t.chrom),o=this.chromosomes.findIndex(a=>a.name===r.chrom);i.push({chrom:t.chrom,startPos:t.pos,endPos:this.chromosomes[s].size});for(let a=s+1;a<o;a++)i.push({chrom:this.chromosomes[a].name,startPos:0,endPos:this.chromosomes[a].size});i.push({chrom:r.chrom,startPos:0,endPos:r.pos})}return i}continuousToDiscreteChromosomeIntervals(e){return this.toDiscreteChromosomeIntervals([this.toChromosomal(e[0]),this.toChromosomal(e[1])])}parseInterval(e){const t=e.match(/^(chr[0-9A-Z]+)(?::([0-9,]+)(?:-(?:(chr[0-9A-Z]+):)?([0-9,]+))?)?$/);if(t){const r=t[1];if(t.slice(2).every(a=>a===void 0)){const a=this.getChromosome(r);return a?[a.continuousStart,a.continuousEnd]:void 0}const i=t[3]||r,s=parseInt(t[2].replace(/,/g,"")),o=t[4]!==void 0?parseInt(t[4].replace(/,/g,"")):s;return[this.toContinuous(r,s-1),this.toContinuous(i,o)]}}}function ID(n){return W2(n).map(([e,t])=>({name:e,size:parseInt(t)}))}function Fp(n){return ze(n)&&"chrom"in n}function bD(n){return n.every(Fp)}function Wu(n){return ze(n)&&("name"in n||Xu(n)||Rp(n))}function Xu(n){return Wu(n)&&"url"in n}function Rp(n){return Wu(n)&&"contigs"in n}function ED(){const n=Ku().numberingOffset(1);let e;n.genome=function(r){return arguments.length?(e=r,n):e},n.ticks=r=>{if(!e)return[];const i=n.domain(),s=n.numberingOffset(),[o,a]=[Math.max(i[0],0),Math.min(i[1],e.totalSize-1)].map(u=>e.toChromosome(u)),l=Math.max(1,Xn(i[0],i[1],r)),c=[];for(let u=o.index;u<=a.index;u++){const f=e.chromosomes[u],h=Math.max(f.continuousStart+l,i[0]-(i[0]-f.continuousStart)%l),A=Math.min(f.continuousEnd-l/4,i[1]+1);for(let d=h;d<=A;d+=l){const g=d-s;g>=i[0]&&g<i[1]&&c.push(g)}}return c},n.tickFormat=(r,i)=>{if(!e)return;if(i)throw new Error("Locus scale's tickFormat does not support a specifier!");const s=n.domain(),o=s[1]-s[0],a=n.numberingOffset(),c=Xn(s[0],s[1],Math.min(r,Math.ceil(o)))<1e6?He(","):He(".3s"),u=f=>f-e.toChromosome(f).continuousStart;return f=>c(u(f)+a)};const t=n.copy;return n.copy=()=>{const r=t();let i=e;return r.genome=function(s){return arguments.length?(i=s,r):i},r.genome(e)},n}function xD(n){return n.type=="locus"}function BD(n,e){const t=Ps(n);return t?t.toChromosomal(e):e}function vD(n,e){const t=Ps(n);return t&&Fp(e)?t.toContinuous(e.chrom,e.pos):e}function SD(n,e){const t=Ps(n);return t&&bD(e)?t.toContinuousInterval(e):e}function QD(n,e){const t=Ps(n);return t?t.toChromosomalInterval(e):e}function DD(n){const e=Ps(n);if(!e)throw new Error("No genome has been defined!");return e.getExtent()}function Ps(n){if(n&&"toChromosomal"in n)return n;if(n&&"genome"in n)return n.genome()}function Mp(n,e,t){return Ye(e)&&t!=null&&(e=Math.min(e,~~(Pi(n.domain())/t)||1)),ze(e)&&(e.step,e=e.interval),e}function Np(n,e,t){var r=n.range(),i=Math.floor(r[0]),s=Math.ceil(Et(r));if(i>s&&(r=s,s=i,i=r),e=e.filter(function(a){return a=n(a),i<=a&&a<=s}),t>0&&e.length>1){for(var o=[e[0],Et(e)];e.length>t&&e.length>=3;)e=e.filter(function(a,l){return!(l%2)});e.length<3&&(e=o)}return e}function kD(n,e){return n.bins?Np(n,FD(n.bins,e)):n.ticks?n.ticks(e):n.domain()}function FD(n,e){var t=n.length,r=~~(t/(e||t));return r<2?n.slice():n.filter(function(i,s){return!(s%r)})}function RD(n,e,t){var r=n.tickFormat?n.tickFormat(e,t):t?He(t):String;if(tp(n.type)){var i=ND(t);r=n.bins?i:MD(r,i)}return r}function MD(n,e){return function(t){return n(t)?e(t):""}}function ND(n){var e=Nr(n||",");if(e.precision==null){switch(e.precision=12,e.type){case"%":e.precision-=2;break;case"e":e.precision-=1;break}return TD(He(e),He(".1f")(1)[1])}else return He(e)}function TD(n,e){return function(t){var r=n(t),i=r.indexOf(e),s,o;if(i<0)return r;for(s=PD(r,i),o=s<r.length?r.slice(s):"";--s>i;)if(r[s]!=="0"){++s;break}return r.slice(0,s)+o}}function PD(n,e){var t=n.lastIndexOf("e"),r;if(t>0)return t;for(t=n.length;--t>e;)if(r=n.charCodeAt(t),r>=48&&r<=57)return t+1}const LD="locus",OD="index";var UD=5;function GD(n){const e=n.type;return!n.bins&&(e===ni||e===Es||e===xs)}function Tp(n){return Pe(n)&&![Ht,OD,LD].includes(n)}function Pp(n){return n||{warn:(e,...t)=>console.warn(e,...t)}}var zD=bo(["set","modified","clear","type","scheme","schemeExtent","schemeCount","domain","domainMin","domainMid","domainMax","domainRaw","domainImplicit","nice","zero","bins","range","rangeStep","round","reverse","interpolate","interpolateGamma","zoom","fp64","name"]);function Lp(n,e,t){t=Pp(t);for(const i in n)if(!zD[i]){if(i==="padding"&&Tp(e.type))continue;At(e[i])?e[i](n[i]):t.warn("Unsupported scale property: "+i)}const r=Op(e,n,t);r.domain&&e.domain(r.domain),r.applyOrdinalUnknown&&e.unknown(r.ordinalUnknown),jD(e,n,KD(e,n,r.count))}function HD(n,e){const t=VD(n),r=re(t);if(!r)throw new Error("Unknown scale type: "+t);const i=r();return!n.domain&&Pe(i.type)&&(n.domain=[0,0]),Lp(n,i,e),i}function VD(n){var e=n.type,t="",r;return e===Ht?Ht+"-"+ni:(_D(n)&&(r=n.rawDomain?n.rawDomain.length:n.domain?n.domain.length+ +(n.domainMid!=null):0,t=r===2?Ht+"-":r===3?ri+"-":""),(t+e||ni).toLowerCase())}function _D(n){const e=n.type;return Pe(e)&&e!==qg&&e!==Kg&&(n.scheme||n.range&&n.range.length&&n.range.every(le))}function YD(n){if(!n.copy)return n;const e=n.copy();return e.type==null&&n.type!=null&&(e.type=n.type),e}function Op(n,e,t){if(!n.domain)return{domain:null,count:0,ordinalUnknown:void 0,applyOrdinalUnknown:!1};t=Pp(t);const r=YD(n);var i=JD(r,e.domainRaw,t);if(i>-1)return{domain:r.domain(),count:i,ordinalUnknown:r.type===Bs&&e.domainImplicit?wa:void 0,applyOrdinalUnknown:!1};var s=e.domain,o=r.type,a=e.zero||e.zero===void 0&&GD(r),l,c;return s?(Tp(o)&&e.padding&&s[0]!==Et(s)&&(s=qD(o,s,e.range,e.padding,e.exponent,e.constant)),(a||e.domainMin!=null||e.domainMax!=null||e.domainMid!=null)&&(l=(s=s.slice()).length-1||1,a&&(s[0]>0&&(s[0]=0),s[l]<0&&(s[l]=0)),e.domainMin!=null&&(s[0]=e.domainMin),e.domainMax!=null&&(s[l]=e.domainMax),e.domainMid!=null&&(c=e.domainMid,(c<s[0]||c>s[l])&&t.warn("Scale domainMid exceeds domain min or max.",c),s.splice(l,0,c))),r.domain(Up(o,s,t)),e.nice&&r.nice&&r.nice(e.nice!==!0&&Mp(r,e.nice)||null),{domain:r.domain(),count:s.length,ordinalUnknown:o===Bs&&e.domainImplicit?wa:void 0,applyOrdinalUnknown:o===Bs}):{domain:null,count:0,ordinalUnknown:void 0,applyOrdinalUnknown:!1}}function JD(n,e,t){return e?(n.domain(Up(n.type,e,t)),e.length):-1}function qD(n,e,t,r,i,s){t??=[0,1];var o=Math.abs(Et(t)-t[0]),a=o/(o-2*r),l=n===Nn?LA(e,null,a):n===xs?Pc(e,null,a,.5):n===Es?Pc(e,null,a,i||1):n===Fa?u2(e,null,a,s||1):PA(e,null,a);return e=e.slice(),e[0]=l[0],e[e.length-1]=l[1],e}function Up(n,e,t){if(tp(n)){var r=Math.abs(e.reduce(function(i,s){return i+(s<0?-1:s>0?1:0)},0));r!==e.length&&t.warn("Log scale domain includes zero: "+Oc(e))}return e}function KD(n,e,t){let r=e.bins;if(r&&!ye(r)){const i=(r.start==null||r.stop==null)&&n.domain(),s=r.start==null?i[0]:r.start,o=r.stop==null?Et(i):r.stop,a=r.step;a||Ee("Scale bins parameter missing step property."),r=Ji(s,o+a,a)}return r?n.bins=r:n.bins&&delete n.bins,n.type===Ou&&(r?!e.domain&&!e.domainRaw&&(n.domain(r),t=r.length):n.bins=n.domain()),t}function jD(n,e,t){var r=n.type,i=e.round||!1,s=e.range;if(e.rangeStep!=null)s=WD(r,e,t);else if(e.scheme&&(s=XD(r,e,t),At(s))){if(n.interpolator)return n.interpolator(s);Ee(`Scale type ${r} does not support interpolating color schemes.`)}if(s&&Ma(r))return n.interpolator(Na(Zu(s,e.reverse),e.interpolate,e.interpolateGamma));s&&e.interpolate&&n.interpolate?n.interpolate(np(e.interpolate,e.interpolateGamma)):At(n.round)?n.round(i):At(n.rangeRound)&&n.interpolate(i?Is:Rn),s&&n.range(Zu(s,e.reverse))}function WD(n,e,t){n!==Xg&&n!==Lu&&Ee("Only band and point scales support rangeStep.");var r=(e.paddingOuter!=null?e.paddingOuter:e.padding)||0,i=n===Lu?1:(e.paddingInner!=null?e.paddingInner:e.padding)||0;return[0,e.rangeStep*Tu(t,i,r)]}function XD(n,e,t){var r=e.schemeExtent,i,s;return ye(e.scheme)?s=Na(e.scheme,e.interpolate,e.interpolateGamma):(i=e.scheme.toLowerCase(),s=Gu(i),s||Ee(`Unrecognized scheme name: ${e.scheme}`)),t=n===Wg?t+1:n===Ou?t-1:n===Pu||n===jg?+e.schemeCount||UD:t,Ma(n)?Gp(s,r,e.reverse):At(s)?rQ(Gp(s,r),t):n===Bs?s:s.slice(0,t)}function Gp(n,e,t){return At(n)&&(e||t)?nQ(n,Zu(e||[0,1],t)):n}function Zu(n,e){return e?n.slice().reverse():n}class ZD{#e;#t=new Set;#n;#r;#s;#o;#i=0;constructor({getParamRuntime:e,onRangeChange:t,onDomainChange:r,getGenomeStore:i}){this.#n=e,this.#r=t,this.#s=r,this.#o=i}get scale(){return this.#e}getLocusGenome(){const t=this.#o?.()?.getGenome();if(!t)throw new Error("No genome has been defined!");return t}createScale(e){const t=HD({...this.#a(e),range:void 0});return t.props=e,"unknown"in t&&t.unknown(null),this.#e=t,this.#c(e),this.#l(),this.#u(),this.#e}#c(e){const t=this.#e;if(!t||!xD(t))return;const i=this.#o?.()?.getGenome(e.assembly);if(!i)throw new Error("No genome has been defined!");t.genome(i)}reconfigureScale(e){const t=this.#e;!t||t.type=="null"||(Lp({...this.#a(e),range:void 0},t),t.props=e,this.#l())}withDomainNotificationsSuppressed(e){this.#i+=1;try{e()}finally{this.#i-=1}}#a(e){const t=e,{assembly:r,domainIndexer:i,...s}=t;return s}#l(){const e=this.#e;if(!e)return;const t=e.props;this.#t.forEach(s=>s.invalidate()),this.#t.clear();const r=ek({range:t.range,reverse:t.reverse,createExpression:s=>this.#n().createExpression(s),registerExpr:s=>this.#t.add(s)});if(!r)return;if("values"in r){e.range(r.values);return}const i=()=>e.range(r.evaluate());r.setup(i),i()}#u(){const e=this.#e;if(!e)return;const t=e.range,r=e.domain,i=()=>this.#r?.();$D(e,{onRangeChange:i,onDomainChange:()=>{this.#i>0||this.#s?.()},range:t,domain:r}),i()}dispose(){this.#t.forEach(e=>e.invalidate()),this.#t.clear()}}function $D(n,{onRangeChange:e,onDomainChange:t,range:r,domain:i}){typeof r=="function"&&(n.range=(function(s){if(arguments.length)r(s),e?.();else return r()})),typeof i=="function"&&(n.domain=(function(s){if(arguments.length)i(s),t?.();else return i()}))}function ek({range:n,reverse:e,createExpression:t,registerExpr:r}){if(!n||!ye(n))return null;const i=(s,o)=>o?s.slice().reverse():s;if(n.some(Ie)){let s;return{dynamic:!0,evaluate:()=>i(s.map(l=>l()),e),setup:l=>{s=n.map(c=>{if(Ie(c)){const u=t(c.expr);return u.subscribe(l),r(u),()=>u(null)}return()=>c})}}}return{dynamic:!1,values:i(n,e)}}function Ua(n,e,t){if(t=t||[],n.some(o=>o===null)){if(n.every(o=>o===null))return null;throw console.warn(n),new Error("Cannot merge objects with nulls!")}const r={},i=(o,a)=>o===a||oi(o)&&oi(a)||oi(o)&&a===!0||o===!0&&ze(a)||Array.isArray(o)&&Array.isArray(a)&&o.length===a.length&&o.every((l,c)=>l===a[c]),s=o=>{for(let a in o){const l=o[a];if(!t.includes(a)&&l!==void 0)if(r[a]!==void 0&&!i(r[a],l))console.warn(`Conflicting property ${a} of ${e}: (${JSON.stringify(r[a])} and ${JSON.stringify(o[a])}). Using ${JSON.stringify(r[a])}.`);else{const c=r[a];if(oi(c))oi(l)&&(r[a]=Ua([c,l],a));else if(oi(l)){if(!(c===!0||c===void 0))throw new Error("Bug in merge! Target is: "+c);r[a]=Ua([{},l],a)}else r[a]=l}}};for(const o of n)s(o);return r}function oi(n){return ze(n)&&!Array.isArray(n)}const zp="quantitative",Hp="ordinal",Vp="nominal",Ls="locus",_p="index";function tk(n,e,t){const r={};return t&&(r.zero=!1),ls(n)?r.nice=!t:bn(n)?r.scheme=e==Vp?"tableau10":e==Hp?"blues":"viridis":Jo(n)?r.range=n=="shape"?["circle","square","triangle-up","cross","diamond"]:[]:n=="size"?r.range=[0,400]:n=="angle"&&(r.range=[0,360]),r}function nk(n,e){if(e==_p||e==Ls){if(Cl(n))return e;throw new Error(n+" does not support "+e+" data type. Only positional channels do.")}const t={x:["band","band","linear"],y:["band","band","linear"],size:[void 0,"point","linear"],opacity:[void 0,"point","linear"],fillOpacity:[void 0,"point","linear"],strokeOpacity:[void 0,"point","linear"],color:["ordinal","ordinal","linear"],fill:["ordinal","ordinal","linear"],stroke:["ordinal","ordinal","linear"],strokeWidth:[void 0,void 0,"linear"],shape:["ordinal","ordinal",void 0],dx:[void 0,void 0,"null"],dy:[void 0,void 0,"null"],angle:[void 0,void 0,"linear"],sample:["null",void 0,void 0]},i=["sample"].includes(n)?"null":t[n]?t[n][[Vp,Hp,zp].indexOf(e)]:e==zp?"linear":"ordinal";if(i===void 0)throw new Error('Channel "'+n+'" is not compatible with "'+e+'" data type. Use of a proper scale may be needed.');return i}function rk(n,e){ls(e)&&n.type!=="ordinal"&&(n.range=[0,1]),e=="opacity"&&Pe(n.type)&&(n.clamp=!0)}function ik({channel:n,dataType:e,members:t,isExplicitDomain:r}){const i=Array.from(t).map(a=>a.channelDef.scale).filter(a=>a!==void 0),s=Ua(i,"scale",["domain"]);if(s===null||s.type=="null")return{type:"null"};const o={...tk(n,e,r),...s};return o.type||(o.type=nk(n,e)),n=="y"&&sn(o.type)&&o.reverse==null&&(o.reverse=!0),o.range&&o.scheme&&delete o.scheme,!("zoom"in o)&&[_p,Ls].includes(o.type)&&(o.zoom=!0),rk(o,n),o}class Os extends Array{constructor(){super(),this.type=void 0}extend(e){return this}extendAll(e){if(e instanceof Os&&e.type!=this.type)throw new Error(`Cannot combine different types of domains: ${this.type} and ${e.type}`);for(const t of e)this.extend(t);return this}extendAllWithAccessor(e,t){for(const r of e)this.extend(t(r));return this}}class $u extends Os{constructor(){super(),this.type="quantitative"}extend(e){return e==null||Number.isNaN(e)?this:(e=+e,this.length?e<this[0]?this[0]=e:e>this[1]&&(this[1]=e):(this.push(e),this.push(e)),this)}}class Yp extends Os{constructor(){super(),this.type="ordinal",this.uniqueValues=new Set}extend(e){return e==null||Number.isNaN(e)?this:(this.uniqueValues.has(e)||(this.uniqueValues.add(e),this.push(e)),this)}}class ef extends Yp{constructor(){super(),this.type="nominal"}}class sk extends Os{constructor(e){super();let t=0;for(let r=1;r<e.length;r++)t+=Math.sign(e[r]-e[r-1]);if(Math.abs(t)!=e.length-1)throw new Error("Piecewise domain must be strictly increasing or decreasing: "+JSON.stringify(e));e.forEach(r=>this.push(r))}extend(e){if(this.includes(e))return this;throw new Error("Piecewise domains are immutable and cannot be unioned!")}}const Jp={quantitative:$u,index:$u,locus:$u,nominal:ef,ordinal:Yp};function Ga(n,e){if(n=="quantitative"&&ok(e)){const t=new sk(e);return t.type=n,t}else if(Jp[n]){const t=new Jp[n];return t.type=n,e&&t.extendAll(e),t}throw new Error("Unknown type: "+n)}function ok(n){return n&&n.length>0&&n.length!=2&&n.every(e=>typeof e=="number")}class ak{#e;#t;#n;#r;#s;#o;#i;#c=!0;#a=new WeakMap;constructor({getMembers:e,getDataMembers:t,getType:r,getLocusExtent:i,fromComplexInterval:s}){this.#e=e,this.#t=t??e,this.#n=r,this.#r=i,this.#s=s}get initialDomainSnapshot(){return this.#o}hasConfiguredDomain(){return!!this.getConfiguredDomain()}invalidateConfiguredDomain(){this.#c=!0}getConfiguredOrDefaultDomain(e=!1){return this.getConfiguredDomain()??uk(this.#n(),this.#r,e?this.getDataDomain():void 0)}getConfiguredDomain(){if(!this.#c)return this.#i;const e=ck(this.#e(),this.#s);return this.#i=e,this.#c=!1,e}getDataDomain(){return lk(this.#t(),this.#n,e=>this.#l(e))}captureInitialDomain(e,t){if(!this.#o&&Pe(e.type)){const r=e.domain();Pi(r)>0&&(this.#o=r)}return t?!1:(this.#o=e.domain(),!0)}#l(e){const t=this.#a.get(e);if(t)return t;const r=e.view.mark.encoders;if(!r)return[];const i=r[e.channel];if(!i)return[];const s=i.accessors??[];if(s.length===0)return[];const o=s.filter(sd).filter(a=>!a.channelDef.domainInert);return this.#a.set(e,o),o}}function ck(n,e){const t=Array.from(n).filter(r=>r.contributesToDomain).map(r=>r.channelDef).filter(r=>r.scale?.domain).map(r=>Ga(r.type,e(r.scale.domain)));if(t.length>0)return t.reduce((r,i)=>r.extendAll(i))}function lk(n,e,t){const r=e(),i=new Map;for(const o of n){if(!o.contributesToDomain)continue;const a=t(o);if(a.length===0)continue;const l=o.view.getCollector();for(const c of a){const u=ad(c,r),f=l??null;let h=i.get(f);if(h||(h=new Map,i.set(f,h)),h.has(u))continue;let A;if(l)A=l.getDomain(u,r,c);else if(c.constant)A=Ga(r),A.extend(c({}));else continue;h.set(u,A)}}if(i.size===0)return;const s=Ga(r);for(const o of i.values())for(const a of o.values())s.extendAll(a);return s}function uk(n,e,t){return n==Ls?e():t??[]}function fk(n){return((n*=2)<=1?n*n*n:(n-=2)*n*n+2)/2}function Ak(n,e,t){return n*Math.pow(e/n,t)}const hk=n=>new Promise(e=>setTimeout(e,n));function dk(){return{canceled:!1}}function gk(n){const e=n.requestAnimationFrame||window.requestAnimationFrame,t=n.signal,r=n.cancelToken,i=()=>new Promise((s,o)=>{if(r?.canceled)return s();if(t?.aborted)return o("aborted");const a=performance.now(),l=a+(n.duration||1e3),c=typeof n.from=="number"?n.from:0,u=typeof n.to=="number"?n.to:1,f=n.easingFunction||(p=>p),h=p=>(p-a)/(l-a),A=p=>p*(u-c)+c,d=p=>Math.max(0,Math.min(1,p)),g=p=>{if(r?.canceled){s();return}t?.aborted?o("aborted"):(n.onUpdate(A(f(d(h(p))))),p<l?e(g):(n.onUpdate(A(f(1))),s()))};e(g)});return n.delay?r?.canceled?Promise.resolve():t?.aborted?Promise.reject("aborted"):hk(n.delay).then(i):i()}class pk{#e;#t;#n;#r;#s;#o;#i=null;constructor({getScale:e,getAnimator:t,getInitialDomainSnapshot:r,getResetDomain:i,fromComplexInterval:s,getGenomeExtent:o}){this.#e=e,this.#t=t,this.#n=r,this.#r=i,this.#s=s,this.#o=o}getZoomExtent(){const e=this.#e(),t=e.props.zoom;return mk(e,t,this.#s,this.#o,this.#n)}isZoomable(){return this.isZoomingSupported()&&!!this.#e().props.zoom}isZoomingSupported(){const e=this.#e().type;return Pe(e)&&!sn(e)}getDomainChangeAction(e,t){return Ur(t,e)?"none":this.isZoomable()?"restore":this.isZoomingSupported()?"animate":"notify"}isZoomed(){return this.isZoomingSupported()&&Ur(this.#r(),this.#e().domain())}zoom(e,t,r){if(!this.isZoomingSupported())return!1;const i=this.#e(),s=i.domain();let o=wk(i,s,e,t,r);const a=this.getZoomExtent();return o=f2(o,a[0],a[1]),[0,1].some(l=>o[l]!=s[l])?(i.domain(o),!0):!1}async zoomTo(e,t=!1){if(Ti(t)&&(t=t?700:0),!this.isZoomingSupported())throw new Error("Not a zoomable scale!");const r=this.#s(e),i=this.#t(),s=this.#e(),o=s.domain();if(t>0&&o.length==2){const a=o[1]-o[0],l=r[1]-r[0],c=o[0]+a/2,u=r[0]+l/2,f=o[0]==r[0],h=o[1]==r[1];this.#c();const A=dk();this.#i=A,await i.transition({duration:t,easingFunction:fk,cancelToken:A,onUpdate:d=>{const g=Ak(a,l,d),p=a==l?d:(a-g)/(a-l),m=p*u+(1-p)*c,C=[f?o[0]:m-g/2,h?o[1]:m+g/2];s.domain(C)}}),this.#i===A&&(this.#i=null),s.domain(r)}else this.#c(),s.domain(r),i?.requestRender()}#c(){this.#i&&(this.#i.canceled=!0,this.#i=null)}resetZoom(){if(!this.isZoomingSupported())throw new Error("Not a zoomable scale!");const e=this.#e(),t=e.domain(),r=this.#r();return[0,1].some(i=>r[i]!=t[i])?(e.domain(r),!0):!1}getZoomLevel(){return this.isZoomable()?Pi(this.getZoomExtent())/Pi(this.#e().domain()):1}}function mk(n,e,t,r,i){return Ck(e)&&ye(e.extent)?t(e.extent):e&&n.props.type=="locus"?r():i()}function wk(n,e,t,r,i){let s=[...e],o=n.invert(r);switch(n.props.reverse&&(i=-i),"align"in n&&(o+=n.align()),n.type){case"linear":case"index":case"locus":s=a2(s,i||0),s=PA(s,o,t);break;case"log":s=c2(s,i||0),s=LA(s,o,t);break;case"pow":case"sqrt":{const a=n;s=l2(s,i||0,a.exponent()),s=Pc(s,o,t,a.exponent());break}default:throw new Error("Zooming is not implemented for: "+n.type)}return s}function Ck(n){return ze(n)}re("index",Ku,["continuous"]),re("locus",ED,["continuous"]),re("null",zu,[]);class yk{#e=new Set;#t=new Set;#n={domain:new Set,range:new Set};#r;#s;#o;#i;#c=!1;constructor(e){this.channel=e,this.type=null,this.name=void 0,this.#s=new ak({getMembers:()=>this.#l(),getDataMembers:()=>this.#l(this.#t),getType:()=>this.type,getLocusExtent:()=>this.#f(),fromComplexInterval:this.fromComplexInterval.bind(this)}),this.#r=new ZD({getParamRuntime:()=>this.#a.paramRuntime,onRangeChange:()=>this.#h("range"),onDomainChange:()=>this.#h("domain"),getGenomeStore:()=>this.#u.genomeStore}),this.#o=new pk({getScale:()=>this.getScale(),getAnimator:()=>this.#u.animator,getInitialDomainSnapshot:()=>this.#s.initialDomainSnapshot,getResetDomain:()=>this.#s.getConfiguredOrDefaultDomain(),fromComplexInterval:this.fromComplexInterval.bind(this),getGenomeExtent:()=>this.#f()})}get#a(){const e=this.#e.values().next().value;if(!e)throw new Error("ScaleResolution has no members!");return e.view}#l(e=this.#e){const t=new Set;for(const r of e){const i=r.view;i.isConfiguredVisible()&&(!i.isDataInitialized()&&!r.channelDef?.scale?.domain||t.add(r))}return t}get#u(){return this.#a.context}get zoomExtent(){return(this.#r.scale&&Pe(this.#r.scale.type)&&this.#o.getZoomExtent())??[-1/0,1/0]}#f(){return DD(this.#A())}#A(){if(this.type===Ls)return this.#r.scale??this.#r.getLocusGenome()}addEventListener(e,t){this.#n[e].add(t)}removeEventListener(e,t){this.#n[e].delete(t)}#h(e){for(const t of this.#n[e].values())t({type:e,scaleResolution:this})}#d(e){const{channel:t,channelDef:r}=e,i=r.type==null&&this.type;if(t!="sample"&&!r.type&&!yl(t)&&!i)throw new Error(`The "type" property must be defined in channel definition: "${t}": ${JSON.stringify(r)}. Must be one of: "quantitative", "ordinal", "nominal", "locus", "index"`);const s=t=="sample"?"nominal":r.type,o=r?.scale?.name;if(o){if(this.name!==void 0&&o!=this.name)throw new Error(`Shared scales have conflicting names: "${o}" vs. "${this.name}"!`);this.name=o}if(!i){if(!this.type)this.type=s;else if(s!==this.type&&!yl(t))throw new Error(`Can not use shared scale for different data types: ${this.type} vs. ${s}. Use "resolve: independent" for channel ${this.channel}`)}this.#e.add(e),e.contributesToDomain&&this.#t.add(e),this.#s.invalidateConfiguredDomain()}registerMember(e){return this.#d(e),()=>{const t=this.#e.delete(e);return t&&(this.#t.delete(e),this.#s.invalidateConfiguredDomain()),t&&this.#e.size===0}}dispose(){this.#n.domain.clear(),this.#n.range.clear(),this.#r.dispose()}#g(){for(const e of this.#e)if(e.view.hasRendered())return!0;return!1}registerCollectorSubscriptions(e,t){const r=new Set;for(const o of t)o.channelDef.domainInert||r.add(ad(o,this.type));if(r.size===0)return()=>{};const i=()=>{this.reconfigureDomain()},s=[];for(const o of r)s.push(e.subscribeDomainChanges(o,i));return()=>{for(const o of s)o()}}#p(){return this.#s.hasConfiguredDomain()}#w(){const e=this.#r.scale;if(!e)return!1;const t=e.domain();return Pe(e.type)?t.length>2||t.length==2&&(t[0]!==0||t[1]!==0):t.length>0}#C(){return ik({channel:this.channel,dataType:this.type,members:this.#e,isExplicitDomain:this.#p()})}#m(e=!1){const t=this.#C();if(t===null||t.type=="null")return{type:"null"};const r=this.#s.getConfiguredOrDefaultDomain(e);if(sn(t.type)){const i=this.#p(),s=this.#E(i);if(r!=null){if(i&&s.domain().length>0&&!Ur(s.domain(),r))return this.#i=void 0,this.#m(e);s.addAll(r);const o=new Set(r),a=s.domain().filter(l=>o.has(l));t.domain=a.length>0?a:new ef}else{const o=s.domain();t.domain=o.length>0?o:new ef}t.domainIndexer=s}else r&&r.length>0&&(t.domain=r);return!t.domain&&t.domainMid!==void 0&&(t.domain=[t.domainMin??0,t.domainMax??1]),t}#E(e){return(!this.#i||this.#c!==e)&&(this.#i=Cp(),this.#c=e),this.#i}reconfigure(){this.#s.invalidateConfiguredDomain();const e=this.#y(!0);e&&(this.#I(e,(t,r)=>this.#r.reconfigureScale(r)),this.#b(e))}reconfigureDomain(){const e=this.#y(!0,!0);if(!e)return;const{domainConfig:t,targetDomain:r}=e,i=r!=null&&Ur(r,e.scale.domain());r!=null&&!i&&this.#I(e,s=>{s.domain(r),t.applyOrdinalUnknown&&s.unknown(t.ordinalUnknown)}),this.#b(e)}#y(e,t=!1){const r=this.#r.scale;if(!r||r.type=="null")return;const i={scale:r,props:this.#m(e),previousDomain:r.domain(),domainWasInitialized:this.#w()};if(t){const s=Op(r,i.props);return{...i,domainConfig:s,targetDomain:s.domain}}return i}#I(e,t){this.#r.withDomainNotificationsSuppressed(()=>{t(e.scale,e.props)})}#b(e){const{scale:t,previousDomain:r,domainWasInitialized:i}=e;if(this.#s.captureInitialDomain(t,i)){this.#h("domain");return}const s=t.domain(),o=this.#o.getDomainChangeAction(r,s);o==="restore"?this.#r.withDomainNotificationsSuppressed(()=>{t.domain(r)}):o==="animate"?this.#g()?(this.#r.withDomainNotificationsSuppressed(()=>{t.domain(r)}),this.zoomTo(s,500)):this.#h("domain"):o==="notify"&&this.#h("domain")}get scale(){if(this.#r.scale)return this.#r.scale;throw new Error("ScaleResolution.scale accessed before initialization. Call initializeScale().")}getScale(){return this.#r.scale??this.initializeScale()}initializeScale(){if(this.#r.scale)return this.#r.scale;const e=this.#m();return this.#r.createScale(e)}getDomain(){return this.getScale().domain()}getDataDomain(){return this.#s.getDataDomain()}getComplexDomain(){return QD(this.#A(),this.getDomain())}isZoomed(){return this.#o.isZoomed()}isZoomable(){return this.#o.isZoomable()}zoom(e,t,r){return this.#o.zoom(e,t,r)}async zoomTo(e,t=!1){return this.#o.zoomTo(e,t)}resetZoom(){return this.#o.resetZoom()}getZoomLevel(){return this.#o.getZoomLevel()}getAxisLength(){if(this.channel!=="x"&&this.channel!=="y")throw new Error("Axis length is only defined for x and y channels!");const e=Array.from(this.#e).map(t=>t.view.coords?.[this.channel==="x"?"width":"height"]).filter(t=>t>0);return e.length?e.reduce((t,r)=>Math.min(t,r),1e4):0}invertToComplex(e){const t=this.getScale();if("invert"in t){const r=t.invert(e);return this.toComplex(r)}else throw new Error("The scale does not support inverting!")}toComplex(e){return BD(this.#A(),e)}fromComplex(e){return vD(this.#A(),e)}fromComplexInterval(e){return this.type==Ls?SD(this.#A(),e):e}}function tf(...n){for(const e of n)if(e!==void 0)return e}class Ik{#e=new Set;constructor(e){this.channel=e}get scaleResolution(){return this.#e.values().next().value?.view.getScaleResolution(this.channel)}#t(e){const{view:t}=e,r=t.getScaleResolution(this.channel);if(!r)throw new Error("Cannot find a scale resolution!");if(this.scaleResolution&&r!==this.scaleResolution)throw new Error(`Shared axes must have a shared scale! Channel: ${this.channel}, existing views: [${Array.from(this.#e).map(i=>i.view.getPathString()).join(", ")}], new view: ${t.getPathString()}.`);this.#e.add(e),Ju(this,"axisProps")}registerMember(e){return this.#t(e),()=>this.removeMember(e)&&this.#e.size===0}removeMember(e){const t=this.#e.delete(e);return t&&Ju(this,"axisProps"),t}getAxisProps(){return La(this,"axisProps",()=>{const e=Array.from(this.#e).map(t=>{const r=t.view.mark.encoding[t.channel];return"axis"in r&&r.axis});return e.length>0&&e.some(t=>t===null)?null:Ua(e.filter(t=>t!==void 0),"axis",["title"])})}getTitle(){const e=o=>{const a=DE(o.view,o.channel);if(!ut(a))return{member:o,axisTitle:"axis"in a?a.axis?.title:void 0,explicitTitle:tf("axis"in a?a.axis?.title:void 0,a.title),implicitTitle:tf(en(a)?a.field:void 0,zr(a)?a.expr:void 0)}},t=Array.from(this.#e).map(e),r=t.map(o=>o.axisTitle).find(o=>o!==void 0);if(r!==void 0)return r;const i=t.filter(o=>{if(yl(o.member.channel)&&!o.explicitTitle){const a=In(o.member.channel);return t.find(l=>l.member.view==o.member.view&&l.member.channel==a)?.explicitTitle===void 0}return!0}),s=new Set(i.map(o=>tf(o.explicitTitle,o.implicitTitle)).filter(le));return s.size?[...s].join(", "):null}}function qp(n,e,{spacing:t,devicePixelRatio:r,offset:i,reverse:s}={}){t=t||0,i=i||0;let o=0,a=0;for(const d of n)o+=za(d.px)+(nf(d)?0:t),a+=za(d.grow);o-=t;const l=Math.max(0,e-o),c=r!==void 0?d=>Math.round(d*r)/r:d=>d,u=[],f=[],h=d=>{const g=u.length;if(!g)return;const p=(d?t:0)*(s?-1:1);A-=p;for(let m=0;m<g;m++)f.push({location:A+(m+1)/(g+1)*p,size:0});A+=p,u.length=0};let A=s?Math.max(e,o):0+i;if(n.length==1&&nf(n[0]))return[{location:A,size:0}];for(let d=0;d<n.length;d++){const g=n[d];if(nf(g))u.push(g);else{h(f.length>0);const p=za(g.px)+(a?za(g.grow)/a*l:0);s&&(A-=p),f.push({location:c(A),size:c(p)}),s?A-=t:A+=p+t}}return A+=s?t:-t,h(!1),f}function bk(n){let e=0,t=0;for(const r of n)e=Math.max(e,r.px??0),t=Math.max(t,r.grow??0);return{px:e,grow:t}}class Tn{constructor(e,t){this.width=e,this.height=t}addPadding(e){return this.#e(e.width,e.height)}subtractPadding(e){return this.#e(-e.width,-e.height)}#e(e,t){return new Tn({px:(this.width.px??0)+e,grow:this.width.grow},{px:(this.height.px??0)+t,grow:this.height.grow})}isGrowing(){return!!(this.width.grow||this.height.grow)}}const Us=Object.freeze({px:0,grow:0}),Kp=new Tn(Us,Us);function nf(n){return!n.px&&!n.grow}function za(n){return n||0}function Ek(n){return n&&(Ye(n.px)||Ye(n.grow))}function jp(n){if(hf(n))throw new Error("parseSizeDef does not accept step-based sizes.");if(Ek(n))return n;if(Ye(n))return{px:n,grow:0};if(n==="container")return{px:0,grow:1};if(!n)return{px:0,grow:1};throw new Error(`Invalid sizeDef: ${n}`)}class qe{constructor(e,t,r,i){this.top=e||0,this.right=t||0,this.bottom=r||0,this.left=i||0}get width(){return this.left+this.right}get height(){return this.top+this.bottom}expand(e){return e<=0?this:new qe(this.top+e,this.right+e,this.bottom+e,this.left+e)}add(e){return new qe(this.top+e.top,this.right+e.right,this.bottom+e.bottom,this.left+e.left)}subtract(e){return new qe(this.top-e.top,this.right-e.right,this.bottom-e.bottom,this.left-e.left)}union(e){return new qe(Math.max(this.top,e.top),Math.max(this.right,e.right),Math.max(this.bottom,e.bottom),Math.max(this.left,e.left))}getHorizontal(){return new qe(0,this.right,0,this.left)}getVertical(){return new qe(this.top,0,this.bottom,0)}get horizontalTotal(){return this.left+this.right}get verticalTotal(){return this.top+this.bottom}static createFromConfig(e){return typeof e=="number"?this.createUniformPadding(e):e?this.createFromRecord(e):rf}static createFromRecord(e){return new qe(e.top,e.right,e.bottom,e.left)}static zero(){return rf}static createUniformPadding(e){return new qe(e,e,e,e)}}const rf=qe.createUniformPadding(0);Object.freeze(rf);class ai{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(e,t){let r=this.length++;for(;r>0;){const i=r-1>>1,s=this.values[i];if(t>=s)break;this.ids[r]=this.ids[i],this.values[r]=s,r=i}this.ids[r]=e,this.values[r]=t}pop(){if(this.length===0)return;const e=this.ids,t=this.values,r=e[0],i=--this.length;if(i>0){const s=e[i],o=t[i];let a=0;const l=i>>1;for(;a<l;){const c=(a<<1)+1,u=c+1,f=c+(+(u<i)&+(t[u]<t[c]));if(t[f]>=o)break;e[a]=e[f],t[a]=t[f],a=f}e[a]=s,t[a]=o}return r}peek(){return this.length>0?this.ids[0]:void 0}peekValue(){return this.length>0?this.values[0]:void 0}shrink(){this.ids.length=this.values.length=this.length}}const Wp=Symbol("runtimeNode"),Xp=1e6;function xk(n){return n?(e,t)=>{n.addDisposer(e,t)}:()=>{}}function Zp(n,e){const t={id:n.id,name:n.name,kind:n.kind,get(){return n.value},subscribe(r){return n.listeners.add(r),()=>{n.listeners.delete(r)}}};return Object.defineProperty(t,Wp,{enumerable:!1,configurable:!1,writable:!1,value:n}),e?Object.assign(t,{set(r){e(r)}}):t}function $p(n){const e=n[Wp];if(!e)throw new Error("ParamRef is not bound to this graph runtime. Expected runtime-created ref.");return e}function em(n){for(const e of n)e()}class Bk{#e=1;#t=1;#n=0;#r=!1;#s=!1;#o=new Set;#i=new Set;#c=new ai;#a=new ai;#l=new Set;#u;constructor(e={}){this.#u=xk(e.lifecycleRegistry)}createWritable(e,t,r,i,s={}){const o="n"+this.#e++,a=s.notify??!0,l={id:o,name:t,kind:r,value:i,rank:0,disposed:!1,listeners:new Set,subscribe(u){return l.listeners.add(u),()=>{l.listeners.delete(u)}}},c=u=>{if(l.disposed)throw new Error('Cannot set disposed parameter "'+t+'" ('+o+").");u!==l.value&&(l.value=u,a&&(em(l.listeners),this.#d()))};return this.#u(e,()=>{l.disposed=!0,l.listeners.clear()}),Zp(l,c)}computed(e,t,r,i){const o=r.map($p).reduce((h,A)=>Math.max(h,A.rank),0),l={id:"n"+this.#e++,name:t,kind:"derived",rank:o+1,value:i(),disposed:!1,listeners:new Set,fn:i,subscribe(h){return l.listeners.add(h),()=>{l.listeners.delete(h)}}},c=()=>{l.disposed||this.#f(l)},u=r.map(h=>h.subscribe(c)),f=()=>{l.disposed||(l.disposed=!0,u.forEach(h=>h()),l.listeners.clear(),this.#o.delete(l))};return this.#u(e,f),Zp(l)}effect(e,t,r){const s=t.map($p).reduce((f,h)=>Math.max(f,h.rank),0),a={id:"n"+this.#e++,rank:s+1,disposed:!1,fn:r},l=()=>{a.disposed||this.#A(a)},c=t.map(f=>f.subscribe(l)),u=()=>{a.disposed||(a.disposed=!0,c.forEach(f=>f()),this.#i.delete(a))};return this.#u(e,u),u}runInTransaction(e){this.#n+=1;try{return e()}finally{this.#n-=1,this.#n===0&&this.#d()}}flushNow(){if(!(this.#n>0||this.#s)){this.#r=!1,this.#s=!0;try{let e=!0;for(;e;){for(e=!1;this.#c.length>0;){e=!0;const t=this.#c.pop();if(this.#o.delete(t),t.disposed)continue;const r=t.value,i=t.fn();i!==r&&(t.value=i,em(t.listeners))}for(;this.#a.length>0;){e=!0;const t=this.#a.pop();this.#i.delete(t),!t.disposed&&t.fn()}}}finally{this.#s=!1,this.#p()}}}whenPropagated(e={}){if(this.#g())return Promise.resolve();const{signal:t,timeoutMs:r}=e;return t?.aborted?Promise.reject(new Error("whenPropagated aborted")):new Promise((i,s)=>{const o={resolve:i,reject:s};t&&(o.abortHandler=()=>{this.#l.delete(o),s(new Error("whenPropagated aborted"))},t.addEventListener("abort",o.abortHandler,{once:!0})),r!=null&&(o.timeoutId=setTimeout(()=>{this.#l.delete(o),o.abortHandler&&t?.removeEventListener("abort",o.abortHandler),s(new Error("whenPropagated timeout after "+r+" ms"))},r)),this.#l.add(o)})}#f(e){this.#o.has(e)||(this.#o.add(e),this.#c.push(e,this.#h(e.rank)),this.#d())}#A(e){this.#i.has(e)||(this.#i.add(e),this.#a.push(e,this.#h(e.rank)),this.#d())}#h(e){const t=this.#t%Xp;return this.#t+=1,e*Xp+t}#d(){this.#n>0||this.#r||this.#s||(this.#r=!0,queueMicrotask(()=>{this.flushNow()}))}#g(){return this.#n===0&&!this.#r&&!this.#s&&this.#c.length===0&&this.#a.length===0&&this.#o.size===0&&this.#i.size===0}#p(){if(this.#g()){for(const e of this.#l)e.timeoutId&&clearTimeout(e.timeoutId),e.resolve();this.#l.clear()}}}class vk{#e=1;#t=new Map;createOwner(e,t){const r=e+":"+t+":"+this.#e++;return this.#t.set(r,new Set),r}addDisposer(e,t){const r=this.#t.get(e);if(!r)throw new Error("Unknown owner: "+e);r.add(t)}disposeOwner(e){const t=this.#t.get(e);if(t){for(const r of t)r();t.clear(),this.#t.delete(e)}}}class Sk{#e=1;#t=new Map;createRootScope(e){const t="scope:"+this.#e++;return this.#t.set(t,{params:new Map,ownerId:e}),t}createChildScope(e,t){if(!this.#t.has(t))throw new Error("Unknown parent scope: "+t);const r="scope:"+this.#e++;return this.#t.set(r,{parentScope:t,params:new Map,ownerId:e}),r}getOwnerId(e){const t=this.#t.get(e);if(!t)throw new Error("Unknown scope: "+e);return t.ownerId}clearScope(e){const t=this.#t.get(e);if(!t)throw new Error("Unknown scope: "+e);t.params.clear()}register(e,t,r){Tt(t);const i=this.#t.get(e);if(!i)throw new Error("Unknown scope: "+e);if(i.params.has(t))throw new Error('Parameter "'+t+'" already exists in scope '+e);return i.params.set(t,r),r}resolve(e,t){Tt(t);let r=e;for(;r;){const i=this.#t.get(r);if(!i)throw new Error("Unknown scope: "+r);const s=i.params.get(t);if(s)return s;r=i.parentScope}}}const Qk="RawCode",Dk="Literal",kk="Property",Fk="Identifier",Rk="ArrayExpression",Mk="BinaryExpression",Nk="CallExpression",Tk="ConditionalExpression",Pk="LogicalExpression",Lk="MemberExpression",Ok="ObjectExpression",Uk="UnaryExpression";function Qt(n){this.type=n}Qt.prototype.visit=function(n){let e,t,r;if(n(this))return 1;for(e=Gk(this),t=0,r=e.length;t<r;++t)if(e[t].visit(n))return 1};function Gk(n){switch(n.type){case Rk:return n.elements;case Mk:case Pk:return[n.left,n.right];case Nk:return[n.callee].concat(n.arguments);case Tk:return[n.test,n.consequent,n.alternate];case Lk:return[n.object,n.property];case Ok:return n.properties;case kk:return[n.key,n.value];case Uk:return[n.argument];case Fk:case Dk:case Qk:default:return[]}}var Vt,z,k,Ke,ie,Ha=1,Gs=2,gr=3,Pn=4,Va=5,pr=6,ot=7,zs=8,zk=9;Vt={},Vt[Ha]="Boolean",Vt[Gs]="<end>",Vt[gr]="Identifier",Vt[Pn]="Keyword",Vt[Va]="Null",Vt[pr]="Numeric",Vt[ot]="Punctuator",Vt[zs]="String",Vt[zk]="RegularExpression";var Hk="ArrayExpression",Vk="BinaryExpression",_k="CallExpression",Yk="ConditionalExpression",tm="Identifier",Jk="Literal",qk="LogicalExpression",Kk="MemberExpression",jk="ObjectExpression",Wk="Property",Xk="UnaryExpression",Le="Unexpected token %0",Zk="Unexpected number",$k="Unexpected string",e4="Unexpected identifier",t4="Unexpected reserved word",n4="Unexpected end of input",sf="Invalid regular expression",of="Invalid regular expression: missing /",nm="Octal literals are not allowed in strict mode.",r4="Duplicate data property in object literal not allowed in strict mode",_e="ILLEGAL",Hs="Disabled.",i4=new RegExp("[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),s4=new RegExp("[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]");function _a(n,e){if(!n)throw new Error("ASSERT: "+e)}function on(n){return n>=48&&n<=57}function af(n){return"0123456789abcdefABCDEF".includes(n)}function Vs(n){return"01234567".includes(n)}function o4(n){return n===32||n===9||n===11||n===12||n===160||n>=5760&&[5760,6158,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279].includes(n)}function _s(n){return n===10||n===13||n===8232||n===8233}function Ys(n){return n===36||n===95||n>=65&&n<=90||n>=97&&n<=122||n===92||n>=128&&i4.test(String.fromCharCode(n))}function Ya(n){return n===36||n===95||n>=65&&n<=90||n>=97&&n<=122||n>=48&&n<=57||n===92||n>=128&&s4.test(String.fromCharCode(n))}const a4={if:1,in:1,do:1,var:1,for:1,new:1,try:1,let:1,this:1,else:1,case:1,void:1,with:1,enum:1,while:1,break:1,catch:1,throw:1,const:1,yield:1,class:1,super:1,return:1,typeof:1,delete:1,switch:1,export:1,import:1,public:1,static:1,default:1,finally:1,extends:1,package:1,private:1,function:1,continue:1,debugger:1,interface:1,protected:1,instanceof:1,implements:1};function rm(){for(;k<Ke;){const n=z.charCodeAt(k);if(o4(n)||_s(n))++k;else break}}function cf(n){var e,t,r,i=0;for(t=n==="u"?4:2,e=0;e<t;++e)k<Ke&&af(z[k])?(r=z[k++],i=i*16+"0123456789abcdef".indexOf(r.toLowerCase())):ee({},Le,_e);return String.fromCharCode(i)}function c4(){var n,e,t,r;for(n=z[k],e=0,n==="}"&&ee({},Le,_e);k<Ke&&(n=z[k++],!!af(n));)e=e*16+"0123456789abcdef".indexOf(n.toLowerCase());return(e>1114111||n!=="}")&&ee({},Le,_e),e<=65535?String.fromCharCode(e):(t=(e-65536>>10)+55296,r=(e-65536&1023)+56320,String.fromCharCode(t,r))}function im(){var n,e;for(n=z.charCodeAt(k++),e=String.fromCharCode(n),n===92&&(z.charCodeAt(k)!==117&&ee({},Le,_e),++k,n=cf("u"),(!n||n==="\\"||!Ys(n.charCodeAt(0)))&&ee({},Le,_e),e=n);k<Ke&&(n=z.charCodeAt(k),!!Ya(n));)++k,e+=String.fromCharCode(n),n===92&&(e=e.substr(0,e.length-1),z.charCodeAt(k)!==117&&ee({},Le,_e),++k,n=cf("u"),(!n||n==="\\"||!Ya(n.charCodeAt(0)))&&ee({},Le,_e),e+=n);return e}function l4(){var n,e;for(n=k++;k<Ke;){if(e=z.charCodeAt(k),e===92)return k=n,im();if(Ya(e))++k;else break}return z.slice(n,k)}function u4(){var n,e,t;return n=k,e=z.charCodeAt(k)===92?im():l4(),e.length===1?t=gr:a4.hasOwnProperty(e)?t=Pn:e==="null"?t=Va:e==="true"||e==="false"?t=Ha:t=gr,{type:t,value:e,start:n,end:k}}function lf(){var n=k,e=z.charCodeAt(k),t,r=z[k],i,s,o;switch(e){case 46:case 40:case 41:case 59:case 44:case 123:case 125:case 91:case 93:case 58:case 63:case 126:return++k,{type:ot,value:String.fromCharCode(e),start:n,end:k};default:if(t=z.charCodeAt(k+1),t===61)switch(e){case 43:case 45:case 47:case 60:case 62:case 94:case 124:case 37:case 38:case 42:return k+=2,{type:ot,value:String.fromCharCode(e)+String.fromCharCode(t),start:n,end:k};case 33:case 61:return k+=2,z.charCodeAt(k)===61&&++k,{type:ot,value:z.slice(n,k),start:n,end:k}}}if(o=z.substr(k,4),o===">>>=")return k+=4,{type:ot,value:o,start:n,end:k};if(s=o.substr(0,3),s===">>>"||s==="<<="||s===">>=")return k+=3,{type:ot,value:s,start:n,end:k};if(i=s.substr(0,2),r===i[1]&&"+-<>&|".includes(r)||i==="=>")return k+=2,{type:ot,value:i,start:n,end:k};if(i==="//"&&ee({},Le,_e),"<>=!+-*%&|^/".includes(r))return++k,{type:ot,value:r,start:n,end:k};ee({},Le,_e)}function f4(n){let e="";for(;k<Ke&&af(z[k]);)e+=z[k++];return e.length===0&&ee({},Le,_e),Ys(z.charCodeAt(k))&&ee({},Le,_e),{type:pr,value:parseInt("0x"+e,16),start:n,end:k}}function A4(n){let e="0"+z[k++];for(;k<Ke&&Vs(z[k]);)e+=z[k++];return(Ys(z.charCodeAt(k))||on(z.charCodeAt(k)))&&ee({},Le,_e),{type:pr,value:parseInt(e,8),octal:!0,start:n,end:k}}function sm(){var n,e,t;if(t=z[k],_a(on(t.charCodeAt(0))||t===".","Numeric literal must start with a decimal digit or a decimal point"),e=k,n="",t!=="."){if(n=z[k++],t=z[k],n==="0"){if(t==="x"||t==="X")return++k,f4(e);if(Vs(t))return A4(e);t&&on(t.charCodeAt(0))&&ee({},Le,_e)}for(;on(z.charCodeAt(k));)n+=z[k++];t=z[k]}if(t==="."){for(n+=z[k++];on(z.charCodeAt(k));)n+=z[k++];t=z[k]}if(t==="e"||t==="E")if(n+=z[k++],t=z[k],(t==="+"||t==="-")&&(n+=z[k++]),on(z.charCodeAt(k)))for(;on(z.charCodeAt(k));)n+=z[k++];else ee({},Le,_e);return Ys(z.charCodeAt(k))&&ee({},Le,_e),{type:pr,value:parseFloat(n),start:e,end:k}}function h4(){var n="",e,t,r,i,s=!1;for(e=z[k],_a(e==="'"||e==='"',"String literal must starts with a quote"),t=k,++k;k<Ke;)if(r=z[k++],r===e){e="";break}else if(r==="\\")if(r=z[k++],!r||!_s(r.charCodeAt(0)))switch(r){case"u":case"x":z[k]==="{"?(++k,n+=c4()):n+=cf(r);break;case"n":n+=`
|
|
601
|
-
`;break;case"r":
|
|
602
|
-
`&&++k;else{if(_s(r.charCodeAt(0)))break;n+=r}return e!==""&&ee({},Le,_e),{type:zs,value:n,octal:s,start:t,end:k}}function d4(n,e){let t=n;e.includes("u")&&(t=t.replace(/\\u\{([0-9a-fA-F]+)\}/g,(r,i)=>{if(parseInt(i,16)<=1114111)return"x";ee({},sf)}).replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"x"));try{new RegExp(t)}catch{ee({},sf)}try{return new RegExp(n,e)}catch{return null}}function g4(){var n,e,t,r,i;for(n=z[k],_a(n==="/","Regular expression literal must start with a slash"),e=z[k++],t=!1,r=!1;k<Ke;)if(n=z[k++],e+=n,n==="\\")n=z[k++],_s(n.charCodeAt(0))&&ee({},of),e+=n;else if(_s(n.charCodeAt(0)))ee({},of);else if(t)n==="]"&&(t=!1);else if(n==="/"){r=!0;break}else n==="["&&(t=!0);return r||ee({},of),i=e.substr(1,e.length-2),{value:i,literal:e}}function p4(){var n,e,t;for(e="",t="";k<Ke&&(n=z[k],!!Ya(n.charCodeAt(0)));)++k,n==="\\"&&k<Ke?ee({},Le,_e):(t+=n,e+=n);return t.search(/[^gimuy]/g)>=0&&ee({},sf,t),{value:t,literal:e}}function m4(){var n,e,t,r;return ie=null,rm(),n=k,e=g4(),t=p4(),r=d4(e.value,t.value),{literal:e.literal+t.literal,value:r,regex:{pattern:e.value,flags:t.value},start:n,end:k}}function w4(n){return n.type===gr||n.type===Pn||n.type===Ha||n.type===Va}function om(){if(rm(),k>=Ke)return{type:Gs,start:k,end:k};const n=z.charCodeAt(k);return Ys(n)?u4():n===40||n===41||n===59?lf():n===39||n===34?h4():n===46?on(z.charCodeAt(k+1))?sm():lf():on(n)?sm():lf()}function at(){const n=ie;return k=n.end,ie=om(),k=n.end,n}function am(){const n=k;ie=om(),k=n}function C4(n){const e=new Qt(Hk);return e.elements=n,e}function cm(n,e,t){const r=new Qt(n==="||"||n==="&&"?qk:Vk);return r.operator=n,r.left=e,r.right=t,r}function y4(n,e){const t=new Qt(_k);return t.callee=n,t.arguments=e,t}function I4(n,e,t){const r=new Qt(Yk);return r.test=n,r.consequent=e,r.alternate=t,r}function uf(n){const e=new Qt(tm);return e.name=n,e}function Js(n){const e=new Qt(Jk);return e.value=n.value,e.raw=z.slice(n.start,n.end),n.regex&&(e.raw==="//"&&(e.raw="/(?:)/"),e.regex=n.regex),e}function lm(n,e,t){const r=new Qt(Kk);return r.computed=n==="[",r.object=e,r.property=t,r.computed||(t.member=!0),r}function b4(n){const e=new Qt(jk);return e.properties=n,e}function um(n,e,t){const r=new Qt(Wk);return r.key=e,r.value=t,r.kind=n,r}function E4(n,e){const t=new Qt(Xk);return t.operator=n,t.argument=e,t.prefix=!0,t}function ee(n,e){var t,r=Array.prototype.slice.call(arguments,2),i=e.replace(/%(\d)/g,(s,o)=>(_a(o<r.length,"Message reference must be in range"),r[o]));throw t=new Error(i),t.index=k,t.description=i,t}function Ja(n){n.type===Gs&&ee(n,n4),n.type===pr&&ee(n,Zk),n.type===zs&&ee(n,$k),n.type===gr&&ee(n,e4),n.type===Pn&&ee(n,t4),ee(n,Le,n.value)}function je(n){const e=at();(e.type!==ot||e.value!==n)&&Ja(e)}function he(n){return ie.type===ot&&ie.value===n}function ff(n){return ie.type===Pn&&ie.value===n}function x4(){const n=[];for(k=ie.start,je("[");!he("]");)he(",")?(at(),n.push(null)):(n.push(mr()),he("]")||je(","));return at(),C4(n)}function fm(){k=ie.start;const n=at();return n.type===zs||n.type===pr?(n.octal&&ee(n,nm),Js(n)):uf(n.value)}function B4(){var n,e,t,r;if(k=ie.start,n=ie,n.type===gr)return t=fm(),je(":"),r=mr(),um("init",t,r);if(n.type===Gs||n.type===ot)Ja(n);else return e=fm(),je(":"),r=mr(),um("init",e,r)}function v4(){var n=[],e,t,r,i={},s=String;for(k=ie.start,je("{");!he("}");)e=B4(),e.key.type===tm?t=e.key.name:t=s(e.key.value),r="$"+t,Object.prototype.hasOwnProperty.call(i,r)?ee({},r4):i[r]=!0,n.push(e),he("}")||je(",");return je("}"),b4(n)}function S4(){je("(");const n=Af();return je(")"),n}const Q4={if:1};function D4(){var n,e,t;if(he("("))return S4();if(he("["))return x4();if(he("{"))return v4();if(n=ie.type,k=ie.start,n===gr||Q4[ie.value])t=uf(at().value);else if(n===zs||n===pr)ie.octal&&ee(ie,nm),t=Js(at());else{if(n===Pn)throw new Error(Hs);n===Ha?(e=at(),e.value=e.value==="true",t=Js(e)):n===Va?(e=at(),e.value=null,t=Js(e)):he("/")||he("/=")?(t=Js(m4()),am()):Ja(at())}return t}function k4(){const n=[];if(je("("),!he(")"))for(;k<Ke&&(n.push(mr()),!he(")"));)je(",");return je(")"),n}function F4(){k=ie.start;const n=at();return w4(n)||Ja(n),uf(n.value)}function R4(){return je("."),F4()}function M4(){je("[");const n=Af();return je("]"),n}function N4(){var n,e,t;for(n=D4();;)if(he("."))t=R4(),n=lm(".",n,t);else if(he("("))e=k4(),n=y4(n,e);else if(he("["))t=M4(),n=lm("[",n,t);else break;return n}function Am(){const n=N4();if(ie.type===ot&&(he("++")||he("--")))throw new Error(Hs);return n}function qa(){var n,e;if(ie.type!==ot&&ie.type!==Pn)e=Am();else{if(he("++")||he("--"))throw new Error(Hs);if(he("+")||he("-")||he("~")||he("!"))n=at(),e=qa(),e=E4(n.value,e);else{if(ff("delete")||ff("void")||ff("typeof"))throw new Error(Hs);e=Am()}}return e}function hm(n){let e=0;if(n.type!==ot&&n.type!==Pn)return 0;switch(n.value){case"||":e=1;break;case"&&":e=2;break;case"|":e=3;break;case"^":e=4;break;case"&":e=5;break;case"==":case"!=":case"===":case"!==":e=6;break;case"<":case">":case"<=":case">=":case"instanceof":case"in":e=7;break;case"<<":case">>":case">>>":e=8;break;case"+":case"-":e=9;break;case"*":case"/":case"%":e=11;break}return e}function T4(){var n,e,t,r,i,s,o,a,l,c;if(n=ie,l=qa(),r=ie,i=hm(r),i===0)return l;for(r.prec=i,at(),e=[n,ie],o=qa(),s=[l,r,o];(i=hm(ie))>0;){for(;s.length>2&&i<=s[s.length-2].prec;)o=s.pop(),a=s.pop().value,l=s.pop(),e.pop(),t=cm(a,l,o),s.push(t);r=at(),r.prec=i,s.push(r),e.push(ie),t=qa(),s.push(t)}for(c=s.length-1,t=s[c],e.pop();c>1;)e.pop(),t=cm(s[c-1].value,s[c-2],t),c-=2;return t}function mr(){var n,e,t;return n=T4(),he("?")&&(at(),e=mr(),je(":"),t=mr(),n=I4(n,e,t)),n}function Af(){const n=mr();if(he(","))throw new Error(Hs);return n}function dm(n){z=n,k=0,Ke=z.length,ie=null,am();const e=Af();if(ie.type!==Gs)throw new Error("Unexpect token after expression.");return e}var P4={NaN:"NaN",E:"Math.E",LN2:"Math.LN2",LN10:"Math.LN10",LOG2E:"Math.LOG2E",LOG10E:"Math.LOG10E",PI:"Math.PI",SQRT1_2:"Math.SQRT1_2",SQRT2:"Math.SQRT2",MIN_VALUE:"Number.MIN_VALUE",MAX_VALUE:"Number.MAX_VALUE"};function gm(n){function e(o,a,l,c){let u=n(a[0]);return l&&(u=l+"("+u+")",l.lastIndexOf("new ",0)===0&&(u="("+u+")")),u+"."+o+(c<0?"":c===0?"()":"("+a.slice(1).map(n).join(",")+")")}function t(o,a,l){return c=>e(o,c,a,l)}const r="new Date",i="String",s="RegExp";return{isNaN:"Number.isNaN",isFinite:"Number.isFinite",abs:"Math.abs",acos:"Math.acos",asin:"Math.asin",atan:"Math.atan",atan2:"Math.atan2",ceil:"Math.ceil",cos:"Math.cos",exp:"Math.exp",floor:"Math.floor",hypot:"Math.hypot",log:"Math.log",max:"Math.max",min:"Math.min",pow:"Math.pow",random:"Math.random",round:"Math.round",sin:"Math.sin",sqrt:"Math.sqrt",tan:"Math.tan",clamp:function(o){o.length<3&&Ee("Missing arguments to clamp function."),o.length>3&&Ee("Too many arguments to clamp function.");const a=o.map(n);return"Math.max("+a[1]+", Math.min("+a[2]+","+a[0]+"))"},now:"Date.now",utc:"Date.UTC",datetime:r,date:t("getDate",r,0),day:t("getDay",r,0),year:t("getFullYear",r,0),month:t("getMonth",r,0),hours:t("getHours",r,0),minutes:t("getMinutes",r,0),seconds:t("getSeconds",r,0),milliseconds:t("getMilliseconds",r,0),time:t("getTime",r,0),timezoneoffset:t("getTimezoneOffset",r,0),utcdate:t("getUTCDate",r,0),utcday:t("getUTCDay",r,0),utcyear:t("getUTCFullYear",r,0),utcmonth:t("getUTCMonth",r,0),utchours:t("getUTCHours",r,0),utcminutes:t("getUTCMinutes",r,0),utcseconds:t("getUTCSeconds",r,0),utcmilliseconds:t("getUTCMilliseconds",r,0),length:t("length",null,-1),parseFloat:"parseFloat",parseInt:"parseInt",upper:t("toUpperCase",i,0),lower:t("toLowerCase",i,0),substring:t("substring",i),split:t("split",i),trim:t("trim",i,0),btoa:"btoa",atob:"atob",regexp:s,test:t("test",s),if:function(o){o.length<3&&Ee("Missing arguments to if function."),o.length>3&&Ee("Too many arguments to if function.");const a=o.map(n);return"("+a[0]+"?"+a[1]+":"+a[2]+")"}}}function L4(n){const e=n&&n.length-1;return e&&(n[0]==='"'&&n[e]==='"'||n[0]==="'"&&n[e]==="'")?n.slice(1,-1):n}function pm(n){n=n||{};const e=n.allowed?bo(n.allowed):{},t=n.forbidden?bo(n.forbidden):{},r=n.constants||P4,i=(n.functions||gm)(f),s=n.globalvar,o=n.fieldvar,a=At(s)?s:d=>`${s}["${d}"]`;[...Object.getOwnPropertyNames(Object.prototype).filter(d=>typeof Object.prototype[d]=="function")];let l={},c={},u=0;function f(d){if(le(d))return d;const g=h[d.type];return g==null&&Ee("Unsupported type: "+d.type),g(d)}const h={Literal:d=>d.raw,Identifier:d=>{const g=d.name;return u>0?g:kr(t,g)?Ee("Illegal identifier: "+g):kr(r,g)?r[g]:kr(e,g)?g:(l[g]=1,a(g))},MemberExpression:d=>{const g=!d.computed,p=f(d.object);g&&(u+=1);const m=f(d.property);return p===o&&(c[L4(m)]=1),g&&(u-=1),p+(g?"."+m:"["+m+"]")},CallExpression:d=>{d.callee.type!=="Identifier"&&Ee("Illegal callee type: "+d.callee.type);const g=d.callee.name,p=d.arguments,m=kr(i,g)&&i[g];return m||Ee("Unrecognized function: "+g),At(m)?m(p):m+"("+p.map(f).join(",")+")"},ArrayExpression:d=>"["+d.elements.map(f).join(",")+"]",BinaryExpression:d=>"("+f(d.left)+" "+d.operator+" "+f(d.right)+")",UnaryExpression:d=>"("+d.operator+f(d.argument)+")",ConditionalExpression:d=>"("+f(d.test)+"?"+f(d.consequent)+":"+f(d.alternate)+")",LogicalExpression:d=>"("+f(d.left)+d.operator+f(d.right)+")",ObjectExpression:d=>{for(const g of d.properties){const p=g.key.name;i2.has(p)&&Ee("Illegal property: "+p)}return"{"+d.properties.map(f).join(",")+"}"},Property:d=>{u+=1;const g=f(d.key);return u-=1,g+":"+f(d.value)}};function A(d){const g={code:f(d),globals:Object.keys(l),fields:Object.keys(c)};return l={},c={},g}return A.functions=i,A.constants=r,A}function mm(n,e,t){return t=(t-n)/(e-n),t=Math.max(0,Math.min(1,t)),t*t*(3-2*t)}function O4(n,e,t){return Xr((t-n)/(e-n),0,1)}const wm={clamp:Xr,format(n,e){return He(e)(n)},mapHasKey(n,e){return n.has(e)},isArray:ye,isBoolean:Ti,isDefined(n){return n!==void 0},isNumber:Ye,isObject:ze,isRegExp:C2,isString:le,isValid(n){return n!=null&&n===n},lerp:GA,linearstep:O4,replace(n,e,t){return String(n).replace(e,t)},smoothstep:mm};function U4(n){const e=gm(n);for(const t in wm)e[t]=`this.${t}`;return e}const G4=pm({forbidden:[],allowed:["datum","undefined"],globalvar:"globalObject",fieldvar:"datum",functions:U4});function z4(n,e={}){try{const t=dm(n),r=G4(t),i=Function("datum","globalObject",`"use strict";
|
|
599
|
+
chrM 16299`};function G4(t){if(!(t in am))throw new Error(`Unknown assembly: ${t}`);return am[t].split(`
|
|
600
|
+
`).map(e=>{const n=e.split(" ");return{name:n[0],size:parseInt(n[1])}})}const z4=/^([A-Za-z]+:)?\/\//;function pi(t,e){if(e&&z4.test(e))return e;const n=typeof t=="function"?t():t;if(!n)return e;if(!e)return n;if(/[#?]/.test(n))throw new Error(`Cannot append to a url with query or hash. Append: ${e}, base: ${n}`);return cm(n)+e}function cm(t){const e=t.replace(/[^/]*$/,"");return e===""?void 0:e.endsWith("://")?t+"/":e}class H4{constructor(e){if(this.config={name:"custom",...e},"baseUrl"in e)throw new Error("The `baseUrl` property in genome config has been removed in GenomeSpy v0.52.0. Use `url` instead. See https://genomespy.app/docs/genomic-data/genomic-coordinates/.");if(!gu(e))throw new Error("Not a genome configuration: "+JSON.stringify(e));if(this.chromosomes=[],this.cumulativeChromPositions=new Map,this.chromosomesByName=new Map,this.startByIndex=[],this.totalSize=0,fm(this.config))this.setChromSizes(this.config.contigs);else if(!pu(this.config)){const n=G4(this.config.name);if(n)this.setChromSizes(n);else throw new Error(`Unknown genome: ${this.config.name}. Please provide contigs or a URL. See https://genomespy.app/docs/genomic-data/genomic-coordinates/.`)}}get name(){return this.config.name}async load(e){if(pu(this.config))try{const n=pi(e,this.config.url),i=await fetch(n);if(!i.ok)throw new Error(`${i.status} ${i.statusText}`);this.setChromSizes(Y4(await i.text()))}catch(n){throw new Error(`Could not load chrom sizes: ${this.config.url}. Reason: ${n.message}`)}}hasChrPrefix(){return this.chromosomes.some(e=>e.name.startsWith("chr"))}setChromSizes(e){let n=0;this.startByIndex=[0];for(let i=0;i<e.length;i++){this.startByIndex.push(n);const r=e[i].size,s={...e[i],continuousStart:n,continuousEnd:n+r,continuousInterval:[n,n+r],index:i,number:i+1,odd:!(i&1)};this.chromosomes.push(s);const o=s.name.replace(/^chr/i,"");for(const a of["chr"+o,"CHR"+o,"Chr"+o,s.number,""+s.number,o,s.name])this.cumulativeChromPositions.set(a,n),this.chromosomesByName.set(a,s);n+=s.size}this.totalSize=n}getExtent(){return[0,this.totalSize]}toContinuous(e,n){let i=this.cumulativeChromPositions.get(e);if(i===void 0)throw new Error("Unknown chromosome/contig: "+e);return i+ +n}toChromosome(e){if(e>this.totalSize)return;e=Math.floor(e);const n=yn(this.startByIndex,e)-1;if(n>0&&n<=this.chromosomes.length)return this.chromosomes[n-1]}toChromosomal(e){const n=this.toChromosome(e);if(n)return{chrom:n.name,pos:Math.floor(e)-n.continuousStart}}getChromosome(e){return this.chromosomesByName.get(e)}formatInterval(e){return _4(...this.toChromosomalInterval(e))}formatLocus(e){const n=this.toChromosomal(e);if(n)return U4(n)}toChromosomalInterval(e){const n=this.toChromosomal(e[0]+.5),i=this.toChromosomal(e[1]-.5);return i.pos+=1,[n,i]}toContinuousInterval(e){let[n,i]=e;return i||(i=n),[this.toContinuous(n.chrom,n.pos??0),this.toContinuous(i.chrom,i.pos??this.chromosomesByName.get(i.chrom)?.size)]}toDiscreteChromosomeIntervals(e){const n=e[0],i=e[1],r=[];if(n.chrom===i.chrom)r.push({chrom:n.chrom,startPos:n.pos,endPos:i.pos});else{const s=this.chromosomes.findIndex(a=>a.name===n.chrom),o=this.chromosomes.findIndex(a=>a.name===i.chrom);r.push({chrom:n.chrom,startPos:n.pos,endPos:this.chromosomes[s].size});for(let a=s+1;a<o;a++)r.push({chrom:this.chromosomes[a].name,startPos:0,endPos:this.chromosomes[a].size});r.push({chrom:i.chrom,startPos:0,endPos:i.pos})}return r}continuousToDiscreteChromosomeIntervals(e){return this.toDiscreteChromosomeIntervals([this.toChromosomal(e[0]),this.toChromosomal(e[1])])}parseInterval(e){const n=e.match(/^(chr[0-9A-Z]+)(?::([0-9,]+)(?:-(?:(chr[0-9A-Z]+):)?([0-9,]+))?)?$/);if(n){const i=n[1];if(n.slice(2).every(a=>a===void 0)){const a=this.getChromosome(i);return a?[a.continuousStart,a.continuousEnd]:void 0}const r=n[3]||i,s=parseInt(n[2].replace(/,/g,"")),o=n[4]!==void 0?parseInt(n[4].replace(/,/g,"")):s;return[this.toContinuous(i,s-1),this.toContinuous(r,o)]}}}function Y4(t){return A2(t).map(([e,n])=>({name:e,size:parseInt(n)}))}function lm(t){return Ge(t)&&"chrom"in t}function V4(t){return t.every(lm)}function gu(t){return Ge(t)&&("name"in t||pu(t)||fm(t))}function pu(t){return gu(t)&&"url"in t}function fm(t){return gu(t)&&"contigs"in t}function J4(){const t=hu().numberingOffset(1);let e;t.genome=function(i){return arguments.length?(e=i,t):e},t.ticks=i=>{if(!e)return[];const r=t.domain(),s=t.numberingOffset(),[o,a]=[Math.max(r[0],0),Math.min(r[1],e.totalSize-1)].map(f=>e.toChromosome(f)),l=Math.max(1,$n(r[0],r[1],i)),c=[];for(let f=o.index;f<=a.index;f++){const u=e.chromosomes[f],h=Math.max(u.continuousStart+l,r[0]-(r[0]-u.continuousStart)%l),A=Math.min(u.continuousEnd-l/4,r[1]+1);for(let d=h;d<=A;d+=l){const g=d-s;g>=r[0]&&g<r[1]&&c.push(g)}}return c},t.tickFormat=(i,r)=>{if(!e)return;if(r)throw new Error("Locus scale's tickFormat does not support a specifier!");const s=t.domain(),o=s[1]-s[0],a=t.numberingOffset(),c=$n(s[0],s[1],Math.min(i,Math.ceil(o)))<1e6?ze(","):ze(".3s"),f=u=>u-e.toChromosome(u).continuousStart;return u=>c(f(u)+a)};const n=t.copy;return t.copy=()=>{const i=n();let r=e;return i.genome=function(s){return arguments.length?(r=s,i):r},i.genome(e)},t}function q4(t){return t.type=="locus"}function K4(t,e){const n=Hs(t);return n?n.toChromosomal(e):e}function j4(t,e){const n=Hs(t);return n&&lm(e)?n.toContinuous(e.chrom,e.pos):e}function W4(t,e){const n=Hs(t);return n&&V4(e)?n.toContinuousInterval(e):e}function X4(t,e){const n=Hs(t);return n?n.toChromosomalInterval(e):e}function Z4(t){const e=Hs(t);if(!e)throw new Error("No genome has been defined!");return e.getExtent()}function Hs(t){if(t&&"toChromosomal"in t)return t;if(t&&"genome"in t)return t.genome()}function um(t,e,n){return Ve(e)&&n!=null&&(e=Math.min(e,~~(Hr(t.domain())/n)||1)),Ge(e)&&(e.step,e=e.interval),e}function Am(t,e,n){var i=t.range(),r=Math.floor(i[0]),s=Math.ceil(xt(i));if(r>s&&(i=s,s=r,r=i),e=e.filter(function(a){return a=t(a),r<=a&&a<=s}),n>0&&e.length>1){for(var o=[e[0],xt(e)];e.length>n&&e.length>=3;)e=e.filter(function(a,l){return!(l%2)});e.length<3&&(e=o)}return e}function $4(t,e){return t.bins?Am(t,ek(t.bins,e)):t.ticks?t.ticks(e):t.domain()}function ek(t,e){var n=t.length,i=~~(n/(e||n));return i<2?t.slice():t.filter(function(r,s){return!(s%i)})}function tk(t,e,n){var i=t.tickFormat?t.tickFormat(e,n):n?ze(n):String;if(Np(t.type)){var r=ik(n);i=t.bins?r:nk(i,r)}return i}function nk(t,e){return function(n){return t(n)?e(n):""}}function ik(t){var e=Oi(t||",");if(e.precision==null){switch(e.precision=12,e.type){case"%":e.precision-=2;break;case"e":e.precision-=1;break}return rk(ze(e),ze(".1f")(1)[1])}else return ze(e)}function rk(t,e){return function(n){var i=t(n),r=i.indexOf(e),s,o;if(r<0)return i;for(s=sk(i,r),o=s<i.length?i.slice(s):"";--s>r;)if(i[s]!=="0"){++s;break}return i.slice(0,s)+o}}function sk(t,e){var n=t.lastIndexOf("e"),i;if(n>0)return n;for(n=t.length;--n>e;)if(i=t.charCodeAt(n),i>=48&&i<=57)return n+1}const ok="locus",ak="index";var ck=5;function lk(t){const e=t.type;return!t.bins&&(e===or||e===ks||e===Fs)}function hm(t){return Pe(t)&&![zt,ak,ok].includes(t)}function dm(t){return t||{warn:(e,...n)=>console.warn(e,...n)}}var fk=Ro(["set","modified","clear","type","scheme","schemeExtent","schemeCount","domain","domainMin","domainMid","domainMax","domainRaw","domainImplicit","nice","zero","bins","range","rangeStep","round","reverse","interpolate","interpolateGamma","zoom","fp64","name"]);function gm(t,e,n){n=dm(n);for(const r in t)if(!fk[r]){if(r==="padding"&&hm(e.type))continue;ht(e[r])?e[r](t[r]):n.warn("Unsupported scale property: "+r)}const i=pm(e,t,n);i.domain&&e.domain(i.domain),i.applyOrdinalUnknown&&e.unknown(i.ordinalUnknown),wk(e,t,mk(e,t,i.count))}function uk(t,e){const n=Ak(t),i=ie(n);if(!i)throw new Error("Unknown scale type: "+n);const r=i();return!t.domain&&Pe(r.type)&&(t.domain=[0,0]),gm(t,r,e),r}function Ak(t){var e=t.type,n="",i;return e===zt?zt+"-"+or:(hk(t)&&(i=t.rawDomain?t.rawDomain.length:t.domain?t.domain.length+ +(t.domainMid!=null):0,n=i===2?zt+"-":i===3?ar+"-":""),(n+e||or).toLowerCase())}function hk(t){const e=t.type;return Pe(e)&&e!==Bp&&e!==vp&&(t.scheme||t.range&&t.range.length&&t.range.every(le))}function dk(t){if(!t.copy)return t;const e=t.copy();return e.type==null&&t.type!=null&&(e.type=t.type),e}function pm(t,e,n){if(!t.domain)return{domain:null,count:0,ordinalUnknown:void 0,applyOrdinalUnknown:!1};n=dm(n);const i=dk(t);var r=gk(i,e.domainRaw,n);if(r>-1)return{domain:i.domain(),count:r,ordinalUnknown:i.type===Rs&&e.domainImplicit?Da:void 0,applyOrdinalUnknown:!1};var s=e.domain,o=i.type,a=e.zero||e.zero===void 0&&lk(i),l,c;return s?(hm(o)&&e.padding&&s[0]!==xt(s)&&(s=pk(o,s,e.range,e.padding,e.exponent,e.constant)),(a||e.domainMin!=null||e.domainMax!=null||e.domainMid!=null)&&(l=(s=s.slice()).length-1||1,a&&(s[0]>0&&(s[0]=0),s[l]<0&&(s[l]=0)),e.domainMin!=null&&(s[0]=e.domainMin),e.domainMax!=null&&(s[l]=e.domainMax),e.domainMid!=null&&(c=e.domainMid,(c<s[0]||c>s[l])&&n.warn("Scale domainMid exceeds domain min or max.",c),s.splice(l,0,c))),i.domain(mm(o,s,n)),e.nice&&i.nice&&i.nice(e.nice!==!0&&um(i,e.nice)||null),{domain:i.domain(),count:s.length,ordinalUnknown:o===Rs&&e.domainImplicit?Da:void 0,applyOrdinalUnknown:o===Rs}):{domain:null,count:0,ordinalUnknown:void 0,applyOrdinalUnknown:!1}}function gk(t,e,n){return e?(t.domain(mm(t.type,e,n)),e.length):-1}function pk(t,e,n,i,r,s){n??=[0,1];var o=Math.abs(xt(n)-n[0]),a=o/(o-2*i),l=t===Tn?gh(e,null,a):t===Fs?el(e,null,a,.5):t===ks?el(e,null,a,r||1):t===za?vI(e,null,a,s||1):dh(e,null,a);return e=e.slice(),e[0]=l[0],e[e.length-1]=l[1],e}function mm(t,e,n){if(Np(t)){var i=Math.abs(e.reduce(function(r,s){return r+(s<0?-1:s>0?1:0)},0));i!==e.length&&n.warn("Log scale domain includes zero: "+nl(e))}return e}function mk(t,e,n){let i=e.bins;if(i&&!Ce(i)){const r=(i.start==null||i.stop==null)&&t.domain(),s=i.start==null?r[0]:i.start,o=i.stop==null?xt(r):i.stop,a=i.step;a||be("Scale bins parameter missing step property."),i=$r(s,o+a,a)}return i?t.bins=i:t.bins&&delete t.bins,t.type===nu&&(i?!e.domain&&!e.domainRaw&&(t.domain(i),n=i.length):t.bins=t.domain()),n}function wk(t,e,n){var i=t.type,r=e.round||!1,s=e.range;if(e.rangeStep!=null)s=yk(i,e,n);else if(e.scheme&&(s=Ck(i,e,n),ht(s))){if(t.interpolator)return t.interpolator(s);be(`Scale type ${i} does not support interpolating color schemes.`)}if(s&&Ya(i))return t.interpolator(Va(mu(s,e.reverse),e.interpolate,e.interpolateGamma));s&&e.interpolate&&t.interpolate?t.interpolate(Mp(e.interpolate,e.interpolateGamma)):ht(t.round)?t.round(r):ht(t.rangeRound)&&t.interpolate(r?Qs:Nn),s&&t.range(mu(s,e.reverse))}function yk(t,e,n){t!==Dp&&t!==tu&&be("Only band and point scales support rangeStep.");var i=(e.paddingOuter!=null?e.paddingOuter:e.padding)||0,r=t===tu?1:(e.paddingInner!=null?e.paddingInner:e.padding)||0;return[0,e.rangeStep*$f(n,r,i)]}function Ck(t,e,n){var i=e.schemeExtent,r,s;return Ce(e.scheme)?s=Va(e.scheme,e.interpolate,e.interpolateGamma):(r=e.scheme.toLowerCase(),s=ru(r),s||be(`Unrecognized scheme name: ${e.scheme}`)),n=t===Qp?n+1:t===nu?n-1:t===eu||t===Sp?+e.schemeCount||ck:n,Ya(t)?wm(s,i,e.reverse):ht(s)?yD(wm(s,i),n):t===Rs?s:s.slice(0,n)}function wm(t,e,n){return ht(t)&&(e||n)?wD(t,mu(e||[0,1],n)):t}function mu(t,e){return e?t.slice().reverse():t}class Ek{#e;#t=new Set;#n;#i;#s;#o;#r=0;constructor({getParamRuntime:e,onRangeChange:n,onDomainChange:i,getGenomeStore:r}){this.#n=e,this.#i=n,this.#s=i,this.#o=r}get scale(){return this.#e}getLocusGenome(){const n=this.#o?.()?.getGenome();if(!n)throw new Error("No genome has been defined!");return n}createScale(e){const n=uk({...this.#c(e),range:void 0});return n.props=e,"unknown"in n&&n.unknown(null),this.#e=n,this.#a(e),this.#l(),this.#f(),this.#e}#a(e){const n=this.#e;if(!n||!q4(n))return;const r=this.#o?.()?.getGenome(e.assembly);if(!r)throw new Error("No genome has been defined!");n.genome(r)}reconfigureScale(e){const n=this.#e;!n||n.type=="null"||(gm({...this.#c(e),range:void 0},n),n.props=e,this.#l())}withDomainNotificationsSuppressed(e){this.#r+=1;try{e()}finally{this.#r-=1}}#c(e){const n=e,{assembly:i,domainIndexer:r,...s}=n;return s}#l(){const e=this.#e;if(!e)return;const n=e.props;this.#t.forEach(s=>s.invalidate()),this.#t.clear();const i=bk({range:n.range,reverse:n.reverse,createExpression:s=>this.#n().createExpression(s),registerExpr:s=>this.#t.add(s)});if(!i)return;if("values"in i){e.range(i.values);return}const r=()=>e.range(i.evaluate());i.setup(r),r()}#f(){const e=this.#e;if(!e)return;const n=e.range,i=e.domain,r=()=>this.#i?.();Ik(e,{onRangeChange:r,onDomainChange:()=>{this.#r>0||this.#s?.()},range:n,domain:i}),r()}dispose(){this.#t.forEach(e=>e.invalidate()),this.#t.clear()}}function Ik(t,{onRangeChange:e,onDomainChange:n,range:i,domain:r}){typeof i=="function"&&(t.range=(function(s){if(arguments.length)i(s),e?.();else return i()})),typeof r=="function"&&(t.domain=(function(s){if(arguments.length)r(s),n?.();else return r()}))}function bk({range:t,reverse:e,createExpression:n,registerExpr:i}){if(!t||!Ce(t))return null;const r=(s,o)=>o?s.slice().reverse():s;if(t.some(Ee)){let s;return{dynamic:!0,evaluate:()=>r(s.map(l=>l()),e),setup:l=>{s=t.map(c=>{if(Ee(c)){const f=n(c.expr);return f.subscribe(l),i(f),()=>f(null)}return()=>c})}}}return{dynamic:!1,values:r(t,e)}}function Wa(t,e,n){if(n=n||[],t.some(o=>o===null)){if(t.every(o=>o===null))return null;throw console.warn(t),new Error("Cannot merge objects with nulls!")}const i={},r=(o,a)=>o===a||fr(o)&&fr(a)||fr(o)&&a===!0||o===!0&&Ge(a)||Array.isArray(o)&&Array.isArray(a)&&o.length===a.length&&o.every((l,c)=>l===a[c]),s=o=>{for(let a in o){const l=o[a];if(!n.includes(a)&&l!==void 0)if(i[a]!==void 0&&!r(i[a],l))console.warn(`Conflicting property ${a} of ${e}: (${JSON.stringify(i[a])} and ${JSON.stringify(o[a])}). Using ${JSON.stringify(i[a])}.`);else{const c=i[a];if(fr(c))fr(l)&&(i[a]=Wa([c,l],a));else if(fr(l)){if(!(c===!0||c===void 0))throw new Error("Bug in merge! Target is: "+c);i[a]=Wa([{},l],a)}else i[a]=l}}};for(const o of t)s(o);return i}function fr(t){return Ge(t)&&!Array.isArray(t)}const ym="quantitative",Cm="ordinal",Em="nominal",Ys="locus",Im="index";function xk(t,e,n){const i={};return n&&(i.zero=!1),ps(t)?i.nice=!n:bn(t)?i.scheme=e==Em?"tableau10":e==Cm?"blues":"viridis":ia(t)?i.range=t=="shape"?["circle","square","triangle-up","cross","diamond"]:[]:t=="size"?i.range=[0,400]:t=="angle"&&(i.range=[0,360]),i}function Bk(t,e){if(e==Im||e==Ys){if(Pl(t))return e;throw new Error(t+" does not support "+e+" data type. Only positional channels do.")}const n={x:["band","band","linear"],y:["band","band","linear"],size:[void 0,"point","linear"],opacity:[void 0,"point","linear"],fillOpacity:[void 0,"point","linear"],strokeOpacity:[void 0,"point","linear"],color:["ordinal","ordinal","linear"],fill:["ordinal","ordinal","linear"],stroke:["ordinal","ordinal","linear"],strokeWidth:[void 0,void 0,"linear"],shape:["ordinal","ordinal",void 0],dx:[void 0,void 0,"null"],dy:[void 0,void 0,"null"],angle:[void 0,void 0,"linear"],sample:["null",void 0,void 0]},r=["sample"].includes(t)?"null":n[t]?n[t][[Em,Cm,ym].indexOf(e)]:e==ym?"linear":"ordinal";if(r===void 0)throw new Error('Channel "'+t+'" is not compatible with "'+e+'" data type. Use of a proper scale may be needed.');return r}function vk(t,e){ps(e)&&t.type!=="ordinal"&&(t.range=[0,1]),e=="opacity"&&Pe(t.type)&&(t.clamp=!0)}function Sk({channel:t,dataType:e,members:n,isExplicitDomain:i}){const r=Array.from(n).map(a=>a.channelDef.scale).filter(a=>a!==void 0),s=Wa(r,"scale",["domain"]);if(s===null||s.type=="null")return{type:"null"};const o={...xk(t,e,i),...s};return o.type||(o.type=Bk(t,e)),t=="y"&&on(o.type)&&o.reverse==null&&(o.reverse=!0),o.range&&o.scheme&&delete o.scheme,!("zoom"in o)&&[Im,Ys].includes(o.type)&&(o.zoom=!0),vk(o,t),o}class Vs extends Array{constructor(){super(),this.type=void 0}extend(e){return this}extendAll(e){if(e instanceof Vs&&e.type!=this.type)throw new Error(`Cannot combine different types of domains: ${this.type} and ${e.type}`);for(const n of e)this.extend(n);return this}extendAllWithAccessor(e,n){for(const i of e)this.extend(n(i));return this}}class wu extends Vs{constructor(){super(),this.type="quantitative"}extend(e){return e==null||Number.isNaN(e)?this:(e=+e,this.length?e<this[0]?this[0]=e:e>this[1]&&(this[1]=e):(this.push(e),this.push(e)),this)}}class bm extends Vs{constructor(){super(),this.type="ordinal",this.uniqueValues=new Set}extend(e){return e==null||Number.isNaN(e)?this:(this.uniqueValues.has(e)||(this.uniqueValues.add(e),this.push(e)),this)}}class yu extends bm{constructor(){super(),this.type="nominal"}}class Qk extends Vs{constructor(e){super();let n=0;for(let i=1;i<e.length;i++)n+=Math.sign(e[i]-e[i-1]);if(Math.abs(n)!=e.length-1)throw new Error("Piecewise domain must be strictly increasing or decreasing: "+JSON.stringify(e));e.forEach(i=>this.push(i))}extend(e){if(this.includes(e))return this;throw new Error("Piecewise domains are immutable and cannot be unioned!")}}const xm={quantitative:wu,index:wu,locus:wu,nominal:yu,ordinal:bm};function Xa(t,e){if(t=="quantitative"&&Dk(e)){const n=new Qk(e);return n.type=t,n}else if(xm[t]){const n=new xm[t];return n.type=t,e&&n.extendAll(e),n}throw new Error("Unknown type: "+t)}function Dk(t){return t&&t.length>0&&t.length!=2&&t.every(e=>typeof e=="number")}class kk{#e;#t;#n;#i;#s;#o;#r;#a=!0;#c=new WeakMap;constructor({getMembers:e,getDataMembers:n,getType:i,getLocusExtent:r,fromComplexInterval:s}){this.#e=e,this.#t=n??e,this.#n=i,this.#i=r,this.#s=s}get initialDomainSnapshot(){return this.#o}hasConfiguredDomain(){return!!this.getConfiguredDomain()}invalidateConfiguredDomain(){this.#a=!0}getConfiguredOrDefaultDomain(e=!1){return this.getConfiguredDomain()??Nk(this.#n(),this.#i,e?this.getDataDomain():void 0)}getConfiguredDomain(){if(!this.#a)return this.#r;const e=Fk(this.#e(),this.#s);return this.#r=e,this.#a=!1,e}getDataDomain(){return Rk(this.#t(),this.#n,e=>this.#l(e))}captureInitialDomain(e,n){if(!this.#o&&Pe(e.type)){const i=e.domain();Hr(i)>0&&(this.#o=i)}return n?!1:(this.#o=e.domain(),!0)}#l(e){const n=this.#c.get(e);if(n)return n;const i=e.view.mark.encoders;if(!i)return[];const r=i[e.channel];if(!r)return[];const s=r.accessors??[];if(s.length===0)return[];const o=s.filter(Ld).filter(a=>!a.channelDef.domainInert);return this.#c.set(e,o),o}}function Fk(t,e){const n=Array.from(t).filter(i=>i.contributesToDomain).map(i=>i.channelDef).filter(i=>i.scale?.domain).map(i=>Xa(i.type,e(i.scale.domain)));if(n.length>0)return n.reduce((i,r)=>i.extendAll(r))}function Rk(t,e,n){const i=e(),r=new Map;for(const o of t){if(!o.contributesToDomain)continue;const a=n(o);if(a.length===0)continue;const l=o.view.getCollector();for(const c of a){const f=Ud(c,i),u=l??null;let h=r.get(u);if(h||(h=new Map,r.set(u,h)),h.has(f))continue;let A;if(l)A=l.getDomain(f,i,c);else if(c.constant)A=Xa(i),A.extend(c({}));else continue;h.set(f,A)}}if(r.size===0)return;const s=Xa(i);for(const o of r.values())for(const a of o.values())s.extendAll(a);return s}function Nk(t,e,n){return t==Ys?e():n??[]}function Mk(t){return((t*=2)<=1?t*t*t:(t-=2)*t*t+2)/2}function Tk(t,e,n){return t*Math.pow(e/t,n)}const Pk=t=>new Promise(e=>setTimeout(e,t));function Lk(){return{canceled:!1}}function Ok(t){const e=t.requestAnimationFrame||window.requestAnimationFrame,n=t.signal,i=t.cancelToken,r=()=>new Promise((s,o)=>{if(i?.canceled)return s();if(n?.aborted)return o("aborted");const a=performance.now(),l=a+(t.duration||1e3),c=typeof t.from=="number"?t.from:0,f=typeof t.to=="number"?t.to:1,u=t.easingFunction||(m=>m),h=m=>(m-a)/(l-a),A=m=>m*(f-c)+c,d=m=>Math.max(0,Math.min(1,m)),g=m=>{if(i?.canceled){s();return}n?.aborted?o("aborted"):(t.onUpdate(A(u(d(h(m))))),m<l?e(g):(t.onUpdate(A(u(1))),s()))};e(g)});return t.delay?i?.canceled?Promise.resolve():n?.aborted?Promise.reject("aborted"):Pk(t.delay).then(r):r()}class Uk{#e;#t;#n;#i;#s;#o;#r=null;constructor({getScale:e,getAnimator:n,getInitialDomainSnapshot:i,getResetDomain:r,fromComplexInterval:s,getGenomeExtent:o}){this.#e=e,this.#t=n,this.#n=i,this.#i=r,this.#s=s,this.#o=o}getZoomExtent(){const e=this.#e(),n=e.props.zoom;return _k(e,n,this.#s,this.#o,this.#n)}isZoomable(){return this.isZoomingSupported()&&!!this.#e().props.zoom}isZoomingSupported(){const e=this.#e().type;return Pe(e)&&!on(e)}getDomainChangeAction(e,n){return Hi(n,e)?"none":this.isZoomable()?"restore":this.isZoomingSupported()?"animate":"notify"}isZoomed(){return this.isZoomingSupported()&&Hi(this.#i(),this.#e().domain())}zoom(e,n,i){if(!this.isZoomingSupported())return!1;const r=this.#e(),s=r.domain();let o=Gk(r,s,e,n,i);const a=this.getZoomExtent();return o=SI(o,a[0],a[1]),[0,1].some(l=>o[l]!=s[l])?(r.domain(o),!0):!1}async zoomTo(e,n=!1){if(zr(n)&&(n=n?700:0),!this.isZoomingSupported())throw new Error("Not a zoomable scale!");const i=this.#s(e),r=this.#t(),s=this.#e(),o=s.domain();if(n>0&&o.length==2){const a=o[1]-o[0],l=i[1]-i[0],c=o[0]+a/2,f=i[0]+l/2,u=o[0]==i[0],h=o[1]==i[1];this.#a();const A=Lk();this.#r=A,await r.transition({duration:n,easingFunction:Mk,cancelToken:A,onUpdate:d=>{const g=Tk(a,l,d),m=a==l?d:(a-g)/(a-l),p=m*f+(1-m)*c,w=[u?o[0]:p-g/2,h?o[1]:p+g/2];s.domain(w)}}),this.#r===A&&(this.#r=null),s.domain(i)}else this.#a(),s.domain(i),r?.requestRender()}#a(){this.#r&&(this.#r.canceled=!0,this.#r=null)}resetZoom(){if(!this.isZoomingSupported())throw new Error("Not a zoomable scale!");const e=this.#e(),n=e.domain(),i=this.#i();return[0,1].some(r=>i[r]!=n[r])?(e.domain(i),!0):!1}getZoomLevel(){return this.isZoomable()?Hr(this.getZoomExtent())/Hr(this.#e().domain()):1}}function _k(t,e,n,i,r){return zk(e)&&Ce(e.extent)?n(e.extent):e&&t.props.type=="locus"?i():r()}function Gk(t,e,n,i,r){let s=[...e],o=t.invert(i);switch(t.props.reverse&&(r=-r),"align"in t&&(o+=t.align()),t.type){case"linear":case"index":case"locus":s=bI(s,r||0),s=dh(s,o,n);break;case"log":s=xI(s,r||0),s=gh(s,o,n);break;case"pow":case"sqrt":{const a=t;s=BI(s,r||0,a.exponent()),s=el(s,o,n,a.exponent());break}default:throw new Error("Zooming is not implemented for: "+t.type)}return s}function zk(t){return Ge(t)}ie("index",hu,["continuous"]),ie("locus",J4,["continuous"]),ie("null",su,[]);class Hk{#e=new Set;#t=new Set;#n={domain:new Set,range:new Set};#i;#s;#o;#r;#a=!1;constructor(e){this.channel=e,this.type=null,this.name=void 0,this.#s=new kk({getMembers:()=>this.#l(),getDataMembers:()=>this.#l(this.#t),getType:()=>this.type,getLocusExtent:()=>this.#u(),fromComplexInterval:this.fromComplexInterval.bind(this)}),this.#i=new Ek({getParamRuntime:()=>this.#c.paramRuntime,onRangeChange:()=>this.#h("range"),onDomainChange:()=>this.#h("domain"),getGenomeStore:()=>this.#f.genomeStore}),this.#o=new Uk({getScale:()=>this.getScale(),getAnimator:()=>this.#f.animator,getInitialDomainSnapshot:()=>this.#s.initialDomainSnapshot,getResetDomain:()=>this.#s.getConfiguredOrDefaultDomain(),fromComplexInterval:this.fromComplexInterval.bind(this),getGenomeExtent:()=>this.#u()})}get#c(){const e=this.#e.values().next().value;if(!e)throw new Error("ScaleResolution has no members!");return e.view}#l(e=this.#e){const n=new Set;for(const i of e){const r=i.view;r.isConfiguredVisible()&&(!r.isDataInitialized()&&!i.channelDef?.scale?.domain||n.add(i))}return n}get#f(){return this.#c.context}get zoomExtent(){return(this.#i.scale&&Pe(this.#i.scale.type)&&this.#o.getZoomExtent())??[-1/0,1/0]}#u(){return Z4(this.#A())}#A(){if(this.type===Ys)return this.#i.scale??this.#i.getLocusGenome()}addEventListener(e,n){this.#n[e].add(n)}removeEventListener(e,n){this.#n[e].delete(n)}#h(e){for(const n of this.#n[e].values())n({type:e,scaleResolution:this})}#d(e){const{channel:n,channelDef:i}=e,r=i.type==null&&this.type;if(n!="sample"&&!i.type&&!Ll(n)&&!r)throw new Error(`The "type" property must be defined in channel definition: "${n}": ${JSON.stringify(i)}. Must be one of: "quantitative", "ordinal", "nominal", "locus", "index"`);const s=n=="sample"?"nominal":i.type,o=i?.scale?.name;if(o){if(this.name!==void 0&&o!=this.name)throw new Error(`Shared scales have conflicting names: "${o}" vs. "${this.name}"!`);this.name=o}if(!r){if(!this.type)this.type=s;else if(s!==this.type&&!Ll(n))throw new Error(`Can not use shared scale for different data types: ${this.type} vs. ${s}. Use "resolve: independent" for channel ${this.channel}`)}this.#e.add(e),e.contributesToDomain&&this.#t.add(e),this.#s.invalidateConfiguredDomain()}registerMember(e){return this.#d(e),()=>{const n=this.#e.delete(e);return n&&(this.#t.delete(e),this.#s.invalidateConfiguredDomain()),n&&this.#e.size===0}}dispose(){this.#n.domain.clear(),this.#n.range.clear(),this.#i.dispose()}#g(){for(const e of this.#e)if(e.view.hasRendered())return!0;return!1}registerCollectorSubscriptions(e,n){const i=new Set;for(const o of n)o.channelDef.domainInert||i.add(Ud(o,this.type));if(i.size===0)return()=>{};const r=()=>{this.reconfigureDomain()},s=[];for(const o of i)s.push(e.subscribeDomainChanges(o,r));return()=>{for(const o of s)o()}}#p(){return this.#s.hasConfiguredDomain()}#w(){const e=this.#i.scale;if(!e)return!1;const n=e.domain();return Pe(e.type)?n.length>2||n.length==2&&(n[0]!==0||n[1]!==0):n.length>0}#y(){return Sk({channel:this.channel,dataType:this.type,members:this.#e,isExplicitDomain:this.#p()})}#m(e=!1){const n=this.#y();if(n===null||n.type=="null")return{type:"null"};const i=this.#s.getConfiguredOrDefaultDomain(e);if(on(n.type)){const r=this.#p(),s=this.#C(r);if(i!=null){if(r&&s.domain().length>0&&!Hi(s.domain(),i))return this.#r=void 0,this.#m(e);s.addAll(i);const o=new Set(i),a=s.domain().filter(l=>o.has(l));n.domain=a.length>0?a:new yu}else{const o=s.domain();n.domain=o.length>0?o:new yu}n.domainIndexer=s}else i&&i.length>0&&(n.domain=i);return!n.domain&&n.domainMid!==void 0&&(n.domain=[n.domainMin??0,n.domainMax??1]),n}#C(e){return(!this.#r||this.#a!==e)&&(this.#r=Xp(),this.#a=e),this.#r}reconfigure(){this.#s.invalidateConfiguredDomain();const e=this.#E(!0);e&&(this.#I(e,(n,i)=>this.#i.reconfigureScale(i)),this.#b(e))}reconfigureDomain(){const e=this.#E(!0,!0);if(!e)return;const{domainConfig:n,targetDomain:i}=e,r=i!=null&&Hi(i,e.scale.domain());i!=null&&!r&&this.#I(e,s=>{s.domain(i),n.applyOrdinalUnknown&&s.unknown(n.ordinalUnknown)}),this.#b(e)}#E(e,n=!1){const i=this.#i.scale;if(!i||i.type=="null")return;const r={scale:i,props:this.#m(e),previousDomain:i.domain(),domainWasInitialized:this.#w()};if(n){const s=pm(i,r.props);return{...r,domainConfig:s,targetDomain:s.domain}}return r}#I(e,n){this.#i.withDomainNotificationsSuppressed(()=>{n(e.scale,e.props)})}#b(e){const{scale:n,previousDomain:i,domainWasInitialized:r}=e;if(this.#s.captureInitialDomain(n,r)){this.#h("domain");return}const s=n.domain(),o=this.#o.getDomainChangeAction(i,s);o==="restore"?this.#i.withDomainNotificationsSuppressed(()=>{n.domain(i)}):o==="animate"?this.#g()?(this.#i.withDomainNotificationsSuppressed(()=>{n.domain(i)}),this.zoomTo(s,500)):this.#h("domain"):o==="notify"&&this.#h("domain")}get scale(){if(this.#i.scale)return this.#i.scale;throw new Error("ScaleResolution.scale accessed before initialization. Call initializeScale().")}getScale(){return this.#i.scale??this.initializeScale()}initializeScale(){if(this.#i.scale)return this.#i.scale;const e=this.#m();return this.#i.createScale(e)}getDomain(){return this.getScale().domain()}getDataDomain(){return this.#s.getDataDomain()}getComplexDomain(){return X4(this.#A(),this.getDomain())}isZoomed(){return this.#o.isZoomed()}isZoomable(){return this.#o.isZoomable()}zoom(e,n,i){return this.#o.zoom(e,n,i)}async zoomTo(e,n=!1){return this.#o.zoomTo(e,n)}resetZoom(){return this.#o.resetZoom()}getZoomLevel(){return this.#o.getZoomLevel()}getAxisLength(){if(this.channel!=="x"&&this.channel!=="y")throw new Error("Axis length is only defined for x and y channels!");const e=Array.from(this.#e).map(n=>n.view.coords?.[this.channel==="x"?"width":"height"]).filter(n=>n>0);return e.length?e.reduce((n,i)=>Math.min(n,i),1e4):0}invertToComplex(e){const n=this.getScale();if("invert"in n){const i=n.invert(e);return this.toComplex(i)}else throw new Error("The scale does not support inverting!")}toComplex(e){return K4(this.#A(),e)}fromComplex(e){return j4(this.#A(),e)}fromComplexInterval(e){return this.type==Ys?W4(this.#A(),e):e}}function Cu(...t){for(const e of t)if(e!==void 0)return e}class Yk{#e=new Set;constructor(e){this.channel=e}get scaleResolution(){return this.#e.values().next().value?.view.getScaleResolution(this.channel)}#t(e){const{view:n}=e,i=n.getScaleResolution(this.channel);if(!i)throw new Error("Cannot find a scale resolution!");if(this.scaleResolution&&i!==this.scaleResolution)throw new Error(`Shared axes must have a shared scale! Channel: ${this.channel}, existing views: [${Array.from(this.#e).map(r=>r.view.getPathString()).join(", ")}], new view: ${n.getPathString()}.`);this.#e.add(e),uu(this,"axisProps")}registerMember(e){return this.#t(e),()=>this.removeMember(e)&&this.#e.size===0}removeMember(e){const n=this.#e.delete(e);return n&&uu(this,"axisProps"),n}getAxisProps(){return Ka(this,"axisProps",()=>{const e=Array.from(this.#e).map(n=>{const i=n.view.mark.encoding[n.channel];return"axis"in i&&i.axis});return e.length>0&&e.some(n=>n===null)?null:Wa(e.filter(n=>n!==void 0),"axis",["title"])})}getTitle(){const e=o=>{const a=Vx(o.view,o.channel);if(!ut(a))return{member:o,axisTitle:"axis"in a?a.axis?.title:void 0,explicitTitle:Cu("axis"in a?a.axis?.title:void 0,a.title),implicitTitle:Cu(tn(a)?a.field:void 0,Vi(a)?a.expr:void 0)}},n=Array.from(this.#e).map(e),i=n.map(o=>o.axisTitle).find(o=>o!==void 0);if(i!==void 0)return i;const r=n.filter(o=>{if(Ll(o.member.channel)&&!o.explicitTitle){const a=In(o.member.channel);return n.find(l=>l.member.view==o.member.view&&l.member.channel==a)?.explicitTitle===void 0}return!0}),s=new Set(r.map(o=>Cu(o.explicitTitle,o.implicitTitle)).filter(le));return s.size?[...s].join(", "):null}}function Bm(t,e,{spacing:n,devicePixelRatio:i,offset:r,reverse:s}={}){n=n||0,r=r||0;let o=0,a=0;for(const d of t)o+=Za(d.px)+(Eu(d)?0:n),a+=Za(d.grow);o-=n;const l=Math.max(0,e-o),c=i!==void 0?d=>Math.round(d*i)/i:d=>d,f=[],u=[],h=d=>{const g=f.length;if(!g)return;const m=(d?n:0)*(s?-1:1);A-=m;for(let p=0;p<g;p++)u.push({location:A+(p+1)/(g+1)*m,size:0});A+=m,f.length=0};let A=s?Math.max(e,o):0+r;if(t.length==1&&Eu(t[0]))return[{location:A,size:0}];for(let d=0;d<t.length;d++){const g=t[d];if(Eu(g))f.push(g);else{h(u.length>0);const m=Za(g.px)+(a?Za(g.grow)/a*l:0);s&&(A-=m),u.push({location:c(A),size:c(m)}),s?A-=n:A+=m+n}}return A+=s?n:-n,h(!1),u}function Vk(t){let e=0,n=0;for(const i of t)e=Math.max(e,i.px??0),n=Math.max(n,i.grow??0);return{px:e,grow:n}}class Pn{constructor(e,n){this.width=e,this.height=n}addPadding(e){return this.#e(e.width,e.height)}subtractPadding(e){return this.#e(-e.width,-e.height)}#e(e,n){return new Pn({px:(this.width.px??0)+e,grow:this.width.grow},{px:(this.height.px??0)+n,grow:this.height.grow})}isGrowing(){return!!(this.width.grow||this.height.grow)}}const Js=Object.freeze({px:0,grow:0}),vm=new Pn(Js,Js);function Eu(t){return!t.px&&!t.grow}function Za(t){return t||0}function Jk(t){return t&&(Ve(t.px)||Ve(t.grow))}function Sm(t){if(Fu(t))throw new Error("parseSizeDef does not accept step-based sizes.");if(Jk(t))return t;if(Ve(t))return{px:t,grow:0};if(t==="container")return{px:0,grow:1};if(!t)return{px:0,grow:1};throw new Error(`Invalid sizeDef: ${t}`)}class qe{constructor(e,n,i,r){this.top=e||0,this.right=n||0,this.bottom=i||0,this.left=r||0}get width(){return this.left+this.right}get height(){return this.top+this.bottom}expand(e){return e<=0?this:new qe(this.top+e,this.right+e,this.bottom+e,this.left+e)}add(e){return new qe(this.top+e.top,this.right+e.right,this.bottom+e.bottom,this.left+e.left)}subtract(e){return new qe(this.top-e.top,this.right-e.right,this.bottom-e.bottom,this.left-e.left)}union(e){return new qe(Math.max(this.top,e.top),Math.max(this.right,e.right),Math.max(this.bottom,e.bottom),Math.max(this.left,e.left))}getHorizontal(){return new qe(0,this.right,0,this.left)}getVertical(){return new qe(this.top,0,this.bottom,0)}get horizontalTotal(){return this.left+this.right}get verticalTotal(){return this.top+this.bottom}static createFromConfig(e){return typeof e=="number"?this.createUniformPadding(e):e?this.createFromRecord(e):Iu}static createFromRecord(e){return new qe(e.top,e.right,e.bottom,e.left)}static zero(){return Iu}static createUniformPadding(e){return new qe(e,e,e,e)}}const Iu=qe.createUniformPadding(0);Object.freeze(Iu);class ur{constructor(){this.ids=[],this.values=[],this.length=0}clear(){this.length=0}push(e,n){let i=this.length++;for(;i>0;){const r=i-1>>1,s=this.values[r];if(n>=s)break;this.ids[i]=this.ids[r],this.values[i]=s,i=r}this.ids[i]=e,this.values[i]=n}pop(){if(this.length===0)return;const e=this.ids,n=this.values,i=e[0],r=--this.length;if(r>0){const s=e[r],o=n[r];let a=0;const l=r>>1;for(;a<l;){const c=(a<<1)+1,f=c+1,u=c+(+(f<r)&+(n[f]<n[c]));if(n[u]>=o)break;e[a]=e[u],n[a]=n[u],a=u}e[a]=s,n[a]=o}return i}peek(){return this.length>0?this.ids[0]:void 0}peekValue(){return this.length>0?this.values[0]:void 0}shrink(){this.ids.length=this.values.length=this.length}}const Qm=Symbol("runtimeNode"),Dm=1e6;function qk(t){return t?(e,n)=>{t.addDisposer(e,n)}:()=>{}}function km(t,e){const n={id:t.id,name:t.name,kind:t.kind,get(){return t.value},subscribe(i){return t.listeners.add(i),()=>{t.listeners.delete(i)}}};return Object.defineProperty(n,Qm,{enumerable:!1,configurable:!1,writable:!1,value:t}),e?Object.assign(n,{set(i){e(i)}}):n}function Fm(t){const e=t[Qm];if(!e)throw new Error("ParamRef is not bound to this graph runtime. Expected runtime-created ref.");return e}function Rm(t){for(const e of t)e()}class Kk{#e=1;#t=1;#n=0;#i=!1;#s=!1;#o=new Set;#r=new Set;#a=new ur;#c=new ur;#l=new Set;#f;constructor(e={}){this.#f=qk(e.lifecycleRegistry)}createWritable(e,n,i,r,s={}){const o="n"+this.#e++,a=s.notify??!0,l={id:o,name:n,kind:i,value:r,rank:0,disposed:!1,listeners:new Set,subscribe(f){return l.listeners.add(f),()=>{l.listeners.delete(f)}}},c=f=>{if(l.disposed)throw new Error('Cannot set disposed parameter "'+n+'" ('+o+").");f!==l.value&&(l.value=f,a&&(Rm(l.listeners),this.#d()))};return this.#f(e,()=>{l.disposed=!0,l.listeners.clear()}),km(l,c)}computed(e,n,i,r){const o=i.map(Fm).reduce((h,A)=>Math.max(h,A.rank),0),l={id:"n"+this.#e++,name:n,kind:"derived",rank:o+1,value:r(),disposed:!1,listeners:new Set,fn:r,subscribe(h){return l.listeners.add(h),()=>{l.listeners.delete(h)}}},c=()=>{l.disposed||this.#u(l)},f=i.map(h=>h.subscribe(c)),u=()=>{l.disposed||(l.disposed=!0,f.forEach(h=>h()),l.listeners.clear(),this.#o.delete(l))};return this.#f(e,u),km(l)}effect(e,n,i){const s=n.map(Fm).reduce((u,h)=>Math.max(u,h.rank),0),a={id:"n"+this.#e++,rank:s+1,disposed:!1,fn:i},l=()=>{a.disposed||this.#A(a)},c=n.map(u=>u.subscribe(l)),f=()=>{a.disposed||(a.disposed=!0,c.forEach(u=>u()),this.#r.delete(a))};return this.#f(e,f),f}runInTransaction(e){this.#n+=1;try{return e()}finally{this.#n-=1,this.#n===0&&this.#d()}}flushNow(){if(!(this.#n>0||this.#s)){this.#i=!1,this.#s=!0;try{let e=!0;for(;e;){for(e=!1;this.#a.length>0;){e=!0;const n=this.#a.pop();if(this.#o.delete(n),n.disposed)continue;const i=n.value,r=n.fn();r!==i&&(n.value=r,Rm(n.listeners))}for(;this.#c.length>0;){e=!0;const n=this.#c.pop();this.#r.delete(n),!n.disposed&&n.fn()}}}finally{this.#s=!1,this.#p()}}}whenPropagated(e={}){if(this.#g())return Promise.resolve();const{signal:n,timeoutMs:i}=e;return n?.aborted?Promise.reject(new Error("whenPropagated aborted")):new Promise((r,s)=>{const o={resolve:r,reject:s};n&&(o.abortHandler=()=>{this.#l.delete(o),s(new Error("whenPropagated aborted"))},n.addEventListener("abort",o.abortHandler,{once:!0})),i!=null&&(o.timeoutId=setTimeout(()=>{this.#l.delete(o),o.abortHandler&&n?.removeEventListener("abort",o.abortHandler),s(new Error("whenPropagated timeout after "+i+" ms"))},i)),this.#l.add(o)})}#u(e){this.#o.has(e)||(this.#o.add(e),this.#a.push(e,this.#h(e.rank)),this.#d())}#A(e){this.#r.has(e)||(this.#r.add(e),this.#c.push(e,this.#h(e.rank)),this.#d())}#h(e){const n=this.#t%Dm;return this.#t+=1,e*Dm+n}#d(){this.#n>0||this.#i||this.#s||(this.#i=!0,queueMicrotask(()=>{this.flushNow()}))}#g(){return this.#n===0&&!this.#i&&!this.#s&&this.#a.length===0&&this.#c.length===0&&this.#o.size===0&&this.#r.size===0}#p(){if(this.#g()){for(const e of this.#l)e.timeoutId&&clearTimeout(e.timeoutId),e.resolve();this.#l.clear()}}}class jk{#e=1;#t=new Map;createOwner(e,n){const i=e+":"+n+":"+this.#e++;return this.#t.set(i,new Set),i}addDisposer(e,n){const i=this.#t.get(e);if(!i)throw new Error("Unknown owner: "+e);i.add(n)}disposeOwner(e){const n=this.#t.get(e);if(n){for(const i of n)i();n.clear(),this.#t.delete(e)}}}class Wk{#e=1;#t=new Map;createRootScope(e){const n="scope:"+this.#e++;return this.#t.set(n,{params:new Map,ownerId:e}),n}createChildScope(e,n){if(!this.#t.has(n))throw new Error("Unknown parent scope: "+n);const i="scope:"+this.#e++;return this.#t.set(i,{parentScope:n,params:new Map,ownerId:e}),i}getOwnerId(e){const n=this.#t.get(e);if(!n)throw new Error("Unknown scope: "+e);return n.ownerId}clearScope(e){const n=this.#t.get(e);if(!n)throw new Error("Unknown scope: "+e);n.params.clear()}register(e,n,i){Tt(n);const r=this.#t.get(e);if(!r)throw new Error("Unknown scope: "+e);if(r.params.has(n))throw new Error('Parameter "'+n+'" already exists in scope '+e);return r.params.set(n,i),i}resolve(e,n){Tt(n);let i=e;for(;i;){const r=this.#t.get(i);if(!r)throw new Error("Unknown scope: "+i);const s=r.params.get(n);if(s)return s;i=r.parentScope}}}const Xk="RawCode",Zk="Literal",$k="Property",e8="Identifier",t8="ArrayExpression",n8="BinaryExpression",i8="CallExpression",r8="ConditionalExpression",s8="LogicalExpression",o8="MemberExpression",a8="ObjectExpression",c8="UnaryExpression";function Dt(t){this.type=t}Dt.prototype.visit=function(t){let e,n,i;if(t(this))return 1;for(e=l8(this),n=0,i=e.length;n<i;++n)if(e[n].visit(t))return 1};function l8(t){switch(t.type){case t8:return t.elements;case n8:case s8:return[t.left,t.right];case i8:return[t.callee].concat(t.arguments);case r8:return[t.test,t.consequent,t.alternate];case o8:return[t.object,t.property];case a8:return t.properties;case $k:return[t.key,t.value];case c8:return[t.argument];case e8:case Zk:case Xk:default:return[]}}var Ht,G,k,Ke,re,$a=1,qs=2,mi=3,Ln=4,ec=5,wi=6,at=7,Ks=8,f8=9;Ht={},Ht[$a]="Boolean",Ht[qs]="<end>",Ht[mi]="Identifier",Ht[Ln]="Keyword",Ht[ec]="Null",Ht[wi]="Numeric",Ht[at]="Punctuator",Ht[Ks]="String",Ht[f8]="RegularExpression";var u8="ArrayExpression",A8="BinaryExpression",h8="CallExpression",d8="ConditionalExpression",Nm="Identifier",g8="Literal",p8="LogicalExpression",m8="MemberExpression",w8="ObjectExpression",y8="Property",C8="UnaryExpression",Le="Unexpected token %0",E8="Unexpected number",I8="Unexpected string",b8="Unexpected identifier",x8="Unexpected reserved word",B8="Unexpected end of input",bu="Invalid regular expression",xu="Invalid regular expression: missing /",Mm="Octal literals are not allowed in strict mode.",v8="Duplicate data property in object literal not allowed in strict mode",Ye="ILLEGAL",js="Disabled.",S8=new RegExp("[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),Q8=new RegExp("[\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0300-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u0483-\\u0487\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0610-\\u061A\\u0620-\\u0669\\u066E-\\u06D3\\u06D5-\\u06DC\\u06DF-\\u06E8\\u06EA-\\u06FC\\u06FF\\u0710-\\u074A\\u074D-\\u07B1\\u07C0-\\u07F5\\u07FA\\u0800-\\u082D\\u0840-\\u085B\\u08A0-\\u08B2\\u08E4-\\u0963\\u0966-\\u096F\\u0971-\\u0983\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BC-\\u09C4\\u09C7\\u09C8\\u09CB-\\u09CE\\u09D7\\u09DC\\u09DD\\u09DF-\\u09E3\\u09E6-\\u09F1\\u0A01-\\u0A03\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A3C\\u0A3E-\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A59-\\u0A5C\\u0A5E\\u0A66-\\u0A75\\u0A81-\\u0A83\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABC-\\u0AC5\\u0AC7-\\u0AC9\\u0ACB-\\u0ACD\\u0AD0\\u0AE0-\\u0AE3\\u0AE6-\\u0AEF\\u0B01-\\u0B03\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3C-\\u0B44\\u0B47\\u0B48\\u0B4B-\\u0B4D\\u0B56\\u0B57\\u0B5C\\u0B5D\\u0B5F-\\u0B63\\u0B66-\\u0B6F\\u0B71\\u0B82\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BBE-\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCD\\u0BD0\\u0BD7\\u0BE6-\\u0BEF\\u0C00-\\u0C03\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D-\\u0C44\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C58\\u0C59\\u0C60-\\u0C63\\u0C66-\\u0C6F\\u0C81-\\u0C83\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBC-\\u0CC4\\u0CC6-\\u0CC8\\u0CCA-\\u0CCD\\u0CD5\\u0CD6\\u0CDE\\u0CE0-\\u0CE3\\u0CE6-\\u0CEF\\u0CF1\\u0CF2\\u0D01-\\u0D03\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D-\\u0D44\\u0D46-\\u0D48\\u0D4A-\\u0D4E\\u0D57\\u0D60-\\u0D63\\u0D66-\\u0D6F\\u0D7A-\\u0D7F\\u0D82\\u0D83\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0DCA\\u0DCF-\\u0DD4\\u0DD6\\u0DD8-\\u0DDF\\u0DE6-\\u0DEF\\u0DF2\\u0DF3\\u0E01-\\u0E3A\\u0E40-\\u0E4E\\u0E50-\\u0E59\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB9\\u0EBB-\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EC8-\\u0ECD\\u0ED0-\\u0ED9\\u0EDC-\\u0EDF\\u0F00\\u0F18\\u0F19\\u0F20-\\u0F29\\u0F35\\u0F37\\u0F39\\u0F3E-\\u0F47\\u0F49-\\u0F6C\\u0F71-\\u0F84\\u0F86-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u1000-\\u1049\\u1050-\\u109D\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u135D-\\u135F\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1714\\u1720-\\u1734\\u1740-\\u1753\\u1760-\\u176C\\u176E-\\u1770\\u1772\\u1773\\u1780-\\u17D3\\u17D7\\u17DC\\u17DD\\u17E0-\\u17E9\\u180B-\\u180D\\u1810-\\u1819\\u1820-\\u1877\\u1880-\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1920-\\u192B\\u1930-\\u193B\\u1946-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19B0-\\u19C9\\u19D0-\\u19D9\\u1A00-\\u1A1B\\u1A20-\\u1A5E\\u1A60-\\u1A7C\\u1A7F-\\u1A89\\u1A90-\\u1A99\\u1AA7\\u1AB0-\\u1ABD\\u1B00-\\u1B4B\\u1B50-\\u1B59\\u1B6B-\\u1B73\\u1B80-\\u1BF3\\u1C00-\\u1C37\\u1C40-\\u1C49\\u1C4D-\\u1C7D\\u1CD0-\\u1CD2\\u1CD4-\\u1CF6\\u1CF8\\u1CF9\\u1D00-\\u1DF5\\u1DFC-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u200C\\u200D\\u203F\\u2040\\u2054\\u2071\\u207F\\u2090-\\u209C\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D7F-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2DE0-\\u2DFF\\u2E2F\\u3005-\\u3007\\u3021-\\u302F\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u3099\\u309A\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA62B\\uA640-\\uA66F\\uA674-\\uA67D\\uA67F-\\uA69D\\uA69F-\\uA6F1\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA827\\uA840-\\uA873\\uA880-\\uA8C4\\uA8D0-\\uA8D9\\uA8E0-\\uA8F7\\uA8FB\\uA900-\\uA92D\\uA930-\\uA953\\uA960-\\uA97C\\uA980-\\uA9C0\\uA9CF-\\uA9D9\\uA9E0-\\uA9FE\\uAA00-\\uAA36\\uAA40-\\uAA4D\\uAA50-\\uAA59\\uAA60-\\uAA76\\uAA7A-\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEF\\uAAF2-\\uAAF6\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABEA\\uABEC\\uABED\\uABF0-\\uABF9\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE00-\\uFE0F\\uFE20-\\uFE2D\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF10-\\uFF19\\uFF21-\\uFF3A\\uFF3F\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]");function tc(t,e){if(!t)throw new Error("ASSERT: "+e)}function an(t){return t>=48&&t<=57}function Bu(t){return"0123456789abcdefABCDEF".includes(t)}function Ws(t){return"01234567".includes(t)}function D8(t){return t===32||t===9||t===11||t===12||t===160||t>=5760&&[5760,6158,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279].includes(t)}function Xs(t){return t===10||t===13||t===8232||t===8233}function Zs(t){return t===36||t===95||t>=65&&t<=90||t>=97&&t<=122||t===92||t>=128&&S8.test(String.fromCharCode(t))}function nc(t){return t===36||t===95||t>=65&&t<=90||t>=97&&t<=122||t>=48&&t<=57||t===92||t>=128&&Q8.test(String.fromCharCode(t))}const k8={if:1,in:1,do:1,var:1,for:1,new:1,try:1,let:1,this:1,else:1,case:1,void:1,with:1,enum:1,while:1,break:1,catch:1,throw:1,const:1,yield:1,class:1,super:1,return:1,typeof:1,delete:1,switch:1,export:1,import:1,public:1,static:1,default:1,finally:1,extends:1,package:1,private:1,function:1,continue:1,debugger:1,interface:1,protected:1,instanceof:1,implements:1};function Tm(){for(;k<Ke;){const t=G.charCodeAt(k);if(D8(t)||Xs(t))++k;else break}}function vu(t){var e,n,i,r=0;for(n=t==="u"?4:2,e=0;e<n;++e)k<Ke&&Bu(G[k])?(i=G[k++],r=r*16+"0123456789abcdef".indexOf(i.toLowerCase())):ee({},Le,Ye);return String.fromCharCode(r)}function F8(){var t,e,n,i;for(t=G[k],e=0,t==="}"&&ee({},Le,Ye);k<Ke&&(t=G[k++],!!Bu(t));)e=e*16+"0123456789abcdef".indexOf(t.toLowerCase());return(e>1114111||t!=="}")&&ee({},Le,Ye),e<=65535?String.fromCharCode(e):(n=(e-65536>>10)+55296,i=(e-65536&1023)+56320,String.fromCharCode(n,i))}function Pm(){var t,e;for(t=G.charCodeAt(k++),e=String.fromCharCode(t),t===92&&(G.charCodeAt(k)!==117&&ee({},Le,Ye),++k,t=vu("u"),(!t||t==="\\"||!Zs(t.charCodeAt(0)))&&ee({},Le,Ye),e=t);k<Ke&&(t=G.charCodeAt(k),!!nc(t));)++k,e+=String.fromCharCode(t),t===92&&(e=e.substr(0,e.length-1),G.charCodeAt(k)!==117&&ee({},Le,Ye),++k,t=vu("u"),(!t||t==="\\"||!nc(t.charCodeAt(0)))&&ee({},Le,Ye),e+=t);return e}function R8(){var t,e;for(t=k++;k<Ke;){if(e=G.charCodeAt(k),e===92)return k=t,Pm();if(nc(e))++k;else break}return G.slice(t,k)}function N8(){var t,e,n;return t=k,e=G.charCodeAt(k)===92?Pm():R8(),e.length===1?n=mi:k8.hasOwnProperty(e)?n=Ln:e==="null"?n=ec:e==="true"||e==="false"?n=$a:n=mi,{type:n,value:e,start:t,end:k}}function Su(){var t=k,e=G.charCodeAt(k),n,i=G[k],r,s,o;switch(e){case 46:case 40:case 41:case 59:case 44:case 123:case 125:case 91:case 93:case 58:case 63:case 126:return++k,{type:at,value:String.fromCharCode(e),start:t,end:k};default:if(n=G.charCodeAt(k+1),n===61)switch(e){case 43:case 45:case 47:case 60:case 62:case 94:case 124:case 37:case 38:case 42:return k+=2,{type:at,value:String.fromCharCode(e)+String.fromCharCode(n),start:t,end:k};case 33:case 61:return k+=2,G.charCodeAt(k)===61&&++k,{type:at,value:G.slice(t,k),start:t,end:k}}}if(o=G.substr(k,4),o===">>>=")return k+=4,{type:at,value:o,start:t,end:k};if(s=o.substr(0,3),s===">>>"||s==="<<="||s===">>=")return k+=3,{type:at,value:s,start:t,end:k};if(r=s.substr(0,2),i===r[1]&&"+-<>&|".includes(i)||r==="=>")return k+=2,{type:at,value:r,start:t,end:k};if(r==="//"&&ee({},Le,Ye),"<>=!+-*%&|^/".includes(i))return++k,{type:at,value:i,start:t,end:k};ee({},Le,Ye)}function M8(t){let e="";for(;k<Ke&&Bu(G[k]);)e+=G[k++];return e.length===0&&ee({},Le,Ye),Zs(G.charCodeAt(k))&&ee({},Le,Ye),{type:wi,value:parseInt("0x"+e,16),start:t,end:k}}function T8(t){let e="0"+G[k++];for(;k<Ke&&Ws(G[k]);)e+=G[k++];return(Zs(G.charCodeAt(k))||an(G.charCodeAt(k)))&&ee({},Le,Ye),{type:wi,value:parseInt(e,8),octal:!0,start:t,end:k}}function Lm(){var t,e,n;if(n=G[k],tc(an(n.charCodeAt(0))||n===".","Numeric literal must start with a decimal digit or a decimal point"),e=k,t="",n!=="."){if(t=G[k++],n=G[k],t==="0"){if(n==="x"||n==="X")return++k,M8(e);if(Ws(n))return T8(e);n&&an(n.charCodeAt(0))&&ee({},Le,Ye)}for(;an(G.charCodeAt(k));)t+=G[k++];n=G[k]}if(n==="."){for(t+=G[k++];an(G.charCodeAt(k));)t+=G[k++];n=G[k]}if(n==="e"||n==="E")if(t+=G[k++],n=G[k],(n==="+"||n==="-")&&(t+=G[k++]),an(G.charCodeAt(k)))for(;an(G.charCodeAt(k));)t+=G[k++];else ee({},Le,Ye);return Zs(G.charCodeAt(k))&&ee({},Le,Ye),{type:wi,value:parseFloat(t),start:e,end:k}}function P8(){var t="",e,n,i,r,s=!1;for(e=G[k],tc(e==="'"||e==='"',"String literal must starts with a quote"),n=k,++k;k<Ke;)if(i=G[k++],i===e){e="";break}else if(i==="\\")if(i=G[k++],!i||!Xs(i.charCodeAt(0)))switch(i){case"u":case"x":G[k]==="{"?(++k,t+=F8()):t+=vu(i);break;case"n":t+=`
|
|
601
|
+
`;break;case"r":t+="\r";break;case"t":t+=" ";break;case"b":t+="\b";break;case"f":t+="\f";break;case"v":t+="\v";break;default:Ws(i)?(r="01234567".indexOf(i),r!==0&&(s=!0),k<Ke&&Ws(G[k])&&(s=!0,r=r*8+"01234567".indexOf(G[k++]),"0123".includes(i)&&k<Ke&&Ws(G[k])&&(r=r*8+"01234567".indexOf(G[k++]))),t+=String.fromCharCode(r)):t+=i;break}else i==="\r"&&G[k]===`
|
|
602
|
+
`&&++k;else{if(Xs(i.charCodeAt(0)))break;t+=i}return e!==""&&ee({},Le,Ye),{type:Ks,value:t,octal:s,start:n,end:k}}function L8(t,e){let n=t;e.includes("u")&&(n=n.replace(/\\u\{([0-9a-fA-F]+)\}/g,(i,r)=>{if(parseInt(r,16)<=1114111)return"x";ee({},bu)}).replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"x"));try{new RegExp(n)}catch{ee({},bu)}try{return new RegExp(t,e)}catch{return null}}function O8(){var t,e,n,i,r;for(t=G[k],tc(t==="/","Regular expression literal must start with a slash"),e=G[k++],n=!1,i=!1;k<Ke;)if(t=G[k++],e+=t,t==="\\")t=G[k++],Xs(t.charCodeAt(0))&&ee({},xu),e+=t;else if(Xs(t.charCodeAt(0)))ee({},xu);else if(n)t==="]"&&(n=!1);else if(t==="/"){i=!0;break}else t==="["&&(n=!0);return i||ee({},xu),r=e.substr(1,e.length-2),{value:r,literal:e}}function U8(){var t,e,n;for(e="",n="";k<Ke&&(t=G[k],!!nc(t.charCodeAt(0)));)++k,t==="\\"&&k<Ke?ee({},Le,Ye):(n+=t,e+=t);return n.search(/[^gimuy]/g)>=0&&ee({},bu,n),{value:n,literal:e}}function _8(){var t,e,n,i;return re=null,Tm(),t=k,e=O8(),n=U8(),i=L8(e.value,n.value),{literal:e.literal+n.literal,value:i,regex:{pattern:e.value,flags:n.value},start:t,end:k}}function G8(t){return t.type===mi||t.type===Ln||t.type===$a||t.type===ec}function Om(){if(Tm(),k>=Ke)return{type:qs,start:k,end:k};const t=G.charCodeAt(k);return Zs(t)?N8():t===40||t===41||t===59?Su():t===39||t===34?P8():t===46?an(G.charCodeAt(k+1))?Lm():Su():an(t)?Lm():Su()}function ct(){const t=re;return k=t.end,re=Om(),k=t.end,t}function Um(){const t=k;re=Om(),k=t}function z8(t){const e=new Dt(u8);return e.elements=t,e}function _m(t,e,n){const i=new Dt(t==="||"||t==="&&"?p8:A8);return i.operator=t,i.left=e,i.right=n,i}function H8(t,e){const n=new Dt(h8);return n.callee=t,n.arguments=e,n}function Y8(t,e,n){const i=new Dt(d8);return i.test=t,i.consequent=e,i.alternate=n,i}function Qu(t){const e=new Dt(Nm);return e.name=t,e}function $s(t){const e=new Dt(g8);return e.value=t.value,e.raw=G.slice(t.start,t.end),t.regex&&(e.raw==="//"&&(e.raw="/(?:)/"),e.regex=t.regex),e}function Gm(t,e,n){const i=new Dt(m8);return i.computed=t==="[",i.object=e,i.property=n,i.computed||(n.member=!0),i}function V8(t){const e=new Dt(w8);return e.properties=t,e}function zm(t,e,n){const i=new Dt(y8);return i.key=e,i.value=n,i.kind=t,i}function J8(t,e){const n=new Dt(C8);return n.operator=t,n.argument=e,n.prefix=!0,n}function ee(t,e){var n,i=Array.prototype.slice.call(arguments,2),r=e.replace(/%(\d)/g,(s,o)=>(tc(o<i.length,"Message reference must be in range"),i[o]));throw n=new Error(r),n.index=k,n.description=r,n}function ic(t){t.type===qs&&ee(t,B8),t.type===wi&&ee(t,E8),t.type===Ks&&ee(t,I8),t.type===mi&&ee(t,b8),t.type===Ln&&ee(t,x8),ee(t,Le,t.value)}function je(t){const e=ct();(e.type!==at||e.value!==t)&&ic(e)}function he(t){return re.type===at&&re.value===t}function Du(t){return re.type===Ln&&re.value===t}function q8(){const t=[];for(k=re.start,je("[");!he("]");)he(",")?(ct(),t.push(null)):(t.push(yi()),he("]")||je(","));return ct(),z8(t)}function Hm(){k=re.start;const t=ct();return t.type===Ks||t.type===wi?(t.octal&&ee(t,Mm),$s(t)):Qu(t.value)}function K8(){var t,e,n,i;if(k=re.start,t=re,t.type===mi)return n=Hm(),je(":"),i=yi(),zm("init",n,i);if(t.type===qs||t.type===at)ic(t);else return e=Hm(),je(":"),i=yi(),zm("init",e,i)}function j8(){var t=[],e,n,i,r={},s=String;for(k=re.start,je("{");!he("}");)e=K8(),e.key.type===Nm?n=e.key.name:n=s(e.key.value),i="$"+n,Object.prototype.hasOwnProperty.call(r,i)?ee({},v8):r[i]=!0,t.push(e),he("}")||je(",");return je("}"),V8(t)}function W8(){je("(");const t=ku();return je(")"),t}const X8={if:1};function Z8(){var t,e,n;if(he("("))return W8();if(he("["))return q8();if(he("{"))return j8();if(t=re.type,k=re.start,t===mi||X8[re.value])n=Qu(ct().value);else if(t===Ks||t===wi)re.octal&&ee(re,Mm),n=$s(ct());else{if(t===Ln)throw new Error(js);t===$a?(e=ct(),e.value=e.value==="true",n=$s(e)):t===ec?(e=ct(),e.value=null,n=$s(e)):he("/")||he("/=")?(n=$s(_8()),Um()):ic(ct())}return n}function $8(){const t=[];if(je("("),!he(")"))for(;k<Ke&&(t.push(yi()),!he(")"));)je(",");return je(")"),t}function eF(){k=re.start;const t=ct();return G8(t)||ic(t),Qu(t.value)}function tF(){return je("."),eF()}function nF(){je("[");const t=ku();return je("]"),t}function iF(){var t,e,n;for(t=Z8();;)if(he("."))n=tF(),t=Gm(".",t,n);else if(he("("))e=$8(),t=H8(t,e);else if(he("["))n=nF(),t=Gm("[",t,n);else break;return t}function Ym(){const t=iF();if(re.type===at&&(he("++")||he("--")))throw new Error(js);return t}function rc(){var t,e;if(re.type!==at&&re.type!==Ln)e=Ym();else{if(he("++")||he("--"))throw new Error(js);if(he("+")||he("-")||he("~")||he("!"))t=ct(),e=rc(),e=J8(t.value,e);else{if(Du("delete")||Du("void")||Du("typeof"))throw new Error(js);e=Ym()}}return e}function Vm(t){let e=0;if(t.type!==at&&t.type!==Ln)return 0;switch(t.value){case"||":e=1;break;case"&&":e=2;break;case"|":e=3;break;case"^":e=4;break;case"&":e=5;break;case"==":case"!=":case"===":case"!==":e=6;break;case"<":case">":case"<=":case">=":case"instanceof":case"in":e=7;break;case"<<":case">>":case">>>":e=8;break;case"+":case"-":e=9;break;case"*":case"/":case"%":e=11;break}return e}function rF(){var t,e,n,i,r,s,o,a,l,c;if(t=re,l=rc(),i=re,r=Vm(i),r===0)return l;for(i.prec=r,ct(),e=[t,re],o=rc(),s=[l,i,o];(r=Vm(re))>0;){for(;s.length>2&&r<=s[s.length-2].prec;)o=s.pop(),a=s.pop().value,l=s.pop(),e.pop(),n=_m(a,l,o),s.push(n);i=ct(),i.prec=r,s.push(i),e.push(re),n=rc(),s.push(n)}for(c=s.length-1,n=s[c],e.pop();c>1;)e.pop(),n=_m(s[c-1].value,s[c-2],n),c-=2;return n}function yi(){var t,e,n;return t=rF(),he("?")&&(ct(),e=yi(),je(":"),n=yi(),t=Y8(t,e,n)),t}function ku(){const t=yi();if(he(","))throw new Error(js);return t}function Jm(t){G=t,k=0,Ke=G.length,re=null,Um();const e=ku();if(re.type!==qs)throw new Error("Unexpect token after expression.");return e}var sF={NaN:"NaN",E:"Math.E",LN2:"Math.LN2",LN10:"Math.LN10",LOG2E:"Math.LOG2E",LOG10E:"Math.LOG10E",PI:"Math.PI",SQRT1_2:"Math.SQRT1_2",SQRT2:"Math.SQRT2",MIN_VALUE:"Number.MIN_VALUE",MAX_VALUE:"Number.MAX_VALUE"};function qm(t){function e(o,a,l,c){let f=t(a[0]);return l&&(f=l+"("+f+")",l.lastIndexOf("new ",0)===0&&(f="("+f+")")),f+"."+o+(c<0?"":c===0?"()":"("+a.slice(1).map(t).join(",")+")")}function n(o,a,l){return c=>e(o,c,a,l)}const i="new Date",r="String",s="RegExp";return{isNaN:"Number.isNaN",isFinite:"Number.isFinite",abs:"Math.abs",acos:"Math.acos",asin:"Math.asin",atan:"Math.atan",atan2:"Math.atan2",ceil:"Math.ceil",cos:"Math.cos",exp:"Math.exp",floor:"Math.floor",hypot:"Math.hypot",log:"Math.log",max:"Math.max",min:"Math.min",pow:"Math.pow",random:"Math.random",round:"Math.round",sin:"Math.sin",sqrt:"Math.sqrt",tan:"Math.tan",clamp:function(o){o.length<3&&be("Missing arguments to clamp function."),o.length>3&&be("Too many arguments to clamp function.");const a=o.map(t);return"Math.max("+a[1]+", Math.min("+a[2]+","+a[0]+"))"},now:"Date.now",utc:"Date.UTC",datetime:i,date:n("getDate",i,0),day:n("getDay",i,0),year:n("getFullYear",i,0),month:n("getMonth",i,0),hours:n("getHours",i,0),minutes:n("getMinutes",i,0),seconds:n("getSeconds",i,0),milliseconds:n("getMilliseconds",i,0),time:n("getTime",i,0),timezoneoffset:n("getTimezoneOffset",i,0),utcdate:n("getUTCDate",i,0),utcday:n("getUTCDay",i,0),utcyear:n("getUTCFullYear",i,0),utcmonth:n("getUTCMonth",i,0),utchours:n("getUTCHours",i,0),utcminutes:n("getUTCMinutes",i,0),utcseconds:n("getUTCSeconds",i,0),utcmilliseconds:n("getUTCMilliseconds",i,0),length:n("length",null,-1),parseFloat:"parseFloat",parseInt:"parseInt",upper:n("toUpperCase",r,0),lower:n("toLowerCase",r,0),substring:n("substring",r),split:n("split",r),trim:n("trim",r,0),btoa:"btoa",atob:"atob",regexp:s,test:n("test",s),if:function(o){o.length<3&&be("Missing arguments to if function."),o.length>3&&be("Too many arguments to if function.");const a=o.map(t);return"("+a[0]+"?"+a[1]+":"+a[2]+")"}}}function oF(t){const e=t&&t.length-1;return e&&(t[0]==='"'&&t[e]==='"'||t[0]==="'"&&t[e]==="'")?t.slice(1,-1):t}function Km(t){t=t||{};const e=t.allowed?Ro(t.allowed):{},n=t.forbidden?Ro(t.forbidden):{},i=t.constants||sF,r=(t.functions||qm)(u),s=t.globalvar,o=t.fieldvar,a=ht(s)?s:d=>`${s}["${d}"]`;[...Object.getOwnPropertyNames(Object.prototype).filter(d=>typeof Object.prototype[d]=="function")];let l={},c={},f=0;function u(d){if(le(d))return d;const g=h[d.type];return g==null&&be("Unsupported type: "+d.type),g(d)}const h={Literal:d=>d.raw,Identifier:d=>{const g=d.name;return f>0?g:Mi(n,g)?be("Illegal identifier: "+g):Mi(i,g)?i[g]:Mi(e,g)?g:(l[g]=1,a(g))},MemberExpression:d=>{const g=!d.computed,m=u(d.object);g&&(f+=1);const p=u(d.property);return m===o&&(c[oF(p)]=1),g&&(f-=1),m+(g?"."+p:"["+p+"]")},CallExpression:d=>{d.callee.type!=="Identifier"&&be("Illegal callee type: "+d.callee.type);const g=d.callee.name,m=d.arguments,p=Mi(r,g)&&r[g];return p||be("Unrecognized function: "+g),ht(p)?p(m):p+"("+m.map(u).join(",")+")"},ArrayExpression:d=>"["+d.elements.map(u).join(",")+"]",BinaryExpression:d=>"("+u(d.left)+" "+d.operator+" "+u(d.right)+")",UnaryExpression:d=>"("+d.operator+u(d.argument)+")",ConditionalExpression:d=>"("+u(d.test)+"?"+u(d.consequent)+":"+u(d.alternate)+")",LogicalExpression:d=>"("+u(d.left)+d.operator+u(d.right)+")",ObjectExpression:d=>{for(const g of d.properties){const m=g.key.name;CI.has(m)&&be("Illegal property: "+m)}return"{"+d.properties.map(u).join(",")+"}"},Property:d=>{f+=1;const g=u(d.key);return f-=1,g+":"+u(d.value)}};function A(d){const g={code:u(d),globals:Object.keys(l),fields:Object.keys(c)};return l={},c={},g}return A.functions=r,A.constants=i,A}function jm(t,e,n){return n=(n-t)/(e-t),n=Math.max(0,Math.min(1,n)),n*n*(3-2*n)}function aF(t,e,n){return tr((n-t)/(e-t),0,1)}const Wm={clamp:tr,format(t,e){return ze(e)(t)},mapHasKey(t,e){return t.has(e)},isArray:Ce,isBoolean:zr,isDefined(t){return t!==void 0},isNumber:Ve,isObject:Ge,isRegExp:TI,isString:le,isValid(t){return t!=null&&t===t},lerp:wh,linearstep:aF,replace(t,e,n){return String(t).replace(e,n)},smoothstep:jm};function cF(t){const e=qm(t);for(const n in Wm)e[n]=`this.${n}`;return e}const lF=Km({forbidden:[],allowed:["datum","undefined"],globalvar:"globalObject",fieldvar:"datum",functions:cF});function fF(t,e={}){try{const n=Jm(t),i=lF(n),r=Function("datum","globalObject",`"use strict";
|
|
603
603
|
try {
|
|
604
|
-
return (${
|
|
604
|
+
return (${i.code});
|
|
605
605
|
} catch (e) {
|
|
606
|
-
throw new Error("Error evaluating expression: " + ${JSON.stringify(
|
|
607
|
-
}`).bind(
|
|
606
|
+
throw new Error("Error evaluating expression: " + ${JSON.stringify(t)} + ", " + e.message, e);
|
|
607
|
+
}`).bind(Wm),s=(o=>r(o,e));return s.fields=i.fields,s.globals=i.globals,s.code=i.code,s}catch(n){throw new Error(`Invalid expression: ${t}, ${n.message}`)}}const uF=Km({forbidden:[],allowed:["event"],globalvar:"globalObject"});function Xm(t){try{const e=Jm(t),n=uF(e);return Function("event","globalObject",`"use strict";
|
|
608
608
|
try {
|
|
609
|
-
return !!(${
|
|
609
|
+
return !!(${n.code});
|
|
610
610
|
} catch (e) {
|
|
611
|
-
throw new Error("Error evaluating expression: " + ${JSON.stringify(
|
|
612
|
-
}`)}catch(e){throw new Error(`Invalid expression: ${n}, ${e.message}`)}}function V4(n,e={}){return z4(n,e)}function ym(n,e){const t={},r=V4(n,t),i=new Map;for(const o of r.globals){if(i.has(o))continue;const a=e(o);if(!a)throw new Error('Unknown variable "'+o+'" in expression: '+n);i.set(o,a),Object.defineProperty(t,o,{enumerable:!0,get(){return a.get()}})}const s=new Set;return r.subscribe=o=>{const a=[];for(const u of i.values())a.push(u.subscribe(o));let l=!0;const c=()=>{l&&(l=!1,s.delete(c),a.forEach(u=>u()))};return s.add(c),c},r.invalidate=()=>{for(const o of s)o();s.clear()},r.identifier=()=>r.code+"|"+Array.from(i.values()).map(o=>o.id).join(","),{expression:r,dependencies:Array.from(i.values())}}class _4{#e=new vk;#t=new Bk({lifecycleRegistry:this.#e});#n=new Sk;createScope(e){const t=this.#e.createOwner("scope",e??"root");return e?this.#n.createChildScope(t,e):this.#n.createRootScope(t)}disposeScope(e){const t=this.#n.getOwnerId(e);this.#e.disposeOwner(t),this.#n.clearScope(e)}addScopeDisposer(e,t){const r=this.#n.getOwnerId(e);this.#e.addDisposer(r,t)}registerBase(e,t,r,i){const s=this.#n.getOwnerId(e),o=this.#t.createWritable(s,t,"base",r,i);return this.#n.register(e,t,o)}registerSelection(e,t,r,i){const s=this.#n.getOwnerId(e),o=this.#t.createWritable(s,t,"selection",r,i);return this.#n.register(e,t,o)}registerDerived(e,t,r){const{expression:i,dependencies:s}=ym(r,l=>this.resolve(e,l)),o=this.#n.getOwnerId(e),a=this.#t.computed(o,t,s,()=>i(null));return this.#n.register(e,t,a)}createExpression(e,t){const{expression:r}=ym(t,i=>this.resolve(e,i));return r}resolve(e,t){return this.#n.resolve(e,t)}runInTransaction(e){return this.#t.runInTransaction(e)}flushNow(){this.#t.flushNow()}whenPropagated(e){return this.#t.whenPropagated(e)}}class Y4{#e;#t;#n=new Map;#r=new Map;#s=new Map;#o;#i=!1;constructor(e){this.#o=e??(()=>{});const t=this.#o();t?(this.#e=t.#e,this.#t=this.#e.createScope(t.#t)):(this.#e=new _4,this.#t=this.#e.createScope())}registerParam(e){const t=e.name;if(Tt(t),this.#s.has(t))throw new Error('Parameter "'+t+'" already registered in this scope.');if("value"in e&&"expr"in e)throw new Error(`The parameter "${t}" must not have both value and expr properties!`);let r,i;if(e.push=="outer"){const s=this.findRuntimeForParam(t);if(!s)throw new Error(`Parameter "${t}" not found in outer scope!`);const o=s.paramConfigs.get(t);if(!o)throw new Error(`Outer parameter "${t}" exists as a value but has no registered config.`);if("expr"in o||"select"in o)throw new Error(`The outer parameter "${t}" must not have expr or select properties!`);r=a=>{s.setValue(t,a)},this.#n.set(t,r)}else if("value"in e)i=vl(e,this),r=this.#c(t,i);else if("expr"in e){const s=this.#e.registerDerived(this.#t,t,e.expr);this.#r.set(t,s),r=()=>{throw new Error('Cannot set derived parameter "'+t+'".')}}else i=vl(e,this),r=this.#c(t,i);if("select"in e){if(i??=vl(e,this),!this.#n.has(t)){const s=this.#e.registerSelection(this.#t,t,i);this.#r.set(t,s),this.#n.set(t,o=>{s.set(o),this.#e.flushNow()}),r=this.#n.get(t)}r(i)}return this.#s.set(t,e),r}allocateSetter(e,t,r=!1){if(Tt(e),this.#n.has(e))throw new Error("Setter already allocated for parameter: "+e);const i=this.#e.registerBase(this.#t,e,t,{notify:!r});this.#r.set(e,i);const s=o=>{i.set(o),this.#e.flushNow()};return this.#n.set(e,s),s}setValue(e,t){Tt(e);const r=this.#n.get(e);if(!r)throw new Error("Writable parameter not found in this scope: "+e);r(t)}getValue(e){return this.#r.get(e)?.get()}subscribe(e,t){Tt(e);const r=this.findRuntimeForParam(e);if(!r)throw new Error("Parameter not found: "+e);const i=r.#r.get(e);if(!i)throw new Error("Parameter found without local reference: "+e);return i.subscribe(t)}findValue(e){return this.findRuntimeForParam(e)?.getValue(e)}get paramConfigs(){return this.#s}findRuntimeForParam(e){return this.#r.has(e)?this:this.#o()?.findRuntimeForParam(e)}createExpression(e){return this.#e.createExpression(this.#t,e)}watchExpression(e,t,r={}){const i=this.createExpression(e),s=i.subscribe(t);return(r.scopeOwned??!0)&&this.#e.addScopeDisposer(this.#t,s),r.registerDisposer?.(s),i}#c(e,t){const r=this.#e.registerBase(this.#t,e,t);this.#r.set(e,r);const i=s=>{r.set(s),this.#e.flushNow()};return this.#n.set(e,i),i}evaluateAndGet(e){return this.createExpression(e)()}runInTransaction(e){return this.#e.runInTransaction(e)}flushNow(){this.#e.flushNow()}whenPropagated(e){return this.#e.whenPropagated(e)}dispose(){this.#i||(this.#i=!0,this.#e.disposeScope(this.#t),this.#n.clear(),this.#r.clear(),this.#s.clear())}hasPointSelections(){for(const e of this.#s.values())if(Bl(e)){const t=e.select;if(le(t)){if(t=="point")return!0}else if(t.type=="point")return!0}return!1}}function qs(n,e){return!e||/^(data:|([A-Za-z]+:)?\/\/)/.test(n)||n.startsWith("/")?n:(e.endsWith("/")||(e+="/"),e+n)}function J4(n){if(!n)return n;if(/[?#]/.test(n))throw new Error(`Invalid base URL: ${n} - cannot contain query or hash.`);return n.endsWith("/")?n:n+"/"}const Dt="VISIT_SKIP",Ln="VISIT_STOP",Im=n=>n;class bm{#e;#t={};#n={};#r={};#s;#o;#i=!1;opacityFunction=Im;#c=[];#a="none";facetCoords=new jt([],JSON.stringify);constructor(e,t,r,i,s,o={}){if(!e)throw new Error("View spec must be defined!");if(this.context=t,this.layoutParent=r,this.dataParent=i,this.#e=s,this.spec=e,this.resolutions={scale:{},axis:{}},Ip(this),this.options={blockEncodingInheritance:!1,...o},this.flowHandle=void 0,this.needsAxes={x:!1,y:!1},this.paramRuntime=new Y4(()=>this.dataParent?.paramRuntime),e.params)for(const a of e.params)this.paramRuntime.registerParam(a);if(!this.layoutParent?.options.layeredChildren){const a=l=>this.paramRuntime.findRuntimeForParam(l)?void 0:this.paramRuntime.allocateSetter(l,0);this.#o=a("height"),this.#s=a("width")}}get name(){return this.spec.name??this.#e}get explicitName(){return this.spec.name}get defaultName(){return this.#e}get coords(){return this.facetCoords.values().next().value}getPadding(){return this._cache("size/padding",()=>qe.createFromConfig(this.spec.padding))}getOverhang(){return qe.zero()}isScrollable(){return this.spec.viewportWidth!=null||this.spec.viewportHeight!=null}getSize(){return this._cache("size/size",()=>this.isConfiguredVisible()?new Tn(this.#l("width"),this.#l("height")):Kp)}getViewportSize(){if(!this.isScrollable())return this.getSize();if(!this.isConfiguredVisible())return Kp;const e=this.getSize();return new Tn(this.#l("viewportWidth")??e.width,this.#l("viewportHeight")??e.height)}#l(e){let t=this.spec[e];const r=hf(t),i=e=="viewportWidth"||e=="viewportHeight";if(r){if(i)throw new Ve(`Cannot use step-based size with "${e}"!`,this);const s=t.step,o=this.getScaleResolution(e=="width"?"x":"y")?.getScale();if(o){let a=0;if(sn(o.type))a=o.domain().length;else if(["locus","index"].includes(o.type)){const c=o.domain();a=_o(c)-c[0]}else throw new Ve(`Cannot use step-based size with "${o.type}" scale!`,this);const l=o;return a=Tu(a,l.paddingInner(),l.paddingOuter()),{px:a*s,grow:0}}else throw new Ve(`Cannot use step-based size with "${e}"!`,this)}else return(t&&jp(t))??(i?void 0:{px:0,grow:1})}registerStepSizeInvalidation(){this.#u("width","x"),this.#u("height","y")}#u(e,t){const r=this.spec[e];if(!hf(r))return;const i=this.getScaleResolution(t);if(!i)throw new Ve("Cannot use 'step' size without a scale!",this);const s=()=>this.invalidateSizeCache();i.addEventListener("domain",s),this.registerDisposer(()=>i.removeEventListener("domain",s))}isConfiguredVisible(){return this.context.isViewConfiguredVisible(this)}isVisibleInSpec(){return this.spec.visible??!0}isVisible(){return this.getLayoutAncestors().every(e=>e.isConfiguredVisible())}isDomainInert(){if(this.spec.domainInert)return!0;const e=this.dataParent;return e?e.isDomainInert():!1}getDataInitializationState(){return this.#a}_setDataInitializationState(e){this.#a=e}isDataInitialized(){return this.#a==="ready"}getEffectiveOpacity(){return this.opacityFunction(this.layoutParent?.getEffectiveOpacity()??1)}getPathString(){return this.getLayoutAncestors().map(e=>e.name).reverse().join("/")}#f(e){const t=[];let r=this;do t.push(r),r=r[e];while(r);return t}getLayoutAncestors(){return this.#f("layoutParent")}getDataAncestors(){return this.#f("dataParent")}handleBroadcast(e){for(const t of this.#t[e.type]||[])t(e)}_addBroadcastHandler(e,t){let r=this.#t[e];return r||(r=[],this.#t[e]=r),r.push(t),()=>{const i=this.#t[e];if(!i)return;const s=i.indexOf(t);s>=0&&i.splice(s,1)}}handleInteractionEvent(e,t,r){const i=r?this.#n:this.#r;for(const s of i[t.type]||[])s(e,t)}addInteractionEventListener(e,t,r){const i=r?this.#n:this.#r;let s=i[e];s||(s=[],i[e]=s),s.push(t)}removeInteractionEventListener(e,t,r){let s=(r?this.#n:this.#r)?.[e];if(s){const o=s.indexOf(t);o>=0&&s.splice(o,1)}}visit(e){try{const t=e(this);if(e.postOrder&&e.postOrder(this),t!==Ln)return t}catch(t){throw t.view=this,t}}getDescendants(){const e=[];return this.visit(t=>{e.push(t)}),e}dispose(){for(const t of this.#c)t();this.#c.length=0;const e=this.flowHandle;e?.collector&&(this.context.dataFlow.pruneCollectorBranch(e.collector),this.context.dataFlow.removeCollector(e.collector)),e?.dataSource&&e.dataSource.view===this&&!e.dataSource.identifier&&this.context.dataFlow.removeDataSource(e.dataSource),this.paramRuntime.dispose(),this.context.dataFlow.loadingStatusRegistry.delete(this),this.flowHandle=void 0}registerDisposer(e){this.#c.push(e)}disposeSubtree(){const e=()=>{};e.postOrder=t=>{t.dispose()},this.visit(e)}configureViewOpacity(){(!this.opacityFunction||this.opacityFunction===Im)&&(this.opacityFunction=K4(this))}onBeforeRender(){this.#i||(this.#i=!0)}hasRendered(){return this.#i}render(e,t,r={}){r.firstFacet&&this.facetCoords.clear(),this.facetCoords.set(r.facetId,r.clipRect?t.intersect(r.clipRect):t),this.#s?.(t.width),this.#o?.(t.height)}getEncoding(){const e=this.dataParent&&!this.options.blockEncodingInheritance?this.dataParent.getEncoding():{},t=this.spec.encoding||{},r={...e,...t};for(const[i,s]of Object.entries(r))s===null&&delete r[i];return r}getFacetAccessor(e){if(this.layoutParent)return this.layoutParent.getFacetAccessor(this)}getFacetFields(e){const t=this.getEncoding().sample;return en(t)?[t.field]:this.layoutParent?.getFacetFields(this)}getSampleFacetTexture(){}getScaleResolution(e){const t=In(e);return this.getDataAncestors().map(r=>r.resolutions.scale[t]).find(r=>r)}getAxisResolution(e){const t=In(e);return this.getDataAncestors().map(r=>r.resolutions.axis[t]).find(r=>r)}getConfiguredResolution(e,t){return this.spec.resolve?.[t]?.[e]}getConfiguredOrDefaultResolution(e,t){return this.getConfiguredResolution(e,t)??this.getConfiguredResolution("default",t)??this.getDefaultResolution(e,t)}getDefaultResolution(e,t){return"independent"}getBaseUrl(){return dr(()=>this.dataParent?.getBaseUrl(),J4(this.spec.baseUrl))}isPickingSupported(){return!0}getTitleText(){const e=this.spec.title;if(e)return le(e)?e:Ie(e.text)?this.paramRuntime.evaluateAndGet(e.text.expr):e.text}_cache(e,t){return La(this,e,t)}_invalidateCacheByPrefix(e,t="self"){switch(t){case"self":Ms(this,e);break;case"ancestors":for(const r of this.getLayoutAncestors())Ms(r,e);break;case"progeny":this.visit(r=>Ms(r,e));break}}invalidateSizeCache(){Ms(this,"size"),this._invalidateCacheByPrefix("size","ancestors")}propagateInteractionEvent(e){}}function q4(n){return"unitsPerPixel"in n}function K4(n){const e="opacity"in n.spec?n.spec.opacity:void 0;if(e!==void 0){if(Ye(e))return t=>t*e;if(q4(e)){const t=c=>{const u=n.getScaleResolution(c),f=u?.getScale();if(["linear","index","locus"].includes(f?.type))return{scale:f,scaleResolution:u}},r=Em(e.values,"opacity.values",n);if(!ye(e.unitsPerPixel))throw new Ve('"opacity.unitsPerPixel" must be an array.',n);let i=()=>1,s=[];const o=()=>{const c=Em(s.map(h=>h()),"opacity.unitsPerPixel",n),u=j4(c,r,n),f=Su().domain(u.unitsPerPixel).range(u.values).clamp(!0);i=h=>f(h)};s=e.unitsPerPixel.map(c=>{if(Ie(c)){const u=n.paramRuntime.watchExpression(c.expr,()=>{o(),n.context.animator.requestRender()});return()=>u(null)}else return()=>c}),o();const a=c=>{const f=c.scaleResolution.getAxisLength()||1e3;return Pi(c.scale.domain())/f};let l;if(e.channel==="auto"){const c=t("x"),u=t("y");if(c&&u)l=()=>(a(c)+a(u))/2;else if(c)l=()=>a(c);else if(u)l=()=>a(u);else throw new Ve("Cannot find a resolved quantitative x or y scale for dynamic opacity!",n)}else{const c=e.channel?t(e.channel):t("x")??t("y");if(!c)throw new Ve("Cannot find a resolved quantitative scale for dynamic opacity!",n);l=()=>a(c)}return c=>i(l())*c}else if(Ie(e)){const t=n.paramRuntime.watchExpression(e.expr,()=>n.context.animator.requestRender());return r=>t(null)*r}}return t=>t}function j4(n,e,t){if(!n.length)throw new Ve('"opacity.unitsPerPixel" must contain at least one stop.',t);if(n.length!==e.length)throw new Ve('"opacity.unitsPerPixel" and "opacity.values" must have the same length.',t);n.forEach((o,a)=>{if(o<=0)throw new Ve("Invalid opacity.unitsPerPixel value at index "+a+". Stop values must be positive.",t)});const r=n.map((o,a)=>({stop:o,value:e[a]}));r.sort((o,a)=>a.stop-o.stop);const i=r.map(o=>o.stop),s=r.map(o=>o.value);for(let o=1;o<n.length;o++)if(i[o-1]<=i[o])throw new Ve('"opacity.unitsPerPixel" must be strictly decreasing.',t);return{unitsPerPixel:i,values:s}}function Em(n,e,t){if(!ye(n))throw new Ve('"'+e+'" must evaluate to an array.',t);return n.map((r,i)=>{if(!Ye(r)||!Number.isFinite(r))throw new Ve("Invalid "+e+" value at index "+i+". Expected a finite number.",t);return r})}const hf=n=>!!n?.step;function W4(n){return X4(n?.search,"search")}function X4(n,e){if(!n)return;const t=Array.isArray(n)?n:[n];if(t.length===0)throw new Error("The "+e+" channel array must not be empty.");const r=[];for(const i of t){if(!i||typeof i!="object"||!("field"in i))throw new Error("The "+e+" channel must be a field definition or an array of field definitions.");const s=i.field;if(typeof s!="string")throw new Error("The "+e+" channel field definition must include a string field name.");r.push(s)}return r}const Z4={point:ZQ,rect:JQ,rule:nD,link:lD,text:gD};class tt extends bm{#e;#t=!1;#n=null;constructor(e,t,r,i,s,o){super(e,t,r,i,s,o),this.spec=e;const a=Z4[this.getMarkType()];if(a)this.mark=new a(this);else throw new Error(`No such mark: ${this.getMarkType()}`);this.resolve(),this.#e=this.paramRuntime.allocateSetter("zoomLevel",1);for(const l of["x","y"]){const c=this.getScaleResolution(l);if(c){const u=()=>{this.#e(Math.sqrt(this.getZoomLevel()))};c.addEventListener("domain",u),this.registerDisposer(()=>c.removeEventListener("domain",u))}}this.needsAxes={x:!0,y:!0},this.#r()}#r(){for(const[e,t]of this.paramRuntime.paramConfigs){if(!("select"in t))continue;const r=Ko(t.select),i=r.on,s=r.clear;if(jo(r)){let a=0;const l=h=>{this.paramRuntime.setValue(e,h)},c=()=>{const h=this.context.getCurrentHover();return h?.mark?.unitView===this?h.datum:null},u=i.filter?Cm(i.filter):()=>!0,f=(h,A)=>{if(!u(A.proxiedMouseEvent))return;const d=c(),g=d?d[dt]:0;let p;if(r.toggle)if(A.mouseEvent.shiftKey){if(d){const C=this.paramRuntime.getValue(e);p=NE(C,{toggle:[d]})}}else p=El(d?[d]:null);else g!=a&&(a=g,p=bl(d));p!==void 0&&l(p)};if(this.addInteractionEventListener(["mouseover","pointerover"].includes(i.type)?"mousemove":i.type,f),s){const h=s.filter?Cm(s.filter):()=>!0,A=(d,g)=>{if(!h(g.proxiedMouseEvent))return;a=0;const p=r.toggle?El():bl(null);l(p)};this.addInteractionEventListener(s.type,A)}}}}render(e,t,r={}){super.render(e,t,r),this.isConfiguredVisible()&&(e.pushView(this,t),e.renderMark(this.mark,r),e.popView(this))}getMarkType(){return typeof this.spec.mark=="object"?this.spec.mark.type:this.spec.mark}getEncoding(){const e=super.getEncoding(),t=this.mark.getSupportedChannels();for(const r of Object.keys(e))r!=="key"&&(t.includes(r)||delete e[r]);return e}resolve(e){if(!e){this.resolve("scale"),this.resolve("axis");return}const t=this.mark.encoding;for(const[r,i]of Object.entries(t)){if(!i||Array.isArray(i))continue;let s;if(gt(i))s=i;else if(wl(i)){const l=i.condition;if(!Array.isArray(l)&>(l))s=l;else continue}else continue;const o=In(s.resolutionChannel??r);if(!qo(o)||e=="axis"&&!ls(o))continue;let a=this;for(;(a.getConfiguredOrDefaultResolution(o,e)=="forced"||a.dataParent&&["shared","excluded","forced"].includes(a.dataParent.getConfiguredOrDefaultResolution(o,e)))&&a.getConfiguredOrDefaultResolution(o,e)!="excluded";)a=a.dataParent;if(e=="axis"&&ls(r)&&Cl(o)){a.resolutions[e][o]||(a.resolutions[e][o]=new Ik(o));const l=a.resolutions[e][o],c=l.registerMember({view:this,channel:r,channelDef:s});this.registerDisposer(()=>{c()&&a.resolutions[e][o]===l&&delete a.resolutions[e][o]})}else if(e=="scale"&&qo(r)){if(!a.resolutions[e][o]){const f=new yk(o);a.resolutions[e][o]=f;const h=A=>{this.context.glHelper?.createRangeTexture(A.scaleResolution,!0)};f.addEventListener("range",h),f.addEventListener("domain",h),this.registerDisposer(()=>{f.removeEventListener("range",h),f.removeEventListener("domain",h)})}const l=!this.isDomainInert(),c=a.resolutions[e][o],u=c.registerMember({view:this,channel:r,channelDef:s,contributesToDomain:l});this.registerDisposer(()=>{u()&&a.resolutions[e][o]===c&&(c.dispose(),delete a.resolutions[e][o])})}}}dispose(){super.dispose(),this.mark.dispose()}getDataAccessor(e){const t=this.mark.encoders;if(t)return t[e]?.dataAccessor}getSearchAccessors(){if(!this.#n){const e=W4(this.getEncoding())??[];this.#n=e.map(t=>$(t))}return this.#n}getFacetAccessor(e){const t=this.getDataAccessor("sample");return t||super.getFacetAccessor(this)}getCollector(){return this.flowHandle?.collector}registerDomainSubscriptions(){if(this.#t||this.isDomainInert())return;const e=this.getCollector();if(!e)return;const t=this.mark.encoders;if(!t)throw new Error("Encoders are not initialized!");this.#t=!0;const r=new Map;for(const i of Object.values(t)){if(!i)continue;const s=i.accessors??[];if(s.length!==0)for(const o of s){if(!sd(o)||o.channelDef.domainInert)continue;const a=this.getScaleResolution(o.scaleChannel);if(!a)throw new Error("Missing scale resolution for channel: "+o.scaleChannel);let l=r.get(a);l||(l=new Set,r.set(a,l)),l.add(o)}}for(const[i,s]of r){if(s.size===0)continue;const o=i.registerCollectorSubscriptions(e,s);this.registerDisposer(o)}}getZoomLevel(){const e=t=>this.getScaleResolution(t)?.getZoomLevel()??1;return tr.map(e).reduce((t,r)=>t*r,1)}propagateInteractionEvent(e){this.handleInteractionEvent(void 0,e,!0),e.target=this,!e.stopped&&this.handleInteractionEvent(void 0,e,!1)}getDefaultResolution(e,t){return e=="x"?"shared":"independent"}}class df extends Error{constructor(e,t){super(t),this.kind=e}}async function xm(n,e={}){let t;try{t=await fetch(n,{signal:e.signal})}catch(r){throw new df("network",String(r))}if(!t.ok)throw new df("http",String(t.status)+" "+t.statusText);try{return await t.json()}catch(r){throw new df("json",String(r))}}function $4(n){const e=new Set;n.visit(t=>{for(const r of Object.values(t.resolutions.scale)){const i=r.name;if(i&&e.has(i))throw new Error(`The same scale name "${i}" occurs in multiple scale resolutions!`);e.add(i)}})}function e8(n){for(const e of tr){const t=n.getScaleResolution(e);t&&!t.name&&t.isZoomable()&&(t.name=`${e}_at_root`)}}function gf(n,e=()=>!0){return Promise.allSettled(n).then(t=>{if(e())for(const r of t)"value"in r?r.value.finalizeGraphicsInitialization():"reason"in r&&console.error(r.reason)})}async function t8(n,e,t){const r=n.import;if(!("url"in r))throw new Error("Not an url import: "+JSON.stringify(r));const i=dr(e,r.url);let s;try{s=await xm(i)}catch(o){throw new Error(`Could not load imported view spec: ${i}. Reason: ${o.message}`)}if(t.isViewSpec(s))return s.baseUrl=dr(kp(r.url),s.baseUrl),s;throw new Error(`The imported spec "${i}" is not a view spec: ${JSON.stringify(n)}`)}function n8(n){const e=n.getSize(),t=n.getPadding(),r=(i,s)=>i.grow>0?void 0:i.px+s;return{width:r(e.width,t.horizontalTotal),height:r(e.height,t.verticalTotal)}}function*pf(n,e=[]){for(const[t,r]of n.entries())if(r instanceof Map)for(const i of pf(r,[...e,t]))yield i;else yield[[...e,t],r]}const Bm=2147483647,r8=vm([Bm]);function vm(n){let e=0;for(let t=0,r=n.length;t<r;t++)e=Math.max(e,n[t]);return Math.floor(Math.log2(e)/4)+1}function i8(n){const e=vm(n);let t=Array.from({length:n.length},(s,o)=>o),r=new Array(n.length);const i=new Array(16);for(let s=0;s<e;s++){i.fill(0);const o=s*4,a=Math.pow(16,s),l=c=>{const u=n[t[c]];return s>=r8?u>Bm?Math.floor(u/a)%16:0:u>>o&15};for(let c=0;c<n.length;c++)i[l(c)]++;for(let c=1;c<16;c++)i[c]+=i[c-1];for(let c=n.length-1;c>=0;c--)r[--i[l(c)]]=t[c];[t,r]=[r,t]}return t}const Ka="|",mf="\\";class s8{#e=null;#t=null;#n=!1;invalidate(){this.#e=null,this.#t=null,this.#n=!1}findDatum(e,t,r){if(!e||e.length===0)return;const i=e.join(", ");if(e.length!==t.length)throw new Error(`Key tuple length ${t.length} does not match fields [${i}]`);(!this.#e||!this.#s(e))&&this.#r(e,r);const s=this.#t;let o;if(this.#n){let a="";for(let l=0;l<t.length;l++){l>0&&(a+=Ka);const c=s[l],u=ja(t[l],c);a+=Sm(u)}o=a}else{const a=s[0];o=ja(t[0],a)}return this.#e.get(o)}#r(e,t){const r=e.map(a=>$(a)),i=new Map,s=e.join(", "),o=e.length!==1;if(o)for(const a of t)for(let l=0,c=a.length;l<c;l++){const u=a[l];let f="";for(let A=0;A<r.length;A++){A>0&&(f+=Ka);const d=e[A],g=ja(r[A](u),d);f+=Sm(g)}if(i.get(f)!==void 0){const A=r.map(d=>d(u));throw new Error(`Duplicate key detected for fields [${s}]: ${JSON.stringify(A)}`)}i.set(f,u)}else{const a=r[0],l=e[0];for(const c of t)for(let u=0,f=c.length;u<f;u++){const h=c[u],A=ja(a(h),l);if(i.get(A)!==void 0)throw new Error(`Duplicate key detected for fields [${s}]: ${JSON.stringify(A)}`);i.set(A,h)}}this.#e=i,this.#t=[...e],this.#n=o}#s(e){if(!this.#t||this.#t.length!==e.length)return!1;for(let t=0;t<e.length;t++)if(this.#t[t]!==e[t])return!1;return!0}}function ja(n,e){if(n===void 0)throw new Error(`Key field "${e}" is undefined. Ensure all key fields are present in the data.`);if(n===null)throw new Error(`Key field "${e}" is null. Ensure all key fields are present in the data.`);if(typeof n!="string"&&typeof n!="number"&&typeof n!="boolean")throw new Error(`Key field "${e}" must be a scalar value (string, number, or boolean).`);return n}function o8(n){if(!(n.indexOf(mf)!==-1||n.indexOf(Ka)!==-1))return n;let t="";for(let r=0;r<n.length;r++){const i=n[r];(i===mf||i===Ka)&&(t+=mf),t+=i}return t}function Sm(n){return typeof n=="string"?o8(n):String(n)}class Qm extends gl{#e=[];#t=$(dt);#n=[];#r=new s8;#s;#o;#i=new a8;get behavior(){return dl}get label(){return"collect"}constructor(e){super(),this.params=e??{type:"collect"},this.observers=new Set,this.facetBatches=new jt([],JSON.stringify),this.#o=l8(this.params?.sort),this.#c()}#c(){this.#e=[],this.#n=[],this.#r.invalidate(),this.facetBatches.clear(),this.facetBatches.set(void 0,this.#e)}reset(){super.reset(),this.#c()}handle(e){this.#e.push(e)}beginBatch(e){this.#r.invalidate(),bE(e)&&(this.#e=[],this.facetBatches.set(Me(e.facetId),this.#e))}complete(){if(this.#e=[],this.params.groupby?.length){if(this.facetBatches.size>1)throw new Error("TODO: Support faceted data!");const e=this.facetBatches.get(void 0),t=this.params.groupby.map(i=>$(i)),r=t.length>1?Qo(e,...t):c8(e,t[0]);this.facetBatches.clear();for(const[i,s]of pf(r))this.facetBatches.set(i,s)}if(this.#o)for(const e of this.facetBatches.values())e.sort(this.#o);this.#f(),this.#a(),super.complete(),this.#u();for(const e of this.observers)e(this)}observe(e){return this.observers.add(e),()=>{this.observers.delete(e)}}#a(){if(this.children.length)for(const[e,t]of this.facetBatches.entries()){if(e){const r={type:"facet",facetId:e};for(const i of this.children)i.beginBatch(r)}for(let r=0,i=t.length;r<i;r++)this._propagate(t[r])}}repropagate(){for(const e of this.children)e.reset();this.#a();for(const e of this.children)e.complete();this.#u()}getDomain(e,t,r){return this.#i.getDomain(e,()=>{const i=Ga(t);if(r.constant)i.extend(r({}));else if(this.completed)for(const s of this.facetBatches.values())for(let o=0,a=s.length;o<a;o++)i.extend(r(s[o]));return i})}subscribeDomainChanges(e,t){return this.#i.subscribe(e,t)}getData(){switch(this.#l(),this.facetBatches.size){case 0:return[];case 1:return[...this.facetBatches.values()][0];default:{const e=this.facetBatches;return{[Symbol.iterator]:function*(){for(const r of e.values())yield*r}}}}}visitData(e){this.#l();for(const t of this.facetBatches.values())for(let r=0;r<t.length;r++)e(t[r])}getItemCount(){let e=0;for(const t of this.facetBatches.values())e+=t.length;return e}#l(){if(!this.completed)throw new Error("Data propagation is not completed! No data are available.")}#u(){this.#i.hasCachedDomains()&&this.#i.clear(),this.#i.notify()}#f(){this.#s=[];const e=this.facetBatches.values().next().value?.[0];if(e==null||!(dt in e))return;let t=0;const r=[],i=this.#t;for(const[s,o]of this.facetBatches){this.#s.push({start:t,stop:t+o.length,facetId:s}),t+=o.length;for(let a=0,l=o.length;a<l;a++)r.push(i(o[a]))}this.#n=i8(r)}findDatumByUniqueId(e){if(!this.#n.length)return;const t=Wn(a=>a.start).right,r=this.#t,i=Wn(a=>r(s(a))).left,s=a=>{const l=t(this.#s,a),c=this.#s[l-1];return!c||a>=c.stop?void 0:this.facetBatches.get(c.facetId)[a-c.start]},o=i(this.#n,e);if(o>=0){const a=s(this.#n[o]);if(a&&r(a)===e)return a}}findDatumByKey(e,t){return this.#l(),this.#r.findDatum(e,t,this.facetBatches.values())}}class a8{#e=new Map;#t=new Map;hasCachedDomains(){return this.#e.size>0}clear(){this.#e.clear()}getDomain(e,t){const r=this.#e.get(e);if(r)return r;{const i=t();return this.#e.set(e,i),i}}subscribe(e,t){let r=this.#t.get(e);return r||(r=new Set,this.#t.set(e,r)),r.add(t),()=>{const i=this.#t.get(e);i&&(i.delete(t),i.size===0&&this.#t.delete(e))}}notify(){if(this.#t.size===0)return;const e=new Set;for(const t of this.#t.values())for(const r of t)e.add(r);for(const t of e)t()}}function c8(n,e){const t=new Map;for(let r=0,i=n.length;r<i;r++){const s=n[r],o=e(s);let a=t.get(o);a||(a=[],t.set(o,a)),a.push(s)}return t}function l8(n){if(n?.field){const e=Me(n.field);if(e.length==1&&!e[0].includes(".")){const t=Me(n.order)[0]??"ascending",r=JSON.stringify(e[0]);return new Function("a","b",`return a[${r}] ${t==="ascending"?"-":"+"} b[${r}];`)}return OA(n.field,n.order)}}class u8 extends Qe{get behavior(){return Nt}constructor(e){super(e),this.params=e,this.startAccessor=$(e.start),this.endAccessor=$(e.end),this.chromAccessor=e.chrom?$(e.chrom):t=>{},this.weightAccessor=e.weight?$(e.weight):t=>1,this.as={coverage:e.as??"coverage",start:e.asStart??e.start,end:e.asEnd??e.end,chrom:e.asChrom??e.chrom},this.createSegment=new Function("start","end","coverage","chrom","return {"+Object.entries(this.as).filter(([t,r])=>r).map(([t,r])=>`${JSON.stringify(r)}: ${t}`).join(", ")+"};"),this.ends=new ai}reset(){super.reset(),this.initialize()}initialize(){const e=this.as.coverage,t=this.as.end,r=this.as.chrom,i=this.startAccessor,s=this.endAccessor,o=this.chromAccessor,a=this.weightAccessor;let l,c,u,f=0,h=NaN;const A=this.ends;A.clear();const d=m=>{this._propagate(m),l=null},g=(m,C,y)=>{if(m==C)return;let w=!1;l&&(l[e]===y?(l[t]=C,w=!0):l[e]!=0&&d(l)),w||(l=this.createSegment(m,C,y,u))},p=()=>{let m=0;for(;(m=A.peekValue())!==void 0;)g(h,m,f),h=m,f-=A.pop();h=NaN,l&&d(l)};this.handle=m=>{const C=i(m);let y=0;for(;(y=A.peekValue())!==void 0&&y<C;)g(h,y,f),h=y,f-=A.pop();if(r){let E=o(m);E!==c&&(p(),u=E,c=u)}isNaN(h)||g(h,C,f),h=C;const w=a(m);f+=w,A.push(w,s(m))},this.complete=()=>{p(),super.complete()},this.beginBatch=m=>{p(),c=null,super.beginBatch(m)}}}function f8(n,e,t=s=>+s,r=0,i=n.length){const s=new ai,o=i-r;let a;for(a=0;a<e&&a<o;a++)s.push(a,t(n[r+a]));for(;a<o;a++){const u=t(n[r+a]);u>=s.peekValue()&&(s.push(a,u),s.pop())}const l=[];let c;for(;(c=s.pop())!==void 0;)l.push(n[r+c]);return l.reverse()}class A8{constructor(e,t=-1/0,r=1/0){this.maxSize=e,this.lowerLimit=t,this.upperLimit=r;const i=this.maxSize*2+1;this.lowerLimits=new Float64Array(i),this.upperLimits=new Float64Array(i),this.lowerChildren=new Int32Array(i),this.upperChildren=new Int32Array(i),this.reset()}reset(){this.lowerLimits.fill(0),this.upperLimits.fill(0),this.lowerChildren.fill(0),this.upperChildren.fill(0),this.n=1,this.lowerLimits[0]=this.lowerLimit,this.upperLimits[0]=this.upperLimit}_findSlot(e,t,r=0){if(e>=this.lowerLimits[r]&&t<=this.upperLimits[r]){const i=this.lowerChildren[r];if(i){const s=this._findSlot(e,t,i);return s>=0?s:this._findSlot(e,t,this.upperChildren[r])}else return r}else return-1}reserve(e,t){if(t-e<=0)throw new Error("Cannot reserve an empty or negative-size slot!");if(this.n+1>this.lowerLimits.length)return!1;const r=this._findSlot(e,t);if(r<0)return!1;const i=this.n++,s=this.n++;return this.lowerLimits[i]=this.lowerLimits[r],this.upperLimits[i]=e,this.lowerLimits[s]=t,this.upperLimits[s]=this.upperLimits[r],this.lowerChildren[r]=i,this.upperChildren[r]=s,!0}}class h8 extends Qe{get behavior(){return dl}constructor(e,t){if(super(e),this.params=e,this._data=[],this.channel=e.channel??"x",!["x","y"].includes(this.channel))throw new Error("Invalid channel: "+this.channel);this.startPosAccessor=$(this.params.pos),this.endPosAccessor=$(this.params.pos2??this.params.pos),this.startPosBisector=Wn(this.startPosAccessor),this.endPosBisector=Wn(this.endPosAccessor),this.scoreAccessor=$(this.params.score),this.widthAccessor=$(this.params.width),this.laneAccessor=this.params.lane?$(this.params.lane):o=>0,this.padding=this.params.padding??0,this.reservationMaps=new Map,this.resolution=t.getScaleResolution(this.channel);const r=()=>this._filterAndPropagate();this.schedule=()=>t.context.animator.requestTransition(r);const i=()=>this.schedule();this.resolution.addEventListener("domain",i),this.registerDisposer(()=>this.resolution.removeEventListener("domain",i));const s=t._addBroadcastHandler("layoutComputed",()=>this.schedule());this.registerDisposer(s)}complete(){const e=this.startPosAccessor;this._data.sort((t,r)=>e(t)-e(r));for(const t of new Set(this._data.map(this.laneAccessor)))this.reservationMaps.set(t,new A8(200));this.schedule(),super.complete()}_filterAndPropagate(){super.reset();const e=this.resolution.getScale(),t=this.resolution.getAxisLength();if(!t)return;for(const o of this.reservationMaps.values())o.reset();const r=e.domain(),s=f8(this._data,70,this.scoreAccessor,this.endPosBisector.left(this._data,r[0]),this.startPosBisector.right(this._data,r[1]));for(const o of s){let a=e(this.startPosAccessor(o))*t,l=e(this.endPosAccessor(o))*t;const c=l-a,u=this.widthAccessor(o)+this.padding*2;let f=(a+l)/2;const h=Math.max(0,(c-u)/2);if(h>0){const A=Math.max(0,u/2-f);f+=Math.min(A,h);const d=Math.max(0,u/2+f-t);f-=Math.min(d,h)}if(this.reservationMaps.get(this.laneAccessor(o)).reserve(f-u/2,f+u/2))if(this.params.asMidpoint){const A=Object.assign({},o);A[this.params.asMidpoint]=e.invert(f/t),this._propagate(A)}else this._propagate(o)}super.complete()}reset(){super.reset(),this._data=[],this.groups=new Map}handle(e){this._data.push(e)}}class d8 extends Qe{constructor(e,t){super(e,t),this.params=e,this.predicate=void 0}initialize(){let e="";if(g8(this.params))e=this.params.expr;else if(p8(this.params)){const t=this.paramRuntime.findValue(this.params.param);if(!t)throw new Error(`Cannot initialize filter transform. Selection parameter "${this.params.param}" not found!`);e=TE(this.params,t)}else throw new Error("Invalid filter params: "+JSON.stringify(this.params));this.predicate=this.paramRuntime.watchExpression(e,()=>this.repropagate(),{scopeOwned:!1,registerDisposer:t=>this.registerDisposer(t)})}handle(e){this.predicate(e)&&this._propagate(e)}}function g8(n){return"expr"in n}function p8(n){return"param"in n}class m8 extends Qe{get behavior(){return Nt}constructor(e){super(e),this.params=e;const t=e.index;if(e.fields){const r=Me(e.fields).map(s=>$(s)),i=Me(e.as||e.fields);if(r.length!==i.length)throw new Error(`Lengths of "fields" (${r.length}), and "as" (${i.length}) do not match!`);this.handle=s=>{const o=r.map((l,c)=>l(s)??[]),a=o[0].length;for(let l=0;l<a;l++){const c=Object.assign({},s);for(let u=0;u<r.length;u++)c[i[u]]=l<o[u].length?o[u][l]:null;t&&(c[t]=l),this._propagate(c)}}}else this.handle=r=>{for(let i=0;i<r.length;i++){const s=Object.assign({},r[i]);t&&(s[t]=i),this._propagate(s)}}}}const w8=48;function*C8(n,e=","){const t=e.charCodeAt(0);let r=0;for(let i=0;i<n.length;i++){const s=n.charCodeAt(i);s==t?(yield r,r=0):r=r*10+s-w8}yield r}class y8 extends Qe{get behavior(){return Nt}constructor(e){super(e);const t=$(e.exons??"exons"),r=$(e.start??"start"),[i,s]=e.as||["exonStart","exonEnd"];this.handle=o=>{let a=r(o),l=a,c=!0;const u=t(o);for(const f of C8(u)){if(c)l=a+f;else{a=l+f;const h=Object.assign({},o);h[i]=l,h[s]=a,this._propagate(h)}c=!c}}}}class I8 extends Qe{get behavior(){return Nt}constructor(e){super(e);const t=Me(e.field).map(s=>$(s)),r=Me(e.separator),i=Me(e.as||e.field);if(t.length!==r.length||t.length!==i.length)throw new Error(`Lengths of "separator" (${r.length}), "fields" (${t.length}), and "as" (${i.length}) do not match!`);this.handle=s=>{if(t.some(l=>!l(s)))return;const o=t.map((l,c)=>l(s).split(r[c]));b8(o,s);const a=o[0].length;for(let l=0;l<a;l++){const c=Object.assign({},s);for(let u=0;u<t.length;u++)c[i[u]]=o[u][l];this._propagate(c)}}}}function b8(n,e){const t=n.map(r=>r.length);if(!t.every(r=>r==t[0]))throw new Error("Mismatching number of elements in the fields to be split: "+JSON.stringify(e))}class E8 extends Qe{get behavior(){return yn}constructor(e,t){super(e,t),this.params=e,this.as=e.as,this.fn=void 0}initialize(){this.fn=this.paramRuntime.watchExpression(this.params.expr,()=>this.repropagate(),{scopeOwned:!1,registerDisposer:e=>this.registerDisposer(e)})}handle(e){e[this.as]=this.fn(e),this._propagate(e)}}class Dm extends Qe{get behavior(){return yn}constructor(e,t){e={channel:"x",...e},super(e),this.params=e;const r=e.channel;if(!["x","y"].includes(r))throw new Error("Invalid channel: "+r);const i=t.getScaleResolution(r).getScale(),s="genome"in i?i.genome():void 0;if(!s)throw new Error("LinearizeGenomicCoordinate transform requires a locus scale!");const o=$(e.chrom),a=Me(e.pos).map(g=>$(g)),l=Me(e.as);if(a.length!=l.length)throw new Error('The number of "pos" and "as" elements must be equal!');const c=Me(e.offset);let u;if(c.length==0)u=new Array(a.length).fill(0);else if(c.length==1)u=new Array(a.length).fill(c[0]);else if(c.length==a.length)u=c;else throw new Error(`Invalid "offset" parameter: ${JSON.stringify(e.offset)}!`);const f=new Function("datum","chromOffset","posAccessors",l.map((g,p)=>`datum[${JSON.stringify(g)}] = chromOffset + +posAccessors[${p}](datum) - ${u[p]};`).join(`
|
|
613
|
-
`));let h,A=0;const d=g=>{if(g!==h){if(A=s.cumulativeChromPositions.get(g),A===void 0)return;h=g}return A};this.handle=g=>{const p=o(g),m=d(p);if(m===void 0)throw new Error(`Unknown chromosome/contig "${p}" in datum: ${JSON.stringify(g)}`);f(g,m,a),this._propagate(g)}}}const km={chars:JSON.parse('[{"id":87,"width":53,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":43.491,"chnl":15,"x":0,"y":0,"page":0},{"id":124,"width":17,"height":50,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":10.521,"chnl":15,"x":0,"y":42,"page":0},{"id":40,"width":20,"height":49,"xoffset":0,"yoffset":-32.571000000000005,"xadvance":11.214,"chnl":15,"x":0,"y":94,"page":0},{"id":41,"width":19,"height":49,"xoffset":0,"yoffset":-32.571000000000005,"xadvance":11.214,"chnl":15,"x":0,"y":145,"page":0},{"id":36,"width":32,"height":49,"xoffset":0,"yoffset":-34.419000000000004,"xadvance":24.360000000000003,"chnl":15,"x":0,"y":196,"page":0},{"id":125,"width":21,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.642000000000001,"chnl":15,"x":0,"y":247,"page":0},{"id":91,"width":22,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.852,"chnl":15,"x":0,"y":297,"page":0},{"id":93,"width":19,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.852,"chnl":15,"x":0,"y":347,"page":0},{"id":123,"width":21,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.642000000000001,"chnl":15,"x":0,"y":397,"page":0},{"id":106,"width":19,"height":48,"xoffset":0,"yoffset":-30.639000000000003,"xadvance":10.08,"chnl":15,"x":0,"y":447,"page":0},{"id":81,"width":43,"height":47,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":33.621,"chnl":15,"x":21,"y":447,"page":0},{"id":77,"width":45,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":38.997,"chnl":15,"x":66,"y":447,"page":0},{"id":64,"width":43,"height":44,"xoffset":0,"yoffset":-28.539,"xadvance":35.133,"chnl":15,"x":23,"y":397,"page":0},{"id":92,"width":28,"height":43,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":18.984,"chnl":15,"x":68,"y":397,"page":0},{"id":47,"width":28,"height":43,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":18.984,"chnl":15,"x":98,"y":397,"page":0},{"id":109,"width":42,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":34.545,"chnl":15,"x":113,"y":447,"page":0},{"id":119,"width":42,"height":31,"xoffset":0,"yoffset":-21.315,"xadvance":32.991,"chnl":15,"x":157,"y":447,"page":0},{"id":42,"width":25,"height":42,"xoffset":0,"yoffset":-31.626,"xadvance":17.85,"chnl":15,"x":128,"y":397,"page":0},{"id":37,"width":42,"height":41,"xoffset":0,"yoffset":-30.387,"xadvance":33.663000000000004,"chnl":15,"x":155,"y":397,"page":0},{"id":79,"width":42,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":33.621,"chnl":15,"x":199,"y":397,"page":0},{"id":102,"width":24,"height":41,"xoffset":0,"yoffset":-30.534000000000002,"xadvance":14.721,"chnl":15,"x":243,"y":397,"page":0},{"id":100,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.520000000000003,"chnl":15,"x":269,"y":397,"page":0},{"id":98,"width":32,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.520000000000003,"chnl":15,"x":302,"y":397,"page":0},{"id":56,"width":32,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":336,"y":397,"page":0},{"id":38,"width":40,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":29.904000000000003,"chnl":15,"x":370,"y":397,"page":0},{"id":108,"width":17,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":9.912,"chnl":15,"x":412,"y":397,"page":0},{"id":107,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":21.336000000000002,"chnl":15,"x":431,"y":397,"page":0},{"id":48,"width":33,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":464,"y":397,"page":0},{"id":71,"width":38,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":30.681,"chnl":15,"x":21,"y":347,"page":0},{"id":83,"width":31,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":22.785,"chnl":15,"x":61,"y":347,"page":0},{"id":63,"width":27,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":18.795,"chnl":15,"x":94,"y":347,"page":0},{"id":105,"width":18,"height":41,"xoffset":0,"yoffset":-30.639000000000003,"xadvance":10.08,"chnl":15,"x":123,"y":347,"page":0},{"id":51,"width":32,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":143,"y":347,"page":0},{"id":104,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.436,"chnl":15,"x":177,"y":347,"page":0},{"id":67,"width":37,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":28.056,"chnl":15,"x":210,"y":347,"page":0},{"id":88,"width":37,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.258000000000003,"chnl":15,"x":249,"y":347,"page":0},{"id":68,"width":40,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":31.941000000000003,"chnl":15,"x":288,"y":347,"page":0},{"id":70,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":23.751,"chnl":15,"x":330,"y":347,"page":0},{"id":34,"width":23,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":15.561000000000002,"chnl":15,"x":364,"y":347,"page":0},{"id":72,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":32.067,"chnl":15,"x":389,"y":347,"page":0},{"id":73,"width":18,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":11.760000000000002,"chnl":15,"x":429,"y":347,"page":0},{"id":74,"width":24,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":17.745,"chnl":15,"x":449,"y":347,"page":0},{"id":75,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.825000000000003,"chnl":15,"x":24,"y":297,"page":0},{"id":76,"width":31,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":21.567,"chnl":15,"x":475,"y":347,"page":0},{"id":66,"width":35,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.153000000000002,"chnl":15,"x":64,"y":297,"page":0},{"id":78,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":32.067,"chnl":15,"x":101,"y":297,"page":0},{"id":33,"width":18,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":11.298,"chnl":15,"x":141,"y":297,"page":0},{"id":80,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":25.221,"chnl":15,"x":161,"y":297,"page":0},{"id":65,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":28.434,"chnl":15,"x":197,"y":297,"page":0},{"id":82,"width":36,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":26.313000000000002,"chnl":15,"x":237,"y":297,"page":0},{"id":35,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":275,"y":297,"page":0},{"id":84,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.801000000000002,"chnl":15,"x":310,"y":297,"page":0},{"id":85,"width":37,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":30.891000000000002,"chnl":15,"x":346,"y":297,"page":0},{"id":86,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":28.434,"chnl":15,"x":385,"y":297,"page":0},{"id":39,"width":16,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":8.568000000000001,"chnl":15,"x":425,"y":297,"page":0},{"id":69,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.255000000000003,"chnl":15,"x":443,"y":297,"page":0},{"id":89,"width":36,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":26.208000000000002,"chnl":15,"x":23,"y":247,"page":0},{"id":90,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":25.284000000000002,"chnl":15,"x":477,"y":297,"page":0},{"id":49,"width":31,"height":40,"xoffset":0,"yoffset":-30.156000000000002,"xadvance":24.360000000000003,"chnl":15,"x":61,"y":247,"page":0},{"id":50,"width":32,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":94,"y":247,"page":0},{"id":57,"width":32,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":128,"y":247,"page":0},{"id":94,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":162,"y":247,"page":0},{"id":96,"width":21,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":16.8,"chnl":15,"x":196,"y":247,"page":0},{"id":55,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":219,"y":247,"page":0},{"id":54,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":254,"y":247,"page":0},{"id":53,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":289,"y":247,"page":0},{"id":52,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":323,"y":247,"page":0},{"id":103,"width":31,"height":39,"xoffset":0,"yoffset":-21.630000000000003,"xadvance":21.84,"chnl":15,"x":358,"y":247,"page":0},{"id":112,"width":32,"height":39,"xoffset":0,"yoffset":-21.651,"xadvance":23.541,"chnl":15,"x":391,"y":247,"page":0},{"id":113,"width":31,"height":39,"xoffset":0,"yoffset":-21.651,"xadvance":23.520000000000003,"chnl":15,"x":425,"y":247,"page":0},{"id":116,"width":25,"height":39,"xoffset":0,"yoffset":-28.182000000000002,"xadvance":15.057,"chnl":15,"x":458,"y":247,"page":0},{"id":121,"width":31,"height":38,"xoffset":0,"yoffset":-21.273,"xadvance":21.651,"chnl":15,"x":34,"y":196,"page":0},{"id":59,"width":18,"height":36,"xoffset":0,"yoffset":-20.706,"xadvance":10.983,"chnl":15,"x":485,"y":247,"page":0},{"id":43,"width":32,"height":34,"xoffset":0,"yoffset":-24.486,"xadvance":24.360000000000003,"chnl":15,"x":67,"y":196,"page":0},{"id":60,"width":30,"height":33,"xoffset":0,"yoffset":-23.331000000000003,"xadvance":24.360000000000003,"chnl":15,"x":101,"y":196,"page":0},{"id":62,"width":31,"height":33,"xoffset":0,"yoffset":-23.331000000000003,"xadvance":24.360000000000003,"chnl":15,"x":133,"y":196,"page":0},{"id":117,"width":30,"height":32,"xoffset":0,"yoffset":-21.273,"xadvance":23.415000000000003,"chnl":15,"x":166,"y":196,"page":0},{"id":99,"width":29,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":20.055,"chnl":15,"x":198,"y":196,"page":0},{"id":110,"width":31,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":23.436,"chnl":15,"x":229,"y":196,"page":0},{"id":111,"width":32,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":23.814,"chnl":15,"x":262,"y":196,"page":0},{"id":126,"width":32,"height":26,"xoffset":0,"yoffset":-16.128,"xadvance":24.360000000000003,"chnl":15,"x":201,"y":447,"page":0},{"id":101,"width":31,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":22.176000000000002,"chnl":15,"x":296,"y":196,"page":0},{"id":114,"width":25,"height":32,"xoffset":0,"yoffset":-21.651,"xadvance":15.288,"chnl":15,"x":329,"y":196,"page":0},{"id":115,"width":27,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":18.186,"chnl":15,"x":356,"y":196,"page":0},{"id":97,"width":28,"height":32,"xoffset":0,"yoffset":-21.651,"xadvance":20.874000000000002,"chnl":15,"x":385,"y":196,"page":0},{"id":118,"width":31,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":21.672,"chnl":15,"x":415,"y":196,"page":0},{"id":61,"width":31,"height":29,"xoffset":0,"yoffset":-19.089000000000002,"xadvance":24.360000000000003,"chnl":15,"x":448,"y":196,"page":0},{"id":120,"width":30,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":20.916,"chnl":15,"x":21,"y":145,"page":0},{"id":58,"width":18,"height":31,"xoffset":0,"yoffset":-20.706,"xadvance":10.5,"chnl":15,"x":53,"y":145,"page":0},{"id":122,"width":28,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":18.984,"chnl":15,"x":73,"y":145,"page":0},{"id":95,"width":28,"height":16,"xoffset":0,"yoffset":0,"xadvance":19.278000000000002,"chnl":15,"x":235,"y":447,"page":0},{"id":45,"width":23,"height":24,"xoffset":0,"yoffset":-14.175,"xadvance":15.603000000000002,"chnl":15,"x":481,"y":196,"page":0},{"id":44,"width":17,"height":21,"xoffset":0,"yoffset":-4.956,"xadvance":9.534,"chnl":15,"x":103,"y":145,"page":0},{"id":46,"width":18,"height":15,"xoffset":0,"yoffset":-4.956,"xadvance":9.912,"chnl":15,"x":0,"y":497,"page":0},{"id":32,"width":0,"height":0,"xoffset":0,"yoffset":0,"xadvance":10.752,"chnl":15,"x":20,"y":497,"page":0}]'),common:{lineHeight:50.400000000000006,base:41.454,scaleW:512,scaleH:512,pages:1,packed:0,alphaChnl:0,redChnl:0,greenChnl:0,blueChnl:0}};class x8 extends Qe{get behavior(){return yn}constructor(e,t){super(e,t),this.params=e;const r=iu(km),i=$(e.field),s=e.as;let o=0;if(Ie(e.fontSize)){const a=t.paramRuntime.watchExpression(e.fontSize.expr,()=>{o=a(),this.repropagate()},{scopeOwned:!1,registerDisposer:l=>this.registerDisposer(l)});o=a()}else o=e.fontSize;this.handle=a=>{const l=i(a);l!==void 0?a[s]=r.measureWidth(l,o):a[s]=0,this._propagate(a)}}}const B8=65536;class v8 extends Qe{get behavior(){return yn}constructor(e){super(e),this.params=e}reset(){super.reset(),this.initialize()}initialize(){const e=this.params,t=e.as||"lane",r=Ye(e.spacing)?e.spacing:1,i=$(e.start),s=$(e.end);if(!e.preference!=!e.preferredOrder)throw new Error('Must specify both "preference" and "preferredOrder"');if(e.preference){const o=new Float64Array(B8),a=$(e.preference),l=e.preferredOrder;let c=1/0;this.handle=u=>{const f=i(u);f<c&&o.fill(-1/0),c=f;const h=l.indexOf(a(u));let A=-1;if(h>=0&&o[h]<f)A=h;else{const d=i(u);for(A=0;A<o.length&&!(o[A]<d);A++);if(A>=o.length)throw new Error("Out of lanes!")}o[A]=s(u)+r,u[t]=A,this._propagate(u)}}else{const o=new ai,a=new ai;let l=-1/0,c=0;this.handle=u=>{const f=i(u);for(;o.length&&(o.peekValue()<=f||f<l);){const A=o.pop();a.push(A,A)}l=f;let h=a.pop();h===void 0&&(h=c++),u[t]=h,this._propagate(u),o.push(h,s(u)+r)}}}}class S8 extends Qe{get behavior(){return Nt}constructor(e){if(super(e),this.params=e,e.as&&e.as.length!=e.fields.length)throw new Error('"fields" and "as" have unequal lengths!');const t=e.fields.map(i=>$(i)),r=e.as?e.as:t.map(Zy);this.handle=i=>{const s={};for(let o=0;o<t.length;o++)s[r[o]]=t[o](i);this._propagate(s)}}}class Q8 extends Qe{get behavior(){return yn}constructor(e){super(e),this.params=e;const t=new RegExp(e.regex),r=typeof e.as=="string"?[e.as]:e.as,i=$(e.field);this.handle=s=>{const o=i(s);if(le(o)){const a=o.match(t);if(a){if(a.length-1!=r.length)throw new Error('The number of RegEx groups and the length of "as" do not match!');for(let l=0;l<r.length;l++)s[r[l]]=a[l+1]}else if(e.skipInvalidInput)for(let l=0;l<r.length;l++)s[r[l]]=void 0;else throw new Error(`"${o}" does not match the given regex: ${t.toString()}`)}else if(!e.skipInvalidInput)throw new Error(`Trying to match a non-string field. Encountered type: ${typeof o}, field content: "${o}".`);this._propagate(s)}}}class D8 extends Qe{get behavior(){return Nt}constructor(e){super(e),this.params=e;const t=Me(e.columnRegex).map(h=>new RegExp(h));for(const h of t)if(RegExp("|"+h.source).exec("").length-1!=1)throw new Error(`Regex ${h.toString()} must have exactly one capturing group!`);const r=Me(e.asValue);if(t.length!=r.length)throw new Error('Lengths of "columnRegex" and "as" are not equal!');const i=e.skipRegex?new RegExp(e.skipRegex):void 0,s=e.asKey||"sample";let o,a,l;const c=h=>{const A=Object.keys(h);for(const p of t)if(!A.some(m=>p.test(m)))throw new Error(`No columns matching the regex ${p.toString()} found in the data!`);const d=new Map;for(const[p,m]of t.entries())for(const C of A){const y=m.exec(C)?.[1];if(y!==void 0){let w=d.get(y);w||(w=[],d.set(y,w)),w[p]=C}}o=[...d.entries()],a=A.filter(p=>!t.some(m=>m.test(p))&&!(i&&i.test(p)));const g=[...a.map(p=>JSON.stringify(p)+": datum["+JSON.stringify(p)+"]"),JSON.stringify(s)+": sampleId",...r.map((p,m)=>JSON.stringify(p)+`: datum[attrs[${m}]]`)];l=new Function("datum","sampleId","attrs",`return {
|
|
611
|
+
throw new Error("Error evaluating expression: " + ${JSON.stringify(t)} + ", " + e.message, e);
|
|
612
|
+
}`)}catch(e){throw new Error(`Invalid expression: ${t}, ${e.message}`)}}function AF(t,e={}){return fF(t,e)}function Zm(t,e){const n={},i=AF(t,n),r=new Map;for(const o of i.globals){if(r.has(o))continue;const a=e(o);if(!a)throw new Error('Unknown variable "'+o+'" in expression: '+t);r.set(o,a),Object.defineProperty(n,o,{enumerable:!0,get(){return a.get()}})}const s=new Set;return i.subscribe=o=>{const a=[];for(const f of r.values())a.push(f.subscribe(o));let l=!0;const c=()=>{l&&(l=!1,s.delete(c),a.forEach(f=>f()))};return s.add(c),c},i.invalidate=()=>{for(const o of s)o();s.clear()},i.identifier=()=>i.code+"|"+Array.from(r.values()).map(o=>o.id).join(","),{expression:i,dependencies:Array.from(r.values())}}class hF{#e=new jk;#t=new Kk({lifecycleRegistry:this.#e});#n=new Wk;createScope(e){const n=this.#e.createOwner("scope",e??"root");return e?this.#n.createChildScope(n,e):this.#n.createRootScope(n)}disposeScope(e){const n=this.#n.getOwnerId(e);this.#e.disposeOwner(n),this.#n.clearScope(e)}addScopeDisposer(e,n){const i=this.#n.getOwnerId(e);this.#e.addDisposer(i,n)}registerBase(e,n,i,r){const s=this.#n.getOwnerId(e),o=this.#t.createWritable(s,n,"base",i,r);return this.#n.register(e,n,o)}registerSelection(e,n,i,r){const s=this.#n.getOwnerId(e),o=this.#t.createWritable(s,n,"selection",i,r);return this.#n.register(e,n,o)}registerDerived(e,n,i){const{expression:r,dependencies:s}=Zm(i,l=>this.resolve(e,l)),o=this.#n.getOwnerId(e),a=this.#t.computed(o,n,s,()=>r(null));return this.#n.register(e,n,a)}createExpression(e,n){const{expression:i}=Zm(n,r=>this.resolve(e,r));return i}resolve(e,n){return this.#n.resolve(e,n)}runInTransaction(e){return this.#t.runInTransaction(e)}flushNow(){this.#t.flushNow()}whenPropagated(e){return this.#t.whenPropagated(e)}}class dF{#e;#t;#n=new Map;#i=new Map;#s=new Map;#o;#r=!1;constructor(e){this.#o=e??(()=>{});const n=this.#o();n?(this.#e=n.#e,this.#t=this.#e.createScope(n.#t)):(this.#e=new hF,this.#t=this.#e.createScope())}registerParam(e){const n=e.name;if(Tt(n),this.#s.has(n))throw new Error('Parameter "'+n+'" already registered in this scope.');if("value"in e&&"expr"in e)throw new Error(`The parameter "${n}" must not have both value and expr properties!`);let i,r;if(e.push=="outer"){const s=this.findRuntimeForParam(n);if(!s)throw new Error(`Parameter "${n}" not found in outer scope!`);const o=s.paramConfigs.get(n);if(!o)throw new Error(`Outer parameter "${n}" exists as a value but has no registered config.`);if("expr"in o||"select"in o)throw new Error(`The outer parameter "${n}" must not have expr or select properties!`);i=a=>{s.setValue(n,a)},this.#n.set(n,i)}else if("value"in e)r=Hl(e,this),i=this.#a(n,r);else if("expr"in e){const s=this.#e.registerDerived(this.#t,n,e.expr);this.#i.set(n,s),i=()=>{throw new Error('Cannot set derived parameter "'+n+'".')}}else r=Hl(e,this),i=this.#a(n,r);if("select"in e){if(r??=Hl(e,this),!this.#n.has(n)){const s=this.#e.registerSelection(this.#t,n,r);this.#i.set(n,s),this.#n.set(n,o=>{s.set(o),this.#e.flushNow()}),i=this.#n.get(n)}i(r)}return this.#s.set(n,e),i}allocateSetter(e,n,i=!1){if(Tt(e),this.#n.has(e))throw new Error("Setter already allocated for parameter: "+e);const r=this.#e.registerBase(this.#t,e,n,{notify:!i});this.#i.set(e,r);const s=o=>{r.set(o),this.#e.flushNow()};return this.#n.set(e,s),s}setValue(e,n){Tt(e);const i=this.#n.get(e);if(!i)throw new Error("Writable parameter not found in this scope: "+e);i(n)}getValue(e){return this.#i.get(e)?.get()}subscribe(e,n){Tt(e);const i=this.findRuntimeForParam(e);if(!i)throw new Error("Parameter not found: "+e);const r=i.#i.get(e);if(!r)throw new Error("Parameter found without local reference: "+e);return r.subscribe(n)}findValue(e){return this.findRuntimeForParam(e)?.getValue(e)}get paramConfigs(){return this.#s}findRuntimeForParam(e){return this.#i.has(e)?this:this.#o()?.findRuntimeForParam(e)}createExpression(e){return this.#e.createExpression(this.#t,e)}watchExpression(e,n,i={}){const r=this.createExpression(e),s=r.subscribe(n);return(i.scopeOwned??!0)&&this.#e.addScopeDisposer(this.#t,s),i.registerDisposer?.(s),r}#a(e,n){const i=this.#e.registerBase(this.#t,e,n);this.#i.set(e,i);const r=s=>{i.set(s),this.#e.flushNow()};return this.#n.set(e,r),r}evaluateAndGet(e){return this.createExpression(e)()}runInTransaction(e){return this.#e.runInTransaction(e)}flushNow(){this.#e.flushNow()}whenPropagated(e){return this.#e.whenPropagated(e)}dispose(){this.#r||(this.#r=!0,this.#e.disposeScope(this.#t),this.#n.clear(),this.#i.clear(),this.#s.clear())}hasPointSelections(){for(const e of this.#s.values())if(zl(e)){const n=e.select;if(le(n)){if(n=="point")return!0}else if(n.type=="point")return!0}return!1}}function eo(t,e){return!e||/^(data:|([A-Za-z]+:)?\/\/)/.test(t)||t.startsWith("/")?t:(e.endsWith("/")||(e+="/"),e+t)}function gF(t){if(!t)return t;if(/[?#]/.test(t))throw new Error(`Invalid base URL: ${t} - cannot contain query or hash.`);return t.endsWith("/")?t:t+"/"}const On="VISIT_SKIP",Ar="VISIT_STOP",$m=t=>t;class e1{spec;#e;#t={};#n={};#i={};#s;#o;#r=!1;opacityFunction=$m;#a=[];#c="none";facetCoords=new Wt([],JSON.stringify);constructor(e,n,i,r,s,o={}){if(!e)throw new Error("View spec must be defined!");if(this.context=n,this.layoutParent=i,this.dataParent=r,this.#e=s,this.spec=e,this.resolutions={scale:{},axis:{}},$p(this),this.options={blockEncodingInheritance:!1,...o},this.flowHandle=void 0,this.needsAxes={x:!1,y:!1},this.paramRuntime=new dF(()=>this.dataParent?.paramRuntime),e.params)for(const a of e.params)this.paramRuntime.registerParam(a);if(!this.layoutParent?.options.layeredChildren){const a=l=>this.paramRuntime.findRuntimeForParam(l)?void 0:this.paramRuntime.allocateSetter(l,0);this.#o=a("height"),this.#s=a("width")}}get name(){return this.spec.name??this.#e}get explicitName(){return this.spec.name}get defaultName(){return this.#e}get coords(){return this.facetCoords.values().next().value}getPadding(){return this._cache("size/padding",()=>qe.createFromConfig(this.spec.padding))}getOverhang(){return qe.zero()}isScrollable(){return this.spec.viewportWidth!=null||this.spec.viewportHeight!=null}getSize(){return this._cache("size/size",()=>this.isConfiguredVisible()?new Pn(this.#l("width"),this.#l("height")):vm)}getViewportSize(){if(!this.isScrollable())return this.getSize();if(!this.isConfiguredVisible())return vm;const e=this.getSize();return new Pn(this.#l("viewportWidth")??e.width,this.#l("viewportHeight")??e.height)}#l(e){let n=this.spec[e];const i=Fu(n),r=e=="viewportWidth"||e=="viewportHeight";if(i){if(r)throw new He(`Cannot use step-based size with "${e}"!`,this);const s=n.step,o=this.getScaleResolution(e=="width"?"x":"y")?.getScale();if(o){let a=0;if(on(o.type))a=o.domain().length;else if(["locus","index"].includes(o.type)){const c=o.domain();a=ta(c)-c[0]}else throw new He(`Cannot use step-based size with "${o.type}" scale!`,this);const l=o;return a=$f(a,l.paddingInner(),l.paddingOuter()),{px:a*s,grow:0}}else throw new He(`Cannot use step-based size with "${e}"!`,this)}else return(n&&Sm(n))??(r?void 0:{px:0,grow:1})}registerStepSizeInvalidation(){this.#f("width","x"),this.#f("height","y")}#f(e,n){const i=this.spec[e];if(!Fu(i))return;const r=this.getScaleResolution(n);if(!r)throw new He("Cannot use 'step' size without a scale!",this);const s=()=>this.invalidateSizeCache();r.addEventListener("domain",s),this.registerDisposer(()=>r.removeEventListener("domain",s))}isConfiguredVisible(){return this.context.isViewConfiguredVisible(this)}isVisibleInSpec(){return this.spec.visible??!0}isVisible(){return this.getLayoutAncestors().every(e=>e.isConfiguredVisible())}isDomainInert(){if(this.spec.domainInert)return!0;const e=this.dataParent;return e?e.isDomainInert():!1}getDataInitializationState(){return this.#c}_setDataInitializationState(e){this.#c=e}isDataInitialized(){return this.#c==="ready"}getEffectiveOpacity(){return this.opacityFunction(this.layoutParent?.getEffectiveOpacity()??1)}getPathString(){return this.getLayoutAncestors().map(e=>e.name).reverse().join("/")}#u(e){const n=[];let i=this;do n.push(i),i=i[e];while(i);return n}getLayoutAncestors(){return this.#u("layoutParent")}getDataAncestors(){return this.#u("dataParent")}handleBroadcast(e){for(const n of this.#t[e.type]||[])n(e)}_addBroadcastHandler(e,n){let i=this.#t[e];return i||(i=[],this.#t[e]=i),i.push(n),()=>{const r=this.#t[e];if(!r)return;const s=r.indexOf(n);s>=0&&r.splice(s,1)}}handleInteractionEvent(e,n,i){const r=i?this.#n:this.#i;for(const s of r[n.type]||[])s(e,n)}addInteractionEventListener(e,n,i){const r=i?this.#n:this.#i;let s=r[e];s||(s=[],r[e]=s),s.push(n)}removeInteractionEventListener(e,n,i){let s=(i?this.#n:this.#i)?.[e];if(s){const o=s.indexOf(n);o>=0&&s.splice(o,1)}}visit(e){try{const n=e(this);if(e.postOrder&&e.postOrder(this),n!==Ar)return n}catch(n){throw n.view=this,n}}getDescendants(){const e=[];return this.visit(n=>{e.push(n)}),e}dispose(){for(const n of this.#a)n();this.#a.length=0;const e=this.flowHandle;e?.collector&&(this.context.dataFlow.pruneCollectorBranch(e.collector),this.context.dataFlow.removeCollector(e.collector)),e?.dataSource&&e.dataSource.view===this&&!e.dataSource.identifier&&this.context.dataFlow.removeDataSource(e.dataSource),this.paramRuntime.dispose(),this.context.dataFlow.loadingStatusRegistry.delete(this),this.flowHandle=void 0}registerDisposer(e){this.#a.push(e)}disposeSubtree(){const e=()=>{};e.postOrder=n=>{n.dispose()},this.visit(e)}configureViewOpacity(){(!this.opacityFunction||this.opacityFunction===$m)&&(this.opacityFunction=mF(this))}onBeforeRender(){this.#r||(this.#r=!0)}hasRendered(){return this.#r}render(e,n,i={}){i.firstFacet&&this.facetCoords.clear(),this.facetCoords.set(i.facetId,i.clipRect?n.intersect(i.clipRect):n),this.#s?.(n.width),this.#o?.(n.height)}getEncoding(){const e=this.dataParent&&!this.options.blockEncodingInheritance?this.dataParent.getEncoding():{},n=this.spec.encoding||{},i={...e,...n};for(const[r,s]of Object.entries(i))s===null&&delete i[r];return i}getFacetAccessor(e){if(this.layoutParent)return this.layoutParent.getFacetAccessor(this)}getFacetFields(e){const n=this.getEncoding().sample;return tn(n)?[n.field]:this.layoutParent?.getFacetFields(this)}getSampleFacetTexture(){}getScaleResolution(e){const n=In(e);return this.getDataAncestors().map(i=>i.resolutions.scale[n]).find(i=>i)}getAxisResolution(e){const n=In(e);return this.getDataAncestors().map(i=>i.resolutions.axis[n]).find(i=>i)}getConfiguredResolution(e,n){return this.spec.resolve?.[n]?.[e]}getConfiguredOrDefaultResolution(e,n){return this.getConfiguredResolution(e,n)??this.getConfiguredResolution("default",n)??this.getDefaultResolution(e,n)}getDefaultResolution(e,n){return"independent"}getBaseUrl(){return pi(()=>this.dataParent?.getBaseUrl(),gF(this.spec.baseUrl))}isPickingSupported(){return!0}getTitleText(){const e=this.spec.title;if(e)return le(e)?e:Ee(e.text)?this.paramRuntime.evaluateAndGet(e.text.expr):e.text}_cache(e,n){return Ka(this,e,n)}_invalidateCacheByPrefix(e,n="self"){switch(n){case"self":_s(this,e);break;case"ancestors":for(const i of this.getLayoutAncestors())_s(i,e);break;case"progeny":this.visit(i=>_s(i,e));break}}invalidateSizeCache(){_s(this,"size"),this._invalidateCacheByPrefix("size","ancestors")}propagateInteractionEvent(e){}}function pF(t){return"unitsPerPixel"in t}function mF(t){const e="opacity"in t.spec?t.spec.opacity:void 0;if(e!==void 0){if(Ve(e))return n=>n*e;if(pF(e)){const n=c=>{const f=t.getScaleResolution(c),u=f?.getScale();if(["linear","index","locus"].includes(u?.type))return{scale:u,scaleResolution:f}},i=t1(e.values,"opacity.values",t);if(!Ce(e.unitsPerPixel))throw new He('"opacity.unitsPerPixel" must be an array.',t);let r=()=>1,s=[];const o=()=>{const c=t1(s.map(h=>h()),"opacity.unitsPerPixel",t),f=wF(c,i,t),u=Vf().domain(f.unitsPerPixel).range(f.values).clamp(!0);r=h=>u(h)};s=e.unitsPerPixel.map(c=>{if(Ee(c)){const f=t.paramRuntime.watchExpression(c.expr,()=>{o(),t.context.animator.requestRender()});return()=>f(null)}else return()=>c}),o();const a=c=>{const u=c.scaleResolution.getAxisLength()||1e3;return Hr(c.scale.domain())/u};let l;if(e.channel==="auto"){const c=n("x"),f=n("y");if(c&&f)l=()=>(a(c)+a(f))/2;else if(c)l=()=>a(c);else if(f)l=()=>a(f);else throw new He("Cannot find a resolved quantitative x or y scale for dynamic opacity!",t)}else{const c=e.channel?n(e.channel):n("x")??n("y");if(!c)throw new He("Cannot find a resolved quantitative scale for dynamic opacity!",t);l=()=>a(c)}return c=>r(l())*c}else if(Ee(e)){const n=t.paramRuntime.watchExpression(e.expr,()=>t.context.animator.requestRender());return i=>n(null)*i}}return n=>n}function wF(t,e,n){if(!t.length)throw new He('"opacity.unitsPerPixel" must contain at least one stop.',n);if(t.length!==e.length)throw new He('"opacity.unitsPerPixel" and "opacity.values" must have the same length.',n);t.forEach((o,a)=>{if(o<=0)throw new He("Invalid opacity.unitsPerPixel value at index "+a+". Stop values must be positive.",n)});const i=t.map((o,a)=>({stop:o,value:e[a]}));i.sort((o,a)=>a.stop-o.stop);const r=i.map(o=>o.stop),s=i.map(o=>o.value);for(let o=1;o<t.length;o++)if(r[o-1]<=r[o])throw new He('"opacity.unitsPerPixel" must be strictly decreasing.',n);return{unitsPerPixel:r,values:s}}function t1(t,e,n){if(!Ce(t))throw new He('"'+e+'" must evaluate to an array.',n);return t.map((i,r)=>{if(!Ve(i)||!Number.isFinite(i))throw new He("Invalid "+e+" value at index "+r+". Expected a finite number.",n);return i})}const Fu=t=>!!t?.step;function yF(t){return CF(t?.search,"search")}function CF(t,e){if(!t)return;const n=Array.isArray(t)?t:[t];if(n.length===0)throw new Error("The "+e+" channel array must not be empty.");const i=[];for(const r of n){if(!r||typeof r!="object"||!("field"in r))throw new Error("The "+e+" channel must be a field definition or an array of field definitions.");const s=r.field;if(typeof s!="string")throw new Error("The "+e+" channel field definition must include a string field name.");i.push(s)}return i}const EF={point:E4,rect:g4,rule:B4,link:R4,text:O4};class nt extends e1{#e;#t=!1;#n=null;constructor(e,n,i,r,s,o){super(e,n,i,r,s,o),this.spec=e;const a=EF[this.getMarkType()];if(a)this.mark=new a(this);else throw new Error(`No such mark: ${this.getMarkType()}`);this.resolve(),this.#e=this.paramRuntime.allocateSetter("zoomLevel",1);for(const l of["x","y"]){const c=this.getScaleResolution(l);if(c){const f=()=>{this.#e(Math.sqrt(this.getZoomLevel()))};c.addEventListener("domain",f),this.registerDisposer(()=>c.removeEventListener("domain",f))}}this.needsAxes={x:!0,y:!0},this.#i()}#i(){for(const[e,n]of this.paramRuntime.paramConfigs){if(!("select"in n))continue;const i=sa(n.select),r=i.on,s=i.clear;if(oa(i)){let a=0;const l=h=>{this.paramRuntime.setValue(e,h)},c=()=>{const h=this.context.getCurrentHover();return h?.mark?.unitView===this?h.datum:null},f=r.filter?Xm(r.filter):()=>!0,u=(h,A)=>{if(!f(A.proxiedMouseEvent))return;const d=c(),g=d?d[gt]:0;let m;if(i.toggle)if(A.mouseEvent.shiftKey){if(d){const w=this.paramRuntime.getValue(e);m=Wx(w,{toggle:[d]})}}else m=_l(d?[d]:null);else g!=a&&(a=g,m=Ul(d));m!==void 0&&l(m)};if(this.addInteractionEventListener(["mouseover","pointerover"].includes(r.type)?"mousemove":r.type,u),s){const h=s.filter?Xm(s.filter):()=>!0,A=(d,g)=>{if(!h(g.proxiedMouseEvent))return;a=0;const m=i.toggle?_l():Ul(null);l(m)};this.addInteractionEventListener(s.type,A)}}}}render(e,n,i={}){super.render(e,n,i),this.isConfiguredVisible()&&(e.pushView(this,n),e.renderMark(this.mark,i),e.popView(this))}getMarkType(){return typeof this.spec.mark=="object"?this.spec.mark.type:this.spec.mark}getEncoding(){const e=super.getEncoding(),n=this.mark.getSupportedChannels();for(const i of Object.keys(e))i!=="key"&&(n.includes(i)||delete e[i]);return e}resolve(e){if(!e){this.resolve("scale"),this.resolve("axis");return}const n=this.mark.encoding;for(const[i,r]of Object.entries(n)){if(!r||Array.isArray(r))continue;let s;if(pt(r))s=r;else if(Tl(r)){const l=r.condition;if(!Array.isArray(l)&&pt(l))s=l;else continue}else continue;const o=In(s.resolutionChannel??i);if(!ra(o)||e=="axis"&&!ps(o))continue;let a=this;for(;(a.getConfiguredOrDefaultResolution(o,e)=="forced"||a.dataParent&&["shared","excluded","forced"].includes(a.dataParent.getConfiguredOrDefaultResolution(o,e)))&&a.getConfiguredOrDefaultResolution(o,e)!="excluded";)a=a.dataParent;if(e=="axis"&&ps(i)&&Pl(o)){a.resolutions[e][o]||(a.resolutions[e][o]=new Yk(o));const l=a.resolutions[e][o],c=l.registerMember({view:this,channel:i,channelDef:s});this.registerDisposer(()=>{c()&&a.resolutions[e][o]===l&&delete a.resolutions[e][o]})}else if(e=="scale"&&ra(i)){if(!a.resolutions[e][o]){const u=new Hk(o);a.resolutions[e][o]=u;const h=A=>{this.context.glHelper?.createRangeTexture(A.scaleResolution,!0)};u.addEventListener("range",h),u.addEventListener("domain",h),this.registerDisposer(()=>{u.removeEventListener("range",h),u.removeEventListener("domain",h)})}const l=!this.isDomainInert(),c=a.resolutions[e][o],f=c.registerMember({view:this,channel:i,channelDef:s,contributesToDomain:l});this.registerDisposer(()=>{f()&&a.resolutions[e][o]===c&&(c.dispose(),delete a.resolutions[e][o])})}}}dispose(){super.dispose(),this.mark.dispose()}getDataAccessor(e){const n=this.mark.encoders;if(n)return n[e]?.dataAccessor}getSearchAccessors(){if(!this.#n){const e=yF(this.getEncoding())??[];this.#n=e.map(n=>$(n))}return this.#n}getFacetAccessor(e){const n=this.getDataAccessor("sample");return n||super.getFacetAccessor(this)}getCollector(){return this.flowHandle?.collector}registerDomainSubscriptions(){if(this.#t||this.isDomainInert())return;const e=this.getCollector();if(!e)return;const n=this.mark.encoders;if(!n)throw new Error("Encoders are not initialized!");this.#t=!0;const i=new Map;for(const r of Object.values(n)){if(!r)continue;const s=r.accessors??[];if(s.length!==0)for(const o of s){if(!Ld(o)||o.channelDef.domainInert)continue;const a=this.getScaleResolution(o.scaleChannel);if(!a)throw new Error("Missing scale resolution for channel: "+o.scaleChannel);let l=i.get(a);l||(l=new Set,i.set(a,l)),l.add(o)}}for(const[r,s]of i){if(s.size===0)continue;const o=r.registerCollectorSubscriptions(e,s);this.registerDisposer(o)}}getZoomLevel(){const e=n=>this.getScaleResolution(n)?.getZoomLevel()??1;return ii.map(e).reduce((n,i)=>n*i,1)}propagateInteractionEvent(e){this.handleInteractionEvent(void 0,e,!0),e.target=this,!e.stopped&&this.handleInteractionEvent(void 0,e,!1)}getDefaultResolution(e,n){return e=="x"?"shared":"independent"}}class Ru extends Error{constructor(e,n){super(n),this.kind=e}}async function n1(t,e={}){let n;try{n=await fetch(t,{signal:e.signal})}catch(i){throw new Ru("network",String(i))}if(!n.ok)throw new Ru("http",String(n.status)+" "+n.statusText);try{return await n.json()}catch(i){throw new Ru("json",String(i))}}function IF(t){const e=new Set;t.visit(n=>{for(const i of Object.values(n.resolutions.scale)){const r=i.name;if(r&&e.has(r))throw new Error(`The same scale name "${r}" occurs in multiple scale resolutions!`);e.add(r)}})}function bF(t){for(const e of ii){const n=t.getScaleResolution(e);n&&!n.name&&n.isZoomable()&&(n.name=`${e}_at_root`)}}function Nu(t,e=()=>!0){return Promise.allSettled(t).then(n=>{if(e())for(const i of n)"value"in i?i.value.finalizeGraphicsInitialization():"reason"in i&&console.error(i.reason)})}async function xF(t,e,n){const i=t.import;if(!("url"in i))throw new Error("Not an url import: "+JSON.stringify(i));const r=pi(e,i.url);let s;try{s=await n1(r)}catch(o){throw new Error(`Could not load imported view spec: ${r}. Reason: ${o.message}`)}if(n.isViewSpec(s))return s.baseUrl=pi(cm(i.url),s.baseUrl),s;throw new Error(`The imported spec "${r}" is not a view spec: ${JSON.stringify(t)}`)}function BF(t){const e=t.getSize(),n=t.getPadding(),i=(r,s)=>r.grow>0?void 0:r.px+s;return{width:i(e.width,n.horizontalTotal),height:i(e.height,n.verticalTotal)}}function*Mu(t,e=[]){for(const[n,i]of t.entries())if(i instanceof Map)for(const r of Mu(i,[...e,n]))yield r;else yield[[...e,n],i]}const i1=2147483647,vF=r1([i1]);function SF(t){for(let e=1;e<t.length;e++)if(t[e]<t[e-1])return!1;return!0}function r1(t){let e=0;for(let n=0,i=t.length;n<i;n++)t[n]>e&&(e=t[n]);return Math.floor(Math.log2(e)/4)+1}function QF(t){const e=r1(t);let n=Array.from({length:t.length},(s,o)=>o);if(SF(t))return n;let i=new Array(t.length);const r=new Array(16);for(let s=0;s<e;s++){r.fill(0);const o=s*4,a=Math.pow(16,s),l=c=>{const f=t[n[c]];return s>=vF?f>i1?Math.floor(f/a)%16:0:f>>o&15};for(let c=0;c<t.length;c++)r[l(c)]++;for(let c=1;c<16;c++)r[c]+=r[c-1];for(let c=t.length-1;c>=0;c--)i[--r[l(c)]]=n[c];[n,i]=[i,n]}return n}const sc="|",Tu="\\";class DF{#e=null;#t=null;#n=!1;invalidate(){this.#e=null,this.#t=null,this.#n=!1}findDatum(e,n,i){if(!e||e.length===0)return;const r=e.join(", ");if(e.length!==n.length)throw new Error(`Key tuple length ${n.length} does not match fields [${r}]`);(!this.#e||!this.#s(e))&&this.#i(e,i);const s=this.#t;let o;if(this.#n){let a="";for(let l=0;l<n.length;l++){l>0&&(a+=sc);const c=s[l],f=oc(n[l],c);a+=s1(f)}o=a}else{const a=s[0];o=oc(n[0],a)}return this.#e.get(o)}#i(e,n){const i=e.map(a=>$(a)),r=new Map,s=e.join(", "),o=e.length!==1;if(o)for(const a of n)for(let l=0,c=a.length;l<c;l++){const f=a[l];let u="";for(let A=0;A<i.length;A++){A>0&&(u+=sc);const d=e[A],g=oc(i[A](f),d);u+=s1(g)}if(r.get(u)!==void 0){const A=i.map(d=>d(f));throw new Error(`Duplicate key detected for fields [${s}]: ${JSON.stringify(A)}`)}r.set(u,f)}else{const a=i[0],l=e[0];for(const c of n)for(let f=0,u=c.length;f<u;f++){const h=c[f],A=oc(a(h),l);if(r.get(A)!==void 0)throw new Error(`Duplicate key detected for fields [${s}]: ${JSON.stringify(A)}`);r.set(A,h)}}this.#e=r,this.#t=[...e],this.#n=o}#s(e){if(!this.#t||this.#t.length!==e.length)return!1;for(let n=0;n<e.length;n++)if(this.#t[n]!==e[n])return!1;return!0}}function oc(t,e){if(t===void 0)throw new Error(`Key field "${e}" is undefined. Ensure all key fields are present in the data.`);if(t===null)throw new Error(`Key field "${e}" is null. Ensure all key fields are present in the data.`);if(typeof t!="string"&&typeof t!="number"&&typeof t!="boolean")throw new Error(`Key field "${e}" must be a scalar value (string, number, or boolean).`);return t}function kF(t){if(!(t.indexOf(Tu)!==-1||t.indexOf(sc)!==-1))return t;let n="";for(let i=0;i<t.length;i++){const r=t[i];(r===Tu||r===sc)&&(n+=Tu),n+=r}return n}function s1(t){return typeof t=="string"?kF(t):String(t)}class o1 extends Rl{#e=[];#t=$(gt);#n=[];#i=new DF;#s;#o;#r=new FF;get behavior(){return Fl}get label(){return"collect"}constructor(e){super(),this.params=e??{type:"collect"},this.observers=new Set,this.facetBatches=new Wt([],JSON.stringify),this.#o=NF(this.params?.sort),this.#a()}#a(){this.#e=[],this.#n=[],this.#i.invalidate(),this.facetBatches.clear(),this.facetBatches.set(void 0,this.#e)}reset(){super.reset(),this.#a()}handle(e){this.#e.push(e)}beginBatch(e){this.#i.invalidate(),Ox(e)&&(this.#e=[],this.facetBatches.set(Ne(e.facetId),this.#e))}complete(){if(this.#e=[],this.params.groupby?.length){if(this.facetBatches.size>1)throw new Error("TODO: Support faceted data!");const e=this.facetBatches.get(void 0),n=this.params.groupby.map(r=>$(r)),i=n.length>1?Oo(e,...n):RF(e,n[0]);this.facetBatches.clear();for(const[r,s]of Mu(i))this.facetBatches.set(r,s)}if(this.#o)for(const e of this.facetBatches.values())e.sort(this.#o);this.#u(),this.#c(),super.complete(),this.#f();for(const e of this.observers)e(this)}observe(e){return this.observers.add(e),()=>{this.observers.delete(e)}}#c(){if(this.children.length)for(const[e,n]of this.facetBatches.entries()){if(e){const i={type:"facet",facetId:e};for(const r of this.children)r.beginBatch(i)}for(let i=0,r=n.length;i<r;i++)this._propagate(n[i])}}repropagate(){for(const e of this.children)e.reset();this.#c();for(const e of this.children)e.complete();this.#f()}getDomain(e,n,i){return this.#r.getDomain(e,()=>{const r=Xa(n);if(i.constant)r.extend(i({}));else if(this.completed)for(const s of this.facetBatches.values())for(let o=0,a=s.length;o<a;o++)r.extend(i(s[o]));return r})}subscribeDomainChanges(e,n){return this.#r.subscribe(e,n)}getData(){switch(this.#l(),this.facetBatches.size){case 0:return[];case 1:return[...this.facetBatches.values()][0];default:{const e=this.facetBatches;return{[Symbol.iterator]:function*(){for(const i of e.values())yield*i}}}}}visitData(e){this.#l();for(const n of this.facetBatches.values())for(let i=0;i<n.length;i++)e(n[i])}getItemCount(){let e=0;for(const n of this.facetBatches.values())e+=n.length;return e}#l(){if(!this.completed)throw new Error("Data propagation is not completed! No data are available.")}#f(){this.#r.hasCachedDomains()&&this.#r.clear(),this.#r.notify()}#u(){this.#s=[];const e=this.facetBatches.values().next().value?.[0];if(e==null||!(gt in e))return;let n=0;const i=[],r=this.#t;for(const[s,o]of this.facetBatches){this.#s.push({start:n,stop:n+o.length,facetId:s}),n+=o.length;for(let a=0,l=o.length;a<l;a++)i.push(r(o[a]))}this.#n=QF(i)}findDatumByUniqueId(e){if(!this.#n.length)return;const n=Zn(a=>a.start).right,i=this.#t,r=Zn(a=>i(s(a))).left,s=a=>{const l=n(this.#s,a),c=this.#s[l-1];return!c||a>=c.stop?void 0:this.facetBatches.get(c.facetId)[a-c.start]},o=r(this.#n,e);if(o>=0){const a=s(this.#n[o]);if(a&&i(a)===e)return a}}findDatumByKey(e,n){return this.#l(),this.#i.findDatum(e,n,this.facetBatches.values())}}class FF{#e=new Map;#t=new Map;hasCachedDomains(){return this.#e.size>0}clear(){this.#e.clear()}getDomain(e,n){const i=this.#e.get(e);if(i)return i;{const r=n();return this.#e.set(e,r),r}}subscribe(e,n){let i=this.#t.get(e);return i||(i=new Set,this.#t.set(e,i)),i.add(n),()=>{const r=this.#t.get(e);r&&(r.delete(n),r.size===0&&this.#t.delete(e))}}notify(){if(this.#t.size===0)return;const e=new Set;for(const n of this.#t.values())for(const i of n)e.add(i);for(const n of e)n()}}function RF(t,e){const n=new Map;for(let i=0,r=t.length;i<r;i++){const s=t[i],o=e(s);let a=n.get(o);a||(a=[],n.set(o,a)),a.push(s)}return n}function NF(t){if(t?.field){const e=Ne(t.field);if(e.length==1&&!e[0].includes(".")){const n=Ne(t.order)[0]??"ascending",i=JSON.stringify(e[0]);return new Function("a","b",`return a[${i}] ${n==="ascending"?"-":"+"} b[${i}];`)}return ph(t.field,t.order)}}class MF extends Qe{get behavior(){return Mt}constructor(e){super(e),this.params=e,this.startAccessor=$(e.start),this.endAccessor=$(e.end),this.chromAccessor=e.chrom?$(e.chrom):n=>{},this.weightAccessor=e.weight?$(e.weight):n=>1,this.as={coverage:e.as??"coverage",start:e.asStart??e.start,end:e.asEnd??e.end,chrom:e.asChrom??e.chrom},this.createSegment=new Function("start","end","coverage","chrom","return {"+Object.entries(this.as).filter(([n,i])=>i).map(([n,i])=>`${JSON.stringify(i)}: ${n}`).join(", ")+"};"),this.ends=new ur}reset(){super.reset(),this.initialize()}initialize(){const e=this.as.coverage,n=this.as.end,i=this.as.chrom,r=this.startAccessor,s=this.endAccessor,o=this.chromAccessor,a=this.weightAccessor;let l,c,f,u=0,h=NaN;const A=this.ends;A.clear();const d=p=>{this._propagate(p),l=null},g=(p,w,C)=>{if(p==w)return;let y=!1;l&&(l[e]===C?(l[n]=w,y=!0):l[e]!=0&&d(l)),y||(l=this.createSegment(p,w,C,f))},m=()=>{let p=0;for(;(p=A.peekValue())!==void 0;)g(h,p,u),h=p,u-=A.pop();h=NaN,l&&d(l)};this.handle=p=>{const w=r(p);let C=0;for(;(C=A.peekValue())!==void 0&&C<w;)g(h,C,u),h=C,u-=A.pop();if(i){let b=o(p);b!==c&&(m(),f=b,c=f)}isNaN(h)||g(h,w,u),h=w;const y=a(p);u+=y,A.push(y,s(p))},this.complete=()=>{m(),super.complete()},this.beginBatch=p=>{m(),c=null,super.beginBatch(p)}}}function TF(t,e,n=s=>+s,i=0,r=t.length){const s=new ur,o=r-i;let a;for(a=0;a<e&&a<o;a++)s.push(a,n(t[i+a]));for(;a<o;a++){const f=n(t[i+a]);f>=s.peekValue()&&(s.push(a,f),s.pop())}const l=[];let c;for(;(c=s.pop())!==void 0;)l.push(t[i+c]);return l.reverse()}class PF{constructor(e,n=-1/0,i=1/0){this.maxSize=e,this.lowerLimit=n,this.upperLimit=i;const r=this.maxSize*2+1;this.lowerLimits=new Float64Array(r),this.upperLimits=new Float64Array(r),this.lowerChildren=new Int32Array(r),this.upperChildren=new Int32Array(r),this.reset()}reset(){this.lowerLimits.fill(0),this.upperLimits.fill(0),this.lowerChildren.fill(0),this.upperChildren.fill(0),this.n=1,this.lowerLimits[0]=this.lowerLimit,this.upperLimits[0]=this.upperLimit}_findSlot(e,n,i=0){if(e>=this.lowerLimits[i]&&n<=this.upperLimits[i]){const r=this.lowerChildren[i];if(r){const s=this._findSlot(e,n,r);return s>=0?s:this._findSlot(e,n,this.upperChildren[i])}else return i}else return-1}reserve(e,n){if(n-e<=0)throw new Error("Cannot reserve an empty or negative-size slot!");if(this.n+1>this.lowerLimits.length)return!1;const i=this._findSlot(e,n);if(i<0)return!1;const r=this.n++,s=this.n++;return this.lowerLimits[r]=this.lowerLimits[i],this.upperLimits[r]=e,this.lowerLimits[s]=n,this.upperLimits[s]=this.upperLimits[i],this.lowerChildren[i]=r,this.upperChildren[i]=s,!0}}class LF extends Qe{get behavior(){return Fl}constructor(e,n){if(super(e),this.params=e,this._data=[],this.channel=e.channel??"x",!["x","y"].includes(this.channel))throw new Error("Invalid channel: "+this.channel);this.startPosAccessor=$(this.params.pos),this.endPosAccessor=$(this.params.pos2??this.params.pos),this.startPosBisector=Zn(this.startPosAccessor),this.endPosBisector=Zn(this.endPosAccessor),this.scoreAccessor=$(this.params.score),this.widthAccessor=$(this.params.width),this.laneAccessor=this.params.lane?$(this.params.lane):o=>0,this.padding=this.params.padding??0,this.reservationMaps=new Map,this.resolution=n.getScaleResolution(this.channel);const i=()=>this._filterAndPropagate();this.schedule=()=>n.context.animator.requestTransition(i);const r=()=>this.schedule();this.resolution.addEventListener("domain",r),this.registerDisposer(()=>this.resolution.removeEventListener("domain",r));const s=n._addBroadcastHandler("layoutComputed",()=>this.schedule());this.registerDisposer(s)}complete(){const e=this.startPosAccessor;this._data.sort((n,i)=>e(n)-e(i));for(const n of new Set(this._data.map(this.laneAccessor)))this.reservationMaps.set(n,new PF(200));this.schedule(),super.complete()}_filterAndPropagate(){super.reset();const e=this.resolution.getScale(),n=this.resolution.getAxisLength();if(!n)return;for(const o of this.reservationMaps.values())o.reset();const i=e.domain(),s=TF(this._data,70,this.scoreAccessor,this.endPosBisector.left(this._data,i[0]),this.startPosBisector.right(this._data,i[1]));for(const o of s){let a=e(this.startPosAccessor(o))*n,l=e(this.endPosAccessor(o))*n;const c=l-a,f=this.widthAccessor(o)+this.padding*2;let u=(a+l)/2;const h=Math.max(0,(c-f)/2);if(h>0){const A=Math.max(0,f/2-u);u+=Math.min(A,h);const d=Math.max(0,f/2+u-n);u-=Math.min(d,h)}if(this.reservationMaps.get(this.laneAccessor(o)).reserve(u-f/2,u+f/2))if(this.params.asMidpoint){const A=Object.assign({},o);A[this.params.asMidpoint]=e.invert(u/n),this._propagate(A)}else this._propagate(o)}super.complete()}reset(){super.reset(),this._data=[],this.groups=new Map}handle(e){this._data.push(e)}}class OF extends Qe{constructor(e,n){super(e,n),this.params=e,this.predicate=void 0}initialize(){let e="";if(UF(this.params))e=this.params.expr;else if(_F(this.params)){const n=this.paramRuntime.findValue(this.params.param);if(!n)throw new Error(`Cannot initialize filter transform. Selection parameter "${this.params.param}" not found!`);e=Xx(this.params,n)}else throw new Error("Invalid filter params: "+JSON.stringify(this.params));this.predicate=this.paramRuntime.watchExpression(e,()=>this.repropagate(),{scopeOwned:!1,registerDisposer:n=>this.registerDisposer(n)})}handle(e){this.predicate(e)&&this._propagate(e)}}function UF(t){return"expr"in t}function _F(t){return"param"in t}class GF extends Qe{get behavior(){return Mt}constructor(e){super(e),this.params=e;const n=e.index;if(e.fields){const i=Ne(e.fields).map(s=>$(s)),r=Ne(e.as||e.fields);if(i.length!==r.length)throw new Error(`Lengths of "fields" (${i.length}), and "as" (${r.length}) do not match!`);this.handle=s=>{const o=i.map((l,c)=>l(s)??[]),a=o[0].length;for(let l=0;l<a;l++){const c=Object.assign({},s);for(let f=0;f<i.length;f++)c[r[f]]=l<o[f].length?o[f][l]:null;n&&(c[n]=l),this._propagate(c)}}}else this.handle=i=>{for(let r=0;r<i.length;r++){const s=Object.assign({},i[r]);n&&(s[n]=r),this._propagate(s)}}}}const zF=48;function*HF(t,e=","){const n=e.charCodeAt(0);let i=0;for(let r=0;r<t.length;r++){const s=t.charCodeAt(r);s==n?(yield i,i=0):i=i*10+s-zF}yield i}class YF extends Qe{get behavior(){return Mt}constructor(e){super(e);const n=$(e.exons??"exons"),i=$(e.start??"start"),[r,s]=e.as||["exonStart","exonEnd"];this.handle=o=>{let a=i(o),l=a,c=!0;const f=n(o);for(const u of HF(f)){if(c)l=a+u;else{a=l+u;const h=Object.assign({},o);h[r]=l,h[s]=a,this._propagate(h)}c=!c}}}}class VF extends Qe{get behavior(){return Mt}constructor(e){super(e);const n=Ne(e.field).map(s=>$(s)),i=Ne(e.separator),r=Ne(e.as||e.field);if(n.length!==i.length||n.length!==r.length)throw new Error(`Lengths of "separator" (${i.length}), "fields" (${n.length}), and "as" (${r.length}) do not match!`);this.handle=s=>{if(n.some(l=>!l(s)))return;const o=n.map((l,c)=>l(s).split(i[c]));JF(o,s);const a=o[0].length;for(let l=0;l<a;l++){const c=Object.assign({},s);for(let f=0;f<n.length;f++)c[r[f]]=o[f][l];this._propagate(c)}}}}function JF(t,e){const n=t.map(i=>i.length);if(!n.every(i=>i==n[0]))throw new Error("Mismatching number of elements in the fields to be split: "+JSON.stringify(e))}class qF extends Qe{get behavior(){return En}constructor(e,n){super(e,n),this.params=e,this.as=e.as,this.fn=void 0}initialize(){this.fn=this.paramRuntime.watchExpression(this.params.expr,()=>this.repropagate(),{scopeOwned:!1,registerDisposer:e=>this.registerDisposer(e)})}handle(e){e[this.as]=this.fn(e),this._propagate(e)}}class a1 extends Qe{get behavior(){return En}constructor(e,n){e={channel:"x",...e},super(e),this.params=e;const i=e.channel;if(!["x","y"].includes(i))throw new Error("Invalid channel: "+i);const r=n.getScaleResolution(i).getScale(),s="genome"in r?r.genome():void 0;if(!s)throw new Error("LinearizeGenomicCoordinate transform requires a locus scale!");const o=$(e.chrom),a=Ne(e.pos).map(g=>$(g)),l=Ne(e.as);if(a.length!=l.length)throw new Error('The number of "pos" and "as" elements must be equal!');const c=Ne(e.offset);let f;if(c.length==0)f=new Array(a.length).fill(0);else if(c.length==1)f=new Array(a.length).fill(c[0]);else if(c.length==a.length)f=c;else throw new Error(`Invalid "offset" parameter: ${JSON.stringify(e.offset)}!`);const u=new Function("datum","chromOffset","posAccessors",l.map((g,m)=>`datum[${JSON.stringify(g)}] = chromOffset + +posAccessors[${m}](datum) - ${f[m]};`).join(`
|
|
613
|
+
`));let h,A=0;const d=g=>{if(g!==h){if(A=s.cumulativeChromPositions.get(g),A===void 0)return;h=g}return A};this.handle=g=>{const m=o(g),p=d(m);if(p===void 0)throw new Error(`Unknown chromosome/contig "${m}" in datum: ${JSON.stringify(g)}`);u(g,p,a),this._propagate(g)}}}const c1={chars:JSON.parse('[{"id":87,"width":53,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":43.491,"chnl":15,"x":0,"y":0,"page":0},{"id":124,"width":17,"height":50,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":10.521,"chnl":15,"x":0,"y":42,"page":0},{"id":40,"width":20,"height":49,"xoffset":0,"yoffset":-32.571000000000005,"xadvance":11.214,"chnl":15,"x":0,"y":94,"page":0},{"id":41,"width":19,"height":49,"xoffset":0,"yoffset":-32.571000000000005,"xadvance":11.214,"chnl":15,"x":0,"y":145,"page":0},{"id":36,"width":32,"height":49,"xoffset":0,"yoffset":-34.419000000000004,"xadvance":24.360000000000003,"chnl":15,"x":0,"y":196,"page":0},{"id":125,"width":21,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.642000000000001,"chnl":15,"x":0,"y":247,"page":0},{"id":91,"width":22,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.852,"chnl":15,"x":0,"y":297,"page":0},{"id":93,"width":19,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.852,"chnl":15,"x":0,"y":347,"page":0},{"id":123,"width":21,"height":48,"xoffset":0,"yoffset":-32.193000000000005,"xadvance":12.642000000000001,"chnl":15,"x":0,"y":397,"page":0},{"id":106,"width":19,"height":48,"xoffset":0,"yoffset":-30.639000000000003,"xadvance":10.08,"chnl":15,"x":0,"y":447,"page":0},{"id":81,"width":43,"height":47,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":33.621,"chnl":15,"x":21,"y":447,"page":0},{"id":77,"width":45,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":38.997,"chnl":15,"x":66,"y":447,"page":0},{"id":64,"width":43,"height":44,"xoffset":0,"yoffset":-28.539,"xadvance":35.133,"chnl":15,"x":23,"y":397,"page":0},{"id":92,"width":28,"height":43,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":18.984,"chnl":15,"x":68,"y":397,"page":0},{"id":47,"width":28,"height":43,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":18.984,"chnl":15,"x":98,"y":397,"page":0},{"id":109,"width":42,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":34.545,"chnl":15,"x":113,"y":447,"page":0},{"id":119,"width":42,"height":31,"xoffset":0,"yoffset":-21.315,"xadvance":32.991,"chnl":15,"x":157,"y":447,"page":0},{"id":42,"width":25,"height":42,"xoffset":0,"yoffset":-31.626,"xadvance":17.85,"chnl":15,"x":128,"y":397,"page":0},{"id":37,"width":42,"height":41,"xoffset":0,"yoffset":-30.387,"xadvance":33.663000000000004,"chnl":15,"x":155,"y":397,"page":0},{"id":79,"width":42,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":33.621,"chnl":15,"x":199,"y":397,"page":0},{"id":102,"width":24,"height":41,"xoffset":0,"yoffset":-30.534000000000002,"xadvance":14.721,"chnl":15,"x":243,"y":397,"page":0},{"id":100,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.520000000000003,"chnl":15,"x":269,"y":397,"page":0},{"id":98,"width":32,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.520000000000003,"chnl":15,"x":302,"y":397,"page":0},{"id":56,"width":32,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":336,"y":397,"page":0},{"id":38,"width":40,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":29.904000000000003,"chnl":15,"x":370,"y":397,"page":0},{"id":108,"width":17,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":9.912,"chnl":15,"x":412,"y":397,"page":0},{"id":107,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":21.336000000000002,"chnl":15,"x":431,"y":397,"page":0},{"id":48,"width":33,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":464,"y":397,"page":0},{"id":71,"width":38,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":30.681,"chnl":15,"x":21,"y":347,"page":0},{"id":83,"width":31,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":22.785,"chnl":15,"x":61,"y":347,"page":0},{"id":63,"width":27,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":18.795,"chnl":15,"x":94,"y":347,"page":0},{"id":105,"width":18,"height":41,"xoffset":0,"yoffset":-30.639000000000003,"xadvance":10.08,"chnl":15,"x":123,"y":347,"page":0},{"id":51,"width":32,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":143,"y":347,"page":0},{"id":104,"width":31,"height":41,"xoffset":0,"yoffset":-30.933000000000003,"xadvance":23.436,"chnl":15,"x":177,"y":347,"page":0},{"id":67,"width":37,"height":41,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":28.056,"chnl":15,"x":210,"y":347,"page":0},{"id":88,"width":37,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.258000000000003,"chnl":15,"x":249,"y":347,"page":0},{"id":68,"width":40,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":31.941000000000003,"chnl":15,"x":288,"y":347,"page":0},{"id":70,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":23.751,"chnl":15,"x":330,"y":347,"page":0},{"id":34,"width":23,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":15.561000000000002,"chnl":15,"x":364,"y":347,"page":0},{"id":72,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":32.067,"chnl":15,"x":389,"y":347,"page":0},{"id":73,"width":18,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":11.760000000000002,"chnl":15,"x":429,"y":347,"page":0},{"id":74,"width":24,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":17.745,"chnl":15,"x":449,"y":347,"page":0},{"id":75,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.825000000000003,"chnl":15,"x":24,"y":297,"page":0},{"id":76,"width":31,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":21.567,"chnl":15,"x":475,"y":347,"page":0},{"id":66,"width":35,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":27.153000000000002,"chnl":15,"x":64,"y":297,"page":0},{"id":78,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":32.067,"chnl":15,"x":101,"y":297,"page":0},{"id":33,"width":18,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":11.298,"chnl":15,"x":141,"y":297,"page":0},{"id":80,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":25.221,"chnl":15,"x":161,"y":297,"page":0},{"id":65,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":28.434,"chnl":15,"x":197,"y":297,"page":0},{"id":82,"width":36,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":26.313000000000002,"chnl":15,"x":237,"y":297,"page":0},{"id":35,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":275,"y":297,"page":0},{"id":84,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.801000000000002,"chnl":15,"x":310,"y":297,"page":0},{"id":85,"width":37,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":30.891000000000002,"chnl":15,"x":346,"y":297,"page":0},{"id":86,"width":38,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":28.434,"chnl":15,"x":385,"y":297,"page":0},{"id":39,"width":16,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":8.568000000000001,"chnl":15,"x":425,"y":297,"page":0},{"id":69,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.255000000000003,"chnl":15,"x":443,"y":297,"page":0},{"id":89,"width":36,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":26.208000000000002,"chnl":15,"x":23,"y":247,"page":0},{"id":90,"width":34,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":25.284000000000002,"chnl":15,"x":477,"y":297,"page":0},{"id":49,"width":31,"height":40,"xoffset":0,"yoffset":-30.156000000000002,"xadvance":24.360000000000003,"chnl":15,"x":61,"y":247,"page":0},{"id":50,"width":32,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":94,"y":247,"page":0},{"id":57,"width":32,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":24.360000000000003,"chnl":15,"x":128,"y":247,"page":0},{"id":94,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":162,"y":247,"page":0},{"id":96,"width":21,"height":40,"xoffset":0,"yoffset":-30.429000000000002,"xadvance":16.8,"chnl":15,"x":196,"y":247,"page":0},{"id":55,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":219,"y":247,"page":0},{"id":54,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":254,"y":247,"page":0},{"id":53,"width":32,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":289,"y":247,"page":0},{"id":52,"width":33,"height":40,"xoffset":0,"yoffset":-30.093000000000004,"xadvance":24.360000000000003,"chnl":15,"x":323,"y":247,"page":0},{"id":103,"width":31,"height":39,"xoffset":0,"yoffset":-21.630000000000003,"xadvance":21.84,"chnl":15,"x":358,"y":247,"page":0},{"id":112,"width":32,"height":39,"xoffset":0,"yoffset":-21.651,"xadvance":23.541,"chnl":15,"x":391,"y":247,"page":0},{"id":113,"width":31,"height":39,"xoffset":0,"yoffset":-21.651,"xadvance":23.520000000000003,"chnl":15,"x":425,"y":247,"page":0},{"id":116,"width":25,"height":39,"xoffset":0,"yoffset":-28.182000000000002,"xadvance":15.057,"chnl":15,"x":458,"y":247,"page":0},{"id":121,"width":31,"height":38,"xoffset":0,"yoffset":-21.273,"xadvance":21.651,"chnl":15,"x":34,"y":196,"page":0},{"id":59,"width":18,"height":36,"xoffset":0,"yoffset":-20.706,"xadvance":10.983,"chnl":15,"x":485,"y":247,"page":0},{"id":43,"width":32,"height":34,"xoffset":0,"yoffset":-24.486,"xadvance":24.360000000000003,"chnl":15,"x":67,"y":196,"page":0},{"id":60,"width":30,"height":33,"xoffset":0,"yoffset":-23.331000000000003,"xadvance":24.360000000000003,"chnl":15,"x":101,"y":196,"page":0},{"id":62,"width":31,"height":33,"xoffset":0,"yoffset":-23.331000000000003,"xadvance":24.360000000000003,"chnl":15,"x":133,"y":196,"page":0},{"id":117,"width":30,"height":32,"xoffset":0,"yoffset":-21.273,"xadvance":23.415000000000003,"chnl":15,"x":166,"y":196,"page":0},{"id":99,"width":29,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":20.055,"chnl":15,"x":198,"y":196,"page":0},{"id":110,"width":31,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":23.436,"chnl":15,"x":229,"y":196,"page":0},{"id":111,"width":32,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":23.814,"chnl":15,"x":262,"y":196,"page":0},{"id":126,"width":32,"height":26,"xoffset":0,"yoffset":-16.128,"xadvance":24.360000000000003,"chnl":15,"x":201,"y":447,"page":0},{"id":101,"width":31,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":22.176000000000002,"chnl":15,"x":296,"y":196,"page":0},{"id":114,"width":25,"height":32,"xoffset":0,"yoffset":-21.651,"xadvance":15.288,"chnl":15,"x":329,"y":196,"page":0},{"id":115,"width":27,"height":32,"xoffset":0,"yoffset":-21.609,"xadvance":18.186,"chnl":15,"x":356,"y":196,"page":0},{"id":97,"width":28,"height":32,"xoffset":0,"yoffset":-21.651,"xadvance":20.874000000000002,"chnl":15,"x":385,"y":196,"page":0},{"id":118,"width":31,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":21.672,"chnl":15,"x":415,"y":196,"page":0},{"id":61,"width":31,"height":29,"xoffset":0,"yoffset":-19.089000000000002,"xadvance":24.360000000000003,"chnl":15,"x":448,"y":196,"page":0},{"id":120,"width":30,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":20.916,"chnl":15,"x":21,"y":145,"page":0},{"id":58,"width":18,"height":31,"xoffset":0,"yoffset":-20.706,"xadvance":10.5,"chnl":15,"x":53,"y":145,"page":0},{"id":122,"width":28,"height":31,"xoffset":0,"yoffset":-21.273,"xadvance":18.984,"chnl":15,"x":73,"y":145,"page":0},{"id":95,"width":28,"height":16,"xoffset":0,"yoffset":0,"xadvance":19.278000000000002,"chnl":15,"x":235,"y":447,"page":0},{"id":45,"width":23,"height":24,"xoffset":0,"yoffset":-14.175,"xadvance":15.603000000000002,"chnl":15,"x":481,"y":196,"page":0},{"id":44,"width":17,"height":21,"xoffset":0,"yoffset":-4.956,"xadvance":9.534,"chnl":15,"x":103,"y":145,"page":0},{"id":46,"width":18,"height":15,"xoffset":0,"yoffset":-4.956,"xadvance":9.912,"chnl":15,"x":0,"y":497,"page":0},{"id":32,"width":0,"height":0,"xoffset":0,"yoffset":0,"xadvance":10.752,"chnl":15,"x":20,"y":497,"page":0}]'),common:{lineHeight:50.400000000000006,base:41.454,scaleW:512,scaleH:512,pages:1,packed:0,alphaChnl:0,redChnl:0,greenChnl:0,blueChnl:0}};class KF extends Qe{get behavior(){return En}constructor(e,n){super(e,n),this.params=e;const i=If(c1),r=$(e.field),s=e.as;let o=0;if(Ee(e.fontSize)){const a=n.paramRuntime.watchExpression(e.fontSize.expr,()=>{o=a(),this.repropagate()},{scopeOwned:!1,registerDisposer:l=>this.registerDisposer(l)});o=a()}else o=e.fontSize;this.handle=a=>{const l=r(a);l!==void 0?a[s]=i.measureWidth(l,o):a[s]=0,this._propagate(a)}}}const jF=65536;class WF extends Qe{get behavior(){return En}constructor(e){super(e),this.params=e}reset(){super.reset(),this.initialize()}initialize(){const e=this.params,n=e.as||"lane",i=Ve(e.spacing)?e.spacing:1,r=$(e.start),s=$(e.end);if(!e.preference!=!e.preferredOrder)throw new Error('Must specify both "preference" and "preferredOrder"');if(e.preference){const o=new Float64Array(jF),a=$(e.preference),l=e.preferredOrder;let c=1/0;this.handle=f=>{const u=r(f);u<c&&o.fill(-1/0),c=u;const h=l.indexOf(a(f));let A=-1;if(h>=0&&o[h]<u)A=h;else{const d=r(f);for(A=0;A<o.length&&!(o[A]<d);A++);if(A>=o.length)throw new Error("Out of lanes!")}o[A]=s(f)+i,f[n]=A,this._propagate(f)}}else{const o=new ur,a=new ur;let l=-1/0,c=0;this.handle=f=>{const u=r(f);for(;o.length&&(o.peekValue()<=u||u<l);){const A=o.pop();a.push(A,A)}l=u;let h=a.pop();h===void 0&&(h=c++),f[n]=h,this._propagate(f),o.push(h,s(f)+i)}}}}class XF extends Qe{get behavior(){return Mt}constructor(e){if(super(e),this.params=e,e.as&&e.as.length!=e.fields.length)throw new Error('"fields" and "as" have unequal lengths!');const n=e.fields.map(r=>$(r)),i=e.as?e.as:n.map(dI);this.handle=r=>{const s={};for(let o=0;o<n.length;o++)s[i[o]]=n[o](r);this._propagate(s)}}}class ZF extends Qe{get behavior(){return En}constructor(e){super(e),this.params=e;const n=new RegExp(e.regex),i=typeof e.as=="string"?[e.as]:e.as,r=$(e.field);this.handle=s=>{const o=r(s);if(le(o)){const a=o.match(n);if(a){if(a.length-1!=i.length)throw new Error('The number of RegEx groups and the length of "as" do not match!');for(let l=0;l<i.length;l++)s[i[l]]=a[l+1]}else if(e.skipInvalidInput)for(let l=0;l<i.length;l++)s[i[l]]=void 0;else throw new Error(`"${o}" does not match the given regex: ${n.toString()}`)}else if(!e.skipInvalidInput)throw new Error(`Trying to match a non-string field. Encountered type: ${typeof o}, field content: "${o}".`);this._propagate(s)}}}class $F extends Qe{get behavior(){return Mt}constructor(e){super(e),this.params=e;const n=Ne(e.columnRegex).map(h=>new RegExp(h));for(const h of n)if(RegExp("|"+h.source).exec("").length-1!=1)throw new Error(`Regex ${h.toString()} must have exactly one capturing group!`);const i=Ne(e.asValue);if(n.length!=i.length)throw new Error('Lengths of "columnRegex" and "as" are not equal!');const r=e.skipRegex?new RegExp(e.skipRegex):void 0,s=e.asKey||"sample";let o,a,l;const c=h=>{const A=Object.keys(h);for(const m of n)if(!A.some(p=>m.test(p)))throw new Error(`No columns matching the regex ${m.toString()} found in the data!`);const d=new Map;for(const[m,p]of n.entries())for(const w of A){const C=p.exec(w)?.[1];if(C!==void 0){let y=d.get(C);y||(y=[],d.set(C,y)),y[m]=w}}o=[...d.entries()],a=A.filter(m=>!n.some(p=>p.test(m))&&!(r&&r.test(m)));const g=[...a.map(m=>JSON.stringify(m)+": datum["+JSON.stringify(m)+"]"),JSON.stringify(s)+": sampleId",...i.map((m,p)=>JSON.stringify(m)+`: datum[attrs[${p}]]`)];l=new Function("datum","sampleId","attrs",`return {
|
|
614
614
|
`+g.join(`,
|
|
615
615
|
`)+`
|
|
616
|
-
};`)},u=h=>{o||c(h);for(let A=0;A<o.length;A++){const[d,g]=o[A],p=l(h,d,g);this._propagate(p)}},f=h=>{c(h),u(h),this.handle=u};this.handle=f,this.beginBatch=h=>{td(h)&&(this.handle=f),super.beginBatch(h)}}}class k8 extends Qe{get behavior(){return yn}constructor(e){super(e),this.params=e,this.buffer=[]}reset(){super.reset(),this.buffer=[]}handle(e){this.buffer.push(e)}complete(){const e=this.params,t=e.as||["y0","y1"],r=e.sort?OA(e.sort.field,e.sort.order):void 0,i=e.field?$(e.field):()=>1,s=e.groupby.map(u=>$(u)),o=dI(this.buffer,u=>s.map(f=>f(u)).join()).map(u=>u[1]);let a=u=>!0;if(e.baseField){const u=$(e.baseField);a=f=>u(f)!==null}let l,c;switch(e.offset){case"normalize":l=(u,f)=>u/f,c=(u,f)=>qi(u,f);break;case"center":l=(u,f)=>u-f/2,c=(u,f)=>qi(u,f);break;case"information":{const u=Math.log2(e.cardinality??4);l=(f,h)=>f/h,c=(f,h)=>{const d=qi(f,C=>+!a(C)),g=qi(f,h),p=g-d;let m=0;for(let C=0;C<f.length;C++){const y=f[C];if(a(y)){const w=h(y)/p;m-=w*Math.log2(w)}}return p/(u-(m+0))*(p/g)}}break;default:l=(u,f)=>u,c=(u,f)=>1}for(const u of o){r&&u.sort(r);const f=c(u,i);let h=0;for(const A of u){const d=h+i(A);a(A)&&(A[t[0]]=l(h,f),A[t[1]]=l(d,f),this._propagate(A),h=d)}}super.complete()}}class F8 extends Qe{get behavior(){return Nt}constructor(e){super(e),this.params=e;const t=$(e.field??"sequence"),[r,i]=e.as??["pos","sequence"];this.handle=s=>{const o=Object.assign({},s,{[i]:"",[r]:0}),a=t(s);for(let l=0;l<a.length;l++){const c=Object.assign({},o);c[r]=l,c[i]=a.charAt(l),this._propagate(c)}}}}const Fm={count:n=>n.length,valid:cI,sum:qi,min:Xc,max:Wc,mean:yI,median:II,variance:lI};class R8 extends Qe{get behavior(){return Nt}constructor(e){if(super(e),this.params=e,this.buffer=[],this.ops=[],this.as=[],e.fields){if(e.fields.length!=e.ops.length)throw new Error("Fields and ops must have the same length!");if(e.as&&e.as.length!=e.ops.length)throw new Error('If "as" is defined, "fields" and "as" must have the same length!');e.fields.forEach((t,r)=>{const i=$(t),s=Fm[e.ops[r]];this.ops.push(o=>s(o,i)),this.as.push(e.as?e.as[r]:`${e.ops[r]}_${e.fields[r]}`)})}else this.ops.push(t=>Fm.count(t)),this.as.push("count")}reset(){super.reset(),this.buffer=[]}handle(e){this.buffer.push(e)}complete(){const t=this.params?.groupby;if(t?.length>0){const r=t.map(s=>$(s)),i=Qo(this.buffer,...r);for(const[s,o]of pf(i)){const a={};for(let l=0;l<t.length;l++)a[t[l]]=s[l];this.ops.forEach((l,c)=>{a[this.as[c]]=l(o)}),this._propagate(a)}}else{const r={};this.ops.forEach((i,s)=>{r[this.as[s]]=i(this.buffer)}),this._propagate(r)}super.complete()}}const M8={aggregate:R8,collect:Qm,coverage:u8,filterScoredLabels:h8,filter:d8,flatten:m8,flattenCompressedExons:y8,flattenDelimited:I8,flattenSequence:F8,formula:E8,identifier:pl,linearizeGenomicCoordinate:Dm,measureText:x8,pileup:v8,project:S8,regexExtract:Q8,regexFold:D8,sample:Sp,stack:k8};function N8(n,e){const t=M8[n.type];if(t)return new t(n,e);throw new Error("Unknown transform: "+n.type)}function Rm(n,e=[]){if(!Tm(n)&&!Nm(n))return;const t={...n.format};if(t.type??=Nm(n)&&P8(e),t.parse??="auto",!t.type)throw new Error("Format for the data source was not defined and it could not be inferred: "+JSON.stringify(n));return t}function T8(n){return Al(n)?.responseType??"text"}function P8(n){if(Array.isArray(n)&&(n=n[0]),n)return n.match(/\.(csv|tsv|json)/)?.[1]}const Mm=n=>typeof n!="object"?L8:O8,L8=n=>({data:n}),O8=n=>n;function Nm(n){return"url"in n}class wr extends gl{view;constructor(e){super(),this.view=e}get identifier(){}setLoadingStatus(e,t){this.view.context.dataFlow.loadingStatusRegistry.set(this.view,e,t)}get paramRuntime(){return this.view.paramRuntime}handle(e){throw new Error("Source does not handle incoming data!")}async load(){}repropagate(){this.load()}}function Tm(n){return"values"in n}class U8 extends wr{constructor(e,t){if(super(t),this.params=e,typeof e.values=="string"&&!e?.format?.type)throw new Error("Data format type (csv, dsv, ...) must be specified if a string is provided!")}get label(){return"inlineSource"}isTrivial(){const e=this.params.values,t=Array.isArray(e)?e[0]:e;return!!(t&&Object.keys(t).length==0&&t.constructor===Object)}updateDynamicData(e){this.#e(e)}loadSynchronously(){this.#e(this.params.values)}#e(e){let t=[],r=i=>i;if(Array.isArray(e))e.length>0&&(t=e,r=Mm(e[0]));else if(typeof e=="object")t=[e];else if(typeof e=="string")t=hl(e,Rm(this.params));else throw new Error('"values" in data configuration is not an array, object, or a string!');this.reset(),this.beginBatch({type:"file"});for(const i of t)this._propagate(r(i));this.complete()}async load(){this.loadSynchronously()}}function G8(n){return"url"in n}class z8 extends wr{constructor(e,t){super(t),this.params=us(t.paramRuntime,e,()=>this.load(),r=>this.registerDisposer(r),{batchMode:"whenPropagated"}),this.baseUrl=t?.getBaseUrl()}get identifier(){return JSON.stringify({params:this.params,baseUrl:this.baseUrl})}get label(){return"urlSource"}async#e(e){const t=dr(this.baseUrl,e.urlsFromFile),r=await fetch(t);if(!r.ok)throw new Error(`Cannot load "${t}": ${r.status} ${r.statusText}`);const i=await r.text();return hl(i,{type:e.type??"tsv"}).map(o=>typeof o=="string"?o:o.url).map(o=>dr(t,o))}async load(){const e=xe(this.params.url),t=typeof e=="object"&&"urlsFromFile"in e?await this.#e(e):(Array.isArray(e)?e:[e]).map(a=>dr(this.baseUrl,a)),r=Rm(this.params,t),i=T8(r.type);if(t.length===0||!t[0]){this.reset(),this.complete();return}const s=async a=>{try{const l=await fetch(a);if(!l.ok)throw new Error(`${l.status} ${l.statusText}`);return typeof l[i]=="function"?l[i]():l.text()}catch(l){throw new Error(`Could not load data: ${a}. Reason: ${l.message}`)}},o=(a,l)=>{try{const c=hl(a,r);this.beginBatch({type:"file",url:l});for(const u of c)this._propagate(u)}catch(c){throw new Error(`Cannot parse: ${l}: ${c.message}`)}};this.setLoadingStatus("loading"),this.reset();try{await Promise.all(t.map(a=>s(a).then(o))),this.setLoadingStatus("complete")}catch(a){this.setLoadingStatus("error",a.message)}this.complete()}}function H8(n){return"sequence"in n}class V8 extends wr{constructor(e,t){if(super(t),this.sequence=us(t.paramRuntime,e.sequence,()=>this.loadSynchronously(),r=>this.registerDisposer(r),{batchMode:"whenPropagated"}),!("start"in this.sequence))throw new Error("'start' is missing from sequence parameters!");if(!("stop"in this.sequence))throw new Error("'stop' is missing from sequence parameters!")}get label(){return"sequenceSource"}loadSynchronously(){const e=xe(this.sequence.as)??"data",t=xe(this.sequence.start)??0,r=xe(this.sequence.step)??1,i=xe(this.sequence.stop);this.reset(),this.beginBatch({type:"file"});for(let s=t;s<i;s+=r)this._propagate({[e]:s});this.complete()}async load(){this.loadSynchronously()}}class wf extends wr{initializedPromise=Promise.resolve();_lastLoadedDomain;constructor(e,t){if(super(e),t){if(t!=="x"&&t!=="y")throw new Error(`Invalid channel specified for the lazy data source: ${t}. Must be either "x" or "y"`)}else throw new Error('No channel has been specified for the lazy data source. Must be either "x" or "y".');if(this.channel=t,this.scaleResolution=this.view.getScaleResolution(t),!this.scaleResolution){const i=[`The lazy data source cannot find a resolved scale for channel "${t}".`];throw this.view instanceof tt||i.push('Make sure the view has a "shared" scale resolution as it is not a unit view.'),new Error(i.join(" "))}const r=()=>{this.view.isVisible()&&this.onDomainChanged(this.scaleResolution.getDomain(),this.scaleResolution.getComplexDomain())};this.scaleResolution.addEventListener("domain",r),this.view.context.addBroadcastListener("layoutComputed",r)}get genome(){const e=this.scaleResolution.getScale();if("genome"in e){const t=e.genome();if(t)return t}throw new Error("No genome has been defined!")}onDomainChanged(e,t){}requestRender(){this.view.context.animator.requestRender()}async load(){this.reset(),this.complete()}publishData(e){this._lastLoadedDomain=Array.from(this.scaleResolution.getDomain()),this.reset(),this.beginBatch({type:"file"});for(const t of e)for(const r of t)this._propagate(r);this.complete()}isDataReadyForDomain(e){const t=e[this.channel];if(!t||!this._lastLoadedDomain)return!1;const[r,i]=t[0]<=t[1]?t:[t[1],t[0]],[s,o]=this._lastLoadedDomain[0]<=this._lastLoadedDomain[1]?this._lastLoadedDomain:[this._lastLoadedDomain[1],this._lastLoadedDomain[0]];return r>=s&&i<=o}}class _8 extends wf{ticks=[];constructor(e,t){const r={...e};super(t,r.channel),this.params=e}get label(){return"axisTickSource"}async load(){this.ticks=null,this.onDomainChanged()}onDomainChanged(){const e=this.scaleResolution.getScale(),t=this.scaleResolution.getAxisLength(),r=this.params.axis,i=l=>25+60*mm(100,700,l),s=Ye(r.tickCount)?r.tickCount:Math.round(t/i(t)),o=Mp(e,s,r.tickMinStep),a=r.values?Np(e,r.values,o):kD(e,o);if(this.ticks==null||!Ur(a,this.ticks)){this.ticks=a;const l=RD(e,s,r.format);this.publishData([a.map(c=>({value:c,label:l(c)}))])}}}class Y8 extends wf{constructor(e,t){super(t,e.channel)}get label(){return"axisGenomeSource"}async load(){this.publishData([this.genome.chromosomes])}}class Ks extends wf{#e=new AbortController;#t=[0,0];#n=[0,0];#r=0;params;setupDebouncing(e){const t=()=>xe(e.debounce),r=e.debounceMode;if(r=="domain")this.onDomainChanged=Yo(this.onDomainChanged.bind(this),t,!1);else if(r=="window")this.loadInterval=Yo(this.loadInterval.bind(this),t,!1);else throw new Error("Invalid debounceMode: "+r)}onDomainChanged(e){this.#n=e;const t=xe(this.params?.windowSize)??-1;e[1]-e[0]>t||this.callIfWindowsChanged(e,t,async r=>{await this.initializedPromise,this.loadInterval(r)})}reloadLastDomain(){const e=this.#n;this.#n=[0,0],this.#t=[0,0],this._lastLoadedDomain=void 0,this.onDomainChanged(e)}async loadInterval(e){}publishData(e){const t=this._lastLoadedDomain;super.publishData(e),t&&(this._lastLoadedDomain=t)}async discretizeAndLoad(e,t){this.#e.abort(),this.setLoadingStatus("loading"),this.#e=new AbortController;const r=this.#e.signal,i=this.genome.continuousToDiscreteChromosomeIntervals(e);try{const s=await Promise.all(i.map(async o=>t(o,r)));if(!r.aborted)return this.setLoadingStatus("complete"),this._lastLoadedDomain=Array.from(e),s}catch(s){if(!r.aborted)throw this.setLoadingStatus("error",s.message),s}}callIfWindowsChanged(e,t,r){const i=[Math.max(Math.floor(e[0]/t)*t,0),Math.min(Math.ceil(e[1]/t)*t,this.genome.totalSize)],s=this.#t;(t!==this.#r||i[0]<s[0]||i[1]>s[1])&&(this.#t=i,this.#r=t,r(i))}}class J8 extends Ks{constructor(e,t){const r={channel:"x",windowSize:7e3,debounce:200,debounceMode:"window",...e};if(super(t,r.channel),this.params=r,!this.params.url)throw new Error("No URL provided for IndexedFastaSource");this.setupDebouncing(this.params),this.initializedPromise=new Promise(i=>{Promise.all([Promise.resolve().then(()=>rM),Promise.resolve().then(()=>Zs)]).then(([{IndexedFasta:s},{RemoteFile:o}])=>{const a=l=>new o(qs(l,this.view.getBaseUrl()));this.fasta=new s({fasta:a(this.params.url),fai:a(this.params.indexUrl??this.params.url+".fai")}),i()})})}get label(){return"bigWigSource"}async loadInterval(e){const t=await this.discretizeAndLoad(e,async(r,i)=>this.fasta.getSequence(r.chrom,r.startPos,r.endPos,{signal:i}).then(s=>{if(s!=null)return{chrom:r.chrom,start:r.startPos,sequence:s};console.log(`No sequence found for interval ${r.chrom}:${r.startPos}-${r.endPos}`)}));this.publishData([t.filter(r=>r!==void 0)])}}class q8 extends Ks{#e=[];#t;constructor(e,t){const r={pixelsPerBin:2,channel:"x",debounce:200,debounceMode:"window",...e},i=xe(r.channel);if(super(t,i),this.params=us(t.paramRuntime,r,s=>{s.has("url")?this.#n().then(()=>this.reloadLastDomain()):s.has("pixelsPerBin")&&this.reloadLastDomain()},s=>this.registerDisposer(s),{batchMode:"whenPropagated"}),!this.params.url)throw new Error("No URL provided for BigWigSource");this.setupDebouncing(this.params),this.#n()}get label(){return"bigWigSource"}#n(){return this.initializedPromise=new Promise((e,t)=>{Promise.all([Promise.resolve().then(()=>oC),Promise.resolve().then(()=>Zs)]).then(([{BigWig:r},{RemoteFile:i}])=>{this.#t=new r({filehandle:new i(qs(xe(this.params.url),this.view.getBaseUrl()))}),this.setLoadingStatus("loading"),this.#t.getHeader().then(s=>{this.#e=s.zoomLevels.map(o=>o.reductionLevel).reverse(),this.#e.push(1),this.setLoadingStatus("complete"),e()}).catch(s=>{this.load(),this.setLoadingStatus("error",`${xe(this.params.url)}: ${s.message}`),t(s)})})}),this.initializedPromise}async onDomainChanged(e){await this.initializedPromise;const t=this.scaleResolution.getAxisLength()||700,r=K8(e,t,this.#e),i=Math.max(r*t,5e3);this.callIfWindowsChanged(e,i,s=>this.loadInterval(s,r))}async loadInterval(e,t){const r=.5/t/xe(this.params.pixelsPerBin),i=await this.discretizeAndLoad(e,(s,o)=>this.#t.getFeatures(s.chrom,s.startPos,s.endPos,{scale:r,signal:o}).then(a=>a.map(l=>({chrom:s.chrom,start:l.start,end:l.end,score:l.score}))));i&&this.publishData(i)}}function K8(n,e,t){const r=(n[1]-n[0])/e;return t.find(i=>i<r)??t.at(-1)}class j8 extends Ks{parser;bbi;parseLine;constructor(e,t){const r={channel:"x",windowSize:1e6,debounce:200,debounceMode:"window",...e},i=xe(r.channel);if(super(t,i),this.params=us(t.paramRuntime,r,s=>{s.has("url")?this.#e().then(()=>this.reloadLastDomain()):s.has("windowSize")&&this.reloadLastDomain()},s=>this.registerDisposer(s),{batchMode:"whenPropagated"}),!this.params.url)throw new Error("No URL provided for BigBedSource");this.setupDebouncing(this.params),this.#e()}get label(){return"bigBedSource"}#e(){return this.initializedPromise=new Promise((e,t)=>{Promise.all([Promise.resolve().then(()=>u5),Promise.resolve().then(()=>oC),Promise.resolve().then(()=>Zs)]).then(([r,{BigBed:i},{RemoteFile:s}])=>{const o=r.default;this.bbi=new i({filehandle:new s(qs(xe(this.params.url),this.view.getBaseUrl()))}),this.setLoadingStatus("loading"),this.bbi.getHeader().then(async a=>{this.parser=new o({autoSql:a.autoSql});try{const l=W8(this.parser);this.parseLine=(c,u)=>l(c,u.start,u.end,u.rest)}catch{this.parseLine=(c,u)=>this.parser.parseLine(`${c} ${u.start} ${u.end} ${u.rest}`)}this.setLoadingStatus("complete"),e()}).catch(a=>{this.load(),this.setLoadingStatus("error",`${xe(this.params.url)}: ${a.message}`),t(a)})})}),this.initializedPromise}async loadInterval(e){const t=await this.discretizeAndLoad(e,async(r,i)=>this.bbi.getFeatures(r.chrom,r.startPos,r.endPos,{signal:i}).then(s=>s.map(o=>this.parseLine(r.chrom,o))));t&&this.publishData(t)}}function W8(n){const e=n.autoSql.fields.filter(C=>C.type).slice(3);let t=0,r="",i=0,s={};const o=" ",a=o.charCodeAt(0),l=48,c=45;function u(){let C=r.indexOf(o,t);C<0&&(C=i);const y=r.substring(t,C);return t=C+1,y}function f(){let C=0,y=r.charCodeAt(t),w=1;y===c&&(w=-1,t++,y=r.charCodeAt(t));do{if(y===a){t++;break}C=C*10+y-l,y=r.charCodeAt(++t)}while(t<i);return C*w}const h=e.map(C=>`${JSON.stringify(C.name)}: ${C.isNumeric?"0":"emptyString"}`),A=new Function(`
|
|
616
|
+
};`)},f=h=>{o||c(h);for(let A=0;A<o.length;A++){const[d,g]=o[A],m=l(h,d,g);this._propagate(m)}},u=h=>{c(h),f(h),this.handle=f};this.handle=u,this.beginBatch=h=>{Nd(h)&&(this.handle=u),super.beginBatch(h)}}}class eR extends Qe{get behavior(){return En}constructor(e){super(e),this.params=e,this.buffer=[]}reset(){super.reset(),this.buffer=[]}handle(e){this.buffer.push(e)}complete(){const e=this.params,n=e.as||["y0","y1"],i=e.sort?ph(e.sort.field,e.sort.order):void 0,r=e.field?$(e.field):()=>1,s=e.groupby.map(f=>$(f)),o=k2(this.buffer,f=>s.map(u=>u(f)).join()).map(f=>f[1]);let a=f=>!0;if(e.baseField){const f=$(e.baseField);a=u=>f(u)!==null}let l,c;switch(e.offset){case"normalize":l=(f,u)=>f/u,c=(f,u)=>es(f,u);break;case"center":l=(f,u)=>f-u/2,c=(f,u)=>es(f,u);break;case"information":{const f=Math.log2(e.cardinality??4);l=(u,h)=>u/h,c=(u,h)=>{const d=es(u,w=>+!a(w)),g=es(u,h),m=g-d;let p=0;for(let w=0;w<u.length;w++){const C=u[w];if(a(C)){const y=h(C)/m;p-=y*Math.log2(y)}}return m/(f-(p+0))*(m/g)}}break;default:l=(f,u)=>f,c=(f,u)=>1}for(const f of o){i&&f.sort(i);const u=c(f,r);let h=0;for(const A of f){const d=h+r(A);a(A)&&(A[n[0]]=l(h,u),A[n[1]]=l(d,u),this._propagate(A),h=d)}}super.complete()}}class tR extends Qe{get behavior(){return Mt}constructor(e){super(e),this.params=e;const n=$(e.field??"sequence"),[i,r]=e.as??["pos","sequence"];this.handle=s=>{const o=Object.assign({},s,{[r]:"",[i]:0}),a=n(s);for(let l=0;l<a.length;l++){const c=Object.assign({},o);c[i]=l,c[r]=a.charAt(l),this._propagate(c)}}}}const l1={count:t=>t.length,valid:x2,sum:es,min:gl,max:dl,mean:P2,median:L2,variance:B2};class nR extends Qe{get behavior(){return Mt}constructor(e){if(super(e),this.params=e,this.buffer=[],this.ops=[],this.as=[],e.fields){if(e.fields.length!=e.ops.length)throw new Error("Fields and ops must have the same length!");if(e.as&&e.as.length!=e.ops.length)throw new Error('If "as" is defined, "fields" and "as" must have the same length!');e.fields.forEach((n,i)=>{const r=$(n),s=l1[e.ops[i]];this.ops.push(o=>s(o,r)),this.as.push(e.as?e.as[i]:`${e.ops[i]}_${e.fields[i]}`)})}else this.ops.push(n=>l1.count(n)),this.as.push("count")}reset(){super.reset(),this.buffer=[]}handle(e){this.buffer.push(e)}complete(){const n=this.params?.groupby;if(n?.length>0){const i=n.map(s=>$(s)),r=Oo(this.buffer,...i);for(const[s,o]of Mu(r)){const a={};for(let l=0;l<n.length;l++)a[n[l]]=s[l];this.ops.forEach((l,c)=>{a[this.as[c]]=l(o)}),this._propagate(a)}}else{const i={};this.ops.forEach((r,s)=>{i[this.as[s]]=r(this.buffer)}),this._propagate(i)}super.complete()}}const iR={aggregate:nR,collect:o1,coverage:MF,filterScoredLabels:LF,filter:OF,flatten:GF,flattenCompressedExons:YF,flattenDelimited:VF,flattenSequence:tR,formula:qF,identifier:Nl,linearizeGenomicCoordinate:a1,measureText:KF,pileup:WF,project:XF,regexExtract:ZF,regexFold:$F,sample:sm,stack:eR};function rR(t,e){const n=iR[t.type];if(n)return new n(t,e);throw new Error("Unknown transform: "+t.type)}function f1(t,e=[]){if(!h1(t)&&!A1(t))return;const n={...t.format};if(n.type??=A1(t)&&oR(e),n.parse??="auto",!n.type)throw new Error("Format for the data source was not defined and it could not be inferred: "+JSON.stringify(t));return n}function sR(t){return ea(t)?.responseType??"text"}function oR(t){if(Array.isArray(t)&&(t=t[0]),t)return t.match(/\.(csv|tsv|json)/)?.[1]}const u1=t=>typeof t!="object"?aR:cR,aR=t=>({data:t}),cR=t=>t;function A1(t){return"url"in t}class Ci extends Rl{view;constructor(e){super(),this.view=e}get identifier(){}setLoadingStatus(e,n){this.view.context.dataFlow.loadingStatusRegistry.set(this.view,e,n)}get paramRuntime(){return this.view.paramRuntime}handle(e){throw new Error("Source does not handle incoming data!")}async load(){}repropagate(){this.load()}}function h1(t){return"values"in t}class lR extends Ci{constructor(e,n){if(super(n),this.params=e,typeof e.values=="string"&&!e?.format?.type)throw new Error("Data format type (csv, dsv, ...) must be specified if a string is provided!")}get label(){return"inlineSource"}isTrivial(){const e=this.params.values,n=Array.isArray(e)?e[0]:e;return!!(n&&Object.keys(n).length==0&&n.constructor===Object)}updateDynamicData(e){this.#e(e)}loadSynchronously(){this.#e(this.params.values)}#e(e){let n=[],i=r=>r;if(Array.isArray(e))e.length>0&&(n=e,i=u1(e[0]));else if(typeof e=="object")n=[e];else if(typeof e=="string")n=kl(e,f1(this.params));else throw new Error('"values" in data configuration is not an array, object, or a string!');this.reset(),this.beginBatch({type:"file"});for(const r of n)this._propagate(i(r));this.complete()}async load(){this.loadSynchronously()}}function fR(t){return"url"in t}class uR extends Ci{constructor(e,n){super(n),this.params=ms(n.paramRuntime,e,()=>this.load(),i=>this.registerDisposer(i),{batchMode:"whenPropagated"}),this.baseUrl=n?.getBaseUrl()}get identifier(){return JSON.stringify({params:this.params,baseUrl:this.baseUrl})}get label(){return"urlSource"}async#e(e){const n=pi(this.baseUrl,e.urlsFromFile),i=await fetch(n);if(!i.ok)throw new Error(`Cannot load "${n}": ${i.status} ${i.statusText}`);const r=await i.text();return kl(r,{type:e.type??"tsv"}).map(o=>typeof o=="string"?o:o.url).map(o=>pi(n,o))}async load(){const e=xe(this.params.url),n=typeof e=="object"&&"urlsFromFile"in e?await this.#e(e):(Array.isArray(e)?e:[e]).map(a=>pi(this.baseUrl,a)),i=f1(this.params,n),r=sR(i.type);if(n.length===0||!n[0]){this.reset(),this.complete();return}const s=async a=>{try{const l=await fetch(a);if(!l.ok)throw new Error(`${l.status} ${l.statusText}`);return typeof l[r]=="function"?l[r]():l.text()}catch(l){throw new Error(`Could not load data: ${a}. Reason: ${l.message}`)}},o=async(a,l)=>{try{const c=kl(a,i),f=c instanceof Promise?await c:c;this.beginBatch({type:"file",url:l});for(const u of f)this._propagate(u)}catch(c){throw console.warn(c),new Error(`Cannot parse: ${l}: ${c.message}`)}};this.setLoadingStatus("loading"),this.reset();try{await Promise.all(n.map(a=>s(a).then(o))),this.setLoadingStatus("complete")}catch(a){this.setLoadingStatus("error",a.message)}this.complete()}}function AR(t){return"sequence"in t}class hR extends Ci{constructor(e,n){if(super(n),this.sequence=ms(n.paramRuntime,e.sequence,()=>this.loadSynchronously(),i=>this.registerDisposer(i),{batchMode:"whenPropagated"}),!("start"in this.sequence))throw new Error("'start' is missing from sequence parameters!");if(!("stop"in this.sequence))throw new Error("'stop' is missing from sequence parameters!")}get label(){return"sequenceSource"}loadSynchronously(){const e=xe(this.sequence.as)??"data",n=xe(this.sequence.start)??0,i=xe(this.sequence.step)??1,r=xe(this.sequence.stop);this.reset(),this.beginBatch({type:"file"});for(let s=n;s<r;s+=i)this._propagate({[e]:s});this.complete()}async load(){this.loadSynchronously()}}class Pu extends Ci{initializedPromise=Promise.resolve();_lastLoadedDomain;constructor(e,n){if(super(e),n){if(n!=="x"&&n!=="y")throw new Error(`Invalid channel specified for the lazy data source: ${n}. Must be either "x" or "y"`)}else throw new Error('No channel has been specified for the lazy data source. Must be either "x" or "y".');if(this.channel=n,this.scaleResolution=this.view.getScaleResolution(n),!this.scaleResolution){const r=[`The lazy data source cannot find a resolved scale for channel "${n}".`];throw this.view instanceof nt||r.push('Make sure the view has a "shared" scale resolution as it is not a unit view.'),new Error(r.join(" "))}const i=()=>{this.view.isVisible()&&this.onDomainChanged(this.scaleResolution.getDomain(),this.scaleResolution.getComplexDomain())};this.scaleResolution.addEventListener("domain",i),this.view.context.addBroadcastListener("layoutComputed",i)}get genome(){const e=this.scaleResolution.getScale();if("genome"in e){const n=e.genome();if(n)return n}throw new Error("No genome has been defined!")}onDomainChanged(e,n){}requestRender(){this.view.context.animator.requestRender()}async load(){this.reset(),this.complete()}publishData(e){this._lastLoadedDomain=Array.from(this.scaleResolution.getDomain()),this.reset(),this.beginBatch({type:"file"});for(const n of e)for(const i of n)this._propagate(i);this.complete()}isDataReadyForDomain(e){const n=e[this.channel];if(!n||!this._lastLoadedDomain)return!1;const[i,r]=n[0]<=n[1]?n:[n[1],n[0]],[s,o]=this._lastLoadedDomain[0]<=this._lastLoadedDomain[1]?this._lastLoadedDomain:[this._lastLoadedDomain[1],this._lastLoadedDomain[0]];return i>=s&&r<=o}}class dR extends Pu{ticks=[];constructor(e,n){const i={...e};super(n,i.channel),this.params=e}get label(){return"axisTickSource"}async load(){this.ticks=null,this.onDomainChanged()}onDomainChanged(){const e=this.scaleResolution.getScale(),n=this.scaleResolution.getAxisLength(),i=this.params.axis,r=l=>25+60*jm(100,700,l),s=Ve(i.tickCount)?i.tickCount:Math.round(n/r(n)),o=um(e,s,i.tickMinStep),a=i.values?Am(e,i.values,o):$4(e,o);if(this.ticks==null||!Hi(a,this.ticks)){this.ticks=a;const l=tk(e,s,i.format);this.publishData([a.map(c=>({value:c,label:l(c)}))])}}}class gR extends Pu{constructor(e,n){super(n,e.channel)}get label(){return"axisGenomeSource"}async load(){this.publishData([this.genome.chromosomes])}}class to extends Pu{#e=new AbortController;#t=[0,0];#n=[0,0];#i=0;params;setupDebouncing(e){const n=()=>xe(e.debounce),i=e.debounceMode;if(i=="domain")this.onDomainChanged=na(this.onDomainChanged.bind(this),n,!1);else if(i=="window")this.loadInterval=na(this.loadInterval.bind(this),n,!1);else throw new Error("Invalid debounceMode: "+i)}onDomainChanged(e){this.#n=e;const n=xe(this.params?.windowSize)??-1;e[1]-e[0]>n||this.callIfWindowsChanged(e,n,async i=>{await this.initializedPromise,this.loadInterval(i)})}reloadLastDomain(){const e=this.#n;this.#n=[0,0],this.#t=[0,0],this._lastLoadedDomain=void 0,this.onDomainChanged(e)}async loadInterval(e){}publishData(e){const n=this._lastLoadedDomain;super.publishData(e),n&&(this._lastLoadedDomain=n)}async discretizeAndLoad(e,n){this.#e.abort(),this.setLoadingStatus("loading"),this.#e=new AbortController;const i=this.#e.signal,r=this.genome.continuousToDiscreteChromosomeIntervals(e);try{const s=await Promise.all(r.map(async o=>n(o,i)));if(!i.aborted)return this.setLoadingStatus("complete"),this._lastLoadedDomain=Array.from(e),s}catch(s){if(!i.aborted)throw this.setLoadingStatus("error",s.message),s}}callIfWindowsChanged(e,n,i){const r=[Math.max(Math.floor(e[0]/n)*n,0),Math.min(Math.ceil(e[1]/n)*n,this.genome.totalSize)],s=this.#t;(n!==this.#i||r[0]<s[0]||r[1]>s[1])&&(this.#t=r,this.#i=n,i(r))}}class pR extends to{constructor(e,n){const i={channel:"x",windowSize:7e3,debounce:200,debounceMode:"window",...e};if(super(n,i.channel),this.params=i,!this.params.url)throw new Error("No URL provided for IndexedFastaSource");this.setupDebouncing(this.params),this.initializedPromise=new Promise(r=>{Promise.all([Promise.resolve().then(()=>RM),Promise.resolve().then(()=>so)]).then(([{IndexedFasta:s},{RemoteFile:o}])=>{const a=l=>new o(eo(l,this.view.getBaseUrl()));this.fasta=new s({fasta:a(this.params.url),fai:a(this.params.indexUrl??this.params.url+".fai")}),r()})})}get label(){return"bigWigSource"}async loadInterval(e){const n=await this.discretizeAndLoad(e,async(i,r)=>this.fasta.getSequence(i.chrom,i.startPos,i.endPos,{signal:r}).then(s=>{if(s!=null)return{chrom:i.chrom,start:i.startPos,sequence:s};console.log(`No sequence found for interval ${i.chrom}:${i.startPos}-${i.endPos}`)}));this.publishData([n.filter(i=>i!==void 0)])}}class mR extends to{#e=[];#t;constructor(e,n){const i={pixelsPerBin:2,channel:"x",debounce:200,debounceMode:"window",...e},r=xe(i.channel);if(super(n,r),this.params=ms(n.paramRuntime,i,s=>{s.has("url")?this.#n().then(()=>this.reloadLastDomain()):s.has("pixelsPerBin")&&this.reloadLastDomain()},s=>this.registerDisposer(s),{batchMode:"whenPropagated"}),!this.params.url)throw new Error("No URL provided for BigWigSource");this.setupDebouncing(this.params),this.#n()}get label(){return"bigWigSource"}#n(){return this.initializedPromise=new Promise((e,n)=>{Promise.all([Promise.resolve().then(()=>Vy),Promise.resolve().then(()=>so)]).then(([{BigWig:i},{RemoteFile:r}])=>{this.#t=new i({filehandle:new r(eo(xe(this.params.url),this.view.getBaseUrl()))}),this.setLoadingStatus("loading"),this.#t.getHeader().then(s=>{this.#e=s.zoomLevels.map(o=>o.reductionLevel).reverse(),this.#e.push(1),this.setLoadingStatus("complete"),e()}).catch(s=>{this.load(),this.setLoadingStatus("error",`${xe(this.params.url)}: ${s.message}`),n(s)})})}),this.initializedPromise}async onDomainChanged(e){await this.initializedPromise;const n=this.scaleResolution.getAxisLength()||700,i=wR(e,n,this.#e),r=Math.max(i*n,5e3);this.callIfWindowsChanged(e,r,s=>this.loadInterval(s,i))}async loadInterval(e,n){const i=.5/n/xe(this.params.pixelsPerBin),r=await this.discretizeAndLoad(e,(s,o)=>this.#t.getFeatures(s.chrom,s.startPos,s.endPos,{scale:i,signal:o}).then(a=>a.map(l=>({chrom:s.chrom,start:l.start,end:l.end,score:l.score}))));r&&this.publishData(r)}}function wR(t,e,n){const i=(t[1]-t[0])/e;return n.find(r=>r<i)??n.at(-1)}class yR extends to{parser;bbi;parseLine;constructor(e,n){const i={channel:"x",windowSize:1e6,debounce:200,debounceMode:"window",...e},r=xe(i.channel);if(super(n,r),this.params=ms(n.paramRuntime,i,s=>{s.has("url")?this.#e().then(()=>this.reloadLastDomain()):s.has("windowSize")&&this.reloadLastDomain()},s=>this.registerDisposer(s),{batchMode:"whenPropagated"}),!this.params.url)throw new Error("No URL provided for BigBedSource");this.setupDebouncing(this.params),this.#e()}get label(){return"bigBedSource"}#e(){return this.initializedPromise=new Promise((e,n)=>{Promise.all([Promise.resolve().then(()=>UT),Promise.resolve().then(()=>Vy),Promise.resolve().then(()=>so)]).then(([i,{BigBed:r},{RemoteFile:s}])=>{const o=i.default;this.bbi=new r({filehandle:new s(eo(xe(this.params.url),this.view.getBaseUrl()))}),this.setLoadingStatus("loading"),this.bbi.getHeader().then(async a=>{this.parser=new o({autoSql:a.autoSql});try{const l=CR(this.parser);this.parseLine=(c,f)=>l(c,f.start,f.end,f.rest)}catch{this.parseLine=(c,f)=>this.parser.parseLine(`${c} ${f.start} ${f.end} ${f.rest}`)}this.setLoadingStatus("complete"),e()}).catch(a=>{this.load(),this.setLoadingStatus("error",`${xe(this.params.url)}: ${a.message}`),n(a)})})}),this.initializedPromise}async loadInterval(e){const n=await this.discretizeAndLoad(e,async(i,r)=>this.bbi.getFeatures(i.chrom,i.startPos,i.endPos,{signal:r}).then(s=>s.map(o=>this.parseLine(i.chrom,o))));n&&this.publishData(n)}}function CR(t){const e=t.autoSql.fields.filter(w=>w.type).slice(3);let n=0,i="",r=0,s={};const o=" ",a=o.charCodeAt(0),l=48,c=45;function f(){let w=i.indexOf(o,n);w<0&&(w=r);const C=i.substring(n,w);return n=w+1,C}function u(){let w=0,C=i.charCodeAt(n),y=1;C===c&&(y=-1,n++,C=i.charCodeAt(n));do{if(C===a){n++;break}w=w*10+C-l,C=i.charCodeAt(++n)}while(n<r);return w*y}const h=e.map(w=>`${JSON.stringify(w.name)}: ${w.isNumeric?"0":"emptyString"}`),A=new Function(`
|
|
617
617
|
const emptyString = "";
|
|
618
618
|
return function makeTemplate(chrom, chromStart, chromEnd) {
|
|
619
619
|
return {
|
|
@@ -623,43 +623,43 @@ chrM 16299`};function wD(n){if(!(n in Dp))throw new Error(`Unknown assembly: ${n
|
|
|
623
623
|
${h.join(`,
|
|
624
624
|
`)}
|
|
625
625
|
}
|
|
626
|
-
};`)(),d=e.map(
|
|
627
|
-
${
|
|
626
|
+
};`)(),d=e.map(w=>{const C=w.type,y=JSON.stringify(w.name);if(["ubyte","int","uint"].includes(C))return`d[${y}] = parseInt();`;if(w.isNumeric)return`d[${y}] = Number(parseString());`;if(["char","string","lstring"].includes(C))return`d[${y}] = parseString();`;throw new Error("Unsupported type: "+C)}),g=ER(d,50).map((w,C)=>Function("parseInt","parseString",`return function parseFieldChunk${C}(d) {
|
|
627
|
+
${w.join(`
|
|
628
628
|
`)}
|
|
629
|
-
}`)(f
|
|
630
|
-
`)+" };");return t.properties=e,t}function Lm(n){let e=[];do e=e.concat(Object.keys(n)),n=Object.getPrototypeOf(n);while(n&&n!==Object.prototype);return Array.from(new Set(e))}class Wa extends Qe{get behavior(){return Nt}#e;#t=e=>e;constructor(){super({type:"clone"});const e=t=>{const r=Lm(t);(!this.#e||!Ur(r,this.#e))&&(this.#e=r,this.#t=dF(t));const i=this.#t;this.handle=s=>this._propagate(i(s)),this.handle(t)};this.handle=e,this.beginBatch=t=>{td(t)&&(this.handle=e),super.beginBatch(t)}}}function gF(n){return"name"in n}class Om extends wr{#e;constructor(e,t,r){super(t),this.provider=r,this.params=e}get identifier(){return this.params.name}get label(){return"namedSource"}updateDynamicData(e){this.#e=e,this.loadSynchronously()}loadSynchronously(){const e=this.#e??this.provider(this.params.name)??[];let t=r=>r;if(Array.isArray(e))e.length>0&&(t=Mm(e[0]));else throw new Error(`Named data "${this.params.name}" is not an array!`);this.reset(),this.beginBatch({type:"file"});for(const r of e)this._propagate(t(r));this.complete()}async load(){this.loadSynchronously()}}class Um{#e;#t;loadingStatusRegistry;constructor(){this.#e=new Set,this.#t=new Set,this.loadingStatusRegistry=new $h}get dataSources(){return[...this.#e]}get collectors(){return[...this.#t]}replaceDataSources(e){this.#e=new Set(e)}addDataSource(e){this.#e.add(e)}removeDataSource(e){e.disposeSubtree(),this.#e.delete(e)}addCollector(e){this.#t.add(e)}removeCollector(e){e.parent&&e.parent.removeChild(e),e.disposeSubtree(),e.observers.clear(),this.#t.delete(e)}pruneCollectorBranch(e){let t=e.parent;for(t&&t.removeChild(e),e.disposeSubtree();t&&t.children.length===0;){const r=t;t=r.parent,t?(t.removeChild(r),r.dispose()):r instanceof wr?this.removeDataSource(r):r.dispose()}}findNamedDataSource(e){let t;for(const r of this.#e.values())if(r instanceof Om&&e==r.identifier){if(t&&t!==r)throw new Error(`Found multiple instances of named data: ${e}. Data flow optimization is broken (it's a bug).`);t=r}if(t)return{dataSource:t}}}function pF(n,e){const t=new Map,r=[];for(const i of n)t.set(i,{ref:i,children:[]});for(const i of t.values()){const s=t.get(e(i.ref));s?s.children.push(i):r.push(i)}return r}function Gm(n,e,t){const r=e.preOrder?.(n);if(r)return r;for(const i of t(n)){const s=Gm(i,e,t);if(s==="stop")return s}return e.postOrder?.(n)}function mF(n,e){return Gm(n,e,t=>t.children)}function wF(n,e,t,r){const i=[],s=[];let o;const a=e??new Um,l=[],c=r??(()=>!0);function u(m,C=()=>{}){if(!o)throw C()||new Error("Cannot append data flow node, no parent exist!");return o.addChild(m),o=m,i.push(m),m}function f(m,C){return u(m,()=>new Error("Cannot append a transform because no (inherited) data are available! "))}function h(m,C){for(const y of m){let w;try{w=N8(y,C)}catch(E){throw console.warn(E),new Error(`Cannot initialize "${y.type}" transform: ${E}`)}w.behavior&yn&&f(new Wa),f(w)}}function A(){return i.findLastIndex(m=>m instanceof pl)>i.findLastIndex(m=>m instanceof wr)}const d=m=>{if(!c(m)){const C=m.flowHandle?.node;if(C){C!==o&&(o=C,i.push(C));return}if(m.spec.data||m.spec.transform||m instanceof tt)throw new Error("Cannot reuse missing flow nodes for "+m.getPathString());return}if(m.spec.data){const C=m.flowHandle?.dataSource;C&&C.view===m&&!C.identifier&&a.removeDataSource(C);const y=gF(m.spec.data)?new Om(m.spec.data,m,m.context.getNamedDataFromProvider):nF(m.spec.data,m);o=y,i.push(y),a.addDataSource(y),m.flowHandle??={},m.flowHandle.dataSource=y}if(m.spec.transform&&h(m.spec.transform,m),m instanceof tt){if(!o)throw new Error(`A unit view (${m.getPathString()}) has no (inherited) data source`);const C=yF(m);if(C){l.push(C.rewrite);for(const E of C.transforms)f(E)}m.mark.isPickingParticipant()&&!A()&&(f(new Wa),f(new pl({type:"identifier"})));const y=new Qm({type:"collect",groupby:m.getFacetFields(),sort:IF(m,C?.rewrittenEncoding)});u(y);const w=m.flowHandle?.collector;w&&a.removeCollector(w),a.addCollector(y),m.flowHandle??={},m.flowHandle.collector=y}o&&(m.flowHandle??={},m.flowHandle.node=o)},g=CF(n,t),p=pF(g,m=>m.dataParent);for(const m of p)mF(m,{preOrder:C=>{s.push({view:C.ref,nodeStackDepth:i.length}),d(C.ref)},postOrder:()=>{const{nodeStackDepth:C}=s.pop();i.length=C,o=i.at(-1)}});return l.forEach(m=>m()),a}function CF(n,e){if(!e)return n.getDescendants();const t=[];return n.visit(r=>{if(!e(r))return Dt;t.push(r)}),t}function yF(n){const e=[],t={},r=n.mark.encoding,i=n.getEncoding(),s=[];for(const[a,l]of Object.entries(r)){const c=a;In(c)!==c&&!(c in i)||ls(c)&&!Array.isArray(l)&&Ad(l)&&s.push({channel:c,chromPosDef:l})}const o=Qo(s,a=>In(a.channel),a=>a.chromPosDef.chrom);for(const[a,l]of o.entries())for(const[c,u]of l.entries()){const f=[],h=[],A=[];for(const{channel:d,chromPosDef:g}of u){const p=y=>y.replace(/[^A-Za-z0-9_]/g,""),m=["_linearized_",p(g.chrom),"_",p(g.pos)].join(""),C={...n.spec.encoding?.[d]??i[d]??r[d]??{},field:m};delete C.chrom,delete C.pos,!C.type&&g.type&&(C.type=g.type),t[d]=C,f.push(g.pos),A.push(g.offset??0),h.push(m)}e.push(new Wa),e.push(new Dm({type:"linearizeGenomicCoordinate",channel:a,chrom:c,pos:f,offset:A,as:h},n))}return e.length?{transforms:e,rewrittenEncoding:t,rewrite:()=>{n.spec.encoding={...n.spec.encoding,...t},Ju(n.mark,"encoding")}}:void 0}function IF(n,e){const t={...n.getEncoding(),...e}.x;if(gt(t)&&n.getScaleResolution("x")?.isZoomable()){if(en(t))return"buildIndex"in t&&t.buildIndex?{field:t.field}:null;if(!Gr(t)){if(zr(t))throw new Error("A zoomable x channel must be mapped to a field.")}}}function zm(n,e=void 0){if(n.parent!==e)return!1;for(const t of n.children)if(!zm(t,n))return!1;return!0}function Cf(n,e=!1){if(n.behavior&dl&&(e=!0),n instanceof Wa)if(e)e=!1;else{const t=n.children[0];n.excise(),t&&Cf(t,e);return}n.behavior&Nt&&(e=!1);for(let t=0,r=n.children.length;t<r;t++)Cf(n.children[t],e||r>1)}function bF(n){const e=n.dataSources,t=new Map;for(const s of e)s.identifier&&!t.has(s.identifier)&&t.set(s.identifier,s);const r=new Set,i=new Map;for(const s of e)if(s.identifier){const o=t.get(s.identifier);o&&(o!==s&&o.adoptChildrenOf(s),r.add(o),i.set(s,o))}else r.add(s),i.set(s,s);return n.replaceDataSources(r),i}function EF(n){if(Cf(n),!zm(n))throw new Error("Encountered a bug! There's a problem in the data flow structure.")}function xF(n){const e=bF(n);for(const t of n.dataSources)EF(t);return e}const yf=new WeakMap,If=new WeakMap;function Hm(n,e){const t=yf.get(n);if(t){if(!e?.queueReload)return t;const i=If.get(n);if(i)return i;const s=t.catch(()=>{}).then(()=>Hm(n)).finally(()=>{If.delete(n)});return If.set(n,s),s}const r=Promise.resolve().then(()=>n.load()).finally(()=>{yf.delete(n)});return yf.set(n,r),r}function BF(n,e){for(const t of n.getDescendants()){const r=t.flowHandle;if(!r)continue;const i=r.dataSource;i&&(r.dataSource=e.get(i)??i)}}function bf(n,e,t,r){const i=r??(()=>!0),o=Vm(n,t).filter(i);if(o.length===0)return{dataFlow:e,unitViews:[],dataSources:new Set,graphicsPromises:[]};const a=new Set(o);for(const A of o)A._setDataInitializationState("pending");let l;try{l=wF(n,e,t,d=>a.has(d));const A=xF(l);BF(n,A)}catch(A){for(const d of o)d._setDataInitializationState("none");throw A}const c=vF(o);for(const A of c)A.visit(d=>d.initializeOnce());const u=o.filter(A=>A instanceof tt),f=[],h=!!n.context.glHelper;for(const A of u){const d=A.mark;d.initializeEncoders(),A.registerDomainSubscriptions(),h&&f.push(d.initializeGraphics().then(()=>d));const g=p=>{if(d.initializeData(),h)try{d.updateGraphicsData()}catch(m){throw m.view=A,m}A.context.animator.requestRender()};A.registerDisposer(A.flowHandle.collector.observe(g))}for(const A of o)A._setDataInitializationState("ready");return{dataFlow:l,unitViews:u,dataSources:c,graphicsPromises:f}}function vF(n,e){const t=Array.isArray(n)?n:Vm(n,e),r=new Set;for(const i of t){let s=i;for(;s&&!s.flowHandle?.dataSource;)s=s.dataParent;s?.flowHandle?.dataSource&&r.add(s.flowHandle.dataSource)}return r}function SF(n,e){const t=new Set;return n.visit(r=>{if(e&&!e(r))return Dt;if(r.flowHandle?.dataSource)return t.add(r.flowHandle.dataSource),Dt}),t}function Ef(n,e,t,r){return e||(e=SF(n,t)),Promise.all(Array.from(e).map(i=>Hm(i,r))).then(i=>(QF(n),i))}function Vm(n,e){const t=[];return e?(n.visit(r=>{if(!e(r))return Dt;t.push(r)}),t):n.getDescendants()}function QF(n){const e={type:"subtreeDataReady",payload:{subtreeRoot:n}};n.visit(t=>t.handleBroadcast(e))}async function DF(n,e,t,r){const i=a=>a.isConfiguredVisible(),{dataFlow:s,graphicsPromises:o}=bf(n,e,i);return r(s),await t.waitUntilReady(),await Ef(n,new Set(s.dataSources),i),await gf(o),s}async function kF(n,e,t){const r=h=>h.isConfiguredVisible(),s=FF(n,r).filter(h=>h.getDataInitializationState()==="none");if(s.length===0)return e;const o=new Set(s),a=h=>o.has(h),l=new Set,c=[];for(const h of s){if(h.spec.data){c.push(h);continue}const A=MF(h);A?l.add(A):c.push(h)}const{dataFlow:u,graphicsPromises:f}=bf(n,e,r,a);await t.waitUntilReady();for(const h of l)h.repropagate();if(c.length){const h=RF(c);await Promise.all(Array.from(h.entries()).map(([A,d])=>Ef(A,d,void 0,{queueReload:!0})))}return await gf(f),u}function FF(n,e){const t=[];return n.visit(r=>{if(!e(r))return Dt;t.push(r)}),t}function RF(n){const e=new Map;for(const t of n){let r=t;for(;r&&!r.flowHandle?.dataSource;)r=r.dataParent;if(!r?.flowHandle?.dataSource){if(t.spec.data)throw new Error("No data source found for view "+t.getPathString());continue}let i=e.get(r);i||(i=new Set,e.set(r,i)),i.add(r.flowHandle.dataSource)}return e}function MF(n){let e=n.dataParent;for(;e;){const t=e.flowHandle?.collector;if(t)return t.completed?t:void 0;e=e.dataParent}}class NF{constructor(e){this._renderCallback=e,this._renderRequested=!1,this._warn=!1,this.transitions=[]}requestTransition(e){this.cancelTransition(e),this.transitions.push(e),this.requestRender()}cancelTransition(e){const t=this.transitions.indexOf(e);t>=0&&this.transitions.splice(t,1)}requestRender(){this._renderRequested?this._warn&&console.warn("Render already requested!"):(this._renderRequested=!0,window.requestAnimationFrame(e=>{this._renderRequested=!1;const t=this.transitions;this.transitions=[];let r;for(;r=t.shift();)r(e);this._renderCallback(e)}))}transition(e){return gk({requestAnimationFrame:t=>this.requestTransition(t),...e})}}function xf(n,e,t,r,i){let s=0,o=!0,a=structuredClone(i),l=a;function c(h,A,d,g){return A+(h-A)*Math.pow(2,-d/g)}function u(h){if(o)return;const A=h-s;s=h;for(const g of Object.keys(l))a[g]=c(a[g],l[g],A,t);e(a);let d=-1/0;for(const g of Object.keys(l))d=Math.max(d,Math.abs(l[g]-a[g]));d<r?(a=l,e(a),o=!0,d!=0&&n.requestRender()):n.requestTransition(g=>u(g))}function f(h){l=h,o&&(o=!1,s=+document.timeline.currentTime,u(s))}return f.stop=()=>{o=!0},f}class TF{constructor(e){this.genomes=new Map,this.baseUrl=e}async initialize(e){const t=new yD(e);return this.genomes.set(t.name,t),Promise.all([...this.genomes.values()].map(r=>r.load(this.baseUrl)))}getGenome(e){if(!this.genomes.size)throw new Error("No genomes have been configured!");if(e){const t=this.genomes.get(e);if(!t)throw new Error(`No genome with the name ${e} has been configured!`);return t}else{if(this.genomes.size>1)throw new Error("Cannot pick a default genome! More than one have been configured!");return this.genomes.values().next().value}}}const PF="data:image/png;base64,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",LF={thin:100,light:300,regular:400,normal:400,medium:500,bold:700,black:900};class OF{constructor(e){this._webGLHelper=e,this.fontRepository="https://raw.githubusercontent.com/etiennepinchon/aframe-fonts/master/fonts/",this._fonts=new jt([],JSON.stringify),this._metadataPromises=new Map,this._fontPromises=new Map,this._promises=[],this._defaultFontEntry={metrics:iu(km),texture:e?this._createTextureNow(PF):void 0}}async waitUntilReady(){await Promise.all(this._promises)}getFont(e,t="normal",r="regular"){if(le(r)&&(r=LF[r.toLowerCase()],!r))throw new Error("Unknown font weight: "+r);const i={family:e,style:t,weight:r};let s=this._fonts.get(i);return s||(s={metrics:void 0,texture:void 0},this._fonts.set(i,s),this._promises.push(this._loadFontEntry(s,i))),s}async _loadFontEntry(e,t){try{const r=await this._loadMetadata(t.family),i=GF(r,t),s=this.fontRepository+_m(t.family)+"/"+i.replace(/\.\w+/,""),o=this._createTexture(s+".png"),a=this._loadFont(s+".json");e.texture=await o,e.metrics=await a}catch{console.warn(`Cannot load font: "${t.family}". Using the embedded default font.`),e.metrics=this._defaultFontEntry.metrics,e.texture=this._defaultFontEntry.texture}}_loadFont(e){let t=this._fontPromises.get(e);return t||(t=fetch(e).then(r=>{if(!r.ok)throw new Error("Could not load font: "+r.status);return r}).then(r=>r.json()).then(r=>iu(r)),this._fontPromises.set(e,t)),t}_loadMetadata(e){const t=_m(e);let r=this._metadataPromises.get(t);if(!r){const i=this.fontRepository+t+"/METADATA.pb";r=fetch(i).then(s=>{if(!s.ok)throw new Error("Could not load font metadata. Response status: "+s.status+", url: "+i);return s}).then(s=>s.text()).then(s=>UF(s)).catch(s=>{console.warn(s.message)}),this._metadataPromises.set(t,r)}return r}getDefaultFont(){return this._defaultFontEntry}_createTexture(e){const t=this._webGLHelper.gl;return new Promise((r,i)=>{ps(t,{src:e,min:t.LINEAR},(s,o,a)=>{s?i(s):r(o)})})}_createTextureNow(e){const t=this._webGLHelper.gl;let r;const i=new Promise((s,o)=>{r=ps(t,{src:e,min:t.LINEAR},(a,l,c)=>{a?o(a):s(l)})});return this._promises.push(i),r}}function _m(n){return n.toLowerCase().replaceAll(/[^\w]/g,"")}function UF(n){const e=n.split(`
|
|
631
|
-
`),
|
|
632
|
-
`))if(
|
|
629
|
+
}`)(u,f));function m(w){i=w,r=w.length,n=0}function p(w,C,y,b){m(b),s=A(w,C,y);for(const x of g)x(s);return s}return p}function ER(t,e){return Array.from({length:Math.ceil(t.length/e)},(n,i)=>t.slice(i*e,i*e+e))}class IR extends to{#e;chrPrefixFixer=e=>e;constructor(e,n){const i={channel:"x",windowSize:2e4,debounce:200,debounceMode:"domain",...e};if(super(n,i.channel),this.params=i,!this.params.url)throw new Error("No URL provided for BamSource");this.setupDebouncing(this.params),this.initializedPromise=new Promise(r=>{Promise.all([Promise.resolve().then(()=>i9),Promise.resolve().then(()=>so)]).then(([{BamFile:s},{RemoteFile:o}])=>{const a=l=>new o(eo(l,this.view.getBaseUrl()));this.#e=new s({bamFilehandle:a(this.params.url),baiFilehandle:a(this.params.indexUrl??this.params.url+".bai")}),this.#e.getHeader().then(l=>{const c=this.genome.hasChrPrefix(),f=this.#e.indexToChr?.[0]?.refName.startsWith("chr");c&&!f?this.chrPrefixFixer=u=>u.replace("chr",""):!c&&f&&(this.chrPrefixFixer=u=>"chr"+u),r()})})})}get label(){return"bamSource"}async loadInterval(e){const n=await this.discretizeAndLoad(e,async(i,r)=>this.#e.getRecordsForRange(this.chrPrefixFixer(i.chrom),i.startPos,i.endPos,{signal:r}).then(s=>s.map(o=>({chrom:i.chrom,start:o.start,end:o.end,name:o.name,cigar:o.CIGAR,mapq:o.mq,strand:o.strand===1?"+":"-"}))));n&&this.publishData(n)}}class d1 extends to{#e;constructor(e,n){const i={channel:"x",windowSize:3e6,debounce:200,debounceMode:"domain",addChrPrefix:!1,...e},r=xe(i.channel);if(super(n,r),this.params=ms(n.paramRuntime,i,s=>{s.has("url")||s.has("indexUrl")||s.has("addChrPrefix")?this.#t().then(()=>this.reloadLastDomain()):s.has("windowSize")&&this.reloadLastDomain()},s=>this.registerDisposer(s),{batchMode:"whenPropagated"}),!xe(this.params.url))throw new Error("No URL provided for TabixSource");this.setupDebouncing(this.params),this.#t()}#t(){return this.initializedPromise=new Promise((e,n)=>{Promise.all([Promise.resolve().then(()=>h9),Promise.resolve().then(()=>so)]).then(async([{TabixIndexedFile:i},{RemoteFile:r}])=>{const s=c=>new r(eo(c,this.view.getBaseUrl())),o=xe(this.params.url),a=xe(this.params.indexUrl)??o+".tbi",l=xe(this.params.addChrPrefix);this.#e=new i({filehandle:s(o),tbiFilehandle:s(a),renameRefSeqs:l===!0?c=>"chr"+c:l?c=>l+c:void 0});try{this.setLoadingStatus("loading");const c=await this.#e.getHeader();await this._handleHeader(c),this.setLoadingStatus("complete"),e()}catch(c){this.load(),this.setLoadingStatus("error",`${xe(this.params.url)}: ${c.message}`),n(c)}})}),this.initializedPromise}async loadInterval(e){await this.initializedPromise;const n=await this.discretizeAndLoad(e,async(i,r)=>{const s=[];return await this.#e.getLines(i.chrom,i.startPos,i.endPos,{lineCallback:o=>{s.push(o)},signal:r}),this._parseFeatures(s)});n&&this.publishData(n)}async _handleHeader(e){}_parseFeatures(e){return[]}}class bR extends d1{#e;get label(){return"gff3Source"}async _handleHeader(e){this.#e=await Promise.resolve().then(()=>F9)}_parseFeatures(e){return this.#e?.parseArraySync(e)}}class xR extends d1{#e;get label(){return"vcfSource"}async _handleHeader(e){const n=(await Promise.resolve().then(()=>O9)).default;this.#e=new n({header:e})}_parseFeatures(e){return e.map(n=>{const i=this.#e.parseLine(n);return delete i.GENOTYPES,i.SAMPLES=i.SAMPLES(),i})}}const BR=[];function vR(t,e){if(h1(t))return new lR(t,e);if(fR(t))return new uR(t,e);if(AR(t))return new hR(t,e);if(SR(t))return LR(t.lazy,e);throw new Error("Cannot figure out the data source type: "+JSON.stringify(t))}function SR(t){return"lazy"in t}function QR(t){return t?.type=="axisTicks"}function DR(t){return t?.type=="axisGenome"}function kR(t){return t?.type=="indexedFasta"}function FR(t){return t?.type=="bigwig"}function RR(t){return t?.type=="bigbed"}function NR(t){return t?.type=="bam"}function MR(t){return t?.type=="gff3"}function TR(t){return t?.type=="vcf"}const PR=[{guard:QR,Source:dR},{guard:DR,Source:gR},{guard:kR,Source:pR},{guard:FR,Source:mR},{guard:RR,Source:yR},{guard:NR,Source:IR},{guard:MR,Source:bR},{guard:TR,Source:xR}];function LR(t,e){for(const n of BR)if(n.guard(t))return new n.Source(t,e);for(const n of PR)if(n.guard(t))return new n.Source(t,e);throw new Error("Cannot figure out the data source type: "+JSON.stringify(t))}function OR(t){const e=g1(t).filter(i=>typeof i=="string"),n=new Function("source","return { "+e.map(i=>JSON.stringify(i)).map(i=>`${i}: source[${i}]`).join(`,
|
|
630
|
+
`)+" };");return n.properties=e,n}function g1(t){let e=[];do e=e.concat(Object.keys(t)),t=Object.getPrototypeOf(t);while(t&&t!==Object.prototype);return Array.from(new Set(e))}class ac extends Qe{get behavior(){return Mt}#e;#t=e=>e;constructor(){super({type:"clone"});const e=n=>{const i=g1(n);(!this.#e||!Hi(i,this.#e))&&(this.#e=i,this.#t=OR(n));const r=this.#t;this.handle=s=>this._propagate(r(s)),this.handle(n)};this.handle=e,this.beginBatch=n=>{Nd(n)&&(this.handle=e),super.beginBatch(n)}}}function UR(t){return"name"in t}class p1 extends Ci{#e;constructor(e,n,i){super(n),this.provider=i,this.params=e}get identifier(){return this.params.name}get label(){return"namedSource"}updateDynamicData(e){this.#e=e,this.loadSynchronously()}loadSynchronously(){const e=this.#e??this.provider(this.params.name)??[];let n=i=>i;if(Array.isArray(e))e.length>0&&(n=u1(e[0]));else throw new Error(`Named data "${this.params.name}" is not an array!`);this.reset(),this.beginBatch({type:"file"});for(const i of e)this._propagate(n(i));this.complete()}async load(){this.loadSynchronously()}}class m1{#e;#t;loadingStatusRegistry;constructor(){this.#e=new Set,this.#t=new Set,this.loadingStatusRegistry=new Fd}get dataSources(){return[...this.#e]}get collectors(){return[...this.#t]}replaceDataSources(e){this.#e=new Set(e)}addDataSource(e){this.#e.add(e)}removeDataSource(e){e.disposeSubtree(),this.#e.delete(e)}addCollector(e){this.#t.add(e)}removeCollector(e){e.parent&&e.parent.removeChild(e),e.disposeSubtree(),e.observers.clear(),this.#t.delete(e)}pruneCollectorBranch(e){let n=e.parent;for(n&&n.removeChild(e),e.disposeSubtree();n&&n.children.length===0;){const i=n;n=i.parent,n?(n.removeChild(i),i.dispose()):i instanceof Ci?this.removeDataSource(i):i.dispose()}}findNamedDataSource(e){let n;for(const i of this.#e.values())if(i instanceof p1&&e==i.identifier){if(n&&n!==i)throw new Error(`Found multiple instances of named data: ${e}. Data flow optimization is broken (it's a bug).`);n=i}if(n)return{dataSource:n}}}function _R(t,e){const n=new Map,i=[];for(const r of t)n.set(r,{ref:r,children:[]});for(const r of n.values()){const s=n.get(e(r.ref));s?s.children.push(r):i.push(r)}return i}function w1(t,e,n){const i=e.preOrder?.(t);if(i)return i;for(const r of n(t)){const s=w1(r,e,n);if(s==="stop")return s}return e.postOrder?.(t)}function GR(t,e){return w1(t,e,n=>n.children)}function zR(t,e,n,i){const r=[],s=[];let o;const a=e??new m1,l=[],c=i??(()=>!0);function f(p,w=()=>{}){if(!o)throw w()||new Error("Cannot append data flow node, no parent exist!");return o.addChild(p),o=p,r.push(p),p}function u(p,w){return f(p,()=>new Error("Cannot append a transform because no (inherited) data are available! "))}function h(p,w){for(const C of p){let y;try{y=rR(C,w)}catch(b){throw console.warn(b),new Error(`Cannot initialize "${C.type}" transform: ${b}`)}y.behavior&En&&u(new ac),u(y)}}function A(){return r.findLastIndex(p=>p instanceof Nl)>r.findLastIndex(p=>p instanceof Ci)}const d=p=>{if(!c(p)){const w=p.flowHandle?.node;if(w){w!==o&&(o=w,r.push(w));return}if(p.spec.data||p.spec.transform||p instanceof nt)throw new Error("Cannot reuse missing flow nodes for "+p.getPathString());return}if(p.spec.data){const w=p.flowHandle?.dataSource;w&&w.view===p&&!w.identifier&&a.removeDataSource(w);const C=UR(p.spec.data)?new p1(p.spec.data,p,p.context.getNamedDataFromProvider):vR(p.spec.data,p);o=C,r.push(C),a.addDataSource(C),p.flowHandle??={},p.flowHandle.dataSource=C}if(p.spec.transform&&h(p.spec.transform,p),p instanceof nt){if(!o)throw new Error(`A unit view (${p.getPathString()}) has no (inherited) data source`);const w=YR(p);if(w){l.push(w.rewrite);for(const b of w.transforms)u(b)}p.mark.isPickingParticipant()&&!A()&&(u(new ac),u(new Nl({type:"identifier"})));const C=new o1({type:"collect",groupby:p.getFacetFields(),sort:VR(p,w?.rewrittenEncoding)});f(C);const y=p.flowHandle?.collector;y&&a.removeCollector(y),a.addCollector(C),p.flowHandle??={},p.flowHandle.collector=C}o&&(p.flowHandle??={},p.flowHandle.node=o)},g=HR(t,n),m=_R(g,p=>p.dataParent);for(const p of m)GR(p,{preOrder:w=>{s.push({view:w.ref,nodeStackDepth:r.length}),d(w.ref)},postOrder:()=>{const{nodeStackDepth:w}=s.pop();r.length=w,o=r.at(-1)}});return l.forEach(p=>p()),a}function HR(t,e){if(!e)return t.getDescendants();const n=[];return t.visit(i=>{if(!e(i))return On;n.push(i)}),n}function YR(t){const e=[],n={},i=t.mark.encoding,r=t.getEncoding(),s=[];for(const[a,l]of Object.entries(i)){const c=a;In(c)!==c&&!(c in r)||ps(c)&&!Array.isArray(l)&&Yd(l)&&s.push({channel:c,chromPosDef:l})}const o=Oo(s,a=>In(a.channel),a=>a.chromPosDef.chrom);for(const[a,l]of o.entries())for(const[c,f]of l.entries()){const u=[],h=[],A=[];for(const{channel:d,chromPosDef:g}of f){const m=C=>C.replace(/[^A-Za-z0-9_]/g,""),p=["_linearized_",m(g.chrom),"_",m(g.pos)].join(""),w={...t.spec.encoding?.[d]??r[d]??i[d]??{},field:p};delete w.chrom,delete w.pos,!w.type&&g.type&&(w.type=g.type),n[d]=w,u.push(g.pos),A.push(g.offset??0),h.push(p)}e.push(new ac),e.push(new a1({type:"linearizeGenomicCoordinate",channel:a,chrom:c,pos:u,offset:A,as:h},t))}return e.length?{transforms:e,rewrittenEncoding:n,rewrite:()=>{t.spec.encoding={...t.spec.encoding,...n},uu(t.mark,"encoding")}}:void 0}function VR(t,e){const n={...t.getEncoding(),...e}.x;if(pt(n)&&t.getScaleResolution("x")?.isZoomable()){if(tn(n))return"buildIndex"in n&&n.buildIndex?{field:n.field}:null;if(!Yi(n)){if(Vi(n))throw new Error("A zoomable x channel must be mapped to a field.")}}}function y1(t,e=void 0){if(t.parent!==e)return!1;for(const n of t.children)if(!y1(n,t))return!1;return!0}function Lu(t,e=!1){if(t.behavior&Fl&&(e=!0),t instanceof ac)if(e)e=!1;else{const n=t.children[0];t.excise(),n&&Lu(n,e);return}t.behavior&Mt&&(e=!1);for(let n=0,i=t.children.length;n<i;n++)Lu(t.children[n],e||i>1)}function JR(t){const e=t.dataSources,n=new Map;for(const s of e)s.identifier&&!n.has(s.identifier)&&n.set(s.identifier,s);const i=new Set,r=new Map;for(const s of e)if(s.identifier){const o=n.get(s.identifier);o&&(o!==s&&o.adoptChildrenOf(s),i.add(o),r.set(s,o))}else i.add(s),r.set(s,s);return t.replaceDataSources(i),r}function qR(t){if(Lu(t),!y1(t))throw new Error("Encountered a bug! There's a problem in the data flow structure.")}function KR(t){const e=JR(t);for(const n of t.dataSources)qR(n);return e}const Ou=new WeakMap,Uu=new WeakMap;function C1(t,e){const n=Ou.get(t);if(n){if(!e?.queueReload)return n;const r=Uu.get(t);if(r)return r;const s=n.catch(()=>{}).then(()=>C1(t)).finally(()=>{Uu.delete(t)});return Uu.set(t,s),s}const i=Promise.resolve().then(()=>t.load()).finally(()=>{Ou.delete(t)});return Ou.set(t,i),i}function jR(t,e){for(const n of t.getDescendants()){const i=n.flowHandle;if(!i)continue;const r=i.dataSource;r&&(i.dataSource=e.get(r)??r)}}function _u(t,e,n,i){const r=i??(()=>!0),o=E1(t,n).filter(r);if(o.length===0)return{dataFlow:e,unitViews:[],dataSources:new Set,graphicsPromises:[]};const a=new Set(o);for(const A of o)A._setDataInitializationState("pending");let l;try{l=zR(t,e,n,d=>a.has(d));const A=KR(l);jR(t,A)}catch(A){for(const d of o)d._setDataInitializationState("none");throw A}const c=WR(o);for(const A of c)A.visit(d=>d.initializeOnce());const f=o.filter(A=>A instanceof nt),u=[],h=!!t.context.glHelper;for(const A of f){const d=A.mark;d.initializeEncoders(),A.registerDomainSubscriptions(),h&&u.push(d.initializeGraphics().then(()=>d));const g=m=>{if(d.initializeData(),h)try{d.updateGraphicsData()}catch(p){throw p.view=A,p}A.context.animator.requestRender()};A.registerDisposer(A.flowHandle.collector.observe(g))}for(const A of o)A._setDataInitializationState("ready");return{dataFlow:l,unitViews:f,dataSources:c,graphicsPromises:u}}function WR(t,e){const n=Array.isArray(t)?t:E1(t,e),i=new Set;for(const r of n){let s=r;for(;s&&!s.flowHandle?.dataSource;)s=s.dataParent;s?.flowHandle?.dataSource&&i.add(s.flowHandle.dataSource)}return i}function XR(t,e){const n=new Set;return t.visit(i=>{if(e&&!e(i))return On;if(i.flowHandle?.dataSource)return n.add(i.flowHandle.dataSource),On}),n}function Gu(t,e,n,i){return e||(e=XR(t,n)),Promise.all(Array.from(e).map(r=>C1(r,i))).then(r=>(ZR(t),r))}function E1(t,e){const n=[];return e?(t.visit(i=>{if(!e(i))return On;n.push(i)}),n):t.getDescendants()}function ZR(t){const e={type:"subtreeDataReady",payload:{subtreeRoot:t}};t.visit(n=>n.handleBroadcast(e))}async function $R(t,e,n,i){const r=a=>a.isConfiguredVisible(),{dataFlow:s,graphicsPromises:o}=_u(t,e,r);return i(s),await n.waitUntilReady(),await Gu(t,new Set(s.dataSources),r),await Nu(o),s}async function e6(t,e,n){const i=h=>h.isConfiguredVisible(),s=t6(t,i).filter(h=>h.getDataInitializationState()==="none");if(s.length===0)return e;const o=new Set(s),a=h=>o.has(h),l=new Set,c=[];for(const h of s){if(h.spec.data){c.push(h);continue}const A=i6(h);A?l.add(A):c.push(h)}const{dataFlow:f,graphicsPromises:u}=_u(t,e,i,a);await n.waitUntilReady();for(const h of l)h.repropagate();if(c.length){const h=n6(c);await Promise.all(Array.from(h.entries()).map(([A,d])=>Gu(A,d,void 0,{queueReload:!0})))}return await Nu(u),f}function t6(t,e){const n=[];return t.visit(i=>{if(!e(i))return On;n.push(i)}),n}function n6(t){const e=new Map;for(const n of t){let i=n;for(;i&&!i.flowHandle?.dataSource;)i=i.dataParent;if(!i?.flowHandle?.dataSource){if(n.spec.data)throw new Error("No data source found for view "+n.getPathString());continue}let r=e.get(i);r||(r=new Set,e.set(i,r)),r.add(i.flowHandle.dataSource)}return e}function i6(t){let e=t.dataParent;for(;e;){const n=e.flowHandle?.collector;if(n)return n.completed?n:void 0;e=e.dataParent}}class r6{constructor(e){this._renderCallback=e,this._renderRequested=!1,this._warn=!1,this.transitions=[]}requestTransition(e){this.cancelTransition(e),this.transitions.push(e),this.requestRender()}cancelTransition(e){const n=this.transitions.indexOf(e);n>=0&&this.transitions.splice(n,1)}requestRender(){this._renderRequested?this._warn&&console.warn("Render already requested!"):(this._renderRequested=!0,window.requestAnimationFrame(e=>{this._renderRequested=!1;const n=this.transitions;this.transitions=[];let i;for(;i=n.shift();)i(e);this._renderCallback(e)}))}transition(e){return Ok({requestAnimationFrame:n=>this.requestTransition(n),...e})}}function zu(t,e,n,i,r){let s=0,o=!0,a=structuredClone(r),l=a;function c(h,A,d,g){return A+(h-A)*Math.pow(2,-d/g)}function f(h){if(o)return;const A=h-s;s=h;for(const g of Object.keys(l))a[g]=c(a[g],l[g],A,n);e(a);let d=-1/0;for(const g of Object.keys(l))d=Math.max(d,Math.abs(l[g]-a[g]));d<i?(a=l,e(a),o=!0,d!=0&&t.requestRender()):t.requestTransition(g=>f(g))}function u(h){l=h,o&&(o=!1,s=+document.timeline.currentTime,f(s))}return u.stop=()=>{o=!0},u}class s6{constructor(e){this.genomes=new Map,this.baseUrl=e}async initialize(e){const n=new H4(e);return this.genomes.set(n.name,n),Promise.all([...this.genomes.values()].map(i=>i.load(this.baseUrl)))}getGenome(e){if(!this.genomes.size)throw new Error("No genomes have been configured!");if(e){const n=this.genomes.get(e);if(!n)throw new Error(`No genome with the name ${e} has been configured!`);return n}else{if(this.genomes.size>1)throw new Error("Cannot pick a default genome! More than one have been configured!");return this.genomes.values().next().value}}}const o6="data:image/png;base64,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",a6={thin:100,light:300,regular:400,normal:400,medium:500,bold:700,black:900};class c6{constructor(e){this._webGLHelper=e,this.fontRepository="https://raw.githubusercontent.com/etiennepinchon/aframe-fonts/master/fonts/",this._fonts=new Wt([],JSON.stringify),this._metadataPromises=new Map,this._fontPromises=new Map,this._promises=[],this._defaultFontEntry={metrics:If(c1),texture:e?this._createTextureNow(o6):void 0}}async waitUntilReady(){await Promise.all(this._promises)}getFont(e,n="normal",i="regular"){if(le(i)&&(i=a6[i.toLowerCase()],!i))throw new Error("Unknown font weight: "+i);const r={family:e,style:n,weight:i};let s=this._fonts.get(r);return s||(s={metrics:void 0,texture:void 0},this._fonts.set(r,s),this._promises.push(this._loadFontEntry(s,r))),s}async _loadFontEntry(e,n){try{const i=await this._loadMetadata(n.family),r=f6(i,n),s=this.fontRepository+I1(n.family)+"/"+r.replace(/\.\w+/,""),o=this._createTexture(s+".png"),a=this._loadFont(s+".json");e.texture=await o,e.metrics=await a}catch{console.warn(`Cannot load font: "${n.family}". Using the embedded default font.`),e.metrics=this._defaultFontEntry.metrics,e.texture=this._defaultFontEntry.texture}}_loadFont(e){let n=this._fontPromises.get(e);return n||(n=fetch(e).then(i=>{if(!i.ok)throw new Error("Could not load font: "+i.status);return i}).then(i=>i.json()).then(i=>If(i)),this._fontPromises.set(e,n)),n}_loadMetadata(e){const n=I1(e);let i=this._metadataPromises.get(n);if(!i){const r=this.fontRepository+n+"/METADATA.pb";i=fetch(r).then(s=>{if(!s.ok)throw new Error("Could not load font metadata. Response status: "+s.status+", url: "+r);return s}).then(s=>s.text()).then(s=>l6(s)).catch(s=>{console.warn(s.message)}),this._metadataPromises.set(n,i)}return i}getDefaultFont(){return this._defaultFontEntry}_createTexture(e){const n=this._webGLHelper.gl;return new Promise((i,r)=>{bs(n,{src:e,min:n.LINEAR},(s,o,a)=>{s?r(s):i(o)})})}_createTextureNow(e){const n=this._webGLHelper.gl;let i;const r=new Promise((s,o)=>{i=bs(n,{src:e,min:n.LINEAR},(a,l,c)=>{a?o(a):s(l)})});return this._promises.push(r),i}}function I1(t){return t.toLowerCase().replaceAll(/[^\w]/g,"")}function l6(t){const e=t.split(`
|
|
631
|
+
`),n=[];let i;for(const r of e)if(r.startsWith("fonts {")&&(i={name:void 0,style:void 0,weight:void 0,filename:void 0,post_script_name:void 0,full_name:void 0,copyright:void 0}),r.startsWith("}")&&(n.push(i),i=void 0),i){let s=r.match(/^\s*([A-Za-z_]+):[ ]?"(.*)"$/);if(s){const o=s[1];i[o]=s[2]}if(s=r.match(/^\s*([A-Za-z_]+):[ ]?(\d+)$/),s){const o=s[1];i[o]=+s[2]}}return n}function f6(t,e){let n,i=Number.POSITIVE_INFINITY;for(const r of t)if(e.family.localeCompare(r.name,void 0,{sensitivity:"accent"})==0&&e.style==r.style){const s=Math.abs(e.weight-r.weight);s<i&&(i=s,n=r)}return n?.filename}function u6(t,e){const n=[];let i;for(const r of t.split(`
|
|
632
|
+
`))if(r.startsWith(">"))i={identifier:r.match(/>(\S+)/)[1],sequence:""},n.push(i);else if(i)i.sequence+=r.trim();else throw new Error("Invalid fasta file!");return n}const b1=new Map,A6={Organism:"Homo sapiens"};async function h6(t,e,n={}){const i=t.symbol,r={...A6,GENE:i};for(const[o,a]of Object.entries(n))typeof a=="string"&&(r[o]=a);let s=b1.get(i)??await p6(r);return s?(b1.set(i,s),ce`
|
|
633
633
|
<div class="title">
|
|
634
634
|
<strong>${s.name}</strong>
|
|
635
635
|
${s.description}
|
|
636
636
|
</div>
|
|
637
637
|
<p class="summary">${s.summary}</p>
|
|
638
638
|
<p class="source">Source: NCBI RefSeq Gene</p>
|
|
639
|
-
`):null}async function
|
|
639
|
+
`):null}async function d6(t){const e={mode:"cors"},n=new URL("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi");n.search=new URLSearchParams({db:"gene",term:m6(t),sort:"relevance",retmax:"1",retmode:"json"}).toString();const r=(await fetch(n.toString(),e).then(s=>s.json())).esearchresult.idlist[0];if(r){const s=new URL("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esummary.fcgi");return s.search=new URLSearchParams({db:"gene",id:r,retmode:"json"}).toString(),(await fetch(s.toString(),e).then(l=>l.json())).result[r]}else return null}const g6=na(d6,500);function p6(t){return g6(t)}function m6(t){return Object.entries(t).filter(([e,n])=>n&&n.length>0).map(([e,n])=>`("${n}"[${e}])`).join(" AND ")}const w6=ze(".4~r"),y6=ze(".4~e");function x1(t){return t==null?ce` <span class="na">NA</span> `:le(t)?t.substring(0,30):Number.isInteger(t)?""+t:Ve(t)?Math.abs(t)>Math.pow(10,8)||Math.abs(t)<Math.pow(10,-8)?y6(t):w6(t):zr(t)?t?"True":"False":Ce(t)?ce`${t.map((e,n)=>[x1(e),n<t.length-1?", ":Ie])}`:"?"+typeof t+" "+t}function B1(t){const e=[];return v1(Object.entries(t),e),e}function v1(t,e,n){for(const[i,r]of t)i.startsWith("_")||(r!==null&&typeof r=="object"&&!Array.isArray(r)?v1(Object.entries(r),e,(n||"")+i+"."):e.push({key:(n||"")+i,value:r}))}const C6={x:"x2",y:"y2"},E6=new Set(["auto","locus","interval","endpoints","disabled"]),S1=new WeakMap;function Q1(t,e,n){const i=I6(e),r=k1("x",t,e,i,T1(n,"x")),s=k1("y",t,e,i,T1(n,"y")),o=r.rows.length>0&&s.rows.length>0,a=[...o?D1("x",r.rows):r.rows,...o?D1("y",s.rows):s.rows],l=new Set;for(const c of[r,s])for(const f of c.usedLinearizedFields){const u=i.get(f);if(!u||u.ambiguous)continue;Q6(t,f,u,e)&&(l.add(u.chrom),l.add(u.pos))}return{hiddenRowKeys:[...l],genomicRows:a,flattenDatumRows:()=>B1(t),formatGenomicLocus:(c,f)=>cc(e,c,f),formatGenomicInterval:(c,f)=>M1(e,c,f)}}function I6(t){const e=S1.get(t);if(e)return e;const n=v6(t);return S1.set(t,n),n}function D1(t,e){const n=t.toUpperCase()+" ";return e.map(i=>({key:n+i.key,value:i.value}))}function k1(t,e,n,i,r){const s=new Set;if(r==="disabled")return{rows:[],usedLinearizedFields:s};const o=N1(n,t,e);if(!o)return{rows:[],usedLinearizedFields:s};o.field&&s.add(o.field);const a=N1(n,C6[t],e);a?.field&&s.add(a.field);const l=r==="auto"?b6(o,a,i):r;if(l==="endpoints"&&a){const[c,f]=x6(o,a,i);return{rows:[{key:"Endpoint 1",value:cc(n,t,c.value)??String(c.value)},{key:"Endpoint 2",value:cc(n,t,f.value)??String(f.value)}],usedLinearizedFields:s}}return l==="interval"&&a?{rows:[{key:"Interval",value:M1(n,t,[o.value,a.value])??o.value+" - "+a.value}],usedLinearizedFields:s}:{rows:[{key:"Coordinate",value:cc(n,t,o.value)??String(o.value)}],usedLinearizedFields:s}}function b6(t,e,n){if(!e)return"locus";const i=F1(t.field,n),r=F1(e.field,n);return i&&r&&i!==r?"endpoints":"interval"}function F1(t,e){const n=t?e.get(t):void 0;return n&&!n.ambiguous?n.groupId:void 0}function x6(t,e,n){const i=R1(t.field,n),r=R1(e.field,n);return i===2&&r!==2?[e,t]:r===1&&i!==1?[e,t]:i===2&&r===1?[e,t]:[t,e]}function R1(t,e){const n=t?e.get(t):void 0,i=[n?.pos,n?.chrom,t];let r;for(const s of i){const o=B6(s);if(o!==void 0){if(r===void 0)r=o;else if(r!==o)return}}return r}function B6(t){if(!t)return;const e=t.toLowerCase(),n=e.match(/(?:^|[^0-9])(1|2)$/);if(n)return n[1]==="1"?1:2;const i=e.match(/(?:^|[_-])(first|second)(?:[_-]|$)/);if(i)return i[1]==="first"?1:2}function N1(t,e,n){const i=t.encoders?.[e];if(i?.scale?.type!=="locus")return;const r=i.dataAccessor;if(!r)return;const s=+r(n);if(Number.isFinite(s))return{value:s,field:r.fields?.length===1?r.fields[0]:void 0}}function v6(t){const e=new Map;let n=0,r=t.unitView?.getCollector?.()?.parent;for(;r;){const s=r.params;if(s?.type==="linearizeGenomicCoordinate"){const o=Ne(s.as),a=Ne(s.pos),l=S6(s.offset,a.length),c="g"+n++,f=s.channel==="y"?"y":"x";for(let u=0;u<o.length;u++){if(u>=a.length)continue;const h=e.get(o[u]);h?h.ambiguous=!0:e.set(o[u],{groupId:c,chrom:s.chrom,pos:a[u],offset:l[u],channel:f,ambiguous:!1})}}r=r.parent}return e}function S6(t,e){const n=Ne(t);return n.length===0?new Array(e).fill(0):n.length===1?new Array(e).fill(n[0]):n.length===e?n:new Array(e).fill(0)}function cc(t,e,n){return Hu(t,e)?.formatLocus(n)}function M1(t,e,n){return Hu(t,e)?.formatInterval(n)}function Hu(t,e){const n=t.encoders?.[e]?.scale;return n?.type==="locus"&&"genome"in n?n.genome():void 0}function T1(t,e){const n=t?.genomicCoordinates?.[e],i=typeof n=="string"?n:n?.mode??"auto";if(!E6.has(i))throw new Error('Unknown genomic coordinate display mode: "'+i+'"');return i}function Q6(t,e,n,i){const r=Hu(i,n.channel);if(!r)return!1;const s=t[n.chrom],o=t[n.pos],a=t[e];if(s===void 0||o===void 0||a===void 0)return!1;const l=+o,c=+a;if(!Number.isFinite(l)||!Number.isFinite(c))return!1;let f;try{f=r.toContinuous(s,l-n.offset)}catch{return!1}return Math.abs(f-c)<1e-6}async function D6(t,e,n,i){const r=(g,m)=>{for(const[p,w]of Object.entries(e.encoders))if(w?.dataAccessor?.fields.includes(g))switch(p){case"color":case"fill":case"stroke":return ce`
|
|
640
640
|
<span
|
|
641
641
|
class="color-legend"
|
|
642
|
-
style=${`background-color: ${
|
|
642
|
+
style=${`background-color: ${w(m)}`}
|
|
643
643
|
></span>
|
|
644
|
-
`}return""},s=
|
|
644
|
+
`}return""},s=i??Q1(t,e,n),o=s.flattenDatumRows?s.flattenDatumRows():B1(t),a=s.genomicRows??[],l=new Set(s.hiddenRowKeys??[]),c=o.filter(g=>!l.has(g.key)),f=[...a,...c];if(!f.length)return;const u=f.map(g=>{const m=x1(g.value),p=r(g.key,t);return ce`
|
|
645
645
|
<tr>
|
|
646
646
|
<th>${g.key}</th>
|
|
647
|
-
<td>${
|
|
647
|
+
<td>${m} ${p}</td>
|
|
648
648
|
</tr>
|
|
649
649
|
`}),h=ce`
|
|
650
650
|
<table class="attributes">
|
|
651
|
-
${
|
|
651
|
+
${u}
|
|
652
652
|
</table>
|
|
653
653
|
`,A=e.unitView.getTitleText(),d=A?ce`
|
|
654
654
|
<div class="title">
|
|
655
655
|
<strong>${A}</strong>
|
|
656
656
|
</div>
|
|
657
|
-
`:"";return ce`${d}${h}`}class js extends bm{#e=new Map;constructor(e,t,r,i,s,o){super(e,t,r,i,s,o),this.spec=e}async initializeChildren(){}getNextAutoName(e){const t=this.#e.get(e)??0;return this.#e.set(e,t+1),e+t}*[Symbol.iterator](){}visit(e){let t;try{t=e(this)}catch(r){throw r.view=this,r}if(t===Ln)return t;if(t!==Dt){e.beforeChildren&&e.beforeChildren(this);for(const r of this){const i=r.visit(e);if(i===Ln)return i}e.afterChildren&&e.afterChildren(this),e.postOrder&&e.postOrder(this)}}findDescendantByPath(e){let t=this;for(let r=0;r<e.length;r++){if(!(t instanceof js))return;const i=t.#t(e[r]);if(!i)return;if(r===e.length-1)return i;t=i}}#t(e){for(const t of this)if(t.name===e)return t}findDescendantByName(e){let t;return this.visit(r=>{if(r.name==e)return t=r,Ln}),t}getDefaultResolution(e,t){return"shared"}}function oR(n){$4(n),e8(n)}function i1(n){n.getDescendants().forEach(e=>e.configureViewOpacity())}class s1{constructor(e,t){this.container=e,this.options=t}async addChildSpec(e,t){const{specs:r,insertAt:i}=this.options.getChildSpecs(),s=t??r.length,o=this.options.defaultName?.(s,e)??this.container.getNextAutoName("child"),a=await this.container.context.createOrImportView(e,this.container,this.container,o);i(s,e);const l=this.options.insertView(a,s);this.options.prepareView&&await this.options.prepareView(a,s,l),i1(a);const c=h=>h.isConfiguredVisible(),{dataSources:u,graphicsPromises:f}=bf(a,this.container.context.dataFlow,c);return await Ef(a,u),await gf(f),this.options.requestLayout!==!1&&(this.container.invalidateSizeCache(),this.container.context.requestLayoutReflow()),a}async removeChildAt(e){const{removeAt:t}=this.options.getChildSpecs();this.options.removeView(e),t(e),this.options.afterRemove&&await this.options.afterRemove(e),this.options.requestLayout!==!1&&(this.container.invalidateSizeCache(),this.container.context.requestLayoutReflow())}}const o1=.5;function vf(n){return"multiscale"in n&&ye(n.multiscale)}function aR(n){if(!n.multiscale.length)throw new Error('"multiscale" must contain at least one child view.');const e=cR(n.stops,n.multiscale.length),t=n.multiscale.map((i,s)=>n.multiscale.length===1?i:{opacity:lR(s,n.multiscale.length,e),layer:[i]}),r={...n};return delete r.multiscale,delete r.stops,{...r,layer:t}}function cR(n,e){let t="unitsPerPixel",r,i="auto",s=o1;if(ye(n))r=a1(n,e,"stops");else if(ze(n))t=n.metric??"unitsPerPixel",r=a1(n.values,e,"stops.values"),i=n.channel??"auto",s=n.fade??o1;else throw new Error('"stops" must be an array or an object with "values".');if(t!=="unitsPerPixel")throw new Error('Only "unitsPerPixel" is supported for "stops.metric" in multiscale.');if(!["x","y","auto"].includes(i))throw new Error('"stops.channel" must be one of "x", "y", or "auto".');if(!Number.isFinite(s)||s<0||s>.5)throw new Error('"stops.fade" must be a finite number in range [0, 0.5].');if(r.forEach((o,a)=>{if(!Ie(o)&&(!Number.isFinite(o)||o<=0))throw new Error("Invalid stop value at index "+a+". Stop values must be positive finite numbers.")}),!r.some(Ie)){const o=r;for(let a=1;a<o.length;a++)if(o[a-1]<=o[a])throw new Error('"stops.values" must be strictly decreasing for "unitsPerPixel".');for(let a=0;a<o.length-1;a++){const l=o[a]*(1-s),c=o[a+1]*(1+s);if(l<=c)throw new Error("Adjacent transitions overlap. Reduce fade or increase stop spacing.")}}return{metric:t,values:r,channel:i,fade:s}}function a1(n,e,t){if(!ye(n))throw new Error('"'+t+'" must be an array of numbers or ExprRefs.');const r=e-1;if(n.length!==r)throw new Error("Invalid stop count for multiscale. Expected "+r+", got "+n.length+".");for(const i of n)if(!Ie(i)&&!Number.isFinite(i))throw new Error('"'+t+'" must contain only numbers or ExprRefs.');return n}function lR(n,e,t){let r,i;const s=t.values.map(o=>({hi:c1(o,1+t.fade),lo:c1(o,1-t.fade)}));if(n===0)r=[s[0].hi,s[0].lo];else if(n===e-1){const o=s.at(-1);r=[o.hi,o.lo]}else{const o=s[n-1],a=s[n];r=[o.hi,o.lo,a.hi,a.lo]}return n===0?i=[1,0]:n===e-1?i=[0,1]:i=[0,1,1,0],{channel:t.channel,unitsPerPixel:r,values:i}}function c1(n,e){return Ie(n)?{expr:"("+n.expr+") * "+e}:n*e}class Cr extends js{#e=[];constructor(e,t,r,i,s,o){super(e,t,r,i,s,{layersChildren:!0,...o}),this.spec=e,this.needsAxes={x:!0,y:!0}}async initializeChildren(){this.#e=await Promise.all(this.spec.layer.map(e=>this.context.createOrImportView(e,this,this,this.getNextAutoName("layer"),t=>{if(!Rf(t)&&!Ff(t)&&!vf(t))throw new Ve("LayerView accepts only unit, layer, or multiscale specs as children!",this)})))}async addChildSpec(e,t){return this.#t().addChildSpec(e,t)}async removeChildAt(e){await this.#t().removeChildAt(e)}#t(){return new s1(this,{getChildSpecs:()=>({specs:this.spec.layer,insertAt:(e,t)=>{this.spec.layer.splice(e,0,t)},removeAt:e=>{this.spec.layer.splice(e,1)}}),insertView:(e,t)=>(e.layoutParent??=this,this.#e.splice(t,0,e),e),removeView:e=>{const t=this.#e[e];if(!t)throw new Error("Child index out of range!");t.disposeSubtree(),this.#e.splice(e,1)},defaultName:()=>this.getNextAutoName("layer")})}get children(){return this.#e.slice()}*[Symbol.iterator](){for(const e of this.#e)yield e}render(e,t,r={}){if(super.render(e,t,r),!!this.isConfiguredVisible()){e.pushView(this,t);for(const i of this.#e)i.render(e,t,r);e.popView(this)}}propagateInteractionEvent(e){this.handleInteractionEvent(void 0,e,!0);for(let t=this.#e.length-1;t>=0;t--)if(this.#e[t].propagateInteractionEvent(e),e.stopped)return;this.handleInteractionEvent(void 0,e,!1)}}class l1{constructor(e,t){this.n=e,this.maxCols=t??1/0}get nRows(){return this.maxCols==1/0?1:Math.ceil(this.n/this.maxCols)}get nCols(){return Math.min(this.n,this.maxCols)}get rowIndices(){const e=[],t=this.nCols,r=this.nRows;for(let i=0;i<r;i++){const s=[];e.push(s);for(let o=0;o<t;o++){const a=i*t+o;a<this.n&&s.push(a)}}return e}get colIndices(){const e=[],t=this.nCols,r=this.nRows;for(let i=0;i<t;i++){const s=[];e.push(s);for(let o=0;o<r;o++){const a=o*t+i;a<this.n&&s.push(a)}}return e}getCellIndex(e,t){let r=0;if(this.maxCols==1/0)r=t==0?e:void 0;else{if(e>=this.maxCols)return;r=t*this.nCols+e}return r<this.n?r:void 0}getCellCoords(e){if(!(e<0||e>=this.n))return[e%this.nCols,Math.floor(e/this.nCols)]}}function an(n){return()=>n}class ve{static create(e,t,r,i){return new ve(an(e),an(t),an(r),an(i))}static ZERO=ve.create(0,0,0,0);_offset(e,t){const r=this["_"+e];if(t===0)return r;switch(typeof t){case"number":return()=>r()+t;case"function":return()=>r()+t();default:throw new Error("Not a number of function")}}_passThrough(e){return this._offset(e,0)}constructor(e,t,r,i){this._x=e,this._y=t,this._width=r,this._height=i}get x(){return this._x()}get y(){return this._y()}get width(){return this._width()}get height(){return this._height()}get x2(){return this._x()+this._width()}get y2(){return this._y()+this._height()}equals(e){return e?this===e||this.x===e.x&&this.y===e.y&&this.width===e.width&&this.height===e.height:!1}modify(e){if(!Object.keys(e).length)return this;const t=r=>{const i=e[r];return typeof i=="number"?an(i):typeof i=="function"?i:this._passThrough(r)};return new ve(t("x"),t("y"),t("width"),t("height"))}translate(e,t){return e===0&&t===0?this:new ve(this._offset("x",e),this._offset("y",t),this._passThrough("width"),this._passThrough("height"))}translateBy(e){return this.translate(e.x,e.y)}expand(e,t=1){return e.left==0&&e.top==0&&e.right==0&&e.bottom==0?this:new ve(e.left?this._offset("x",-e.left*t):this._passThrough("x"),e.top?this._offset("y",-e.top*t):this._passThrough("y"),e.width?this._offset("width",e.width*t):this._passThrough("width"),e.height?this._offset("height",e.height*t):this._passThrough("height"))}shrink(e){return this.expand(e,-1)}intersect(e){return this===e||e==null?this:new ve(()=>Math.max(this.x,e.x),()=>Math.max(this.y,e.y),()=>Math.min(this.x2,e.x2)-Math.max(this.x,e.x),()=>Math.min(this.y2,e.y2)-Math.max(this.y,e.y))}union(e){return this===e||e==null?this:new ve(()=>Math.min(this.x,e.x),()=>Math.min(this.y,e.y),()=>Math.max(this.x2,e.x2)-Math.min(this.x,e.x),()=>Math.max(this.y2,e.y2)-Math.min(this.y,e.y))}isDefined(){return this.width>=0&&this.height>=0}flatten(){return new ve(an(this.x),an(this.y),an(this.width),an(this.height))}containsPoint(e,t){return e>=this.x&&e<this.x2&&t>=this.y&&t<this.y2}normalizePoint(e,t,r=!1){const i={x:(e-this.x)/this.width,y:(t-this.y)/this.height};return r&&(i.y=1-i.y),i}denormalizePoint(e,t,r=!1){return r&&(t=1-t),{x:this.x+e*this.width,y:this.y+t*this.height}}toString(){return`Rectangle: x: ${this.x}, y: ${this.y}, width: ${this.width}, height: ${this.height}`}toRoundedString(){return`Rectangle: x: ${Math.round(this.x)}, y: ${Math.round(this.y)}, width: ${Math.round(this.width)}, height: ${Math.round(this.height)}`}}const yr=new WeakMap,Za=new WeakMap;function uR(n,e){if(e!==null&&typeof e!="string")throw new Error("Import scope name must be a string or null.");yr.set(n,{name:e})}function cn(n,e={}){const r=e.skipSubtree??!1?"excludeSubtree":"exclude";Za.set(n,r)}function fR(n){const e=n.getDataAncestors(),t=[];for(let r=e.length-1;r>=0;r-=1){const i=yr.get(e[r]);i&&typeof i.name=="string"&&t.push(i.name)}return t}function AR(n){const e=[];for(const t of hR(n)){const r=dR(t);gR(t,r,e),pR(t,r,e),mR(t,r,e)}return e}function u1(n){const e=n.spec.configurableVisibility;return e!==void 0?e:!(n.layoutParent&&n.layoutParent.spec&&"layer"in n.layoutParent.spec)}function f1(n){return n.persist===!1?!1:Bl(n)?!0:bd(n)?!!n.bind:!1}function hR(n){const e=new Set([n]);return n.visit(t=>{const r=yr.get(t);r&&typeof r.name=="string"&&e.add(t)}),Array.from(e)}function dR(n){const e=fR(n),t=yr.get(n);return t&&typeof t.name=="string"?[...e,t.name]:e}function $a(n){return n.length?"import scope ["+n.join(" / ")+"]":"import scope (root)"}function gR(n,e,t){const r=new Map;A1(n,i=>{const s=i.explicitName,o=u1(i),a=i.spec.configurableVisibility===!0;if(!o)return;if(!s){if(!a)return;t.push({message:"Configurable view must have an explicit name in "+$a(e)+".",scope:e});return}const l=r.get(s);l?l.push(i):r.set(s,[i])},{includeNamedImportRoots:!0});for(const[i,s]of r){if(s.length<=1)continue;const o=s.map(a=>a.getPathString()).join(", ");t.push({message:'Configurable view name "'+i+'" is not unique within '+$a(e)+". Found in: "+o+".",scope:e})}}function pR(n,e,t){const r=new Map;A1(n,i=>{for(const[s,o]of i.paramRuntime.paramConfigs){if(!f1(o))continue;const a=r.get(s);a?a.push(i):r.set(s,[i])}});for(const[i,s]of r){if(s.length<=1)continue;const o=s.map(a=>a.getPathString()).join(", ");t.push({message:'Bookmarkable parameter "'+i+'" is not unique within '+$a(e)+". Found in: "+o+".",scope:e})}}function mR(n,e,t){const r=wR(n);if(!r.length)return;const i=r.filter(o=>CR(o));if(i.length<=1)return;const s=new Map;for(const o of i){const a=yr.get(o),l=a?a.name:void 0;typeof l!="string"||!l.length||s.set(l,(s.get(l)??0)+1)}for(const[o,a]of s)a>1&&t.push({message:'Import instance name "'+o+'" is used multiple times for addressable instances in '+$a(e)+".",scope:e})}function wR(n){const e=[];return n.visit(t=>{if(t===n)return;if(Za.get(t)==="excludeSubtree")return Dt;if(yr.get(t))return e.push(t),Dt}),e}function CR(n){let e=!1;return n.visit(t=>{const r=Za.get(t);if(r==="excludeSubtree")return Dt;if(r!=="exclude"){const i=u1(t),s=t.spec.configurableVisibility===!0;if(i&&(t.explicitName||s))return e=!0,Ln;for(const o of t.paramRuntime.paramConfigs.values())if(f1(o))return e=!0,Ln}}),e}function A1(n,e,t={}){const r=t.includeNamedImportRoots??!1;n.visit(i=>{const s=Za.get(i);if(s==="excludeSubtree")return Dt;const o=yr.get(i);if(i!==n&&o&&typeof o.name=="string"){if(s!=="exclude"&&r){const l=e(i);if(l===Ln)return l}return Dt}if(s!=="exclude")return e(i)})}const yR="chromosome_ticks_and_labels",IR={x:"width",y:"height"};function Sf(n){return n=="x"?"y":"x"}const ec={x:["bottom","top"],y:["left","right"]},Qf=Object.fromEntries(Object.entries(ec).map(([n,e])=>e.map(t=>[t,n])).flat(1));function On(n){return Qf[n]}class h1 extends Cr{constructor(e,t,r,i,s,o){const a=t=="locus",l={...a?ER:d1,...bR(t,e),...e};super(a?xR(l,t):g1(l,t),r,i,s,`axis_${e.orient}`,{blockEncodingInheritance:!0,...o}),this.axisProps=l,cn(this,{skipSubtree:!0})}getSize(){const e={px:this.getPerpendicularSize()},t={grow:1};return Qf[this.axisProps.orient]=="x"?new Tn(t,e):new Tn(e,t)}getPerpendicularSize(){return Df(this.axisProps)}isPickingSupported(){return!1}}function Df(n){const e=On(n.orient);let t=n.ticks&&n.tickSize||0;return n.labels&&(t+=n.labelPadding,e=="x"?t+=n.labelFontSize:t+=30),n.title&&(t+=n.titlePadding+n.titleFontSize),t=Math.min(n.maxExtent||1/0,Math.max(n.minExtent||0,t)),t}const d1={values:null,minExtent:20,maxExtent:1/0,offset:0,domain:!0,domainWidth:1,domainColor:"gray",domainDash:null,domainDashOffset:0,domainCap:"square",ticks:!0,tickSize:5,tickWidth:1,tickColor:"gray",tickDash:null,tickDashOffset:0,tickCap:"square",tickCount:null,tickMinStep:null,labels:!0,labelAlign:"center",labelBaseline:"middle",labelPadding:4,labelFontSize:10,labelLimit:180,labelColor:"black",format:null,titleColor:"black",titleFont:"sans-serif",titleFontSize:10,titlePadding:3};function bR(n,e){const t=e.orient,r=n=="nominal"||n=="ordinal";let i="center",s="middle",o=e.labelAngle??((t=="top"||t=="bottom")&&r?-90:0);switch(t){case"left":i="right";break;case"right":i="left";break;case"top":case"bottom":Math.abs(o)>30?(i=o>0==(t=="bottom")?"left":"right",s="middle"):s=t=="top"?"alphabetic":"top";break}return{labelAlign:i,labelAngle:o,labelBaseline:s}}function g1(n,e){const t={...n,extent:Df(n)},r=On(t.orient),i=Sf(r),s=t.orient=="bottom"||t.orient=="right"?1:-1,o=t.orient=="bottom"||t.orient=="left"?1:0,a=()=>({field:"value",type:e}),l=()=>({name:"domain",data:{values:[{}]},mark:{type:"rule",clip:!1,strokeDash:t.domainDash,strokeCap:t.domainCap,color:t.domainColor,[i]:o,size:t.domainWidth}}),c=()=>({name:"labels",mark:{type:"text",clip:!1,align:t.labelAlign,angle:t.labelAngle,baseline:t.labelBaseline,[i+"Offset"]:(t.tickSize+t.labelPadding)*s,[i]:o,size:t.labelFontSize,color:t.labelColor,minBufferSize:1500},encoding:{[r]:a(),text:{field:"label"}}}),u=()=>({name:"ticks",mark:{type:"rule",clip:!1,strokeDash:t.tickDash,strokeCap:t.tickCap,color:t.tickColor,size:t.tickWidth,minBufferSize:300},encoding:{[i]:{value:o},[i+"2"]:{value:o-t.tickSize/t.extent*(o?1:-1)}}}),f=()=>({name:"title",data:{values:[{}]},mark:{type:"text",clip:!1,align:"center",baseline:t.orient=="bottom"?"bottom":"top",angle:[0,90,0,-90][["top","right","bottom","left"].indexOf(t.orient)],text:t.title,color:t.titleColor,[r]:.5,[i]:1-o}}),h=()=>{const d={name:"ticks_and_labels",encoding:{[r]:a()},layer:[]};return t.ticks&&d.layer.push(u()),t.labels&&d.layer.push(c()),d},A={resolve:{scale:{[r]:"forced"}},domainInert:!0,[IR[Sf(r)]]:t.extent,data:{lazy:{type:"axisTicks",channel:r,axis:n}},layer:[]};return t.domain&&A.layer.push(l()),(t.ticks||t.labels)&&A.layer.push(h()),t.title&&A.layer.push(f()),A}const ER={...d1,chromTicks:!0,chromTickSize:18,chromTickWidth:1,chromTickColor:"#989898",chromTickDash:[4,2],chromTickDashOffset:1,chromLabels:!0,chromLabelFontSize:13,chromLabelFontWeight:"normal",chromLabelFontStyle:"normal",chromLabelColor:"black",chromLabelAlign:"left",chromLabelPadding:7};function xR(n,e){const t={...n,extent:Df(n)},r=On(t.orient),i=Sf(r),s=t.orient=="bottom"||t.orient=="left"?1:0,o=()=>({name:"chromosome_ticks",mark:{type:"rule",strokeDash:n.chromTickDash,strokeDashOffset:n.chromTickDashOffset,[i]:s,[i+"2"]:s-t.chromTickSize/t.extent*(s?1:-1),color:n.chromTickColor,size:t.chromTickWidth}}),a=()=>{let u;switch(t.orient){case"top":u={y:0,angle:0,paddingX:4,dy:-t.chromLabelPadding,viewportEdgeFadeWidthLeft:20,viewportEdgeFadeWidthRight:20,viewportEdgeFadeDistanceRight:-10,viewportEdgeFadeDistanceLeft:-20};break;case"bottom":u={y:1,angle:0,paddingX:4,dy:t.chromLabelPadding+t.chromLabelFontSize*.73,viewportEdgeFadeWidthLeft:20,viewportEdgeFadeWidthRight:20,viewportEdgeFadeDistanceRight:-10,viewportEdgeFadeDistanceLeft:-20};break;case"left":u={x:1,angle:-90,paddingY:4,dy:-t.chromLabelPadding,viewportEdgeFadeWidthBottom:20,viewportEdgeFadeWidthTop:20,viewportEdgeFadeDistanceBottom:-20,viewportEdgeFadeDistanceTop:-10};break;case"right":u={x:0,angle:90,align:"right",paddingY:4,dy:-t.chromLabelPadding};break;default:u={}}return{name:"chromosome_labels",mark:{type:"text",size:t.chromLabelFontSize,font:t.chromLabelFont,fontWeight:t.chromLabelFontWeight,fontStyle:t.chromLabelFontStyle,color:t.chromLabelColor,align:n.chromLabelAlign,baseline:"alphabetic",clip:!1,...u},encoding:{[r+"2"]:{field:"continuousEnd",type:e},text:{field:"name"}}}};let l;switch(t.orient){case"bottom":case"top":l={};break;case"left":l={labelAngle:-90,labelAlign:"center",labelPadding:6};break;case"right":l={labelAngle:90,labelAlign:"center",labelPadding:6};break;default:l={}}const c=g1({...n,...l},e);if(n.chromTicks||n.chromLabels){const u={name:yR,data:{lazy:{type:"axisGenome",channel:On(t.orient)}},encoding:{[r]:{field:"continuousStart",type:e,band:0}},layer:[]};if(n.chromTicks&&u.layer.push(o()),n.chromLabels){u.layer.push(a());let f;c.layer.filter(h=>h.name=="ticks_and_labels").forEach(h=>h.layer.filter(A=>A.name=="labels").forEach(A=>{f=A.mark})),f&&(t.orient=="top"||t.orient=="bottom"?(f.viewportEdgeFadeWidthLeft=30,f.viewportEdgeFadeDistanceLeft=40):(f.viewportEdgeFadeWidthBottom=30,f.viewportEdgeFadeDistanceBottom=40))}c.layer.push(u)}return c}class BR{#e;#t=0;#n=0;constructor(e){this.#e=new Array(e)}push(e){this.#e[this.#t]=e,this.#t=(this.#t+1)%this.size,this.#n=Math.min(this.#n+1,this.size)}get(){const e=this.#e;return this.#n<this.size?e.slice(0,this.#n):e.slice(this.#t,this.size).concat(e.slice(0,this.#t))}get size(){return this.#e.length}get length(){return this.#n}}class ct{static fromMouseEvent(e){return new ct(e.clientX,e.clientY)}constructor(e,t){this.x=e,this.y=t}subtract(e){return new ct(this.x-e.x,this.y-e.y)}add(e){return new ct(this.x-e.x,this.y-e.y)}multiply(e){return new ct(this.x*e,this.y*e)}get length(){return Math.sqrt(this.x**2+this.y**2)}equals(e){return e?e===this||e.x===this.x&&e.y===this.y:!1}}let Ws,p1=0;function m1(){return performance.now()-p1<50}function vR(n){return function(...e){p1=performance.now(),n(...e)}}function SR(n,e,t,r,i){if(t=vR(t),n.type=="wheel"){n.uiEvent.preventDefault();const s=n.uiEvent,o=s.deltaMode?120:1;if(!s.deltaX&&!s.deltaY)return;Ws?.stop();let{x:a,y:l}=n.point;if(r){const c=r.mark.encoders;c.x&&!c.x2&&!c.x.constant&&(a=+c.x(r.datum)*e.width+e.x),c.y&&!c.y2&&!c.y.constant&&(l=(1-+c.y(r.datum))*e.height+e.y)}Math.abs(s.deltaX)<Math.abs(s.deltaY)?t({x:a,y:l,xDelta:0,yDelta:0,zDelta:s.deltaY*o/300}):t({x:a,y:l,xDelta:-s.deltaX*o,yDelta:0,zDelta:0})}else if(n.type=="mousedown"&&n.mouseEvent.button===0){Ws&&Ws.stop();const s=new BR(30),o=n.mouseEvent;o.preventDefault();let a=ct.fromMouseEvent(o);const l=f=>{const h=ct.fromMouseEvent(f);s.push({point:h,timestamp:performance.now()});const A=h.subtract(a);t({x:a.x,y:a.y,xDelta:A.x,yDelta:A.y,zDelta:0}),a=h},c=()=>{const h=performance.now(),A=s.get().filter(y=>h-y.timestamp<160);if(A.length<5||!i||QR(A))return;const d=A.at(-1),g=A[0],p=d.point.subtract(g.point).multiply(1/(d.timestamp-g.timestamp));let m=a.x,C=a.y;Ws=xf(i,y=>{t({x:y.x,y:y.y,xDelta:m-y.x,yDelta:C-y.y,zDelta:0}),m=y.x,C=y.y},150,.5,{x:m,y:C}),Ws({x:a.x-p.x*250,y:a.y-p.y*250})},u=()=>{document.removeEventListener("mousemove",l),document.removeEventListener("mouseup",u),c()};document.addEventListener("mouseup",u,!1),document.addEventListener("mousemove",l,!1)}}function QR(n){const e=n[Math.floor(n.length/2)],t=e.point.subtract(n[0].point).multiply(e.timestamp-n[0].timestamp),r=n.at(-1).point.subtract(e.point).multiply(n.at(-1).timestamp-e.timestamp),i=t.length;return r.length/i<.4}class DR extends Cr{constructor(e,t,r,i,s,o){const l={...t=="locus"?kR:w1,...e};super(NR(l,t),r,i,s,`axisGrid_${e.orient}`,{blockEncodingInheritance:!0,...o}),this.axisProps=l,cn(this,{skipSubtree:!0})}getOrient(){return this.axisProps.orient}isPickingSupported(){return!1}}const w1={values:null,grid:!1,gridCap:"butt",gridColor:"lightgray",gridDash:null,gridOpacity:1,gridWidth:1,tickCount:null,tickMinStep:null},kR={...w1,chromGrid:!1,chromGridCap:"butt",chromGridColor:"gray",chromGridDash:[1,5],chromGridOpacity:1,chromGridWidth:1};function FR(n,e){const t=n,r=On(t.orient);return{name:"grid_lines",data:{lazy:{type:"axisTicks",channel:r,axis:n}},mark:{type:"rule",strokeDash:t.gridDash,strokeCap:t.gridCap,color:t.gridColor,size:t.gridWidth,opacity:t.gridOpacity,minBufferSize:300},encoding:{[r]:{field:"value",type:e}}}}function RR(n,e){const t=n,r=On(t.orient);return{name:"chromosome_lines",data:{lazy:{type:"axisGenome",channel:r}},mark:{type:"rule",strokeDash:t.chromGridDash,strokeCap:t.chromGridCap,color:t.chromGridColor,size:t.chromGridWidth,opacity:t.chromGridOpacity},encoding:{[r]:{field:"continuousStart",type:e,band:0}}}}function MR(n,e){const t=n,r=On(t.orient);return{name:"chromosome_fill",data:{lazy:{type:"axisGenome",channel:r}},mark:{type:"rect"},encoding:{[r]:{field:"continuousStart",type:e,band:0},[r+"2"]:{field:"continuousEnd",band:0},fill:{field:"odd",type:"nominal",scale:{domain:[!1,!0],range:[t.chromGridFillEven??"white",t.chromGridFillOdd??"white"]}},opacity:{field:"odd",type:"nominal",scale:{type:"ordinal",domain:[!1,!0],range:[t.chromGridFillEven?1:0,t.chromGridFillOdd?1:0]}}}}}function NR(n,e){const t={...n},r=[];return t.chromGrid&&(t.chromGridFillOdd||t.chromGridFillEven)&&r.push(MR(t,e)),t.chromGrid&&t.chromGridOpacity>0&&r.push(RR(t,e)),t.grid&&t.gridOpacity>0&&r.push(FR(t,e)),{name:"grid_layers",configurableVisibility:!1,resolve:{scale:{[On(n.orient)]:"forced",fill:"independent",opacity:"independent"}},domainInert:!0,layer:r}}const C1={anchor:"middle",frame:"group",offset:10,orient:"top",align:void 0,angle:0,baseline:"alphabetic",dx:0,dy:0,color:void 0,font:void 0,fontSize:12,fontStyle:"normal",fontWeight:"normal"},TR={orient:"left",anchor:"middle",align:"right",baseline:"middle",angle:0,fontSize:12},PR={orient:"top",anchor:"start",align:"left",baseline:"top",offset:-10,dx:10,fontSize:12},LR={start:0,middle:.5,end:1},OR={start:"left",middle:"center",end:"right"};function UR(n){if(!n)return;const e=le(n)?{text:n}:n;if(!e.text||e.orient=="none")return;const t={"track-title":TR,overlay:PR}[e.style]??{},r={...C1,...t,...e};let i={},s={x:0,y:0};const o=LR[r.anchor??"middle"];switch(r.orient){case"top":s={x:o,y:1},i={baseline:"alphabetic",angle:0};break;case"right":s={x:1,y:1-o},i={baseline:"alphabetic",angle:90};break;case"bottom":s={x:o,y:0},i={baseline:"top",angle:0};break;case"left":s={x:0,y:o},i={baseline:"alphabetic",angle:-90};break}const a={...C1,...i,...t,...e},l={xOffset:0,yOffset:0};switch(r.orient){case"top":l.yOffset=-a.offset;break;case"right":l.xOffset=a.offset;break;case"bottom":l.yOffset=a.offset;break;case"left":l.xOffset=-a.offset;break}return{configurableVisibility:!1,data:{values:[{}]},mark:{type:"text",tooltip:null,clip:!1,...s,...l,text:a.text,align:a.align??OR[a.anchor],angle:a.angle,baseline:a.baseline,dx:a.dx,dy:a.dy,color:a.color,font:a.font,size:a.fontSize,fontStyle:a.fontStyle,fontWeight:a.fontWeight}}}class y1 extends tt{#e;#t=ve.ZERO;#n=ve.ZERO;#r=ve.ZERO;viewportOffset=0;#s;constructor(e,t,r={}){const i={scrollbarSize:8,scrollbarPadding:2,scrollbarMinLength:20};super({params:[{name:"scrollbarOpacity",value:1}],opacity:{expr:"scrollbarOpacity"},data:{values:[{}]},mark:{type:"rect",fill:"#b0b0b0",fillOpacity:.6,stroke:"white",strokeWidth:1,strokeOpacity:1,cornerRadius:5,clip:!1},configurableVisibility:!1},e.layoutParent.context,e.layoutParent,e.view,"scrollbar-"+t,{blockEncodingInheritance:!0}),cn(this,{skipSubtree:!0}),this.config=i,this.#e=t,this.#s=r.onViewportOffsetChange;const s=this.config.scrollbarPadding,o=this.config.scrollbarSize;this.#t=this.#e=="vertical"?new ve(()=>this.#n.x+this.#n.width-o-s,()=>this.#n.y+s+this.scrollOffset,()=>o,()=>this.#c()):new ve(()=>this.#n.x+s+this.scrollOffset,()=>this.#n.y+this.#n.height-o-s,()=>this.#c(),()=>o),this.#A(this.viewportOffset),this.addInteractionEventListener("mousedown",(a,l)=>{if(l.stopPropagation(),this.#a()<=0)return;const c=d=>t=="vertical"?d.clientY:d.clientX;l.mouseEvent.preventDefault();const u=this.scrollOffset,f=c(l.mouseEvent),h=d=>{const g=this.#a();if(g<=0)return;const p=Xr(c(d)-f+u,0,g);this.interpolateViewportOffset({x:this.#u(p)})},A=()=>{document.removeEventListener("mousemove",h),document.removeEventListener("mouseup",A)};document.addEventListener("mouseup",A,!1),document.addEventListener("mousemove",h,!1)})}get scrollOffset(){return this.#l(this.viewportOffset)}setViewportOffset(e,{notify:t=!0,syncSmoother:r=!1}={}){this.viewportOffset=Xr(e,0,this.#f()),r&&this.#A(this.viewportOffset),t&&this.#s&&this.#s(this.viewportOffset)}#o(){const e=this.#e=="horizontal"?"width":"height",t=this.#n[e],r=this.#r[e];return r>0?Math.min(1,t/r):1}#i(){const e=this.#e=="horizontal"?"width":"height";return Math.max(0,this.#n[e]-2*this.config.scrollbarPadding)}#c(){const e=this.#i(),t=this.#o()*e,r=this.config.scrollbarMinLength;return Math.min(e,Math.max(r,t))}#a(){return Math.max(0,this.#i()-this.#c())}#l(e){const t=this.#f(),r=this.#a();return t<=0||r<=0?0:e/t*r}#u(e){const t=this.#f(),r=this.#a();return t<=0||r<=0?0:e/r*t}#f(){const e=this.#e=="horizontal"?"width":"height";return Math.max(0,this.#r[e]-this.#n[e])}render(e,t,r){super.render(e,this.#t,r)}updateScrollbar(e,t){this.#n=e.flatten(),this.#r=t,this.setViewportOffset(this.viewportOffset,{notify:!1,syncSmoother:!0})}#A(e){this.interpolateViewportOffset=xf(this.context.animator,t=>{this.setViewportOffset(t.x,{notify:!0,syncSmoother:!1})},35,.4,{x:e})}}class GR extends Cr{constructor(e,t,r={}){const i=t(),s=Object.keys(i.intervals);if(tr.every(u=>!s.includes(u)))throw new Error("SelectionRect requires at least one of the channels 'x' or 'y' to be present in the selection.");const o={name:"selectionRect",configurableVisibility:!1,domainInert:!0,resolve:{scale:{x:"forced",y:"forced"}},data:{values:I1(t())},encoding:{},layer:[]};s.includes("x")&&(o.encoding.x={field:"_x",type:null,title:null},o.encoding.x2={field:"_x2"}),s.includes("y")&&(o.encoding.y={field:"_y",type:null,title:null},o.encoding.y2={field:"_y2"}),o.layer.push({name:"selectionRectRect",mark:{type:"rect",clip:!0,fill:"#808080",fillOpacity:.05,stroke:"black",strokeWidth:1,strokeOpacity:.2,...r}});const a=u=>{const f=e.view.getScaleResolution(u);return`format(datum._${u}2 - datum._${u}, '.3s')`+(f.type==="locus"?" + 'b'":"")},l=r.measure=="inside"?9:r.measure=="outside"?-9:0;s.includes("x")&&l!=0&&o.layer.push({name:"selectionRectTextX",mark:{type:"text",align:"center",paddingX:5,dy:l,tooltip:null},encoding:{text:{expr:a("x")},y:s.includes("y")?{field:"_y2",type:null,title:null}:{value:1},y2:null}}),s.includes("y")&&l!=0&&o.layer.push({name:"selectionRectTextY",mark:{type:"text",align:"center",paddingY:5,dy:l,tooltip:null,angle:-90},encoding:{text:{expr:a("y")},x2:null}}),super(o,e.layoutParent.context,e.layoutParent,e.view,"selectionRect",{blockEncodingInheritance:!0}),cn(this,{skipSubtree:!0});const c=()=>{const u=t(),f=this.flowHandle?.dataSource;if(!f)throw new Error("Cannot find selection rect data source handle!");f.updateDynamicData(I1(u))};this.registerDisposer(t.subscribe(c))}}function I1(n){const e=n.intervals.x,t=n.intervals.y;return!e&&!t?[]:[{_x:e?.[0],_x2:e?.[1],_y:t?.[0],_y2:t?.[1]}]}class zR{constructor(e,t,r){if(this.layoutParent=t,this.view=e,this.serial=r,this.background=void 0,this.backgroundStroke=void 0,this.axes={},this.gridLines={},this.scrollbars={},this.selectionRect=void 0,this.title=void 0,this.coords=ve.ZERO,e.needsAxes.x||e.needsAxes.y){const i=e.spec,s="view"in i?i?.view:void 0,o=HR(s);o&&(this.background=new tt(o,t.context,t,e,"background"+r,{blockEncodingInheritance:!0}),cn(this.background,{skipSubtree:!0}));const a=VR(s);a&&(this.backgroundStroke=new tt(a,t.context,t,e,"backgroundStroke"+r,{blockEncodingInheritance:!0}),cn(this.backgroundStroke,{skipSubtree:!0}));const l=UR(e.spec.title);if(l){const c=new tt(l,t.context,t,e,"title"+r,{blockEncodingInheritance:!0});this.title=c,cn(this.title,{skipSubtree:!0})}}e.spec.viewportWidth!=null&&(this.scrollbars.horizontal=new y1(this,"horizontal")),e.spec.viewportHeight!=null&&(this.scrollbars.vertical=new y1(this,"vertical")),this.#e()}#e(){const e=this.view,t=r=>{this.view.context.glHelper.canvas.style.cursor=r};for(const[r,i]of e.paramRuntime.paramConfigs){if(!("select"in i))continue;const s=Ko(i.select);if(!Cd(s))continue;const o=s.encodings,a=Object.fromEntries(o.map(y=>{const w=this.view.getScaleResolution(y),E=w?.getScale();if(!E||!Pe(E.type))throw new Error(`No continuous scale found for interval selection param "${r}" on channel "${y}"! Scale type is "${E?.type??"none"}".`);return[y,w]}));if(this.selectionRect)throw new Error("Only one interval selection per container is currently allowed!");let l=!1,c=!1,u=!1,f=null;const h=(y,w)=>Object.fromEntries(o.map(E=>[E,[Math.min(y[E],w[E]),Math.max(y[E],w[E])]])),A=e.paramRuntime.createExpression(r),d=y=>{e.paramRuntime.setValue(r,y)};i.value&&d({type:"interval",intervals:i.value});const g=()=>{d(pd(o)),t(null)};this.selectionRect=new GR(this,A,s.mark),this.selectionRect.initializeChildren();const p=y=>{const w={x:0,y:0},E=e.coords.normalizePoint(y.x,y.y,!0);for(const x of o){const b=a[x].getScale(),S=b.invert(x=="x"?E.x:E.y);w[x]=S+(["index","locus"].includes(b.type)?.5:0)}return w},m=y=>{const{intervals:w}=y,E=(S,Q,v)=>{const F=(O,H)=>H==null?null:a[O].getScale()(H),R=F("x",S)??v,N=F("y",Q)??v;return e.coords.denormalizePoint(R,N,!0)},x=E(w.x?.[0],w.y?.[0],0),b=E(w.x?.[1],w.y?.[1],1);return ve.create(x.x,x.y,b.x-x.x,b.y-x.y)};e.addInteractionEventListener("mousedown",(y,w)=>{if(w.mouseEvent.button!=0)return;if(f=l?m(A()):null,f)t("grabbing"),c=!0;else{const Q=w.point;if(yd(A())&&(c=!0),w.mouseEvent.shiftKey)g(),u=!0;else if(yd(A())){const F=(R,N)=>{e.removeInteractionEventListener("mouseup",F);const O=N.point;Q.subtract(O).length<2&&g()};e.addInteractionEventListener("mouseup",F);return}else return}w.stopPropagation();const E=w.point,x=ct.fromMouseEvent(w.mouseEvent).subtract(E),b=Q=>{const v=ct.fromMouseEvent(Q).subtract(x);let F;if(f){const R=v.subtract(E),N=f.translate(R.x,R.y);F=h(p(new ct(N.x,N.y)),p(new ct(N.x2,N.y2)))}else F=h(p(E),p(v));for(const R of o){const N=a[R],{zoomExtent:O,scale:H}=N,G=F[R];if(["index","locus"].includes(H.type)&&(G[0]=Math.ceil(G[0]),G[1]=Math.ceil(G[1])),f){const _=G[1]-G[0],te=O[0],oe=O[1];G[0]<te&&(G[0]=te,G[1]=te+_),G[1]>oe&&(G[1]=oe,G[0]=oe-_)}else G[0]=Math.max(O[0],G[0]),G[1]=Math.min(O[1],G[1]);G[1]=Math.min(O[1],G[1])}d({type:"interval",intervals:F})},S=()=>{document.removeEventListener("mousemove",b),document.removeEventListener("mouseup",S),u=!1,f&&(t("move"),f=null)};document.addEventListener("mousemove",b),document.addEventListener("mouseup",S)}),e.addInteractionEventListener("click",(y,w)=>{w.mouseEvent.button==0&&c&&(w.stopPropagation(),c=!1)},!0);const C=y=>PE(A(),p(y));e.addInteractionEventListener("dblclick",(y,w)=>{C(w.point)&&(g(),w.stopPropagation())},!0),e.addInteractionEventListener("mousemove",(y,w)=>{C(w.point)?u||(l=!0,f||t("move")):(l=!1,f||t(null))})}}*getChildren(){this.background&&(yield this.background),this.backgroundStroke&&(yield this.backgroundStroke),this.title&&(yield this.title),yield*Object.values(this.axes),yield*Object.values(this.gridLines),yield this.view,yield*Object.values(this.scrollbars),this.selectionRect&&(yield this.selectionRect)}async createAxes(){this.disposeAxisViews();const{view:e,axes:t,gridLines:r}=this,i=(a,l)=>{const c=a.getAxisProps();if(c===null)return;const u=c?{...c}:{};if(!u.orient){for(const f of ec[l])if(!t[f]){u.orient=f;break}if(!u.orient)throw new Error("No slots available for an axis! Perhaps a LayerView has more than two children?")}if(u.title??=a.getTitle(),!ec[l].includes(u.orient))throw new Error(`Invalid axis orientation "${u.orient}" on channel "${l}"!`);return u},s=async(a,l,c)=>{const u=i(a,l);if(u){if(t[u.orient])throw new Error(`An axis with the orient "${u.orient}" already exists!`);const f=new h1(u,a.scaleResolution.type,this.layoutParent.context,this.layoutParent,c);t[u.orient]=f,await f.initializeChildren()}},o=async(a,l,c)=>{const u=i(a,l);if(u&&(u.grid||u.chromGrid)){const f=new DR(u,a.scaleResolution.type,this.layoutParent.context,this.layoutParent,c);r[u.orient]=f,await f.initializeChildren()}};for(const a of["x","y"])if(e.needsAxes[a]){const l=e.resolutions.axis[a];if(!l)continue;await s(l,a,e)}for(const a of["x","y"])if(e.needsAxes[a]&&e.getConfiguredOrDefaultResolution(a,"axis")!="excluded"){const l=e.getAxisResolution(a);if(!l)continue;await o(l,a,e)}if(e instanceof Cr){for(const a of e)for(const[l,c]of Object.entries(a.resolutions.axis)){const u=c.getAxisProps();u&&u.orient&&await s(c,l,a)}for(const a of e)for(const[l,c]of Object.entries(a.resolutions.axis)){const u=c.getAxisProps();u&&!u.orient&&await s(c,l,a)}}[...Object.values(t),...Object.values(r)].forEach(a=>a.visit(l=>{l instanceof tt&&l.resolve("scale")}))}disposeAxisViews(){for(const e of Object.values(this.axes))e.disposeSubtree();for(const e of Object.values(this.gridLines))e.disposeSubtree();this.axes={},this.gridLines={}}getOverhang(){const e=t=>{const r=this.axes[t];return r?Math.max(r.getPerpendicularSize()+(r.axisProps.offset??0),0):0};return new qe(e("top"),e("right"),e("bottom"),e("left")).add(this.view.getOverhang())}getOverhangAndPadding(){return this.getOverhang().add(this.view.getPadding())}}function HR(n){if(n?.fill||n?.fillOpacity||n?.shadowOpacity)return{configurableVisibility:!1,data:{values:[{}]},mark:{color:n.fill,opacity:n.fillOpacity??(n.fill?1:0),type:"rect",clip:!1,tooltip:null,minHeight:1,minOpacity:0,shadowBlur:n.shadowBlur,shadowColor:n.shadowColor,shadowOffsetX:n.shadowOffsetX,shadowOffsetY:n.shadowOffsetY,shadowOpacity:n.shadowOpacity}}}function VR(n){if(!(!n||!n.stroke||n.strokeWidth===0||n.strokeOpacity===0))return{configurableVisibility:!1,resolve:{scale:{x:"excluded",y:"excluded"},axis:{x:"excluded",y:"excluded"}},data:{values:[{x:0,y:0,x2:1,y2:0},{x:1,y:0,x2:1,y2:1},{x:1,y:1,x2:0,y2:1},{x:0,y:1,x2:0,y2:0}]},mark:{size:n.strokeWidth??1,color:n.stroke??"lightgray",strokeCap:"square",opacity:n.strokeOpacity??1,type:"rule",clip:!1,tooltip:null},encoding:{x:{field:"x",type:"quantitative",scale:null},y:{field:"y",type:"quantitative",scale:null},x2:{field:"x2"},y2:{field:"y2"}}}}const tc=Object.freeze({size:1,color:"#ccc",opacity:1,strokeDash:[4,4],strokeCap:"butt"});class _R{#e;#t;#n;#r=[];#s=[];#o={x:[0,0],y:[0,0]};constructor({direction:e,props:t,context:r,layoutParent:i,dataParent:s,getName:o}){this.#e=e,this.#t=t.includePlotMargin??!0;const a={...t};delete a.includePlotMargin,this.#n=this.#a(a,r,i,s,o)}get view(){return this.#n}update(e,t,r,i,s,o){this.#i(e,t,i,s),this.#c(r,o)}render(e,t,r){this.#n.render(e,t,r)}#i(e,t,r,i){if(this.#s.length=0,t<2)return;const s=this.#e==="vertical"?"column":"row",o=i?3:2;for(let a=1;a<t;a++){const c=r(s,a)-o,u=e[c],f=u?u.location:0,h=u?u.size:0;this.#s.push(f+h/2)}}#c(e,t){const r=this.#t?0:t.left,i=this.#t?e.width:e.width-t.right,s=this.#t?0:t.bottom,o=this.#t?e.height:e.height-t.top;this.#r.length=this.#s.length;for(let u=0;u<this.#s.length;u++){const f=this.#s[u],h=this.#r[u]??{};if(this.#e==="vertical")h.x=f,h.x2=f,h.y=s,h.y2=o;else{const A=e.height-f;h.x=r,h.x2=i,h.y=A,h.y2=A}this.#r[u]=h}const a=this.#n.flowHandle?.dataSource;if(!a)return;a.updateDynamicData(this.#r),this.#o.x[1]=e.width,this.#o.y[1]=e.height;const l=this.#n.getScaleResolution("x")?.getScale();l&&l.domain(this.#o.x);const c=this.#n.getScaleResolution("y")?.getScale();c&&c.domain(this.#o.y)}#a(e,t,r,i,s){const o=JR(e),a=this.#e==="horizontal"?s("separatorHorizontal"):s("separatorVertical"),l=new tt(o,t,r,i,a,{blockEncodingInheritance:!0});return cn(l,{skipSubtree:!0}),l}}function YR(n){if(!n)return null;const e=n===!0?{...tc}:{...tc,...n};return e.strokeDash===tc.strokeDash&&(e.strokeDash=tc.strokeDash.slice()),e}function JR(n){return{configurableVisibility:!1,domainInert:!0,data:{values:[]},resolve:{scale:{x:"excluded",y:"excluded"},axis:{x:"excluded",y:"excluded"}},mark:{...n,type:"rule",clip:n.clip??!1,tooltip:null},encoding:{x:{field:"x",type:"quantitative",scale:{nice:!1,zero:!1}},y:{field:"y",type:"quantitative",scale:{nice:!1,zero:!1}},x2:{field:"x2"},y2:{field:"y2"}}}}class qR extends js{#e=1/0;#t=10;#n=[];#r={};#s=0;#o={};constructor(e,t,r,i,s,o,a){super(e,t,r,i,s,a),this.spec=e,this.#t=e.spacing??10,this.#e=o,this.#n=[],this.wrappingFacet=!1;const l=YR(e.separator);if(l)for(const c of WR(e))this.#o[c]=new _R({direction:c,props:l,context:this.context,layoutParent:this,dataParent:this,getName:u=>this.getNextAutoName(u)})}appendChild(e){this.appendChildView(e)}appendChildView(e){return this.insertChildViewAt(e,this.#n.length)}insertChildViewAt(e,t){e.layoutParent??=this;const r=new zR(e,this,this.#s);return this.#s++,this.#n.splice(t,0,r),this.invalidateSizeCache(),r}removeChildView(e){const t=this.#n.findIndex(r=>r.view===e);if(t<0)throw new Error("Not my child view!");this.removeChildAt(t)}removeChildAt(e){const t=this.#n[e];if(!t)throw new Error("Child index out of range!");this.#a(t),this.#n.splice(e,1),this.invalidateSizeCache()}get#i(){return this.#n.filter(e=>e.view.isConfiguredVisible())}get#c(){return new l1(this.#i.length,this.#e??1/0)}setChildren(e){for(const t of this.#n)this.#a(t);this.#n=[];for(const t of e)this.appendChild(t);this.invalidateSizeCache()}#a(e){e.disposeAxisViews();for(const t of e.getChildren())t.disposeSubtree()}get children(){return this.#n.map(e=>e.view)}get childCount(){return this.#n.length}async createAxes(){await this.syncSharedAxes(),await Promise.all(this.#n.map(e=>e.createAxes()))}async syncSharedAxes(){for(const t of Object.values(this.#r))t.disposeSubtree();this.#r={};const e=[];for(const t of tr){const r=this.resolutions.axis[t];if(!r)continue;const i=r.getAxisProps();if(!i)continue;const s={title:r.getTitle(),orient:ec[t][0],...i},o=new h1(s,r.scaleResolution.type,this.context,this,this);e.push(o.initializeChildren()),this.#r[t]=o}await Promise.all(e)}*[Symbol.iterator](){for(const e of this.#n)yield*e.getChildren();for(const e of Object.values(this.#o))yield e.view;for(const e of Object.values(this.#r))yield e}#l(e){const t=e=="column"?"width":"height",r=(i,s)=>i.map(o=>{const l=this.#i[o].getOverhangAndPadding();return e=="column"?s?l.right:l.left:s?l.bottom:l.top}).reduce((o,a)=>Math.max(o,a),0);return this._cache(`size/directionSizes/${e}`,()=>this.#c[e=="column"?"colIndices":"rowIndices"].map(i=>({axisBefore:r(i,0),axisAfter:r(i,1),view:bk(i.map(s=>this.#i[s].view.getViewportSize()[t]))})))}#u(e){const t=this.#l(e),r=[];r.push(Us);for(const[i,s]of t.entries())i>0&&r.push({px:this.#t,grow:0}),(i==0||this.wrappingFacet)&&r.push(Us),r.push({px:s.axisBefore,grow:0}),r.push(s.view),r.push({px:s.axisAfter,grow:0}),(i==t.length-1||this.wrappingFacet)&&r.push(Us);return r}#f(e){let t=0,r=0;const i=e=="row"?this.spec.height:this.spec.width;if(i||i===0)return jp(i);const s=this.#l(e);for(const[o,a]of s.entries())o>0&&(r+=this.#t),(o==0||this.wrappingFacet)&&(r+=0),r+=a.axisBefore,r+=a.view.px??0,t+=a.view.grow??0,r+=a.axisAfter,(o==s.length-1||this.wrappingFacet)&&(r+=0);return{px:r,grow:t}}#A(e,t){return e=="row"&&this.wrappingFacet?1+6*t+2:2+4*t+1}getOverhang(){return this.#h().union(this.#d())}#h(){const e=this.#l("column"),t=this.#l("row");return!e.length||!t.length?qe.zero():new qe(t.at(0).axisBefore,e.at(-1).axisAfter,t.at(-1).axisAfter,e.at(0).axisBefore)}#d(){const e=t=>{const r=Qf[t],i=this.#r[r];return i?.axisProps.orient!==t?0:Math.max(i.getPerpendicularSize()+(i.axisProps.offset??0),0)};return new qe(e("top"),e("right"),e("bottom"),e("left"))}getSize(){return this._cache("size",()=>new Tn(this.#f("column"),this.#f("row")).addPadding(this.#d()))}render(e,t,r={}){if(super.render(e,t,r),!this.isConfiguredVisible())return;this.layoutParent||(t=t.shrink(this.getPadding())),t=t.shrink(this.#d()),e.pushView(this,t);const i=e.getDevicePixelRatio(),s={devicePixelRatio:i},o=qp(this.#u("column"),t.width,s),a=qp(this.#u("row"),t.height,s),l=new l1(this.#i.length,this.#e??1/0),c=d=>Math.round(d*i)/i,u=[];for(const[d,g]of this.#i.entries()){const{view:p,axes:m,gridLines:C,background:y,backgroundStroke:w,title:E,selectionRect:x}=g,[b,S]=l.getCellCoords(d),Q=o[this.#A("column",b)],v=a[this.#A("row",S)],F=p.getViewportSize(),R=p.getSize(),N=p.getOverhang(),O=Q.location-N.left,H=v.location-N.top,G=(U,K)=>(U[K].grow?(K=="width"?Q:v).size:U[K].px)+N[K],_=G(F,"width"),te=G(F,"height"),oe=G(R,"width"),ne=G(R,"height"),Ge=g.scrollbars.horizontal,qt=g.scrollbars.vertical,ho=Ge?()=>c(Ge.viewportOffset):()=>0,Ri=qt?()=>c(qt.viewportOffset):()=>0,An=new ve(()=>t.x+O,()=>t.y+H,()=>_,()=>te),Dr=p.isScrollable(),go=Dr?new ve(()=>t.x+O-ho(),()=>t.y+H-Ri(),()=>oe,()=>ne):An;g.coords=An;const Mi=r.clipRect?An.intersect(r.clipRect):An;u.push({col:b,row:S,view:p,axes:m,gridLines:C,background:y,backgroundStroke:w,title:E,selectionRect:x,viewportCoords:An,viewCoords:go,clippedChildCoords:Mi,viewWidth:oe,viewHeight:ne,scrollable:Dr,gridChild:g})}for(const d of u)d.background?.render(e,d.clippedChildCoords,{...r,clipRect:void 0});const f=this.#h(),h=this.#o.vertical;h&&(h.update(o,l.nCols,t,(d,g)=>this.#A(d,g),this.wrappingFacet,f),h.render(e,t,r));const A=this.#o.horizontal;A&&(A.update(a,l.nRows,t,(d,g)=>this.#A(d,g),this.wrappingFacet,f),A.render(e,t,r));for(const d of u){const{view:g,axes:p,gridLines:m,backgroundStroke:C,title:y,selectionRect:w,viewportCoords:E,viewCoords:x,clippedChildCoords:b,viewWidth:S,viewHeight:Q,scrollable:v,gridChild:F,col:R,row:N}=d;for(const H of Object.values(m))H.render(e,E,r);const O=jR(g)||v;O&&g.render(e,x,{...r,clipRect:b}),C?.render(e,b,{...r,clipRect:void 0});for(const[H,G]of Object.entries(p)){const _=H=="left"||H=="right"?"vertical":"horizontal",te=F.scrollbars[_],oe=te?E.modify(_=="vertical"?{y:()=>x.y,height:Q}:{x:()=>x.x,width:S}):E,ne=b1(oe,H,G);let Ge=r.clipRect;te&&(Ge=ne.intersect(Ge).intersect(te?E.modify(_=="vertical"?{x:-1e5,width:2e5}:{y:-1e5,height:2e5}):void 0)),G.render(e,ne,{...r,clipRect:Ge})}for(const H of Object.values(this.#r)){const _=H.axisProps.orient;(_=="left"&&R==0||_=="right"&&R==l.nCols-1||_=="top"&&N==0||_=="bottom"&&N==l.nRows-1)&&H.render(e,b1(E.shrink(F.view.getOverhang()),_,H),r)}O||g.render(e,x,r),w?.render(e,x,r);for(const H of Object.values(F.scrollbars))H.updateScrollbar(E,x),H.render(e,t,r);y?.render(e,E,r)}e.popView(this)}propagateInteractionEvent(e){if(this.handleInteractionEvent(void 0,e,!0),e.stopped)return;const t=this.#i.find(i=>i.coords.containsPoint(e.point.x,e.point.y));for(const i of Object.values(t?.scrollbars??{}))if(i.coords.containsPoint(e.point.x,e.point.y)&&(i.propagateInteractionEvent(e),e.stopped))return;const r=t?.view;if(r){if(r.propagateInteractionEvent(e),e.stopped)return;(r instanceof tt||r instanceof Cr)&&SR(e,t.coords,i=>this.#g(t.coords,t.view,i),this.context.getCurrentHover(),this.context.animator)}e.stopped||this.handleInteractionEvent(void 0,e,!1)}#g(e,t,r){for(const[i,s]of Object.entries(KR(t))){if(s.size<=0)continue;const o=e.normalizePoint(r.x,r.y),a=e.normalizePoint(r.x+r.xDelta,r.y+r.yDelta),l={x:a.x-o.x,y:a.y-o.y};for(const c of s)c.zoom(2**r.zDelta,i=="y"?1-o[i]:o[i],i=="x"?l.x:-l.y)}this.context.animator.requestRender()}getDefaultResolution(e,t){return"independent"}}function KR(n){const e={x:new Set,y:new Set};return n.visit(t=>{for(const[r,i]of Object.entries(e)){const s=t.getScaleResolution(r);s&&s.isZoomable()&&i.add(s)}}),e}function jR(n){let e=!0;return n.visit(t=>{t instanceof tt&&(e&&=t.mark.properties.clip===!0)}),e}function WR(n){return"vconcat"in n?["horizontal"]:"hconcat"in n?["vertical"]:["horizontal","vertical"]}function b1(n,e,t){const r=t.axisProps,i=t.getPerpendicularSize();if(e=="bottom")return n.translate(0,n.height+r.offset).modify({height:i});if(e=="top")return n.translate(0,-i-r.offset).modify({height:i});if(e=="left")return n.translate(-i-r.offset,0).modify({width:i});if(e=="right")return n.translate(n.width+r.offset,0).modify({width:i})}class kf extends qR{constructor(e,t,r,i,s){super(e,t,r,i,s,nc(e)?e.columns:Xs(e)?1:1/0),this.spec=e}async initializeChildren(){const e=this.spec,t=nc(e)?e.concat:Xs(e)?e.vconcat:e.hconcat;this.setChildren(await Promise.all(t.map(r=>this.context.createOrImportView(r,this,this,this.getNextAutoName("grid"))))),await this.createAxes()}async addChildSpec(e,t){return this.#t().addChildSpec(e,t)}async removeChildAt(e){await this.#t().removeChildAt(e)}getDefaultResolution(e,t){return t=="axis"?"independent":Xs(this.spec)&&e==="x"||v1(this.spec)&&e==="y"?"shared":"independent"}#e(){const e=this.spec;let t;return nc(e)?t=e.concat:Xs(e)?t=e.vconcat:t=e.hconcat,{specs:t,insertAt:(r,i)=>{t.splice(r,0,i)},removeAt:r=>{t.splice(r,1)}}}#t(){return new s1(this,{getChildSpecs:this.#e.bind(this),insertView:(e,t)=>this.insertChildViewAt(e,t),removeView:e=>super.removeChildAt(e),prepareView:async(e,t,r)=>{await r.createAxes(),await this.syncSharedAxes()},afterRemove:async()=>{await this.syncSharedAxes()},defaultName:()=>this.getNextAutoName("grid")})}}const E1="viewRoot";class XR{#e=new Map;constructor(e={}){this.options={allowImport:!0,wrapRoot:!0,...e};const t=r=>(i,s,o,a,l)=>new r(i,s,o,a,l);this.addViewType(Rf,t(Cr)),this.addViewType(vf,((r,i,s,o,a)=>new Cr(aR(r),i,s,o,a))),this.addViewType(Ff,t(tt)),this.addViewType(Xs,t(kf)),this.addViewType(v1,t(kf)),this.addViewType(nc,t(kf))}addViewType(e,t){this.#e.set(e,t)}createView(e,t,r,i,s){for(const[o,a]of this.#e)if(o(e))return a(e,t,r,i,s);throw $R(e)?new Error("SampleView is not supported by the @genome-spy/core package. Use @genome-spy/app instead!"):new Error("Invalid spec, cannot figure out the view type from the properties: "+JSON.stringify([...Object.keys(e)]))}isViewSpec(e){const t=[...this.#e.keys()].filter(r=>r(e));if(t.length>1)throw new Error("Ambiguous spec. Cannot create a view!");return t.length==1}async createOrImportView(e,t,r,i,s,o){let a;const l=B1(e)?e.name??null:void 0;if(B1(e)){let h;if("url"in e.import)if(this.options.allowImport)h=await t8(e,i.getBaseUrl(),t);else throw new Ve("Importing views is not allowed!",r);else if("template"in e.import)h=x1(e.import.template,i);else throw new Error("Invalid import: "+JSON.stringify(e));o?.(h),ZR(h,e),a=h}else a=e;const c=h=>h?.params?.some(A=>Bl(A)&&Ko(A.select).type=="interval");let u=!1;!i&&this.options.wrapRoot&&(Ff(a)||Rf(a)||vf(a)||c(a))&&s===E1&&(a={name:"implicitRoot",vconcat:[a]},u=!0);const f=this.createView(a,t,r,i,s);return l!==void 0&&uR(f,l),u&&cn(f),f instanceof js&&await f.initializeChildren(),f.registerStepSizeInvalidation(),f}}function x1(n,e){const t=e.spec?.templates?.[n];if(t)return structuredClone(t);if(e.dataParent)return x1(n,e.dataParent);throw new Error(`Cannot find template "${n}" in current view or its ancestors!`)}function ZR(n,e){e.name!=null&&(n.name=e.name),e.visible!=null&&(n.visible=e.visible);const t=ye(e.params)?e.params:ze(e.params)?Object.entries(e.params).map(([r,i])=>({name:r,value:i})):[];if(t.length){n.params??=[];for(const r of t){const i=n.params.findIndex(s=>s.name==r.name);i>=0&&(n.params[i]=r)}for(const r of t)n.params.some(i=>i.name==r.name)||n.params.push(r)}}function Ff(n){return"mark"in n&&(le(n.mark)||ze(n.mark))}function Rf(n){return"layer"in n&&ze(n.layer)}function B1(n){return"import"in n}function Xs(n){return"vconcat"in n&&ye(n.vconcat)}function v1(n){return"hconcat"in n&&ye(n.hconcat)}function nc(n){return"concat"in n&&ye(n.concat)}function $R(n){return"samples"in n&&ze(n.samples)&&"spec"in n&&ze(n.spec)}class e6{#e;constructor(e,t){this.point=e,this.uiEvent=t,this.stopped=!1,this.target=void 0}stopPropagation(){this.stopped=!0}get type(){return this.uiEvent.type}get proxiedMouseEvent(){return this.#e||(this.#e=t6(this.mouseEvent)),this.#e}get mouseEvent(){if(this.uiEvent instanceof MouseEvent)return this.uiEvent;throw new Error("Not a MouseEvent!")}}function t6(n){const e=r=>r===null||typeof r!="object"&&typeof r!="function",t={get(r,i,s){const o=Reflect.get(r,i,r);if(!e(o))throw new Error(`Access to non-primitive property "${String(i)}" is not allowed.`);return o},getPrototypeOf(){return null},ownKeys(r){return Reflect.ownKeys(r).filter(s=>e(r[s])).map(s=>typeof s=="symbol"?s:String(s))},getOwnPropertyDescriptor(r,i){const s=Reflect.getOwnPropertyDescriptor(r,i);if(s&&!("get"in s||"set"in s)&&e(s.value))return{value:s.value,writable:!!s.writable,enumerable:!!s.enumerable,configurable:!!s.configurable}},has(r,i){return i in r?e(r[i]):!1}};return new Proxy(n,t)}class n6{constructor(e,t){this.animator=e,this.disabled=!!t,this.maxDistance=500,this.callback=null,this.targetValue=0,this.lastValue=0,this.smoother=xf(e,r=>{const i=r.x-this.lastValue;this.lastValue=r.x,this.callback?.(i)},40,.1,{x:0})}cancel(){this.lastValue!==this.targetValue&&(this.targetValue=GA([this.lastValue,this.targetValue],.3),this.smoother({x:this.targetValue}))}setMomentum(e,t){if(this.disabled){t(e);return}this.callback=t;const r=Xr(this.targetValue+e-this.lastValue,-this.maxDistance,this.maxDistance);this.targetValue=this.lastValue+r,this.smoother({x:this.targetValue})}}function r6(n){const e={},t=["string","number","boolean"],r=["wheelDelta","wheelDeltaX","wheelDeltaY"];for(const i in n){const s=i;!r.includes(i)&&t.includes(typeof n[s])&&(e[s]=n[s])}return e}class i6{#e;#t;#n;#r;#s;#o;#i;#c;#a;#l;#u;#f;constructor({viewRoot:e,glHelper:t,tooltip:r,animator:i,emitEvent:s,tooltipHandlers:o,renderPickingFramebuffer:a,getDevicePixelRatio:l}){this.#e=e,this.#t=t,this.#n=r,this.#r=i,this.#s=s,this.#o=o,this.#i=a,this.#c=l,this.#a=void 0,this.#l=new n6(this.#r),this.#u=void 0,this.#f=!1}getCurrentHover(){return this.#a}registerMouseEvents(){const e=this.#t.canvas;let t=performance.now(),r=!1;const i=s=>{const o=performance.now(),a=o-t<200;if(s instanceof MouseEvent){const l=e.getBoundingClientRect(),c=new ct(s.clientX-l.left-e.clientLeft,s.clientY-l.top-e.clientTop);s.type=="mousemove"&&!a&&(this.#n.handleMouseMove(s),this.#f=!1,s.buttons==0&&!m1()&&(this.#i(),this.#A(c.x,c.y)));const u=f=>{this.#e.propagateInteractionEvent(new e6(c,f)),this.#f||this.#n.clear()};if(s.type!="wheel"&&this.#l.cancel(),(s.type=="mousedown"||s.type=="mouseup")&&!m1())this.#i();else if(s.type=="wheel"){t=o,this.#f=!1;const f=s;if(Math.abs(f.deltaX)>Math.abs(f.deltaY))this.#a=null,this.#l.cancel();else{const h=r6(f);this.#l.setMomentum(f.deltaY*(f.deltaMode?80:1),A=>{const d=new WheelEvent("wheel",{...h,deltaMode:0,deltaX:0,deltaY:A});u(d)}),f.preventDefault();return}}if(s.type=="click"){if(r)return;const f=this.#a?{type:s.type,viewPath:this.#a.mark.unitView.getLayoutAncestors().map(h=>h.name).reverse(),datum:this.#a.datum}:{type:s.type,viewPath:null,datum:null};this.#s("click",f)}(s.type!="click"||this.#u?.subtract(ct.fromMouseEvent(s)).length<3)&&u(s)}};["mousedown","mouseup","wheel","click","mousemove","gesturechange","contextmenu","dblclick"].forEach(s=>e.addEventListener(s,i)),e.addEventListener("mousedown",s=>{this.#u=ct.fromMouseEvent(s),this.#n.sticky?(this.#n.sticky=!1,this.#n.clear(),r=!0):r=!1;const o=()=>{document.addEventListener("mouseup",()=>this.#n.popEnabledState(),{once:!0}),this.#n.pushEnabledState(!1)};if(s.button==2||s.shiftKey||s.ctrlKey||s.metaKey)o();else if(this.#n.visible){const a=setTimeout(()=>{r=!0,this.#n.sticky=!0},400),l=()=>clearTimeout(a);document.addEventListener("mouseup",l,{once:!0}),document.addEventListener("mousemove",l,{once:!0})}}),e.addEventListener("dragstart",s=>s.stopPropagation()),e.addEventListener("mouseout",()=>{this.#n.clear(),this.#a=null})}#A(e,t){const r=this.#c(),i=uQ(this.#t.gl,this.#t._pickingBufferInfo,e*r,t*r),s=i[0]|i[1]<<8|i[2]<<16|i[3]<<24;if(s==0){this.#a=null;return}if(s!==this.#a?.uniqueId&&(this.#a=null),this.#a||this.#e.visit(o=>{if(o instanceof tt){if(o.mark.isPickingParticipant()&&[...o.facetCoords.values()].some(a=>a.containsPoint(e,t))){const a=o.getCollector().findDatumByUniqueId(s);a&&(this.#a={mark:o.mark,datum:a,uniqueId:s})}if(this.#a)return Ln}}),this.#a){const o=this.#a.mark;this.updateTooltip(this.#a.datum,async a=>{if(!o.isPickingParticipant())return;const l=o.properties.tooltip;if(l!==null){const c=l?.handler??"default",u=this.#o[c];if(!u)throw new Error("No such tooltip handler: "+c);const f=Wm(a,o,l?.params);return u(a,o,l?.params,f)}})}}updateTooltip(e,t){if(!this.#f||!e)this.#n.updateWithDatum(e,t),this.#f=!0;else throw new Error("Tooltip has already been updated! Duplicate event handler?")}}class S1{constructor(e){this.globalOptions=e}pushView(e,t){}popView(e){}renderMark(e,t){}getDevicePixelRatio(){return 1}}class Mf extends S1{#e=[0,0,0,0];#t;#n=[];#r;#s;#o=new Set;#i=void 0;#c=1;#a={width:0,height:0};constructor(e,t){if(super(e),this.#s=t.webGLHelper,this.#r=t.framebufferInfo,this.#c=t.devicePixelRatio,this.#a=t.canvasSize,t.clearColor){const r=Fn(t.clearColor).rgb();this.#e=[r.r/255,r.g/255,r.b/255,r.opacity]}}getDevicePixelRatio(){return this.#c}pushView(e,t){this.#o.add(e),this.#i=t}renderMark(e,t){if(this.globalOptions.picking&&!e.isPickingParticipant())return;const r=e.render(t);r&&this.#n.push({mark:e,callback:r,coords:this.#i,clipRect:t.clipRect})}render(){if(this.#t||this.#l(),this.#t.length==0)return;const e=this.#s.gl,t=this.#r;t?(e.bindFramebuffer(e.FRAMEBUFFER,t.framebuffer),e.viewport(0,0,t.width,t.height)):e.viewport(0,0,e.drawingBufferWidth,e.drawingBufferHeight),e.disable(e.SCISSOR_TEST),e.clearColor(...this.#e),e.clear(e.COLOR_BUFFER_BIT);for(const r of this.#o)r.onBeforeRender();for(const r of this.#t)r();this.#r&&e.bindFramebuffer(e.FRAMEBUFFER,null)}#l(){this.#t=[];let e=!0,t=!0;const r=o=>()=>{e&&o()},i=o=>()=>{e&&t&&o()},s=Qo(this.#n.reverse(),o=>o.mark);for(const[o,a]of[...s.entries()].reverse()){if(!o.isReady())continue;this.#t.push(()=>{e=o.unitView.getEffectiveOpacity()>0}),this.#t.push(...o.prepareRender(this.globalOptions).map(c=>r(c)));let l;for(const c of a){const u=c.coords;u.equals(l)||this.#t.push(r(()=>{t=o.setViewport(this.#a,this.#c,u,c.clipRect)})),this.#t.push(i(c.callback)),l=c.coords}}}}class s6 extends S1{constructor(...e){super({}),this.contexts=e}pushView(e,t){for(const r of this.contexts)r.pushView(e,t)}popView(e){for(const t of this.contexts)t.popView(e)}renderMark(e,t){for(const r of this.contexts)r.renderMark(e,t)}}class o6{#e;#t;#n;#r;#s;#o;#i;#c;constructor({viewRoot:e,glHelper:t,getBackground:r,broadcast:i,onLayoutComputed:s}){this.#e=e,this.#t=t,this.#n=r,this.#r=i,this.#s=s,this.#o=void 0,this.#i=void 0,this.#c=!1}computeLayout(){const e=this.#e;if(!e)return;this.#r("layout");const t=this.#t.getLogicalCanvasSize();if(isNaN(t.width)||isNaN(t.height)){console.log(`NaN in canvas size: ${t.width}x${t.height}. Skipping computeLayout().`);return}const r={webGLHelper:this.#t,canvasSize:t,devicePixelRatio:window.devicePixelRatio??1};this.#o=new Mf({picking:!1},{...r,clearColor:this.#n()}),this.#i=new Mf({picking:!0},{...r,framebufferInfo:this.#t._pickingBufferInfo}),e.render(new s6(this.#o,this.#i),ve.create(0,0,t.width,t.height)),this.#s(),this.#r("layoutComputed")}renderAll(){this.#o?.render(),this.#c=!0}renderPickingFramebuffer(){this.#c&&(this.#i.render(),this.#c=!1)}}function a6(n){const e=o=>{throw new Error("ViewContext."+o+" is not configured.")},t={dataFlow:n.dataFlow??e("dataFlow"),glHelper:n.glHelper??e("glHelper"),animator:n.animator??e("animator"),genomeStore:n.genomeStore,fontManager:n.fontManager??e("fontManager"),createOrImportView:async function(o,a,l,c,u){const f=n.createOrImportViewWithContext;return f?f(t,o,a,l,c,u):Promise.reject(new Error("ViewContext.createOrImportView is not configured."))}},r=["requestLayoutReflow","updateTooltip","getNamedDataFromProvider","getCurrentHover","addKeyboardListener","addBroadcastListener","removeBroadcastListener","highlightView","isViewConfiguredVisible","isViewSpec"],i=n,s=t;for(const o of r)s[o]=i[o]??(()=>e(o));return t}function c6({glHelper:n,viewRoot:e,logicalWidth:t,logicalHeight:r,devicePixelRatio:i,clearColor:s="white"}){t??=n.getLogicalCanvasSize().width,r??=n.getLogicalCanvasSize().height,i??=window.devicePixelRatio??1;const o=n.gl,a=Math.floor(t*i),l=Math.floor(r*i),c=P0(o,[{format:o.RGBA,type:o.UNSIGNED_BYTE,minMag:o.LINEAR,wrap:o.CLAMP_TO_EDGE}],a,l),u=new Mf({picking:!1},{webGLHelper:n,canvasSize:{width:t,height:r},devicePixelRatio:i,clearColor:s,framebufferInfo:c});return e.render(u,ve.create(0,0,t,r)),u.render(),fQ(o,c,"image/png")}Al("fasta",zF);class Q1{#e=[];#t;#n;#r;#s;#o;#i;#c=new IE;#a=new ed;#l=new ed;constructor(e,t,r={}){this.container=e,this.options=r,r.inputBindingContainer??="default",this.spec=t,this.viewFactory=new XR,this.namedDataProviders=[],this.animator=new NF(()=>this.renderAll()),this.genomeStore=void 0,this.viewVisibilityPredicate=i=>i.isVisibleInSpec(),this.tooltipHandlers={default:sR,refseqgene:VF,...r.tooltipHandlers??{}},this.viewRoot=void 0,this.#s=new OE(e,r),this.dpr=window.devicePixelRatio}get#u(){return this.container.querySelector(".canvas-wrapper")}#f(){this.#s.initialize(this.viewRoot)}registerNamedDataProvider(e){this.namedDataProviders.unshift(e)}getNamedDataFromProvider(e){for(const t of this.namedDataProviders){const r=t(e);if(r)return r}}updateNamedData(e,t){const r=this.viewRoot.context.dataFlow.findNamedDataSource(e);if(!r)throw new Error("No such named data source: "+e);r.dataSource.updateDynamicData(t),this.animator.requestRender()}addEventListener(e,t){this.#a.add(e,t)}removeEventListener(e,t){this.#a.remove(e,t)}broadcast(e,t){const r={type:e,payload:t};this.viewRoot.visit(i=>i.handleBroadcast(r)),this.#l.emit(e,r)}#A(){const e=this.viewRoot.paramRuntime.allocateSetter("devicePixelRatio",this.dpr),t=()=>{this.#i.invalidateSize(),this.dpr=window.devicePixelRatio,e(this.dpr),this.computeLayout(),this.renderAll()};if(this.viewRoot.getSize().isGrowing()){const s=new ResizeObserver(t);s.observe(this.container),this.#e.push(()=>s.disconnect())}let r=null;const i=()=>{r!=null&&(r(),t());const s=matchMedia(`(resolution: ${window.devicePixelRatio}dppx)`);s.addEventListener("change",i),r=()=>{s.removeEventListener("change",i)}};i(),r&&this.#e.push(r)}#h(){const{canvasWrapper:e,loadingIndicatorsElement:t,tooltip:r}=hE(this.container);this.#i=new aQ(e,()=>this.viewRoot?n8(this.viewRoot):{width:void 0,height:void 0},{powerPreference:this.options.powerPreference??"default"}),this.tooltip=r,this.#r=new $h,this.#n=new CE(t,this.#r)}destroy(){const e=this.#u;for(this.container.classList.remove("genome-spy"),e.classList.remove("loading"),this.#c.removeAll(),this.#e.forEach(t=>t()),this.#i.finalize(),this.#s.remove(),this.#n.destroy();this.container.firstChild;)this.container.firstChild.remove()}async#d(){await this.#g();const e=this.#p();await this.#w(e),await DF(this.viewRoot,e.dataFlow,e.fontManager,t=>this.broadcast("dataFlowBuilt",t)),this.#m(e)}async#g(){this.spec.genome&&(this.genomeStore=new TF(this.spec.baseUrl),await this.genomeStore.initialize(this.spec.genome))}#p(){const e=new Um;return e.loadingStatusRegistry=this.#r,a6({dataFlow:e,glHelper:this.#i,animator:this.animator,genomeStore:this.genomeStore,fontManager:new OF(this.#i),updateTooltip:this.updateTooltip.bind(this),getNamedDataFromProvider:this.getNamedDataFromProvider.bind(this),getCurrentHover:()=>this.#o.getCurrentHover(),addKeyboardListener:(t,r)=>{this.#c.add(t,r)},addBroadcastListener:(t,r)=>this.#l.add(t,r),removeBroadcastListener:(t,r)=>this.#l.remove(t,r),isViewConfiguredVisible:this.viewVisibilityPredicate,isViewSpec:t=>this.viewFactory.isViewSpec(t),createOrImportViewWithContext:(t,r,i,s,o,a)=>this.viewFactory.createOrImportView(r,t,i,s,o,a),highlightView:yE(this.container)})}async#w(e){const t=this.spec;t.datasets&&this.registerNamedDataProvider(r=>t.datasets[r]),this.viewRoot=await e.createOrImportView(t,null,null,E1),this.#r.set(this.viewRoot,"loading"),this.#u.style.flexGrow=this.viewRoot.getSize().height.grow>0?"1":"0",this.#f(),oR(this.viewRoot),i1(this.viewRoot),this.#C(),this.#i.invalidateSize(),this.#t=new o6({viewRoot:this.viewRoot,glHelper:this.#i,getBackground:()=>this.spec.background,broadcast:this.broadcast.bind(this),onLayoutComputed:()=>this.#n.updateLayout()}),e.requestLayoutReflow=this.computeLayout.bind(this),this.#A()}#C(){const e=AR(this.viewRoot);if(e.length)for(const t of e)console.warn("Selector constraints warning:",t.message)}#m(e){e.requestLayoutReflow=this.computeLayout.bind(this),this.viewRoot.visit(t=>Ms(t,"size")),this.#i.invalidateSize(),this.#o=new i6({viewRoot:this.viewRoot,glHelper:this.#i,tooltip:this.tooltip,animator:this.animator,emitEvent:this.#a.emit.bind(this.#a),tooltipHandlers:this.tooltipHandlers,renderPickingFramebuffer:this.renderPickingFramebuffer.bind(this),getDevicePixelRatio:()=>this.dpr})}async launch(){let e=!1;try{return this.#h(),await this.#d(),this.registerMouseEvents(),this.computeLayout(),this.animator.requestRender(),e=!0,!0}catch(t){const r=`${t.view?`At "${t.view.getPathString()}": `:""}${t.toString()}`;return console.error(t.stack),this.options.onError?.(t,this.container)||dE(this.container,r),this.viewRoot&&this.#r.set(this.viewRoot,"error",r),!1}finally{this.#u.classList.remove("loading"),e&&this.viewRoot&&this.#r.set(this.viewRoot,"complete")}}async initializeVisibleViewData(){this.viewRoot&&(await kF(this.viewRoot,this.viewRoot.context.dataFlow,this.viewRoot.context.fontManager),this.viewRoot._invalidateCacheByPrefix("size","progeny"),this.#i.invalidateSize(),this.computeLayout(),this.animator.requestRender())}registerMouseEvents(){this.#o.registerMouseEvents()}updateTooltip(e,t){this.#o.updateTooltip(e,t)}exportCanvas(e,t,r,i="white"){const s=c6({glHelper:this.#i,viewRoot:this.viewRoot,logicalWidth:e,logicalHeight:t,devicePixelRatio:r,clearColor:i});return this.computeLayout(),this.renderAll(),s}getLogicalCanvasSize(){return this.#i.getLogicalCanvasSize()}computeLayout(){this.#t.computeLayout()}renderAll(){this.#t.renderAll()}renderPickingFramebuffer(){this.#t.renderPickingFramebuffer()}getSearchableViews(){const e=[];return this.viewRoot.visit(t=>{t instanceof tt&&t.getSearchAccessors().length>0&&e.push(t)}),e}getNamedScaleResolutions(){const e=new Map;return this.viewRoot.visit(t=>{for(const r of Object.values(t.resolutions.scale))r.name&&e.set(r.name,r)}),e}}const l6="data:image/svg+xml,%3csvg%20viewBox='0%200%2032%2032'%20xmlns='http://www.w3.org/2000/svg'%20fill-rule='evenodd'%20clip-rule='evenodd'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='1.5'%3e%3cpath%20d='M4.7%2021.2s.4%202.3%201.3%203.6C7%2026%209.8%2028%209.8%2028s3.4-2.6%206.4-8.5c0%200%201%20.1%201.9-.4.9-.6.8-.4%201-1.2%200%200%202.9.5%206.6%200%202.1-.3%204.3-1%206.2-2.5%200%200-1.1-1.7-2.5-5.1-.5-1.3-2-1.8-4.6-4.6l-8.2%208.6-11.9%206.9z'%20fill-opacity='.1'/%3e%3cpath%20d='M12.7%2014.8s-4-1.8-12%202.7c0%200%201%203.7%202.5%205.3%201.4%201.5%202.3%203.6%204.6%204.6%200%200%204.7-3%206.9-9.2l3-2s4.7%202.8%2012.6-1.6c0%200-.6-3.3-3-6-2.6-3-3.8-4.7-3.8-4.7s-4.1%202.3-7.5%209.3l-3.3%201.6z'%20fill='%237fbbdd'/%3e%3cpath%20d='M12.4%2015.5c-.7-.5-2.4-.8-4.4-.4-2%20.4-4%201.3-4.8%201.8-.5.3-1.2%201-1.2%201.4%200%20.7.3%201.8.8%202.4.3.3.7.5%201.4.6.8%200%202.5-1.4%203.5-2%201-.6%201.6-.8%202.7-1.2l-2.9%202.4c-1.3%201.2-2.2%201.5-2.4%202.3%200%20.5%200%201.4.5%201.8.4.5.6.8%201.6.8.6%200%201%200%202.6-1.5.9-.9%202.3-3%202.7-3.7.6-1.1%201-2.2.7-3-.2-1-.4-1.4-.8-1.7zM17.4%2014.2c-.3-.5-.9-1.2-.2-2.5l1.9-3c.5-.8%202-2.3%202.6-2.6.6-.4%201.5-.6%202-.2.6.4%201%201%201.3%201.5.4.6.7%201.3.2%202-.7%201-1.6.9-2.8%201.7-1.2.8-1.9%201.2-2.5%201.9l3.8-1.8c1.3-.6%202.7-1.1%203.4-.7.8.5.8.7%201%201.4.3%201-.2%201.9-.8%202.4-.5.6-1.5.9-2.6%201.2-1.4.4-4.5%201-5.8.5-1.3-.5-1.3-1.4-1.5-1.8z'%20fill='%23fff'/%3e%3cpath%20d='M12.7%2014.8s-4-1.8-12%202.7c0%200%201%203.7%202.5%205.3%201.4%201.5%202.3%203.6%204.6%204.6%200%200%204.7-3%206.9-9.2l3-2s4.7%202.8%2012.6-1.6c0%200-.6-3.3-3-6-2.6-3-3.8-4.7-3.8-4.7s-4.1%202.3-7.5%209.3l-3.3%201.6z'%20fill='none'%20stroke='%23000'%20stroke-width='.5'/%3e%3cpath%20d='M12.4%2014.9s2.1-2%203-2c1.1%200%202.3%202.7%202.3%203.5%200%20.8-2.1%202.4-3.1%202.3%200%200%200-1.2-.7-2.6-.8-1.3-1.5-1.2-1.5-1.2z'%20fill='%237fbbdd'/%3e%3cpath%20d='M13.8%2015.3c.9.8.6%202%201.4%201.8%201-.2%201.4-.8%201.3-1.5%200-.7%200-.8-.4-1.6-.3-.7-1-1.1-2-.5-.7.5-1.4%201.3-1.4%201.3s.2-.3%201.1.5z'%20fill='%23fff'/%3e%3cpath%20d='M12.4%2014.9s2.1-2%203-2c1.1%200%202.3%202.7%202.3%203.5%200%20.8-2.1%202.4-3.1%202.3%200%200%200-1.2-.7-2.6-.8-1.3-1.5-1.2-1.5-1.2z'%20fill='none'%20stroke='%23000'%20stroke-width='.5'/%3e%3c/svg%3e",u6="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5'%20viewBox='0%200%2064%2064'%3e%3cpath%20d='M208.6%20548.2s11.2%2046.2%2031.2%2071c20%2024.9%2079.3%2061.6%2079.3%2061.6S385.6%20623%20438%20498.3c0%200%2018.1%201%2036-11.9%2017.7-12.7%2016.3-7.9%2021-24.8%200%200%2057%206.3%20131-9.7%2041.7-9.1%2084.3-26.3%20121.5-58.8%200%200-25.4-32.9-58-101.7-12.4-26.1-41.9-34.3-98.7-88L438.1%20391.2%20208.6%20548.2Z'%20style='fill-opacity:.11'%20transform='matrix(.10221%20.00684%20-.00671%20.10035%20-8%20-13.2)'/%3e%3cg%20transform='rotate(-35.4%2034.2%2080.8)%20scale(.10057)'%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'%20style='fill:%237fbbdd'/%3e%3cclipPath%20id='a'%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'/%3e%3c/clipPath%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20d='M386.9%20397.2c-15.6-13.6-51.8-22.4-96.3-16.7-44.5%205.8-93.8%2021.8-111.8%2031.6-10.6%205.7-27.3%2017.3-28.1%2027.2-1.2%2014.2%202.9%2037.8%2015%2052%206%207.2%2014.2%2012.1%2028.1%2014.1%2017.9%202.6%2059-24.8%2081.6-36.2%2024-12%2038.6-14.6%2063-22.2%200%200-47%2031.6-68.2%2047.4-30.6%2022.9-51.6%2028-57.3%2045.5-3.1%209.4-.7%2027.9%207.5%2037.6%209%2011%2012.8%2017.6%2034.2%2020.1%2012.7%201.5%2022%201.2%2059.8-28.6%2021.7-17.2%2055.9-59.2%2067-74.4%2016.2-22%2023.8-43.1%2021.3-59.6-3.7-23.6-8.4-31.3-15.8-37.8Z'%20style='fill:%23fff'%20transform='scale(.88664)%20rotate(31.2%20485%20792.2)'/%3e%3cpath%20d='M484.7%20379c-5.4-11.1-17.6-28.5-.8-53.8a739%20739%200%200%201%2044.2-60.6c13.2-16.3%2046.7-46.2%2059.6-52%2013-6%2033.3-8.7%2044.2.2%2011%209.1%2016.5%2020.6%2023%2032.7%207.4%2013.8%2012.4%2029.3%201.6%2042.8-15.4%2019.2-34.3%2017-61.6%2031.5-27.7%2014.8-42.3%2023.1-55.7%2035.9%200%200%2052.2-21.6%2082-31.2%2029.8-9.7%2059.8-20%2074.8-8.5s14.6%2015.5%2018.4%2031.2c4.7%2019.4-7.2%2038-20.1%2048.6-13%2010.7-34.3%2016-57.4%2021-30.5%206.8-96.6%2015.1-124%202.6-27.5-12.6-24.4-32.8-28.2-40.5Z'%20style='fill:%23fff'%20transform='scale(.87906)%20rotate(31.2%20487.2%20893.5)'/%3e%3c/g%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'%20style='fill:none;stroke:%23000;stroke-width:16.57px'/%3e%3c/g%3e%3cg%20transform='rotate(-4.2%20-78%20211)%20scale(.10057)'%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'%20style='fill:%237fbbdd'/%3e%3cclipPath%20id='b'%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'/%3e%3c/clipPath%3e%3cg%20clip-path='url(%23b)'%3e%3cpath%20d='M413.3%20402.7c17.5%2018.9%2010%2045.7%2028.4%2043.4%2021.7-2.7%2030.9-15.7%2031.6-32.7.7-17-1-19.5-7.1-38-6.1-18.7-18.2-23.2-43.4-18.2-20.8%204.1-17.8%203-24%2010-6.4%207-14.5%2026-14.5%2026s8.4-12.7%2029%209.5Z'%20style='fill:%23fff'%20transform='matrix(.90907%200%200%20.85852%2037%2052.2)'/%3e%3c/g%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'%20style='fill:none;stroke:%23000;stroke-width:16.57px'/%3e%3c/g%3e%3c/svg%3e";async function f6(n,e,t={}){let r;if(le(n)){if(r=document.querySelector(n),!r)throw new Error(`No such element: ${n}`)}else if(n instanceof HTMLElement)r=n;else throw new Error(`Invalid element: ${n}`);let i;try{const s=ze(e)?e:await D1(e);if(s.baseUrl??="",s.width??="container",s.padding??=10,r==document.body){const o=document.createElement("div");o.style.position="fixed",o.style.inset="0",o.style.overflow="hidden",r.appendChild(o),r=o}i=new Q1(r,s,t),A6(i,t),await i.launch()}catch(s){r.innerText=s.toString(),console.error(s)}return{finalize(){for(i.destroy();r.firstChild;)r.firstChild.remove()},addEventListener(s,o){i.addEventListener(s,o)},removeEventListener(s,o){i.removeEventListener(s,o)},getScaleResolutionByName(s){return i.getNamedScaleResolutions().get(s)},updateNamedData:i.updateNamedData.bind(i),exportCanvas:i.exportCanvas.bind(i)}}function A6(n,e){e.namedDataProvider&&n.registerNamedDataProvider(e.namedDataProvider)}async function D1(n){let e;try{e=await xm(n)}catch(t){throw new Error(`Could not load or parse configuration: ${n}, reason: ${t.message}`)}if(!e.baseUrl){const t=n.match(/^[^?#]*\//);e.baseUrl=t&&t[0]||"./"}return e}class h6{constructor(e){this.blob=e}async read(e,t=0){if(!e)return new Uint8Array(0);const r=t,i=r+e,s=this.blob.slice(r,i);return s.bytes?s.bytes():new Uint8Array(await s.arrayBuffer())}async readFile(e){const t=typeof e=="string"?e:e?.encoding;if(t==="utf8")return this.blob.text();if(t)throw new Error(`unsupported encoding: ${t}`);return this.blob.bytes?this.blob.bytes():new Uint8Array(await this.blob.arrayBuffer())}async stat(){return{size:this.blob.size}}async close(){}}function d6(n){return(typeof n=="object"&&n!==null&&"message"in n?n.message:`${n}`).replace(/\.$/,"")}class _t{constructor(e,t={}){this.baseOverrides={},this.url=e;const r=t.fetch||globalThis.fetch.bind(globalThis);t.overrides&&(this.baseOverrides=t.overrides),this.fetchImplementation=r}async fetch(e,t){const r=s=>new Error(`${d6(s)} fetching ${e}`,{cause:s});let i;try{i=await this.fetchImplementation(e,t)}catch(s){if(`${s}`.includes("Failed to fetch")){console.warn(`generic-filehandle: refetching ${e} to attempt to work around chrome CORS header caching bug`);try{i=await this.fetchImplementation(e,{...t,cache:"reload"})}catch(o){throw r(o)}}else throw r(s)}return i}async read(e,t,r={}){if(e===0)return new Uint8Array(0);const{headers:i={},signal:s,overrides:o={}}=r;e<1/0?i.range=`bytes=${t}-${t+e-1}`:e===1/0&&t!==0&&(i.range=`bytes=${t}-`);const a=await this.fetch(this.url,{...this.baseOverrides,...o,headers:{...this.baseOverrides.headers,...o.headers,...i},method:"GET",redirect:"follow",mode:"cors",signal:s});if(!a.ok)throw new Error(`HTTP ${a.status} fetching ${this.url}`);if(a.status===200&&t===0||a.status===206){const l=a.headers.get("content-range"),c=/\/(\d+)$/.exec(l||"");c?.[1]&&(this._stat={size:parseInt(c[1],10)});const u=a.bytes?await a.bytes():new Uint8Array(await a.arrayBuffer());return u.byteLength<=e?u:u.subarray(0,e)}throw new Error(a.status===200?`${this.url} fetch returned status 200, expected 206`:`HTTP ${a.status} fetching ${this.url}`)}async readFile(e={}){let t,r;if(typeof e=="string")t=e,r={};else{t=e.encoding;const{encoding:l,...c}=e;r=c}const{headers:i={},signal:s,overrides:o={}}=r,a=await this.fetch(this.url,{...this.baseOverrides,...o,headers:{...this.baseOverrides.headers,...o.headers,...i},method:"GET",redirect:"follow",mode:"cors",signal:s});if(!a.ok)throw new Error(`HTTP ${a.status} fetching ${this.url}`);if(t==="utf8")return a.text();if(t)throw new Error(`unsupported encoding: ${t}`);return a.bytes?a.bytes():new Uint8Array(await a.arrayBuffer())}async stat(){if(!this._stat&&(await this.read(10,0),!this._stat))throw new Error(`unable to determine size of file at ${this.url}`);return this._stat}async close(){}}class We{readFile(){throw new Error("unimplemented")}read(){throw new Error("unimplemented")}close(){throw new Error("unimplemented")}}const Zs=Object.freeze(Object.defineProperty({__proto__:null,BlobFile:h6,LocalFile:We,RemoteFile:_t},Symbol.toStringTag,{value:"Module"})),k1=65536,g6=k1*k1;function Nf(n,e=0){const t=n[e]|n[e+1]<<8|n[e+2]<<16|n[e+3]<<24;return((n[e+4]|n[e+5]<<8|n[e+6]<<16|n[e+7]<<24)>>>0)*g6+(t>>>0)}const rc=1;function F1(n,e,t){const r=e[rc],i=t?t[rc]:1/0;return r<=n&&i>n?0:r<n?-1:1}class p6{filehandle;index;constructor({filehandle:e}){this.filehandle=e}_getIndex(){return this.index||(this.index=this._readIndex().catch(e=>{throw this.index=void 0,e})),this.index}async _readIndex(){const e=await this.filehandle.read(8,0),t=Nf(e);if(!t)return[[0,0]];const r=new Array(t+1);r[0]=[0,0];const i=16*t;if(i>Number.MAX_SAFE_INTEGER)throw new TypeError("integer overflow");const s=await this.filehandle.read(i,8);for(let o=0;o<t;o+=1){const a=Nf(s,o*16),l=Nf(s,o*16+8);r[o+1]=[a,l]}return r}async getLastBlock(){return(await this._getIndex()).at(-1)}async getRelevantBlocksForRead(e,t){const r=t+e;if(e===0)return[];const i=await this._getIndex(),s=[];let o=0,a=i.length-1,l=Math.floor(i.length/2),c=F1(t,i[l],i[l+1]);for(;c!==0;)c>0?a=l-1:c<0&&(o=l+1),l=Math.ceil((a-o)/2)+o,c=F1(t,i[l],i[l+1]);s.push(i[l]);let u=l+1;for(;u<i.length&&(s.push(i[u]),!(i[u][rc]>=r));u+=1);return s[s.length-1][rc]<r&&s.push([]),s}}var R1=0,Tf=2,ic=4,Ir=0,sc=1,m6=2,w6=-5;function C6(n,e){return Object.prototype.hasOwnProperty.call(n,e)}function y6(n){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var t=e.shift();if(t){if(typeof t!="object")throw new TypeError(t+"must be non-object");for(var r in t)C6(t,r)&&(n[r]=t[r])}}return n}function M1(n,e){return n.length===e?n:n.subarray?n.subarray(0,e):(n.length=e,n)}var $s={arraySet:function(n,e,t,r,i){if(e.subarray&&n.subarray){n.set(e.subarray(t,t+r),i);return}for(var s=0;s<r;s++)n[i+s]=e[t+s]},flattenChunks:function(n){var e,t,r,i,s,o;for(r=0,e=0,t=n.length;e<t;e++)r+=n[e].length;for(o=new Uint8Array(r),i=0,e=0,t=n.length;e<t;e++)s=n[e],o.set(s,i),i+=s.length;return o},Buf8:function(n){return new Uint8Array(n)},Buf16:function(n){return new Uint16Array(n)},Buf32:function(n){return new Int32Array(n)}},eo={arraySet:function(n,e,t,r,i){for(var s=0;s<r;s++)n[i+s]=e[t+s]},flattenChunks:function(n){return[].concat.apply([],n)},Buf8:function(n){return new Array(n)},Buf16:function(n){return new Array(n)},Buf32:function(n){return new Array(n)}};let ci=()=>{const n=typeof Uint8Array<"u"&&typeof Uint16Array<"u"&&typeof Int32Array<"u";return ci=()=>n,n},Un=(n,e,t,r,i)=>(Un=ci()?$s.arraySet:eo.arraySet,Un(n,e,t,r,i)),Pf=n=>(Pf=ci()?$s.flattenChunks:eo.flattenChunks,Pf(n)),li=n=>(li=ci()?$s.Buf8:eo.Buf8,li(n)),ui=n=>(ui=ci()?$s.Buf16:eo.Buf16,ui(n)),fi=n=>(fi=ci()?$s.Buf32:eo.Buf32,fi(n)),N1=function(){let n=!0;try{String.fromCharCode.apply(null,[0])}catch{n=!1}return N1=()=>n,n},T1=function(){let n=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{n=!1}return T1=()=>n,n},Lf=function(n){for(var e=li(256),t=0;t<256;t++)e[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;return e[254]=e[254]=1,Lf=r=>e[r],e[n]};function P1(n){var e,t,r,i,s,o=n.length,a=0;for(i=0;i<o;i++)t=n.charCodeAt(i),(t&64512)===55296&&i+1<o&&(r=n.charCodeAt(i+1),(r&64512)===56320&&(t=65536+(t-55296<<10)+(r-56320),i++)),a+=t<128?1:t<2048?2:t<65536?3:4;for(e=new Uint8Array(a),s=0,i=0;s<a;i++)t=n.charCodeAt(i),(t&64512)===55296&&i+1<o&&(r=n.charCodeAt(i+1),(r&64512)===56320&&(t=65536+(t-55296<<10)+(r-56320),i++)),t<128?e[s++]=t:t<2048?(e[s++]=192|t>>>6,e[s++]=128|t&63):t<65536?(e[s++]=224|t>>>12,e[s++]=128|t>>>6&63,e[s++]=128|t&63):(e[s++]=240|t>>>18,e[s++]=128|t>>>12&63,e[s++]=128|t>>>6&63,e[s++]=128|t&63);return e}function I6(n,e){if(e<65534&&(n.subarray&&T1()||!n.subarray&&N1()))return String.fromCharCode.apply(null,M1(n,e));for(var t="",r=0;r<e;r++)t+=String.fromCharCode(n[r]);return t}function b6(n){for(var e=new Uint8Array(n.length),t=0,r=e.length;t<r;t++)e[t]=n.charCodeAt(t);return e}function E6(n,e){var t,r,i,s,o=e||n.length,a=new Array(o*2);for(r=0,t=0;t<o;){if(i=n[t++],i<128){a[r++]=i;continue}if(s=Lf(i),s>4){a[r++]=65533,t+=s-1;continue}for(i&=s===2?31:s===3?15:7;s>1&&t<o;)i=i<<6|n[t++]&63,s--;if(s>1){a[r++]=65533;continue}i<65536?a[r++]=i:(i-=65536,a[r++]=55296|i>>10&1023,a[r++]=56320|i&1023)}return I6(a,r)}function x6(n,e){var t;for(e=e||n.length,e>n.length&&(e=n.length),t=e-1;t>=0&&(n[t]&192)===128;)t--;return t<0||t===0?e:t+Lf(n[t])>e?t:e}function B6(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}function Of(n,e,t,r){for(var i=n&65535|0,s=n>>>16&65535|0,o=0;t!==0;){o=t>2e3?2e3:t,t-=o;do i=i+e[r++]|0,s=s+i|0;while(--o);i%=65521,s%=65521}return i|s<<16|0}function v6(){for(var n,e=[],t=0;t<256;t++){n=t;for(var r=0;r<8;r++)n=n&1?3988292384^n>>>1:n>>>1;e[t]=n}return e}let L1=function(){const n=v6();return L1=()=>n,n};function Yt(n,e,t,r){var i=L1(),s=r+t;n^=-1;for(var o=r;o<s;o++)n=n>>>8^i[(n^e[o])&255];return n^-1}var oc=30,S6=12;function Q6(n,e){var t,r,i,s,o,a,l,c,u,f,h,A,d,g,p,m,C,y,w,E,x,b,S,Q,v;t=n.state,r=n.next_in,Q=n.input,i=r+(n.avail_in-5),s=n.next_out,v=n.output,o=s-(e-n.avail_out),a=s+(n.avail_out-257),l=t.dmax,c=t.wsize,u=t.whave,f=t.wnext,h=t.window,A=t.hold,d=t.bits,g=t.lencode,p=t.distcode,m=(1<<t.lenbits)-1,C=(1<<t.distbits)-1;e:do{d<15&&(A+=Q[r++]<<d,d+=8,A+=Q[r++]<<d,d+=8),y=g[A&m];t:for(;;){if(w=y>>>24,A>>>=w,d-=w,w=y>>>16&255,w===0)v[s++]=y&65535;else if(w&16){E=y&65535,w&=15,w&&(d<w&&(A+=Q[r++]<<d,d+=8),E+=A&(1<<w)-1,A>>>=w,d-=w),d<15&&(A+=Q[r++]<<d,d+=8,A+=Q[r++]<<d,d+=8),y=p[A&C];n:for(;;){if(w=y>>>24,A>>>=w,d-=w,w=y>>>16&255,w&16){if(x=y&65535,w&=15,d<w&&(A+=Q[r++]<<d,d+=8,d<w&&(A+=Q[r++]<<d,d+=8)),x+=A&(1<<w)-1,x>l){n.msg="invalid distance too far back",t.mode=oc;break e}if(A>>>=w,d-=w,w=s-o,x>w){if(w=x-w,w>u&&t.sane){n.msg="invalid distance too far back",t.mode=oc;break e}if(b=0,S=h,f===0){if(b+=c-w,w<E){E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}}else if(f<w){if(b+=c+f-w,w-=f,w<E){E-=w;do v[s++]=h[b++];while(--w);if(b=0,f<E){w=f,E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}}}else if(b+=f-w,w<E){E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}for(;E>2;)v[s++]=S[b++],v[s++]=S[b++],v[s++]=S[b++],E-=3;E&&(v[s++]=S[b++],E>1&&(v[s++]=S[b++]))}else{b=s-x;do v[s++]=v[b++],v[s++]=v[b++],v[s++]=v[b++],E-=3;while(E>2);E&&(v[s++]=v[b++],E>1&&(v[s++]=v[b++]))}}else if((w&64)===0){y=p[(y&65535)+(A&(1<<w)-1)];continue n}else{n.msg="invalid distance code",t.mode=oc;break e}break}}else if((w&64)===0){y=g[(y&65535)+(A&(1<<w)-1)];continue t}else if(w&32){t.mode=S6;break e}else{n.msg="invalid literal/length code",t.mode=oc;break e}break}}while(r<i&&s<a);E=d>>3,r-=E,d-=E<<3,A&=(1<<d)-1,n.next_in=r,n.next_out=s,n.avail_in=r<i?5+(i-r):5-(r-i),n.avail_out=s<a?257+(a-s):257-(s-a),t.hold=A,t.bits=d}var Ai=15,O1=852,U1=592,G1=0,Uf=1,z1=2,D6=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],k6=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],F6=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],R6=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];function to(n,e,t,r,i,s,o,a){var l=a.bits,c=0,u=0,f=0,h=0,A=0,d=0,g=0,p=0,m=0,C=0,y,w,E,x,b,S=null,Q=0,v,F=ui(Ai+1),R=ui(Ai+1),N=null,O=0,H,G,_;for(c=0;c<=Ai;c++)F[c]=0;for(u=0;u<r;u++)F[e[t+u]]++;for(A=l,h=Ai;h>=1&&F[h]===0;h--);if(A>h&&(A=h),h===0)return i[s++]=1<<24|64<<16|0,i[s++]=1<<24|64<<16|0,a.bits=1,0;for(f=1;f<h&&F[f]===0;f++);for(A<f&&(A=f),p=1,c=1;c<=Ai;c++)if(p<<=1,p-=F[c],p<0)return-1;if(p>0&&(n===G1||h!==1))return-1;for(R[1]=0,c=1;c<Ai;c++)R[c+1]=R[c]+F[c];for(u=0;u<r;u++)e[t+u]!==0&&(o[R[e[t+u]]++]=u);if(n===G1?(S=N=o,v=19):n===Uf?(S=D6,Q-=257,N=k6,O-=257,v=256):(S=F6,N=R6,v=-1),C=0,u=0,c=f,b=s,d=A,g=0,E=-1,m=1<<A,x=m-1,n===Uf&&m>O1||n===z1&&m>U1)return 1;for(;;){H=c-g,o[u]<v?(G=0,_=o[u]):o[u]>v?(G=N[O+o[u]],_=S[Q+o[u]]):(G=96,_=0),y=1<<c-g,w=1<<d,f=w;do w-=y,i[b+(C>>g)+w]=H<<24|G<<16|_|0;while(w!==0);for(y=1<<c-1;C&y;)y>>=1;if(y!==0?(C&=y-1,C+=y):C=0,u++,--F[c]===0){if(c===h)break;c=e[t+o[u]]}if(c>A&&(C&x)!==E){for(g===0&&(g=A),b+=f,d=c-g,p=1<<d;d+g<h&&(p-=F[d+g],!(p<=0));)d++,p<<=1;if(m+=1<<d,n===Uf&&m>O1||n===z1&&m>U1)return 1;E=C&x,i[E]=A<<24|d<<16|b-s|0}}return C!==0&&(i[b+C]=c-g<<24|64<<16|0),a.bits=A,0}var M6=0,H1=1,V1=2,_1=4,br=0,N6=1,T6=2,mt=-2,Y1=-3,J1=-4,P6=-5,q1=8,K1=1,j1=2,W1=3,X1=4,Z1=5,$1=6,ew=7,tw=8,nw=9,rw=10,ac=11,ln=12,Gf=13,iw=14,zf=15,sw=16,ow=17,aw=18,cw=19,cc=20,lc=21,lw=22,uw=23,fw=24,Aw=25,hw=26,Hf=27,dw=28,gw=29,pe=30,pw=31,L6=32,O6=852,U6=592;function mw(n){return(n>>>24&255)+(n>>>8&65280)+((n&65280)<<8)+((n&255)<<24)}function G6(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=ui(320),this.work=ui(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function z6(n){var e;return!n||!n.state?mt:(e=n.state,n.total_in=n.total_out=e.total=0,n.msg="",e.wrap&&(n.adler=e.wrap&1),e.mode=K1,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=fi(O6),e.distcode=e.distdyn=fi(U6),e.sane=1,e.back=-1,br)}function H6(n){var e;return!n||!n.state?mt:(e=n.state,e.wsize=0,e.whave=0,e.wnext=0,z6(n))}function V6(n,e){var t,r;return!n||!n.state||(r=n.state,e<0?(t=0,e=-e):(t=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?mt:(r.window!==null&&r.wbits!==e&&(r.window=null),r.wrap=t,r.wbits=e,H6(n))}function _6(n,e){var t,r;return n?(r=new G6,n.state=r,r.window=null,t=V6(n,e),t!==br&&(n.state=null),t):mt}var ww=!0,Vf,_f;function Y6(n){if(ww){var e;for(Vf=fi(512),_f=fi(32),e=0;e<144;)n.lens[e++]=8;for(;e<256;)n.lens[e++]=9;for(;e<280;)n.lens[e++]=7;for(;e<288;)n.lens[e++]=8;for(to(H1,n.lens,0,288,Vf,0,n.work,{bits:9}),e=0;e<32;)n.lens[e++]=5;to(V1,n.lens,0,32,_f,0,n.work,{bits:5}),ww=!1}n.lencode=Vf,n.lenbits=9,n.distcode=_f,n.distbits=5}function Cw(n,e,t,r){var i,s=n.state;return s.window===null&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=li(s.wsize)),r>=s.wsize?(Un(s.window,e,t-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(i=s.wsize-s.wnext,i>r&&(i=r),Un(s.window,e,t-r,i,s.wnext),r-=i,r?(Un(s.window,e,t-r,r,0),s.wnext=r,s.whave=s.wsize):(s.wnext+=i,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=i))),0}function J6(n,e){var t,r,i,s,o,a,l,c,u,f,h,A,d,g,p=0,m,C,y,w,E,x,b,S,Q=li(4),v,F,R=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!n||!n.state||!n.output||!n.input&&n.avail_in!==0)return mt;t=n.state,t.mode===ln&&(t.mode=Gf),o=n.next_out,i=n.output,l=n.avail_out,s=n.next_in,r=n.input,a=n.avail_in,c=t.hold,u=t.bits,f=a,h=l,S=br;e:for(;;)switch(t.mode){case K1:if(t.wrap===0){t.mode=Gf;break}for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.wrap&2&&c===35615){t.check=0,Q[0]=c&255,Q[1]=c>>>8&255,t.check=Yt(t.check,Q,2,0),c=0,u=0,t.mode=j1;break}if(t.flags=0,t.head&&(t.head.done=!1),!(t.wrap&1)||(((c&255)<<8)+(c>>8))%31){n.msg="incorrect header check",t.mode=pe;break}if((c&15)!==q1){n.msg="unknown compression method",t.mode=pe;break}if(c>>>=4,u-=4,b=(c&15)+8,t.wbits===0)t.wbits=b;else if(b>t.wbits){n.msg="invalid window size",t.mode=pe;break}t.dmax=1<<b,n.adler=t.check=1,t.mode=c&512?rw:ln,c=0,u=0;break;case j1:for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.flags=c,(t.flags&255)!==q1){n.msg="unknown compression method",t.mode=pe;break}if(t.flags&57344){n.msg="unknown header flags set",t.mode=pe;break}t.head&&(t.head.text=c>>8&1),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Yt(t.check,Q,2,0)),c=0,u=0,t.mode=W1;case W1:for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.head&&(t.head.time=c),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,Q[2]=c>>>16&255,Q[3]=c>>>24&255,t.check=Yt(t.check,Q,4,0)),c=0,u=0,t.mode=X1;case X1:for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.head&&(t.head.xflags=c&255,t.head.os=c>>8),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Yt(t.check,Q,2,0)),c=0,u=0,t.mode=Z1;case Z1:if(t.flags&1024){for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.length=c,t.head&&(t.head.extra_len=c),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Yt(t.check,Q,2,0)),c=0,u=0}else t.head&&(t.head.extra=null);t.mode=$1;case $1:if(t.flags&1024&&(A=t.length,A>a&&(A=a),A&&(t.head&&(b=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Array(t.head.extra_len)),Un(t.head.extra,r,s,A,b)),t.flags&512&&(t.check=Yt(t.check,r,A,s)),a-=A,s+=A,t.length-=A),t.length))break e;t.length=0,t.mode=ew;case ew:if(t.flags&2048){if(a===0)break e;A=0;do b=r[s+A++],t.head&&b&&t.length<65536&&(t.head.name+=String.fromCharCode(b));while(b&&A<a);if(t.flags&512&&(t.check=Yt(t.check,r,A,s)),a-=A,s+=A,b)break e}else t.head&&(t.head.name=null);t.length=0,t.mode=tw;case tw:if(t.flags&4096){if(a===0)break e;A=0;do b=r[s+A++],t.head&&b&&t.length<65536&&(t.head.comment+=String.fromCharCode(b));while(b&&A<a);if(t.flags&512&&(t.check=Yt(t.check,r,A,s)),a-=A,s+=A,b)break e}else t.head&&(t.head.comment=null);t.mode=nw;case nw:if(t.flags&512){for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c!==(t.check&65535)){n.msg="header crc mismatch",t.mode=pe;break}c=0,u=0}t.head&&(t.head.hcrc=t.flags>>9&1,t.head.done=!0),n.adler=t.check=0,t.mode=ln;break;case rw:for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}n.adler=t.check=mw(c),c=0,u=0,t.mode=ac;case ac:if(t.havedict===0)return n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,T6;n.adler=t.check=1,t.mode=ln;case ln:case Gf:if(t.last){c>>>=u&7,u-=u&7,t.mode=Hf;break}for(;u<3;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}switch(t.last=c&1,c>>>=1,u-=1,c&3){case 0:t.mode=iw;break;case 1:Y6(t),t.mode=cc;break;case 2:t.mode=ow;break;case 3:n.msg="invalid block type",t.mode=pe}c>>>=2,u-=2;break;case iw:for(c>>>=u&7,u-=u&7;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if((c&65535)!==(c>>>16^65535)){n.msg="invalid stored block lengths",t.mode=pe;break}t.length=c&65535,c=0,u=0,t.mode=zf;case zf:t.mode=sw;case sw:if(A=t.length,A){if(A>a&&(A=a),A>l&&(A=l),A===0)break e;Un(i,r,s,A,o),a-=A,s+=A,l-=A,o+=A,t.length-=A;break}t.mode=ln;break;case ow:for(;u<14;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.nlen=(c&31)+257,c>>>=5,u-=5,t.ndist=(c&31)+1,c>>>=5,u-=5,t.ncode=(c&15)+4,c>>>=4,u-=4,t.nlen>286||t.ndist>30){n.msg="too many length or distance symbols",t.mode=pe;break}t.have=0,t.mode=aw;case aw:for(;t.have<t.ncode;){for(;u<3;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.lens[R[t.have++]]=c&7,c>>>=3,u-=3}for(;t.have<19;)t.lens[R[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,v={bits:t.lenbits},S=to(M6,t.lens,0,19,t.lencode,0,t.work,v),t.lenbits=v.bits,S){n.msg="invalid code lengths set",t.mode=pe;break}t.have=0,t.mode=cw;case cw:for(;t.have<t.nlen+t.ndist;){for(;p=t.lencode[c&(1<<t.lenbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(y<16)c>>>=m,u-=m,t.lens[t.have++]=y;else{if(y===16){for(F=m+2;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c>>>=m,u-=m,t.have===0){n.msg="invalid bit length repeat",t.mode=pe;break}b=t.lens[t.have-1],A=3+(c&3),c>>>=2,u-=2}else if(y===17){for(F=m+3;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=m,u-=m,b=0,A=3+(c&7),c>>>=3,u-=3}else{for(F=m+7;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=m,u-=m,b=0,A=11+(c&127),c>>>=7,u-=7}if(t.have+A>t.nlen+t.ndist){n.msg="invalid bit length repeat",t.mode=pe;break}for(;A--;)t.lens[t.have++]=b}}if(t.mode===pe)break;if(t.lens[256]===0){n.msg="invalid code -- missing end-of-block",t.mode=pe;break}if(t.lenbits=9,v={bits:t.lenbits},S=to(H1,t.lens,0,t.nlen,t.lencode,0,t.work,v),t.lenbits=v.bits,S){n.msg="invalid literal/lengths set",t.mode=pe;break}if(t.distbits=6,t.distcode=t.distdyn,v={bits:t.distbits},S=to(V1,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,v),t.distbits=v.bits,S){n.msg="invalid distances set",t.mode=pe;break}t.mode=cc;case cc:t.mode=lc;case lc:if(a>=6&&l>=258){n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,Q6(n,h),o=n.next_out,i=n.output,l=n.avail_out,s=n.next_in,r=n.input,a=n.avail_in,c=t.hold,u=t.bits,t.mode===ln&&(t.back=-1);break}for(t.back=0;p=t.lencode[c&(1<<t.lenbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(C&&(C&240)===0){for(w=m,E=C,x=y;p=t.lencode[x+((c&(1<<w+E)-1)>>w)],m=p>>>24,C=p>>>16&255,y=p&65535,!(w+m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=w,u-=w,t.back+=w}if(c>>>=m,u-=m,t.back+=m,t.length=y,C===0){t.mode=hw;break}if(C&32){t.back=-1,t.mode=ln;break}if(C&64){n.msg="invalid literal/length code",t.mode=pe;break}t.extra=C&15,t.mode=lw;case lw:if(t.extra){for(F=t.extra;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.length+=c&(1<<t.extra)-1,c>>>=t.extra,u-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=uw;case uw:for(;p=t.distcode[c&(1<<t.distbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if((C&240)===0){for(w=m,E=C,x=y;p=t.distcode[x+((c&(1<<w+E)-1)>>w)],m=p>>>24,C=p>>>16&255,y=p&65535,!(w+m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=w,u-=w,t.back+=w}if(c>>>=m,u-=m,t.back+=m,C&64){n.msg="invalid distance code",t.mode=pe;break}t.offset=y,t.extra=C&15,t.mode=fw;case fw:if(t.extra){for(F=t.extra;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.offset+=c&(1<<t.extra)-1,c>>>=t.extra,u-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){n.msg="invalid distance too far back",t.mode=pe;break}t.mode=Aw;case Aw:if(l===0)break e;if(A=h-l,t.offset>A){if(A=t.offset-A,A>t.whave&&t.sane){n.msg="invalid distance too far back",t.mode=pe;break}A>t.wnext?(A-=t.wnext,d=t.wsize-A):d=t.wnext-A,A>t.length&&(A=t.length),g=t.window}else g=i,d=o-t.offset,A=t.length;A>l&&(A=l),l-=A,t.length-=A;do i[o++]=g[d++];while(--A);t.length===0&&(t.mode=lc);break;case hw:if(l===0)break e;i[o++]=t.length,l--,t.mode=lc;break;case Hf:if(t.wrap){for(;u<32;){if(a===0)break e;a--,c|=r[s++]<<u,u+=8}if(h-=l,n.total_out+=h,t.total+=h,h&&(n.adler=t.check=t.flags?Yt(t.check,i,h,o-h):Of(t.check,i,h,o-h)),h=l,(t.flags?c:mw(c))!==t.check){n.msg="incorrect data check",t.mode=pe;break}c=0,u=0}t.mode=dw;case dw:if(t.wrap&&t.flags){for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c!==(t.total&4294967295)){n.msg="incorrect length check",t.mode=pe;break}c=0,u=0}t.mode=gw;case gw:S=N6;break e;case pe:S=Y1;break e;case pw:return J1;case L6:default:return mt}return n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,(t.wsize||h!==n.avail_out&&t.mode<pe&&(t.mode<Hf||e!==_1))&&Cw(n,n.output,n.next_out,h-n.avail_out),f-=n.avail_in,h-=n.avail_out,n.total_in+=f,n.total_out+=h,t.total+=h,t.wrap&&h&&(n.adler=t.check=t.flags?Yt(t.check,i,h,n.next_out-h):Of(t.check,i,h,n.next_out-h)),n.data_type=t.bits+(t.last?64:0)+(t.mode===ln?128:0)+(t.mode===cc||t.mode===zf?256:0),(f===0&&h===0||e===_1)&&S===br&&(S=P6),S}function q6(n){if(!n||!n.state)return mt;var e=n.state;return e.window&&(e.window=null),n.state=null,br}function K6(n,e){var t;return!n||!n.state||(t=n.state,(t.wrap&2)===0)?mt:(t.head=e,e.done=!1,br)}function yw(n,e){var t=e.length,r,i,s;return!n||!n.state||(r=n.state,r.wrap!==0&&r.mode!==ac)?mt:r.mode===ac&&(i=1,i=Of(i,e,t,0),i!==r.check)?Y1:(s=Cw(n,e,t,t),s?(r.mode=pw,J1):(r.havedict=1,br))}const Yf={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};function j6(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var Jf=Object.prototype.toString;let Iw=class MA{constructor(e){if(!(this instanceof MA))return new MA(e);this.options=y6({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,t.windowBits===0&&(t.windowBits=-15)),t.windowBits>=0&&t.windowBits<16&&!(e&&e.windowBits)&&(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(t.windowBits&15)===0&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new j6,this.strm.avail_out=0;var r=_6(this.strm,t.windowBits);if(r!==Ir)throw new Error(Yf[r]);if(this.header=new B6,K6(this.strm,this.header),t.dictionary&&(typeof t.dictionary=="string"?t.dictionary=P1(t.dictionary):Jf.call(t.dictionary)==="[object ArrayBuffer]"&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(r=yw(this.strm,t.dictionary),r!==Ir)))throw new Error(Yf[r])}push(e,t){var r=this.strm,i=this.options.chunkSize,s=this.options.dictionary,o,a,l,c,u,f,h=!1;if(this.ended)return!1;a=t===~~t?t:t===!0?ic:R1,typeof e=="string"?r.input=b6(e):Jf.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=li(i),r.next_out=0,r.avail_out=i),o=J6(r,R1),o===m6&&s&&(typeof s=="string"?f=P1(s):Jf.call(s)==="[object ArrayBuffer]"?f=new Uint8Array(s):f=s,o=yw(this.strm,f)),o===w6&&h===!0&&(o=Ir,h=!1),o!==sc&&o!==Ir)return this.onEnd(o),this.ended=!0,!1;r.next_out&&(r.avail_out===0||o===sc||r.avail_in===0&&(a===ic||a===Tf))&&(this.options.to==="string"?(l=x6(r.output,r.next_out),c=r.next_out-l,u=E6(r.output,l),r.next_out=c,r.avail_out=i-c,c&&Un(r.output,r.output,l,c,0),this.onData(u)):this.onData(M1(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(h=!0)}while((r.avail_in>0||r.avail_out===0)&&o!==sc);return o===sc&&(a=ic),a===ic?(o=q6(this.strm),this.onEnd(o),this.ended=!0,o===Ir):(a===Tf&&(this.onEnd(Ir),r.avail_out=0),!0)}onData(e){this.chunks.push(e)}onEnd(e){e===Ir&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=Pf(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg}};function W6(n,e){var t=new Iw(e);if(t.push(n,!0),t.err)throw t.msg||Yf[t.err];return t.result}function X6(n,e){return e=e||{},e.raw=!0,W6(n,e)}function Z6(n){let e=0;for(const t of n)e+=t.length;return e}function bw(n,e){const t=new Uint8Array(e??Z6(n));let r=0;for(const i of n)t.set(i,r),r+=i.length;return t}async function $6(n){try{let e,t=0,r;const i=[];let s=0;do{const o=n.subarray(t);if(r=new Iw(void 0),{strm:e}=r,r.push(o,Tf),r.err)throw new Error(r.msg);t+=e.next_in;const a=r.result;i.push(a),s+=a.length}while(e.avail_in);return bw(i,s)}catch(e){throw/incorrect header check/.exec(`${e}`)?new Error("problem decompressing block: incorrect gzip header check"):e}}class Ew{filehandle;gzi;constructor({filehandle:e,gziFilehandle:t}){this.filehandle=e,this.gzi=new p6({filehandle:t})}async _readAndUncompressBlock(e,t){let r=t;r||(r=(await this.filehandle.stat()).size);const i=r-e,s=await this.filehandle.read(i,e);return $6(s)}async read(e,t){const r=await this.gzi.getRelevantBlocksForRead(e,t),i=[];for(let s=0;s<r.length-1;s+=1){const o=await this._readAndUncompressBlock(r[s][0],r[s+1][0]),[,a]=r[s],l=a>=t?0:t-a,c=Math.min(t+e,a+o.length)-a;l>=0&&l<o.length&&i.push(o.subarray(l,c))}return bw(i)}}function xw(n,e){return n.offset+n.lineBytes*Math.floor(e/n.lineLength)+e%n.lineLength}async function eM(n,e={}){const t=new TextDecoder("utf8");return Object.fromEntries(t.decode(await n.readFile(e)).split(/\r?\n/).map(r=>r.trim()).filter(r=>!!r).map(r=>r.split(" ")).map(r=>{if(r[0]?.startsWith(">"))throw new Error("found > in sequence name, might have supplied FASTA file for the FASTA index");return[r[0],{name:r[0],length:+r[1],start:0,end:+r[1],offset:+r[2],lineLength:+r[3],lineBytes:+r[4]}]}))}class Bw{constructor({fasta:e,fai:t,path:r,faiPath:i}){if(e)this.fasta=e;else if(r)this.fasta=new We(r);else throw new Error("Need to pass filehandle for fasta or path to localfile");if(t)this.fai=t;else if(i)this.fai=new We(i);else if(r)this.fai=new We(`${r}.fai`);else throw new Error("Need to pass filehandle for or path to localfile")}async _getIndexes(e){return this.indexes||(this.indexes=eM(this.fai,e).catch(t=>{throw this.indexes=void 0,t})),this.indexes}async getSequenceNames(e){return Object.keys(await this._getIndexes(e))}async getSequenceSizes(e){const t={},r=await this._getIndexes(e);for(const i of Object.values(r))t[i.name]=i.length;return t}async getSequenceSize(e,t){return(await this._getIndexes(t))[e]?.length}async hasReferenceSequence(e,t){return!!(await this._getIndexes(t))[e]}async getResiduesByName(e,t,r,i){const s=(await this._getIndexes(i))[e];return s?this._fetchFromIndexEntry(s,t,r,i):void 0}async getSequence(e,t,r,i){return this.getResiduesByName(e,t,r,i)}async _fetchFromIndexEntry(e,t=0,r,i){let s=r;if(t<0)throw new TypeError("regionStart cannot be less than 0");if((s===void 0||s>e.length)&&(s=e.length),t>=s)return"";const o=xw(e,t),a=xw(e,s)-o,c=new TextDecoder("utf8").decode(await this.fasta.read(a,o,i)).replace(/\s+/g,"");if(/[^\x20-\x7e]/.test(c.slice(0,1e3)))throw new Error("Non-ASCII characters detected in sequence. The file may be gzip compressed. Use BgzipIndexedFasta for bgzip files, or decompress the file.");return c}}class tM extends Bw{constructor({fasta:e,path:t,fai:r,faiPath:i,gzi:s,gziPath:o}){super({fasta:e,path:t,fai:r,faiPath:i}),e&&s?this.fasta=new Ew({filehandle:e,gziFilehandle:s}):t&&o&&(this.fasta=new Ew({filehandle:new We(t),gziFilehandle:new We(o)}))}}function vw(n){return n.split(">").filter(e=>/\S/.test(e)).map(e=>{const[t,...r]=e.split(`
|
|
658
|
-
`),[
|
|
659
|
-
`+
|
|
660
|
-
`):"",this.name="UnsubscriptionError",this.errors=t}});function kw(n,e){if(n){var t=n.indexOf(e);0<=t&&n.splice(t,1)}}var Zf=(function(){function n(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return n.prototype.unsubscribe=function(){var e,t,r,i,s;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var a=no(o),l=a.next();!l.done;l=a.next()){var c=l.value;c.remove(this)}}catch(g){e={error:g}}finally{try{l&&!l.done&&(t=a.return)&&t.call(a)}finally{if(e)throw e.error}}else o.remove(this);var u=this.initialTeardown;if(ke(u))try{u()}catch(g){s=g instanceof Xf?g.errors:[g]}var f=this._finalizers;if(f){this._finalizers=null;try{for(var h=no(f),A=h.next();!A.done;A=h.next()){var d=A.value;try{Rw(d)}catch(g){s=s??[],g instanceof Xf?s=Wf(Wf([],jf(s)),jf(g.errors)):s.push(g)}}}catch(g){r={error:g}}finally{try{A&&!A.done&&(i=h.return)&&i.call(h)}finally{if(r)throw r.error}}}if(s)throw new Xf(s)}},n.prototype.add=function(e){var t;if(e&&e!==this)if(this.closed)Rw(e);else{if(e instanceof n){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=(t=this._finalizers)!==null&&t!==void 0?t:[]).push(e)}},n.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},n.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},n.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&kw(t,e)},n.prototype.remove=function(e){var t=this._finalizers;t&&kw(t,e),e instanceof n&&e._removeParent(this)},n.EMPTY=(function(){var e=new n;return e.closed=!0,e})(),n})();Zf.EMPTY;function Fw(n){return n instanceof Zf||n&&"closed"in n&&ke(n.remove)&&ke(n.add)&&ke(n.unsubscribe)}function Rw(n){ke(n)?n():n.unsubscribe()}var lM={Promise:void 0},uM={setTimeout:function(n,e){for(var t=[],r=2;r<arguments.length;r++)t[r-2]=arguments[r];return setTimeout.apply(void 0,Wf([n,e],jf(t)))},clearTimeout:function(n){return clearTimeout(n)},delegate:void 0};function Mw(n){uM.setTimeout(function(){throw n})}function Nw(){}function fM(n){n()}var $f=(function(n){Kf(e,n);function e(t){var r=n.call(this)||this;return r.isStopped=!1,t?(r.destination=t,Fw(t)&&t.add(r)):r.destination=dM,r}return e.create=function(t,r,i){return new uc(t,r,i)},e.prototype.next=function(t){this.isStopped||this._next(t)},e.prototype.error=function(t){this.isStopped||(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,n.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e})(Zf),AM=(function(){function n(e){this.partialObserver=e}return n.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(r){fc(r)}},n.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(r){fc(r)}else fc(e)},n.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(t){fc(t)}},n})(),uc=(function(n){Kf(e,n);function e(t,r,i){var s=n.call(this)||this,o;return ke(t)||!t?o={next:t??void 0,error:r??void 0,complete:i??void 0}:o=t,s.destination=new AM(o),s}return e})($f);function fc(n){Mw(n)}function hM(n){throw n}var dM={closed:!0,next:Nw,error:hM,complete:Nw},eA=(function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"})();function Tw(n){return n}function gM(n){return n.length===0?Tw:n.length===1?n[0]:function(t){return n.reduce(function(r,i){return i(r)},t)}}var wt=(function(){function n(e){e&&(this._subscribe=e)}return n.prototype.lift=function(e){var t=new n;return t.source=this,t.operator=e,t},n.prototype.subscribe=function(e,t,r){var i=this,s=mM(e)?e:new uc(e,t,r);return fM(function(){var o=i,a=o.operator,l=o.source;s.add(a?a.call(s,l):l?i._subscribe(s):i._trySubscribe(s))}),s},n.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},n.prototype.forEach=function(e,t){var r=this;return t=Pw(t),new t(function(i,s){var o=new uc({next:function(a){try{e(a)}catch(l){s(l),o.unsubscribe()}},error:s,complete:i});r.subscribe(o)})},n.prototype._subscribe=function(e){var t;return(t=this.source)===null||t===void 0?void 0:t.subscribe(e)},n.prototype[eA]=function(){return this},n.prototype.pipe=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return gM(e)(this)},n.prototype.toPromise=function(e){var t=this;return e=Pw(e),new e(function(r,i){var s;t.subscribe(function(o){return s=o},function(o){return i(o)},function(){return r(s)})})},n.create=function(e){return new n(e)},n})();function Pw(n){var e;return(e=n??lM.Promise)!==null&&e!==void 0?e:Promise}function pM(n){return n&&ke(n.next)&&ke(n.error)&&ke(n.complete)}function mM(n){return n&&n instanceof $f||pM(n)&&Fw(n)}function wM(n){return ke(n?.lift)}function di(n){return function(e){if(wM(e))return e.lift(function(t){try{return n(t,this)}catch(r){this.error(r)}});throw new TypeError("Unable to lift unknown Observable type")}}function ro(n,e,t,r,i){return new CM(n,e,t,r,i)}var CM=(function(n){Kf(e,n);function e(t,r,i,s,o,a){var l=n.call(this,t)||this;return l.onFinalize=o,l.shouldUnsubscribe=a,l._next=r?function(c){try{r(c)}catch(u){t.error(u)}}:n.prototype._next,l._error=s?function(c){try{s(c)}catch(u){t.error(u)}finally{this.unsubscribe()}}:n.prototype._error,l._complete=i?function(){try{i()}catch(c){t.error(c)}finally{this.unsubscribe()}}:n.prototype._complete,l}return e.prototype.unsubscribe=function(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var r=this.closed;n.prototype.unsubscribe.call(this),!r&&((t=this.onFinalize)===null||t===void 0||t.call(this))}},e})($f),yM=new wt(function(n){return n.complete()});function IM(n){return n&&ke(n.schedule)}function Lw(n){return n[n.length-1]}function bM(n){return IM(Lw(n))?n.pop():void 0}function EM(n,e){return typeof Lw(n)=="number"?n.pop():e}var Ow=(function(n){return n&&typeof n.length=="number"&&typeof n!="function"});function Uw(n){return ke(n?.then)}function Gw(n){return ke(n[eA])}function zw(n){return Symbol.asyncIterator&&ke(n?.[Symbol.asyncIterator])}function Hw(n){return new TypeError("You provided "+(n!==null&&typeof n=="object"?"an invalid object":"'"+n+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function xM(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Vw=xM();function _w(n){return ke(n?.[Vw])}function Yw(n){return aM(this,arguments,function(){var t,r,i,s;return Qw(this,function(o){switch(o.label){case 0:t=n.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,hi(t.read())];case 3:return r=o.sent(),i=r.value,s=r.done,s?[4,hi(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,hi(i)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}})})}function Jw(n){return ke(n?.getReader)}function gi(n){if(n instanceof wt)return n;if(n!=null){if(Gw(n))return BM(n);if(Ow(n))return vM(n);if(Uw(n))return SM(n);if(zw(n))return qw(n);if(_w(n))return QM(n);if(Jw(n))return DM(n)}throw Hw(n)}function BM(n){return new wt(function(e){var t=n[eA]();if(ke(t.subscribe))return t.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function vM(n){return new wt(function(e){for(var t=0;t<n.length&&!e.closed;t++)e.next(n[t]);e.complete()})}function SM(n){return new wt(function(e){n.then(function(t){e.closed||(e.next(t),e.complete())},function(t){return e.error(t)}).then(null,Mw)})}function QM(n){return new wt(function(e){var t,r;try{for(var i=no(n),s=i.next();!s.done;s=i.next()){var o=s.value;if(e.next(o),e.closed)return}}catch(a){t={error:a}}finally{try{s&&!s.done&&(r=i.return)&&r.call(i)}finally{if(t)throw t.error}}e.complete()})}function qw(n){return new wt(function(e){kM(n,e).catch(function(t){return e.error(t)})})}function DM(n){return qw(Yw(n))}function kM(n,e){var t,r,i,s;return oM(this,void 0,void 0,function(){var o,a;return Qw(this,function(l){switch(l.label){case 0:l.trys.push([0,5,6,11]),t=cM(n),l.label=1;case 1:return[4,t.next()];case 2:if(r=l.sent(),!!r.done)return[3,4];if(o=r.value,e.next(o),e.closed)return[2];l.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=l.sent(),i={error:a},[3,11];case 6:return l.trys.push([6,,9,10]),r&&!r.done&&(s=t.return)?[4,s.call(t)]:[3,8];case 7:l.sent(),l.label=8;case 8:return[3,10];case 9:if(i)throw i.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}})})}function Er(n,e,t,r,i){r===void 0&&(r=0),i===void 0&&(i=!1);var s=e.schedule(function(){t(),i?n.add(this.schedule(null,r)):this.unsubscribe()},r);if(n.add(s),!i)return s}function Kw(n,e){return e===void 0&&(e=0),di(function(t,r){t.subscribe(ro(r,function(i){return Er(r,n,function(){return r.next(i)},e)},function(){return Er(r,n,function(){return r.complete()},e)},function(i){return Er(r,n,function(){return r.error(i)},e)}))})}function jw(n,e){return e===void 0&&(e=0),di(function(t,r){r.add(n.schedule(function(){return t.subscribe(r)},e))})}function FM(n,e){return gi(n).pipe(jw(e),Kw(e))}function RM(n,e){return gi(n).pipe(jw(e),Kw(e))}function MM(n,e){return new wt(function(t){var r=0;return e.schedule(function(){r===n.length?t.complete():(t.next(n[r++]),t.closed||this.schedule())})})}function NM(n,e){return new wt(function(t){var r;return Er(t,e,function(){r=n[Vw](),Er(t,e,function(){var i,s,o;try{i=r.next(),s=i.value,o=i.done}catch(a){t.error(a);return}o?t.complete():t.next(s)},0,!0)}),function(){return ke(r?.return)&&r.return()}})}function Ww(n,e){if(!n)throw new Error("Iterable cannot be null");return new wt(function(t){Er(t,e,function(){var r=n[Symbol.asyncIterator]();Er(t,e,function(){r.next().then(function(i){i.done?t.complete():t.next(i.value)})},0,!0)})})}function TM(n,e){return Ww(Yw(n),e)}function PM(n,e){if(n!=null){if(Gw(n))return FM(n,e);if(Ow(n))return MM(n,e);if(Uw(n))return RM(n,e);if(zw(n))return Ww(n,e);if(_w(n))return NM(n,e);if(Jw(n))return TM(n,e)}throw Hw(n)}function LM(n,e){return e?PM(n,e):gi(n)}var OM=Dw(function(n){return function(){n(this),this.name="EmptyError",this.message="no elements in sequence"}});function Xw(n,e){return new Promise(function(t,r){var i=new uc({next:function(s){t(s),i.unsubscribe()},error:r,complete:function(){r(new OM)}});n.subscribe(i)})}function Zw(n,e){return di(function(t,r){var i=0;t.subscribe(ro(r,function(s){r.next(n.call(e,s,i++))}))})}function UM(n,e,t,r,i,s,o,a){var l=[],c=0,u=0,f=!1,h=function(){f&&!l.length&&!c&&e.complete()},A=function(g){return c<r?d(g):l.push(g)},d=function(g){c++;var p=!1;gi(t(g,u++)).subscribe(ro(e,function(m){e.next(m)},function(){p=!0},void 0,function(){if(p)try{c--;for(var m=function(){var C=l.shift();o||d(C)};l.length&&c<r;)m();h()}catch(C){e.error(C)}}))};return n.subscribe(ro(e,A,function(){f=!0,h()})),function(){}}function $w(n,e,t){return t===void 0&&(t=1/0),ke(e)?$w(function(r,i){return Zw(function(s,o){return e(r,s,i,o)})(gi(n(r,i)))},t):(typeof e=="number"&&(t=e),di(function(r,i){return UM(r,i,n,t)}))}function GM(n){return n===void 0&&(n=1/0),$w(Tw,n)}function zM(){for(var n=[],e=0;e<arguments.length;e++)n[e]=arguments[e];var t=bM(n),r=EM(n,1/0),i=n;return i.length?i.length===1?gi(i[0]):GM(r)(LM(i,t)):yM}function HM(n,e,t,r,i){return function(s,o){var a=t,l=e,c=0;s.subscribe(ro(o,function(u){var f=c++;l=a?n(l,u,f):(a=!0,u)},(function(){a&&o.next(l),o.complete()})))}}function eC(n,e){return di(HM(n,e,arguments.length>=2,!1,!0))}var VM=function(n,e){return n.push(e),n};function _M(){return di(function(n,e){eC(VM,[])(n).subscribe(e)})}class YM{}class JM{constructor(){this.signals=new Set,this.abortController=new AbortController}addSignal(e=new YM){if(this.signal.aborted)throw new Error("cannot add a signal, already aborted!");this.signals.add(e),e.aborted?this.handleAborted(e):typeof e.addEventListener=="function"&&e.addEventListener("abort",()=>{this.handleAborted(e)})}handleAborted(e){this.signals.delete(e),this.signals.size===0&&this.abortController.abort()}get signal(){return this.abortController.signal}abort(){this.abortController.abort()}}class qM{constructor(){this.callbacks=new Set}addCallback(e=()=>{}){this.callbacks.add(e),this.currentMessage&&e(this.currentMessage)}callback(e){this.currentMessage=e;for(const t of this.callbacks)t(e)}}class pi{constructor({fill:e,cache:t}){if(typeof e!="function")throw new TypeError("must pass a fill function");if(typeof t!="object")throw new TypeError("must pass a cache object");if(typeof t.get!="function"||typeof t.set!="function"||typeof t.delete!="function")throw new TypeError("cache must implement get(key), set(key, val), and and delete(key)");this.cache=t,this.fillCallback=e}static isAbortException(e){return e.name==="AbortError"||e.code==="ERR_ABORTED"||e.message==="AbortError: aborted"||e.message==="Error: aborted"}evict(e,t){this.cache.get(e)===t&&this.cache.delete(e)}fill(e,t,r,i){const s=new JM,o=new qM;o.addCallback(i);const a={aborter:s,promise:this.fillCallback(t,s.signal,l=>{o.callback(l)}),settled:!1,statusReporter:o,get aborted(){return this.aborter.signal.aborted}};a.aborter.addSignal(r),a.aborter.signal.addEventListener("abort",()=>{a.settled||this.evict(e,a)}),a.promise.then(()=>{a.settled=!0},()=>{a.settled=!0,this.evict(e,a)}).catch(l=>{throw console.error(l),l}),this.cache.set(e,a)}static checkSinglePromise(e,t){function r(){if(t?.aborted)throw Object.assign(new Error("aborted"),{code:"ERR_ABORTED"})}return e.then(i=>(r(),i),i=>{throw r(),i})}has(e){return this.cache.has(e)}get(e,t,r,i){if(!r&&t instanceof AbortSignal)throw new TypeError("second get argument appears to be an AbortSignal, perhaps you meant to pass `null` for the fill data?");const s=this.cache.get(e);return s?s.aborted&&!s.settled?(this.evict(e,s),this.get(e,t,r,i)):s.settled?s.promise:(s.aborter.addSignal(r),s.statusReporter.addCallback(i),pi.checkSinglePromise(s.promise,r)):(this.fill(e,t,r,i),pi.checkSinglePromise(this.cache.get(e).promise,r))}delete(e){const t=this.cache.get(e);t&&(t.settled||t.aborter.abort(),this.cache.delete(e))}clear(){const e=this.cache.keys();let t=0;for(let r=e.next();!r.done;r=e.next())this.delete(r.value),t+=1;return t}}function KM(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var tA,tC;function jM(){if(tC)return tA;tC=1;class n{constructor(t={}){if(!(t.maxSize&&t.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");this.maxSize=t.maxSize,this.cache=new Map,this.oldCache=new Map,this._size=0}_set(t,r){this.cache.set(t,r),this._size++,this._size>=this.maxSize&&(this._size=0,this.oldCache=this.cache,this.cache=new Map)}get(t){if(this.cache.has(t))return this.cache.get(t);if(this.oldCache.has(t)){const r=this.oldCache.get(t);return this.oldCache.delete(t),this._set(t,r),r}}set(t,r){return this.cache.has(t)?this.cache.set(t,r):this._set(t,r),this}has(t){return this.cache.has(t)||this.oldCache.has(t)}peek(t){if(this.cache.has(t))return this.cache.get(t);if(this.oldCache.has(t))return this.oldCache.get(t)}delete(t){const r=this.cache.delete(t);return r&&this._size--,this.oldCache.delete(t)||r}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}*keys(){for(const[t]of this)yield t}*values(){for(const[,t]of this)yield t}*[Symbol.iterator](){for(const t of this.cache)yield t;for(const t of this.oldCache){const[r]=t;this.cache.has(r)||(yield t)}}get size(){let t=0;for(const r of this.oldCache.keys())this.cache.has(r)||t++;return this._size+t}}return tA=n,tA}var WM=jM();const nC=KM(WM);class mi{ranges;constructor(e){this.ranges=e}get min(){return this.ranges[0].min}get max(){return this.ranges.at(-1).max}contains(e){for(const t of this.ranges)if(t.min<=e&&t.max>=e)return!0;return!1}isContiguous(){return this.ranges.length>1}getRanges(){return this.ranges.map(e=>new mi([{min:e.min,max:e.max}]))}toString(){return this.ranges.map(e=>`[${e.min}-${e.max}]`).join(",")}union(e){const t=[...this.getRanges(),...e.getRanges()].sort((s,o)=>s.min<o.min?-1:s.min>o.min?1:s.max<o.max?-1:o.max>s.max?1:0),r=[];let i=t[0];for(const s of t)s.min>i.max+1?(r.push(i),i=s):s.max>i.max&&(i=new mi([{min:i.min,max:s.max}]));return r.push(i),r.length===1?r[0]:new mi(r)}}function XM(n){return X6(n.subarray(2),void 0)}class ZM extends Error{code;constructor(e){super(e),this.code="ERR_ABORTED"}}function $M(n){n.sort((i,s)=>i.offset-s.offset);const e=[];let t,r;for(const i of n)t&&r&&i.offset-r<=2e3?(t.length=t.length+i.length-r+i.offset,t.blocks.push(i)):e.push(t={blocks:[i],length:i.length,offset:i.offset}),r=t.offset+t.length;return e}function Ac(n){if(n&&n.aborted)if(typeof DOMException>"u"){const e=new ZM("aborted");throw e.code="ERR_ABORTED",e}else throw new DOMException("aborted","AbortError")}const e5=typeof TextDecoder<"u"?new TextDecoder("utf8"):void 0;function nA(n,e,t,r){return n<r&&e>=t}class rC{bbi;refsByName;cirTreeOffset;isCompressed;blockType;cirTreePromise;featureCache=new pi({cache:new nC({maxSize:1e3}),fill:async({length:e,offset:t},r)=>this.bbi.read(e,t,{signal:r})});constructor(e,t,r,i,s){if(this.bbi=e,this.refsByName=t,this.cirTreeOffset=r,this.isCompressed=i,this.blockType=s,!(r>=0))throw new Error("invalid cirTreeOffset!")}async readWigData(e,t,r,i,s){try{const o=this.refsByName[e];o===void 0&&i.complete();const a={chrId:o,start:t,end:r};this.cirTreePromise||(this.cirTreePromise=this.bbi.read(48,this.cirTreeOffset,s));const l=await this.cirTreePromise,u=new DataView(l.buffer).getUint32(4,!0);let f=[],h=0;const A=(m,C,y)=>{try{const E=m.subarray(C),x=new DataView(E.buffer,E.byteOffset,E.length);let b=0;const S=x.getUint8(b);b+=2;const Q=x.getUint16(b,!0);if(b+=2,S===1){const v=[];for(let F=0;F<Q;F++){const R=x.getUint32(b,!0);b+=4;const N=x.getUint32(b,!0);b+=4;const O=x.getUint32(b,!0);b+=4;const H=x.getUint32(b,!0);b+=4;const G=Number(x.getBigUint64(b,!0));b+=8;const _=Number(x.getBigUint64(b,!0));b+=8,v.push({startChrom:R,startBase:N,endBase:H,endChrom:O,blockOffset:G,blockSize:_,offset:b})}f=f.concat(v.filter(F=>d(F)).map(F=>({offset:F.blockOffset,length:F.blockSize})))}else if(S===0){const v=[];for(let R=0;R<Q;R++){const N=x.getUint32(b,!0);b+=4;const O=x.getUint32(b,!0);b+=4;const H=x.getUint32(b,!0);b+=4;const G=x.getUint32(b,!0);b+=4;const _=Number(x.getBigUint64(b,!0));b+=8,v.push({startChrom:N,startBase:O,endChrom:H,endBase:G,blockOffset:_,offset:b})}const F=v.filter(R=>d(R)).map(R=>R.blockOffset);F.length>0&&p(F,y+1)}}catch(w){i.error(w)}},d=m=>{const{startChrom:C,startBase:y,endChrom:w,endBase:E}=m;return(C<o||C===o&&y<=r)&&(w>o||w===o&&E>=t)},g=async(m,C,y)=>{try{const w=C.max-C.min,E=C.min,x=await this.featureCache.get(`${w}_${E}`,{length:w,offset:E},s?.signal);for(const b of m)C.contains(b)&&(A(x,b-E,y),h-=1,h===0&&this.readFeatures(i,f,{...s,request:a}).catch(S=>{i.error(S)}))}catch(w){i.error(w)}},p=(m,C)=>{try{h+=m.length;const y=4+u*32;let w=new mi([{min:m[0],max:m[0]+y}]);for(let E=1;E<m.length;E+=1){const x=new mi([{min:m[E],max:m[E]+y}]);w=w.union(x)}w.getRanges().map(E=>g(m,E,C))}catch(y){i.error(y)}};p([this.cirTreeOffset+48],1);return}catch(o){i.error(o)}}parseSummaryBlock(e,t,r){const i=[];let s=t;const o=new DataView(e.buffer,e.byteOffset,e.length);for(;s<e.byteLength;){const a=o.getUint32(s,!0);s+=4;const l=o.getUint32(s,!0);s+=4;const c=o.getUint32(s,!0);s+=4;const u=o.getUint32(s,!0);s+=4;const f=o.getFloat32(s,!0);s+=4;const h=o.getFloat32(s,!0);s+=4;const A=o.getFloat32(s,!0);s+=4,s+=4,(!r||a===r.chrId&&nA(l,c,r.start,r.end))&&i.push({start:l,end:c,maxScore:h,minScore:f,summary:!0,score:A/(u||1)})}return i}parseBigBedBlock(e,t,r,i){const s=[];let o=t;const a=e,l=new DataView(a.buffer,a.byteOffset,a.length);for(;o<e.byteLength;){const c=o,u=l.getUint32(o,!0);o+=4;const f=l.getInt32(o,!0);o+=4;const h=l.getInt32(o,!0);o+=4;let A=o;for(;A<e.length&&e[A]!==0;A++);const d=e.subarray(o,A),g=e5?.decode(d)??d.toString();o=A+1,s.push({chromId:u,start:f,end:h,rest:g,uniqueId:`bb-${r+c}`})}return i?s.filter(c=>nA(c.start,c.end,i.start,i.end)):s}parseBigWigBlock(e,t,r){const i=e.subarray(t),s=new DataView(i.buffer,i.byteOffset,i.length);let o=0;o+=4;const a=s.getInt32(o,!0);o+=8;const l=s.getUint32(o,!0);o+=4;const c=s.getUint32(o,!0);o+=4;const u=s.getUint8(o);o+=2;const f=s.getUint16(o,!0);o+=2;const h=new Array(f);switch(u){case 1:{for(let A=0;A<f;A++){const d=s.getInt32(o,!0);o+=4;const g=s.getInt32(o,!0);o+=4;const p=s.getFloat32(o,!0);o+=4,h[A]={start:d,end:g,score:p}}break}case 2:{for(let A=0;A<f;A++){const d=s.getInt32(o,!0);o+=4;const g=s.getFloat32(o,!0);o+=4,h[A]={score:g,start:d,end:d+c}}break}case 3:{for(let A=0;A<f;A++){const d=s.getFloat32(o,!0);o+=4;const g=a+A*l;h[A]={score:d,start:g,end:g+c}}break}}return r?h.filter(A=>nA(A.start,A.end,r.start,r.end)):h}async readFeatures(e,t,r={}){try{const{blockType:i,isCompressed:s}=this,{signal:o,request:a}=r,l=$M(t);Ac(o),await Promise.all(l.map(async c=>{Ac(o);const{length:u,offset:f}=c,h=await this.featureCache.get(`${u}_${f}`,c,o);for(const A of c.blocks){Ac(o);let d=h.subarray(A.offset-c.offset);switch(s&&(d=XM(d)),Ac(o),i){case"summary":{e.next(this.parseSummaryBlock(d,0,a));break}case"bigwig":{e.next(this.parseBigWigBlock(d,0,a));break}case"bigbed":{e.next(this.parseBigBedBlock(d,0,A.offset*256,a));break}default:console.warn(`Don't know what to do with ${i}`)}}})),e.complete()}catch(i){e.error(i)}}}const t5=-2003829722,iC=-2021002517;function wi(n){return new DataView(n.buffer,n.byteOffset,n.length)}class sC{bbi;headerP;renameRefSeqs;getHeader(e){return this.headerP||(this.headerP=this._getHeader(e).catch(t=>{throw this.headerP=void 0,t})),this.headerP}constructor(e){const{filehandle:t,renameRefSeqs:r=o=>o,path:i,url:s}=e;if(this.renameRefSeqs=r,t)this.bbi=t;else if(s)this.bbi=new _t(s);else if(i)this.bbi=new We(i);else throw new Error("no file given")}async _getHeader(e){const t=await this._getMainHeader(e),r=await this._readChromTree(t,e);return{...t,...r}}async _getMainHeader(e,t=2e3){const r=await this.bbi.read(t,0,e),i=wi(r),s=i.getInt32(0,!0);if(s!==t5&&s!==iC)throw new Error("not a BigWig/BigBed file");let o=0;const a=i.getInt32(o,!0);o+=4;const l=i.getUint16(o,!0);o+=2;const c=i.getUint16(o,!0);o+=2;const u=Number(i.getBigUint64(o,!0));o+=8;const f=Number(i.getBigUint64(o,!0));o+=8;const h=Number(i.getBigUint64(o,!0));o+=8;const A=i.getUint16(o,!0);o+=2;const d=i.getUint16(o,!0);o+=2;const g=Number(i.getBigUint64(o,!0));o+=8;const p=Number(i.getBigUint64(o,!0));o+=8;const m=i.getUint32(o,!0);o+=4;const C=Number(i.getBigUint64(o,!0));o+=8;const y=[];for(let b=0;b<c;b++){const S=i.getUint32(o,!0);o+=4;const Q=i.getUint32(o,!0);o+=4;const v=Number(i.getBigUint64(o,!0));o+=8;const F=Number(i.getBigUint64(o,!0));o+=8,y.push({reductionLevel:S,reserved:Q,dataOffset:v,indexOffset:F})}const w=a===iC?"bigbed":"bigwig";if(g>t||p>t-40)return this._getMainHeader(e,t*2);let E;if(p){const b=r.subarray(p);let S=0;const Q=wi(b),v=Number(Q.getBigUint64(S,!0));S+=8;const F=Q.getFloat64(S,!0);S+=8;const R=Q.getFloat64(S,!0);S+=8;const N=Q.getFloat64(S,!0);S+=8;const O=Q.getFloat64(S,!0);S+=8,E={scoreMin:F,scoreMax:R,scoreSum:N,scoreSumSquares:O,basesCovered:v}}else throw new Error("no stats");const x=new TextDecoder("utf8");return{zoomLevels:y,magic:a,extHeaderOffset:C,numZoomLevels:c,fieldCount:A,totalSummary:E,definedFieldCount:d,uncompressBufSize:m,asOffset:g,chromTreeOffset:u,totalSummaryOffset:p,unzoomedDataOffset:f,unzoomedIndexOffset:h,fileType:w,version:l,autoSql:g?x.decode(r.subarray(g,r.indexOf(0,g))):""}}async _readChromTree(e,t){const r=[],i={},s=e.chromTreeOffset,o=wi(await this.bbi.read(32,s,t));let a=0;a+=4,a+=4;const l=o.getUint32(a,!0);a+=4;const c=o.getUint32(a,!0);a+=4,a+=8;const u=new TextDecoder("utf8"),f=async h=>{const A=await this.bbi.read(4,h),d=wi(A);let g=0;const p=d.getUint8(g);g+=1,g+=1;const m=d.getUint16(g,!0);if(g+=2,p){const C=await this.bbi.read(m*(l+c),h+g),y=wi(C);g=0;for(let w=0;w<m;w++){const E=u.decode(C.subarray(g,g+l)).replaceAll("\0","");g+=l;const x=y.getUint32(g,!0);g+=4;const b=y.getUint32(g,!0);g+=4,i[this.renameRefSeqs(E)]=x,r[x]={name:E,id:x,length:b}}}else{const C=[],y=wi(await this.bbi.read(m*(l+8),h+g));g=0;for(let w=0;w<m;w++){g+=l;const E=Number(y.getBigUint64(g,!0));g+=8,C.push(f(E))}await Promise.all(C)}};return await f(s+32),{refsByName:i,refsByNumber:r}}async getUnzoomedView(e){const{unzoomedIndexOffset:t,refsByName:r,uncompressBufSize:i,fileType:s}=await this.getHeader(e);return new rC(this.bbi,r,t,i>0,s)}async getFeatureStream(e,t,r,i){await this.getHeader(i);const s=this.renameRefSeqs(e);let o;const{basesPerSpan:a,scale:l}=i||{};return a?o=await this.getView(1/a,i):l?o=await this.getView(l,i):o=await this.getView(1,i),new wt(c=>{o.readWigData(s,t,r,c,i).catch(u=>{c.error(u)})})}async getFeatures(e,t,r,i){const s=await this.getFeatureStream(e,t,r,i);return(await Xw(s.pipe(_M()))).flat()}}class n5 extends sC{async getView(e,t){const{zoomLevels:r,refsByName:i,uncompressBufSize:s}=await this.getHeader(t),o=1/e,a=r.length-1;for(let l=a;l>=0;l-=1){const c=r[l];if(c&&c.reductionLevel<=2*o)return new rC(this.bbi,i,c.indexOffset,s>0,"summary")}return this.getUnzoomedView(t)}}function r5(n){return n.filter(e=>!!e)}class i5 extends sC{readIndicesCache=new pi({cache:new nC({maxSize:1}),fill:(e,t)=>this._readIndices({...e,signal:t})});readIndices(e={}){const{signal:t,...r}=e;return this.readIndicesCache.get(JSON.stringify(r),e,t)}async getView(e,t){return this.getUnzoomedView(t)}async _readIndices(e){const{extHeaderOffset:t}=await this.getHeader(e),r=await this.bbi.read(64,t),i=new DataView(r.buffer,r.byteOffset,r.length);let s=0;s+=2;const o=i.getUint16(s,!0);s+=2;const a=Number(i.getBigUint64(s,!0));if(s+=8,o===0)return[];const l=20,c=l*o,u=await this.bbi.read(c,a),f=[];for(let h=0;h<o;h+=1){const A=u.subarray(h*l),d=new DataView(A.buffer,A.byteOffset,A.length);let g=0;const p=d.getInt16(g,!0);g+=2;const m=d.getInt16(g,!0);g+=2;const C=Number(d.getBigUint64(g,!0));g+=12;const y=d.getInt16(g,!0);f.push({type:p,fieldcount:m,offset:C,field:y})}return f}async searchExtraIndexBlocks(e,t={}){const r=await this.readIndices(t);if(r.length===0)return[];const i=new TextDecoder("utf8"),s=r.map(async o=>{const{offset:a,field:l}=o,c=await this.bbi.read(32,a,t),u=new DataView(c.buffer,c.byteOffset,c.length);let f=0;f+=4;const h=u.getInt32(f,!0);f+=4;const A=u.getInt32(f,!0);f+=4;const d=u.getInt32(f,!0);f+=4,f+=8;const g=async p=>{const m=p,C=4+h*(A+d),w=await this.bbi.read(C,m,t),E=new DataView(w.buffer,w.byteOffset,w.length);let x=0;const b=E.getInt8(x);x+=2;const S=E.getInt16(x,!0);x+=2;const Q=[];if(b===0){const v=[];for(let R=0;R<S;R++){const N=i.decode(w.subarray(x,x+A)).replaceAll("\0","");x+=A;const O=Number(E.getBigUint64(x,!0));x+=8,v.push({key:N,offset:O})}let F=0;for(const{key:R,offset:N}of v){if(e.localeCompare(R)<0&&F)return g(F);F=N}return g(F)}else if(b===1){for(let v=0;v<S;v++){const F=i.decode(w.subarray(x,x+A)).replaceAll("\0","");x+=A;const R=Number(E.getBigUint64(x,!0));x+=8;const N=E.getUint32(x,!0);x+=4;const O=E.getUint32(x,!0);x+=4,Q.push({key:F,offset:R,length:N,reserved:O})}for(const v of Q)if(v.key===e)return{...v,field:l};return}};return g(a+32)});return r5(await Promise.all(s))}async searchExtraIndex(e,t={}){const r=await this.searchExtraIndexBlocks(e,t);if(r.length===0)return[];const i=await this.getUnzoomedView(t),s=r.map(a=>new wt(l=>{i.readFeatures(l,[a],t).catch(c=>{l.error(c)})}).pipe(eC((l,c)=>l.concat(c)),Zw(l=>{for(const c of l)c.field=a.field;return l})));return(await Xw(zM(...s))).filter(a=>a.rest?.split(" ")[(a.field||0)-3]===e)}}const oC=Object.freeze(Object.defineProperty({__proto__:null,BigBed:i5,BigWig:n5},Symbol.toStringTag,{value:"Module"}));function s5(n,e){function t(){this.constructor=n}t.prototype=e.prototype,n.prototype=new t}function Ci(n,e,t,r){this.message=n,this.expected=e,this.found=t,this.location=r,this.name="SyntaxError",typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,Ci)}s5(Ci,Error),Ci.buildMessage=function(n,e){var t={literal:function(c){return'"'+i(c.text)+'"'},class:function(c){var u="",f;for(f=0;f<c.parts.length;f++)u+=c.parts[f]instanceof Array?s(c.parts[f][0])+"-"+s(c.parts[f][1]):s(c.parts[f]);return"["+(c.inverted?"^":"")+u+"]"},any:function(c){return"any character"},end:function(c){return"end of input"},other:function(c){return c.description}};function r(c){return c.charCodeAt(0).toString(16).toUpperCase()}function i(c){return c.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(u){return"\\x0"+r(u)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(u){return"\\x"+r(u)})}function s(c){return c.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replace(/\^/g,"\\^").replace(/-/g,"\\-").replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(u){return"\\x0"+r(u)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(u){return"\\x"+r(u)})}function o(c){return t[c.type](c)}function a(c){var u=new Array(c.length),f,h;for(f=0;f<c.length;f++)u[f]=o(c[f]);if(u.sort(),u.length>0){for(f=1,h=1;f<u.length;f++)u[f-1]!==u[f]&&(u[h]=u[f],h++);u.length=h}switch(u.length){case 1:return u[0];case 2:return u[0]+" or "+u[1];default:return u.slice(0,-1).join(", ")+", or "+u[u.length-1]}}function l(c){return c?'"'+i(c)+'"':"end of input"}return"Expected "+a(n)+" but "+l(e)+" found."};function o5(n,e){e=e!==void 0?e:{};var t={},r={declaration:qy},i=qy,s="(",o=ae("(",!1),a=")",l=ae(")",!1),c=function(I,D,T,L){return{type:I,name:D,comment:T,fields:L}},u="simple",f=ae("simple",!1),h="object",A=ae("object",!1),d="table",g=ae("table",!1),p="auto",m=ae("auto",!1),C="primary",y=ae("primary",!1),w="index",E=ae("index",!1),x="unique",b=ae("unique",!1),S=function(I,D){return D},Q=function(I,D){return I.name&&D.unshift(I),D},v="#",F=ae("#",!1),R=";",N=ae(";",!1),O=function(I,D,T){return{type:I,name:D,comment:T}},H="[",G=ae("[",!1),_="]",te=ae("]",!1),oe=function(I,D,T,L){return{type:I,size:D,name:T,comment:L}},ne=function(I,D,T,L){return{type:I,vals:D,name:T,comment:L}},Ge=",",qt=ae(",",!1),ho=function(I,D){return D.unshift(I),D},Ri="int",An=ae("int",!1),Dr="uint",go=ae("uint",!1),Mi="short",U=ae("short",!1),K="ushort",W=ae("ushort",!1),M="byte",Xe=ae("byte",!1),se="ubyte",nt=ae("ubyte",!1),Ze="float",hn=ae("float",!1),po="char",u9=ae("char",!1),Dy="string",f9=ae("string",!1),ky="lstring",A9=ae("lstring",!1),Fy="enum",h9=ae("enum",!1),Ry="double",d9=ae("double",!1),My="bigint",g9=ae("bigint",!1),Ny="set",p9=ae("set",!1),m9=function(I,D){return I+" "+D},w9=/^[a-zA-Z_]/,C9=mo([["a","z"],["A","Z"],"_"],!1,!1),Ty=/^[a-zA-Z0-9_]/,Py=mo([["a","z"],["A","Z"],["0","9"],"_"],!1,!1),y9=function(I){return Vy()},Ly=/^[^\n\r]/,Oy=mo([`
|
|
661
|
-
`,"\r"],!0,!1),
|
|
662
|
-
`,"\r"],!1,!1),B=0,rt=0,
|
|
657
|
+
`:"";return ce`${d}${h}`}class no extends e1{#e=new Map;constructor(e,n,i,r,s,o){super(e,n,i,r,s,o),this.spec=e}async initializeChildren(){}getNextAutoName(e){const n=this.#e.get(e)??0;return this.#e.set(e,n+1),e+n}*[Symbol.iterator](){}visit(e){let n;try{n=e(this)}catch(i){throw i.view=this,i}if(n===Ar)return n;if(n!==On){e.beforeChildren&&e.beforeChildren(this);for(const i of this){const r=i.visit(e);if(r===Ar)return r}e.afterChildren&&e.afterChildren(this),e.postOrder&&e.postOrder(this)}}findDescendantByPath(e){let n=this;for(let i=0;i<e.length;i++){if(!(n instanceof no))return;const r=n.#t(e[i]);if(!r)return;if(i===e.length-1)return r;n=r}}#t(e){for(const n of this)if(n.name===e)return n}findDescendantByName(e){let n;return this.visit(i=>{if(i.name==e)return n=i,Ar}),n}getDefaultResolution(e,n){return"shared"}}function k6(t){IF(t),bF(t)}function P1(t){t.getDescendants().forEach(e=>e.configureViewOpacity())}class L1{constructor(e,n){this.container=e,this.options=n}async addChildSpec(e,n){const{specs:i,insertAt:r}=this.options.getChildSpecs(),s=n??i.length,o=this.options.defaultName?.(s,e)??this.container.getNextAutoName("child"),a=await this.container.context.createOrImportView(e,this.container,this.container,o);r(s,e);const l=this.options.insertView(a,s);this.options.prepareView&&await this.options.prepareView(a,s,l),P1(a);const c=h=>h.isConfiguredVisible(),{dataSources:f,graphicsPromises:u}=_u(a,this.container.context.dataFlow,c);return await Gu(a,f),await Nu(u),this.options.requestLayout!==!1&&(this.container.invalidateSizeCache(),this.container.context.requestLayoutReflow()),a}async removeChildAt(e){const{removeAt:n}=this.options.getChildSpecs();this.options.removeView(e),n(e),this.options.afterRemove&&await this.options.afterRemove(e),this.options.requestLayout!==!1&&(this.container.invalidateSizeCache(),this.container.context.requestLayoutReflow())}}const O1=.5;function Yu(t){return"multiscale"in t&&Ce(t.multiscale)}function F6(t){if(!t.multiscale.length)throw new Error('"multiscale" must contain at least one child view.');const e=R6(t.stops,t.multiscale.length),n=t.multiscale.map((r,s)=>t.multiscale.length===1?r:{opacity:N6(s,t.multiscale.length,e),layer:[r]}),i={...t};return delete i.multiscale,delete i.stops,{...i,layer:n}}function R6(t,e){let n="unitsPerPixel",i,r="auto",s=O1;if(Ce(t))i=U1(t,e,"stops");else if(Ge(t))n=t.metric??"unitsPerPixel",i=U1(t.values,e,"stops.values"),r=t.channel??"auto",s=t.fade??O1;else throw new Error('"stops" must be an array or an object with "values".');if(n!=="unitsPerPixel")throw new Error('Only "unitsPerPixel" is supported for "stops.metric" in multiscale.');if(!["x","y","auto"].includes(r))throw new Error('"stops.channel" must be one of "x", "y", or "auto".');if(!Number.isFinite(s)||s<0||s>.5)throw new Error('"stops.fade" must be a finite number in range [0, 0.5].');if(i.forEach((o,a)=>{if(!Ee(o)&&(!Number.isFinite(o)||o<=0))throw new Error("Invalid stop value at index "+a+". Stop values must be positive finite numbers.")}),!i.some(Ee)){const o=i;for(let a=1;a<o.length;a++)if(o[a-1]<=o[a])throw new Error('"stops.values" must be strictly decreasing for "unitsPerPixel".');for(let a=0;a<o.length-1;a++){const l=o[a]*(1-s),c=o[a+1]*(1+s);if(l<=c)throw new Error("Adjacent transitions overlap. Reduce fade or increase stop spacing.")}}return{metric:n,values:i,channel:r,fade:s}}function U1(t,e,n){if(!Ce(t))throw new Error('"'+n+'" must be an array of numbers or ExprRefs.');const i=e-1;if(t.length!==i)throw new Error("Invalid stop count for multiscale. Expected "+i+", got "+t.length+".");for(const r of t)if(!Ee(r)&&!Number.isFinite(r))throw new Error('"'+n+'" must contain only numbers or ExprRefs.');return t}function N6(t,e,n){let i,r;const s=n.values.map(o=>({hi:_1(o,1+n.fade),lo:_1(o,1-n.fade)}));if(t===0)i=[s[0].hi,s[0].lo];else if(t===e-1){const o=s.at(-1);i=[o.hi,o.lo]}else{const o=s[t-1],a=s[t];i=[o.hi,o.lo,a.hi,a.lo]}return t===0?r=[1,0]:t===e-1?r=[0,1]:r=[0,1,1,0],{channel:n.channel,unitsPerPixel:i,values:r}}function _1(t,e){return Ee(t)?{expr:"("+t.expr+") * "+e}:t*e}function Vu(t){return"mark"in t&&(le(t.mark)||Ge(t.mark))}function Ju(t){return"layer"in t&&Ge(t.layer)}function G1(t){return"import"in t}function io(t){return"vconcat"in t&&Ce(t.vconcat)}function z1(t){return"hconcat"in t&&Ce(t.hconcat)}function lc(t){return"concat"in t&&Ce(t.concat)}class Ei extends no{#e=[];constructor(e,n,i,r,s,o){super(e,n,i,r,s,{layersChildren:!0,...o}),this.spec=e,this.needsAxes={x:!0,y:!0}}async initializeChildren(){this.#e=await Promise.all(this.spec.layer.map(e=>this.context.createOrImportView(e,this,this,this.getNextAutoName("layer"),n=>{if(!Ju(n)&&!Vu(n)&&!Yu(n))throw new He("LayerView accepts only unit, layer, or multiscale specs as children!",this)})))}async addChildSpec(e,n){return this.#t().addChildSpec(e,n)}async removeChildAt(e){await this.#t().removeChildAt(e)}#t(){return new L1(this,{getChildSpecs:()=>({specs:this.spec.layer,insertAt:(e,n)=>{this.spec.layer.splice(e,0,n)},removeAt:e=>{this.spec.layer.splice(e,1)}}),insertView:(e,n)=>(e.layoutParent??=this,this.#e.splice(n,0,e),e),removeView:e=>{const n=this.#e[e];if(!n)throw new Error("Child index out of range!");n.disposeSubtree(),this.#e.splice(e,1)},defaultName:()=>this.getNextAutoName("layer")})}get children(){return this.#e.slice()}*[Symbol.iterator](){for(const e of this.#e)yield e}render(e,n,i={}){if(super.render(e,n,i),!!this.isConfiguredVisible()){e.pushView(this,n);for(const r of this.#e)r.render(e,n,i);e.popView(this)}}propagateInteractionEvent(e){this.handleInteractionEvent(void 0,e,!0);for(let n=this.#e.length-1;n>=0;n--)if(this.#e[n].propagateInteractionEvent(e),e.stopped)return;this.handleInteractionEvent(void 0,e,!1)}}class H1{constructor(e,n){this.n=e,this.maxCols=n??1/0}get nRows(){return this.maxCols==1/0?1:Math.ceil(this.n/this.maxCols)}get nCols(){return Math.min(this.n,this.maxCols)}get rowIndices(){const e=[],n=this.nCols,i=this.nRows;for(let r=0;r<i;r++){const s=[];e.push(s);for(let o=0;o<n;o++){const a=r*n+o;a<this.n&&s.push(a)}}return e}get colIndices(){const e=[],n=this.nCols,i=this.nRows;for(let r=0;r<n;r++){const s=[];e.push(s);for(let o=0;o<i;o++){const a=o*n+r;a<this.n&&s.push(a)}}return e}getCellIndex(e,n){let i=0;if(this.maxCols==1/0)i=n==0?e:void 0;else{if(e>=this.maxCols)return;i=n*this.nCols+e}return i<this.n?i:void 0}getCellCoords(e){if(!(e<0||e>=this.n))return[e%this.nCols,Math.floor(e/this.nCols)]}}function cn(t){return()=>t}class ve{static create(e,n,i,r){return new ve(cn(e),cn(n),cn(i),cn(r))}static ZERO=ve.create(0,0,0,0);_offset(e,n){const i=this["_"+e];if(n===0)return i;switch(typeof n){case"number":return()=>i()+n;case"function":return()=>i()+n();default:throw new Error("Not a number of function")}}_passThrough(e){return this._offset(e,0)}constructor(e,n,i,r){this._x=e,this._y=n,this._width=i,this._height=r}get x(){return this._x()}get y(){return this._y()}get width(){return this._width()}get height(){return this._height()}get x2(){return this._x()+this._width()}get y2(){return this._y()+this._height()}equals(e){return e?this===e||this.x===e.x&&this.y===e.y&&this.width===e.width&&this.height===e.height:!1}modify(e){if(!Object.keys(e).length)return this;const n=i=>{const r=e[i];return typeof r=="number"?cn(r):typeof r=="function"?r:this._passThrough(i)};return new ve(n("x"),n("y"),n("width"),n("height"))}translate(e,n){return e===0&&n===0?this:new ve(this._offset("x",e),this._offset("y",n),this._passThrough("width"),this._passThrough("height"))}translateBy(e){return this.translate(e.x,e.y)}expand(e,n=1){return e.left==0&&e.top==0&&e.right==0&&e.bottom==0?this:new ve(e.left?this._offset("x",-e.left*n):this._passThrough("x"),e.top?this._offset("y",-e.top*n):this._passThrough("y"),e.width?this._offset("width",e.width*n):this._passThrough("width"),e.height?this._offset("height",e.height*n):this._passThrough("height"))}shrink(e){return this.expand(e,-1)}intersect(e){return this===e||e==null?this:new ve(()=>Math.max(this.x,e.x),()=>Math.max(this.y,e.y),()=>Math.min(this.x2,e.x2)-Math.max(this.x,e.x),()=>Math.min(this.y2,e.y2)-Math.max(this.y,e.y))}union(e){return this===e||e==null?this:new ve(()=>Math.min(this.x,e.x),()=>Math.min(this.y,e.y),()=>Math.max(this.x2,e.x2)-Math.min(this.x,e.x),()=>Math.max(this.y2,e.y2)-Math.min(this.y,e.y))}isDefined(){return this.width>=0&&this.height>=0}flatten(){return new ve(cn(this.x),cn(this.y),cn(this.width),cn(this.height))}containsPoint(e,n){return e>=this.x&&e<this.x2&&n>=this.y&&n<this.y2}normalizePoint(e,n,i=!1){const r={x:(e-this.x)/this.width,y:(n-this.y)/this.height};return i&&(r.y=1-r.y),r}denormalizePoint(e,n,i=!1){return i&&(n=1-n),{x:this.x+e*this.width,y:this.y+n*this.height}}toString(){return`Rectangle: x: ${this.x}, y: ${this.y}, width: ${this.width}, height: ${this.height}`}toRoundedString(){return`Rectangle: x: ${Math.round(this.x)}, y: ${Math.round(this.y)}, width: ${Math.round(this.width)}, height: ${Math.round(this.height)}`}}const hr=new WeakMap,qu=new WeakMap;function M6(t,e){if(e!==null&&typeof e!="string")throw new Error("Import scope name must be a string or null.");hr.set(t,{name:e})}function ln(t,e={}){const i=e.skipSubtree??!1?"excludeSubtree":"exclude";qu.set(t,i)}function Ku(t){const e=t.getDataAncestors(),n=[];for(let i=e.length-1;i>=0;i-=1){const r=hr.get(e[i]);r&&typeof r.name=="string"&&n.push(r.name)}return n}function T6(t){const e=[];for(const n of P6(t)){const i=L6(n);O6(t,i,e),U6(t,i,e)}return e}function Y1(t){return t.persist===!1?!1:zl(t)?!0:e0(t)?!!t.bind:!1}function P6(t){const e=new Set([t]);return t.visit(n=>{const i=hr.get(n);i&&typeof i.name=="string"&&e.add(n)}),Array.from(e)}function L6(t){return Ku(t)}function V1(t){return t.length?"import scope ["+t.join(" / ")+"]":"import scope (root)"}function O6(t,e,n){const i=new Map;J1(t,e,r=>{for(const[s,o]of r.paramRuntime.paramConfigs){if(!Y1(o))continue;const a=i.get(s);a?a.push(r):i.set(s,[r])}});for(const[r,s]of i){if(s.length<=1)continue;const o=s.map(a=>a.getPathString()).join(", ");n.push({message:'Bookmarkable parameter "'+r+'" is not unique within '+V1(e)+". Found in: "+o+".",scope:e})}}function U6(t,e,n){const i=_6(t,e);if(!i.length)return;const r=i.filter(o=>G6(o));if(r.length<=1)return;const s=new Map;for(const o of r){const a=hr.get(o),l=a?a.name:void 0;typeof l!="string"||!l.length||s.set(l,(s.get(l)??0)+1)}for(const[o,a]of s)a>1&&n.push({message:'Import instance name "'+o+'" is used multiple times for addressable instances in '+V1(e)+".",scope:e})}function _6(t,e){const n=[];return J1(t,e,i=>{if(Ku(i).length!==e.length+1)return;const s=hr.get(i);!s||typeof s.name!="string"||n.push(i)},{includeNamedImportRoots:!0}),n}function G6(t){let e=!1;return t.visit(n=>{const i=qu.get(n);if(i==="excludeSubtree")return On;if(i!=="exclude"){for(const r of n.paramRuntime.paramConfigs.values())if(Y1(r))return e=!0,Ar}}),e}function J1(t,e,n,i={}){const r=i.includeNamedImportRoots??!1;t.visit(s=>{const o=hr.get(s),a=qu.get(s);if(a==="excludeSubtree")return On;if(a!=="exclude"&&z6(s,e,o,r))return n(s)})}function z6(t,e,n,i){const r=Ku(t);return H6(r,e)?!0:!i||!n||typeof n.name!="string"||r.length!==e.length+1?!1:q1(e,r)}function H6(t,e){return t.length!==e.length?!1:q1(t,e)}function q1(t,e){if(t.length>e.length)return!1;for(let n=0;n<t.length;n++)if(t[n]!==e[n])return!1;return!0}const Y6="chromosome_ticks_and_labels",V6={x:"width",y:"height"};function ju(t){return t=="x"?"y":"x"}const fc={x:["bottom","top"],y:["left","right"]},Wu=Object.fromEntries(Object.entries(fc).map(([t,e])=>e.map(n=>[n,t])).flat(1));function Un(t){return Wu[t]}class K1 extends Ei{constructor(e,n,i,r,s,o){const a=n=="locus",l={...a?q6:j1,...J6(n,e),...e};super(a?K6(l,n):W1(l,n),i,r,s,`axis_${e.orient}`,{blockEncodingInheritance:!0,...o}),this.axisProps=l,ln(this,{skipSubtree:!0})}getSize(){const e={px:this.getPerpendicularSize()},n={grow:1};return Wu[this.axisProps.orient]=="x"?new Pn(n,e):new Pn(e,n)}getPerpendicularSize(){return Xu(this.axisProps)}isPickingSupported(){return!1}}function Xu(t){const e=Un(t.orient);let n=t.ticks&&t.tickSize||0;return t.labels&&(n+=t.labelPadding,e=="x"?n+=t.labelFontSize:n+=30),t.title&&(n+=t.titlePadding+t.titleFontSize),n=Math.min(t.maxExtent||1/0,Math.max(t.minExtent||0,n)),n}const j1={values:null,minExtent:20,maxExtent:1/0,offset:0,domain:!0,domainWidth:1,domainColor:"gray",domainDash:null,domainDashOffset:0,domainCap:"square",ticks:!0,tickSize:5,tickWidth:1,tickColor:"gray",tickDash:null,tickDashOffset:0,tickCap:"square",tickCount:null,tickMinStep:null,labels:!0,labelAlign:"center",labelBaseline:"middle",labelPadding:4,labelFontSize:10,labelLimit:180,labelColor:"black",format:null,titleColor:"black",titleFont:"sans-serif",titleFontSize:10,titlePadding:3};function J6(t,e){const n=e.orient,i=t=="nominal"||t=="ordinal";let r="center",s="middle",o=e.labelAngle??((n=="top"||n=="bottom")&&i?-90:0);switch(n){case"left":r="right";break;case"right":r="left";break;case"top":case"bottom":Math.abs(o)>30?(r=o>0==(n=="bottom")?"left":"right",s="middle"):s=n=="top"?"alphabetic":"top";break}return{labelAlign:r,labelAngle:o,labelBaseline:s}}function W1(t,e){const n={...t,extent:Xu(t)},i=Un(n.orient),r=ju(i),s=n.orient=="bottom"||n.orient=="right"?1:-1,o=n.orient=="bottom"||n.orient=="left"?1:0,a=()=>({field:"value",type:e}),l=()=>({name:"domain",data:{values:[{}]},mark:{type:"rule",clip:!1,strokeDash:n.domainDash,strokeCap:n.domainCap,color:n.domainColor,[r]:o,size:n.domainWidth}}),c=()=>({name:"labels",mark:{type:"text",clip:!1,align:n.labelAlign,angle:n.labelAngle,baseline:n.labelBaseline,[r+"Offset"]:(n.tickSize+n.labelPadding)*s,[r]:o,size:n.labelFontSize,color:n.labelColor,minBufferSize:1500},encoding:{[i]:a(),text:{field:"label"}}}),f=()=>({name:"ticks",mark:{type:"rule",clip:!1,strokeDash:n.tickDash,strokeCap:n.tickCap,color:n.tickColor,size:n.tickWidth,minBufferSize:300},encoding:{[r]:{value:o},[r+"2"]:{value:o-n.tickSize/n.extent*(o?1:-1)}}}),u=()=>({name:"title",data:{values:[{}]},mark:{type:"text",clip:!1,align:"center",baseline:n.orient=="bottom"?"bottom":"top",angle:[0,90,0,-90][["top","right","bottom","left"].indexOf(n.orient)],text:n.title,color:n.titleColor,[i]:.5,[r]:1-o}}),h=()=>{const d={name:"ticks_and_labels",encoding:{[i]:a()},layer:[]};return n.ticks&&d.layer.push(f()),n.labels&&d.layer.push(c()),d},A={resolve:{scale:{[i]:"forced"}},domainInert:!0,[V6[ju(i)]]:n.extent,data:{lazy:{type:"axisTicks",channel:i,axis:t}},layer:[]};return n.domain&&A.layer.push(l()),(n.ticks||n.labels)&&A.layer.push(h()),n.title&&A.layer.push(u()),A}const q6={...j1,chromTicks:!0,chromTickSize:18,chromTickWidth:1,chromTickColor:"#989898",chromTickDash:[4,2],chromTickDashOffset:1,chromLabels:!0,chromLabelFontSize:13,chromLabelFontWeight:"normal",chromLabelFontStyle:"normal",chromLabelColor:"black",chromLabelAlign:"left",chromLabelPadding:7};function K6(t,e){const n={...t,extent:Xu(t)},i=Un(n.orient),r=ju(i),s=n.orient=="bottom"||n.orient=="left"?1:0,o=()=>({name:"chromosome_ticks",mark:{type:"rule",strokeDash:t.chromTickDash,strokeDashOffset:t.chromTickDashOffset,[r]:s,[r+"2"]:s-n.chromTickSize/n.extent*(s?1:-1),color:t.chromTickColor,size:n.chromTickWidth}}),a=()=>{let f;switch(n.orient){case"top":f={y:0,angle:0,paddingX:4,dy:-n.chromLabelPadding,viewportEdgeFadeWidthLeft:20,viewportEdgeFadeWidthRight:20,viewportEdgeFadeDistanceRight:-10,viewportEdgeFadeDistanceLeft:-20};break;case"bottom":f={y:1,angle:0,paddingX:4,dy:n.chromLabelPadding+n.chromLabelFontSize*.73,viewportEdgeFadeWidthLeft:20,viewportEdgeFadeWidthRight:20,viewportEdgeFadeDistanceRight:-10,viewportEdgeFadeDistanceLeft:-20};break;case"left":f={x:1,angle:-90,paddingY:4,dy:-n.chromLabelPadding,viewportEdgeFadeWidthBottom:20,viewportEdgeFadeWidthTop:20,viewportEdgeFadeDistanceBottom:-20,viewportEdgeFadeDistanceTop:-10};break;case"right":f={x:0,angle:90,align:"right",paddingY:4,dy:-n.chromLabelPadding};break;default:f={}}return{name:"chromosome_labels",mark:{type:"text",size:n.chromLabelFontSize,font:n.chromLabelFont,fontWeight:n.chromLabelFontWeight,fontStyle:n.chromLabelFontStyle,color:n.chromLabelColor,align:t.chromLabelAlign,baseline:"alphabetic",clip:!1,...f},encoding:{[i+"2"]:{field:"continuousEnd",type:e},text:{field:"name"}}}};let l;switch(n.orient){case"bottom":case"top":l={};break;case"left":l={labelAngle:-90,labelAlign:"center",labelPadding:6};break;case"right":l={labelAngle:90,labelAlign:"center",labelPadding:6};break;default:l={}}const c=W1({...t,...l},e);if(t.chromTicks||t.chromLabels){const f={name:Y6,data:{lazy:{type:"axisGenome",channel:Un(n.orient)}},encoding:{[i]:{field:"continuousStart",type:e,band:0}},layer:[]};if(t.chromTicks&&f.layer.push(o()),t.chromLabels){f.layer.push(a());let u;c.layer.filter(h=>h.name=="ticks_and_labels").forEach(h=>h.layer.filter(A=>A.name=="labels").forEach(A=>{u=A.mark})),u&&(n.orient=="top"||n.orient=="bottom"?(u.viewportEdgeFadeWidthLeft=30,u.viewportEdgeFadeDistanceLeft=40):(u.viewportEdgeFadeWidthBottom=30,u.viewportEdgeFadeDistanceBottom=40))}c.layer.push(f)}return c}class j6{#e;#t=0;#n=0;constructor(e){this.#e=new Array(e)}push(e){this.#e[this.#t]=e,this.#t=(this.#t+1)%this.size,this.#n=Math.min(this.#n+1,this.size)}get(){const e=this.#e;return this.#n<this.size?e.slice(0,this.#n):e.slice(this.#t,this.size).concat(e.slice(0,this.#t))}get size(){return this.#e.length}get length(){return this.#n}}class lt{static fromMouseEvent(e){return new lt(e.clientX,e.clientY)}constructor(e,n){this.x=e,this.y=n}subtract(e){return new lt(this.x-e.x,this.y-e.y)}add(e){return new lt(this.x-e.x,this.y-e.y)}multiply(e){return new lt(this.x*e,this.y*e)}get length(){return Math.sqrt(this.x**2+this.y**2)}equals(e){return e?e===this||e.x===this.x&&e.y===this.y:!1}}let ro,X1=0;function Z1(){X1=performance.now()}function $1(){return performance.now()-X1<50}function W6(t){return function(...e){Z1(),t(...e)}}function X6(t,e,n,i,r){if(n=W6(n),t.type=="wheel"){t.uiEvent.preventDefault();const s=t.uiEvent,o=s.deltaMode?120:1;if(!s.deltaX&&!s.deltaY)return;ro?.stop();let{x:a,y:l}=t.point;if(i){const c=i.mark.encoders;c.x&&!c.x2&&!c.x.constant&&(a=+c.x(i.datum)*e.width+e.x),c.y&&!c.y2&&!c.y.constant&&(l=(1-+c.y(i.datum))*e.height+e.y)}Math.abs(s.deltaX)<Math.abs(s.deltaY)?n({x:a,y:l,xDelta:0,yDelta:0,zDelta:s.deltaY*o/300}):n({x:a,y:l,xDelta:-s.deltaX*o,yDelta:0,zDelta:0})}else if(t.type=="mousedown"&&t.mouseEvent.button===0){ro&&ro.stop();const s=new j6(30),o=t.mouseEvent;o.preventDefault();let a=lt.fromMouseEvent(o);const l=u=>{const h=lt.fromMouseEvent(u);s.push({point:h,timestamp:performance.now()});const A=h.subtract(a);n({x:a.x,y:a.y,xDelta:A.x,yDelta:A.y,zDelta:0}),a=h},c=()=>{const h=performance.now(),A=s.get().filter(C=>h-C.timestamp<160);if(A.length<5||!r||Z6(A))return;const d=A.at(-1),g=A[0],m=d.point.subtract(g.point).multiply(1/(d.timestamp-g.timestamp));let p=a.x,w=a.y;ro=zu(r,C=>{n({x:C.x,y:C.y,xDelta:p-C.x,yDelta:w-C.y,zDelta:0}),p=C.x,w=C.y},150,.5,{x:p,y:w}),ro({x:a.x-m.x*250,y:a.y-m.y*250})},f=()=>{document.removeEventListener("mousemove",l),document.removeEventListener("mouseup",f),c()};document.addEventListener("mouseup",f,!1),document.addEventListener("mousemove",l,!1)}}function Z6(t){const e=t[Math.floor(t.length/2)],n=e.point.subtract(t[0].point).multiply(e.timestamp-t[0].timestamp),i=t.at(-1).point.subtract(e.point).multiply(t.at(-1).timestamp-e.timestamp),r=n.length;return i.length/r<.4}class $6 extends Ei{constructor(e,n,i,r,s,o){const l={...n=="locus"?eN:ew,...e};super(rN(l,n),i,r,s,`axisGrid_${e.orient}`,{blockEncodingInheritance:!0,...o}),this.axisProps=l,ln(this,{skipSubtree:!0})}getOrient(){return this.axisProps.orient}isPickingSupported(){return!1}}const ew={values:null,grid:!1,gridCap:"butt",gridColor:"lightgray",gridDash:null,gridOpacity:1,gridWidth:1,tickCount:null,tickMinStep:null},eN={...ew,chromGrid:!1,chromGridCap:"butt",chromGridColor:"gray",chromGridDash:[1,5],chromGridOpacity:1,chromGridWidth:1};function tN(t,e){const n=t,i=Un(n.orient);return{name:"grid_lines",data:{lazy:{type:"axisTicks",channel:i,axis:t}},mark:{type:"rule",strokeDash:n.gridDash,strokeCap:n.gridCap,color:n.gridColor,size:n.gridWidth,opacity:n.gridOpacity,minBufferSize:300},encoding:{[i]:{field:"value",type:e}}}}function nN(t,e){const n=t,i=Un(n.orient);return{name:"chromosome_lines",data:{lazy:{type:"axisGenome",channel:i}},mark:{type:"rule",strokeDash:n.chromGridDash,strokeCap:n.chromGridCap,color:n.chromGridColor,size:n.chromGridWidth,opacity:n.chromGridOpacity},encoding:{[i]:{field:"continuousStart",type:e,band:0}}}}function iN(t,e){const n=t,i=Un(n.orient);return{name:"chromosome_fill",data:{lazy:{type:"axisGenome",channel:i}},mark:{type:"rect"},encoding:{[i]:{field:"continuousStart",type:e,band:0},[i+"2"]:{field:"continuousEnd",band:0},fill:{field:"odd",type:"nominal",scale:{domain:[!1,!0],range:[n.chromGridFillEven??"white",n.chromGridFillOdd??"white"]}},opacity:{field:"odd",type:"nominal",scale:{type:"ordinal",domain:[!1,!0],range:[n.chromGridFillEven?1:0,n.chromGridFillOdd?1:0]}}}}}function rN(t,e){const n={...t},i=[];return n.chromGrid&&(n.chromGridFillOdd||n.chromGridFillEven)&&i.push(iN(n,e)),n.chromGrid&&n.chromGridOpacity>0&&i.push(nN(n,e)),n.grid&&n.gridOpacity>0&&i.push(tN(n,e)),{name:"grid_layers",resolve:{scale:{[Un(t.orient)]:"forced",fill:"independent",opacity:"independent"}},domainInert:!0,layer:i}}const tw={anchor:"middle",frame:"group",offset:10,orient:"top",align:void 0,angle:0,baseline:"alphabetic",dx:0,dy:0,color:void 0,font:void 0,fontSize:12,fontStyle:"normal",fontWeight:"normal"},sN={orient:"left",anchor:"middle",align:"right",baseline:"middle",angle:0,fontSize:12},oN={orient:"top",anchor:"start",align:"left",baseline:"top",offset:-10,dx:10,fontSize:12},aN={start:0,middle:.5,end:1},cN={start:"left",middle:"center",end:"right"};function lN(t){if(!t)return;const e=le(t)?{text:t}:t;if(!e.text||e.orient=="none")return;const n={"track-title":sN,overlay:oN}[e.style]??{},i={...tw,...n,...e};let r={},s={x:0,y:0};const o=aN[i.anchor??"middle"];switch(i.orient){case"top":s={x:o,y:1},r={baseline:"alphabetic",angle:0};break;case"right":s={x:1,y:1-o},r={baseline:"alphabetic",angle:90};break;case"bottom":s={x:o,y:0},r={baseline:"top",angle:0};break;case"left":s={x:0,y:o},r={baseline:"alphabetic",angle:-90};break}const a={...tw,...r,...n,...e},l={xOffset:0,yOffset:0};switch(i.orient){case"top":l.yOffset=-a.offset;break;case"right":l.xOffset=a.offset;break;case"bottom":l.yOffset=a.offset;break;case"left":l.xOffset=-a.offset;break}return{data:{values:[{}]},mark:{type:"text",tooltip:null,clip:!1,...s,...l,text:a.text,align:a.align??cN[a.anchor],angle:a.angle,baseline:a.baseline,dx:a.dx,dy:a.dy,color:a.color,font:a.font,size:a.fontSize,fontStyle:a.fontStyle,fontWeight:a.fontWeight}}}class nw extends nt{#e;#t=ve.ZERO;#n=ve.ZERO;#i=ve.ZERO;viewportOffset=0;#s;constructor(e,n,i={}){const r={scrollbarSize:8,scrollbarPadding:2,scrollbarMinLength:20};super({params:[{name:"scrollbarOpacity",value:1}],opacity:{expr:"scrollbarOpacity"},data:{values:[{}]},mark:{type:"rect",fill:"#b0b0b0",fillOpacity:.6,stroke:"white",strokeWidth:1,strokeOpacity:1,cornerRadius:5,clip:!1}},e.layoutParent.context,e.layoutParent,e.view,"scrollbar-"+n,{blockEncodingInheritance:!0}),ln(this,{skipSubtree:!0}),this.config=r,this.#e=n,this.#s=i.onViewportOffsetChange;const s=this.config.scrollbarPadding,o=this.config.scrollbarSize;this.#t=this.#e=="vertical"?new ve(()=>this.#n.x+this.#n.width-o-s,()=>this.#n.y+s+this.scrollOffset,()=>o,()=>this.#a()):new ve(()=>this.#n.x+s+this.scrollOffset,()=>this.#n.y+this.#n.height-o-s,()=>this.#a(),()=>o),this.#A(this.viewportOffset),this.addInteractionEventListener("mousedown",(a,l)=>{if(l.stopPropagation(),this.#c()<=0)return;const c=d=>n=="vertical"?d.clientY:d.clientX;l.mouseEvent.preventDefault();const f=this.scrollOffset,u=c(l.mouseEvent),h=d=>{const g=this.#c();if(g<=0)return;const m=tr(c(d)-u+f,0,g);this.interpolateViewportOffset({x:this.#f(m)})},A=()=>{document.removeEventListener("mousemove",h),document.removeEventListener("mouseup",A)};document.addEventListener("mouseup",A,!1),document.addEventListener("mousemove",h,!1)})}get scrollOffset(){return this.#l(this.viewportOffset)}setViewportOffset(e,{notify:n=!0,syncSmoother:i=!1}={}){this.viewportOffset=tr(e,0,this.#u()),i&&this.#A(this.viewportOffset),n&&this.#s&&this.#s(this.viewportOffset)}#o(){const e=this.#e=="horizontal"?"width":"height",n=this.#n[e],i=this.#i[e];return i>0?Math.min(1,n/i):1}#r(){const e=this.#e=="horizontal"?"width":"height";return Math.max(0,this.#n[e]-2*this.config.scrollbarPadding)}#a(){const e=this.#r(),n=this.#o()*e,i=this.config.scrollbarMinLength;return Math.min(e,Math.max(i,n))}#c(){return Math.max(0,this.#r()-this.#a())}#l(e){const n=this.#u(),i=this.#c();return n<=0||i<=0?0:e/n*i}#f(e){const n=this.#u(),i=this.#c();return n<=0||i<=0?0:e/i*n}#u(){const e=this.#e=="horizontal"?"width":"height";return Math.max(0,this.#i[e]-this.#n[e])}render(e,n,i){super.render(e,this.#t,i)}updateScrollbar(e,n){this.#n=e.flatten(),this.#i=n,this.setViewportOffset(this.viewportOffset,{notify:!1,syncSmoother:!0})}#A(e){this.interpolateViewportOffset=zu(this.context.animator,n=>{this.setViewportOffset(n.x,{notify:!0,syncSmoother:!1})},35,.4,{x:e})}}class fN extends Ei{constructor(e,n,i={}){const r=n(),s=Object.keys(r.intervals);if(ii.every(f=>!s.includes(f)))throw new Error("SelectionRect requires at least one of the channels 'x' or 'y' to be present in the selection.");const o={name:"selectionRect",domainInert:!0,resolve:{scale:{x:"forced",y:"forced"}},data:{values:iw(n())},encoding:{},layer:[]};s.includes("x")&&(o.encoding.x={field:"_x",type:null,title:null},o.encoding.x2={field:"_x2"}),s.includes("y")&&(o.encoding.y={field:"_y",type:null,title:null},o.encoding.y2={field:"_y2"}),o.layer.push({name:"selectionRectRect",mark:{type:"rect",clip:!0,fill:"#808080",fillOpacity:.05,stroke:"black",strokeWidth:1,strokeOpacity:.2,...i}});const a=f=>{const u=e.view.getScaleResolution(f);return`format(datum._${f}2 - datum._${f}, '.3s')`+(u.type==="locus"?" + 'b'":"")},l=i.measure=="inside"?9:i.measure=="outside"?-9:0;s.includes("x")&&l!=0&&o.layer.push({name:"selectionRectTextX",mark:{type:"text",align:"center",paddingX:5,dy:l,tooltip:null},encoding:{text:{expr:a("x")},y:s.includes("y")?{field:"_y2",type:null,title:null}:{value:1},y2:null}}),s.includes("y")&&l!=0&&o.layer.push({name:"selectionRectTextY",mark:{type:"text",align:"center",paddingY:5,dy:l,tooltip:null,angle:-90},encoding:{text:{expr:a("y")},x2:null}}),super(o,e.layoutParent.context,e.layoutParent,e.view,"selectionRect",{blockEncodingInheritance:!0}),ln(this,{skipSubtree:!0});const c=()=>{const f=n(),u=this.flowHandle?.dataSource;if(!u)throw new Error("Cannot find selection rect data source handle!");u.updateDynamicData(iw(f))};this.registerDisposer(n.subscribe(c))}}function iw(t){const e=t.intervals.x,n=t.intervals.y;return!e&&!n?[]:[{_x:e?.[0],_x2:e?.[1],_y:n?.[0],_y2:n?.[1]}]}class uN{constructor(e,n,i){if(this.layoutParent=n,this.view=e,this.serial=i,this.background=void 0,this.backgroundStroke=void 0,this.axes={},this.gridLines={},this.scrollbars={},this.selectionRect=void 0,this.title=void 0,this.coords=ve.ZERO,e.needsAxes.x||e.needsAxes.y){const r=e.spec,s="view"in r?r?.view:void 0,o=AN(s);o&&(this.background=new nt(o,n.context,n,e,"background"+i,{blockEncodingInheritance:!0}),ln(this.background,{skipSubtree:!0}));const a=hN(s);a&&(this.backgroundStroke=new nt(a,n.context,n,e,"backgroundStroke"+i,{blockEncodingInheritance:!0}),ln(this.backgroundStroke,{skipSubtree:!0}));const l=lN(e.spec.title);if(l){const c=new nt(l,n.context,n,e,"title"+i,{blockEncodingInheritance:!0});this.title=c,ln(this.title,{skipSubtree:!0})}}e.spec.viewportWidth!=null&&(this.scrollbars.horizontal=new nw(this,"horizontal")),e.spec.viewportHeight!=null&&(this.scrollbars.vertical=new nw(this,"vertical")),this.#e()}#e(){const e=this.view,n=i=>{this.view.context.glHelper.canvas.style.cursor=i};for(const[i,r]of e.paramRuntime.paramConfigs){if(!("select"in r))continue;const s=sa(r.select);if(!Xd(s))continue;const o=s.encodings,a=Object.fromEntries(o.map(C=>{const y=this.view.getScaleResolution(C),b=y?.getScale();if(!b||!Pe(b.type))throw new Error(`No continuous scale found for interval selection param "${i}" on channel "${C}"! Scale type is "${b?.type??"none"}".`);return[C,y]}));if(this.selectionRect)throw new Error("Only one interval selection per container is currently allowed!");let l=!1,c=!1,f=!1,u=null;const h=(C,y)=>Object.fromEntries(o.map(b=>[b,[Math.min(C[b],y[b]),Math.max(C[b],y[b])]])),A=e.paramRuntime.createExpression(i),d=C=>{e.paramRuntime.setValue(i,C)};r.value&&d({type:"interval",intervals:r.value});const g=()=>{d(Kd(o)),n(null)};this.selectionRect=new fN(this,A,s.mark),this.selectionRect.initializeChildren();const m=C=>{const y={x:0,y:0},b=e.coords.normalizePoint(C.x,C.y,!0);for(const x of o){const I=a[x].getScale(),S=I.invert(x=="x"?b.x:b.y);y[x]=S+(["index","locus"].includes(I.type)?.5:0)}return y},p=C=>{const{intervals:y}=C,b=(S,Q,v)=>{const F=(O,z)=>z==null?null:a[O].getScale()(z),R=F("x",S)??v,M=F("y",Q)??v;return e.coords.denormalizePoint(R,M,!0)},x=b(y.x?.[0],y.y?.[0],0),I=b(y.x?.[1],y.y?.[1],1);return ve.create(x.x,x.y,I.x-x.x,I.y-x.y)};e.addInteractionEventListener("mousedown",(C,y)=>{if(y.mouseEvent.button!=0)return;if(u=l?p(A()):null,u)n("grabbing"),c=!0;else{const Q=y.point;if(Zd(A())&&(c=!0),y.mouseEvent.shiftKey)g(),f=!0;else if(Zd(A())){const F=(R,M)=>{e.removeInteractionEventListener("mouseup",F);const O=M.point;Q.subtract(O).length<2&&g()};e.addInteractionEventListener("mouseup",F);return}else return}y.stopPropagation();const b=y.point,x=lt.fromMouseEvent(y.mouseEvent).subtract(b),I=Q=>{const v=lt.fromMouseEvent(Q).subtract(x);let F;if(u){const R=v.subtract(b),M=u.translate(R.x,R.y);F=h(m(new lt(M.x,M.y)),m(new lt(M.x2,M.y2)))}else F=h(m(b),m(v));for(const R of o){const M=a[R],{zoomExtent:O,scale:z}=M,_=F[R];if(["index","locus"].includes(z.type)&&(_[0]=Math.ceil(_[0]),_[1]=Math.ceil(_[1])),u){const Y=_[1]-_[0],te=O[0],oe=O[1];_[0]<te&&(_[0]=te,_[1]=te+Y),_[1]>oe&&(_[1]=oe,_[0]=oe-Y)}else _[0]=Math.max(O[0],_[0]),_[1]=Math.min(O[1],_[1]);_[1]=Math.min(O[1],_[1])}d({type:"interval",intervals:F})},S=()=>{document.removeEventListener("mousemove",I),document.removeEventListener("mouseup",S),f=!1,u&&(n("move"),u=null)};document.addEventListener("mousemove",I),document.addEventListener("mouseup",S)}),e.addInteractionEventListener("click",(C,y)=>{y.mouseEvent.button==0&&c&&(y.stopPropagation(),c=!1)},!0);const w=C=>Zx(A(),m(C));e.addInteractionEventListener("dblclick",(C,y)=>{w(y.point)&&(g(),y.stopPropagation())},!0),e.addInteractionEventListener("mousemove",(C,y)=>{w(y.point)?f||(l=!0,u||n("move")):(l=!1,u||n(null))})}}*getChildren(){this.background&&(yield this.background),this.backgroundStroke&&(yield this.backgroundStroke),this.title&&(yield this.title),yield*Object.values(this.axes),yield*Object.values(this.gridLines),yield this.view,yield*Object.values(this.scrollbars),this.selectionRect&&(yield this.selectionRect)}async createAxes(){this.disposeAxisViews();const{view:e,axes:n,gridLines:i}=this,r=(a,l)=>{const c=a.getAxisProps();if(c===null)return;const f=c?{...c}:{};if(!f.orient){for(const u of fc[l])if(!n[u]){f.orient=u;break}if(!f.orient)throw new Error("No slots available for an axis! Perhaps a LayerView has more than two children?")}if(f.title??=a.getTitle(),!fc[l].includes(f.orient))throw new Error(`Invalid axis orientation "${f.orient}" on channel "${l}"!`);return f},s=async(a,l,c)=>{const f=r(a,l);if(f){if(n[f.orient])throw new Error(`An axis with the orient "${f.orient}" already exists!`);const u=new K1(f,a.scaleResolution.type,this.layoutParent.context,this.layoutParent,c);n[f.orient]=u,await u.initializeChildren()}},o=async(a,l,c)=>{const f=r(a,l);if(f&&(f.grid||f.chromGrid)){const u=new $6(f,a.scaleResolution.type,this.layoutParent.context,this.layoutParent,c);i[f.orient]=u,await u.initializeChildren()}};for(const a of["x","y"])if(e.needsAxes[a]){const l=e.resolutions.axis[a];if(!l)continue;await s(l,a,e)}for(const a of["x","y"])if(e.needsAxes[a]&&e.getConfiguredOrDefaultResolution(a,"axis")!="excluded"){const l=e.getAxisResolution(a);if(!l)continue;await o(l,a,e)}if(e instanceof Ei){for(const a of e)for(const[l,c]of Object.entries(a.resolutions.axis)){const f=c.getAxisProps();f&&f.orient&&await s(c,l,a)}for(const a of e)for(const[l,c]of Object.entries(a.resolutions.axis)){const f=c.getAxisProps();f&&!f.orient&&await s(c,l,a)}}[...Object.values(n),...Object.values(i)].forEach(a=>a.visit(l=>{l instanceof nt&&l.resolve("scale")}))}disposeAxisViews(){for(const e of Object.values(this.axes))e.disposeSubtree();for(const e of Object.values(this.gridLines))e.disposeSubtree();this.axes={},this.gridLines={}}getOverhang(){const e=n=>{const i=this.axes[n];return i?Math.max(i.getPerpendicularSize()+(i.axisProps.offset??0),0):0};return new qe(e("top"),e("right"),e("bottom"),e("left")).add(this.view.getOverhang())}getOverhangAndPadding(){return this.getOverhang().add(this.view.getPadding())}}function AN(t){if(t?.fill||t?.fillOpacity||t?.shadowOpacity)return{data:{values:[{}]},mark:{color:t.fill,opacity:t.fillOpacity??(t.fill?1:0),type:"rect",clip:!1,tooltip:null,minHeight:1,minOpacity:0,shadowBlur:t.shadowBlur,shadowColor:t.shadowColor,shadowOffsetX:t.shadowOffsetX,shadowOffsetY:t.shadowOffsetY,shadowOpacity:t.shadowOpacity}}}function hN(t){if(!(!t||!t.stroke||t.strokeWidth===0||t.strokeOpacity===0))return{resolve:{scale:{x:"excluded",y:"excluded"},axis:{x:"excluded",y:"excluded"}},data:{values:[{x:0,y:0,x2:1,y2:0},{x:1,y:0,x2:1,y2:1},{x:1,y:1,x2:0,y2:1},{x:0,y:1,x2:0,y2:0}]},mark:{size:t.strokeWidth??1,color:t.stroke??"lightgray",strokeCap:"square",opacity:t.strokeOpacity??1,type:"rule",clip:!1,tooltip:null},encoding:{x:{field:"x",type:"quantitative",scale:null},y:{field:"y",type:"quantitative",scale:null},x2:{field:"x2"},y2:{field:"y2"}}}}const dN={pan:{baseSpeed:1,maxExtraSpeed:3,pressHalfLifeMs:30,releaseHalfLifeMs:100,holdGrowthHalfLifeMs:800,stopVelocity:.01},zoom:{baseSpeed:3,maxExtraSpeed:15,pressHalfLifeMs:10,releaseHalfLifeMs:100,holdGrowthHalfLifeMs:600,stopVelocity:.01}};class gN{#e;#t;#n;#i;#s;constructor(e=dN){this.#i=e.pan,this.#s=e.zoom,this.#e={KeyW:!1,KeyA:!1,KeyS:!1,KeyD:!1},this.#t={velocity:0,holdMs:0,direction:0},this.#n={velocity:0,holdMs:0,direction:0}}isNavigationKey(e){return e==="KeyW"||e==="KeyA"||e==="KeyS"||e==="KeyD"}handleKeyDown(e){return this.#o(e,!0)}handleKeyUp(e){return this.#o(e,!1)}reset(){this.#e.KeyW=!1,this.#e.KeyA=!1,this.#e.KeyS=!1,this.#e.KeyD=!1,this.#t.velocity=0,this.#t.holdMs=0,this.#t.direction=0,this.#n.velocity=0,this.#n.holdMs=0,this.#n.direction=0}step(e){if(e<=0)return{panDelta:0,zoomDelta:0,active:this.isActive()};{const n=rw(this.#e.KeyD,this.#e.KeyA),i=rw(this.#e.KeyW,this.#e.KeyS),r=sw(this.#t,n,e,this.#i),s=sw(this.#n,i,e,this.#s),o=e/1e3;return{panDelta:r*o,zoomDelta:s*o,active:this.isActive()}}}isActive(){return this.#e.KeyW||this.#e.KeyA||this.#e.KeyS||this.#e.KeyD?!0:this.#t.velocity!==0||this.#n.velocity!==0}#o(e,n){if(this.isNavigationKey(e)){const i=e;return this.#e[i]===n?!1:(this.#e[i]=n,!0)}else return!1}}function rw(t,e){return t===e?0:e?1:-1}function sw(t,e,n,i){if(e!==0){t.direction!==e&&(t.holdMs=0),t.holdMs+=n;const r=i.maxExtraSpeed*(1-Math.pow(2,-t.holdMs/i.holdGrowthHalfLifeMs)),s=e*(i.baseSpeed+r);t.velocity=ow(t.velocity,s,n,i.pressHalfLifeMs)}else t.holdMs=0,t.velocity=ow(t.velocity,0,n,i.releaseHalfLifeMs),Math.abs(t.velocity)<i.stopVelocity&&(t.velocity=0);return t.direction=e,t.velocity}function ow(t,e,n,i){return e+(t-e)*Math.pow(2,-n/i)}function aw(t){const e={x:new Set,y:new Set};return t.visit(n=>{for(const[i,r]of Object.entries(e)){const s=n.getScaleResolution(i);s&&s.isZoomable()&&r.add(s)}}),e}function Zu(t){const e=aw(t).x;if(e.size===1){const n=e.values().next().value,i=t.getScaleResolution("x");return!i||i!==n?void 0:n}}class pN{#e;#t;#n=.5;#i=new gN;#s=!1;#o=0;#r=e=>{if(!this.#s)return;const n=Zu(this.#t);if(!n){this.#i.reset(),this.#s=!1,this.#o=0;return}const i=Math.max(0,e-this.#o);this.#o=e;const r=this.#i.step(i);(r.panDelta!==0||r.zoomDelta!==0)&&n.zoom(2**r.zoomDelta,this.#n,r.panDelta)&&(Z1(),this.#e.animator.requestRender()),r.active?this.#e.animator.requestTransition(this.#r):(this.#s=!1,this.#o=0)};constructor({context:e,viewRoot:n}){this.#e=e,this.#t=n,this.#a()}handlePointerEvent(e,n){if(e){const i=e.view;if(typeof i.getKeyboardZoomAnchorX=="function"){const r=i.getKeyboardZoomAnchorX(n.point);Number.isFinite(r)&&(this.#n=Math.max(0,Math.min(1,r)))}else{const r=e.coords.normalizePoint(n.point.x,n.point.y);this.#n=r.x}}else return}#a(){const e=this.#e.addKeyboardListener;typeof e=="function"&&(e("keydown",n=>{mN(n)||!this.#i.isNavigationKey(n.code)||!Zu(this.#t)||!this.#i.handleKeyDown(n.code)||(n.preventDefault(),this.#c())}),e("keyup",n=>{!this.#i.isNavigationKey(n.code)||!this.#i.handleKeyUp(n.code)||!Zu(this.#t)||(n.preventDefault(),this.#c())}))}#c(){this.#s||(this.#s=!0,this.#o=performance.now(),this.#e.animator.requestTransition(this.#r))}}function mN(t){return!!(t.altKey||t.ctrlKey||t.metaKey||wN(t.target))}function wN(t){if(!t||typeof t!="object")return!1;const e=t;if(e.isContentEditable)return!0;if(typeof e.nodeName=="string"){const n=e.nodeName.toLowerCase();return n==="input"||n==="textarea"||n==="select"}return!1}const uc=Object.freeze({size:1,color:"#ccc",opacity:1,strokeDash:[4,4],strokeCap:"butt"});class yN{#e;#t;#n;#i=[];#s=[];#o={x:[0,0],y:[0,0]};constructor({direction:e,props:n,context:i,layoutParent:r,dataParent:s,getName:o}){this.#e=e,this.#t=n.includePlotMargin??!0;const a={...n};delete a.includePlotMargin,this.#n=this.#c(a,i,r,s,o)}get view(){return this.#n}update(e,n,i,r,s,o){this.#r(e,n,r,s),this.#a(i,o)}render(e,n,i){this.#n.render(e,n,i)}#r(e,n,i,r){if(this.#s.length=0,n<2)return;const s=this.#e==="vertical"?"column":"row",o=r?3:2;for(let a=1;a<n;a++){const c=i(s,a)-o,f=e[c],u=f?f.location:0,h=f?f.size:0;this.#s.push(u+h/2)}}#a(e,n){const i=this.#t?0:n.left,r=this.#t?e.width:e.width-n.right,s=this.#t?0:n.bottom,o=this.#t?e.height:e.height-n.top;this.#i.length=this.#s.length;for(let f=0;f<this.#s.length;f++){const u=this.#s[f],h=this.#i[f]??{};if(this.#e==="vertical")h.x=u,h.x2=u,h.y=s,h.y2=o;else{const A=e.height-u;h.x=i,h.x2=r,h.y=A,h.y2=A}this.#i[f]=h}const a=this.#n.flowHandle?.dataSource;if(!a)return;a.updateDynamicData(this.#i),this.#o.x[1]=e.width,this.#o.y[1]=e.height;const l=this.#n.getScaleResolution("x")?.getScale();l&&l.domain(this.#o.x);const c=this.#n.getScaleResolution("y")?.getScale();c&&c.domain(this.#o.y)}#c(e,n,i,r,s){const o=EN(e),a=this.#e==="horizontal"?s("separatorHorizontal"):s("separatorVertical"),l=new nt(o,n,i,r,a,{blockEncodingInheritance:!0});return ln(l,{skipSubtree:!0}),l}}function CN(t){if(!t)return null;const e=t===!0?{...uc}:{...uc,...t};return e.strokeDash===uc.strokeDash&&(e.strokeDash=uc.strokeDash.slice()),e}function EN(t){return{domainInert:!0,data:{values:[]},resolve:{scale:{x:"excluded",y:"excluded"},axis:{x:"excluded",y:"excluded"}},mark:{...t,type:"rule",clip:t.clip??!1,tooltip:null},encoding:{x:{field:"x",type:"quantitative",scale:{nice:!1,zero:!1}},y:{field:"y",type:"quantitative",scale:{nice:!1,zero:!1}},x2:{field:"x2"},y2:{field:"y2"}}}}class IN extends no{#e=1/0;#t=10;#n=[];#i={};#s=0;#o={};#r=null;constructor(e,n,i,r,s,o,a){super(e,n,i,r,s,a),this.spec=e,this.#t=e.spacing??10,this.#e=o,this.#n=[],this.wrappingFacet=!1;const l=CN(e.separator);if(l)for(const c of xN(e))this.#o[c]=new yN({direction:c,props:l,context:this.context,layoutParent:this,dataParent:this,getName:f=>this.getNextAutoName(f)});this.layoutParent||(this.#r=new pN({context:this.context,viewRoot:this}))}appendChild(e){this.appendChildView(e)}appendChildView(e){return this.insertChildViewAt(e,this.#n.length)}insertChildViewAt(e,n){e.layoutParent??=this;const i=new uN(e,this,this.#s);return this.#s++,this.#n.splice(n,0,i),this.invalidateSizeCache(),i}removeChildView(e){const n=this.#n.findIndex(i=>i.view===e);if(n<0)throw new Error("Not my child view!");this.removeChildAt(n)}removeChildAt(e){const n=this.#n[e];if(!n)throw new Error("Child index out of range!");this.#l(n),this.#n.splice(e,1),this.invalidateSizeCache()}get#a(){return this.#n.filter(e=>e.view.isConfiguredVisible())}get#c(){return new H1(this.#a.length,this.#e??1/0)}setChildren(e){for(const n of this.#n)this.#l(n);this.#n=[];for(const n of e)this.appendChild(n);this.invalidateSizeCache()}#l(e){e.disposeAxisViews();for(const n of e.getChildren())n.disposeSubtree()}get children(){return this.#n.map(e=>e.view)}get childCount(){return this.#n.length}async createAxes(){await this.syncSharedAxes(),await Promise.all(this.#n.map(e=>e.createAxes()))}async syncSharedAxes(){for(const n of Object.values(this.#i))n.disposeSubtree();this.#i={};const e=[];for(const n of ii){const i=this.resolutions.axis[n];if(!i)continue;const r=i.getAxisProps();if(!r)continue;const s={title:i.getTitle(),orient:fc[n][0],...r},o=new K1(s,i.scaleResolution.type,this.context,this,this);e.push(o.initializeChildren()),this.#i[n]=o}await Promise.all(e)}*[Symbol.iterator](){for(const e of this.#n)yield*e.getChildren();for(const e of Object.values(this.#o))yield e.view;for(const e of Object.values(this.#i))yield e}#f(e){const n=e=="column"?"width":"height",i=(r,s)=>r.map(o=>{const l=this.#a[o].getOverhangAndPadding();return e=="column"?s?l.right:l.left:s?l.bottom:l.top}).reduce((o,a)=>Math.max(o,a),0);return this._cache(`size/directionSizes/${e}`,()=>this.#c[e=="column"?"colIndices":"rowIndices"].map(r=>({axisBefore:i(r,0),axisAfter:i(r,1),view:Vk(r.map(s=>this.#a[s].view.getViewportSize()[n]))})))}#u(e){const n=this.#f(e),i=[];i.push(Js);for(const[r,s]of n.entries())r>0&&i.push({px:this.#t,grow:0}),(r==0||this.wrappingFacet)&&i.push(Js),i.push({px:s.axisBefore,grow:0}),i.push(s.view),i.push({px:s.axisAfter,grow:0}),(r==n.length-1||this.wrappingFacet)&&i.push(Js);return i}#A(e){let n=0,i=0;const r=e=="row"?this.spec.height:this.spec.width;if(r||r===0)return Sm(r);const s=this.#f(e);for(const[o,a]of s.entries())o>0&&(i+=this.#t),(o==0||this.wrappingFacet)&&(i+=0),i+=a.axisBefore,i+=a.view.px??0,n+=a.view.grow??0,i+=a.axisAfter,(o==s.length-1||this.wrappingFacet)&&(i+=0);return{px:i,grow:n}}#h(e,n){return e=="row"&&this.wrappingFacet?1+6*n+2:2+4*n+1}getOverhang(){return this.#d().union(this.#g())}#d(){const e=this.#f("column"),n=this.#f("row");return!e.length||!n.length?qe.zero():new qe(n.at(0).axisBefore,e.at(-1).axisAfter,n.at(-1).axisAfter,e.at(0).axisBefore)}#g(){const e=n=>{const i=Wu[n],r=this.#i[i];return r?.axisProps.orient!==n?0:Math.max(r.getPerpendicularSize()+(r.axisProps.offset??0),0)};return new qe(e("top"),e("right"),e("bottom"),e("left"))}getSize(){return this._cache("size",()=>new Pn(this.#A("column"),this.#A("row")).addPadding(this.#g()))}render(e,n,i={}){if(super.render(e,n,i),!this.isConfiguredVisible())return;this.layoutParent||(n=n.shrink(this.getPadding())),n=n.shrink(this.#g()),e.pushView(this,n);const r=e.getDevicePixelRatio(),s={devicePixelRatio:r},o=Bm(this.#u("column"),n.width,s),a=Bm(this.#u("row"),n.height,s),l=new H1(this.#a.length,this.#e??1/0),c=d=>Math.round(d*r)/r,f=[];for(const[d,g]of this.#a.entries()){const{view:m,axes:p,gridLines:w,background:C,backgroundStroke:y,title:b,selectionRect:x}=g,[I,S]=l.getCellCoords(d),Q=o[this.#h("column",I)],v=a[this.#h("row",S)],F=m.getViewportSize(),R=m.getSize(),M=m.getOverhang(),O=Q.location-M.left,z=v.location-M.top,_=(U,K)=>(U[K].grow?(K=="width"?Q:v).size:U[K].px)+M[K],Y=_(F,"width"),te=_(F,"height"),oe=_(R,"width"),ne=_(R,"height"),_e=g.scrollbars.horizontal,Kt=g.scrollbars.vertical,xo=_e?()=>c(_e.viewportOffset):()=>0,Ur=Kt?()=>c(Kt.viewportOffset):()=>0,hn=new ve(()=>n.x+O,()=>n.y+z,()=>Y,()=>te),Ni=m.isScrollable(),Bo=Ni?new ve(()=>n.x+O-xo(),()=>n.y+z-Ur(),()=>oe,()=>ne):hn;g.coords=hn;const _r=i.clipRect?hn.intersect(i.clipRect):hn;f.push({col:I,row:S,view:m,axes:p,gridLines:w,background:C,backgroundStroke:y,title:b,selectionRect:x,viewportCoords:hn,viewCoords:Bo,clippedChildCoords:_r,viewWidth:oe,viewHeight:ne,scrollable:Ni,gridChild:g})}for(const d of f)d.background?.render(e,d.clippedChildCoords,{...i,clipRect:void 0});const u=this.#d(),h=this.#o.vertical;h&&(h.update(o,l.nCols,n,(d,g)=>this.#h(d,g),this.wrappingFacet,u),h.render(e,n,i));const A=this.#o.horizontal;A&&(A.update(a,l.nRows,n,(d,g)=>this.#h(d,g),this.wrappingFacet,u),A.render(e,n,i));for(const d of f){const{view:g,axes:m,gridLines:p,backgroundStroke:w,title:C,selectionRect:y,viewportCoords:b,viewCoords:x,clippedChildCoords:I,viewWidth:S,viewHeight:Q,scrollable:v,gridChild:F,col:R,row:M}=d;for(const z of Object.values(p))z.render(e,b,i);const O=bN(g)||v;O&&g.render(e,x,{...i,clipRect:I}),w?.render(e,I,{...i,clipRect:void 0});for(const[z,_]of Object.entries(m)){const Y=z=="left"||z=="right"?"vertical":"horizontal",te=F.scrollbars[Y],oe=te?b.modify(Y=="vertical"?{y:()=>x.y,height:Q}:{x:()=>x.x,width:S}):b,ne=cw(oe,z,_);let _e=i.clipRect;te&&(_e=ne.intersect(_e).intersect(te?b.modify(Y=="vertical"?{x:-1e5,width:2e5}:{y:-1e5,height:2e5}):void 0)),_.render(e,ne,{...i,clipRect:_e})}for(const z of Object.values(this.#i)){const Y=z.axisProps.orient;(Y=="left"&&R==0||Y=="right"&&R==l.nCols-1||Y=="top"&&M==0||Y=="bottom"&&M==l.nRows-1)&&z.render(e,cw(b.shrink(F.view.getOverhang()),Y,z),i)}O||g.render(e,x,i),y?.render(e,x,i);for(const z of Object.values(F.scrollbars))z.updateScrollbar(b,x),z.render(e,n,i);C?.render(e,b,i)}e.popView(this)}propagateInteractionEvent(e){if(this.handleInteractionEvent(void 0,e,!0),e.stopped)return;const n=this.#a.find(r=>r.coords.containsPoint(e.point.x,e.point.y));this.#r?.handlePointerEvent(n,e);for(const r of Object.values(n?.scrollbars??{}))if(r.coords.containsPoint(e.point.x,e.point.y)&&(r.propagateInteractionEvent(e),e.stopped))return;const i=n?.view;if(i){if(i.propagateInteractionEvent(e),e.stopped)return;(i instanceof nt||i instanceof Ei)&&X6(e,n.coords,r=>this.#p(n.coords,n.view,r),this.context.getCurrentHover(),this.context.animator)}e.stopped||this.handleInteractionEvent(void 0,e,!1)}#p(e,n,i){for(const[r,s]of Object.entries(aw(n))){if(s.size<=0)continue;const o=e.normalizePoint(i.x,i.y),a=e.normalizePoint(i.x+i.xDelta,i.y+i.yDelta),l={x:a.x-o.x,y:a.y-o.y};for(const c of s)c.zoom(2**i.zDelta,r=="y"?1-o[r]:o[r],r=="x"?l.x:-l.y)}this.context.animator.requestRender()}getDefaultResolution(e,n){return"independent"}}function bN(t){let e=!0;return t.visit(n=>{n instanceof nt&&(e&&=n.mark.properties.clip===!0)}),e}function xN(t){return"vconcat"in t?["horizontal"]:"hconcat"in t?["vertical"]:["horizontal","vertical"]}function cw(t,e,n){const i=n.axisProps,r=n.getPerpendicularSize();if(e=="bottom")return t.translate(0,t.height+i.offset).modify({height:r});if(e=="top")return t.translate(0,-r-i.offset).modify({height:r});if(e=="left")return t.translate(-r-i.offset,0).modify({width:r});if(e=="right")return t.translate(t.width+i.offset,0).modify({width:r})}class $u extends IN{constructor(e,n,i,r,s){super(e,n,i,r,s,lc(e)?e.columns:io(e)?1:1/0),this.spec=e}async initializeChildren(){const e=this.spec,n=lc(e)?e.concat:io(e)?e.vconcat:e.hconcat;this.setChildren(await Promise.all(n.map(i=>this.context.createOrImportView(i,this,this,this.getNextAutoName("grid"))))),await this.createAxes()}async addChildSpec(e,n){return this.#t().addChildSpec(e,n)}async removeChildAt(e){await this.#t().removeChildAt(e)}getDefaultResolution(e,n){return n=="axis"?"independent":io(this.spec)&&e==="x"||z1(this.spec)&&e==="y"?"shared":"independent"}#e(){const e=this.spec;let n;return lc(e)?n=e.concat:io(e)?n=e.vconcat:n=e.hconcat,{specs:n,insertAt:(i,r)=>{n.splice(i,0,r)},removeAt:i=>{n.splice(i,1)}}}#t(){return new L1(this,{getChildSpecs:this.#e.bind(this),insertView:(e,n)=>this.insertChildViewAt(e,n),removeView:e=>super.removeChildAt(e),prepareView:async(e,n,i)=>{await i.createAxes(),await this.syncSharedAxes()},afterRemove:async()=>{await this.syncSharedAxes()},defaultName:()=>this.getNextAutoName("grid")})}}const lw="viewRoot";class BN{#e=new Map;constructor(e={}){this.options={allowImport:!0,wrapRoot:!0,...e};const n=i=>(r,s,o,a,l)=>new i(r,s,o,a,l);this.addViewType(Ju,n(Ei)),this.addViewType(Yu,((i,r,s,o,a)=>new Ei(F6(i),r,s,o,a))),this.addViewType(Vu,n(nt)),this.addViewType(io,n($u)),this.addViewType(z1,n($u)),this.addViewType(lc,n($u))}addViewType(e,n){this.#e.set(e,n)}createView(e,n,i,r,s){for(const[o,a]of this.#e)if(o(e))return a(e,n,i,r,s);throw SN(e)?new Error("SampleView is not supported by the @genome-spy/core package. Use @genome-spy/app instead!"):new Error("Invalid spec, cannot figure out the view type from the properties: "+JSON.stringify([...Object.keys(e)]))}isViewSpec(e){const n=[...this.#e.keys()].filter(i=>i(e));if(n.length>1)throw new Error("Ambiguous spec. Cannot create a view!");return n.length==1}async createOrImportView(e,n,i,r,s,o){let a;const l=G1(e)?e.name??null:void 0;if(G1(e)){let h;if("url"in e.import)if(this.options.allowImport)h=await xF(e,r.getBaseUrl(),n);else throw new He("Importing views is not allowed!",i);else if("template"in e.import)h=fw(e.import.template,r);else throw new Error("Invalid import: "+JSON.stringify(e));o?.(h),vN(h,e),a=h}else a=e;const c=h=>h?.params?.some(A=>zl(A)&&sa(A.select).type=="interval");let f=!1;!r&&this.options.wrapRoot&&(Vu(a)||Ju(a)||Yu(a)||c(a))&&s===lw&&(a={name:"implicitRoot",vconcat:[a]},f=!0);const u=this.createView(a,n,i,r,s);return l!==void 0&&M6(u,l),f&&ln(u),u instanceof no&&await u.initializeChildren(),u.registerStepSizeInvalidation(),u}}function fw(t,e){const n=e.spec?.templates?.[t];if(n)return structuredClone(n);if(e.dataParent)return fw(t,e.dataParent);throw new Error(`Cannot find template "${t}" in current view or its ancestors!`)}function vN(t,e){e.name!=null&&(t.name=e.name),e.visible!=null&&(t.visible=e.visible);const n=Ce(e.params)?e.params:Ge(e.params)?Object.entries(e.params).map(([i,r])=>({name:i,value:r})):[];if(n.length){t.params??=[];for(const i of n){const r=t.params.findIndex(s=>s.name==i.name);r>=0&&(t.params[r]=i)}for(const i of n)t.params.some(r=>r.name==i.name)||t.params.push(i)}}function SN(t){return"samples"in t&&Ge(t.samples)&&"spec"in t&&Ge(t.spec)}class QN{#e;constructor(e,n){this.point=e,this.uiEvent=n,this.stopped=!1,this.target=void 0}stopPropagation(){this.stopped=!0}get type(){return this.uiEvent.type}get proxiedMouseEvent(){return this.#e||(this.#e=DN(this.mouseEvent)),this.#e}get mouseEvent(){if(this.uiEvent instanceof MouseEvent)return this.uiEvent;throw new Error("Not a MouseEvent!")}}function DN(t){const e=i=>i===null||typeof i!="object"&&typeof i!="function",n={get(i,r,s){const o=Reflect.get(i,r,i);if(!e(o))throw new Error(`Access to non-primitive property "${String(r)}" is not allowed.`);return o},getPrototypeOf(){return null},ownKeys(i){return Reflect.ownKeys(i).filter(s=>e(i[s])).map(s=>typeof s=="symbol"?s:String(s))},getOwnPropertyDescriptor(i,r){const s=Reflect.getOwnPropertyDescriptor(i,r);if(s&&!("get"in s||"set"in s)&&e(s.value))return{value:s.value,writable:!!s.writable,enumerable:!!s.enumerable,configurable:!!s.configurable}},has(i,r){return r in i?e(i[r]):!1}};return new Proxy(t,n)}class kN{constructor(e,n){this.animator=e,this.disabled=!!n,this.maxDistance=500,this.callback=null,this.targetValue=0,this.lastValue=0,this.smoother=zu(e,i=>{const r=i.x-this.lastValue;this.lastValue=i.x,this.callback?.(r)},40,.1,{x:0})}cancel(){this.lastValue!==this.targetValue&&(this.targetValue=wh([this.lastValue,this.targetValue],.3),this.smoother({x:this.targetValue}))}setMomentum(e,n){if(this.disabled){n(e);return}this.callback=n;const i=tr(this.targetValue+e-this.lastValue,-this.maxDistance,this.maxDistance);this.targetValue=this.lastValue+i,this.smoother({x:this.targetValue})}}function FN(t){const e={},n=["string","number","boolean"],i=["wheelDelta","wheelDeltaX","wheelDeltaY"];for(const r in t){const s=r;!i.includes(r)&&n.includes(typeof t[s])&&(e[s]=t[s])}return e}class RN{#e;#t;#n;#i;#s;#o;#r;#a;#c;#l;#f;#u;constructor({viewRoot:e,glHelper:n,tooltip:i,animator:r,emitEvent:s,tooltipHandlers:o,renderPickingFramebuffer:a,getDevicePixelRatio:l}){this.#e=e,this.#t=n,this.#n=i,this.#i=r,this.#s=s,this.#o=o,this.#r=a,this.#a=l,this.#c=void 0,this.#l=new kN(this.#i),this.#f=void 0,this.#u=!1}getCurrentHover(){return this.#c}registerMouseEvents(){const e=this.#t.canvas;let n=performance.now(),i=!1;const r=s=>{const o=performance.now(),a=o-n<200;if(s instanceof MouseEvent){const l=e.getBoundingClientRect(),c=new lt(s.clientX-l.left-e.clientLeft,s.clientY-l.top-e.clientTop);s.type=="mousemove"&&!a&&(this.#n.handleMouseMove(s),this.#u=!1,s.buttons==0&&!$1()&&(this.#r(),this.#A(c.x,c.y)));const f=u=>{this.#e.propagateInteractionEvent(new QN(c,u)),this.#u||this.#n.clear()};if(s.type!="wheel"&&this.#l.cancel(),(s.type=="mousedown"||s.type=="mouseup")&&!$1())this.#r();else if(s.type=="wheel"){n=o,this.#u=!1;const u=s;if(Math.abs(u.deltaX)>Math.abs(u.deltaY))this.#c=null,this.#l.cancel();else{const h=FN(u);this.#l.setMomentum(u.deltaY*(u.deltaMode?80:1),A=>{const d=new WheelEvent("wheel",{...h,deltaMode:0,deltaX:0,deltaY:A});f(d)}),u.preventDefault();return}}if(s.type=="click"){if(i)return;const u=this.#c?{type:s.type,viewPath:this.#c.mark.unitView.getLayoutAncestors().map(h=>h.name).reverse(),datum:this.#c.datum}:{type:s.type,viewPath:null,datum:null};this.#s("click",u)}(s.type!="click"||this.#f?.subtract(lt.fromMouseEvent(s)).length<3)&&f(s)}};["mousedown","mouseup","wheel","click","mousemove","gesturechange","contextmenu","dblclick"].forEach(s=>e.addEventListener(s,r)),e.addEventListener("mousedown",s=>{this.#f=lt.fromMouseEvent(s),this.#n.sticky?(this.#n.sticky=!1,this.#n.clear(),i=!0):i=!1;const o=()=>{document.addEventListener("mouseup",()=>this.#n.popEnabledState(),{once:!0}),this.#n.pushEnabledState(!1)};if(s.button==2||s.shiftKey||s.ctrlKey||s.metaKey)o();else if(this.#n.visible){const a=setTimeout(()=>{i=!0,this.#n.sticky=!0},400),l=()=>clearTimeout(a);document.addEventListener("mouseup",l,{once:!0}),document.addEventListener("mousemove",l,{once:!0})}}),e.addEventListener("dragstart",s=>s.stopPropagation()),e.addEventListener("mouseout",()=>{this.#n.clear(),this.#c=null})}#A(e,n){const i=this.#a(),r=ND(this.#t.gl,this.#t._pickingBufferInfo,e*i,n*i),s=r[0]|r[1]<<8|r[2]<<16|r[3]<<24;if(s==0){this.#c=null;return}if(s!==this.#c?.uniqueId&&(this.#c=null),this.#c||this.#e.visit(o=>{if(o instanceof nt){if(o.mark.isPickingParticipant()&&[...o.facetCoords.values()].some(a=>a.containsPoint(e,n))){const a=o.getCollector().findDatumByUniqueId(s);a&&(this.#c={mark:o.mark,datum:a,uniqueId:s})}if(this.#c)return Ar}}),this.#c){const o=this.#c.mark;this.updateTooltip(this.#c.datum,async a=>{if(!o.isPickingParticipant())return;const l=o.properties.tooltip;if(l!==null){const c=l?.handler??"default",f=this.#o[c];if(!f)throw new Error("No such tooltip handler: "+c);const u=Q1(a,o,l?.params);return f(a,o,l?.params,u)}})}}updateTooltip(e,n){if(!this.#u||!e)this.#n.updateWithDatum(e,n),this.#u=!0;else throw new Error("Tooltip has already been updated! Duplicate event handler?")}}class uw{constructor(e){this.globalOptions=e}pushView(e,n){}popView(e){}renderMark(e,n){}getDevicePixelRatio(){return 1}}class eA extends uw{#e=[0,0,0,0];#t;#n=[];#i;#s;#o=new Set;#r=void 0;#a=1;#c={width:0,height:0};constructor(e,n){if(super(e),this.#s=n.webGLHelper,this.#i=n.framebufferInfo,this.#a=n.devicePixelRatio,this.#c=n.canvasSize,n.clearColor){const i=Rn(n.clearColor).rgb();this.#e=[i.r/255,i.g/255,i.b/255,i.opacity]}}getDevicePixelRatio(){return this.#a}pushView(e,n){this.#o.add(e),this.#r=n}renderMark(e,n){if(this.globalOptions.picking&&!e.isPickingParticipant())return;const i=e.render(n);i&&this.#n.push({mark:e,callback:i,coords:this.#r,clipRect:n.clipRect})}render(){if(this.#t||this.#l(),this.#t.length==0)return;const e=this.#s.gl,n=this.#i;n?(e.bindFramebuffer(e.FRAMEBUFFER,n.framebuffer),e.viewport(0,0,n.width,n.height)):e.viewport(0,0,e.drawingBufferWidth,e.drawingBufferHeight),e.disable(e.SCISSOR_TEST),e.clearColor(...this.#e),e.clear(e.COLOR_BUFFER_BIT);for(const i of this.#o)i.onBeforeRender();for(const i of this.#t)i();this.#i&&e.bindFramebuffer(e.FRAMEBUFFER,null)}#l(){this.#t=[];let e=!0,n=!0;const i=o=>()=>{e&&o()},r=o=>()=>{e&&n&&o()},s=Oo(this.#n.reverse(),o=>o.mark);for(const[o,a]of[...s.entries()].reverse()){if(!o.isReady())continue;this.#t.push(()=>{e=o.unitView.getEffectiveOpacity()>0}),this.#t.push(...o.prepareRender(this.globalOptions).map(c=>i(c)));let l;for(const c of a){const f=c.coords;f.equals(l)||this.#t.push(i(()=>{n=o.setViewport(this.#c,this.#a,f,c.clipRect)})),this.#t.push(r(c.callback)),l=c.coords}}}}class NN extends uw{constructor(...e){super({}),this.contexts=e}pushView(e,n){for(const i of this.contexts)i.pushView(e,n)}popView(e){for(const n of this.contexts)n.popView(e)}renderMark(e,n){for(const i of this.contexts)i.renderMark(e,n)}}class MN{#e;#t;#n;#i;#s;#o;#r;#a;constructor({viewRoot:e,glHelper:n,getBackground:i,broadcast:r,onLayoutComputed:s}){this.#e=e,this.#t=n,this.#n=i,this.#i=r,this.#s=s,this.#o=void 0,this.#r=void 0,this.#a=!1}computeLayout(){const e=this.#e;if(!e)return;this.#i("layout");const n=this.#t.getLogicalCanvasSize();if(isNaN(n.width)||isNaN(n.height)){console.log(`NaN in canvas size: ${n.width}x${n.height}. Skipping computeLayout().`);return}const i={webGLHelper:this.#t,canvasSize:n,devicePixelRatio:window.devicePixelRatio??1};this.#o=new eA({picking:!1},{...i,clearColor:this.#n()}),this.#r=new eA({picking:!0},{...i,framebufferInfo:this.#t._pickingBufferInfo}),e.render(new NN(this.#o,this.#r),ve.create(0,0,n.width,n.height)),this.#s(),this.#i("layoutComputed")}renderAll(){this.#o?.render(),this.#a=!0}renderPickingFramebuffer(){this.#a&&(this.#r.render(),this.#a=!1)}}function TN(t){const e=o=>{throw new Error("ViewContext."+o+" is not configured.")},n={dataFlow:t.dataFlow??e("dataFlow"),glHelper:t.glHelper??e("glHelper"),animator:t.animator??e("animator"),genomeStore:t.genomeStore,fontManager:t.fontManager??e("fontManager"),createOrImportView:async function(o,a,l,c,f){const u=t.createOrImportViewWithContext;return u?u(n,o,a,l,c,f):Promise.reject(new Error("ViewContext.createOrImportView is not configured."))}},i=["requestLayoutReflow","updateTooltip","getNamedDataFromProvider","getCurrentHover","addKeyboardListener","addBroadcastListener","removeBroadcastListener","highlightView","isViewConfiguredVisible","isViewSpec"],r=t,s=n;for(const o of i)s[o]=r[o]??(()=>e(o));return n}function PN({glHelper:t,viewRoot:e,logicalWidth:n,logicalHeight:i,devicePixelRatio:r,clearColor:s="white"}){n??=t.getLogicalCanvasSize().width,i??=t.getLogicalCanvasSize().height,r??=window.devicePixelRatio??1;const o=t.gl,a=Math.floor(n*r),l=Math.floor(i*r),c=dg(o,[{format:o.RGBA,type:o.UNSIGNED_BYTE,minMag:o.LINEAR,wrap:o.CLAMP_TO_EDGE}],a,l),f=new eA({picking:!1},{webGLHelper:t,canvasSize:{width:n,height:i},devicePixelRatio:r,clearColor:s,framebufferInfo:c});return e.render(f,ve.create(0,0,n,i)),f.render(),MD(o,c,"image/png")}async function LN(){const{parquetReadObjects:t}=await Promise.resolve().then(()=>_P);return t}async function Aw(t){const e=await LN(),n=t instanceof Uint8Array?t.buffer:t;return await e({file:n})}Aw.responseType="arrayBuffer",ea("fasta",u6),ea("parquet",Aw);class hw{#e=[];#t;#n;#i;#s;#o;#r;#a=new Lx;#c=new Rd;#l=new Rd;constructor(e,n,i={}){this.container=e,this.options=i,i.inputBindingContainer??="default",this.spec=n,this.viewFactory=new BN,this.namedDataProviders=[],this.animator=new r6(()=>this.renderAll()),this.genomeStore=void 0,this.viewVisibilityPredicate=r=>r.isVisibleInSpec(),this.tooltipHandlers={default:D6,refseqgene:h6,...i.tooltipHandlers??{}},this.viewRoot=void 0,this.#s=new eB(e,i),this.dpr=window.devicePixelRatio}get#f(){return this.container.querySelector(".canvas-wrapper")}#u(){this.#s.initialize(this.viewRoot)}registerNamedDataProvider(e){this.namedDataProviders.unshift(e)}getNamedDataFromProvider(e){for(const n of this.namedDataProviders){const i=n(e);if(i)return i}}updateNamedData(e,n){const i=this.viewRoot.context.dataFlow.findNamedDataSource(e);if(!i)throw new Error("No such named data source: "+e);i.dataSource.updateDynamicData(n),this.animator.requestRender()}addEventListener(e,n){this.#c.add(e,n)}removeEventListener(e,n){this.#c.remove(e,n)}broadcast(e,n){const i={type:e,payload:n};this.viewRoot.visit(r=>r.handleBroadcast(i)),this.#l.emit(e,i)}#A(){const e=this.viewRoot.paramRuntime.allocateSetter("devicePixelRatio",this.dpr),n=()=>{this.#r.invalidateSize(),this.dpr=window.devicePixelRatio,e(this.dpr),this.computeLayout(),this.renderAll()};if(this.viewRoot.getSize().isGrowing()){const s=new ResizeObserver(n);s.observe(this.container),this.#e.push(()=>s.disconnect())}let i=null;const r=()=>{i!=null&&(i(),n());const s=matchMedia(`(resolution: ${window.devicePixelRatio}dppx)`);s.addEventListener("change",r),i=()=>{s.removeEventListener("change",r)}};r(),i&&this.#e.push(i)}#h(){const{canvasWrapper:e,loadingIndicatorsElement:n,tooltip:i}=Dx(this.container);this.#r=new kD(e,()=>this.viewRoot?BF(this.viewRoot):{width:void 0,height:void 0},{powerPreference:this.options.powerPreference??"default"}),e.appendChild(n),this.tooltip=i,this.#i=new Fd,this.#n=new Tx(n,this.#i)}destroy(){const e=this.#f;for(this.container.classList.remove("genome-spy"),e.classList.remove("loading"),this.#a.removeAll(),this.#e.forEach(n=>n()),this.#r.finalize(),this.#s.remove(),this.#n.destroy();this.container.firstChild;)this.container.firstChild.remove()}async#d(){await this.#g();const e=this.#p();await this.#y(e),await $R(this.viewRoot,e.dataFlow,e.fontManager,n=>this.broadcast("dataFlowBuilt",n)),this.#C(e)}async#g(){this.spec.genome&&(this.genomeStore=new s6(this.spec.baseUrl),await this.genomeStore.initialize(this.spec.genome))}#p(){const e=new m1;return e.loadingStatusRegistry=this.#i,TN({dataFlow:e,glHelper:this.#r,animator:this.animator,genomeStore:this.genomeStore,fontManager:new c6(this.#r),updateTooltip:this.updateTooltip.bind(this),getNamedDataFromProvider:this.getNamedDataFromProvider.bind(this),getCurrentHover:()=>this.#o.getCurrentHover(),addKeyboardListener:(n,i)=>{this.#a.add(n,r=>{this.#w(n,r)&&i(r)})},addBroadcastListener:(n,i)=>this.#l.add(n,i),removeBroadcastListener:(n,i)=>this.#l.remove(n,i),isViewConfiguredVisible:this.viewVisibilityPredicate,isViewSpec:n=>this.viewFactory.isViewSpec(n),createOrImportViewWithContext:(n,i,r,s,o,a)=>this.viewFactory.createOrImportView(i,n,r,s,o,a),highlightView:Px(this.container)})}#w(e,n){if(e==="keyup")return!0;const i=document.activeElement;return i&&i!==document.body?this.container.contains(i):this.container.matches(":hover")}async#y(e){const n=this.spec;n.datasets&&this.registerNamedDataProvider(i=>n.datasets[i]),this.viewRoot=await e.createOrImportView(n,null,null,lw),this.#i.set(this.viewRoot,"loading"),this.#f.style.flexGrow=this.viewRoot.getSize().height.grow>0?"1":"0",this.#u(),k6(this.viewRoot),P1(this.viewRoot),this.#m(),this.#r.invalidateSize(),this.#t=new MN({viewRoot:this.viewRoot,glHelper:this.#r,getBackground:()=>this.spec.background,broadcast:this.broadcast.bind(this),onLayoutComputed:()=>this.#n.updateLayout()}),e.requestLayoutReflow=this.computeLayout.bind(this),this.#A()}#m(){const e=T6(this.viewRoot);if(e.length)for(const n of e)console.warn("Selector constraints warning:",n.message)}#C(e){e.requestLayoutReflow=this.computeLayout.bind(this),this.viewRoot.visit(n=>_s(n,"size")),this.#r.invalidateSize(),this.#o=new RN({viewRoot:this.viewRoot,glHelper:this.#r,tooltip:this.tooltip,animator:this.animator,emitEvent:this.#c.emit.bind(this.#c),tooltipHandlers:this.tooltipHandlers,renderPickingFramebuffer:this.renderPickingFramebuffer.bind(this),getDevicePixelRatio:()=>this.dpr})}async launch(){let e=!1;try{return this.#h(),await this.#d(),this.registerMouseEvents(),this.computeLayout(),this.animator.requestRender(),e=!0,!0}catch(n){const i=`${n.view?`At "${n.view.getPathString()}": `:""}${n.toString()}`;return console.error(n.stack),this.options.onError?.(n,this.container)||kx(this.container,i),this.viewRoot&&this.#i.set(this.viewRoot,"error",i),!1}finally{this.#f.classList.remove("loading"),e&&this.viewRoot&&this.#i.set(this.viewRoot,"complete")}}async initializeVisibleViewData(){this.viewRoot&&(await e6(this.viewRoot,this.viewRoot.context.dataFlow,this.viewRoot.context.fontManager),this.viewRoot._invalidateCacheByPrefix("size","progeny"),this.#r.invalidateSize(),this.computeLayout(),this.animator.requestRender())}registerMouseEvents(){this.#o.registerMouseEvents()}updateTooltip(e,n){this.#o.updateTooltip(e,n)}exportCanvas(e,n,i,r="white"){const s=PN({glHelper:this.#r,viewRoot:this.viewRoot,logicalWidth:e,logicalHeight:n,devicePixelRatio:i,clearColor:r});return this.computeLayout(),this.renderAll(),s}getLogicalCanvasSize(){return this.#r.getLogicalCanvasSize()}computeLayout(){this.#t.computeLayout()}renderAll(){this.#t.renderAll()}renderPickingFramebuffer(){this.#t.renderPickingFramebuffer()}getSearchableViews(){const e=[];return this.viewRoot.visit(n=>{n instanceof nt&&n.getSearchAccessors().length>0&&e.push(n)}),e}getNamedScaleResolutions(){const e=new Map;return this.viewRoot.visit(n=>{for(const i of Object.values(n.resolutions.scale))i.name&&e.set(i.name,i)}),e}}const ON="data:image/svg+xml,%3csvg%20viewBox='0%200%2032%2032'%20xmlns='http://www.w3.org/2000/svg'%20fill-rule='evenodd'%20clip-rule='evenodd'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-miterlimit='1.5'%3e%3cpath%20d='M4.7%2021.2s.4%202.3%201.3%203.6C7%2026%209.8%2028%209.8%2028s3.4-2.6%206.4-8.5c0%200%201%20.1%201.9-.4.9-.6.8-.4%201-1.2%200%200%202.9.5%206.6%200%202.1-.3%204.3-1%206.2-2.5%200%200-1.1-1.7-2.5-5.1-.5-1.3-2-1.8-4.6-4.6l-8.2%208.6-11.9%206.9z'%20fill-opacity='.1'/%3e%3cpath%20d='M12.7%2014.8s-4-1.8-12%202.7c0%200%201%203.7%202.5%205.3%201.4%201.5%202.3%203.6%204.6%204.6%200%200%204.7-3%206.9-9.2l3-2s4.7%202.8%2012.6-1.6c0%200-.6-3.3-3-6-2.6-3-3.8-4.7-3.8-4.7s-4.1%202.3-7.5%209.3l-3.3%201.6z'%20fill='%237fbbdd'/%3e%3cpath%20d='M12.4%2015.5c-.7-.5-2.4-.8-4.4-.4-2%20.4-4%201.3-4.8%201.8-.5.3-1.2%201-1.2%201.4%200%20.7.3%201.8.8%202.4.3.3.7.5%201.4.6.8%200%202.5-1.4%203.5-2%201-.6%201.6-.8%202.7-1.2l-2.9%202.4c-1.3%201.2-2.2%201.5-2.4%202.3%200%20.5%200%201.4.5%201.8.4.5.6.8%201.6.8.6%200%201%200%202.6-1.5.9-.9%202.3-3%202.7-3.7.6-1.1%201-2.2.7-3-.2-1-.4-1.4-.8-1.7zM17.4%2014.2c-.3-.5-.9-1.2-.2-2.5l1.9-3c.5-.8%202-2.3%202.6-2.6.6-.4%201.5-.6%202-.2.6.4%201%201%201.3%201.5.4.6.7%201.3.2%202-.7%201-1.6.9-2.8%201.7-1.2.8-1.9%201.2-2.5%201.9l3.8-1.8c1.3-.6%202.7-1.1%203.4-.7.8.5.8.7%201%201.4.3%201-.2%201.9-.8%202.4-.5.6-1.5.9-2.6%201.2-1.4.4-4.5%201-5.8.5-1.3-.5-1.3-1.4-1.5-1.8z'%20fill='%23fff'/%3e%3cpath%20d='M12.7%2014.8s-4-1.8-12%202.7c0%200%201%203.7%202.5%205.3%201.4%201.5%202.3%203.6%204.6%204.6%200%200%204.7-3%206.9-9.2l3-2s4.7%202.8%2012.6-1.6c0%200-.6-3.3-3-6-2.6-3-3.8-4.7-3.8-4.7s-4.1%202.3-7.5%209.3l-3.3%201.6z'%20fill='none'%20stroke='%23000'%20stroke-width='.5'/%3e%3cpath%20d='M12.4%2014.9s2.1-2%203-2c1.1%200%202.3%202.7%202.3%203.5%200%20.8-2.1%202.4-3.1%202.3%200%200%200-1.2-.7-2.6-.8-1.3-1.5-1.2-1.5-1.2z'%20fill='%237fbbdd'/%3e%3cpath%20d='M13.8%2015.3c.9.8.6%202%201.4%201.8%201-.2%201.4-.8%201.3-1.5%200-.7%200-.8-.4-1.6-.3-.7-1-1.1-2-.5-.7.5-1.4%201.3-1.4%201.3s.2-.3%201.1.5z'%20fill='%23fff'/%3e%3cpath%20d='M12.4%2014.9s2.1-2%203-2c1.1%200%202.3%202.7%202.3%203.5%200%20.8-2.1%202.4-3.1%202.3%200%200%200-1.2-.7-2.6-.8-1.3-1.5-1.2-1.5-1.2z'%20fill='none'%20stroke='%23000'%20stroke-width='.5'/%3e%3c/svg%3e",UN="data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20style='fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5'%20viewBox='0%200%2064%2064'%3e%3cpath%20d='M208.6%20548.2s11.2%2046.2%2031.2%2071c20%2024.9%2079.3%2061.6%2079.3%2061.6S385.6%20623%20438%20498.3c0%200%2018.1%201%2036-11.9%2017.7-12.7%2016.3-7.9%2021-24.8%200%200%2057%206.3%20131-9.7%2041.7-9.1%2084.3-26.3%20121.5-58.8%200%200-25.4-32.9-58-101.7-12.4-26.1-41.9-34.3-98.7-88L438.1%20391.2%20208.6%20548.2Z'%20style='fill-opacity:.11'%20transform='matrix(.10221%20.00684%20-.00671%20.10035%20-8%20-13.2)'/%3e%3cg%20transform='rotate(-35.4%2034.2%2080.8)%20scale(.10057)'%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'%20style='fill:%237fbbdd'/%3e%3cclipPath%20id='a'%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'/%3e%3c/clipPath%3e%3cg%20clip-path='url(%23a)'%3e%3cpath%20d='M386.9%20397.2c-15.6-13.6-51.8-22.4-96.3-16.7-44.5%205.8-93.8%2021.8-111.8%2031.6-10.6%205.7-27.3%2017.3-28.1%2027.2-1.2%2014.2%202.9%2037.8%2015%2052%206%207.2%2014.2%2012.1%2028.1%2014.1%2017.9%202.6%2059-24.8%2081.6-36.2%2024-12%2038.6-14.6%2063-22.2%200%200-47%2031.6-68.2%2047.4-30.6%2022.9-51.6%2028-57.3%2045.5-3.1%209.4-.7%2027.9%207.5%2037.6%209%2011%2012.8%2017.6%2034.2%2020.1%2012.7%201.5%2022%201.2%2059.8-28.6%2021.7-17.2%2055.9-59.2%2067-74.4%2016.2-22%2023.8-43.1%2021.3-59.6-3.7-23.6-8.4-31.3-15.8-37.8Z'%20style='fill:%23fff'%20transform='scale(.88664)%20rotate(31.2%20485%20792.2)'/%3e%3cpath%20d='M484.7%20379c-5.4-11.1-17.6-28.5-.8-53.8a739%20739%200%200%201%2044.2-60.6c13.2-16.3%2046.7-46.2%2059.6-52%2013-6%2033.3-8.7%2044.2.2%2011%209.1%2016.5%2020.6%2023%2032.7%207.4%2013.8%2012.4%2029.3%201.6%2042.8-15.4%2019.2-34.3%2017-61.6%2031.5-27.7%2014.8-42.3%2023.1-55.7%2035.9%200%200%2052.2-21.6%2082-31.2%2029.8-9.7%2059.8-20%2074.8-8.5s14.6%2015.5%2018.4%2031.2c4.7%2019.4-7.2%2038-20.1%2048.6-13%2010.7-34.3%2016-57.4%2021-30.5%206.8-96.6%2015.1-124%202.6-27.5-12.6-24.4-32.8-28.2-40.5Z'%20style='fill:%23fff'%20transform='scale(.87906)%20rotate(31.2%20487.2%20893.5)'/%3e%3c/g%3e%3cpath%20d='M561.6%20349.2s-45.3-77.9-232.8-97.2c0%200-26.5%2073.2-21.1%20116%205.3%2043-4.7%2088.1%2021.4%20133.2%200%200%20114%205.5%20225.5-72.7l74.6%203.6S673.8%20534.4%20857%20554.4c0%200%2029.7-62.6%2022.2-137-8-78.7-7.5-124-7.5-124s-96.2-9.5-236.3%2068.4l-73.8-12.6Z'%20style='fill:none;stroke:%23000;stroke-width:16.57px'/%3e%3c/g%3e%3cg%20transform='rotate(-4.2%20-78%20211)%20scale(.10057)'%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'%20style='fill:%237fbbdd'/%3e%3cclipPath%20id='b'%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'/%3e%3c/clipPath%3e%3cg%20clip-path='url(%23b)'%3e%3cpath%20d='M413.3%20402.7c17.5%2018.9%2010%2045.7%2028.4%2043.4%2021.7-2.7%2030.9-15.7%2031.6-32.7.7-17-1-19.5-7.1-38-6.1-18.7-18.2-23.2-43.4-18.2-20.8%204.1-17.8%203-24%2010-6.4%207-14.5%2026-14.5%2026s8.4-12.7%2029%209.5Z'%20style='fill:%23fff'%20transform='matrix(.90907%200%200%20.85852%2037%2052.2)'/%3e%3c/g%3e%3cpath%20d='M385%20385.5s45.8-37.6%2065-35.4c21.7%202.5%2040.5%2057.6%2040.2%2074.3-.3%2016.7-47.3%2045.5-67.7%2041.8%200%200%203-24-10.4-52.9-13.4-28.8-27.2-27.8-27.2-27.8Z'%20style='fill:none;stroke:%23000;stroke-width:16.57px'/%3e%3c/g%3e%3c/svg%3e";async function _N(t,e,n={}){let i;if(le(t)){if(i=document.querySelector(t),!i)throw new Error(`No such element: ${t}`)}else if(t instanceof HTMLElement)i=t;else throw new Error(`Invalid element: ${t}`);let r;try{const s=Ge(e)?e:await dw(e);if(s.baseUrl??="",s.width??="container",s.padding??=10,i==document.body){const o=document.createElement("div");o.style.position="fixed",o.style.inset="0",o.style.overflow="hidden",i.appendChild(o),i=o}r=new hw(i,s,n),GN(r,n),await r.launch()}catch(s){i.innerText=s.toString(),console.error(s)}return{finalize(){for(r.destroy();i.firstChild;)i.firstChild.remove()},addEventListener(s,o){r.addEventListener(s,o)},removeEventListener(s,o){r.removeEventListener(s,o)},getScaleResolutionByName(s){return r.getNamedScaleResolutions().get(s)},updateNamedData:r.updateNamedData.bind(r),exportCanvas:r.exportCanvas.bind(r)}}function GN(t,e){e.namedDataProvider&&t.registerNamedDataProvider(e.namedDataProvider)}async function dw(t){let e;try{e=await n1(t)}catch(n){throw new Error(`Could not load or parse configuration: ${t}, reason: ${n.message}`)}if(!e.baseUrl){const n=t.match(/^[^?#]*\//);e.baseUrl=n&&n[0]||"./"}return e}class zN{constructor(e){this.blob=e}async read(e,n=0){if(!e)return new Uint8Array(0);const i=n,r=i+e,s=this.blob.slice(i,r);return s.bytes?s.bytes():new Uint8Array(await s.arrayBuffer())}async readFile(e){const n=typeof e=="string"?e:e?.encoding;if(n==="utf8")return this.blob.text();if(n)throw new Error(`unsupported encoding: ${n}`);return this.blob.bytes?this.blob.bytes():new Uint8Array(await this.blob.arrayBuffer())}async stat(){return{size:this.blob.size}}async close(){}}function HN(t){return(typeof t=="object"&&t!==null&&"message"in t?t.message:`${t}`).replace(/\.$/,"")}class Yt{constructor(e,n={}){this.baseOverrides={},this.url=e;const i=n.fetch||globalThis.fetch.bind(globalThis);n.overrides&&(this.baseOverrides=n.overrides),this.fetchImplementation=i}async fetch(e,n){const i=s=>new Error(`${HN(s)} fetching ${e}`,{cause:s});let r;try{r=await this.fetchImplementation(e,n)}catch(s){if(`${s}`.includes("Failed to fetch")){console.warn(`generic-filehandle: refetching ${e} to attempt to work around chrome CORS header caching bug`);try{r=await this.fetchImplementation(e,{...n,cache:"reload"})}catch(o){throw i(o)}}else throw i(s)}return r}async read(e,n,i={}){if(e===0)return new Uint8Array(0);const{headers:r={},signal:s,overrides:o={}}=i;e<1/0?r.range=`bytes=${n}-${n+e-1}`:e===1/0&&n!==0&&(r.range=`bytes=${n}-`);const a=await this.fetch(this.url,{...this.baseOverrides,...o,headers:{...this.baseOverrides.headers,...o.headers,...r},method:"GET",redirect:"follow",mode:"cors",signal:s});if(!a.ok)throw new Error(`HTTP ${a.status} fetching ${this.url}`);if(a.status===200&&n===0||a.status===206){const l=a.headers.get("content-range"),c=/\/(\d+)$/.exec(l||"");c?.[1]&&(this._stat={size:parseInt(c[1],10)});const f=a.bytes?await a.bytes():new Uint8Array(await a.arrayBuffer());return f.byteLength<=e?f:f.subarray(0,e)}throw new Error(a.status===200?`${this.url} fetch returned status 200, expected 206`:`HTTP ${a.status} fetching ${this.url}`)}async readFile(e={}){let n,i;if(typeof e=="string")n=e,i={};else{n=e.encoding;const{encoding:l,...c}=e;i=c}const{headers:r={},signal:s,overrides:o={}}=i,a=await this.fetch(this.url,{...this.baseOverrides,...o,headers:{...this.baseOverrides.headers,...o.headers,...r},method:"GET",redirect:"follow",mode:"cors",signal:s});if(!a.ok)throw new Error(`HTTP ${a.status} fetching ${this.url}`);if(n==="utf8")return a.text();if(n)throw new Error(`unsupported encoding: ${n}`);return a.bytes?a.bytes():new Uint8Array(await a.arrayBuffer())}async stat(){if(!this._stat&&(await this.read(10,0),!this._stat))throw new Error(`unable to determine size of file at ${this.url}`);return this._stat}async close(){}}class We{readFile(){throw new Error("unimplemented")}read(){throw new Error("unimplemented")}close(){throw new Error("unimplemented")}}const so=Object.freeze(Object.defineProperty({__proto__:null,BlobFile:zN,LocalFile:We,RemoteFile:Yt},Symbol.toStringTag,{value:"Module"})),gw=65536,YN=gw*gw;function tA(t,e=0){const n=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;return((t[e+4]|t[e+5]<<8|t[e+6]<<16|t[e+7]<<24)>>>0)*YN+(n>>>0)}const Ac=1;function pw(t,e,n){const i=e[Ac],r=n?n[Ac]:1/0;return i<=t&&r>t?0:i<t?-1:1}class VN{filehandle;index;constructor({filehandle:e}){this.filehandle=e}_getIndex(){return this.index||(this.index=this._readIndex().catch(e=>{throw this.index=void 0,e})),this.index}async _readIndex(){const e=await this.filehandle.read(8,0),n=tA(e);if(!n)return[[0,0]];const i=new Array(n+1);i[0]=[0,0];const r=16*n;if(r>Number.MAX_SAFE_INTEGER)throw new TypeError("integer overflow");const s=await this.filehandle.read(r,8);for(let o=0;o<n;o+=1){const a=tA(s,o*16),l=tA(s,o*16+8);i[o+1]=[a,l]}return i}async getLastBlock(){return(await this._getIndex()).at(-1)}async getRelevantBlocksForRead(e,n){const i=n+e;if(e===0)return[];const r=await this._getIndex(),s=[];let o=0,a=r.length-1,l=Math.floor(r.length/2),c=pw(n,r[l],r[l+1]);for(;c!==0;)c>0?a=l-1:c<0&&(o=l+1),l=Math.ceil((a-o)/2)+o,c=pw(n,r[l],r[l+1]);s.push(r[l]);let f=l+1;for(;f<r.length&&(s.push(r[f]),!(r[f][Ac]>=i));f+=1);return s[s.length-1][Ac]<i&&s.push([]),s}}var mw=0,nA=2,hc=4,Ii=0,dc=1,JN=2,qN=-5;function KN(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function jN(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var n=e.shift();if(n){if(typeof n!="object")throw new TypeError(n+"must be non-object");for(var i in n)KN(n,i)&&(t[i]=n[i])}}return t}function ww(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)}var oo={arraySet:function(t,e,n,i,r){if(e.subarray&&t.subarray){t.set(e.subarray(n,n+i),r);return}for(var s=0;s<i;s++)t[r+s]=e[n+s]},flattenChunks:function(t){var e,n,i,r,s,o;for(i=0,e=0,n=t.length;e<n;e++)i+=t[e].length;for(o=new Uint8Array(i),r=0,e=0,n=t.length;e<n;e++)s=t[e],o.set(s,r),r+=s.length;return o},Buf8:function(t){return new Uint8Array(t)},Buf16:function(t){return new Uint16Array(t)},Buf32:function(t){return new Int32Array(t)}},ao={arraySet:function(t,e,n,i,r){for(var s=0;s<i;s++)t[r+s]=e[n+s]},flattenChunks:function(t){return[].concat.apply([],t)},Buf8:function(t){return new Array(t)},Buf16:function(t){return new Array(t)},Buf32:function(t){return new Array(t)}};let dr=()=>{const t=typeof Uint8Array<"u"&&typeof Uint16Array<"u"&&typeof Int32Array<"u";return dr=()=>t,t},_n=(t,e,n,i,r)=>(_n=dr()?oo.arraySet:ao.arraySet,_n(t,e,n,i,r)),iA=t=>(iA=dr()?oo.flattenChunks:ao.flattenChunks,iA(t)),gr=t=>(gr=dr()?oo.Buf8:ao.Buf8,gr(t)),pr=t=>(pr=dr()?oo.Buf16:ao.Buf16,pr(t)),mr=t=>(mr=dr()?oo.Buf32:ao.Buf32,mr(t)),yw=function(){let t=!0;try{String.fromCharCode.apply(null,[0])}catch{t=!1}return yw=()=>t,t},Cw=function(){let t=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{t=!1}return Cw=()=>t,t},rA=function(t){for(var e=gr(256),n=0;n<256;n++)e[n]=n>=252?6:n>=248?5:n>=240?4:n>=224?3:n>=192?2:1;return e[254]=e[254]=1,rA=i=>e[i],e[t]};function Ew(t){var e,n,i,r,s,o=t.length,a=0;for(r=0;r<o;r++)n=t.charCodeAt(r),(n&64512)===55296&&r+1<o&&(i=t.charCodeAt(r+1),(i&64512)===56320&&(n=65536+(n-55296<<10)+(i-56320),r++)),a+=n<128?1:n<2048?2:n<65536?3:4;for(e=new Uint8Array(a),s=0,r=0;s<a;r++)n=t.charCodeAt(r),(n&64512)===55296&&r+1<o&&(i=t.charCodeAt(r+1),(i&64512)===56320&&(n=65536+(n-55296<<10)+(i-56320),r++)),n<128?e[s++]=n:n<2048?(e[s++]=192|n>>>6,e[s++]=128|n&63):n<65536?(e[s++]=224|n>>>12,e[s++]=128|n>>>6&63,e[s++]=128|n&63):(e[s++]=240|n>>>18,e[s++]=128|n>>>12&63,e[s++]=128|n>>>6&63,e[s++]=128|n&63);return e}function WN(t,e){if(e<65534&&(t.subarray&&Cw()||!t.subarray&&yw()))return String.fromCharCode.apply(null,ww(t,e));for(var n="",i=0;i<e;i++)n+=String.fromCharCode(t[i]);return n}function XN(t){for(var e=new Uint8Array(t.length),n=0,i=e.length;n<i;n++)e[n]=t.charCodeAt(n);return e}function ZN(t,e){var n,i,r,s,o=e||t.length,a=new Array(o*2);for(i=0,n=0;n<o;){if(r=t[n++],r<128){a[i++]=r;continue}if(s=rA(r),s>4){a[i++]=65533,n+=s-1;continue}for(r&=s===2?31:s===3?15:7;s>1&&n<o;)r=r<<6|t[n++]&63,s--;if(s>1){a[i++]=65533;continue}r<65536?a[i++]=r:(r-=65536,a[i++]=55296|r>>10&1023,a[i++]=56320|r&1023)}return WN(a,i)}function $N(t,e){var n;for(e=e||t.length,e>t.length&&(e=t.length),n=e-1;n>=0&&(t[n]&192)===128;)n--;return n<0||n===0?e:n+rA(t[n])>e?n:e}function eM(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}function sA(t,e,n,i){for(var r=t&65535|0,s=t>>>16&65535|0,o=0;n!==0;){o=n>2e3?2e3:n,n-=o;do r=r+e[i++]|0,s=s+r|0;while(--o);r%=65521,s%=65521}return r|s<<16|0}function tM(){for(var t,e=[],n=0;n<256;n++){t=n;for(var i=0;i<8;i++)t=t&1?3988292384^t>>>1:t>>>1;e[n]=t}return e}let Iw=function(){const t=tM();return Iw=()=>t,t};function Vt(t,e,n,i){var r=Iw(),s=i+n;t^=-1;for(var o=i;o<s;o++)t=t>>>8^r[(t^e[o])&255];return t^-1}var gc=30,nM=12;function iM(t,e){var n,i,r,s,o,a,l,c,f,u,h,A,d,g,m,p,w,C,y,b,x,I,S,Q,v;n=t.state,i=t.next_in,Q=t.input,r=i+(t.avail_in-5),s=t.next_out,v=t.output,o=s-(e-t.avail_out),a=s+(t.avail_out-257),l=n.dmax,c=n.wsize,f=n.whave,u=n.wnext,h=n.window,A=n.hold,d=n.bits,g=n.lencode,m=n.distcode,p=(1<<n.lenbits)-1,w=(1<<n.distbits)-1;e:do{d<15&&(A+=Q[i++]<<d,d+=8,A+=Q[i++]<<d,d+=8),C=g[A&p];t:for(;;){if(y=C>>>24,A>>>=y,d-=y,y=C>>>16&255,y===0)v[s++]=C&65535;else if(y&16){b=C&65535,y&=15,y&&(d<y&&(A+=Q[i++]<<d,d+=8),b+=A&(1<<y)-1,A>>>=y,d-=y),d<15&&(A+=Q[i++]<<d,d+=8,A+=Q[i++]<<d,d+=8),C=m[A&w];n:for(;;){if(y=C>>>24,A>>>=y,d-=y,y=C>>>16&255,y&16){if(x=C&65535,y&=15,d<y&&(A+=Q[i++]<<d,d+=8,d<y&&(A+=Q[i++]<<d,d+=8)),x+=A&(1<<y)-1,x>l){t.msg="invalid distance too far back",n.mode=gc;break e}if(A>>>=y,d-=y,y=s-o,x>y){if(y=x-y,y>f&&n.sane){t.msg="invalid distance too far back",n.mode=gc;break e}if(I=0,S=h,u===0){if(I+=c-y,y<b){b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}}else if(u<y){if(I+=c+u-y,y-=u,y<b){b-=y;do v[s++]=h[I++];while(--y);if(I=0,u<b){y=u,b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}}}else if(I+=u-y,y<b){b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}for(;b>2;)v[s++]=S[I++],v[s++]=S[I++],v[s++]=S[I++],b-=3;b&&(v[s++]=S[I++],b>1&&(v[s++]=S[I++]))}else{I=s-x;do v[s++]=v[I++],v[s++]=v[I++],v[s++]=v[I++],b-=3;while(b>2);b&&(v[s++]=v[I++],b>1&&(v[s++]=v[I++]))}}else if((y&64)===0){C=m[(C&65535)+(A&(1<<y)-1)];continue n}else{t.msg="invalid distance code",n.mode=gc;break e}break}}else if((y&64)===0){C=g[(C&65535)+(A&(1<<y)-1)];continue t}else if(y&32){n.mode=nM;break e}else{t.msg="invalid literal/length code",n.mode=gc;break e}break}}while(i<r&&s<a);b=d>>3,i-=b,d-=b<<3,A&=(1<<d)-1,t.next_in=i,t.next_out=s,t.avail_in=i<r?5+(r-i):5-(i-r),t.avail_out=s<a?257+(a-s):257-(s-a),n.hold=A,n.bits=d}var wr=15,bw=852,xw=592,Bw=0,oA=1,vw=2,rM=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],sM=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],oM=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],aM=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];function co(t,e,n,i,r,s,o,a){var l=a.bits,c=0,f=0,u=0,h=0,A=0,d=0,g=0,m=0,p=0,w=0,C,y,b,x,I,S=null,Q=0,v,F=pr(wr+1),R=pr(wr+1),M=null,O=0,z,_,Y;for(c=0;c<=wr;c++)F[c]=0;for(f=0;f<i;f++)F[e[n+f]]++;for(A=l,h=wr;h>=1&&F[h]===0;h--);if(A>h&&(A=h),h===0)return r[s++]=1<<24|64<<16|0,r[s++]=1<<24|64<<16|0,a.bits=1,0;for(u=1;u<h&&F[u]===0;u++);for(A<u&&(A=u),m=1,c=1;c<=wr;c++)if(m<<=1,m-=F[c],m<0)return-1;if(m>0&&(t===Bw||h!==1))return-1;for(R[1]=0,c=1;c<wr;c++)R[c+1]=R[c]+F[c];for(f=0;f<i;f++)e[n+f]!==0&&(o[R[e[n+f]]++]=f);if(t===Bw?(S=M=o,v=19):t===oA?(S=rM,Q-=257,M=sM,O-=257,v=256):(S=oM,M=aM,v=-1),w=0,f=0,c=u,I=s,d=A,g=0,b=-1,p=1<<A,x=p-1,t===oA&&p>bw||t===vw&&p>xw)return 1;for(;;){z=c-g,o[f]<v?(_=0,Y=o[f]):o[f]>v?(_=M[O+o[f]],Y=S[Q+o[f]]):(_=96,Y=0),C=1<<c-g,y=1<<d,u=y;do y-=C,r[I+(w>>g)+y]=z<<24|_<<16|Y|0;while(y!==0);for(C=1<<c-1;w&C;)C>>=1;if(C!==0?(w&=C-1,w+=C):w=0,f++,--F[c]===0){if(c===h)break;c=e[n+o[f]]}if(c>A&&(w&x)!==b){for(g===0&&(g=A),I+=u,d=c-g,m=1<<d;d+g<h&&(m-=F[d+g],!(m<=0));)d++,m<<=1;if(p+=1<<d,t===oA&&p>bw||t===vw&&p>xw)return 1;b=w&x,r[b]=A<<24|d<<16|I-s|0}}return w!==0&&(r[I+w]=c-g<<24|64<<16|0),a.bits=A,0}var cM=0,Sw=1,Qw=2,Dw=4,bi=0,lM=1,fM=2,wt=-2,kw=-3,Fw=-4,uM=-5,Rw=8,Nw=1,Mw=2,Tw=3,Pw=4,Lw=5,Ow=6,Uw=7,_w=8,Gw=9,zw=10,pc=11,fn=12,aA=13,Hw=14,cA=15,Yw=16,Vw=17,Jw=18,qw=19,mc=20,wc=21,Kw=22,jw=23,Ww=24,Xw=25,Zw=26,lA=27,$w=28,ey=29,pe=30,ty=31,AM=32,hM=852,dM=592;function ny(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function gM(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=pr(320),this.work=pr(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function pM(t){var e;return!t||!t.state?wt:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=Nw,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=mr(hM),e.distcode=e.distdyn=mr(dM),e.sane=1,e.back=-1,bi)}function mM(t){var e;return!t||!t.state?wt:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,pM(t))}function wM(t,e){var n,i;return!t||!t.state||(i=t.state,e<0?(n=0,e=-e):(n=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?wt:(i.window!==null&&i.wbits!==e&&(i.window=null),i.wrap=n,i.wbits=e,mM(t))}function yM(t,e){var n,i;return t?(i=new gM,t.state=i,i.window=null,n=wM(t,e),n!==bi&&(t.state=null),n):wt}var iy=!0,fA,uA;function CM(t){if(iy){var e;for(fA=mr(512),uA=mr(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(co(Sw,t.lens,0,288,fA,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;co(Qw,t.lens,0,32,uA,0,t.work,{bits:5}),iy=!1}t.lencode=fA,t.lenbits=9,t.distcode=uA,t.distbits=5}function ry(t,e,n,i){var r,s=t.state;return s.window===null&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=gr(s.wsize)),i>=s.wsize?(_n(s.window,e,n-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(r=s.wsize-s.wnext,r>i&&(r=i),_n(s.window,e,n-i,r,s.wnext),i-=r,i?(_n(s.window,e,n-i,i,0),s.wnext=i,s.whave=s.wsize):(s.wnext+=r,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=r))),0}function EM(t,e){var n,i,r,s,o,a,l,c,f,u,h,A,d,g,m=0,p,w,C,y,b,x,I,S,Q=gr(4),v,F,R=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return wt;n=t.state,n.mode===fn&&(n.mode=aA),o=t.next_out,r=t.output,l=t.avail_out,s=t.next_in,i=t.input,a=t.avail_in,c=n.hold,f=n.bits,u=a,h=l,S=bi;e:for(;;)switch(n.mode){case Nw:if(n.wrap===0){n.mode=aA;break}for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.wrap&2&&c===35615){n.check=0,Q[0]=c&255,Q[1]=c>>>8&255,n.check=Vt(n.check,Q,2,0),c=0,f=0,n.mode=Mw;break}if(n.flags=0,n.head&&(n.head.done=!1),!(n.wrap&1)||(((c&255)<<8)+(c>>8))%31){t.msg="incorrect header check",n.mode=pe;break}if((c&15)!==Rw){t.msg="unknown compression method",n.mode=pe;break}if(c>>>=4,f-=4,I=(c&15)+8,n.wbits===0)n.wbits=I;else if(I>n.wbits){t.msg="invalid window size",n.mode=pe;break}n.dmax=1<<I,t.adler=n.check=1,n.mode=c&512?zw:fn,c=0,f=0;break;case Mw:for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.flags=c,(n.flags&255)!==Rw){t.msg="unknown compression method",n.mode=pe;break}if(n.flags&57344){t.msg="unknown header flags set",n.mode=pe;break}n.head&&(n.head.text=c>>8&1),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Vt(n.check,Q,2,0)),c=0,f=0,n.mode=Tw;case Tw:for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.head&&(n.head.time=c),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,Q[2]=c>>>16&255,Q[3]=c>>>24&255,n.check=Vt(n.check,Q,4,0)),c=0,f=0,n.mode=Pw;case Pw:for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.head&&(n.head.xflags=c&255,n.head.os=c>>8),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Vt(n.check,Q,2,0)),c=0,f=0,n.mode=Lw;case Lw:if(n.flags&1024){for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.length=c,n.head&&(n.head.extra_len=c),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Vt(n.check,Q,2,0)),c=0,f=0}else n.head&&(n.head.extra=null);n.mode=Ow;case Ow:if(n.flags&1024&&(A=n.length,A>a&&(A=a),A&&(n.head&&(I=n.head.extra_len-n.length,n.head.extra||(n.head.extra=new Array(n.head.extra_len)),_n(n.head.extra,i,s,A,I)),n.flags&512&&(n.check=Vt(n.check,i,A,s)),a-=A,s+=A,n.length-=A),n.length))break e;n.length=0,n.mode=Uw;case Uw:if(n.flags&2048){if(a===0)break e;A=0;do I=i[s+A++],n.head&&I&&n.length<65536&&(n.head.name+=String.fromCharCode(I));while(I&&A<a);if(n.flags&512&&(n.check=Vt(n.check,i,A,s)),a-=A,s+=A,I)break e}else n.head&&(n.head.name=null);n.length=0,n.mode=_w;case _w:if(n.flags&4096){if(a===0)break e;A=0;do I=i[s+A++],n.head&&I&&n.length<65536&&(n.head.comment+=String.fromCharCode(I));while(I&&A<a);if(n.flags&512&&(n.check=Vt(n.check,i,A,s)),a-=A,s+=A,I)break e}else n.head&&(n.head.comment=null);n.mode=Gw;case Gw:if(n.flags&512){for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c!==(n.check&65535)){t.msg="header crc mismatch",n.mode=pe;break}c=0,f=0}n.head&&(n.head.hcrc=n.flags>>9&1,n.head.done=!0),t.adler=n.check=0,n.mode=fn;break;case zw:for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}t.adler=n.check=ny(c),c=0,f=0,n.mode=pc;case pc:if(n.havedict===0)return t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,fM;t.adler=n.check=1,n.mode=fn;case fn:case aA:if(n.last){c>>>=f&7,f-=f&7,n.mode=lA;break}for(;f<3;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}switch(n.last=c&1,c>>>=1,f-=1,c&3){case 0:n.mode=Hw;break;case 1:CM(n),n.mode=mc;break;case 2:n.mode=Vw;break;case 3:t.msg="invalid block type",n.mode=pe}c>>>=2,f-=2;break;case Hw:for(c>>>=f&7,f-=f&7;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if((c&65535)!==(c>>>16^65535)){t.msg="invalid stored block lengths",n.mode=pe;break}n.length=c&65535,c=0,f=0,n.mode=cA;case cA:n.mode=Yw;case Yw:if(A=n.length,A){if(A>a&&(A=a),A>l&&(A=l),A===0)break e;_n(r,i,s,A,o),a-=A,s+=A,l-=A,o+=A,n.length-=A;break}n.mode=fn;break;case Vw:for(;f<14;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.nlen=(c&31)+257,c>>>=5,f-=5,n.ndist=(c&31)+1,c>>>=5,f-=5,n.ncode=(c&15)+4,c>>>=4,f-=4,n.nlen>286||n.ndist>30){t.msg="too many length or distance symbols",n.mode=pe;break}n.have=0,n.mode=Jw;case Jw:for(;n.have<n.ncode;){for(;f<3;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.lens[R[n.have++]]=c&7,c>>>=3,f-=3}for(;n.have<19;)n.lens[R[n.have++]]=0;if(n.lencode=n.lendyn,n.lenbits=7,v={bits:n.lenbits},S=co(cM,n.lens,0,19,n.lencode,0,n.work,v),n.lenbits=v.bits,S){t.msg="invalid code lengths set",n.mode=pe;break}n.have=0,n.mode=qw;case qw:for(;n.have<n.nlen+n.ndist;){for(;m=n.lencode[c&(1<<n.lenbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(C<16)c>>>=p,f-=p,n.lens[n.have++]=C;else{if(C===16){for(F=p+2;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c>>>=p,f-=p,n.have===0){t.msg="invalid bit length repeat",n.mode=pe;break}I=n.lens[n.have-1],A=3+(c&3),c>>>=2,f-=2}else if(C===17){for(F=p+3;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=p,f-=p,I=0,A=3+(c&7),c>>>=3,f-=3}else{for(F=p+7;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=p,f-=p,I=0,A=11+(c&127),c>>>=7,f-=7}if(n.have+A>n.nlen+n.ndist){t.msg="invalid bit length repeat",n.mode=pe;break}for(;A--;)n.lens[n.have++]=I}}if(n.mode===pe)break;if(n.lens[256]===0){t.msg="invalid code -- missing end-of-block",n.mode=pe;break}if(n.lenbits=9,v={bits:n.lenbits},S=co(Sw,n.lens,0,n.nlen,n.lencode,0,n.work,v),n.lenbits=v.bits,S){t.msg="invalid literal/lengths set",n.mode=pe;break}if(n.distbits=6,n.distcode=n.distdyn,v={bits:n.distbits},S=co(Qw,n.lens,n.nlen,n.ndist,n.distcode,0,n.work,v),n.distbits=v.bits,S){t.msg="invalid distances set",n.mode=pe;break}n.mode=mc;case mc:n.mode=wc;case wc:if(a>=6&&l>=258){t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,iM(t,h),o=t.next_out,r=t.output,l=t.avail_out,s=t.next_in,i=t.input,a=t.avail_in,c=n.hold,f=n.bits,n.mode===fn&&(n.back=-1);break}for(n.back=0;m=n.lencode[c&(1<<n.lenbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(w&&(w&240)===0){for(y=p,b=w,x=C;m=n.lencode[x+((c&(1<<y+b)-1)>>y)],p=m>>>24,w=m>>>16&255,C=m&65535,!(y+p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=y,f-=y,n.back+=y}if(c>>>=p,f-=p,n.back+=p,n.length=C,w===0){n.mode=Zw;break}if(w&32){n.back=-1,n.mode=fn;break}if(w&64){t.msg="invalid literal/length code",n.mode=pe;break}n.extra=w&15,n.mode=Kw;case Kw:if(n.extra){for(F=n.extra;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.length+=c&(1<<n.extra)-1,c>>>=n.extra,f-=n.extra,n.back+=n.extra}n.was=n.length,n.mode=jw;case jw:for(;m=n.distcode[c&(1<<n.distbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if((w&240)===0){for(y=p,b=w,x=C;m=n.distcode[x+((c&(1<<y+b)-1)>>y)],p=m>>>24,w=m>>>16&255,C=m&65535,!(y+p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=y,f-=y,n.back+=y}if(c>>>=p,f-=p,n.back+=p,w&64){t.msg="invalid distance code",n.mode=pe;break}n.offset=C,n.extra=w&15,n.mode=Ww;case Ww:if(n.extra){for(F=n.extra;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.offset+=c&(1<<n.extra)-1,c>>>=n.extra,f-=n.extra,n.back+=n.extra}if(n.offset>n.dmax){t.msg="invalid distance too far back",n.mode=pe;break}n.mode=Xw;case Xw:if(l===0)break e;if(A=h-l,n.offset>A){if(A=n.offset-A,A>n.whave&&n.sane){t.msg="invalid distance too far back",n.mode=pe;break}A>n.wnext?(A-=n.wnext,d=n.wsize-A):d=n.wnext-A,A>n.length&&(A=n.length),g=n.window}else g=r,d=o-n.offset,A=n.length;A>l&&(A=l),l-=A,n.length-=A;do r[o++]=g[d++];while(--A);n.length===0&&(n.mode=wc);break;case Zw:if(l===0)break e;r[o++]=n.length,l--,n.mode=wc;break;case lA:if(n.wrap){for(;f<32;){if(a===0)break e;a--,c|=i[s++]<<f,f+=8}if(h-=l,t.total_out+=h,n.total+=h,h&&(t.adler=n.check=n.flags?Vt(n.check,r,h,o-h):sA(n.check,r,h,o-h)),h=l,(n.flags?c:ny(c))!==n.check){t.msg="incorrect data check",n.mode=pe;break}c=0,f=0}n.mode=$w;case $w:if(n.wrap&&n.flags){for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c!==(n.total&4294967295)){t.msg="incorrect length check",n.mode=pe;break}c=0,f=0}n.mode=ey;case ey:S=lM;break e;case pe:S=kw;break e;case ty:return Fw;case AM:default:return wt}return t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,(n.wsize||h!==t.avail_out&&n.mode<pe&&(n.mode<lA||e!==Dw))&&ry(t,t.output,t.next_out,h-t.avail_out),u-=t.avail_in,h-=t.avail_out,t.total_in+=u,t.total_out+=h,n.total+=h,n.wrap&&h&&(t.adler=n.check=n.flags?Vt(n.check,r,h,t.next_out-h):sA(n.check,r,h,t.next_out-h)),t.data_type=n.bits+(n.last?64:0)+(n.mode===fn?128:0)+(n.mode===mc||n.mode===cA?256:0),(u===0&&h===0||e===Dw)&&S===bi&&(S=uM),S}function IM(t){if(!t||!t.state)return wt;var e=t.state;return e.window&&(e.window=null),t.state=null,bi}function bM(t,e){var n;return!t||!t.state||(n=t.state,(n.wrap&2)===0)?wt:(n.head=e,e.done=!1,bi)}function sy(t,e){var n=e.length,i,r,s;return!t||!t.state||(i=t.state,i.wrap!==0&&i.mode!==pc)?wt:i.mode===pc&&(r=1,r=sA(r,e,n,0),r!==i.check)?kw:(s=ry(t,e,n,n),s?(i.mode=ty,Fw):(i.havedict=1,bi))}const AA={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};function xM(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var hA=Object.prototype.toString;let oy=class uh{constructor(e){if(!(this instanceof uh))return new uh(e);this.options=jN({chunkSize:16384,windowBits:0,to:""},e||{});var n=this.options;n.raw&&n.windowBits>=0&&n.windowBits<16&&(n.windowBits=-n.windowBits,n.windowBits===0&&(n.windowBits=-15)),n.windowBits>=0&&n.windowBits<16&&!(e&&e.windowBits)&&(n.windowBits+=32),n.windowBits>15&&n.windowBits<48&&(n.windowBits&15)===0&&(n.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new xM,this.strm.avail_out=0;var i=yM(this.strm,n.windowBits);if(i!==Ii)throw new Error(AA[i]);if(this.header=new eM,bM(this.strm,this.header),n.dictionary&&(typeof n.dictionary=="string"?n.dictionary=Ew(n.dictionary):hA.call(n.dictionary)==="[object ArrayBuffer]"&&(n.dictionary=new Uint8Array(n.dictionary)),n.raw&&(i=sy(this.strm,n.dictionary),i!==Ii)))throw new Error(AA[i])}push(e,n){var i=this.strm,r=this.options.chunkSize,s=this.options.dictionary,o,a,l,c,f,u,h=!1;if(this.ended)return!1;a=n===~~n?n:n===!0?hc:mw,typeof e=="string"?i.input=XN(e):hA.call(e)==="[object ArrayBuffer]"?i.input=new Uint8Array(e):i.input=e,i.next_in=0,i.avail_in=i.input.length;do{if(i.avail_out===0&&(i.output=gr(r),i.next_out=0,i.avail_out=r),o=EM(i,mw),o===JN&&s&&(typeof s=="string"?u=Ew(s):hA.call(s)==="[object ArrayBuffer]"?u=new Uint8Array(s):u=s,o=sy(this.strm,u)),o===qN&&h===!0&&(o=Ii,h=!1),o!==dc&&o!==Ii)return this.onEnd(o),this.ended=!0,!1;i.next_out&&(i.avail_out===0||o===dc||i.avail_in===0&&(a===hc||a===nA))&&(this.options.to==="string"?(l=$N(i.output,i.next_out),c=i.next_out-l,f=ZN(i.output,l),i.next_out=c,i.avail_out=r-c,c&&_n(i.output,i.output,l,c,0),this.onData(f)):this.onData(ww(i.output,i.next_out))),i.avail_in===0&&i.avail_out===0&&(h=!0)}while((i.avail_in>0||i.avail_out===0)&&o!==dc);return o===dc&&(a=hc),a===hc?(o=IM(this.strm),this.onEnd(o),this.ended=!0,o===Ii):(a===nA&&(this.onEnd(Ii),i.avail_out=0),!0)}onData(e){this.chunks.push(e)}onEnd(e){e===Ii&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=iA(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg}};function BM(t,e){var n=new oy(e);if(n.push(t,!0),n.err)throw n.msg||AA[n.err];return n.result}function vM(t,e){return e=e||{},e.raw=!0,BM(t,e)}function SM(t){let e=0;for(const n of t)e+=n.length;return e}function ay(t,e){const n=new Uint8Array(e??SM(t));let i=0;for(const r of t)n.set(r,i),i+=r.length;return n}async function QM(t){try{let e,n=0,i;const r=[];let s=0;do{const o=t.subarray(n);if(i=new oy(void 0),{strm:e}=i,i.push(o,nA),i.err)throw new Error(i.msg);n+=e.next_in;const a=i.result;r.push(a),s+=a.length}while(e.avail_in);return ay(r,s)}catch(e){throw/incorrect header check/.exec(`${e}`)?new Error("problem decompressing block: incorrect gzip header check"):e}}class cy{filehandle;gzi;constructor({filehandle:e,gziFilehandle:n}){this.filehandle=e,this.gzi=new VN({filehandle:n})}async _readAndUncompressBlock(e,n){let i=n;i||(i=(await this.filehandle.stat()).size);const r=i-e,s=await this.filehandle.read(r,e);return QM(s)}async read(e,n){const i=await this.gzi.getRelevantBlocksForRead(e,n),r=[];for(let s=0;s<i.length-1;s+=1){const o=await this._readAndUncompressBlock(i[s][0],i[s+1][0]),[,a]=i[s],l=a>=n?0:n-a,c=Math.min(n+e,a+o.length)-a;l>=0&&l<o.length&&r.push(o.subarray(l,c))}return ay(r)}}function ly(t,e){return t.offset+t.lineBytes*Math.floor(e/t.lineLength)+e%t.lineLength}async function DM(t,e={}){const n=new TextDecoder("utf8");return Object.fromEntries(n.decode(await t.readFile(e)).split(/\r?\n/).map(i=>i.trim()).filter(i=>!!i).map(i=>i.split(" ")).map(i=>{if(i[0]?.startsWith(">"))throw new Error("found > in sequence name, might have supplied FASTA file for the FASTA index");return[i[0],{name:i[0],length:+i[1],start:0,end:+i[1],offset:+i[2],lineLength:+i[3],lineBytes:+i[4]}]}))}class fy{constructor({fasta:e,fai:n,path:i,faiPath:r}){if(e)this.fasta=e;else if(i)this.fasta=new We(i);else throw new Error("Need to pass filehandle for fasta or path to localfile");if(n)this.fai=n;else if(r)this.fai=new We(r);else if(i)this.fai=new We(`${i}.fai`);else throw new Error("Need to pass filehandle for or path to localfile")}async _getIndexes(e){return this.indexes||(this.indexes=DM(this.fai,e).catch(n=>{throw this.indexes=void 0,n})),this.indexes}async getSequenceNames(e){return Object.keys(await this._getIndexes(e))}async getSequenceSizes(e){const n={},i=await this._getIndexes(e);for(const r of Object.values(i))n[r.name]=r.length;return n}async getSequenceSize(e,n){return(await this._getIndexes(n))[e]?.length}async hasReferenceSequence(e,n){return!!(await this._getIndexes(n))[e]}async getResiduesByName(e,n,i,r){const s=(await this._getIndexes(r))[e];return s?this._fetchFromIndexEntry(s,n,i,r):void 0}async getSequence(e,n,i,r){return this.getResiduesByName(e,n,i,r)}async _fetchFromIndexEntry(e,n=0,i,r){let s=i;if(n<0)throw new TypeError("regionStart cannot be less than 0");if((s===void 0||s>e.length)&&(s=e.length),n>=s)return"";const o=ly(e,n),a=ly(e,s)-o,c=new TextDecoder("utf8").decode(await this.fasta.read(a,o,r)).replace(/\s+/g,"");if(/[^\x20-\x7e]/.test(c.slice(0,1e3)))throw new Error("Non-ASCII characters detected in sequence. The file may be gzip compressed. Use BgzipIndexedFasta for bgzip files, or decompress the file.");return c}}class kM extends fy{constructor({fasta:e,path:n,fai:i,faiPath:r,gzi:s,gziPath:o}){super({fasta:e,path:n,fai:i,faiPath:r}),e&&s?this.fasta=new cy({filehandle:e,gziFilehandle:s}):n&&o&&(this.fasta=new cy({filehandle:new We(n),gziFilehandle:new We(o)}))}}function uy(t){return t.split(">").filter(e=>/\S/.test(e)).map(e=>{const[n,...i]=e.split(`
|
|
658
|
+
`),[r,...s]=n.split(" "),o=i.join("").replace(/\s/g,"");return{id:r,description:s.join(" "),sequence:o}})}class FM{constructor({fasta:e,path:n}){if(e)this.fasta=e;else if(n)this.fasta=new We(n);else throw new Error("Need to pass fasta or path");this.data=this.fasta.readFile().then(i=>{const s=new TextDecoder("utf8").decode(i);return uy(s)})}async fetch(e,n,i){const s=(await this.data).find(a=>a.id===e),o=i-n;if(!s)throw new Error(`no sequence with id ${e} exists`);return s.sequence.slice(n,o)}async getSequenceNames(){return(await this.data).map(n=>n.id)}}const RM=Object.freeze(Object.defineProperty({__proto__:null,BgzipIndexedFasta:kM,FetchableSmallFasta:FM,IndexedFasta:fy,parseSmallFasta:uy},Symbol.toStringTag,{value:"Module"})),Ay=BigInt(32);function NM(t,e,n){const i=+!!n,r=+!n;return BigInt(t.getInt32(e,n)*r+t.getInt32(e+4,n)*i)<<Ay|BigInt(t.getUint32(e,n)*i+t.getUint32(e+4,n)*r)}function MM(t,e,n){const i=t.getUint32(e,n),r=t.getUint32(e+4,n),s=+!!n,o=+!n;return BigInt(i*o+r*s)<<Ay|BigInt(i*s+r*o)}"getBigInt64"in DataView||(DataView.prototype.getBigInt64=function(t,e){return NM(this,t,e)}),"getBigUint64"in DataView||(DataView.prototype.getBigUint64=function(t,e){return MM(this,t,e)});var dA=function(t,e){return dA=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,i){n.__proto__=i}||function(n,i){for(var r in i)Object.prototype.hasOwnProperty.call(i,r)&&(n[r]=i[r])},dA(t,e)};function gA(t,e){if(typeof e!="function"&&e!==null)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");dA(t,e);function n(){this.constructor=t}t.prototype=e===null?Object.create(e):(n.prototype=e.prototype,new n)}function TM(t,e,n,i){function r(s){return s instanceof n?s:new n(function(o){o(s)})}return new(n||(n=Promise))(function(s,o){function a(f){try{c(i.next(f))}catch(u){o(u)}}function l(f){try{c(i.throw(f))}catch(u){o(u)}}function c(f){f.done?s(f.value):r(f.value).then(a,l)}c((i=i.apply(t,e||[])).next())})}function hy(t,e){var n={label:0,sent:function(){if(s[0]&1)throw s[1];return s[1]},trys:[],ops:[]},i,r,s,o=Object.create((typeof Iterator=="function"?Iterator:Object).prototype);return o.next=a(0),o.throw=a(1),o.return=a(2),typeof Symbol=="function"&&(o[Symbol.iterator]=function(){return this}),o;function a(c){return function(f){return l([c,f])}}function l(c){if(i)throw new TypeError("Generator is already executing.");for(;o&&(o=0,c[0]&&(n=0)),n;)try{if(i=1,r&&(s=c[0]&2?r.return:c[0]?r.throw||((s=r.return)&&s.call(r),0):r.next)&&!(s=s.call(r,c[1])).done)return s;switch(r=0,s&&(c=[c[0]&2,s.value]),c[0]){case 0:case 1:s=c;break;case 4:return n.label++,{value:c[1],done:!1};case 5:n.label++,r=c[1],c=[0];continue;case 7:c=n.ops.pop(),n.trys.pop();continue;default:if(s=n.trys,!(s=s.length>0&&s[s.length-1])&&(c[0]===6||c[0]===2)){n=0;continue}if(c[0]===3&&(!s||c[1]>s[0]&&c[1]<s[3])){n.label=c[1];break}if(c[0]===6&&n.label<s[1]){n.label=s[1],s=c;break}if(s&&n.label<s[2]){n.label=s[2],n.ops.push(c);break}s[2]&&n.ops.pop(),n.trys.pop();continue}c=e.call(t,n)}catch(f){c=[6,f],r=0}finally{i=s=0}if(c[0]&5)throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}}function lo(t){var e=typeof Symbol=="function"&&Symbol.iterator,n=e&&t[e],i=0;if(n)return n.call(t);if(t&&typeof t.length=="number")return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function pA(t,e){var n=typeof Symbol=="function"&&t[Symbol.iterator];if(!n)return t;var i=n.call(t),r,s=[],o;try{for(;(e===void 0||e-- >0)&&!(r=i.next()).done;)s.push(r.value)}catch(a){o={error:a}}finally{try{r&&!r.done&&(n=i.return)&&n.call(i)}finally{if(o)throw o.error}}return s}function mA(t,e,n){if(n||arguments.length===2)for(var i=0,r=e.length,s;i<r;i++)(s||!(i in e))&&(s||(s=Array.prototype.slice.call(e,0,i)),s[i]=e[i]);return t.concat(s||Array.prototype.slice.call(e))}function yr(t){return this instanceof yr?(this.v=t,this):new yr(t)}function PM(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(t,e||[]),r,s=[];return r=Object.create((typeof AsyncIterator=="function"?AsyncIterator:Object).prototype),a("next"),a("throw"),a("return",o),r[Symbol.asyncIterator]=function(){return this},r;function o(A){return function(d){return Promise.resolve(d).then(A,u)}}function a(A,d){i[A]&&(r[A]=function(g){return new Promise(function(m,p){s.push([A,g,m,p])>1||l(A,g)})},d&&(r[A]=d(r[A])))}function l(A,d){try{c(i[A](d))}catch(g){h(s[0][3],g)}}function c(A){A.value instanceof yr?Promise.resolve(A.value.v).then(f,u):h(s[0][2],A)}function f(A){l("next",A)}function u(A){l("throw",A)}function h(A,d){A(d),s.shift(),s.length&&l(s[0][0],s[0][1])}}function LM(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e=t[Symbol.asyncIterator],n;return e?e.call(t):(t=typeof lo=="function"?lo(t):t[Symbol.iterator](),n={},i("next"),i("throw"),i("return"),n[Symbol.asyncIterator]=function(){return this},n);function i(s){n[s]=t[s]&&function(o){return new Promise(function(a,l){o=t[s](o),r(a,l,o.done,o.value)})}}function r(s,o,a,l){Promise.resolve(l).then(function(c){s({value:c,done:a})},o)}}typeof SuppressedError=="function"&&SuppressedError;function ke(t){return typeof t=="function"}function dy(t){var e=function(i){Error.call(i),i.stack=new Error().stack},n=t(e);return n.prototype=Object.create(Error.prototype),n.prototype.constructor=n,n}var wA=dy(function(t){return function(n){t(this),this.message=n?n.length+` errors occurred during unsubscription:
|
|
659
|
+
`+n.map(function(i,r){return r+1+") "+i.toString()}).join(`
|
|
660
|
+
`):"",this.name="UnsubscriptionError",this.errors=n}});function gy(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var yA=(function(){function t(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}return t.prototype.unsubscribe=function(){var e,n,i,r,s;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var a=lo(o),l=a.next();!l.done;l=a.next()){var c=l.value;c.remove(this)}}catch(g){e={error:g}}finally{try{l&&!l.done&&(n=a.return)&&n.call(a)}finally{if(e)throw e.error}}else o.remove(this);var f=this.initialTeardown;if(ke(f))try{f()}catch(g){s=g instanceof wA?g.errors:[g]}var u=this._finalizers;if(u){this._finalizers=null;try{for(var h=lo(u),A=h.next();!A.done;A=h.next()){var d=A.value;try{my(d)}catch(g){s=s??[],g instanceof wA?s=mA(mA([],pA(s)),pA(g.errors)):s.push(g)}}}catch(g){i={error:g}}finally{try{A&&!A.done&&(r=h.return)&&r.call(h)}finally{if(i)throw i.error}}}if(s)throw new wA(s)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)my(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=(n=this._finalizers)!==null&&n!==void 0?n:[]).push(e)}},t.prototype._hasParent=function(e){var n=this._parentage;return n===e||Array.isArray(n)&&n.includes(e)},t.prototype._addParent=function(e){var n=this._parentage;this._parentage=Array.isArray(n)?(n.push(e),n):n?[n,e]:e},t.prototype._removeParent=function(e){var n=this._parentage;n===e?this._parentage=null:Array.isArray(n)&&gy(n,e)},t.prototype.remove=function(e){var n=this._finalizers;n&&gy(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=(function(){var e=new t;return e.closed=!0,e})(),t})();yA.EMPTY;function py(t){return t instanceof yA||t&&"closed"in t&&ke(t.remove)&&ke(t.add)&&ke(t.unsubscribe)}function my(t){ke(t)?t():t.unsubscribe()}var OM={Promise:void 0},UM={setTimeout:function(t,e){for(var n=[],i=2;i<arguments.length;i++)n[i-2]=arguments[i];return setTimeout.apply(void 0,mA([t,e],pA(n)))},clearTimeout:function(t){return clearTimeout(t)},delegate:void 0};function wy(t){UM.setTimeout(function(){throw t})}function yy(){}function _M(t){t()}var CA=(function(t){gA(e,t);function e(n){var i=t.call(this)||this;return i.isStopped=!1,n?(i.destination=n,py(n)&&n.add(i)):i.destination=HM,i}return e.create=function(n,i,r){return new yc(n,i,r)},e.prototype.next=function(n){this.isStopped||this._next(n)},e.prototype.error=function(n){this.isStopped||(this.isStopped=!0,this._error(n))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(n){this.destination.next(n)},e.prototype._error=function(n){try{this.destination.error(n)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e})(yA),GM=(function(){function t(e){this.partialObserver=e}return t.prototype.next=function(e){var n=this.partialObserver;if(n.next)try{n.next(e)}catch(i){Cc(i)}},t.prototype.error=function(e){var n=this.partialObserver;if(n.error)try{n.error(e)}catch(i){Cc(i)}else Cc(e)},t.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(n){Cc(n)}},t})(),yc=(function(t){gA(e,t);function e(n,i,r){var s=t.call(this)||this,o;return ke(n)||!n?o={next:n??void 0,error:i??void 0,complete:r??void 0}:o=n,s.destination=new GM(o),s}return e})(CA);function Cc(t){wy(t)}function zM(t){throw t}var HM={closed:!0,next:yy,error:zM,complete:yy},EA=(function(){return typeof Symbol=="function"&&Symbol.observable||"@@observable"})();function Cy(t){return t}function YM(t){return t.length===0?Cy:t.length===1?t[0]:function(n){return t.reduce(function(i,r){return r(i)},n)}}var yt=(function(){function t(e){e&&(this._subscribe=e)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(e,n,i){var r=this,s=JM(e)?e:new yc(e,n,i);return _M(function(){var o=r,a=o.operator,l=o.source;s.add(a?a.call(s,l):l?r._subscribe(s):r._trySubscribe(s))}),s},t.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(n){e.error(n)}},t.prototype.forEach=function(e,n){var i=this;return n=Ey(n),new n(function(r,s){var o=new yc({next:function(a){try{e(a)}catch(l){s(l),o.unsubscribe()}},error:s,complete:r});i.subscribe(o)})},t.prototype._subscribe=function(e){var n;return(n=this.source)===null||n===void 0?void 0:n.subscribe(e)},t.prototype[EA]=function(){return this},t.prototype.pipe=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return YM(e)(this)},t.prototype.toPromise=function(e){var n=this;return e=Ey(e),new e(function(i,r){var s;n.subscribe(function(o){return s=o},function(o){return r(o)},function(){return i(s)})})},t.create=function(e){return new t(e)},t})();function Ey(t){var e;return(e=t??OM.Promise)!==null&&e!==void 0?e:Promise}function VM(t){return t&&ke(t.next)&&ke(t.error)&&ke(t.complete)}function JM(t){return t&&t instanceof CA||VM(t)&&py(t)}function qM(t){return ke(t?.lift)}function Cr(t){return function(e){if(qM(e))return e.lift(function(n){try{return t(n,this)}catch(i){this.error(i)}});throw new TypeError("Unable to lift unknown Observable type")}}function fo(t,e,n,i,r){return new KM(t,e,n,i,r)}var KM=(function(t){gA(e,t);function e(n,i,r,s,o,a){var l=t.call(this,n)||this;return l.onFinalize=o,l.shouldUnsubscribe=a,l._next=i?function(c){try{i(c)}catch(f){n.error(f)}}:t.prototype._next,l._error=s?function(c){try{s(c)}catch(f){n.error(f)}finally{this.unsubscribe()}}:t.prototype._error,l._complete=r?function(){try{r()}catch(c){n.error(c)}finally{this.unsubscribe()}}:t.prototype._complete,l}return e.prototype.unsubscribe=function(){var n;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var i=this.closed;t.prototype.unsubscribe.call(this),!i&&((n=this.onFinalize)===null||n===void 0||n.call(this))}},e})(CA),jM=new yt(function(t){return t.complete()});function WM(t){return t&&ke(t.schedule)}function Iy(t){return t[t.length-1]}function XM(t){return WM(Iy(t))?t.pop():void 0}function ZM(t,e){return typeof Iy(t)=="number"?t.pop():e}var by=(function(t){return t&&typeof t.length=="number"&&typeof t!="function"});function xy(t){return ke(t?.then)}function By(t){return ke(t[EA])}function vy(t){return Symbol.asyncIterator&&ke(t?.[Symbol.asyncIterator])}function Sy(t){return new TypeError("You provided "+(t!==null&&typeof t=="object"?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}function $M(){return typeof Symbol!="function"||!Symbol.iterator?"@@iterator":Symbol.iterator}var Qy=$M();function Dy(t){return ke(t?.[Qy])}function ky(t){return PM(this,arguments,function(){var n,i,r,s;return hy(this,function(o){switch(o.label){case 0:n=t.getReader(),o.label=1;case 1:o.trys.push([1,,9,10]),o.label=2;case 2:return[4,yr(n.read())];case 3:return i=o.sent(),r=i.value,s=i.done,s?[4,yr(void 0)]:[3,5];case 4:return[2,o.sent()];case 5:return[4,yr(r)];case 6:return[4,o.sent()];case 7:return o.sent(),[3,2];case 8:return[3,10];case 9:return n.releaseLock(),[7];case 10:return[2]}})})}function Fy(t){return ke(t?.getReader)}function Er(t){if(t instanceof yt)return t;if(t!=null){if(By(t))return eT(t);if(by(t))return tT(t);if(xy(t))return nT(t);if(vy(t))return Ry(t);if(Dy(t))return iT(t);if(Fy(t))return rT(t)}throw Sy(t)}function eT(t){return new yt(function(e){var n=t[EA]();if(ke(n.subscribe))return n.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}function tT(t){return new yt(function(e){for(var n=0;n<t.length&&!e.closed;n++)e.next(t[n]);e.complete()})}function nT(t){return new yt(function(e){t.then(function(n){e.closed||(e.next(n),e.complete())},function(n){return e.error(n)}).then(null,wy)})}function iT(t){return new yt(function(e){var n,i;try{for(var r=lo(t),s=r.next();!s.done;s=r.next()){var o=s.value;if(e.next(o),e.closed)return}}catch(a){n={error:a}}finally{try{s&&!s.done&&(i=r.return)&&i.call(r)}finally{if(n)throw n.error}}e.complete()})}function Ry(t){return new yt(function(e){sT(t,e).catch(function(n){return e.error(n)})})}function rT(t){return Ry(ky(t))}function sT(t,e){var n,i,r,s;return TM(this,void 0,void 0,function(){var o,a;return hy(this,function(l){switch(l.label){case 0:l.trys.push([0,5,6,11]),n=LM(t),l.label=1;case 1:return[4,n.next()];case 2:if(i=l.sent(),!!i.done)return[3,4];if(o=i.value,e.next(o),e.closed)return[2];l.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return a=l.sent(),r={error:a},[3,11];case 6:return l.trys.push([6,,9,10]),i&&!i.done&&(s=n.return)?[4,s.call(n)]:[3,8];case 7:l.sent(),l.label=8;case 8:return[3,10];case 9:if(r)throw r.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}})})}function xi(t,e,n,i,r){i===void 0&&(i=0),r===void 0&&(r=!1);var s=e.schedule(function(){n(),r?t.add(this.schedule(null,i)):this.unsubscribe()},i);if(t.add(s),!r)return s}function Ny(t,e){return e===void 0&&(e=0),Cr(function(n,i){n.subscribe(fo(i,function(r){return xi(i,t,function(){return i.next(r)},e)},function(){return xi(i,t,function(){return i.complete()},e)},function(r){return xi(i,t,function(){return i.error(r)},e)}))})}function My(t,e){return e===void 0&&(e=0),Cr(function(n,i){i.add(t.schedule(function(){return n.subscribe(i)},e))})}function oT(t,e){return Er(t).pipe(My(e),Ny(e))}function aT(t,e){return Er(t).pipe(My(e),Ny(e))}function cT(t,e){return new yt(function(n){var i=0;return e.schedule(function(){i===t.length?n.complete():(n.next(t[i++]),n.closed||this.schedule())})})}function lT(t,e){return new yt(function(n){var i;return xi(n,e,function(){i=t[Qy](),xi(n,e,function(){var r,s,o;try{r=i.next(),s=r.value,o=r.done}catch(a){n.error(a);return}o?n.complete():n.next(s)},0,!0)}),function(){return ke(i?.return)&&i.return()}})}function Ty(t,e){if(!t)throw new Error("Iterable cannot be null");return new yt(function(n){xi(n,e,function(){var i=t[Symbol.asyncIterator]();xi(n,e,function(){i.next().then(function(r){r.done?n.complete():n.next(r.value)})},0,!0)})})}function fT(t,e){return Ty(ky(t),e)}function uT(t,e){if(t!=null){if(By(t))return oT(t,e);if(by(t))return cT(t,e);if(xy(t))return aT(t,e);if(vy(t))return Ty(t,e);if(Dy(t))return lT(t,e);if(Fy(t))return fT(t,e)}throw Sy(t)}function AT(t,e){return e?uT(t,e):Er(t)}var hT=dy(function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}});function Py(t,e){return new Promise(function(n,i){var r=new yc({next:function(s){n(s),r.unsubscribe()},error:i,complete:function(){i(new hT)}});t.subscribe(r)})}function Ly(t,e){return Cr(function(n,i){var r=0;n.subscribe(fo(i,function(s){i.next(t.call(e,s,r++))}))})}function dT(t,e,n,i,r,s,o,a){var l=[],c=0,f=0,u=!1,h=function(){u&&!l.length&&!c&&e.complete()},A=function(g){return c<i?d(g):l.push(g)},d=function(g){c++;var m=!1;Er(n(g,f++)).subscribe(fo(e,function(p){e.next(p)},function(){m=!0},void 0,function(){if(m)try{c--;for(var p=function(){var w=l.shift();o||d(w)};l.length&&c<i;)p();h()}catch(w){e.error(w)}}))};return t.subscribe(fo(e,A,function(){u=!0,h()})),function(){}}function Oy(t,e,n){return n===void 0&&(n=1/0),ke(e)?Oy(function(i,r){return Ly(function(s,o){return e(i,s,r,o)})(Er(t(i,r)))},n):(typeof e=="number"&&(n=e),Cr(function(i,r){return dT(i,r,t,n)}))}function gT(t){return t===void 0&&(t=1/0),Oy(Cy,t)}function pT(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=XM(t),i=ZM(t,1/0),r=t;return r.length?r.length===1?Er(r[0]):gT(i)(AT(r,n)):jM}function mT(t,e,n,i,r){return function(s,o){var a=n,l=e,c=0;s.subscribe(fo(o,function(f){var u=c++;l=a?t(l,f,u):(a=!0,f)},(function(){a&&o.next(l),o.complete()})))}}function Uy(t,e){return Cr(mT(t,e,arguments.length>=2,!1,!0))}var wT=function(t,e){return t.push(e),t};function yT(){return Cr(function(t,e){Uy(wT,[])(t).subscribe(e)})}class CT{}class ET{constructor(){this.signals=new Set,this.abortController=new AbortController}addSignal(e=new CT){if(this.signal.aborted)throw new Error("cannot add a signal, already aborted!");this.signals.add(e),e.aborted?this.handleAborted(e):typeof e.addEventListener=="function"&&e.addEventListener("abort",()=>{this.handleAborted(e)})}handleAborted(e){this.signals.delete(e),this.signals.size===0&&this.abortController.abort()}get signal(){return this.abortController.signal}abort(){this.abortController.abort()}}class IT{constructor(){this.callbacks=new Set}addCallback(e=()=>{}){this.callbacks.add(e),this.currentMessage&&e(this.currentMessage)}callback(e){this.currentMessage=e;for(const n of this.callbacks)n(e)}}class Ir{constructor({fill:e,cache:n}){if(typeof e!="function")throw new TypeError("must pass a fill function");if(typeof n!="object")throw new TypeError("must pass a cache object");if(typeof n.get!="function"||typeof n.set!="function"||typeof n.delete!="function")throw new TypeError("cache must implement get(key), set(key, val), and and delete(key)");this.cache=n,this.fillCallback=e}static isAbortException(e){return e.name==="AbortError"||e.code==="ERR_ABORTED"||e.message==="AbortError: aborted"||e.message==="Error: aborted"}evict(e,n){this.cache.get(e)===n&&this.cache.delete(e)}fill(e,n,i,r){const s=new ET,o=new IT;o.addCallback(r);const a={aborter:s,promise:this.fillCallback(n,s.signal,l=>{o.callback(l)}),settled:!1,statusReporter:o,get aborted(){return this.aborter.signal.aborted}};a.aborter.addSignal(i),a.aborter.signal.addEventListener("abort",()=>{a.settled||this.evict(e,a)}),a.promise.then(()=>{a.settled=!0},()=>{a.settled=!0,this.evict(e,a)}).catch(l=>{throw console.error(l),l}),this.cache.set(e,a)}static checkSinglePromise(e,n){function i(){if(n?.aborted)throw Object.assign(new Error("aborted"),{code:"ERR_ABORTED"})}return e.then(r=>(i(),r),r=>{throw i(),r})}has(e){return this.cache.has(e)}get(e,n,i,r){if(!i&&n instanceof AbortSignal)throw new TypeError("second get argument appears to be an AbortSignal, perhaps you meant to pass `null` for the fill data?");const s=this.cache.get(e);return s?s.aborted&&!s.settled?(this.evict(e,s),this.get(e,n,i,r)):s.settled?s.promise:(s.aborter.addSignal(i),s.statusReporter.addCallback(r),Ir.checkSinglePromise(s.promise,i)):(this.fill(e,n,i,r),Ir.checkSinglePromise(this.cache.get(e).promise,i))}delete(e){const n=this.cache.get(e);n&&(n.settled||n.aborter.abort(),this.cache.delete(e))}clear(){const e=this.cache.keys();let n=0;for(let i=e.next();!i.done;i=e.next())this.delete(i.value),n+=1;return n}}function bT(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var IA,_y;function xT(){if(_y)return IA;_y=1;class t{constructor(n={}){if(!(n.maxSize&&n.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");this.maxSize=n.maxSize,this.cache=new Map,this.oldCache=new Map,this._size=0}_set(n,i){this.cache.set(n,i),this._size++,this._size>=this.maxSize&&(this._size=0,this.oldCache=this.cache,this.cache=new Map)}get(n){if(this.cache.has(n))return this.cache.get(n);if(this.oldCache.has(n)){const i=this.oldCache.get(n);return this.oldCache.delete(n),this._set(n,i),i}}set(n,i){return this.cache.has(n)?this.cache.set(n,i):this._set(n,i),this}has(n){return this.cache.has(n)||this.oldCache.has(n)}peek(n){if(this.cache.has(n))return this.cache.get(n);if(this.oldCache.has(n))return this.oldCache.get(n)}delete(n){const i=this.cache.delete(n);return i&&this._size--,this.oldCache.delete(n)||i}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}*keys(){for(const[n]of this)yield n}*values(){for(const[,n]of this)yield n}*[Symbol.iterator](){for(const n of this.cache)yield n;for(const n of this.oldCache){const[i]=n;this.cache.has(i)||(yield n)}}get size(){let n=0;for(const i of this.oldCache.keys())this.cache.has(i)||n++;return this._size+n}}return IA=t,IA}var BT=xT();const Gy=bT(BT);class br{ranges;constructor(e){this.ranges=e}get min(){return this.ranges[0].min}get max(){return this.ranges.at(-1).max}contains(e){for(const n of this.ranges)if(n.min<=e&&n.max>=e)return!0;return!1}isContiguous(){return this.ranges.length>1}getRanges(){return this.ranges.map(e=>new br([{min:e.min,max:e.max}]))}toString(){return this.ranges.map(e=>`[${e.min}-${e.max}]`).join(",")}union(e){const n=[...this.getRanges(),...e.getRanges()].sort((s,o)=>s.min<o.min?-1:s.min>o.min?1:s.max<o.max?-1:o.max>s.max?1:0),i=[];let r=n[0];for(const s of n)s.min>r.max+1?(i.push(r),r=s):s.max>r.max&&(r=new br([{min:r.min,max:s.max}]));return i.push(r),i.length===1?i[0]:new br(i)}}function vT(t){return vM(t.subarray(2),void 0)}class ST extends Error{code;constructor(e){super(e),this.code="ERR_ABORTED"}}function QT(t){t.sort((r,s)=>r.offset-s.offset);const e=[];let n,i;for(const r of t)n&&i&&r.offset-i<=2e3?(n.length=n.length+r.length-i+r.offset,n.blocks.push(r)):e.push(n={blocks:[r],length:r.length,offset:r.offset}),i=n.offset+n.length;return e}function Ec(t){if(t&&t.aborted)if(typeof DOMException>"u"){const e=new ST("aborted");throw e.code="ERR_ABORTED",e}else throw new DOMException("aborted","AbortError")}const DT=typeof TextDecoder<"u"?new TextDecoder("utf8"):void 0;function bA(t,e,n,i){return t<i&&e>=n}class zy{bbi;refsByName;cirTreeOffset;isCompressed;blockType;cirTreePromise;featureCache=new Ir({cache:new Gy({maxSize:1e3}),fill:async({length:e,offset:n},i)=>this.bbi.read(e,n,{signal:i})});constructor(e,n,i,r,s){if(this.bbi=e,this.refsByName=n,this.cirTreeOffset=i,this.isCompressed=r,this.blockType=s,!(i>=0))throw new Error("invalid cirTreeOffset!")}async readWigData(e,n,i,r,s){try{const o=this.refsByName[e];o===void 0&&r.complete();const a={chrId:o,start:n,end:i};this.cirTreePromise||(this.cirTreePromise=this.bbi.read(48,this.cirTreeOffset,s));const l=await this.cirTreePromise,f=new DataView(l.buffer).getUint32(4,!0);let u=[],h=0;const A=(p,w,C)=>{try{const b=p.subarray(w),x=new DataView(b.buffer,b.byteOffset,b.length);let I=0;const S=x.getUint8(I);I+=2;const Q=x.getUint16(I,!0);if(I+=2,S===1){const v=[];for(let F=0;F<Q;F++){const R=x.getUint32(I,!0);I+=4;const M=x.getUint32(I,!0);I+=4;const O=x.getUint32(I,!0);I+=4;const z=x.getUint32(I,!0);I+=4;const _=Number(x.getBigUint64(I,!0));I+=8;const Y=Number(x.getBigUint64(I,!0));I+=8,v.push({startChrom:R,startBase:M,endBase:z,endChrom:O,blockOffset:_,blockSize:Y,offset:I})}u=u.concat(v.filter(F=>d(F)).map(F=>({offset:F.blockOffset,length:F.blockSize})))}else if(S===0){const v=[];for(let R=0;R<Q;R++){const M=x.getUint32(I,!0);I+=4;const O=x.getUint32(I,!0);I+=4;const z=x.getUint32(I,!0);I+=4;const _=x.getUint32(I,!0);I+=4;const Y=Number(x.getBigUint64(I,!0));I+=8,v.push({startChrom:M,startBase:O,endChrom:z,endBase:_,blockOffset:Y,offset:I})}const F=v.filter(R=>d(R)).map(R=>R.blockOffset);F.length>0&&m(F,C+1)}}catch(y){r.error(y)}},d=p=>{const{startChrom:w,startBase:C,endChrom:y,endBase:b}=p;return(w<o||w===o&&C<=i)&&(y>o||y===o&&b>=n)},g=async(p,w,C)=>{try{const y=w.max-w.min,b=w.min,x=await this.featureCache.get(`${y}_${b}`,{length:y,offset:b},s?.signal);for(const I of p)w.contains(I)&&(A(x,I-b,C),h-=1,h===0&&this.readFeatures(r,u,{...s,request:a}).catch(S=>{r.error(S)}))}catch(y){r.error(y)}},m=(p,w)=>{try{h+=p.length;const C=4+f*32;let y=new br([{min:p[0],max:p[0]+C}]);for(let b=1;b<p.length;b+=1){const x=new br([{min:p[b],max:p[b]+C}]);y=y.union(x)}y.getRanges().map(b=>g(p,b,w))}catch(C){r.error(C)}};m([this.cirTreeOffset+48],1);return}catch(o){r.error(o)}}parseSummaryBlock(e,n,i){const r=[];let s=n;const o=new DataView(e.buffer,e.byteOffset,e.length);for(;s<e.byteLength;){const a=o.getUint32(s,!0);s+=4;const l=o.getUint32(s,!0);s+=4;const c=o.getUint32(s,!0);s+=4;const f=o.getUint32(s,!0);s+=4;const u=o.getFloat32(s,!0);s+=4;const h=o.getFloat32(s,!0);s+=4;const A=o.getFloat32(s,!0);s+=4,s+=4,(!i||a===i.chrId&&bA(l,c,i.start,i.end))&&r.push({start:l,end:c,maxScore:h,minScore:u,summary:!0,score:A/(f||1)})}return r}parseBigBedBlock(e,n,i,r){const s=[];let o=n;const a=e,l=new DataView(a.buffer,a.byteOffset,a.length);for(;o<e.byteLength;){const c=o,f=l.getUint32(o,!0);o+=4;const u=l.getInt32(o,!0);o+=4;const h=l.getInt32(o,!0);o+=4;let A=o;for(;A<e.length&&e[A]!==0;A++);const d=e.subarray(o,A),g=DT?.decode(d)??d.toString();o=A+1,s.push({chromId:f,start:u,end:h,rest:g,uniqueId:`bb-${i+c}`})}return r?s.filter(c=>bA(c.start,c.end,r.start,r.end)):s}parseBigWigBlock(e,n,i){const r=e.subarray(n),s=new DataView(r.buffer,r.byteOffset,r.length);let o=0;o+=4;const a=s.getInt32(o,!0);o+=8;const l=s.getUint32(o,!0);o+=4;const c=s.getUint32(o,!0);o+=4;const f=s.getUint8(o);o+=2;const u=s.getUint16(o,!0);o+=2;const h=new Array(u);switch(f){case 1:{for(let A=0;A<u;A++){const d=s.getInt32(o,!0);o+=4;const g=s.getInt32(o,!0);o+=4;const m=s.getFloat32(o,!0);o+=4,h[A]={start:d,end:g,score:m}}break}case 2:{for(let A=0;A<u;A++){const d=s.getInt32(o,!0);o+=4;const g=s.getFloat32(o,!0);o+=4,h[A]={score:g,start:d,end:d+c}}break}case 3:{for(let A=0;A<u;A++){const d=s.getFloat32(o,!0);o+=4;const g=a+A*l;h[A]={score:d,start:g,end:g+c}}break}}return i?h.filter(A=>bA(A.start,A.end,i.start,i.end)):h}async readFeatures(e,n,i={}){try{const{blockType:r,isCompressed:s}=this,{signal:o,request:a}=i,l=QT(n);Ec(o),await Promise.all(l.map(async c=>{Ec(o);const{length:f,offset:u}=c,h=await this.featureCache.get(`${f}_${u}`,c,o);for(const A of c.blocks){Ec(o);let d=h.subarray(A.offset-c.offset);switch(s&&(d=vT(d)),Ec(o),r){case"summary":{e.next(this.parseSummaryBlock(d,0,a));break}case"bigwig":{e.next(this.parseBigWigBlock(d,0,a));break}case"bigbed":{e.next(this.parseBigBedBlock(d,0,A.offset*256,a));break}default:console.warn(`Don't know what to do with ${r}`)}}})),e.complete()}catch(r){e.error(r)}}}const kT=-2003829722,Hy=-2021002517;function xr(t){return new DataView(t.buffer,t.byteOffset,t.length)}class Yy{bbi;headerP;renameRefSeqs;getHeader(e){return this.headerP||(this.headerP=this._getHeader(e).catch(n=>{throw this.headerP=void 0,n})),this.headerP}constructor(e){const{filehandle:n,renameRefSeqs:i=o=>o,path:r,url:s}=e;if(this.renameRefSeqs=i,n)this.bbi=n;else if(s)this.bbi=new Yt(s);else if(r)this.bbi=new We(r);else throw new Error("no file given")}async _getHeader(e){const n=await this._getMainHeader(e),i=await this._readChromTree(n,e);return{...n,...i}}async _getMainHeader(e,n=2e3){const i=await this.bbi.read(n,0,e),r=xr(i),s=r.getInt32(0,!0);if(s!==kT&&s!==Hy)throw new Error("not a BigWig/BigBed file");let o=0;const a=r.getInt32(o,!0);o+=4;const l=r.getUint16(o,!0);o+=2;const c=r.getUint16(o,!0);o+=2;const f=Number(r.getBigUint64(o,!0));o+=8;const u=Number(r.getBigUint64(o,!0));o+=8;const h=Number(r.getBigUint64(o,!0));o+=8;const A=r.getUint16(o,!0);o+=2;const d=r.getUint16(o,!0);o+=2;const g=Number(r.getBigUint64(o,!0));o+=8;const m=Number(r.getBigUint64(o,!0));o+=8;const p=r.getUint32(o,!0);o+=4;const w=Number(r.getBigUint64(o,!0));o+=8;const C=[];for(let I=0;I<c;I++){const S=r.getUint32(o,!0);o+=4;const Q=r.getUint32(o,!0);o+=4;const v=Number(r.getBigUint64(o,!0));o+=8;const F=Number(r.getBigUint64(o,!0));o+=8,C.push({reductionLevel:S,reserved:Q,dataOffset:v,indexOffset:F})}const y=a===Hy?"bigbed":"bigwig";if(g>n||m>n-40)return this._getMainHeader(e,n*2);let b;if(m){const I=i.subarray(m);let S=0;const Q=xr(I),v=Number(Q.getBigUint64(S,!0));S+=8;const F=Q.getFloat64(S,!0);S+=8;const R=Q.getFloat64(S,!0);S+=8;const M=Q.getFloat64(S,!0);S+=8;const O=Q.getFloat64(S,!0);S+=8,b={scoreMin:F,scoreMax:R,scoreSum:M,scoreSumSquares:O,basesCovered:v}}else throw new Error("no stats");const x=new TextDecoder("utf8");return{zoomLevels:C,magic:a,extHeaderOffset:w,numZoomLevels:c,fieldCount:A,totalSummary:b,definedFieldCount:d,uncompressBufSize:p,asOffset:g,chromTreeOffset:f,totalSummaryOffset:m,unzoomedDataOffset:u,unzoomedIndexOffset:h,fileType:y,version:l,autoSql:g?x.decode(i.subarray(g,i.indexOf(0,g))):""}}async _readChromTree(e,n){const i=[],r={},s=e.chromTreeOffset,o=xr(await this.bbi.read(32,s,n));let a=0;a+=4,a+=4;const l=o.getUint32(a,!0);a+=4;const c=o.getUint32(a,!0);a+=4,a+=8;const f=new TextDecoder("utf8"),u=async h=>{const A=await this.bbi.read(4,h),d=xr(A);let g=0;const m=d.getUint8(g);g+=1,g+=1;const p=d.getUint16(g,!0);if(g+=2,m){const w=await this.bbi.read(p*(l+c),h+g),C=xr(w);g=0;for(let y=0;y<p;y++){const b=f.decode(w.subarray(g,g+l)).replaceAll("\0","");g+=l;const x=C.getUint32(g,!0);g+=4;const I=C.getUint32(g,!0);g+=4,r[this.renameRefSeqs(b)]=x,i[x]={name:b,id:x,length:I}}}else{const w=[],C=xr(await this.bbi.read(p*(l+8),h+g));g=0;for(let y=0;y<p;y++){g+=l;const b=Number(C.getBigUint64(g,!0));g+=8,w.push(u(b))}await Promise.all(w)}};return await u(s+32),{refsByName:r,refsByNumber:i}}async getUnzoomedView(e){const{unzoomedIndexOffset:n,refsByName:i,uncompressBufSize:r,fileType:s}=await this.getHeader(e);return new zy(this.bbi,i,n,r>0,s)}async getFeatureStream(e,n,i,r){await this.getHeader(r);const s=this.renameRefSeqs(e);let o;const{basesPerSpan:a,scale:l}=r||{};return a?o=await this.getView(1/a,r):l?o=await this.getView(l,r):o=await this.getView(1,r),new yt(c=>{o.readWigData(s,n,i,c,r).catch(f=>{c.error(f)})})}async getFeatures(e,n,i,r){const s=await this.getFeatureStream(e,n,i,r);return(await Py(s.pipe(yT()))).flat()}}class FT extends Yy{async getView(e,n){const{zoomLevels:i,refsByName:r,uncompressBufSize:s}=await this.getHeader(n),o=1/e,a=i.length-1;for(let l=a;l>=0;l-=1){const c=i[l];if(c&&c.reductionLevel<=2*o)return new zy(this.bbi,r,c.indexOffset,s>0,"summary")}return this.getUnzoomedView(n)}}function RT(t){return t.filter(e=>!!e)}class NT extends Yy{readIndicesCache=new Ir({cache:new Gy({maxSize:1}),fill:(e,n)=>this._readIndices({...e,signal:n})});readIndices(e={}){const{signal:n,...i}=e;return this.readIndicesCache.get(JSON.stringify(i),e,n)}async getView(e,n){return this.getUnzoomedView(n)}async _readIndices(e){const{extHeaderOffset:n}=await this.getHeader(e),i=await this.bbi.read(64,n),r=new DataView(i.buffer,i.byteOffset,i.length);let s=0;s+=2;const o=r.getUint16(s,!0);s+=2;const a=Number(r.getBigUint64(s,!0));if(s+=8,o===0)return[];const l=20,c=l*o,f=await this.bbi.read(c,a),u=[];for(let h=0;h<o;h+=1){const A=f.subarray(h*l),d=new DataView(A.buffer,A.byteOffset,A.length);let g=0;const m=d.getInt16(g,!0);g+=2;const p=d.getInt16(g,!0);g+=2;const w=Number(d.getBigUint64(g,!0));g+=12;const C=d.getInt16(g,!0);u.push({type:m,fieldcount:p,offset:w,field:C})}return u}async searchExtraIndexBlocks(e,n={}){const i=await this.readIndices(n);if(i.length===0)return[];const r=new TextDecoder("utf8"),s=i.map(async o=>{const{offset:a,field:l}=o,c=await this.bbi.read(32,a,n),f=new DataView(c.buffer,c.byteOffset,c.length);let u=0;u+=4;const h=f.getInt32(u,!0);u+=4;const A=f.getInt32(u,!0);u+=4;const d=f.getInt32(u,!0);u+=4,u+=8;const g=async m=>{const p=m,w=4+h*(A+d),y=await this.bbi.read(w,p,n),b=new DataView(y.buffer,y.byteOffset,y.length);let x=0;const I=b.getInt8(x);x+=2;const S=b.getInt16(x,!0);x+=2;const Q=[];if(I===0){const v=[];for(let R=0;R<S;R++){const M=r.decode(y.subarray(x,x+A)).replaceAll("\0","");x+=A;const O=Number(b.getBigUint64(x,!0));x+=8,v.push({key:M,offset:O})}let F=0;for(const{key:R,offset:M}of v){if(e.localeCompare(R)<0&&F)return g(F);F=M}return g(F)}else if(I===1){for(let v=0;v<S;v++){const F=r.decode(y.subarray(x,x+A)).replaceAll("\0","");x+=A;const R=Number(b.getBigUint64(x,!0));x+=8;const M=b.getUint32(x,!0);x+=4;const O=b.getUint32(x,!0);x+=4,Q.push({key:F,offset:R,length:M,reserved:O})}for(const v of Q)if(v.key===e)return{...v,field:l};return}};return g(a+32)});return RT(await Promise.all(s))}async searchExtraIndex(e,n={}){const i=await this.searchExtraIndexBlocks(e,n);if(i.length===0)return[];const r=await this.getUnzoomedView(n),s=i.map(a=>new yt(l=>{r.readFeatures(l,[a],n).catch(c=>{l.error(c)})}).pipe(Uy((l,c)=>l.concat(c)),Ly(l=>{for(const c of l)c.field=a.field;return l})));return(await Py(pT(...s))).filter(a=>a.rest?.split(" ")[(a.field||0)-3]===e)}}const Vy=Object.freeze(Object.defineProperty({__proto__:null,BigBed:NT,BigWig:FT},Symbol.toStringTag,{value:"Module"}));function MT(t,e){function n(){this.constructor=t}n.prototype=e.prototype,t.prototype=new n}function Br(t,e,n,i){this.message=t,this.expected=e,this.found=n,this.location=i,this.name="SyntaxError",typeof Error.captureStackTrace=="function"&&Error.captureStackTrace(this,Br)}MT(Br,Error),Br.buildMessage=function(t,e){var n={literal:function(c){return'"'+r(c.text)+'"'},class:function(c){var f="",u;for(u=0;u<c.parts.length;u++)f+=c.parts[u]instanceof Array?s(c.parts[u][0])+"-"+s(c.parts[u][1]):s(c.parts[u]);return"["+(c.inverted?"^":"")+f+"]"},any:function(c){return"any character"},end:function(c){return"end of input"},other:function(c){return c.description}};function i(c){return c.charCodeAt(0).toString(16).toUpperCase()}function r(c){return c.replace(/\\/g,"\\\\").replace(/"/g,'\\"').replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(f){return"\\x0"+i(f)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(f){return"\\x"+i(f)})}function s(c){return c.replace(/\\/g,"\\\\").replace(/\]/g,"\\]").replace(/\^/g,"\\^").replace(/-/g,"\\-").replace(/\0/g,"\\0").replace(/\t/g,"\\t").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/[\x00-\x0F]/g,function(f){return"\\x0"+i(f)}).replace(/[\x10-\x1F\x7F-\x9F]/g,function(f){return"\\x"+i(f)})}function o(c){return n[c.type](c)}function a(c){var f=new Array(c.length),u,h;for(u=0;u<c.length;u++)f[u]=o(c[u]);if(f.sort(),f.length>0){for(u=1,h=1;u<f.length;u++)f[u-1]!==f[u]&&(f[h]=f[u],h++);f.length=h}switch(f.length){case 1:return f[0];case 2:return f[0]+" or "+f[1];default:return f.slice(0,-1).join(", ")+", or "+f[f.length-1]}}function l(c){return c?'"'+r(c)+'"':"end of input"}return"Expected "+a(t)+" but "+l(e)+" found."};function TT(t,e){e=e!==void 0?e:{};var n={},i={declaration:lI},r=lI,s="(",o=ae("(",!1),a=")",l=ae(")",!1),c=function(E,D,T,L){return{type:E,name:D,comment:T,fields:L}},f="simple",u=ae("simple",!1),h="object",A=ae("object",!1),d="table",g=ae("table",!1),m="auto",p=ae("auto",!1),w="primary",C=ae("primary",!1),y="index",b=ae("index",!1),x="unique",I=ae("unique",!1),S=function(E,D){return D},Q=function(E,D){return E.name&&D.unshift(E),D},v="#",F=ae("#",!1),R=";",M=ae(";",!1),O=function(E,D,T){return{type:E,name:D,comment:T}},z="[",_=ae("[",!1),Y="]",te=ae("]",!1),oe=function(E,D,T,L){return{type:E,size:D,name:T,comment:L}},ne=function(E,D,T,L){return{type:E,vals:D,name:T,comment:L}},_e=",",Kt=ae(",",!1),xo=function(E,D){return D.unshift(E),D},Ur="int",hn=ae("int",!1),Ni="uint",Bo=ae("uint",!1),_r="short",U=ae("short",!1),K="ushort",W=ae("ushort",!1),N="byte",Ze=ae("byte",!1),se="ubyte",it=ae("ubyte",!1),$e="float",dn=ae("float",!1),vo="char",GP=ae("char",!1),VE="string",zP=ae("string",!1),JE="lstring",HP=ae("lstring",!1),qE="enum",YP=ae("enum",!1),KE="double",VP=ae("double",!1),jE="bigint",JP=ae("bigint",!1),WE="set",qP=ae("set",!1),KP=function(E,D){return E+" "+D},jP=/^[a-zA-Z_]/,WP=So([["a","z"],["A","Z"],"_"],!1,!1),XE=/^[a-zA-Z0-9_]/,ZE=So([["a","z"],["A","Z"],["0","9"],"_"],!1,!1),XP=function(E){return sI()},$E=/^[^\n\r]/,eI=So([`
|
|
661
|
+
`,"\r"],!0,!1),ZP=function(E){return E.join("").replace(/^"/,"").replace(/"$/,"")},$P=oI("integer"),tI=/^[0-9]/,nI=So([["0","9"]],!1,!1),eL=function(){return parseInt(sI(),10)},tL=oI("whitespace"),iI=/^[ \t\n\r]/,rI=So([" "," ",`
|
|
662
|
+
`,"\r"],!1,!1),B=0,rt=0,Wc=[{line:1,column:1}],jt=0,ch=[],V=0,Xc;if("startRule"in e){if(!(e.startRule in i))throw new Error(`Can't start parsing from rule "`+e.startRule+'".');r=i[e.startRule]}function sI(){return t.substring(rt,B)}function ae(E,D){return{type:"literal",text:E,ignoreCase:D}}function So(E,D,T){return{type:"class",parts:E,inverted:D,ignoreCase:T}}function nL(){return{type:"end"}}function oI(E){return{type:"other",description:E}}function aI(E){var D=Wc[E],T;if(D)return D;for(T=E-1;!Wc[T];)T--;for(D=Wc[T],D={line:D.line,column:D.column};T<E;)t.charCodeAt(T)===10?(D.line++,D.column=1):D.column++,T++;return Wc[E]=D,D}function cI(E,D){var T=aI(E),L=aI(D);return{start:{offset:E,line:T.line,column:T.column},end:{offset:D,line:L.line,column:L.column}}}function J(E){B<jt||(B>jt&&(jt=B,ch=[]),ch.push(E))}function iL(E,D,T){return new Br(Br.buildMessage(E,D),E,D,T)}function lI(){var E,D,T,L,H,Ae,we,It,Yn,gn,Vn,pn,Jn,mn;return E=B,D=X(),D!==n?(T=fI(),T!==n?(L=X(),L!==n?(H=uI(),H!==n?(Ae=X(),Ae!==n?(we=Zc(),we!==n?(It=X(),It!==n?(t.charCodeAt(B)===40?(Yn=s,B++):(Yn=n,V===0&&J(o)),Yn!==n?(gn=X(),gn!==n?(Vn=rL(),Vn!==n?(pn=X(),pn!==n?(t.charCodeAt(B)===41?(Jn=a,B++):(Jn=n,V===0&&J(l)),Jn!==n?(mn=X(),mn!==n?(rt=E,D=c(T,H,we,Vn),E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n),E}function fI(){var E;return t.substr(B,6)===f?(E=f,B+=6):(E=n,V===0&&J(u)),E===n&&(t.substr(B,6)===h?(E=h,B+=6):(E=n,V===0&&J(A)),E===n&&(t.substr(B,5)===d?(E=d,B+=5):(E=n,V===0&&J(g)))),E}function uI(){var E,D,T,L;return E=Ft(),E===n&&(E=B,D=Ft(),D!==n?(T=AI(),T!==n?(D=[D,T],E=D):(B=E,E=n)):(B=E,E=n),E===n&&(E=B,D=Ft(),D!==n?(t.substr(B,4)===m?(T=m,B+=4):(T=n,V===0&&J(p)),T!==n?(D=[D,T],E=D):(B=E,E=n)):(B=E,E=n),E===n&&(E=B,D=Ft(),D!==n?(T=AI(),T!==n?(t.substr(B,4)===m?(L=m,B+=4):(L=n,V===0&&J(p)),L!==n?(D=[D,T,L],E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)))),E}function AI(){var E;return t.substr(B,7)===w?(E=w,B+=7):(E=n,V===0&&J(C)),E===n&&(t.substr(B,5)===y?(E=y,B+=5):(E=n,V===0&&J(b)),E===n&&(t.substr(B,6)===x?(E=x,B+=6):(E=n,V===0&&J(I)))),E}function Zc(){var E;return E=hI(),E===n&&(E=X()),E}function rL(){var E,D,T,L,H,Ae,we;if(E=B,D=lh(),D!==n)if(T=X(),T!==n){for(L=[],H=B,Ae=X(),Ae!==n?(we=lh(),we!==n?(rt=H,Ae=S(D,we),H=Ae):(B=H,H=n)):(B=H,H=n);H!==n;)L.push(H),H=B,Ae=X(),Ae!==n?(we=lh(),we!==n?(rt=H,Ae=S(D,we),H=Ae):(B=H,H=n)):(B=H,H=n);L!==n?(H=X(),H!==n?(rt=E,D=Q(D,L),E=D):(B=E,E=n)):(B=E,E=n)}else B=E,E=n;else B=E,E=n;return E}function sL(){var E;return t.charCodeAt(B)===35?(E=v,B++):(E=n,V===0&&J(F)),E}function oL(){var E,D,T,L,H;return E=B,D=X(),D!==n?(T=sL(),T!==n?(L=hI(),L!==n?(H=X(),H!==n?(D=[D,T,L,H],E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n),E}function lh(){var E,D,T,L,H,Ae,we,It,Yn,gn,Vn,pn,Jn,mn;return E=B,D=fh(),D!==n?(T=X(),T!==n?(L=Ft(),L!==n?(H=X(),H!==n?(t.charCodeAt(B)===59?(Ae=R,B++):(Ae=n,V===0&&J(M)),Ae!==n?(we=X(),we!==n?(It=Zc(),It!==n?(rt=E,D=O(D,L,It),E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n),E===n&&(E=B,D=fh(),D!==n?(T=X(),T!==n?(t.charCodeAt(B)===91?(L=z,B++):(L=n,V===0&&J(_)),L!==n?(H=X(),H!==n?(Ae=cL(),Ae!==n?(we=X(),we!==n?(t.charCodeAt(B)===93?(It=Y,B++):(It=n,V===0&&J(te)),It!==n?(Yn=X(),Yn!==n?(gn=Ft(),gn!==n?(Vn=X(),Vn!==n?(t.charCodeAt(B)===59?(pn=R,B++):(pn=n,V===0&&J(M)),pn!==n?(Jn=X(),Jn!==n?(mn=Zc(),mn!==n?(rt=E,D=oe(D,Ae,gn,mn),E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n),E===n&&(E=B,D=fh(),D!==n?(T=X(),T!==n?(t.charCodeAt(B)===40?(L=s,B++):(L=n,V===0&&J(o)),L!==n?(H=X(),H!==n?(Ae=aL(),Ae!==n?(we=X(),we!==n?(t.charCodeAt(B)===41?(It=a,B++):(It=n,V===0&&J(l)),It!==n?(Yn=X(),Yn!==n?(gn=Ft(),gn!==n?(Vn=X(),Vn!==n?(t.charCodeAt(B)===59?(pn=R,B++):(pn=n,V===0&&J(M)),pn!==n?(Jn=X(),Jn!==n?(mn=Zc(),mn!==n?(rt=E,D=ne(D,Ae,gn,mn),E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n)):(B=E,E=n),E===n&&(E=oL()))),E}function aL(){var E,D,T,L,H,Ae,we;if(E=B,D=Ft(),D!==n){for(T=[],L=B,t.charCodeAt(B)===44?(H=_e,B++):(H=n,V===0&&J(Kt)),H!==n?(Ae=X(),Ae!==n?(we=Ft(),we!==n?(rt=L,H=S(D,we),L=H):(B=L,L=n)):(B=L,L=n)):(B=L,L=n);L!==n;)T.push(L),L=B,t.charCodeAt(B)===44?(H=_e,B++):(H=n,V===0&&J(Kt)),H!==n?(Ae=X(),Ae!==n?(we=Ft(),we!==n?(rt=L,H=S(D,we),L=H):(B=L,L=n)):(B=L,L=n)):(B=L,L=n);T!==n?(rt=E,D=xo(D,T),E=D):(B=E,E=n)}else B=E,E=n;return E}function fh(){var E,D,T,L;return t.substr(B,3)===Ur?(E=Ur,B+=3):(E=n,V===0&&J(hn)),E===n&&(t.substr(B,4)===Ni?(E=Ni,B+=4):(E=n,V===0&&J(Bo)),E===n&&(t.substr(B,5)===_r?(E=_r,B+=5):(E=n,V===0&&J(U)),E===n&&(t.substr(B,6)===K?(E=K,B+=6):(E=n,V===0&&J(W)),E===n&&(t.substr(B,4)===N?(E=N,B+=4):(E=n,V===0&&J(Ze)),E===n&&(t.substr(B,5)===se?(E=se,B+=5):(E=n,V===0&&J(it)),E===n&&(t.substr(B,5)===$e?(E=$e,B+=5):(E=n,V===0&&J(dn)),E===n&&(t.substr(B,4)===vo?(E=vo,B+=4):(E=n,V===0&&J(GP)),E===n&&(t.substr(B,6)===VE?(E=VE,B+=6):(E=n,V===0&&J(zP)),E===n&&(t.substr(B,7)===JE?(E=JE,B+=7):(E=n,V===0&&J(HP)),E===n&&(t.substr(B,4)===qE?(E=qE,B+=4):(E=n,V===0&&J(YP)),E===n&&(t.substr(B,6)===KE?(E=KE,B+=6):(E=n,V===0&&J(VP)),E===n&&(t.substr(B,6)===jE?(E=jE,B+=6):(E=n,V===0&&J(JP)),E===n&&(t.substr(B,3)===WE?(E=WE,B+=3):(E=n,V===0&&J(qP)),E===n&&(E=B,D=fI(),D!==n?(T=X(),T!==n?(L=uI(),L!==n?(rt=E,D=KP(D,L),E=D):(B=E,E=n)):(B=E,E=n)):(B=E,E=n))))))))))))))),E}function cL(){var E;return E=lL(),E===n&&(E=Ft()),E}function Ft(){var E,D,T,L,H;if(E=B,D=B,jP.test(t.charAt(B))?(T=t.charAt(B),B++):(T=n,V===0&&J(WP)),T!==n){for(L=[],XE.test(t.charAt(B))?(H=t.charAt(B),B++):(H=n,V===0&&J(ZE));H!==n;)L.push(H),XE.test(t.charAt(B))?(H=t.charAt(B),B++):(H=n,V===0&&J(ZE));L!==n?(T=[T,L],D=T):(B=D,D=n)}else B=D,D=n;return D!==n&&(rt=E,D=XP()),E=D,E}function hI(){var E,D,T;for(E=B,D=[],$E.test(t.charAt(B))?(T=t.charAt(B),B++):(T=n,V===0&&J(eI));T!==n;)D.push(T),$E.test(t.charAt(B))?(T=t.charAt(B),B++):(T=n,V===0&&J(eI));return D!==n&&(rt=E,D=ZP(D)),E=D,E}function lL(){var E,D,T,L;if(V++,E=B,D=X(),D!==n){if(T=[],tI.test(t.charAt(B))?(L=t.charAt(B),B++):(L=n,V===0&&J(nI)),L!==n)for(;L!==n;)T.push(L),tI.test(t.charAt(B))?(L=t.charAt(B),B++):(L=n,V===0&&J(nI));else T=n;T!==n?(rt=E,D=eL(),E=D):(B=E,E=n)}else B=E,E=n;return V--,E===n&&(D=n,V===0&&J($P)),E}function X(){var E,D;for(V++,E=[],iI.test(t.charAt(B))?(D=t.charAt(B),B++):(D=n,V===0&&J(rI));D!==n;)E.push(D),iI.test(t.charAt(B))?(D=t.charAt(B),B++):(D=n,V===0&&J(rI));return V--,E===n&&(D=n,V===0&&J(tL)),E}if(Xc=r(),Xc!==n&&B===t.length)return Xc;throw Xc!==n&&B<t.length&&J(nL()),iL(ch,jt<t.length?t.charAt(jt):null,jt<t.length?cI(jt,jt+1):cI(jt,jt))}const Jy={SyntaxError:Br,parse:TT},xA=Object.fromEntries(Object.entries(Object.freeze(Object.defineProperty({__proto__:null,bigChain:`table bigChain
|
|
663
663
|
"bigChain pairwise alignment"
|
|
664
664
|
(
|
|
665
665
|
string chrom; "Reference sequence chromosome or scaffold"
|
|
@@ -818,12 +818,19 @@ chrM 16299`};function wD(n){if(!(n in Dp))throw new Error(`Unknown assembly: ${n
|
|
|
818
818
|
float score; "Floating point score."
|
|
819
819
|
char[1] leftStatus; "Gap/break annotation for preceding block"
|
|
820
820
|
char[1] rightStatus; "Gap/break annotation for following block"
|
|
821
|
-
)`},Symbol.toStringTag,{value:"Module"}))).map(([n,e])=>[n,aC.parse(e.trim())]));function iA(n){const e=new Set(["uint","int","float","long"]);return{...n,fields:n.fields.map(t=>({...t,isArray:t.size&&t.type!=="char",arrayIsNumeric:t.size&&e.has(t.type),isNumeric:!t.size&&e.has(t.type)})).filter(t=>!!t.name)}}const a5={".":0,"-":-1,"+":1};function c5(n){return n.length>=12&&!Number.isNaN(Number.parseInt(n[9],10))&&n[10]?.split(",").filter(e=>!!e).length===Number.parseInt(n[9],10)}class l5{constructor(e={}){if(e.autoSql)this.autoSql=iA(aC.parse(e.autoSql));else if(e.type){if(!rA[e.type])throw new Error("Type not found");this.autoSql=iA(rA[e.type])}else this.autoSql=iA(rA.defaultBedSchema),this.attemptDefaultBed=!0}parseLine(e,t={}){const{autoSql:r}=this,{uniqueId:i}=t,s=Array.isArray(e)?e:e.split(" ");let o={};if(!this.attemptDefaultBed||this.attemptDefaultBed&&c5(s))for(let a=0;a<r.fields.length;a++){const l=r.fields[a];let c=s[a];const{isNumeric:u,isArray:f,arrayIsNumeric:h,name:A}=l;if(c==null)break;if(c!=="."){if(u){const d=Number(c);c=Number.isNaN(d)?c:d}else f&&(c=c.split(","),c.at(-1)===""&&c.pop(),h&&(c=c.map(Number)));o[A]=c}}else{const a=["chrom","chromStart","chromEnd","name"];o=Object.fromEntries(s.map((l,c)=>[a[c]||"field"+c,l])),o.chromStart=+o.chromStart,o.chromEnd=+o.chromEnd,Number.isNaN(Number.parseFloat(o.field4))||(o.score=+o.field4,delete o.field4),(o.field5==="+"||o.field5==="-")&&(o.strand=o.field5,delete o.field5)}return i&&(o.uniqueId=i),o.strand=a5[o.strand]||0,o.chrom=decodeURIComponent(o.chrom),o}}const u5=Object.freeze(Object.defineProperty({__proto__:null,default:l5},Symbol.toStringTag,{value:"Module"}));var Fe=function(n,e,t,r,i){if(r==="m")throw new TypeError("Private method is not writable");if(r==="a"&&!i)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?n!==e||!i:!e.has(n))throw new TypeError("Cannot write private member to an object whose class did not declare it");return r==="a"?i.call(n,t):i?i.value=t:e.set(n,t),t},P=function(n,e,t,r){if(t==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?n!==e||!r:!e.has(n))throw new TypeError("Cannot read private member from an object whose class did not declare it");return t==="m"?r:t==="a"?r.call(n):r?r.value:e.get(n)},ue,lt,fe,Ce,xr,io,Br,hc,kt,cC,sA,oA,aA,lC,dc;class so extends Map{constructor(e={}){if(super(),ue.add(this),lt.set(this,0),fe.set(this,new Map),Ce.set(this,new Map),xr.set(this,void 0),io.set(this,void 0),Br.set(this,void 0),!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if(typeof e.maxAge=="number"&&e.maxAge===0)throw new TypeError("`maxAge` must be a number greater than 0");Fe(this,xr,e.maxSize,"f"),Fe(this,io,e.maxAge||Number.POSITIVE_INFINITY,"f"),Fe(this,Br,e.onEviction,"f")}get __oldCache(){return P(this,Ce,"f")}get(e){if(P(this,fe,"f").has(e)){const t=P(this,fe,"f").get(e);return P(this,ue,"m",sA).call(this,e,t)}if(P(this,Ce,"f").has(e)){const t=P(this,Ce,"f").get(e);if(!P(this,ue,"m",kt).call(this,e,t))return P(this,ue,"m",lC).call(this,e,t),t.value}}set(e,t,{maxAge:r=P(this,io,"f")}={}){const i=typeof r=="number"&&r!==Number.POSITIVE_INFINITY?Date.now()+r:void 0;return P(this,fe,"f").has(e)?P(this,fe,"f").set(e,{value:t,expiry:i}):P(this,ue,"m",aA).call(this,e,{value:t,expiry:i}),this}has(e){return P(this,fe,"f").has(e)?!P(this,ue,"m",kt).call(this,e,P(this,fe,"f").get(e)):P(this,Ce,"f").has(e)?!P(this,ue,"m",kt).call(this,e,P(this,Ce,"f").get(e)):!1}peek(e){if(P(this,fe,"f").has(e))return P(this,ue,"m",oA).call(this,e,P(this,fe,"f"));if(P(this,Ce,"f").has(e))return P(this,ue,"m",oA).call(this,e,P(this,Ce,"f"))}expiresIn(e){const t=P(this,fe,"f").get(e)??P(this,Ce,"f").get(e);if(t)return t.expiry?t.expiry-Date.now():Number.POSITIVE_INFINITY}delete(e){var t;const r=P(this,fe,"f").delete(e);return r&&Fe(this,lt,(t=P(this,lt,"f"),t--,t),"f"),P(this,Ce,"f").delete(e)||r}clear(){P(this,fe,"f").clear(),P(this,Ce,"f").clear(),Fe(this,lt,0,"f")}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");const t=[...P(this,ue,"m",dc).call(this)],r=t.length-e;r<0?(Fe(this,fe,new Map(t),"f"),Fe(this,Ce,new Map,"f"),Fe(this,lt,t.length,"f")):(r>0&&P(this,ue,"m",hc).call(this,t.slice(0,r)),Fe(this,Ce,new Map(t.slice(r)),"f"),Fe(this,fe,new Map,"f"),Fe(this,lt,0,"f")),Fe(this,xr,e,"f")}evict(e=1){const t=e;if(!t||t<=0)return;const r=[...P(this,ue,"m",dc).call(this)],i=Math.trunc(Math.min(t,Math.max(r.length-1,0)));i<=0||(P(this,ue,"m",hc).call(this,r.slice(0,i)),Fe(this,Ce,new Map(r.slice(i)),"f"),Fe(this,fe,new Map,"f"),Fe(this,lt,0,"f"))}*keys(){for(const[e]of this)yield e}*values(){for(const[,e]of this)yield e}*[(lt=new WeakMap,fe=new WeakMap,Ce=new WeakMap,xr=new WeakMap,io=new WeakMap,Br=new WeakMap,ue=new WeakSet,hc=function(t){if(typeof P(this,Br,"f")=="function")for(const[r,i]of t)P(this,Br,"f").call(this,r,i.value)},kt=function(t,r){return typeof r.expiry=="number"&&r.expiry<=Date.now()?(typeof P(this,Br,"f")=="function"&&P(this,Br,"f").call(this,t,r.value),this.delete(t)):!1},cC=function(t,r){if(!P(this,ue,"m",kt).call(this,t,r))return r.value},sA=function(t,r){return r.expiry?P(this,ue,"m",cC).call(this,t,r):r.value},oA=function(t,r){const i=r.get(t);return P(this,ue,"m",sA).call(this,t,i)},aA=function(t,r){var i;P(this,fe,"f").set(t,r),Fe(this,lt,(i=P(this,lt,"f"),i++,i),"f"),P(this,lt,"f")>=P(this,xr,"f")&&(Fe(this,lt,0,"f"),P(this,ue,"m",hc).call(this,P(this,Ce,"f")),Fe(this,Ce,P(this,fe,"f"),"f"),Fe(this,fe,new Map,"f"))},lC=function(t,r){P(this,Ce,"f").delete(t),P(this,ue,"m",aA).call(this,t,r)},dc=function*(){for(const t of P(this,Ce,"f")){const[r,i]=t;P(this,fe,"f").has(r)||P(this,ue,"m",kt).call(this,r,i)||(yield t)}for(const t of P(this,fe,"f")){const[r,i]=t;P(this,ue,"m",kt).call(this,r,i)||(yield t)}},Symbol.iterator)](){for(const e of P(this,fe,"f")){const[t,r]=e;P(this,ue,"m",kt).call(this,t,r)||(yield[t,r.value])}for(const e of P(this,Ce,"f")){const[t,r]=e;P(this,fe,"f").has(t)||P(this,ue,"m",kt).call(this,t,r)||(yield[t,r.value])}}*entriesDescending(){let e=[...P(this,fe,"f")];for(let t=e.length-1;t>=0;--t){const r=e[t],[i,s]=r;P(this,ue,"m",kt).call(this,i,s)||(yield[i,s.value])}e=[...P(this,Ce,"f")];for(let t=e.length-1;t>=0;--t){const r=e[t],[i,s]=r;P(this,fe,"f").has(i)||P(this,ue,"m",kt).call(this,i,s)||(yield[i,s.value])}}*entriesAscending(){for(const[e,t]of P(this,ue,"m",dc).call(this))yield[e,t.value]}get size(){if(!P(this,lt,"f"))return P(this,Ce,"f").size;let e=0;for(const t of P(this,Ce,"f").keys())P(this,fe,"f").has(t)||e++;return Math.min(P(this,lt,"f")+e,P(this,xr,"f"))}get maxSize(){return P(this,xr,"f")}get maxAge(){return P(this,io,"f")}entries(){return this.entriesAscending()}forEach(e,t=this){for(const[r,i]of this.entriesAscending())e.call(t,i,r,this)}get[Symbol.toStringTag](){return"QuickLRU"}toString(){return`QuickLRU(${this.size}/${this.maxSize})`}[Symbol.for("nodejs.util.inspect.custom")](){return this.toString()}}let uC=class{constructor(e,t,r,i){this.minv=e,this.maxv=t,this.bin=r,this._fetchedSize=i}toUniqueString(){return`${this.minv.toString()}..${this.maxv.toString()} (bin ${this.bin}, fetchedSize ${this.fetchedSize()})`}toString(){return this.toUniqueString()}compareTo(e){return this.minv.compareTo(e.minv)||this.maxv.compareTo(e.maxv)||this.bin-e.bin}fetchedSize(){return this._fetchedSize!==void 0?this._fetchedSize:this.maxv.blockPosition+65536-this.minv.blockPosition}};const fC=65536,f5=fC*fC;function A5(n,e=0){const t=n[e]|n[e+1]<<8|n[e+2]<<16|n[e+3]<<24;return((n[e+4]|n[e+5]<<8|n[e+6]<<16|n[e+7]<<24)>>>0)*f5+(t>>>0)}function h5(n={}){return"aborted"in n?{signal:n}:n}function cA(n,e){const t=n.length;if(t===0)return n;let r;if(e){const l=e.blockPosition,c=e.dataPosition;r=[];for(let u=0;u<t;u++){const f=n[u],h=f.maxv;(h.blockPosition-l||h.dataPosition-c)>0&&r.push(f)}if(r.length===0)return r}else r=n;r.sort((l,c)=>{const u=l.minv.blockPosition-c.minv.blockPosition;return u!==0?u:l.minv.dataPosition-c.minv.dataPosition});const i=[];let s=r[0];i.push(s);let o=s.minv.blockPosition,a=s.maxv.blockPosition;for(let l=1;l<r.length;l++){const c=r[l],u=c.minv.blockPosition,f=c.maxv.blockPosition;if(u-a<65e3&&f-o<5e6){const h=c.maxv,A=s.maxv;(f-a||h.dataPosition-A.dataPosition)>0&&(s.maxv=h,a=f)}else i.push(c),s=c,o=u,a=f}return i}function AC(n,e){return{lineCount:A5(n,e)}}function oo(n,e){return n?n.compareTo(e)>0?e:n:e}function d5(n,e=t=>t){let t=0,r=0;const i=[],s={};for(let o=0;o<n.length;o+=1)if(!n[o]){if(r<o){let a="";for(let l=r;l<o;l++)a+=String.fromCharCode(n[l]);a=e(a),i[t]=a,s[a]=t}r=o+1,t+=1}return{refNameToId:s,refIdToName:i}}function g5(n){let e=0;for(const i of n)e+=i.length;const t=new Uint8Array(e);let r=0;for(const i of n)t.set(i,r),r+=i.length;return t}function p5(n,e,t){return!!((n&e)!==e||n&t)}function m5(n,e){return e==="*"?n===void 0:`${n}`!=`${e}`}function w5(n){if(!n)return"";const{flagInclude:e=0,flagExclude:t=0,tagFilter:r}=n,i=r?`:${r.tag}=${r.value??"*"}`:"";return`:f${e}x${t}${i}`}let hC=class{constructor({filehandle:e,renameRefSeq:t=r=>r}){this.filehandle=e,this.renameRefSeq=t}async estimatedBytesForRegions(e,t){const r=await Promise.all(e.map(o=>this.blocksForRange(o.refId,o.start,o.end,t))),i=cA(r.flat());let s=0;for(const o of i)s+=o.fetchedSize();return s}},dC=class{constructor(e,t){this.blockPosition=e,this.dataPosition=t}toString(){return`${this.blockPosition}:${this.dataPosition}`}compareTo(e){return this.blockPosition-e.blockPosition||this.dataPosition-e.dataPosition}};function Gn(n,e=0,t=!1){if(t)throw new Error("big-endian virtual file offsets not implemented");return new dC(n[e+7]*1099511627776+n[e+6]*4294967296+n[e+5]*16777216+n[e+4]*65536+n[e+3]*256+n[e+2],n[e+1]<<8|n[e])}const C5=21578050;function y5(n,e){return n-n%e}function I5(n,e){return n-n%e+e}function b5(n,e){return e-=1,[[0,0],[1+(n>>26),1+(e>>26)],[9+(n>>23),9+(e>>23)],[73+(n>>20),73+(e>>20)],[585+(n>>17),585+(e>>17)],[4681+(n>>14),4681+(e>>14)]]}class yi extends hC{async lineCount(e,t){return(await this.parse(t)).indices(e)?.stats?.lineCount||0}async _parse(e){const t=await this.filehandle.readFile(),r=new DataView(t.buffer);if(r.getUint32(0,!0)!==C5)throw new Error("Not a BAI file");const i=r.getInt32(4,!0),o=((1<<(5+1)*3)-1)/7;let a=8,l;const c=[];for(let h=0;h<i;h++){c.push(a);const A=r.getInt32(a,!0);a+=4;for(let p=0;p<A;p+=1){const m=r.getUint32(a,!0);if(a+=4,m===o+1)a+=4,a+=32;else{if(m>o+1)throw new Error("bai index contains too many bins, please use CSI");{const C=r.getInt32(a,!0);a+=4;for(let y=0;y<C;y++)a+=8,a+=8}}}const d=r.getInt32(a,!0);a+=4;const g=new Array(d);for(let p=0;p<d;p++){const m=Gn(t,a);a+=8,l=oo(l,m),g[p]=m}}const u=new so({maxSize:5});function f(h){let A=c[h];if(A===void 0)return;const d=r.getInt32(A,!0);let g;A+=4;const p={};for(let y=0;y<d;y+=1){const w=r.getUint32(A,!0);if(A+=4,w===o+1)A+=4,g=AC(t,A+16),A+=32;else{if(w>o+1)throw new Error("bai index contains too many bins, please use CSI");{const E=r.getInt32(A,!0);A+=4;const x=new Array(E);for(let b=0;b<E;b++){const S=Gn(t,A);A+=8;const Q=Gn(t,A);A+=8,l=oo(l,S),x[b]=new uC(S,Q,w)}p[w]=x}}}const m=r.getInt32(A,!0);A+=4;const C=new Array(m);for(let y=0;y<m;y++){const w=Gn(t,A);A+=8,l=oo(l,w),C[y]=w}return{binIndex:p,linearIndex:C,stats:g}}return{bai:!0,firstDataLine:l,maxBlockSize:65536,indices:h=>{if(!u.has(h)){const A=f(h);return A&&u.set(h,A),A}return u.get(h)},refCount:i}}async indexCov(e,t,r,i){const o=t!==void 0,l=(await this.parse(i)).indices(e);if(!l)return[];const{linearIndex:c,stats:u}=l;if(c.length===0)return[];const f=r===void 0?(c.length-1)*16384:I5(r,16384),h=t===void 0?0:y5(t,16384),A=o?new Array((f-h)/16384):new Array(c.length-1),d=c[c.length-1].blockPosition;if(f>(c.length-1)*16384)throw new Error("query outside of range of linear index");let g=c[h/16384].blockPosition;for(let p=h/16384,m=0;p<f/16384;p++,m++)A[m]={score:c[p+1].blockPosition-g,start:p*16384,end:p*16384+16384},g=c[p+1].blockPosition;return A.map(p=>({...p,score:p.score*(u?.lineCount||0)/d}))}async blocksForRange(e,t,r,i={}){t<0&&(t=0);const s=await this.parse(i);if(!s)return[];const o=s.indices(e);if(!o)return[];const a=b5(t,r),l=[],{binIndex:c}=o;for(const[d,g]of a)for(let p=d;p<=g;p++){const m=c[p];if(m)for(let C=0,y=m.length;C<y;C++)l.push(m[C])}const{linearIndex:u}=o,f=u.length,h=Math.min(t>>14,f-1),A=u[h];return cA(l,A)}async parse(e={}){return this.setupP||(this.setupP=this._parse(e).catch(t=>{throw this.setupP=void 0,t})),this.setupP}async hasRefSeq(e,t={}){return!!(await this.parse(t)).indices(e)?.binIndex}}var gC=0,pC=2,gc=4,vr=0,pc=1,E5=2,x5=-5;function B5(n,e){return Object.prototype.hasOwnProperty.call(n,e)}function v5(n){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var t=e.shift();if(t){if(typeof t!="object")throw new TypeError(t+"must be non-object");for(var r in t)B5(t,r)&&(n[r]=t[r])}}return n}function mC(n,e){return n.length===e?n:n.subarray?n.subarray(0,e):(n.length=e,n)}var ao={arraySet:function(n,e,t,r,i){if(e.subarray&&n.subarray){n.set(e.subarray(t,t+r),i);return}for(var s=0;s<r;s++)n[i+s]=e[t+s]},flattenChunks:function(n){var e,t,r,i,s,o;for(r=0,e=0,t=n.length;e<t;e++)r+=n[e].length;for(o=new Uint8Array(r),i=0,e=0,t=n.length;e<t;e++)s=n[e],o.set(s,i),i+=s.length;return o},Buf8:function(n){return new Uint8Array(n)},Buf16:function(n){return new Uint16Array(n)},Buf32:function(n){return new Int32Array(n)}},co={arraySet:function(n,e,t,r,i){for(var s=0;s<r;s++)n[i+s]=e[t+s]},flattenChunks:function(n){return[].concat.apply([],n)},Buf8:function(n){return new Array(n)},Buf16:function(n){return new Array(n)},Buf32:function(n){return new Array(n)}};let Ii=()=>{const n=typeof Uint8Array<"u"&&typeof Uint16Array<"u"&&typeof Int32Array<"u";return Ii=()=>n,n},zn=(n,e,t,r,i)=>(zn=Ii()?ao.arraySet:co.arraySet,zn(n,e,t,r,i)),lA=n=>(lA=Ii()?ao.flattenChunks:co.flattenChunks,lA(n)),bi=n=>(bi=Ii()?ao.Buf8:co.Buf8,bi(n)),Ei=n=>(Ei=Ii()?ao.Buf16:co.Buf16,Ei(n)),xi=n=>(xi=Ii()?ao.Buf32:co.Buf32,xi(n)),wC=function(){let n=!0;try{String.fromCharCode.apply(null,[0])}catch{n=!1}return wC=()=>n,n},CC=function(){let n=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{n=!1}return CC=()=>n,n},uA=function(n){for(var e=bi(256),t=0;t<256;t++)e[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;return e[254]=e[254]=1,uA=r=>e[r],e[n]};function yC(n){var e,t,r,i,s,o=n.length,a=0;for(i=0;i<o;i++)t=n.charCodeAt(i),(t&64512)===55296&&i+1<o&&(r=n.charCodeAt(i+1),(r&64512)===56320&&(t=65536+(t-55296<<10)+(r-56320),i++)),a+=t<128?1:t<2048?2:t<65536?3:4;for(e=new Uint8Array(a),s=0,i=0;s<a;i++)t=n.charCodeAt(i),(t&64512)===55296&&i+1<o&&(r=n.charCodeAt(i+1),(r&64512)===56320&&(t=65536+(t-55296<<10)+(r-56320),i++)),t<128?e[s++]=t:t<2048?(e[s++]=192|t>>>6,e[s++]=128|t&63):t<65536?(e[s++]=224|t>>>12,e[s++]=128|t>>>6&63,e[s++]=128|t&63):(e[s++]=240|t>>>18,e[s++]=128|t>>>12&63,e[s++]=128|t>>>6&63,e[s++]=128|t&63);return e}function S5(n,e){if(e<65534&&(n.subarray&&CC()||!n.subarray&&wC()))return String.fromCharCode.apply(null,mC(n,e));for(var t="",r=0;r<e;r++)t+=String.fromCharCode(n[r]);return t}function Q5(n){for(var e=new Uint8Array(n.length),t=0,r=e.length;t<r;t++)e[t]=n.charCodeAt(t);return e}function D5(n,e){var t,r,i,s,o=e||n.length,a=new Array(o*2);for(r=0,t=0;t<o;){if(i=n[t++],i<128){a[r++]=i;continue}if(s=uA(i),s>4){a[r++]=65533,t+=s-1;continue}for(i&=s===2?31:s===3?15:7;s>1&&t<o;)i=i<<6|n[t++]&63,s--;if(s>1){a[r++]=65533;continue}i<65536?a[r++]=i:(i-=65536,a[r++]=55296|i>>10&1023,a[r++]=56320|i&1023)}return S5(a,r)}function k5(n,e){var t;for(e=e||n.length,e>n.length&&(e=n.length),t=e-1;t>=0&&(n[t]&192)===128;)t--;return t<0||t===0?e:t+uA(n[t])>e?t:e}function F5(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}function fA(n,e,t,r){for(var i=n&65535|0,s=n>>>16&65535|0,o=0;t!==0;){o=t>2e3?2e3:t,t-=o;do i=i+e[r++]|0,s=s+i|0;while(--o);i%=65521,s%=65521}return i|s<<16|0}function R5(){for(var n,e=[],t=0;t<256;t++){n=t;for(var r=0;r<8;r++)n=n&1?3988292384^n>>>1:n>>>1;e[t]=n}return e}let IC=function(){const n=R5();return IC=()=>n,n};function Jt(n,e,t,r){var i=IC(),s=r+t;n^=-1;for(var o=r;o<s;o++)n=n>>>8^i[(n^e[o])&255];return n^-1}var mc=30,M5=12;function N5(n,e){var t,r,i,s,o,a,l,c,u,f,h,A,d,g,p,m,C,y,w,E,x,b,S,Q,v;t=n.state,r=n.next_in,Q=n.input,i=r+(n.avail_in-5),s=n.next_out,v=n.output,o=s-(e-n.avail_out),a=s+(n.avail_out-257),l=t.dmax,c=t.wsize,u=t.whave,f=t.wnext,h=t.window,A=t.hold,d=t.bits,g=t.lencode,p=t.distcode,m=(1<<t.lenbits)-1,C=(1<<t.distbits)-1;e:do{d<15&&(A+=Q[r++]<<d,d+=8,A+=Q[r++]<<d,d+=8),y=g[A&m];t:for(;;){if(w=y>>>24,A>>>=w,d-=w,w=y>>>16&255,w===0)v[s++]=y&65535;else if(w&16){E=y&65535,w&=15,w&&(d<w&&(A+=Q[r++]<<d,d+=8),E+=A&(1<<w)-1,A>>>=w,d-=w),d<15&&(A+=Q[r++]<<d,d+=8,A+=Q[r++]<<d,d+=8),y=p[A&C];n:for(;;){if(w=y>>>24,A>>>=w,d-=w,w=y>>>16&255,w&16){if(x=y&65535,w&=15,d<w&&(A+=Q[r++]<<d,d+=8,d<w&&(A+=Q[r++]<<d,d+=8)),x+=A&(1<<w)-1,x>l){n.msg="invalid distance too far back",t.mode=mc;break e}if(A>>>=w,d-=w,w=s-o,x>w){if(w=x-w,w>u&&t.sane){n.msg="invalid distance too far back",t.mode=mc;break e}if(b=0,S=h,f===0){if(b+=c-w,w<E){E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}}else if(f<w){if(b+=c+f-w,w-=f,w<E){E-=w;do v[s++]=h[b++];while(--w);if(b=0,f<E){w=f,E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}}}else if(b+=f-w,w<E){E-=w;do v[s++]=h[b++];while(--w);b=s-x,S=v}for(;E>2;)v[s++]=S[b++],v[s++]=S[b++],v[s++]=S[b++],E-=3;E&&(v[s++]=S[b++],E>1&&(v[s++]=S[b++]))}else{b=s-x;do v[s++]=v[b++],v[s++]=v[b++],v[s++]=v[b++],E-=3;while(E>2);E&&(v[s++]=v[b++],E>1&&(v[s++]=v[b++]))}}else if((w&64)===0){y=p[(y&65535)+(A&(1<<w)-1)];continue n}else{n.msg="invalid distance code",t.mode=mc;break e}break}}else if((w&64)===0){y=g[(y&65535)+(A&(1<<w)-1)];continue t}else if(w&32){t.mode=M5;break e}else{n.msg="invalid literal/length code",t.mode=mc;break e}break}}while(r<i&&s<a);E=d>>3,r-=E,d-=E<<3,A&=(1<<d)-1,n.next_in=r,n.next_out=s,n.avail_in=r<i?5+(i-r):5-(r-i),n.avail_out=s<a?257+(a-s):257-(s-a),t.hold=A,t.bits=d}var Bi=15,bC=852,EC=592,xC=0,AA=1,BC=2,T5=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],P5=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],L5=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],O5=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];function lo(n,e,t,r,i,s,o,a){var l=a.bits,c=0,u=0,f=0,h=0,A=0,d=0,g=0,p=0,m=0,C=0,y,w,E,x,b,S=null,Q=0,v,F=Ei(Bi+1),R=Ei(Bi+1),N=null,O=0,H,G,_;for(c=0;c<=Bi;c++)F[c]=0;for(u=0;u<r;u++)F[e[t+u]]++;for(A=l,h=Bi;h>=1&&F[h]===0;h--);if(A>h&&(A=h),h===0)return i[s++]=1<<24|64<<16|0,i[s++]=1<<24|64<<16|0,a.bits=1,0;for(f=1;f<h&&F[f]===0;f++);for(A<f&&(A=f),p=1,c=1;c<=Bi;c++)if(p<<=1,p-=F[c],p<0)return-1;if(p>0&&(n===xC||h!==1))return-1;for(R[1]=0,c=1;c<Bi;c++)R[c+1]=R[c]+F[c];for(u=0;u<r;u++)e[t+u]!==0&&(o[R[e[t+u]]++]=u);if(n===xC?(S=N=o,v=19):n===AA?(S=T5,Q-=257,N=P5,O-=257,v=256):(S=L5,N=O5,v=-1),C=0,u=0,c=f,b=s,d=A,g=0,E=-1,m=1<<A,x=m-1,n===AA&&m>bC||n===BC&&m>EC)return 1;for(;;){H=c-g,o[u]<v?(G=0,_=o[u]):o[u]>v?(G=N[O+o[u]],_=S[Q+o[u]]):(G=96,_=0),y=1<<c-g,w=1<<d,f=w;do w-=y,i[b+(C>>g)+w]=H<<24|G<<16|_|0;while(w!==0);for(y=1<<c-1;C&y;)y>>=1;if(y!==0?(C&=y-1,C+=y):C=0,u++,--F[c]===0){if(c===h)break;c=e[t+o[u]]}if(c>A&&(C&x)!==E){for(g===0&&(g=A),b+=f,d=c-g,p=1<<d;d+g<h&&(p-=F[d+g],!(p<=0));)d++,p<<=1;if(m+=1<<d,n===AA&&m>bC||n===BC&&m>EC)return 1;E=C&x,i[E]=A<<24|d<<16|b-s|0}}return C!==0&&(i[b+C]=c-g<<24|64<<16|0),a.bits=A,0}var U5=0,vC=1,SC=2,QC=4,Sr=0,G5=1,z5=2,Ct=-2,DC=-3,kC=-4,H5=-5,FC=8,RC=1,MC=2,NC=3,TC=4,PC=5,LC=6,OC=7,UC=8,GC=9,zC=10,wc=11,un=12,hA=13,HC=14,dA=15,VC=16,_C=17,YC=18,JC=19,Cc=20,yc=21,qC=22,KC=23,jC=24,WC=25,XC=26,gA=27,ZC=28,$C=29,me=30,ey=31,V5=32,_5=852,Y5=592;function ty(n){return(n>>>24&255)+(n>>>8&65280)+((n&65280)<<8)+((n&255)<<24)}function J5(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=Ei(320),this.work=Ei(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function q5(n){var e;return!n||!n.state?Ct:(e=n.state,n.total_in=n.total_out=e.total=0,n.msg="",e.wrap&&(n.adler=e.wrap&1),e.mode=RC,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=xi(_5),e.distcode=e.distdyn=xi(Y5),e.sane=1,e.back=-1,Sr)}function K5(n){var e;return!n||!n.state?Ct:(e=n.state,e.wsize=0,e.whave=0,e.wnext=0,q5(n))}function j5(n,e){var t,r;return!n||!n.state||(r=n.state,e<0?(t=0,e=-e):(t=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?Ct:(r.window!==null&&r.wbits!==e&&(r.window=null),r.wrap=t,r.wbits=e,K5(n))}function W5(n,e){var t,r;return n?(r=new J5,n.state=r,r.window=null,t=j5(n,e),t!==Sr&&(n.state=null),t):Ct}var ny=!0,pA,mA;function X5(n){if(ny){var e;for(pA=xi(512),mA=xi(32),e=0;e<144;)n.lens[e++]=8;for(;e<256;)n.lens[e++]=9;for(;e<280;)n.lens[e++]=7;for(;e<288;)n.lens[e++]=8;for(lo(vC,n.lens,0,288,pA,0,n.work,{bits:9}),e=0;e<32;)n.lens[e++]=5;lo(SC,n.lens,0,32,mA,0,n.work,{bits:5}),ny=!1}n.lencode=pA,n.lenbits=9,n.distcode=mA,n.distbits=5}function ry(n,e,t,r){var i,s=n.state;return s.window===null&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=bi(s.wsize)),r>=s.wsize?(zn(s.window,e,t-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(i=s.wsize-s.wnext,i>r&&(i=r),zn(s.window,e,t-r,i,s.wnext),r-=i,r?(zn(s.window,e,t-r,r,0),s.wnext=r,s.whave=s.wsize):(s.wnext+=i,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=i))),0}function Z5(n,e){var t,r,i,s,o,a,l,c,u,f,h,A,d,g,p=0,m,C,y,w,E,x,b,S,Q=bi(4),v,F,R=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!n||!n.state||!n.output||!n.input&&n.avail_in!==0)return Ct;t=n.state,t.mode===un&&(t.mode=hA),o=n.next_out,i=n.output,l=n.avail_out,s=n.next_in,r=n.input,a=n.avail_in,c=t.hold,u=t.bits,f=a,h=l,S=Sr;e:for(;;)switch(t.mode){case RC:if(t.wrap===0){t.mode=hA;break}for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.wrap&2&&c===35615){t.check=0,Q[0]=c&255,Q[1]=c>>>8&255,t.check=Jt(t.check,Q,2,0),c=0,u=0,t.mode=MC;break}if(t.flags=0,t.head&&(t.head.done=!1),!(t.wrap&1)||(((c&255)<<8)+(c>>8))%31){n.msg="incorrect header check",t.mode=me;break}if((c&15)!==FC){n.msg="unknown compression method",t.mode=me;break}if(c>>>=4,u-=4,b=(c&15)+8,t.wbits===0)t.wbits=b;else if(b>t.wbits){n.msg="invalid window size",t.mode=me;break}t.dmax=1<<b,n.adler=t.check=1,t.mode=c&512?zC:un,c=0,u=0;break;case MC:for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.flags=c,(t.flags&255)!==FC){n.msg="unknown compression method",t.mode=me;break}if(t.flags&57344){n.msg="unknown header flags set",t.mode=me;break}t.head&&(t.head.text=c>>8&1),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Jt(t.check,Q,2,0)),c=0,u=0,t.mode=NC;case NC:for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.head&&(t.head.time=c),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,Q[2]=c>>>16&255,Q[3]=c>>>24&255,t.check=Jt(t.check,Q,4,0)),c=0,u=0,t.mode=TC;case TC:for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.head&&(t.head.xflags=c&255,t.head.os=c>>8),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Jt(t.check,Q,2,0)),c=0,u=0,t.mode=PC;case PC:if(t.flags&1024){for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.length=c,t.head&&(t.head.extra_len=c),t.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,t.check=Jt(t.check,Q,2,0)),c=0,u=0}else t.head&&(t.head.extra=null);t.mode=LC;case LC:if(t.flags&1024&&(A=t.length,A>a&&(A=a),A&&(t.head&&(b=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Array(t.head.extra_len)),zn(t.head.extra,r,s,A,b)),t.flags&512&&(t.check=Jt(t.check,r,A,s)),a-=A,s+=A,t.length-=A),t.length))break e;t.length=0,t.mode=OC;case OC:if(t.flags&2048){if(a===0)break e;A=0;do b=r[s+A++],t.head&&b&&t.length<65536&&(t.head.name+=String.fromCharCode(b));while(b&&A<a);if(t.flags&512&&(t.check=Jt(t.check,r,A,s)),a-=A,s+=A,b)break e}else t.head&&(t.head.name=null);t.length=0,t.mode=UC;case UC:if(t.flags&4096){if(a===0)break e;A=0;do b=r[s+A++],t.head&&b&&t.length<65536&&(t.head.comment+=String.fromCharCode(b));while(b&&A<a);if(t.flags&512&&(t.check=Jt(t.check,r,A,s)),a-=A,s+=A,b)break e}else t.head&&(t.head.comment=null);t.mode=GC;case GC:if(t.flags&512){for(;u<16;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c!==(t.check&65535)){n.msg="header crc mismatch",t.mode=me;break}c=0,u=0}t.head&&(t.head.hcrc=t.flags>>9&1,t.head.done=!0),n.adler=t.check=0,t.mode=un;break;case zC:for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}n.adler=t.check=ty(c),c=0,u=0,t.mode=wc;case wc:if(t.havedict===0)return n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,z5;n.adler=t.check=1,t.mode=un;case un:case hA:if(t.last){c>>>=u&7,u-=u&7,t.mode=gA;break}for(;u<3;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}switch(t.last=c&1,c>>>=1,u-=1,c&3){case 0:t.mode=HC;break;case 1:X5(t),t.mode=Cc;break;case 2:t.mode=_C;break;case 3:n.msg="invalid block type",t.mode=me}c>>>=2,u-=2;break;case HC:for(c>>>=u&7,u-=u&7;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if((c&65535)!==(c>>>16^65535)){n.msg="invalid stored block lengths",t.mode=me;break}t.length=c&65535,c=0,u=0,t.mode=dA;case dA:t.mode=VC;case VC:if(A=t.length,A){if(A>a&&(A=a),A>l&&(A=l),A===0)break e;zn(i,r,s,A,o),a-=A,s+=A,l-=A,o+=A,t.length-=A;break}t.mode=un;break;case _C:for(;u<14;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(t.nlen=(c&31)+257,c>>>=5,u-=5,t.ndist=(c&31)+1,c>>>=5,u-=5,t.ncode=(c&15)+4,c>>>=4,u-=4,t.nlen>286||t.ndist>30){n.msg="too many length or distance symbols",t.mode=me;break}t.have=0,t.mode=YC;case YC:for(;t.have<t.ncode;){for(;u<3;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.lens[R[t.have++]]=c&7,c>>>=3,u-=3}for(;t.have<19;)t.lens[R[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,v={bits:t.lenbits},S=lo(U5,t.lens,0,19,t.lencode,0,t.work,v),t.lenbits=v.bits,S){n.msg="invalid code lengths set",t.mode=me;break}t.have=0,t.mode=JC;case JC:for(;t.have<t.nlen+t.ndist;){for(;p=t.lencode[c&(1<<t.lenbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(y<16)c>>>=m,u-=m,t.lens[t.have++]=y;else{if(y===16){for(F=m+2;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c>>>=m,u-=m,t.have===0){n.msg="invalid bit length repeat",t.mode=me;break}b=t.lens[t.have-1],A=3+(c&3),c>>>=2,u-=2}else if(y===17){for(F=m+3;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=m,u-=m,b=0,A=3+(c&7),c>>>=3,u-=3}else{for(F=m+7;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=m,u-=m,b=0,A=11+(c&127),c>>>=7,u-=7}if(t.have+A>t.nlen+t.ndist){n.msg="invalid bit length repeat",t.mode=me;break}for(;A--;)t.lens[t.have++]=b}}if(t.mode===me)break;if(t.lens[256]===0){n.msg="invalid code -- missing end-of-block",t.mode=me;break}if(t.lenbits=9,v={bits:t.lenbits},S=lo(vC,t.lens,0,t.nlen,t.lencode,0,t.work,v),t.lenbits=v.bits,S){n.msg="invalid literal/lengths set",t.mode=me;break}if(t.distbits=6,t.distcode=t.distdyn,v={bits:t.distbits},S=lo(SC,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,v),t.distbits=v.bits,S){n.msg="invalid distances set",t.mode=me;break}t.mode=Cc;case Cc:t.mode=yc;case yc:if(a>=6&&l>=258){n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,N5(n,h),o=n.next_out,i=n.output,l=n.avail_out,s=n.next_in,r=n.input,a=n.avail_in,c=t.hold,u=t.bits,t.mode===un&&(t.back=-1);break}for(t.back=0;p=t.lencode[c&(1<<t.lenbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(C&&(C&240)===0){for(w=m,E=C,x=y;p=t.lencode[x+((c&(1<<w+E)-1)>>w)],m=p>>>24,C=p>>>16&255,y=p&65535,!(w+m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=w,u-=w,t.back+=w}if(c>>>=m,u-=m,t.back+=m,t.length=y,C===0){t.mode=XC;break}if(C&32){t.back=-1,t.mode=un;break}if(C&64){n.msg="invalid literal/length code",t.mode=me;break}t.extra=C&15,t.mode=qC;case qC:if(t.extra){for(F=t.extra;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.length+=c&(1<<t.extra)-1,c>>>=t.extra,u-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=KC;case KC:for(;p=t.distcode[c&(1<<t.distbits)-1],m=p>>>24,C=p>>>16&255,y=p&65535,!(m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if((C&240)===0){for(w=m,E=C,x=y;p=t.distcode[x+((c&(1<<w+E)-1)>>w)],m=p>>>24,C=p>>>16&255,y=p&65535,!(w+m<=u);){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}c>>>=w,u-=w,t.back+=w}if(c>>>=m,u-=m,t.back+=m,C&64){n.msg="invalid distance code",t.mode=me;break}t.offset=y,t.extra=C&15,t.mode=jC;case jC:if(t.extra){for(F=t.extra;u<F;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}t.offset+=c&(1<<t.extra)-1,c>>>=t.extra,u-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){n.msg="invalid distance too far back",t.mode=me;break}t.mode=WC;case WC:if(l===0)break e;if(A=h-l,t.offset>A){if(A=t.offset-A,A>t.whave&&t.sane){n.msg="invalid distance too far back",t.mode=me;break}A>t.wnext?(A-=t.wnext,d=t.wsize-A):d=t.wnext-A,A>t.length&&(A=t.length),g=t.window}else g=i,d=o-t.offset,A=t.length;A>l&&(A=l),l-=A,t.length-=A;do i[o++]=g[d++];while(--A);t.length===0&&(t.mode=yc);break;case XC:if(l===0)break e;i[o++]=t.length,l--,t.mode=yc;break;case gA:if(t.wrap){for(;u<32;){if(a===0)break e;a--,c|=r[s++]<<u,u+=8}if(h-=l,n.total_out+=h,t.total+=h,h&&(n.adler=t.check=t.flags?Jt(t.check,i,h,o-h):fA(t.check,i,h,o-h)),h=l,(t.flags?c:ty(c))!==t.check){n.msg="incorrect data check",t.mode=me;break}c=0,u=0}t.mode=ZC;case ZC:if(t.wrap&&t.flags){for(;u<32;){if(a===0)break e;a--,c+=r[s++]<<u,u+=8}if(c!==(t.total&4294967295)){n.msg="incorrect length check",t.mode=me;break}c=0,u=0}t.mode=$C;case $C:S=G5;break e;case me:S=DC;break e;case ey:return kC;case V5:default:return Ct}return n.next_out=o,n.avail_out=l,n.next_in=s,n.avail_in=a,t.hold=c,t.bits=u,(t.wsize||h!==n.avail_out&&t.mode<me&&(t.mode<gA||e!==QC))&&ry(n,n.output,n.next_out,h-n.avail_out),f-=n.avail_in,h-=n.avail_out,n.total_in+=f,n.total_out+=h,t.total+=h,t.wrap&&h&&(n.adler=t.check=t.flags?Jt(t.check,i,h,n.next_out-h):fA(t.check,i,h,n.next_out-h)),n.data_type=t.bits+(t.last?64:0)+(t.mode===un?128:0)+(t.mode===Cc||t.mode===dA?256:0),(f===0&&h===0||e===QC)&&S===Sr&&(S=H5),S}function $5(n){if(!n||!n.state)return Ct;var e=n.state;return e.window&&(e.window=null),n.state=null,Sr}function eN(n,e){var t;return!n||!n.state||(t=n.state,(t.wrap&2)===0)?Ct:(t.head=e,e.done=!1,Sr)}function iy(n,e){var t=e.length,r,i,s;return!n||!n.state||(r=n.state,r.wrap!==0&&r.mode!==wc)?Ct:r.mode===wc&&(i=1,i=fA(i,e,t,0),i!==r.check)?DC:(s=ry(n,e,t,t),s?(r.mode=ey,kC):(r.havedict=1,Sr))}const wA={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};function tN(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var CA=Object.prototype.toString;class Ic{constructor(e){if(!(this instanceof Ic))return new Ic(e);this.options=v5({chunkSize:16384,windowBits:0,to:""},e||{});var t=this.options;t.raw&&t.windowBits>=0&&t.windowBits<16&&(t.windowBits=-t.windowBits,t.windowBits===0&&(t.windowBits=-15)),t.windowBits>=0&&t.windowBits<16&&!(e&&e.windowBits)&&(t.windowBits+=32),t.windowBits>15&&t.windowBits<48&&(t.windowBits&15)===0&&(t.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new tN,this.strm.avail_out=0;var r=W5(this.strm,t.windowBits);if(r!==vr)throw new Error(wA[r]);if(this.header=new F5,eN(this.strm,this.header),t.dictionary&&(typeof t.dictionary=="string"?t.dictionary=yC(t.dictionary):CA.call(t.dictionary)==="[object ArrayBuffer]"&&(t.dictionary=new Uint8Array(t.dictionary)),t.raw&&(r=iy(this.strm,t.dictionary),r!==vr)))throw new Error(wA[r])}push(e,t){var r=this.strm,i=this.options.chunkSize,s=this.options.dictionary,o,a,l,c,u,f,h=!1;if(this.ended)return!1;a=t===~~t?t:t===!0?gc:gC,typeof e=="string"?r.input=Q5(e):CA.call(e)==="[object ArrayBuffer]"?r.input=new Uint8Array(e):r.input=e,r.next_in=0,r.avail_in=r.input.length;do{if(r.avail_out===0&&(r.output=bi(i),r.next_out=0,r.avail_out=i),o=Z5(r,gC),o===E5&&s&&(typeof s=="string"?f=yC(s):CA.call(s)==="[object ArrayBuffer]"?f=new Uint8Array(s):f=s,o=iy(this.strm,f)),o===x5&&h===!0&&(o=vr,h=!1),o!==pc&&o!==vr)return this.onEnd(o),this.ended=!0,!1;r.next_out&&(r.avail_out===0||o===pc||r.avail_in===0&&(a===gc||a===pC))&&(this.options.to==="string"?(l=k5(r.output,r.next_out),c=r.next_out-l,u=D5(r.output,l),r.next_out=c,r.avail_out=i-c,c&&zn(r.output,r.output,l,c,0),this.onData(u)):this.onData(mC(r.output,r.next_out))),r.avail_in===0&&r.avail_out===0&&(h=!0)}while((r.avail_in>0||r.avail_out===0)&&o!==pc);return o===pc&&(a=gc),a===gc?(o=$5(this.strm),this.onEnd(o),this.ended=!0,o===vr):(a===pC&&(this.onEnd(vr),r.avail_out=0),!0)}onData(e){this.chunks.push(e)}onEnd(e){e===vr&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=lA(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg}}function nN(n,e){var t=new Ic(e);if(t.push(n,!0),t.err)throw t.msg||wA[t.err];return t.result}var rN=nN,Qr={};Qr.d=(n,e)=>{for(var t in e)Qr.o(e,t)&&!Qr.o(n,t)&&Object.defineProperty(n,t,{enumerable:!0,get:e[t]})},Qr.o=(n,e)=>Object.prototype.hasOwnProperty.call(n,e),Qr.r=n=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})};var yA={};Qr.r(yA),Qr.d(yA,{ChunkSliceResult:()=>Si,DecompressResult:()=>Qi,__wbg_Error_52673b7de5a0ca89:()=>AN,__wbg___wbindgen_throw_dd24417ed36fc46e:()=>hN,__wbg_set_wasm:()=>sy,decompress_all:()=>uy,decompress_block:()=>fN,decompress_chunk_slice:()=>fy});const iN="data:application/wasm;base64,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fGooAgAiAkF4cSIAaiEDAkACQCACQQFxDQAgAkECcUUNASABKAIAIgIgAGohAAJAIAEgAmsiAUEAKALAoEBHDQAgAygCBEEDcUEDRw0BQQAgADYCuKBAIAMgAygCBEF+cTYCBCABIABBAXI2AgQgAyAANgIADwsgASACEBALAkACQAJAAkACQAJAIAMoAgQiAkECcQ0AIANBACgCxKBARg0CIANBACgCwKBARg0DIAMgAkF4cSICEBAgASACIABqIgBBAXI2AgQgASAAaiAANgIAIAFBACgCwKBARw0BQQAgADYCuKBADwsgAyACQX5xNgIEIAEgAEEBcjYCBCABIABqIAA2AgALIABBgAJJDQIgASAAEBFBACEBQQBBACgC2KBAQX9qIgA2AtigQCAADQQCQEEAKAKgnkAiAEUNAEEAIQEDQCABQQFqIQEgACgCCCIADQALC0EAIAFB/x8gAUH/H0sbNgLYoEAPC0EAIAE2AsSgQEEAQQAoArygQCAAaiIANgK8oEAgASAAQQFyNgIEAkAgAUEAKALAoEBHDQBBAEEANgK4oEBBAEEANgLAoEALIABBACgC0KBAIgRNDQNBACgCxKBAIgBFDQNBACECQQAoArygQCIFQSlJDQJBmJ7AACEBA0ACQCABKAIAIgMgAEsNACAAIAMgASgCBGpJDQQLIAEoAgghAQwACwtBACABNgLAoEBBAEEAKAK4oEAgAGoiADYCuKBAIAEgAEEBcjYCBCABIABqIAA2AgAPCwJAAkBBACgCsKBAIgNBASAAQQN2dCICcQ0AQQAgAyACcjYCsKBAIABB+AFxQaiewABqIgAhAwwBCyAAQfgBcSIDQaiewABqIQAgA0GwnsAAaigCACEDCyAAIAE2AgggAyABNgIMIAEgADYCDCABIAM2AggPCwJAQQAoAqCeQCIBRQ0AQQAhAgNAIAJBAWohAiABKAIIIgENAAsLQQAgAkH/HyACQf8fSxs2AtigQCAFIARNDQBBAEF/NgLQoEALC44FAQd/AkACQCAAKAIIIgNBgICAwAFxRQ0AAkACQAJAAkACQCADQYCAgIABcUUNACAALwEOIgQNAUEAIQIMAgsCQCACQRBJDQAgASACEAYhBQwECwJAIAINAEEAIQJBACEFDAQLIAJBA3EhBgJAAkAgAkEETw0AQQAhBUEAIQcMAQsg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IgJBAWoiAzYCACADRQ0BIAAoAgBBf0YNAiAAKAIQIQAgASACNgIAIAAPCxBdCwALEF8AC1ABAX8CQCACIAAoAgAgACgCCCIDa00NACAAIAMgAkEBQQEQFyAAKAIIIQMLAkAgAkUNACAAKAIEIANqIAEgAvwKAAALIAAgAyACajYCCEEAC0wBAX8CQCAAKAIAIgBBDGooAgAiAUUNACAAQRBqKAIAIAFBARBXCwJAIABBf0YNACAAIAAoAgRBf2oiATYCBCABDQAgAEEcQQQQVwsLRQACQAJAIAFBCUkNACABIAAQDyEBDAELIAAQAiEBCwJAIAFFDQAgAUF8ai0AAEEDcUUNACAARQ0AIAFBACAA/AsACyABC1IBAn9BACEBQQBBACgC6KBAIgJBAWo2AuigQAJAIAJBAEgNAEEBIQFBAC0A5KBADQBBACAAOgDkoEBBAEEAKALgoEBBAWo2AuCgQEECIQELIAELRwECfyABKAIEIQIgASgCACEDEGsCQEEIQQQQWiIBDQBBBEEIEGEACyABIAI2AgQgASADNgIAIABB8JfAADYCBCAAIAE2AgALOAACQAJAIAAgAksNACABIAJLDQEgACABTQ0BIAAgASADECsACyAAIAIgAxAsAAsgASACIAMQLQALQQEBfyMAQSBrIgMkACADQQA2AhAgA0EBNgIEIANCBDcCCCADIAE2AhwgAyAANgIYIAMgA0EYajYCACADIAIQQQALOQACQCACQYCAxABGDQAgACACIAEoAhARBQBFDQBBAQ8LAkAgAw0AQQAPCyAAIAMgBCABKAIMEQcACzYBAX8jAEEgayIBJAAgAUEANgIYIAFBATYCDCABQaSZwAA2AgggAUIENwIQIAFBCGogABBBAAsnAAJAIAAgARBPRQ0AAkAgAEUNABBrIAAgARBaIgFFDQELIAEPCwALLAIBfwF+IwBBEGsiASQAIAApAgAhAiABIAA2AgwgASACNwIEIAFBBGoQZgALLQEBfyMAQRBrIgEkACABIAApAgA3AgggAUEIakH0lsAAIAAoAghBAUEAECEACyoBAX8jAEEQayIDJAAgAyACNgIMIAMgATYCCCADIAA2AgQgA0EEahBnAAsqAQF/IwBBEGsiAiQAIAJBATsBDCACIAE2AgggAiAANgIEIAJBBGoQPgALKQEBfwJAIAAoAgAiAUGAgICAeHJBgICAgHhGDQAgACgCBCABQQEQVwsLHgEBfwJAIAAoAgAiAkUNACABIAIgACgCBBBTDwsACyAAAkAgASgCAEUNACAAQfCXwAA2AgQgACABNgIADwsACxsBAX8QayAAQQRqQQQQWiIBIAA2AgAgAUEEagsjAQF/AkBBjIvAABAwIgANAEHAisAAQTpB/IrAABBAAAsgAAsXAAJAIAFBCUkNACABIAAQDw8LIAAQAgsfAAJAIABBgICAgHhyQYCAgIB4Rg0AIAEgAEEBEFcLCxwBAX8CQCAAKAIAIgFFDQAgACgCBCABQQEQVwsLFgACQCAARQ0AIAAgARBhAAsgAhA8AAsVACAAQXxqIgAgACgCAEEEakEEEFcLGgEBfyABIABBACgC3KBAIgJBAyACGxEEAAALHQAgAEEIakEAKQKYlkA3AgAgAEEAKQKQlkA3AgALHQAgAEEIakEAKQKolkA3AgAgAEEAKQKglkA3AgALFQAgAWlBAUYgAEGAgICAeCABa01xCxIAAkAgAUUNACAAIAEgAhBXCwsSACAAIAEgAiADIARBACAFEAMLFQACQCAARQ0AIAAgACgCqFoRAgALCxYAIAAoAgAgASACIAAoAgQoAgwRBwALDQAgACABIAIgAxAHDwsQACABIAAoAgAgACgCBBBTCxMAIABB8JfAADYCBCAAIAE2AgALCwAgACABIAIQLw8LCgAgACABEGoaAAsLACAAIwBqJAAjAAsJACAAIAEQRw8LCQAgACABEDYPCwkAIAAgARBMDwsMAEG4iMAAQRsQXgALCQAgACABEGMACw0AQdOIwABBzwAQXgALDAAgACABKQIANwMACwkAIAEgABBcAAsNACABQdicwABBGBAKCwgAIAAgARAACwgAIAAgARABCwkAIAAoAgAQUgsHACAAECMACwcAIAAQPwALCQAgAEEANgIACwUAQQAPCwUAEGwACwMADwsDAAALC4YdAgBBgIDAAAvwHC9ob21lL2NkaWVzaC8uY2FyZ28vcmVnaXN0cnkvc3JjL2luZGV4LmNyYXRlcy5pby0xOTQ5Y2Y4YzZiNWI1NTdmL3dhc20tYmluZGdlbi0wLjIuMTA2L3NyYy9jb252ZXJ0L3NsaWNlcy5ycwAvaG9tZS9jZGllc2gvLmNhcmdvL3JlZ2lzdHJ5L3NyYy9pbmRleC5jcmF0ZXMuaW8tMTk0OWNmOGM2YjViNTU3Zi93YXNtLWJpbmRnZW4tMC4yLjEwNi9zcmMvZXh0ZXJucmVmLnJzAC9ob21lL2NkaWVzaC8ucnVzdHVwL3Rvb2xjaGFpbnMvc3RhYmxlLXg4Nl82NC11bmtub3duLWxpbnV4LWdudS9saWIvcnVzdGxpYi9zcmMvcnVzdC9saWJyYXJ5L2FsbG9jL3NyYy9zbGljZS5ycwAvaG9tZS9jZGllc2gvLnJ1c3R1cC90b29sY2hhaW5zL3N0YWJsZS14ODZfNjQtdW5rbm93bi1saW51eC1nbnUvbGliL3J1c3RsaWIvc3JjL3J1c3QvbGlicmFyeS9hbGxvYy9zcmMvcmF3X3ZlYy9tb2QucnMAL3J1c3RjL2VkNjFlN2Q3ZTI0MjQ5NGZiNzA1N2YyNjU3MzAwZDllNzdiYjRmY2IvbGlicmFyeS9hbGxvYy9zcmMvcmF3X3ZlYy9tb2QucnMAL3J1c3QvZGVwcy9kbG1hbGxvYy0wLjIuMTAvc3JjL2RsbWFsbG9jLnJzAGxpYnJhcnkvc3RkL3NyYy9hbGxvYy5ycwAvaG9tZS9jZGllc2gvLmNhcmdvL3JlZ2lzdHJ5L3NyYy9pbmRleC5jcmF0ZXMuaW8tMTk0OWNmOGM2YjViNTU3Zi9saWJkZWZsYXRlci0xLjI1LjAvc3JjL2xpYi5ycwBFARAAdQAAACoCAAARAAAA1QAQAG8AAAC9AQAAHQAAAGF0dGVtcHRlZCB0byB0YWtlIG93bmVyc2hpcCBvZiBSdXN0IHZhbHVlIHdoaWxlIGl0IHdhcyBib3Jyb3dlZAClAhAACgAAAF0AAAAWAAAAaW52YWxpZCBiZ3pmIGhlYWRlcgClAhAACgAAACkAAAAJAAAApQIQAAoAAAAqAAAACQAAAKUCEAAKAAAAKwAAAAkAAAClAhAACgAAACwAAAAJAAAApQIQAAoAAAAwAAAAFgAAAGRlY29tcHJlc3Npb24gZmFpbGVkpQIQAAoAAAAvAAAAHgAAAKUCEAAKAAAApQAAACQAAAClAhAACgAAAKYAAAAkAAAApQIQAAoAAACnAAAAFgAAAKUCEAAKAAAAxQAAABQAAAClAhAACgAAAMYAAAAUAAAApQIQAAoAAADbAAAAGAAAAKUCEAAKAAAA3AAAABgAAAClAhAACgAAANMAAAAxAAAAAAAQAGwAAAAjAQAADgAAAG51bGwgcG9pbnRlciBwYXNzZWQgdG8gcnVzdHJlY3Vyc2l2ZSB1c2Ugb2YgYW4gb2JqZWN0IGRldGVjdGVkIHdoaWNoIHdvdWxkIGxlYWQgdG8gdW5zYWZlIGFsaWFzaW5nIGluIHJ1c3QAAG0AEABnAAAAfwAAABEAAABtABAAZwAAAIwAAAARAAAAbGliZGVmbGF0ZV9kZWZsYXRlX2RlY29tcHJlc3MgcmV0dXJuZWQgYW4gdW5rbm93biBlcnJvciB0eXBlOiB0aGlzIGlzIGFuIGludGVybmFsIGJ1ZyB0aGF0ICoqbXVzdCoqIGJlIGZpeGVkUAIQAF8AAAAMAQAAFQAAAGxpYmRlZmxhdGVfYWxsb2NfZGVjb21wcmVzc29yIHJldHVybmVkIE5VTEw6IG91dCBvZiBtZW1vcnkAAFACEABfAAAAnAAAABEAAAAMAAAAAQAAAAIAAAAAAAAAAAAAABAREgAIBwkGCgULBAwDDQIOAQ8AAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAAAAAAAEAAAACAAAAAwAAAAQAAQAFAAEABwACAAkAAgANAAMAEQADABkABAAhAAQAMQAFAEEABQBhAAYAgQAGAMEABwABAQcAgQEIAAECCAABAwkAAQQJAAEGCgABCAoAAQwLAAEQCwABGAwAASAMAAEwDQABQA0AAWANAAFgDQABYAAAAIAAAAGAAAACgAAAA4AAAASAAAAFgAAABoAAAAeAAAAIgAAACYAAAAqAAAALgAAADIAAAA2AAAAOgAAAD4AAABCAAAARgAAAEoAAABOAAAAUgAAAFYAAABaAAAAXgAAAGIAAABmAAAAagAAAG4AAAByAAAAdgAAAHoAAAB+AAAAggAAAIYAAACKAAAAjgAAAJIAAACWAAAAmgAAAJ4AAACiAAAApgAAAKoAAACuAAAAsgAAALYAAAC6AAAAvgAAAMIAAADGAAAAygAAAM4AAADSAAAA1gAAANoAAADeAAAA4gAAAOYAAADqAAAA7gAAAPIAAAD2AAAA+gAAAP4AAAECAAABBgAAAQoAAAEOAAABEgAAARYAAAEaAAABHgAAASIAAAEmAAABKgAAAS4AAAEyAAABNgAAAToAAAE+AAABQgAAAUYAAAFKAAABTgAAAVIAAAFWAAABWgAAAV4AAAFiAAABZgAAAWoAAAFuAAABcgAAAXYAAAF6AAABfgAAAYIAAAGGAAABigAAAY4AAAGSAAABlgAAAZoAAAGeAAABogAAAaYAAAGqAAABrgAAAbIAAAG2AAABugAAAb4AAAHCAAABxgAAAcoAAAHOAAAB0gAAAdYAAAHaAAAB3gAAAeIAAAHmAAAB6gAAAe4AAAHyAAAB9gAAAfoAAAH+AAACAgAAAgYAAAIKAAACDgAAAhIAAAIWAAACGgAAAh4AAAIiAAACJgAAAioAAAIuAAACMgAAAjYAAAI6AAACPgAAAkIAAAJGAAACSgAAAk4AAAJSAAACVgAAAloAAAJeAAACYgAAAmYAAAJqAAACbgAAAnIAAAJ2AAACegAAAn4AAAKCAAAChgAAAooAAAKOAAACkgAAApYAAAKaAAACngAAAqIAAAKmAAACqgAAAq4AAAKyAAACtgAAAroAAAK+AAACwgAAAsYAAALKAAACzgAAAtIAAALWAAAC2gAAAt4AAALiAAAC5gAAAuoAAALuAAAC8gAAAvYAAAL6AAAC/gAAAwIAAAMGAAADCgAAAw4AAAMSAAADFgAAAxoAAAMeAAADIgAAAyYAAAMqAAADLgAAAzIAAAM2AAADOgAAAz4AAANCAAADRgAAA0oAAANOAAADUgAAA1YAAANaAAADXgAAA2IAAANmAAADagAAA24AAANyAAADdgAAA3oAAAN+AAADggAAA4YAAAOKAAADjgAAA5IAAAOWAAADmgAAA54AAAOiAAADpgAAA6oAAAOuAAADsgAAA7YAAAO6AAADvgAAA8IAAAPGAAADygAAA84AAAPSAAAD1gAAA9oAAAPeAAAD4gAAA+YAAAPqAAAD7gAAA/IAAAP2AAAD+gAAA/4AAoAAAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgABAAsAAQANAAEADwABABEAAgATAAIAFwACABsAAgAfAAMAIwADACsAAwAzAAMAOwAEAEMABABTAAQAYwAEAHMABQCDAAUAowAFAMMABQDjAAAAAgEAAAIBAAACAW1dy9YsUOtjeEGmV3Ebi7nyfVy2Bv6hO/Xnf5Lkw1AabWVtb3J5IGFsbG9jYXRpb24gb2YgIGJ5dGVzIGZhaWxlZAAAMAsQABUAAABFCxAADQAAADcCEAAYAAAAZAEAAAkAAAAAAAAACAAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAwAAAAEAAAACgAAAAsAAAAMAAAAAAAAAAgAAAAEAAAADQAAAA4AAAAPAAAAEAAAABEAAAAQAAAABAAAABIAAAATAAAAFAAAAAgAAAC7ARAAUAAAACoCAAARAAAAAAAAAAgAAAAEAAAAFQAAAGFzc2VydGlvbiBmYWlsZWQ6IHBzaXplID49IHNpemUgKyBtaW5fb3ZlcmhlYWQAAAwCEAAqAAAAsQQAAAkAAABhc3NlcnRpb24gZmFpbGVkOiBwc2l6ZSA8PSBzaXplICsgbWF4X292ZXJoZWFkAAAMAhAAKgAAALcEAAANAAAACQAAAAwAAAAEAAAAFgAAAGNhcGFjaXR5IG92ZXJmbG93AAAAkAwQABEAAAAwMDAxMDIwMzA0MDUwNjA3MDgwOTEwMTExMjEzMTQxNTE2MTcxODE5MjAyMTIyMjMyNDI1MjYyNzI4MjkzMDMxMzIzMzM0MzUzNjM3MzgzOTQwNDE0MjQzNDQ0NTQ2NDc0ODQ5NTA1MTUyNTM1NDU1NTY1NzU4NTk2MDYxNjI2MzY0NjU2NjY3Njg2OTcwNzE3MjczNzQ3NTc2Nzc3ODc5ODA4MTgyODM4NDg1ODY4Nzg4ODk5MDkxOTI5Mzk0OTU5Njk3OTg5OQEAAAAAAAAAcmFuZ2Ugc3RhcnQgaW5kZXggIG91dCBvZiByYW5nZSBmb3Igc2xpY2Ugb2YgbGVuZ3RoIHwNEAASAAAAjg0QACIAAAByYW5nZSBlbmQgaW5kZXggwA0QABAAAACODRAAIgAAAHNsaWNlIGluZGV4IHN0YXJ0cyBhdCAgYnV0IGVuZHMgYXQgAOANEAAWAAAA9g0QAA0AAABpbmRleCBvdXQgb2YgYm91bmRzOiB0aGUgbGVuIGlzICBidXQgdGhlIGluZGV4IGlzIAAAFA4QACAAAAA0DhAAEgAAAFJlZkNlbGwgYWxyZWFkeSBib3Jyb3dlZABB8JzAAAsEBAAAAAApBG5hbWUBIgFZH19fd2JpbmRnZW5fYWRkX3RvX3N0YWNrX3BvaW50ZXIAPAlwcm9kdWNlcnMBDHByb2Nlc3NlZC1ieQIGd2FscnVzBjAuMjQuNAx3YXNtLWJpbmRnZW4HMC4yLjEwNg==";let j;function sy(n){j=n}function sN(n){uo===fn.length&&fn.push(fn.length+1);const e=uo;return uo=fn[e],fn[e]=n,e}function oN(n){n<132||(fn[n]=uo,uo=n)}function oy(n,e){return n=n>>>0,aN().subarray(n/4,n/4+e)}function IA(n,e){return n=n>>>0,bA().subarray(n/1,n/1+e)}let vi=null;function Oe(){return(vi===null||vi.buffer.detached===!0||vi.buffer.detached===void 0&&vi.buffer!==j.memory.buffer)&&(vi=new DataView(j.memory.buffer)),vi}function ay(n,e){return n=n>>>0,uN(n,e)}let bc=null;function aN(){return(bc===null||bc.byteLength===0)&&(bc=new Uint32Array(j.memory.buffer)),bc}let Ec=null;function bA(){return(Ec===null||Ec.byteLength===0)&&(Ec=new Uint8Array(j.memory.buffer)),Ec}function cN(n){return fn[n]}let fn=new Array(128).fill(void 0);fn.push(void 0,null,!0,!1);let uo=fn.length;function EA(n,e){const t=e(n.length*1,1)>>>0;return bA().set(n,t/1),Bc=n.length,t}function xA(n){const e=cN(n);return oN(n),e}let xc=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});xc.decode();const lN=2146435072;let BA=0;function uN(n,e){return BA+=e,BA>=lN&&(xc=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0}),xc.decode(),BA=e),xc.decode(bA().subarray(n,n+e))}let Bc=0;const cy=typeof FinalizationRegistry>"u"?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry(n=>j.__wbg_chunksliceresult_free(n>>>0,1)),ly=typeof FinalizationRegistry>"u"?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry(n=>j.__wbg_decompressresult_free(n>>>0,1));class Si{static __wrap(e){e=e>>>0;const t=Object.create(Si.prototype);return t.__wbg_ptr=e,cy.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,cy.unregister(this),e}free(){const e=this.__destroy_into_raw();j.__wbg_chunksliceresult_free(e,0)}get cpositions(){try{const i=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_cpositions(i,this.__wbg_ptr);var e=Oe().getInt32(i+0,!0),t=Oe().getInt32(i+4,!0),r=oy(e,t).slice();return j.__wbindgen_export(e,t*4,4),r}finally{j.__wbindgen_add_to_stack_pointer(16)}}get dpositions(){try{const i=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_dpositions(i,this.__wbg_ptr);var e=Oe().getInt32(i+0,!0),t=Oe().getInt32(i+4,!0),r=oy(e,t).slice();return j.__wbindgen_export(e,t*4,4),r}finally{j.__wbindgen_add_to_stack_pointer(16)}}get buffer(){try{const i=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_buffer(i,this.__wbg_ptr);var e=Oe().getInt32(i+0,!0),t=Oe().getInt32(i+4,!0),r=IA(e,t).slice();return j.__wbindgen_export(e,t*1,1),r}finally{j.__wbindgen_add_to_stack_pointer(16)}}}Symbol.dispose&&(Si.prototype[Symbol.dispose]=Si.prototype.free);class Qi{static __wrap(e){e=e>>>0;const t=Object.create(Qi.prototype);return t.__wbg_ptr=e,ly.register(t,t.__wbg_ptr,t),t}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,ly.unregister(this),e}free(){const e=this.__destroy_into_raw();j.__wbg_decompressresult_free(e,0)}get bytes_read(){return j.decompressresult_bytes_read(this.__wbg_ptr)>>>0}get data(){try{const i=j.__wbindgen_add_to_stack_pointer(-16);j.decompressresult_data(i,this.__wbg_ptr);var e=Oe().getInt32(i+0,!0),t=Oe().getInt32(i+4,!0),r=IA(e,t).slice();return j.__wbindgen_export(e,t*1,1),r}finally{j.__wbindgen_add_to_stack_pointer(16)}}}Symbol.dispose&&(Qi.prototype[Symbol.dispose]=Qi.prototype.free);function uy(n){try{const o=j.__wbindgen_add_to_stack_pointer(-16),a=EA(n,j.__wbindgen_export2),l=Bc;j.decompress_all(o,a,l);var e=Oe().getInt32(o+0,!0),t=Oe().getInt32(o+4,!0),r=Oe().getInt32(o+8,!0),i=Oe().getInt32(o+12,!0);if(i)throw xA(r);var s=IA(e,t).slice();return j.__wbindgen_export(e,t*1,1),s}finally{j.__wbindgen_add_to_stack_pointer(16)}}function fN(n){try{const i=j.__wbindgen_add_to_stack_pointer(-16),s=EA(n,j.__wbindgen_export2),o=Bc;j.decompress_block(i,s,o);var e=Oe().getInt32(i+0,!0),t=Oe().getInt32(i+4,!0),r=Oe().getInt32(i+8,!0);if(r)throw xA(t);return Qi.__wrap(e)}finally{j.__wbindgen_add_to_stack_pointer(16)}}function fy(n,e,t,r,i){try{const l=j.__wbindgen_add_to_stack_pointer(-16),c=EA(n,j.__wbindgen_export2),u=Bc;j.decompress_chunk_slice(l,c,u,e,t,r,i);var s=Oe().getInt32(l+0,!0),o=Oe().getInt32(l+4,!0),a=Oe().getInt32(l+8,!0);if(a)throw xA(o);return Si.__wrap(s)}finally{j.__wbindgen_add_to_stack_pointer(16)}}function AN(n,e){const t=Error(ay(n,e));return sN(t)}function hN(n,e){throw new Error(ay(n,e))}let fo=null,vA=null;async function Ay(){return fo||(vA||(vA=(async()=>{const e=await(await fetch(iN)).arrayBuffer(),{instance:t}=await WebAssembly.instantiate(e,{"./bgzf_wasm_bg.js":yA});return fo=t.exports,sy(fo),fo})()),vA)}async function dN(n){return await Ay(),uy(n)}async function gN(n,e,t,r,i){await Ay();const s=fy(n,e,t,r,i),o=s.buffer,a=[...s.cpositions],l=[...s.dpositions];return s.free(),{buffer:o,cpositions:a,dpositions:l}}function pN(n){return n.length>=2&&n[0]===31&&n[1]===139}async function mN(n){if(typeof DecompressionStream<"u"){const e=new DecompressionStream("gzip"),t=e.writable.getWriter(),r=t.write(n).then(()=>t.close()),i=[],s=e.readable.getReader();for(;;){const{done:c,value:u}=await s.read();if(c)break;i.push(u)}await r;const o=i.reduce((c,u)=>c+u.length,0),a=new Uint8Array(o);let l=0;for(const c of i)a.set(c,l),l+=c.length;return a}else return rN(n,void 0)}async function Di(n){try{return await dN(n)}catch(e){if(/invalid bgzf header/.exec(`${e}`)){if(pN(n))return mN(n);throw new Error("problem decompressing block: not a valid bgzf or gzip block")}throw/invalid gzip header/.exec(`${e}`)?new Error("problem decompressing block: incorrect gzip header check"):e}}async function hy(n,e,t){try{const{minv:r,maxv:i}=e,s=await gN(n,r.blockPosition,r.dataPosition,i.blockPosition,i.dataPosition);return{buffer:s.buffer,cpositions:s.cpositions,dpositions:s.dpositions}}catch(r){throw/invalid gzip header/.exec(`${r}`)?new Error("problem decompressing block: incorrect gzip header check"):r}}let SA=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];typeof Int32Array<"u"&&(SA=new Int32Array(SA));const wN=(n,e)=>{let t=-1;for(let r=0;r<n.length;r++)t=SA[(t^n[r])&255]^t>>>8;return t^-1},CN=21582659,yN=38359875;function IN(n,e){return n*2**e}function dy(n,e){return Math.floor(n/2**e)}let vc=class extends hC{constructor(){super(...arguments),this.maxBinNumber=0,this.depth=0,this.minShift=0}async lineCount(e,t){return(await this.parse(t)).indices(e)?.stats?.lineCount||0}async indexCov(){return[]}parseAuxData(e,t){const r=new DataView(e.buffer),i=r.getUint32(t,!0),s=i&65536?"zero-based-half-open":"1-based-closed",o={0:"generic",1:"SAM",2:"VCF"}[i&15];if(!o)throw new Error(`invalid Tabix preset format flags ${i}`);const a={ref:r.getInt32(t+4,!0),start:r.getInt32(t+8,!0),end:r.getInt32(t+12,!0)},l=r.getInt32(t+16,!0),c=l?String.fromCharCode(l):"",u=r.getInt32(t+20,!0),f=r.getInt32(t+24,!0);return{columnNumbers:a,coordinateType:s,metaValue:l,metaChar:c,skipLines:u,format:o,formatFlags:i,...d5(e.subarray(t+28,t+28+f),this.renameRefSeq)}}async _parse(e){const t=await this.filehandle.readFile(e),r=await Di(t),i=new DataView(r.buffer);let s;const o=i.getUint32(0,!0);if(o===CN)s=1;else if(o===yN)s=2;else throw new Error(`Not a CSI file ${o}`);this.minShift=i.getInt32(4,!0),this.depth=i.getInt32(8,!0),this.maxBinNumber=((1<<(this.depth+1)*3)-1)/7;const a=this.maxBinNumber,l=i.getInt32(12,!0),c=l>=30?this.parseAuxData(r,16):void 0,u=i.getInt32(16+l,!0);let f=16+l+4,h;const A=[];for(let p=0;p<u;p++){A.push(f);const m=i.getInt32(f,!0);f+=4;for(let C=0;C<m;C++){const y=i.getUint32(f,!0);if(f+=4,y>this.maxBinNumber)f+=44;else{f+=8;const w=i.getInt32(f,!0);f+=4;for(let E=0;E<w;E+=1){const x=Gn(r,f);f+=8,f+=8,h=oo(h,x)}}}}const d=new so({maxSize:5});function g(p){let m=A[p];if(m===void 0)return;const C=i.getInt32(m,!0);m+=4;const y={};let w;for(let E=0;E<C;E++){const x=i.getUint32(m,!0);if(m+=4,x>a)w=AC(r,m+28),m+=44;else{h=oo(h,Gn(r,m)),m+=8;const b=i.getInt32(m,!0);m+=4;const S=new Array(b);for(let Q=0;Q<b;Q+=1){const v=Gn(r,m);m+=8;const F=Gn(r,m);m+=8,S[Q]=new uC(v,F,x)}y[x]=S}}return{binIndex:y,stats:w}}return{csiVersion:s,firstDataLine:h,indices:p=>{if(!d.has(p)){const m=g(p);return m&&d.set(p,m),m}return d.get(p)},refCount:u,csi:!0,maxBlockSize:65536,...c}}async blocksForRange(e,t,r,i={}){t<0&&(t=0);const o=(await this.parse(i)).indices(e);if(!o)return[];const a=this.reg2bins(t,r);if(a.length===0)return[];const l=[],{binIndex:c}=o;for(const[u,f]of a)for(let h=u;h<=f;h++){const A=c[h];if(A)for(let d=0,g=A.length;d<g;d++)l.push(A[d])}return cA(l,new dC(0,0))}reg2bins(e,t){e-=1,e<1&&(e=1),t>2**50&&(t=2**34),t-=1;let r=0,i=0,s=this.minShift+this.depth*3;const o=[];for(;r<=this.depth;s-=3,i+=IN(1,r*3),r+=1){const a=i+dy(e,s),l=i+dy(t,s);if(l-a+o.length>this.maxBinNumber)throw new Error(`query ${e}-${t} is too large for current binning scheme (shift ${this.minShift}, depth ${this.depth}), try a smaller query or a coarser index binning scheme`);o.push([a,l])}return o}async parse(e={}){return this.setupP||(this.setupP=this._parse(e).catch(t=>{throw this.setupP=void 0,t})),this.setupP}async hasRefSeq(e,t={}){return!!(await this.parse(t)).indices(e)?.binIndex}};class bN{read(){throw new Error("never called")}stat(){throw new Error("never called")}readFile(){throw new Error("never called")}close(){throw new Error("never called")}}const EN=3,xN=4,yt={BAM_FPAIRED:1,BAM_FPROPER_PAIR:2,BAM_FUNMAP:4,BAM_FMUNMAP:8,BAM_FREVERSE:16,BAM_FMREVERSE:32,BAM_FREAD1:64,BAM_FREAD2:128,BAM_FSECONDARY:256,BAM_FQCFAIL:512,BAM_FDUP:1024,BAM_FSUPPLEMENTARY:2048},Ao="=ACMGRSVTWYHKDBN".split(""),BN=[77,73,68,78,83,72,80,61,88,63,63,63,63,63,63,63],gy=461;class py{constructor(e){this.bytes=e.bytes,this.fileOffset=e.fileOffset,this._dataView=new DataView(this.bytes.byteArray.buffer)}get byteArray(){return this.bytes.byteArray}get flags(){return this._cachedFlags===void 0&&(this._cachedFlags=(this._dataView.getInt32(this.bytes.start+16,!0)&4294901760)>>16),this._cachedFlags}get ref_id(){return this._cachedRefId===void 0&&(this._cachedRefId=this._dataView.getInt32(this.bytes.start+4,!0)),this._cachedRefId}get start(){return this._cachedStart===void 0&&(this._cachedStart=this._dataView.getInt32(this.bytes.start+8,!0)),this._cachedStart}get end(){return this._cachedEnd===void 0&&(this._cachedEnd=this.start+this.length_on_ref),this._cachedEnd}get mq(){const e=(this.bin_mq_nl&65280)>>8;return e===255?void 0:e}get score(){return this.mq}get qual(){if(this.isSegmentUnmapped())return null;{const e=this.b0+this.read_name_length+this.num_cigar_bytes+this.num_seq_bytes;return this.byteArray.subarray(e,e+this.seq_length)}}get strand(){return this.isReverseComplemented()?-1:1}get b0(){return this.bytes.start+36}get tagsStart(){return this._cachedTagsStart===void 0&&(this._cachedTagsStart=this.b0+this.read_name_length+this.num_cigar_bytes+this.num_seq_bytes+this.seq_length),this._cachedTagsStart}get name(){const e=this.read_name_length-1,t=this.b0,r=this.byteArray,i=new Array(e);for(let s=0;s<e;s++)i[s]=r[t+s];return String.fromCharCode(...i)}get NUMERIC_MD(){if(this._cachedNUMERIC_MD===void 0){const e=this.getTagRaw("MD");this._cachedNUMERIC_MD=e instanceof Uint8Array?e:null}return this._cachedNUMERIC_MD===null?void 0:this._cachedNUMERIC_MD}get tags(){return this._cachedTags===void 0&&(this._cachedTags=this._computeTags()),this._cachedTags}getTag(e){return this._cachedTags!==void 0?this._cachedTags[e]:this._findTag(e,!1)}getTagRaw(e){return this._findTag(e,!0)}_findTag(e,t){const r=e.charCodeAt(0),i=e.charCodeAt(1);let s=this.tagsStart;const o=this.bytes.end,a=this.byteArray;for(;s<o;){const l=a[s],c=a[s+1],u=a[s+2];s+=3;const f=l===r&&c===i;switch(u){case 65:if(f)return String.fromCharCode(a[s]);s+=1;break;case 105:if(f)return this._dataView.getInt32(s,!0);s+=4;break;case 73:if(f)return this._dataView.getUint32(s,!0);s+=4;break;case 99:if(f)return this._dataView.getInt8(s);s+=1;break;case 67:if(f)return this._dataView.getUint8(s);s+=1;break;case 115:if(f)return this._dataView.getInt16(s,!0);s+=2;break;case 83:if(f)return this._dataView.getUint16(s,!0);s+=2;break;case 102:if(f)return this._dataView.getFloat32(s,!0);s+=4;break;case 90:case 72:{if(f){const h=s;for(;s<o&&a[s]!==0;)s++;if(t)return a.subarray(h,s);const A=[];for(let d=h;d<s;d++)A.push(String.fromCharCode(a[d]));return A.join("")}for(;s<=o&&a[s++]!==0;);break}case 66:{const h=a[s++],A=this._dataView.getInt32(s,!0);s+=4;const d=a.byteOffset+s;if(f)if(h===105){if(d%4===0)return new Int32Array(a.buffer,d,A);const g=new Array(A);for(let p=0;p<A;p++)g[p]=this._dataView.getInt32(s+p*4,!0);return g}else if(h===73){if(d%4===0)return new Uint32Array(a.buffer,d,A);const g=new Array(A);for(let p=0;p<A;p++)g[p]=this._dataView.getUint32(s+p*4,!0);return g}else if(h===115){if(d%2===0)return new Int16Array(a.buffer,d,A);const g=new Array(A);for(let p=0;p<A;p++)g[p]=this._dataView.getInt16(s+p*2,!0);return g}else if(h===83){if(d%2===0)return new Uint16Array(a.buffer,d,A);const g=new Array(A);for(let p=0;p<A;p++)g[p]=this._dataView.getUint16(s+p*2,!0);return g}else{if(h===99)return new Int8Array(a.buffer,d,A);if(h===67)return new Uint8Array(a.buffer,d,A);if(h===102){if(d%4===0)return new Float32Array(a.buffer,d,A);const g=new Array(A);for(let p=0;p<A;p++)g[p]=this._dataView.getFloat32(s+p*4,!0);return g}}h===105||h===73||h===102?s+=A<<2:h===115||h===83?s+=A<<1:(h===99||h===67)&&(s+=A);break}}}}_computeTags(){let e=this.tagsStart;const t=this.bytes.end,r=this.byteArray,i={};for(;e<t;){const s=String.fromCharCode(r[e],r[e+1]),o=r[e+2];switch(e+=3,o){case 65:i[s]=String.fromCharCode(r[e]),e+=1;break;case 105:i[s]=this._dataView.getInt32(e,!0),e+=4;break;case 73:i[s]=this._dataView.getUint32(e,!0),e+=4;break;case 99:i[s]=this._dataView.getInt8(e),e+=1;break;case 67:i[s]=this._dataView.getUint8(e),e+=1;break;case 115:i[s]=this._dataView.getInt16(e,!0),e+=2;break;case 83:i[s]=this._dataView.getUint16(e,!0),e+=2;break;case 102:i[s]=this._dataView.getFloat32(e,!0),e+=4;break;case 90:case 72:{const a=[];for(;e<=t;){const l=r[e++];if(l!==0)a.push(String.fromCharCode(l));else break}i[s]=a.join("");break}case 66:{const a=r[e++],l=this._dataView.getInt32(e,!0);e+=4;const c=r.byteOffset+e;if(a===105){if(c%4===0)i[s]=new Int32Array(r.buffer,c,l);else{const u=new Array(l);for(let f=0;f<l;f++)u[f]=this._dataView.getInt32(e+f*4,!0);i[s]=u}e+=l<<2}else if(a===73){if(c%4===0)i[s]=new Uint32Array(r.buffer,c,l);else{const u=new Array(l);for(let f=0;f<l;f++)u[f]=this._dataView.getUint32(e+f*4,!0);i[s]=u}e+=l<<2}else if(a===115){if(c%2===0)i[s]=new Int16Array(r.buffer,c,l);else{const u=new Array(l);for(let f=0;f<l;f++)u[f]=this._dataView.getInt16(e+f*2,!0);i[s]=u}e+=l<<1}else if(a===83){if(c%2===0)i[s]=new Uint16Array(r.buffer,c,l);else{const u=new Array(l);for(let f=0;f<l;f++)u[f]=this._dataView.getUint16(e+f*2,!0);i[s]=u}e+=l<<1}else if(a===99)i[s]=new Int8Array(r.buffer,c,l),e+=l;else if(a===67)i[s]=new Uint8Array(r.buffer,c,l),e+=l;else if(a===102){if(c%4===0)i[s]=new Float32Array(r.buffer,c,l);else{const u=new Array(l);for(let f=0;f<l;f++)u[f]=this._dataView.getFloat32(e+f*4,!0);i[s]=u}e+=l<<2}break}default:console.error("Unknown BAM tag type",o);break}}return i}isPaired(){return!!(this.flags&yt.BAM_FPAIRED)}isProperlyPaired(){return!!(this.flags&yt.BAM_FPROPER_PAIR)}isSegmentUnmapped(){return!!(this.flags&yt.BAM_FUNMAP)}isMateUnmapped(){return!!(this.flags&yt.BAM_FMUNMAP)}isReverseComplemented(){return!!(this.flags&yt.BAM_FREVERSE)}isMateReverseComplemented(){return!!(this.flags&yt.BAM_FMREVERSE)}isRead1(){return!!(this.flags&yt.BAM_FREAD1)}isRead2(){return!!(this.flags&yt.BAM_FREAD2)}isSecondary(){return!!(this.flags&yt.BAM_FSECONDARY)}isFailedQc(){return!!(this.flags&yt.BAM_FQCFAIL)}isDuplicate(){return!!(this.flags&yt.BAM_FDUP)}isSupplementary(){return!!(this.flags&yt.BAM_FSUPPLEMENTARY)}get cigarAndLength(){return this._cachedCigarAndLength===void 0&&(this._cachedCigarAndLength=this._computeCigarAndLength()),this._cachedCigarAndLength}_computeCigarAndLength(){if(this.isSegmentUnmapped())return{length_on_ref:0,NUMERIC_CIGAR:new Uint32Array(0)};const e=this.num_cigar_ops;let t=this.b0+this.read_name_length;const r=this._dataView.getInt32(t,!0),i=r>>4;if((r&15)===xN&&i===this.seq_length){t+=4;const u=this._dataView.getInt32(t,!0),f=u>>4;return(u&15)!==EN&&console.warn("CG tag with no N tag"),{NUMERIC_CIGAR:this.tags.CG,length_on_ref:f}}const o=this.byteArray.byteOffset+t;if(o%4===0&&e>50){const u=new Uint32Array(this.byteArray.buffer,o,e);let f=0;for(let h=0;h<e;++h){const A=u[h];f+=(A>>4)*(gy>>(A&15)&1)}return{NUMERIC_CIGAR:u,length_on_ref:f}}const l=new Array(e);let c=0;for(let u=0;u<e;++u){const f=this._dataView.getInt32(t+u*4,!0)|0;l[u]=f,c+=(f>>4)*(gy>>(f&15)&1)}return{NUMERIC_CIGAR:l,length_on_ref:c}}get length_on_ref(){return this.cigarAndLength.length_on_ref}get NUMERIC_CIGAR(){return this.cigarAndLength.NUMERIC_CIGAR}get CIGAR(){const e=this.NUMERIC_CIGAR;let t="";for(let r=0,i=e.length;r<i;r++){const s=e[r],o=s>>4,a=BN[s&15];t+=o+String.fromCharCode(a)}return t}get num_cigar_ops(){return this.flag_nc&65535}get num_cigar_bytes(){return this.num_cigar_ops<<2}get read_name_length(){return this.bin_mq_nl&255}get num_seq_bytes(){return this.seq_length+1>>1}get NUMERIC_SEQ(){const e=this.b0+this.read_name_length+this.num_cigar_bytes;return this.byteArray.subarray(e,e+this.num_seq_bytes)}get seq(){const e=this.NUMERIC_SEQ,t=this.seq_length,r=new Array(t);let i=0;const s=t>>1;for(let o=0;o<s;++o){const a=e[o];r[i++]=Ao[(a&240)>>4],r[i++]=Ao[a&15]}if(i<t){const o=e[s];r[i]=Ao[(o&240)>>4]}return r.join("")}get pair_orientation(){if(!this.isSegmentUnmapped()&&!this.isMateUnmapped()&&this.ref_id===this.next_refid){const e=this.isReverseComplemented()?"R":"F",t=this.isMateReverseComplemented()?"R":"F";let r=" ",i=" ";return this.isRead1()?(r="1",i="2"):this.isRead2()&&(r="2",i="1"),this.template_length>0?`${e}${r}${t}${i}`:`${t}${i}${e}${r}`}}get bin_mq_nl(){return this._dataView.getInt32(this.bytes.start+12,!0)}get flag_nc(){return this._dataView.getInt32(this.bytes.start+16,!0)}get seq_length(){return this._dataView.getInt32(this.bytes.start+20,!0)}get next_refid(){return this._dataView.getInt32(this.bytes.start+24,!0)}get next_pos(){return this._dataView.getInt32(this.bytes.start+28,!0)}get template_length(){return this._dataView.getInt32(this.bytes.start+32,!0)}seqAt(e){if(e<this.seq_length){const t=e>>1,r=this.byteArray[this.b0+this.read_name_length+this.num_cigar_bytes+t];return e%2===0?Ao[(r&240)>>4]:Ao[r&15]}else return}toJSON(){const e={};for(const t of Object.keys(this))t.startsWith("_")||t==="bytes"||(e[t]=this[t]);return e}}function my(n){const e=n.split(/\r?\n/),t=[];for(const r of e){const[i,...s]=r.split(/\t/);i&&t.push({tag:i.slice(1),data:s.map(o=>{const a=o.indexOf(":"),l=o.slice(0,a),c=o.slice(a+1);return{tag:l,value:c}})})}return t}const wy=21840194,vN=65536;class Cy{constructor({bamFilehandle:e,bamPath:t,bamUrl:r,baiPath:i,baiFilehandle:s,baiUrl:o,csiPath:a,csiFilehandle:l,csiUrl:c,htsget:u,renameRefSeqs:f=A=>A,recordClass:h}){if(this.htsget=!1,this.chunkFeatureCache=new so({maxSize:100}),this.renameRefSeq=f,this.RecordClass=h??py,e)this.bam=e;else if(t)this.bam=new We(t);else if(r)this.bam=new _t(r);else if(u)this.htsget=!0,this.bam=new bN;else throw new Error("unable to initialize bam");if(l)this.index=new vc({filehandle:l});else if(a)this.index=new vc({filehandle:new We(a)});else if(c)this.index=new vc({filehandle:new _t(c)});else if(s)this.index=new yi({filehandle:s});else if(i)this.index=new yi({filehandle:new We(i)});else if(o)this.index=new yi({filehandle:new _t(o)});else if(t)this.index=new yi({filehandle:new We(`${t}.bai`)});else if(r)this.index=new yi({filehandle:new _t(`${r}.bai`)});else if(u)this.htsget=!0;else throw new Error("unable to infer index format")}async getHeaderPre(e){const t=h5(e);if(!this.index)return;const r=await this.index.parse(t),i=r.firstDataLine===void 0?await this.bam.readFile():await this.bam.read(r.firstDataLine.blockPosition+vN,0),s=await Di(i),o=new DataView(s.buffer);if(o.getInt32(0,!0)!==wy)throw new Error("Not a BAM file");const a=o.getInt32(4,!0),l=new TextDecoder("utf8");this.header=l.decode(s.subarray(8,8+a));const{chrToIndex:c,indexToChr:u}=this._parseRefSeqs(s,a+8);return this.chrToIndex=c,this.indexToChr=u,my(this.header)}getHeader(e){return this.headerP||(this.headerP=this.getHeaderPre(e).catch(t=>{throw this.headerP=void 0,t})),this.headerP}async getHeaderText(e={}){return await this.getHeader(e),this.header}_parseRefSeqs(e,t){const r=new DataView(e.buffer),i=r.getInt32(t,!0);let s=t+4;const o={},a=[],l=new TextDecoder("utf8");for(let c=0;c<i;c+=1){if(s+8>e.length)throw new Error(`Insufficient data for reference sequences: need more than ${e.length} bytes`);const u=r.getInt32(s,!0),f=this.renameRefSeq(l.decode(e.subarray(s+4,s+4+u-1))),h=r.getInt32(s+u+4,!0);o[f]=c,a.push({refName:f,length:h}),s=s+8+u}return{chrToIndex:o,indexToChr:a}}async getRecordsForRange(e,t,r,i){await this.getHeader(i);const s=this.chrToIndex?.[e];if(s===void 0||!this.index)return[];const o=await this.index.blocksForRange(s,t-1,r,i);return this._fetchChunkFeaturesDirect(o,s,t,r,i)}chunkCacheKey(e,t){const{minv:r,maxv:i}=e;return`${r.blockPosition}:${r.dataPosition}-${i.blockPosition}:${i.dataPosition}${w5(t)}`}blocksOverlap(e,t,r,i){return e<=i&&t>=r}evictOverlappingChunks(e,t){for(const[r,i]of this.chunkFeatureCache)this.blocksOverlap(e,t,i.minBlock,i.maxBlock)&&this.chunkFeatureCache.delete(r)}async _fetchChunkFeaturesDirect(e,t,r,i,s={}){const{viewAsPairs:o,filterBy:a}=s,{flagInclude:l=0,flagExclude:c=0,tagFilter:u}=a||{},f=[];for(let h=0,A=e.length;h<A;h++){const d=e[h],g=this.chunkCacheKey(d,a),p=d.minv.blockPosition,m=d.maxv.blockPosition;let C;const y=this.chunkFeatureCache.get(g);if(y)C=y.features;else{this.evictOverlappingChunks(p,m);const{data:E,cpositions:x,dpositions:b}=await this._readChunk({chunk:d,opts:s}),S=await this.readBamFeatures(E,x,b,d);if(a){C=[];for(let Q=0,v=S.length;Q<v;Q++){const F=S[Q];p5(F.flags,l,c)||u&&m5(F.tags[u.tag],u.value)||C.push(F)}}else C=S;this.chunkFeatureCache.set(g,{minBlock:p,maxBlock:m,features:C})}let w=!1;for(let E=0,x=C.length;E<x;E++){const b=C[E];if(b.ref_id===t)if(b.start>=i){w=!0;break}else b.end>=r&&f.push(b)}if(w)break}if(o){const h=await this.fetchPairs(t,f,s);for(let A=0,d=h.length;A<d;A++)f.push(h[A])}return f}async fetchPairs(e,t,r){const{pairAcrossChr:i,maxInsertSize:s=2e5}=r,o={},a={};for(let h=0,A=t.length;h<A;h++){const d=t[h],g=d.name;o[g]=(o[g]||0)+1,a[d.fileOffset]=1}const l=[];for(let h=0,A=t.length;h<A;h++){const d=t[h],g=d.name;this.index&&o[g]===1&&(i||d.next_refid===e&&Math.abs(d.start-d.next_pos)<s)&&l.push(this.index.blocksForRange(d.next_refid,d.next_pos,d.next_pos+1,r))}const c=new Map,u=await Promise.all(l);for(let h=0,A=u.length;h<A;h++){const d=u[h];for(let g=0,p=d.length;g<p;g++){const m=d[g],C=m.toString();c.has(C)||c.set(C,m)}}return(await Promise.all([...c.values()].map(async h=>{const{data:A,cpositions:d,dpositions:g,chunk:p}=await this._readChunk({chunk:h,opts:r}),m=[],C=await this.readBamFeatures(A,d,g,p);for(let y=0,w=C.length;y<w;y++){const E=C[y];o[E.name]===1&&!a[E.fileOffset]&&m.push(E)}return m}))).flat()}async _readChunk({chunk:e,opts:t}){const r=await this.bam.read(e.fetchedSize(),e.minv.blockPosition,t),{buffer:i,cpositions:s,dpositions:o}=await hy(r,e);return{data:i,cpositions:s,dpositions:o,chunk:e}}async readBamFeatures(e,t,r,i){let s=0;const o=[];let a=0;const l=new DataView(e.buffer),c=r.length>0,u=t.length>0;for(;s+4<e.length;){const f=l.getInt32(s,!0),h=s+4+f-1;if(c){for(;s+i.minv.dataPosition>=r[a++];);a--}if(h<e.length){const A=new this.RecordClass({bytes:{byteArray:e,start:s,end:h},fileOffset:u?t[a]*256+(s-r[a])+i.minv.dataPosition+1:wN(e.subarray(s,h))>>>0});o.push(A)}s=h+1}return o}async hasRefSeq(e){const t=this.chrToIndex?.[e];return t===void 0?!1:this.index?.hasRefSeq(t)}async lineCount(e){const t=this.chrToIndex?.[e];return t===void 0||!this.index?0:this.index.lineCount(t)}async indexCov(e,t,r){if(!this.index)return[];await this.index.parse();const i=this.chrToIndex?.[e];return i===void 0?[]:this.index.indexCov(i,t,r)}async blocksForRange(e,t,r,i){if(!this.index)return[];await this.index.parse();const s=this.chrToIndex?.[e];return s===void 0?[]:this.index.blocksForRange(s,t,r,i)}clearFeatureCache(){this.chunkFeatureCache.clear()}async estimatedBytesForRegions(e,t){if(!this.index)return 0;if(await this.getHeader(t),!this.chrToIndex)throw new Error("Header not yet parsed");return this.index.estimatedBytesForRegions(e.map(r=>{const i=this.chrToIndex[r.refName];if(i===void 0)throw new Error(`Unknown reference name: ${r.refName}`);return{refId:i,start:r.start,end:r.end}}),t)}}async function yy(n,e){const t=await Promise.all(n.map(async r=>{const{url:i,headers:s}=r;if(i.startsWith("data:")){const o=await fetch(i);if(!o.ok)throw new Error("failed to decode base64");const a=await o.arrayBuffer();return new Uint8Array(a)}else{const{referer:o,...a}=s,l=await fetch(i,{...e,headers:{...e?.headers,...a}});if(!l.ok)throw new Error(`HTTP ${l.status} fetching ${i}: ${await l.text()}`);return new Uint8Array(await l.arrayBuffer())}}));return g5(await Promise.all(t.map(r=>Di(r))))}class SN extends Cy{constructor(e){super({htsget:!0,recordClass:e.recordClass}),this.baseUrl=e.baseUrl,this.trackId=e.trackId}async getRecordsForRange(e,t,r,i){const o=`${`${this.baseUrl}/${this.trackId}`}?referenceName=${e}&start=${t}&end=${r}&format=BAM`,a=this.chrToIndex?.[e];if(a===void 0)return[];const l=await fetch(o,{...i});if(!l.ok)throw new Error(`HTTP ${l.status} fetching ${o}: ${await l.text()}`);const c=await l.json(),u=await yy(c.htsget.urls.slice(1),i),f=await this.readBamFeatures(u,[],[],{minv:{dataPosition:0,blockPosition:0},maxv:{dataPosition:0,blockPosition:0}}),h=[];for(let A=0,d=f.length;A<d;A++){const g=f[A];if(g.ref_id===a){if(g.start>=r)break;g.end>=t&&h.push(g)}}return h}async getHeader(e={}){const t=`${this.baseUrl}/${this.trackId}?referenceName=na&class=header`,r=await fetch(t,e);if(!r.ok)throw new Error(`HTTP ${r.status} fetching ${t}: ${await r.text()}`);const i=await r.json(),s=await yy(i.htsget.urls,e),o=new DataView(s.buffer);if(o.getInt32(0,!0)!==wy)throw new Error("Not a BAM file");const a=o.getInt32(4,!0),c=new TextDecoder("utf8").decode(s.subarray(8,8+a)),u=my(c),f=[],h={},A=u.filter(d=>d.tag==="SQ");for(const[d,g]of A.entries()){let p="",m=0;for(const C of g.data)C.tag==="SN"?p=C.value:C.tag==="LN"&&(m=+C.value);h[p]=d,f[d]={refName:p,length:m}}return this.chrToIndex=h,this.indexToChr=f,u}}const QN=Object.freeze(Object.defineProperty({__proto__:null,BAI:yi,BamFile:Cy,BamRecord:py,CSI:vc,HtsgetFile:SN},Symbol.toStringTag,{value:"Module"}));class Sc{constructor(e,t,r,i){this.minv=e,this.maxv=t,this.bin=r,this._fetchedSize=i}toUniqueString(){return`${this.minv}..${this.maxv} (bin ${this.bin}, fetchedSize ${this.fetchedSize()})`}toString(){return this.toUniqueString()}compareTo(e){return this.minv.compareTo(e.minv)||this.maxv.compareTo(e.maxv)||this.bin-e.bin}fetchedSize(){return this._fetchedSize!==void 0?this._fetchedSize:this.maxv.blockPosition+65536-this.minv.blockPosition}}class Iy{constructor({filehandle:e,renameRefSeqs:t=r=>r}){this.filehandle=e,this.renameRefSeq=t}async getMetadata(e={}){const{indices:t,...r}=await this.parse(e);return r}_findFirstData(e,t){return e?e.compareTo(t)>0?t:e:t}async parse(e={}){return this.parseP||(this.parseP=this._parse(e).catch(t=>{throw this.parseP=void 0,t})),this.parseP}async hasRefSeq(e,t={}){return!!(await this.parse(t)).indices[e]?.binIndex}_parseNameBytes(e){let t=0,r=0;const i=[],s={},o=new TextDecoder("utf8");for(let a=0;a<e.length;a+=1)if(!e[a]){if(r<a){const l=this.renameRefSeq(o.decode(e.subarray(r,a)));i[t]=l,s[l]=t}r=a+1,t+=1}return{refNameToId:s,refIdToName:i}}}const by=65536,DN=by*by;function Ey(n,e=0){const t=n[e]|n[e+1]<<8|n[e+2]<<16|n[e+3]<<24;return((n[e+4]|n[e+5]<<8|n[e+6]<<16|n[e+7]<<24)>>>0)*DN+(t>>>0)}function kN(n,e){return e.minv.blockPosition-n.maxv.blockPosition<65e3&&e.maxv.blockPosition-n.minv.blockPosition<5e6}function xy(n,e){const t=[];let r;if(n.length===0)return n;n.sort(function(i,s){const o=i.minv.blockPosition-s.minv.blockPosition;return o===0?i.minv.dataPosition-s.minv.dataPosition:o});for(const i of n)(!e||i.maxv.compareTo(e)>0)&&(r===void 0?(t.push(i),r=i):kN(r,i)?i.maxv.compareTo(r.maxv)>0&&(r.maxv=i.maxv):(t.push(i),r=i));return t}class QA{constructor(e,t){this.blockPosition=e,this.dataPosition=t}toString(){return`${this.blockPosition}:${this.dataPosition}`}compareTo(e){return this.blockPosition-e.blockPosition||this.dataPosition-e.dataPosition}}function ki(n,e=0){return new QA(n[e+7]*1099511627776+n[e+6]*4294967296+n[e+5]*16777216+n[e+4]*65536+n[e+3]*256+n[e+2],n[e+1]<<8|n[e])}const FN=21582659,RN=38359875,MN={0:"generic",1:"SAM",2:"VCF"};function NN(n,e){return n*2**e}function By(n,e){return Math.floor(n/2**e)}class Qc extends Iy{constructor(e){super(e),this.maxBinNumber=0,this.depth=0,this.minShift=0}async lineCount(e,t={}){const r=await this.parse(t),i=r.refNameToId[e];if(i===void 0||!r.indices[i])return-1;const{stats:o}=r.indices[i];return o?o.lineCount:-1}indexCov(){throw new Error("CSI indexes do not support indexcov")}parseAuxData(e,t){const r=new DataView(e.buffer),i=r.getInt32(t,!0),s=i&65536?"zero-based-half-open":"1-based-closed",o=MN[i&15];if(!o)throw new Error(`invalid Tabix preset format flags ${i}`);const a={ref:r.getInt32(t+4,!0),start:r.getInt32(t+8,!0),end:r.getInt32(t+12,!0)},l=r.getInt32(t+16,!0),c=l?String.fromCharCode(l):void 0,u=r.getInt32(t+20,!0),f=r.getInt32(t+24,!0),{refIdToName:h,refNameToId:A}=this._parseNameBytes(e.subarray(t+28,t+28+f));return{refIdToName:h,refNameToId:A,skipLines:u,metaChar:c,columnNumbers:a,format:o,coordinateType:s}}async _parse(e={}){const t=await Di(await this.filehandle.readFile(e)),r=new DataView(t.buffer);let i;if(r.getUint32(0,!0)===FN)i=1;else if(r.getUint32(0,!0)===RN)i=2;else throw new Error("Not a CSI file");this.minShift=r.getInt32(4,!0),this.depth=r.getInt32(8,!0),this.maxBinNumber=((1<<(this.depth+1)*3)-1)/7;const s=2**(this.minShift+this.depth*3),o=r.getInt32(12,!0),a=o&&o>=30?this.parseAuxData(t,16):{refIdToName:[],refNameToId:{},metaChar:void 0,columnNumbers:{ref:0,start:1,end:2},coordinateType:"zero-based-half-open",format:"generic"},l=r.getInt32(16+o,!0);let c,u=16+o+4;const f=new Array(l).fill(0).map(()=>{const h=r.getInt32(u,!0);u+=4;const A={};let d;for(let g=0;g<h;g+=1){const p=r.getUint32(u,!0);if(p>this.maxBinNumber)d=this.parsePseudoBin(t,u+4),u+=48;else{const m=ki(t,u+4);c=this._findFirstData(c,m);const C=r.getInt32(u+12,!0);u+=16;const y=new Array(C);for(let w=0;w<C;w+=1){const E=ki(t,u),x=ki(t,u+8);u+=16,y[w]=new Sc(E,x,p)}A[p]=y}}return{binIndex:A,stats:d}});return{...a,csi:!0,refCount:l,maxBlockSize:65536,firstDataLine:c,csiVersion:i,indices:f,depth:this.depth,maxBinNumber:this.maxBinNumber,maxRefLength:s}}parsePseudoBin(e,t){return{lineCount:Ey(e,t+28)}}async blocksForRange(e,t,r,i={}){t<0&&(t=0);const s=await this.parse(i),o=s.refNameToId[e];if(o===void 0)return[];const a=s.indices[o];if(!a)return[];const l=this.reg2bins(t,r),c=[];for(const[u,f]of l)for(let h=u;h<=f;h++)if(a.binIndex[h])for(const A of a.binIndex[h])c.push(new Sc(A.minv,A.maxv,h));return xy(c,new QA(0,0))}reg2bins(e,t){e-=1,e<1&&(e=1),t>2**50&&(t=2**34),t-=1;let r=0,i=0,s=this.minShift+this.depth*3;const o=[];for(;r<=this.depth;s-=3,i+=NN(1,r*3),r+=1){const a=i+By(e,s),l=i+By(t,s);if(l-a+o.length>this.maxBinNumber)throw new Error(`query ${e}-${t} is too large for current binning scheme (shift ${this.minShift}, depth ${this.depth}), try a smaller query or a coarser index binning scheme`);o.push([a,l])}return o}}const TN=21578324,vy=14;function PN(n,e){return n+=1,e-=1,[[0,0],[1+(n>>26),1+(e>>26)],[9+(n>>23),9+(e>>23)],[73+(n>>20),73+(e>>20)],[585+(n>>17),585+(e>>17)],[4681+(n>>14),4681+(e>>14)]]}class Fi extends Iy{async lineCount(e,t={}){const r=await this.parse(t),i=r.refNameToId[e];return i===void 0||!r.indices[i]?-1:r.indices[i].stats?.lineCount??-1}async _parse(e={}){const t=await this.filehandle.readFile(e),r=await Di(t),i=new DataView(r.buffer);if(i.getUint32(0,!0)!==TN)throw new Error("Not a TBI file");const o=i.getUint32(4,!0),a=i.getUint32(8,!0),l=a&65536?"zero-based-half-open":"1-based-closed",u={0:"generic",1:"SAM",2:"VCF"}[a&15];if(!u)throw new Error(`invalid Tabix preset format flags ${a}`);const f={ref:i.getInt32(12,!0),start:i.getInt32(16,!0),end:i.getInt32(20,!0)},h=i.getInt32(24,!0),A=5,d=((1<<(A+1)*3)-1)/7,g=2**(14+A*3),p=h?String.fromCharCode(h):void 0,m=i.getInt32(28,!0),C=i.getInt32(32,!0),{refNameToId:y,refIdToName:w}=this._parseNameBytes(r.slice(36,36+C));let E=36+C,x;return{indices:new Array(o).fill(0).map(()=>{const S=i.getInt32(E,!0);E+=4;const Q={};let v;for(let N=0;N<S;N+=1){const O=i.getUint32(E,!0);if(E+=4,O>d+1)throw new Error("tabix index contains too many bins, please use a CSI index");if(O===d+1){const H=i.getInt32(E,!0);E+=4,H===2&&(v=this.parsePseudoBin(r,E)),E+=16*H}else{const H=i.getInt32(E,!0);E+=4;const G=new Array(H);for(let _=0;_<H;_+=1){const te=ki(r,E),oe=ki(r,E+8);E+=16,x=this._findFirstData(x,te),G[_]=new Sc(te,oe,O)}Q[O]=G}}const F=i.getInt32(E,!0);E+=4;const R=new Array(F);for(let N=0;N<F;N+=1)R[N]=ki(r,E),E+=8,x=this._findFirstData(x,R[N]);return{binIndex:Q,linearIndex:R,stats:v}}),metaChar:p,maxBinNumber:d,maxRefLength:g,skipLines:m,firstDataLine:x,columnNumbers:f,coordinateType:l,format:u,refIdToName:w,refNameToId:y,maxBlockSize:65536}}parsePseudoBin(e,t){return{lineCount:Ey(e,t+16)}}async blocksForRange(e,t,r,i={}){t<0&&(t=0);const s=await this.parse(i),o=s.refNameToId[e];if(o===void 0)return[];const a=s.indices[o];if(!a)return[];(a.linearIndex.length>0?a.linearIndex[t>>vy>=a.linearIndex.length?a.linearIndex.length-1:t>>vy]:new QA(0,0))||console.warn("querying outside of possible tabix range");const c=PN(t,r),u=[];for(const[g,p]of c)for(let m=g;m<=p;m++)if(a.binIndex[m])for(const C of a.binIndex[m])u.push(new Sc(C.minv,C.maxv,m));const f=a.linearIndex.length;let h;const A=Math.min(t>>14,f-1),d=Math.min(r>>14,f-1);for(let g=A;g<=d;++g){const p=a.linearIndex[g];p&&(!h||p.compareTo(h)<0)&&(h=p)}return xy(u,h)}}class LN{constructor({path:e,filehandle:t,url:r,tbiPath:i,tbiUrl:s,tbiFilehandle:o,csiPath:a,csiUrl:l,csiFilehandle:c,renameRefSeqs:u,chunkCacheSize:f=5*2**20}){this.cache=new so({maxSize:1e3});const h=u??(A=>A);if(t)this.filehandle=t;else if(e)this.filehandle=new We(e);else if(r)this.filehandle=new _t(r);else throw new TypeError("must provide either filehandle or path");if(o)this.index=new Fi({filehandle:o,renameRefSeqs:h});else if(c)this.index=new Qc({filehandle:c,renameRefSeqs:h});else if(i)this.index=new Fi({filehandle:new We(i),renameRefSeqs:h});else if(a)this.index=new Qc({filehandle:new We(a),renameRefSeqs:h});else if(e)this.index=new Fi({filehandle:new We(`${e}.tbi`),renameRefSeqs:h});else if(l)this.index=new Qc({filehandle:new _t(l)});else if(s)this.index=new Fi({filehandle:new _t(s)});else if(r)this.index=new Fi({filehandle:new _t(`${r}.tbi`)});else throw new TypeError("must provide one of tbiFilehandle, tbiPath, csiFilehandle, csiPath, tbiUrl, csiUrl");this.renameRefSeq=h,this.hasCustomRenameRefSeq=u!==void 0,this.chunkCache=new pi({cache:new so({maxSize:Math.floor(f/65536)}),fill:(A,d)=>this.readChunk(A,{signal:d})})}calculateFileOffset(e,t,r,i,s){return e[r]*256+(i-t[r])+s+1}async getLines(e,t,r,i){let s,o={},a;typeof i=="function"?a=i:(o=i,a=i.lineCallback,s=i.signal);const l=await this.index.getMetadata(o),c=t??0,u=r??l.maxRefLength;if(!(c<=u))throw new TypeError("invalid start and end coordinates. start must be less than or equal to end");if(c===u)return;const f=await this.index.blocksForRange(e,c,u,o),h=new TextDecoder("utf8"),A=l.format==="VCF",d={ref:l.columnNumbers.ref||0,start:l.columnNumbers.start||0,end:A?8:l.columnNumbers.end||0},g=Math.max(d.ref,d.start,d.end),p=l.metaChar?.charCodeAt(0),m=l.coordinateType==="1-based-closed"?-1:0,C=!this.hasCustomRenameRefSeq;for(const y of f){const{buffer:w,cpositions:E,dpositions:x}=await this.chunkCache.get(y.toString(),y,s);let b=0,S=0;const Q=h.decode(w);if(w.length==Q.length)for(;b<Q.length;){const F=Q.indexOf(`
|
|
822
|
-
`,
|
|
823
|
-
`)&&(
|
|
824
|
-
`)?-2:-1));for(const
|
|
825
|
-
`)&&(
|
|
826
|
-
`)?-2:-1));for(const r of t.split(";")){const i=r.indexOf("=");if(i===-1)continue;const s=r.slice(i+1);if(!s.length)continue;const o=r.slice(0,i).trim();let a=e[o];a||(a=[],e[o]=a);for(const l of s.split(","))a.push(l.trim())}return e}function _N(n){return DA(n.split(" "))}function Ue(n){return n==="."||n===""||n===void 0?null:n}function DA(n){const e=Ue(n[0]),t=Ue(n[1]),r=Ue(n[2]),i=Ue(n[3]),s=Ue(n[4]),o=Ue(n[5]),a=Ue(n[6]),l=Ue(n[7]),c=Ue(n[8]);return{seq_id:e?Dc(e):null,source:t?Dc(t):null,type:r?Dc(r):null,start:i===null?null:parseInt(i,10),end:s===null?null:parseInt(s,10),score:o===null?null:parseFloat(o),strand:a,phase:l,attributes:c===null?null:HN(c)}}function YN(n){const e=Ue(n[0]),t=Ue(n[1]),r=Ue(n[2]),i=Ue(n[3]),s=Ue(n[4]),o=Ue(n[5]),a=Ue(n[6]),l=Ue(n[7]),c=Ue(n[8]);return{seq_id:e,source:t,type:r,start:i===null?null:parseInt(i,10),end:s===null?null:parseInt(s,10),score:o===null?null:parseFloat(o),strand:a,phase:l,attributes:c===null?null:VN(c)}}function JN(n){const e=GN.exec(n);if(!e)return null;const[,t]=e;let[,,r]=e;const i={directive:t};if(r.length&&(r=r.replace(zN,""),i.value=r),t==="sequence-region"){const s=r.split(Sy,3);return{...i,seq_id:s[0],start:s[1]?.replaceAll(Qy,""),end:s[2]?.replaceAll(Qy,"")}}else if(t==="genome-build"){const[s,o]=r.split(Sy,2);return{...i,source:s,buildName:o}}return i}const qN=/^\s*[^#\s>]/,KN=/^\s*(#+)(.*)/,jN=/^\s*$/,WN=/^\s*>/,XN=/\r?\n?$/g;class kc{featureCallback;endCallback;commentCallback;errorCallback;disableDerivesFromReferences;directiveCallback;bufferSize;eof=!1;lineNumber=0;_underConstructionTopLevel=[];_underConstructionById={};_completedReferences={};_underConstructionOrphans={};constructor(e){const t=()=>{};this.featureCallback=e.featureCallback||t,this.endCallback=e.endCallback||t,this.commentCallback=e.commentCallback||t,this.errorCallback=e.errorCallback||t,this.directiveCallback=e.directiveCallback||t,this.disableDerivesFromReferences=e.disableDerivesFromReferences||!1,this.bufferSize=e.bufferSize===void 0?1/0:e.bufferSize}addLine(e){if(this.eof)return;if(this.lineNumber+=1,qN.test(e)){this._bufferLine(e);return}const t=KN.exec(e);if(t){const[,r]=t;let[,,i]=t;if(r.length===3)this._emitAllUnderConstructionFeatures();else if(r.length===2){const s=JN(e);s&&(s.directive==="FASTA"?(this._emitAllUnderConstructionFeatures(),this.eof=!0):this._emitItem(s))}else this._emitItem({comment:i.trimStart()})}else if(!jN.test(e))if(WN.test(e))this._emitAllUnderConstructionFeatures(),this.eof=!0;else{const r=e.replaceAll(XN,"");throw new Error(`GFF3 parse error. Cannot parse '${r}'.`)}}addParsedFeatureLine(e){this.eof||(this.lineNumber+=1,this._bufferParsedLine(e))}finish(){this._emitAllUnderConstructionFeatures(),this.endCallback()}_emitItem(e){Array.isArray(e)?this.featureCallback(e):"directive"in e?this.directiveCallback(e):"comment"in e&&this.commentCallback(e)}_enforceBufferSizeLimit(e=0){const t=r=>{r&&Array.isArray(r)&&r[0].attributes?.ID?.[0]&&(r[0].attributes.ID.forEach(s=>{delete this._underConstructionById[s],delete this._completedReferences[s]}),r.forEach(s=>{s.child_features&&s.child_features.forEach(o=>{t(o)}),s.derived_features&&s.derived_features.forEach(o=>{t(o)})}))};for(;this._underConstructionTopLevel.length+e>this.bufferSize;){const r=this._underConstructionTopLevel.shift();r&&(this._emitItem(r),t(r))}}_emitAllUnderConstructionFeatures(){this._underConstructionTopLevel.forEach(this._emitItem.bind(this)),this._underConstructionTopLevel=[],this._underConstructionById={},this._completedReferences={};const e=Object.keys(this._underConstructionOrphans);if(e.length)throw new Error(`some features reference other features that do not exist in the file (or in the same '###' scope). ${e.join(",")}`)}_bufferLine(e){this._bufferParsedLine(_N(e))}_bufferParsedLine(e){const t=e;t.child_features=[],t.derived_features=[];const r=t.attributes?.ID||[],i=t.attributes?.Parent||[],s=this.disableDerivesFromReferences?[]:t.attributes?.Derives_from||[];if(!r.length&&!i.length&&!s.length){this._emitItem([t]);return}let o;r.forEach(a=>{const l=this._underConstructionById[a];l?(l[l.length-1].type!==t.type&&this._parseError(`multi-line feature "${a}" has inconsistent types: "${t.type}", "${l[l.length-1].type}"`),l.push(t),o=l):(o=[t],this._enforceBufferSizeLimit(1),!i.length&&!s.length&&this._underConstructionTopLevel.push(o),this._underConstructionById[a]=o,this._resolveReferencesTo(o,a))}),this._resolveReferencesFrom(o||[t],{Parent:i,Derives_from:s},r)}_resolveReferencesTo(e,t){const r=this._underConstructionOrphans[t];if(r){for(const i of e)i.child_features.push(...r.Parent),i.derived_features.push(...r.Derives_from);delete this._underConstructionOrphans[t]}}_parseError(e){this.eof=!0,this.errorCallback(`${this.lineNumber}: ${e}`)}_resolveReferencesFrom(e,t,r){for(const i of t.Parent){const s=this._underConstructionById[i];if(s){let o=!1;for(const a of r){const l=`Parent,${i}`,c=this._completedReferences[a]||(this._completedReferences[a]={});c[l]&&(o=!0),c[l]=!0}if(!o)for(const a of s)a.child_features.push(e)}else{let o=this._underConstructionOrphans[i];o||(o={Parent:[],Derives_from:[]},this._underConstructionOrphans[i]=o),o.Parent.push(e)}}for(const i of t.Derives_from){const s=this._underConstructionById[i];if(s){let o=!1;for(const a of r){const l=`Derives_from,${i}`,c=this._completedReferences[a]||(this._completedReferences[a]={});c[l]&&(o=!0),c[l]=!0}if(!o)for(const a of s)a.derived_features.push(e)}else{let o=this._underConstructionOrphans[i];o||(o={Parent:[],Derives_from:[]},this._underConstructionOrphans[i]=o),o.Derives_from.push(e)}}}}function ZN(n){const e=[],t=new kc({featureCallback:r=>e.push(r),disableDerivesFromReferences:!0,errorCallback:r=>{throw new Error(r)}});for(const r of n.split(/\r?\n/))t.addLine(r);return t.finish(),e}function $N(n){const e=[],t=new kc({featureCallback:r=>e.push(r),disableDerivesFromReferences:!0,errorCallback:r=>{throw new Error(r)}});for(const r of n)t.addLine(r);return t.finish(),e}function e9(n){const e=[],t=new kc({featureCallback:r=>e.push(r),disableDerivesFromReferences:!0,errorCallback:r=>{throw new Error(r)}});for(const r of n){const i=DA(r.fields);r.lineHash!==void 0&&(i.attributes||(i.attributes={}),i.attributes._lineHash=[String(r.lineHash)]),t.addParsedFeatureLine(i)}return t.finish(),e}function t9(n,e){const t=[],r=new kc({featureCallback:s=>t.push(s),disableDerivesFromReferences:!0,errorCallback:s=>{throw new Error(s)}}),i=e?DA:YN;for(const s of n){const o=i(s.fields);s.lineHash!==void 0&&(o.attributes||(o.attributes={}),o.attributes._lineHash=[String(s.lineHash)]),r.addParsedFeatureLine(o)}return r.finish(),t}const n9=Object.freeze(Object.defineProperty({__proto__:null,parseArraySync:$N,parseRecordsSync:e9,parseRecordsSyncFast:t9,parseStringSync:ZN},Symbol.toStringTag,{value:"Module"}));function r9(n,e,t){const r=Object.create(null),i=t.length,s=e.length,o=9,a=58;let l=0;if(n==="GT"){for(let f=0;f<i;f++){const h=l;for(;l<s&&e.charCodeAt(l)!==o;)l++;r[t[f]]=e.slice(h,l),l++}return r}const c=n.indexOf("GT");if(c===-1)return r;if(c===0){for(let f=0;f<i;f++){const h=l;for(;l<s&&e.charCodeAt(l)!==a&&e.charCodeAt(l)!==o;)l++;for(r[t[f]]=e.slice(h,l);l<s&&e.charCodeAt(l)!==o;)l++;l++}return r}let u=0;for(let f=0;f<c;f++)n.charCodeAt(f)===a&&u++;for(let f=0;f<i;f++){const h=l;let A=l;for(;A<s&&e.charCodeAt(A)!==o;)A++;let d=0,g=h;for(let p=h;p<=A;p++)if(p===A||e.charCodeAt(p)===a){if(d===u){r[t[f]]=e.slice(g,p);break}d++,g=p+1}l=A+1}return r}function i9(n){const e=[],t=[];let r=!1,i=!1;const s=n.length;for(let o=0;o<s;o++){const a=n[o];a==='"'?(r=!r,t.push(a)):a==="["?(i=!0,t.push(a)):a==="]"?(i=!1,t.push(a)):a===","&&!r&&!i?(e.push(t.join("").trim()),t.length=0):t.push(a)}return t.length>0&&e.push(t.join("").trim()),e}function s9(n,e){const t=n.indexOf(e);return[n.slice(0,t),n.slice(t+1)]}function o9(n){const e=n.slice(1,-1),t=i9(e),r=[];for(let i=0;i<t.length;i++){const s=t[i],[o,a]=s9(s,"=");if(a&&a.startsWith("[")&&a.endsWith("]")){const l=a.slice(1,-1).split(",");for(let c=0;c<l.length;c++)l[c]=l[c].trim();r.push([o,l])}else a&&a.startsWith('"')&&a.endsWith('"')?r.push([o,a.slice(1,-1)]):r.push([o,a])}return Object.fromEntries(r)}const Fc={InfoFields:{AA:{Number:1,Type:"String",Description:"Ancestral allele"},AC:{Number:"A",Type:"Integer",Description:"Allele count in genotypes, for each ALT allele, in the same order as listed"},AD:{Number:"R",Type:"Integer",Description:"Total read depth for each allele"},ADF:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the forward strand"},ADR:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the reverse strand"},AF:{Number:"A",Type:"Float",Description:"Allele frequency for each ALT allele in the same order as listed (estimated from primary data, not called genotypes)"},AN:{Number:1,Type:"Integer",Description:"Total number of alleles in called genotypes"},BQ:{Number:1,Type:"Float",Description:"RMS base quality"},CIGAR:{Number:1,Type:"Float",Description:"Cigar string describing how to align an alternate allele to the reference allele"},DB:{Number:0,Type:"Flag",Description:"dbSNP membership"},DP:{Number:1,Type:"Integer",Description:"combined depth across samples"},END:{Number:1,Type:"Integer",Description:"End position (for use with symbolic alleles)"},H2:{Number:0,Type:"Flag",Description:"HapMap2 membership"},H3:{Number:0,Type:"Flag",Description:"HapMap3 membership"},MQ:{Number:1,Type:null,Description:"RMS mapping quality"},MQ0:{Number:1,Type:"Integer",Description:"Number of MAPQ == 0 reads"},NS:{Number:1,Type:"Integer",Description:"Number of samples with data"},SB:{Number:4,Type:"Integer",Description:"Strand bias"},SOMATIC:{Number:0,Type:"Flag",Description:"Somatic mutation (for cancer genomics)"},VALIDATED:{Number:0,Type:"Flag",Description:"Validated by follow-up experiment"},"1000G":{Number:0,Type:"Flag",Description:"1000 Genomes membership"},IMPRECISE:{Number:0,Type:"Flag",Description:"Imprecise structural variation"},NOVEL:{Number:0,Type:"Flag",Description:"Indicates a novel structural variation"},SVTYPE:{Number:1,Type:"String",Description:"Type of structural variant"},SVLEN:{Number:null,Type:"Integer",Description:"Difference in length between REF and ALT alleles"},CIPOS:{Number:2,Type:"Integer",Description:"Confidence interval around POS for imprecise variants"},CIEND:{Number:2,Type:"Integer",Description:"Confidence interval around END for imprecise variants"},HOMLEN:{Type:"Integer",Description:"Length of base pair identical micro-homology at event breakpoints"},HOMSEQ:{Type:"String",Description:"Sequence of base pair identical micro-homology at event breakpoints"},BKPTID:{Type:"String",Description:"ID of the assembled alternate allele in the assembly file"},MEINFO:{Number:4,Type:"String",Description:"Mobile element info of the form NAME,START,END,POLARITY"},METRANS:{Number:4,Type:"String",Description:"Mobile element transduction info of the form CHR,START,END,POLARITY"},DGVID:{Number:1,Type:"String",Description:"ID of this element in Database of Genomic Variation"},DBVARID:{Number:1,Type:"String",Description:"ID of this element in DBVAR"},DBRIPID:{Number:1,Type:"String",Description:"ID of this element in DBRIP"},MATEID:{Number:null,Type:"String",Description:"ID of mate breakends"},PARID:{Number:1,Type:"String",Description:"ID of partner breakend"},EVENT:{Number:1,Type:"String",Description:"ID of event associated to breakend"},CILEN:{Number:2,Type:"Integer",Description:"Confidence interval around the inserted material between breakend"},DPADJ:{Type:"Integer",Description:"Read Depth of adjacency"},CN:{Number:1,Type:"Integer",Description:"Copy number of segment containing breakend"},CNADJ:{Number:null,Type:"Integer",Description:"Copy number of adjacency"},CICN:{Number:2,Type:"Integer",Description:"Confidence interval around copy number for the segment"},CICNADJ:{Number:null,Type:"Integer",Description:"Confidence interval around copy number for the adjacency"}},GenotypeFields:{AD:{Number:"R",Type:"Integer",Description:"Read depth for each allele"},ADF:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the forward strand"},ADR:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the reverse strand"},DP:{Number:1,Type:"Integer",Description:"Read depth"},EC:{Number:"A",Type:"Integer",Description:"Expected alternate allele counts"},FT:{Number:1,Type:"String",Description:'Filter indicating if this genotype was "called"'},GL:{Number:"G",Type:"Float",Description:"Genotype likelihoods"},GP:{Number:"G",Type:"Float",Description:"Genotype posterior probabilities"},GQ:{Number:1,Type:"Integer",Description:"Conditional genotype quality"},GT:{Number:1,Type:"String",Description:"Genotype"},HQ:{Number:2,Type:"Integer",Description:"Haplotype quality"},MQ:{Number:1,Type:"Integer",Description:"RMS mapping quality"},PL:{Number:"G",Type:"Integer",Description:"Phred-scaled genotype likelihoods rounded to the closest integer"},PQ:{Number:1,Type:"Integer",Description:"Phasing quality"},PS:{Number:1,Type:"Integer",Description:"Phase set"}},AltTypes:{DEL:{Description:"Deletion relative to the reference"},INS:{Description:"Insertion of novel sequence relative to the reference"},DUP:{Description:"Region of elevated copy number relative to the reference"},INV:{Description:"Inversion of reference sequence"},CNV:{Description:"Copy number variable region (may be both deletion and duplication)"},"DUP:TANDEM":{Description:"Tandem duplication"},"DEL:ME":{Description:"Deletion of mobile element relative to the reference"},"INS:ME":{Description:"Insertion of a mobile element relative to the reference"},NON_REF:{Description:"Represents any possible alternative allele at this location"},"*":{Description:"Represents any possible alternative allele at this location"}},FilterTypes:{PASS:{Description:"Passed all filters"}}};function a9(n){try{return decodeURIComponent(n)}catch{return n}}class c9{constructor({header:e="",strict:t=!0}){if(!e.length)throw new Error("empty header received");const r=e.split(/[\r\n]+/).filter(Boolean);if(!r.length)throw new Error("no non-empty header lines specified");this.strict=t,this.metadata={INFO:{...Fc.InfoFields},FORMAT:{...Fc.GenotypeFields},ALT:{...Fc.AltTypes},FILTER:{...Fc.FilterTypes}};let i;for(let l=0;l<r.length;l++){const c=r[l];if(c.startsWith("#"))c.startsWith("##")?this.parseMetadata(c):i=c;else throw new Error(`Bad line in header:
|
|
827
|
-
${c}`)}if(!
|
|
828
|
-
${
|
|
829
|
-
${i}`);this.samples=s.slice(9)}parseInfo(e){const t={},r=e.includes("%"),i=e.split(";"),s=this.metadata.INFO,o=i.length;for(let a=0;a<o;a++){const l=i[a],c=l.indexOf("="),u=c===-1?l:l.slice(0,c),f=c===-1?void 0:l.slice(c+1),h=s[u]?.Type;if(h==="Flag")t[u]=!0;else if(!f)t[u]=!0;else{const A=h==="Integer"||h==="Float",d=f.split(","),g=d.length;if(r){const p=[];for(let m=0;m<g;m++){const C=d[m];if(C===".")p.push(void 0);else{const y=a9(C);p.push(A?Number(y):y)}}t[u]=p}else{const p=[];for(let m=0;m<g;m++){const C=d[m];C==="."?p.push(void 0):p.push(A?Number(C):C)}t[u]=p}}}return t}parseSamples(e,t){const r={};if(e){const i=t.split(" "),s=e.split(":"),o=this.metadata.FORMAT,a=[];for(let u=0;u<s.length;u++){const f=o[s[u]]?.Type;a.push(f==="Integer"||f==="Float")}const l=s.length,c=this.samples.length;for(let u=0;u<c;u++){const f=this.samples[u],h={},A=i[u],d=A.length;let g=0,p=0;for(let m=0;m<=d;m++)if(m===d||A[m]===":"){const C=A.slice(g,m);if(C===""||C===".")h[s[p]]=void 0;else{const y=C.split(","),w=[];if(a[p])for(let E=0;E<y.length;E++){const x=y[E];w.push(x==="."?void 0:+x)}else for(let E=0;E<y.length;E++){const x=y[E];w.push(x==="."?void 0:x)}h[s[p]]=w}if(g=m+1,p+=1,p>=l)break}r[f]=h}}return r}parseMetadata(e){const t=/^##(.+?)=(.*)/.exec(e.trim());if(!t)throw new Error(`Line is not a valid metadata line: ${e}`);const[r,i]=t.slice(1,3),s=r;if(i?.startsWith("<")){s in this.metadata||(this.metadata[s]={});const[o,a]=this.parseStructuredMetaVal(i);o?this.metadata[s][o]=a:this.metadata[s]=a}else this.metadata[s]=i}parseStructuredMetaVal(e){const t=o9(e),r=t.ID;return delete t.ID,"Number"in t&&(Number.isNaN(Number(t.Number))||(t.Number=Number(t.Number))),[r,t]}getMetadata(...e){let t=this.metadata;const r=e.length;for(let i=0;i<r;i++)if(t=t[e[i]],!t)return t;return t}parseLine(e){let t=0,r=0;for(;t<e.length&&r<9;)e[t]===" "&&(r+=1),t+=1;const i=r===9?t-1:t,s=e.slice(0,i).split(" "),o=e.slice(i+1),[a,l,c,u,f,h,A]=s,d=a,g=+l,p=c==="."?void 0:c.split(";"),m=u,C=f==="."?void 0:f.split(","),y=h==="."?void 0:+h,w=A==="."?void 0:A.split(";"),E=s[8];if(this.strict&&!s[7])throw new Error("no INFO field specified, must contain at least a '.' (turn off strict mode to allow)");const x=s[7]===void 0||s[7]==="."?{}:this.parseInfo(s[7]);return{CHROM:d,POS:g,ALT:C,INFO:x,REF:m,FILTER:w?.length===1&&w[0]==="PASS"?"PASS":w,ID:p,QUAL:y,FORMAT:E,SAMPLES:()=>this.parseSamples(s[8]??"",o),GENOTYPES:()=>r9(s[8]??"",o,this.samples)}}}const l9=Object.freeze(Object.defineProperty({__proto__:null,default:c9},Symbol.toStringTag,{value:"Module"}));bt.GenomeSpy=Q1,bt.embed=f6,bt.favIcon=u6,bt.html=ce,bt.icon=l6,bt.loadSpec=D1,Object.defineProperty(bt,Symbol.toStringTag,{value:"Module"})}));
|
|
821
|
+
)`},Symbol.toStringTag,{value:"Module"}))).map(([t,e])=>[t,Jy.parse(e.trim())]));function BA(t){const e=new Set(["uint","int","float","long"]);return{...t,fields:t.fields.map(n=>({...n,isArray:n.size&&n.type!=="char",arrayIsNumeric:n.size&&e.has(n.type),isNumeric:!n.size&&e.has(n.type)})).filter(n=>!!n.name)}}const PT={".":0,"-":-1,"+":1};function LT(t){return t.length>=12&&!Number.isNaN(Number.parseInt(t[9],10))&&t[10]?.split(",").filter(e=>!!e).length===Number.parseInt(t[9],10)}class OT{constructor(e={}){if(e.autoSql)this.autoSql=BA(Jy.parse(e.autoSql));else if(e.type){if(!xA[e.type])throw new Error("Type not found");this.autoSql=BA(xA[e.type])}else this.autoSql=BA(xA.defaultBedSchema),this.attemptDefaultBed=!0}parseLine(e,n={}){const{autoSql:i}=this,{uniqueId:r}=n,s=Array.isArray(e)?e:e.split(" ");let o={};if(!this.attemptDefaultBed||this.attemptDefaultBed&<(s))for(let a=0;a<i.fields.length;a++){const l=i.fields[a];let c=s[a];const{isNumeric:f,isArray:u,arrayIsNumeric:h,name:A}=l;if(c==null)break;if(c!=="."){if(f){const d=Number(c);c=Number.isNaN(d)?c:d}else u&&(c=c.split(","),c.at(-1)===""&&c.pop(),h&&(c=c.map(Number)));o[A]=c}}else{const a=["chrom","chromStart","chromEnd","name"];o=Object.fromEntries(s.map((l,c)=>[a[c]||"field"+c,l])),o.chromStart=+o.chromStart,o.chromEnd=+o.chromEnd,Number.isNaN(Number.parseFloat(o.field4))||(o.score=+o.field4,delete o.field4),(o.field5==="+"||o.field5==="-")&&(o.strand=o.field5,delete o.field5)}return r&&(o.uniqueId=r),o.strand=PT[o.strand]||0,o.chrom=decodeURIComponent(o.chrom),o}}const UT=Object.freeze(Object.defineProperty({__proto__:null,default:OT},Symbol.toStringTag,{value:"Module"}));var Fe=function(t,e,n,i,r){if(i==="m")throw new TypeError("Private method is not writable");if(i==="a"&&!r)throw new TypeError("Private accessor was defined without a setter");if(typeof e=="function"?t!==e||!r:!e.has(t))throw new TypeError("Cannot write private member to an object whose class did not declare it");return i==="a"?r.call(t,n):r?r.value=n:e.set(t,n),n},P=function(t,e,n,i){if(n==="a"&&!i)throw new TypeError("Private accessor was defined without a getter");if(typeof e=="function"?t!==e||!i:!e.has(t))throw new TypeError("Cannot read private member from an object whose class did not declare it");return n==="m"?i:n==="a"?i.call(t):i?i.value:e.get(t)},fe,ft,ue,ye,Bi,uo,vi,Ic,kt,qy,vA,SA,QA,Ky,bc;class Ao extends Map{constructor(e={}){if(super(),fe.add(this),ft.set(this,0),ue.set(this,new Map),ye.set(this,new Map),Bi.set(this,void 0),uo.set(this,void 0),vi.set(this,void 0),!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if(typeof e.maxAge=="number"&&e.maxAge===0)throw new TypeError("`maxAge` must be a number greater than 0");Fe(this,Bi,e.maxSize,"f"),Fe(this,uo,e.maxAge||Number.POSITIVE_INFINITY,"f"),Fe(this,vi,e.onEviction,"f")}get __oldCache(){return P(this,ye,"f")}get(e){if(P(this,ue,"f").has(e)){const n=P(this,ue,"f").get(e);return P(this,fe,"m",vA).call(this,e,n)}if(P(this,ye,"f").has(e)){const n=P(this,ye,"f").get(e);if(!P(this,fe,"m",kt).call(this,e,n))return P(this,fe,"m",Ky).call(this,e,n),n.value}}set(e,n,{maxAge:i=P(this,uo,"f")}={}){const r=typeof i=="number"&&i!==Number.POSITIVE_INFINITY?Date.now()+i:void 0;return P(this,ue,"f").has(e)?P(this,ue,"f").set(e,{value:n,expiry:r}):P(this,fe,"m",QA).call(this,e,{value:n,expiry:r}),this}has(e){return P(this,ue,"f").has(e)?!P(this,fe,"m",kt).call(this,e,P(this,ue,"f").get(e)):P(this,ye,"f").has(e)?!P(this,fe,"m",kt).call(this,e,P(this,ye,"f").get(e)):!1}peek(e){if(P(this,ue,"f").has(e))return P(this,fe,"m",SA).call(this,e,P(this,ue,"f"));if(P(this,ye,"f").has(e))return P(this,fe,"m",SA).call(this,e,P(this,ye,"f"))}expiresIn(e){const n=P(this,ue,"f").get(e)??P(this,ye,"f").get(e);if(n)return n.expiry?n.expiry-Date.now():Number.POSITIVE_INFINITY}delete(e){var n;const i=P(this,ue,"f").delete(e);return i&&Fe(this,ft,(n=P(this,ft,"f"),n--,n),"f"),P(this,ye,"f").delete(e)||i}clear(){P(this,ue,"f").clear(),P(this,ye,"f").clear(),Fe(this,ft,0,"f")}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");const n=[...P(this,fe,"m",bc).call(this)],i=n.length-e;i<0?(Fe(this,ue,new Map(n),"f"),Fe(this,ye,new Map,"f"),Fe(this,ft,n.length,"f")):(i>0&&P(this,fe,"m",Ic).call(this,n.slice(0,i)),Fe(this,ye,new Map(n.slice(i)),"f"),Fe(this,ue,new Map,"f"),Fe(this,ft,0,"f")),Fe(this,Bi,e,"f")}evict(e=1){const n=e;if(!n||n<=0)return;const i=[...P(this,fe,"m",bc).call(this)],r=Math.trunc(Math.min(n,Math.max(i.length-1,0)));r<=0||(P(this,fe,"m",Ic).call(this,i.slice(0,r)),Fe(this,ye,new Map(i.slice(r)),"f"),Fe(this,ue,new Map,"f"),Fe(this,ft,0,"f"))}*keys(){for(const[e]of this)yield e}*values(){for(const[,e]of this)yield e}*[(ft=new WeakMap,ue=new WeakMap,ye=new WeakMap,Bi=new WeakMap,uo=new WeakMap,vi=new WeakMap,fe=new WeakSet,Ic=function(n){if(typeof P(this,vi,"f")=="function")for(const[i,r]of n)P(this,vi,"f").call(this,i,r.value)},kt=function(n,i){return typeof i.expiry=="number"&&i.expiry<=Date.now()?(typeof P(this,vi,"f")=="function"&&P(this,vi,"f").call(this,n,i.value),this.delete(n)):!1},qy=function(n,i){if(!P(this,fe,"m",kt).call(this,n,i))return i.value},vA=function(n,i){return i.expiry?P(this,fe,"m",qy).call(this,n,i):i.value},SA=function(n,i){const r=i.get(n);return P(this,fe,"m",vA).call(this,n,r)},QA=function(n,i){var r;P(this,ue,"f").set(n,i),Fe(this,ft,(r=P(this,ft,"f"),r++,r),"f"),P(this,ft,"f")>=P(this,Bi,"f")&&(Fe(this,ft,0,"f"),P(this,fe,"m",Ic).call(this,P(this,ye,"f")),Fe(this,ye,P(this,ue,"f"),"f"),Fe(this,ue,new Map,"f"))},Ky=function(n,i){P(this,ye,"f").delete(n),P(this,fe,"m",QA).call(this,n,i)},bc=function*(){for(const n of P(this,ye,"f")){const[i,r]=n;P(this,ue,"f").has(i)||P(this,fe,"m",kt).call(this,i,r)||(yield n)}for(const n of P(this,ue,"f")){const[i,r]=n;P(this,fe,"m",kt).call(this,i,r)||(yield n)}},Symbol.iterator)](){for(const e of P(this,ue,"f")){const[n,i]=e;P(this,fe,"m",kt).call(this,n,i)||(yield[n,i.value])}for(const e of P(this,ye,"f")){const[n,i]=e;P(this,ue,"f").has(n)||P(this,fe,"m",kt).call(this,n,i)||(yield[n,i.value])}}*entriesDescending(){let e=[...P(this,ue,"f")];for(let n=e.length-1;n>=0;--n){const i=e[n],[r,s]=i;P(this,fe,"m",kt).call(this,r,s)||(yield[r,s.value])}e=[...P(this,ye,"f")];for(let n=e.length-1;n>=0;--n){const i=e[n],[r,s]=i;P(this,ue,"f").has(r)||P(this,fe,"m",kt).call(this,r,s)||(yield[r,s.value])}}*entriesAscending(){for(const[e,n]of P(this,fe,"m",bc).call(this))yield[e,n.value]}get size(){if(!P(this,ft,"f"))return P(this,ye,"f").size;let e=0;for(const n of P(this,ye,"f").keys())P(this,ue,"f").has(n)||e++;return Math.min(P(this,ft,"f")+e,P(this,Bi,"f"))}get maxSize(){return P(this,Bi,"f")}get maxAge(){return P(this,uo,"f")}entries(){return this.entriesAscending()}forEach(e,n=this){for(const[i,r]of this.entriesAscending())e.call(n,r,i,this)}get[Symbol.toStringTag](){return"QuickLRU"}toString(){return`QuickLRU(${this.size}/${this.maxSize})`}[Symbol.for("nodejs.util.inspect.custom")](){return this.toString()}}let jy=class{constructor(e,n,i,r){this.minv=e,this.maxv=n,this.bin=i,this._fetchedSize=r}toUniqueString(){return`${this.minv.toString()}..${this.maxv.toString()} (bin ${this.bin}, fetchedSize ${this.fetchedSize()})`}toString(){return this.toUniqueString()}compareTo(e){return this.minv.compareTo(e.minv)||this.maxv.compareTo(e.maxv)||this.bin-e.bin}fetchedSize(){return this._fetchedSize!==void 0?this._fetchedSize:this.maxv.blockPosition+65536-this.minv.blockPosition}};const Wy=65536,_T=Wy*Wy;function GT(t,e=0){const n=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;return((t[e+4]|t[e+5]<<8|t[e+6]<<16|t[e+7]<<24)>>>0)*_T+(n>>>0)}function zT(t={}){return"aborted"in t?{signal:t}:t}function DA(t,e){const n=t.length;if(n===0)return t;let i;if(e){const l=e.blockPosition,c=e.dataPosition;i=[];for(let f=0;f<n;f++){const u=t[f],h=u.maxv;(h.blockPosition-l||h.dataPosition-c)>0&&i.push(u)}if(i.length===0)return i}else i=t;i.sort((l,c)=>{const f=l.minv.blockPosition-c.minv.blockPosition;return f!==0?f:l.minv.dataPosition-c.minv.dataPosition});const r=[];let s=i[0];r.push(s);let o=s.minv.blockPosition,a=s.maxv.blockPosition;for(let l=1;l<i.length;l++){const c=i[l],f=c.minv.blockPosition,u=c.maxv.blockPosition;if(f-a<65e3&&u-o<5e6){const h=c.maxv,A=s.maxv;(u-a||h.dataPosition-A.dataPosition)>0&&(s.maxv=h,a=u)}else r.push(c),s=c,o=f,a=u}return r}function Xy(t,e){return{lineCount:GT(t,e)}}function ho(t,e){return t?t.compareTo(e)>0?e:t:e}function HT(t,e=n=>n){let n=0,i=0;const r=[],s={};for(let o=0;o<t.length;o+=1)if(!t[o]){if(i<o){let a="";for(let l=i;l<o;l++)a+=String.fromCharCode(t[l]);a=e(a),r[n]=a,s[a]=n}i=o+1,n+=1}return{refNameToId:s,refIdToName:r}}function YT(t){let e=0;for(const r of t)e+=r.length;const n=new Uint8Array(e);let i=0;for(const r of t)n.set(r,i),i+=r.length;return n}function VT(t,e,n){return!!((t&e)!==e||t&n)}function JT(t,e){return e==="*"?t===void 0:`${t}`!=`${e}`}function qT(t){if(!t)return"";const{flagInclude:e=0,flagExclude:n=0,tagFilter:i}=t,r=i?`:${i.tag}=${i.value??"*"}`:"";return`:f${e}x${n}${r}`}let Zy=class{constructor({filehandle:e,renameRefSeq:n=i=>i}){this.filehandle=e,this.renameRefSeq=n}async estimatedBytesForRegions(e,n){const i=await Promise.all(e.map(o=>this.blocksForRange(o.refId,o.start,o.end,n))),r=DA(i.flat());let s=0;for(const o of r)s+=o.fetchedSize();return s}},$y=class{constructor(e,n){this.blockPosition=e,this.dataPosition=n}toString(){return`${this.blockPosition}:${this.dataPosition}`}compareTo(e){return this.blockPosition-e.blockPosition||this.dataPosition-e.dataPosition}};function Gn(t,e=0,n=!1){if(n)throw new Error("big-endian virtual file offsets not implemented");return new $y(t[e+7]*1099511627776+t[e+6]*4294967296+t[e+5]*16777216+t[e+4]*65536+t[e+3]*256+t[e+2],t[e+1]<<8|t[e])}const KT=21578050;function jT(t,e){return t-t%e}function WT(t,e){return t-t%e+e}function XT(t,e){return e-=1,[[0,0],[1+(t>>26),1+(e>>26)],[9+(t>>23),9+(e>>23)],[73+(t>>20),73+(e>>20)],[585+(t>>17),585+(e>>17)],[4681+(t>>14),4681+(e>>14)]]}class vr extends Zy{async lineCount(e,n){return(await this.parse(n)).indices(e)?.stats?.lineCount||0}async _parse(e){const n=await this.filehandle.readFile(),i=new DataView(n.buffer);if(i.getUint32(0,!0)!==KT)throw new Error("Not a BAI file");const r=i.getInt32(4,!0),o=((1<<(5+1)*3)-1)/7;let a=8,l;const c=[];for(let h=0;h<r;h++){c.push(a);const A=i.getInt32(a,!0);a+=4;for(let m=0;m<A;m+=1){const p=i.getUint32(a,!0);if(a+=4,p===o+1)a+=4,a+=32;else{if(p>o+1)throw new Error("bai index contains too many bins, please use CSI");{const w=i.getInt32(a,!0);a+=4;for(let C=0;C<w;C++)a+=8,a+=8}}}const d=i.getInt32(a,!0);a+=4;const g=new Array(d);for(let m=0;m<d;m++){const p=Gn(n,a);a+=8,l=ho(l,p),g[m]=p}}const f=new Ao({maxSize:5});function u(h){let A=c[h];if(A===void 0)return;const d=i.getInt32(A,!0);let g;A+=4;const m={};for(let C=0;C<d;C+=1){const y=i.getUint32(A,!0);if(A+=4,y===o+1)A+=4,g=Xy(n,A+16),A+=32;else{if(y>o+1)throw new Error("bai index contains too many bins, please use CSI");{const b=i.getInt32(A,!0);A+=4;const x=new Array(b);for(let I=0;I<b;I++){const S=Gn(n,A);A+=8;const Q=Gn(n,A);A+=8,l=ho(l,S),x[I]=new jy(S,Q,y)}m[y]=x}}}const p=i.getInt32(A,!0);A+=4;const w=new Array(p);for(let C=0;C<p;C++){const y=Gn(n,A);A+=8,l=ho(l,y),w[C]=y}return{binIndex:m,linearIndex:w,stats:g}}return{bai:!0,firstDataLine:l,maxBlockSize:65536,indices:h=>{if(!f.has(h)){const A=u(h);return A&&f.set(h,A),A}return f.get(h)},refCount:r}}async indexCov(e,n,i,r){const o=n!==void 0,l=(await this.parse(r)).indices(e);if(!l)return[];const{linearIndex:c,stats:f}=l;if(c.length===0)return[];const u=i===void 0?(c.length-1)*16384:WT(i,16384),h=n===void 0?0:jT(n,16384),A=o?new Array((u-h)/16384):new Array(c.length-1),d=c[c.length-1].blockPosition;if(u>(c.length-1)*16384)throw new Error("query outside of range of linear index");let g=c[h/16384].blockPosition;for(let m=h/16384,p=0;m<u/16384;m++,p++)A[p]={score:c[m+1].blockPosition-g,start:m*16384,end:m*16384+16384},g=c[m+1].blockPosition;return A.map(m=>({...m,score:m.score*(f?.lineCount||0)/d}))}async blocksForRange(e,n,i,r={}){n<0&&(n=0);const s=await this.parse(r);if(!s)return[];const o=s.indices(e);if(!o)return[];const a=XT(n,i),l=[],{binIndex:c}=o;for(const[d,g]of a)for(let m=d;m<=g;m++){const p=c[m];if(p)for(let w=0,C=p.length;w<C;w++)l.push(p[w])}const{linearIndex:f}=o,u=f.length,h=Math.min(n>>14,u-1),A=f[h];return DA(l,A)}async parse(e={}){return this.setupP||(this.setupP=this._parse(e).catch(n=>{throw this.setupP=void 0,n})),this.setupP}async hasRefSeq(e,n={}){return!!(await this.parse(n)).indices(e)?.binIndex}}var eC=0,tC=2,xc=4,Si=0,Bc=1,ZT=2,$T=-5;function e5(t,e){return Object.prototype.hasOwnProperty.call(t,e)}function t5(t){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var n=e.shift();if(n){if(typeof n!="object")throw new TypeError(n+"must be non-object");for(var i in n)e5(n,i)&&(t[i]=n[i])}}return t}function nC(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)}var go={arraySet:function(t,e,n,i,r){if(e.subarray&&t.subarray){t.set(e.subarray(n,n+i),r);return}for(var s=0;s<i;s++)t[r+s]=e[n+s]},flattenChunks:function(t){var e,n,i,r,s,o;for(i=0,e=0,n=t.length;e<n;e++)i+=t[e].length;for(o=new Uint8Array(i),r=0,e=0,n=t.length;e<n;e++)s=t[e],o.set(s,r),r+=s.length;return o},Buf8:function(t){return new Uint8Array(t)},Buf16:function(t){return new Uint16Array(t)},Buf32:function(t){return new Int32Array(t)}},po={arraySet:function(t,e,n,i,r){for(var s=0;s<i;s++)t[r+s]=e[n+s]},flattenChunks:function(t){return[].concat.apply([],t)},Buf8:function(t){return new Array(t)},Buf16:function(t){return new Array(t)},Buf32:function(t){return new Array(t)}};let Sr=()=>{const t=typeof Uint8Array<"u"&&typeof Uint16Array<"u"&&typeof Int32Array<"u";return Sr=()=>t,t},zn=(t,e,n,i,r)=>(zn=Sr()?go.arraySet:po.arraySet,zn(t,e,n,i,r)),kA=t=>(kA=Sr()?go.flattenChunks:po.flattenChunks,kA(t)),Qr=t=>(Qr=Sr()?go.Buf8:po.Buf8,Qr(t)),Dr=t=>(Dr=Sr()?go.Buf16:po.Buf16,Dr(t)),kr=t=>(kr=Sr()?go.Buf32:po.Buf32,kr(t)),iC=function(){let t=!0;try{String.fromCharCode.apply(null,[0])}catch{t=!1}return iC=()=>t,t},rC=function(){let t=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch{t=!1}return rC=()=>t,t},FA=function(t){for(var e=Qr(256),n=0;n<256;n++)e[n]=n>=252?6:n>=248?5:n>=240?4:n>=224?3:n>=192?2:1;return e[254]=e[254]=1,FA=i=>e[i],e[t]};function sC(t){var e,n,i,r,s,o=t.length,a=0;for(r=0;r<o;r++)n=t.charCodeAt(r),(n&64512)===55296&&r+1<o&&(i=t.charCodeAt(r+1),(i&64512)===56320&&(n=65536+(n-55296<<10)+(i-56320),r++)),a+=n<128?1:n<2048?2:n<65536?3:4;for(e=new Uint8Array(a),s=0,r=0;s<a;r++)n=t.charCodeAt(r),(n&64512)===55296&&r+1<o&&(i=t.charCodeAt(r+1),(i&64512)===56320&&(n=65536+(n-55296<<10)+(i-56320),r++)),n<128?e[s++]=n:n<2048?(e[s++]=192|n>>>6,e[s++]=128|n&63):n<65536?(e[s++]=224|n>>>12,e[s++]=128|n>>>6&63,e[s++]=128|n&63):(e[s++]=240|n>>>18,e[s++]=128|n>>>12&63,e[s++]=128|n>>>6&63,e[s++]=128|n&63);return e}function n5(t,e){if(e<65534&&(t.subarray&&rC()||!t.subarray&&iC()))return String.fromCharCode.apply(null,nC(t,e));for(var n="",i=0;i<e;i++)n+=String.fromCharCode(t[i]);return n}function i5(t){for(var e=new Uint8Array(t.length),n=0,i=e.length;n<i;n++)e[n]=t.charCodeAt(n);return e}function r5(t,e){var n,i,r,s,o=e||t.length,a=new Array(o*2);for(i=0,n=0;n<o;){if(r=t[n++],r<128){a[i++]=r;continue}if(s=FA(r),s>4){a[i++]=65533,n+=s-1;continue}for(r&=s===2?31:s===3?15:7;s>1&&n<o;)r=r<<6|t[n++]&63,s--;if(s>1){a[i++]=65533;continue}r<65536?a[i++]=r:(r-=65536,a[i++]=55296|r>>10&1023,a[i++]=56320|r&1023)}return n5(a,i)}function s5(t,e){var n;for(e=e||t.length,e>t.length&&(e=t.length),n=e-1;n>=0&&(t[n]&192)===128;)n--;return n<0||n===0?e:n+FA(t[n])>e?n:e}function o5(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}function RA(t,e,n,i){for(var r=t&65535|0,s=t>>>16&65535|0,o=0;n!==0;){o=n>2e3?2e3:n,n-=o;do r=r+e[i++]|0,s=s+r|0;while(--o);r%=65521,s%=65521}return r|s<<16|0}function a5(){for(var t,e=[],n=0;n<256;n++){t=n;for(var i=0;i<8;i++)t=t&1?3988292384^t>>>1:t>>>1;e[n]=t}return e}let oC=function(){const t=a5();return oC=()=>t,t};function Jt(t,e,n,i){var r=oC(),s=i+n;t^=-1;for(var o=i;o<s;o++)t=t>>>8^r[(t^e[o])&255];return t^-1}var vc=30,c5=12;function l5(t,e){var n,i,r,s,o,a,l,c,f,u,h,A,d,g,m,p,w,C,y,b,x,I,S,Q,v;n=t.state,i=t.next_in,Q=t.input,r=i+(t.avail_in-5),s=t.next_out,v=t.output,o=s-(e-t.avail_out),a=s+(t.avail_out-257),l=n.dmax,c=n.wsize,f=n.whave,u=n.wnext,h=n.window,A=n.hold,d=n.bits,g=n.lencode,m=n.distcode,p=(1<<n.lenbits)-1,w=(1<<n.distbits)-1;e:do{d<15&&(A+=Q[i++]<<d,d+=8,A+=Q[i++]<<d,d+=8),C=g[A&p];t:for(;;){if(y=C>>>24,A>>>=y,d-=y,y=C>>>16&255,y===0)v[s++]=C&65535;else if(y&16){b=C&65535,y&=15,y&&(d<y&&(A+=Q[i++]<<d,d+=8),b+=A&(1<<y)-1,A>>>=y,d-=y),d<15&&(A+=Q[i++]<<d,d+=8,A+=Q[i++]<<d,d+=8),C=m[A&w];n:for(;;){if(y=C>>>24,A>>>=y,d-=y,y=C>>>16&255,y&16){if(x=C&65535,y&=15,d<y&&(A+=Q[i++]<<d,d+=8,d<y&&(A+=Q[i++]<<d,d+=8)),x+=A&(1<<y)-1,x>l){t.msg="invalid distance too far back",n.mode=vc;break e}if(A>>>=y,d-=y,y=s-o,x>y){if(y=x-y,y>f&&n.sane){t.msg="invalid distance too far back",n.mode=vc;break e}if(I=0,S=h,u===0){if(I+=c-y,y<b){b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}}else if(u<y){if(I+=c+u-y,y-=u,y<b){b-=y;do v[s++]=h[I++];while(--y);if(I=0,u<b){y=u,b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}}}else if(I+=u-y,y<b){b-=y;do v[s++]=h[I++];while(--y);I=s-x,S=v}for(;b>2;)v[s++]=S[I++],v[s++]=S[I++],v[s++]=S[I++],b-=3;b&&(v[s++]=S[I++],b>1&&(v[s++]=S[I++]))}else{I=s-x;do v[s++]=v[I++],v[s++]=v[I++],v[s++]=v[I++],b-=3;while(b>2);b&&(v[s++]=v[I++],b>1&&(v[s++]=v[I++]))}}else if((y&64)===0){C=m[(C&65535)+(A&(1<<y)-1)];continue n}else{t.msg="invalid distance code",n.mode=vc;break e}break}}else if((y&64)===0){C=g[(C&65535)+(A&(1<<y)-1)];continue t}else if(y&32){n.mode=c5;break e}else{t.msg="invalid literal/length code",n.mode=vc;break e}break}}while(i<r&&s<a);b=d>>3,i-=b,d-=b<<3,A&=(1<<d)-1,t.next_in=i,t.next_out=s,t.avail_in=i<r?5+(r-i):5-(i-r),t.avail_out=s<a?257+(a-s):257-(s-a),n.hold=A,n.bits=d}var Fr=15,aC=852,cC=592,lC=0,NA=1,fC=2,f5=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],u5=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],A5=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],h5=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];function mo(t,e,n,i,r,s,o,a){var l=a.bits,c=0,f=0,u=0,h=0,A=0,d=0,g=0,m=0,p=0,w=0,C,y,b,x,I,S=null,Q=0,v,F=Dr(Fr+1),R=Dr(Fr+1),M=null,O=0,z,_,Y;for(c=0;c<=Fr;c++)F[c]=0;for(f=0;f<i;f++)F[e[n+f]]++;for(A=l,h=Fr;h>=1&&F[h]===0;h--);if(A>h&&(A=h),h===0)return r[s++]=1<<24|64<<16|0,r[s++]=1<<24|64<<16|0,a.bits=1,0;for(u=1;u<h&&F[u]===0;u++);for(A<u&&(A=u),m=1,c=1;c<=Fr;c++)if(m<<=1,m-=F[c],m<0)return-1;if(m>0&&(t===lC||h!==1))return-1;for(R[1]=0,c=1;c<Fr;c++)R[c+1]=R[c]+F[c];for(f=0;f<i;f++)e[n+f]!==0&&(o[R[e[n+f]]++]=f);if(t===lC?(S=M=o,v=19):t===NA?(S=f5,Q-=257,M=u5,O-=257,v=256):(S=A5,M=h5,v=-1),w=0,f=0,c=u,I=s,d=A,g=0,b=-1,p=1<<A,x=p-1,t===NA&&p>aC||t===fC&&p>cC)return 1;for(;;){z=c-g,o[f]<v?(_=0,Y=o[f]):o[f]>v?(_=M[O+o[f]],Y=S[Q+o[f]]):(_=96,Y=0),C=1<<c-g,y=1<<d,u=y;do y-=C,r[I+(w>>g)+y]=z<<24|_<<16|Y|0;while(y!==0);for(C=1<<c-1;w&C;)C>>=1;if(C!==0?(w&=C-1,w+=C):w=0,f++,--F[c]===0){if(c===h)break;c=e[n+o[f]]}if(c>A&&(w&x)!==b){for(g===0&&(g=A),I+=u,d=c-g,m=1<<d;d+g<h&&(m-=F[d+g],!(m<=0));)d++,m<<=1;if(p+=1<<d,t===NA&&p>aC||t===fC&&p>cC)return 1;b=w&x,r[b]=A<<24|d<<16|I-s|0}}return w!==0&&(r[I+w]=c-g<<24|64<<16|0),a.bits=A,0}var d5=0,uC=1,AC=2,hC=4,Qi=0,g5=1,p5=2,Ct=-2,dC=-3,gC=-4,m5=-5,pC=8,mC=1,wC=2,yC=3,CC=4,EC=5,IC=6,bC=7,xC=8,BC=9,vC=10,Sc=11,un=12,MA=13,SC=14,TA=15,QC=16,DC=17,kC=18,FC=19,Qc=20,Dc=21,RC=22,NC=23,MC=24,TC=25,PC=26,PA=27,LC=28,OC=29,me=30,UC=31,w5=32,y5=852,C5=592;function _C(t){return(t>>>24&255)+(t>>>8&65280)+((t&65280)<<8)+((t&255)<<24)}function E5(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=Dr(320),this.work=Dr(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function I5(t){var e;return!t||!t.state?Ct:(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=e.wrap&1),e.mode=mC,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=kr(y5),e.distcode=e.distdyn=kr(C5),e.sane=1,e.back=-1,Qi)}function b5(t){var e;return!t||!t.state?Ct:(e=t.state,e.wsize=0,e.whave=0,e.wnext=0,I5(t))}function x5(t,e){var n,i;return!t||!t.state||(i=t.state,e<0?(n=0,e=-e):(n=(e>>4)+1,e<48&&(e&=15)),e&&(e<8||e>15))?Ct:(i.window!==null&&i.wbits!==e&&(i.window=null),i.wrap=n,i.wbits=e,b5(t))}function B5(t,e){var n,i;return t?(i=new E5,t.state=i,i.window=null,n=x5(t,e),n!==Qi&&(t.state=null),n):Ct}var GC=!0,LA,OA;function v5(t){if(GC){var e;for(LA=kr(512),OA=kr(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(mo(uC,t.lens,0,288,LA,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;mo(AC,t.lens,0,32,OA,0,t.work,{bits:5}),GC=!1}t.lencode=LA,t.lenbits=9,t.distcode=OA,t.distbits=5}function zC(t,e,n,i){var r,s=t.state;return s.window===null&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=Qr(s.wsize)),i>=s.wsize?(zn(s.window,e,n-s.wsize,s.wsize,0),s.wnext=0,s.whave=s.wsize):(r=s.wsize-s.wnext,r>i&&(r=i),zn(s.window,e,n-i,r,s.wnext),i-=r,i?(zn(s.window,e,n-i,i,0),s.wnext=i,s.whave=s.wsize):(s.wnext+=r,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=r))),0}function S5(t,e){var n,i,r,s,o,a,l,c,f,u,h,A,d,g,m=0,p,w,C,y,b,x,I,S,Q=Qr(4),v,F,R=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&t.avail_in!==0)return Ct;n=t.state,n.mode===un&&(n.mode=MA),o=t.next_out,r=t.output,l=t.avail_out,s=t.next_in,i=t.input,a=t.avail_in,c=n.hold,f=n.bits,u=a,h=l,S=Qi;e:for(;;)switch(n.mode){case mC:if(n.wrap===0){n.mode=MA;break}for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.wrap&2&&c===35615){n.check=0,Q[0]=c&255,Q[1]=c>>>8&255,n.check=Jt(n.check,Q,2,0),c=0,f=0,n.mode=wC;break}if(n.flags=0,n.head&&(n.head.done=!1),!(n.wrap&1)||(((c&255)<<8)+(c>>8))%31){t.msg="incorrect header check",n.mode=me;break}if((c&15)!==pC){t.msg="unknown compression method",n.mode=me;break}if(c>>>=4,f-=4,I=(c&15)+8,n.wbits===0)n.wbits=I;else if(I>n.wbits){t.msg="invalid window size",n.mode=me;break}n.dmax=1<<I,t.adler=n.check=1,n.mode=c&512?vC:un,c=0,f=0;break;case wC:for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.flags=c,(n.flags&255)!==pC){t.msg="unknown compression method",n.mode=me;break}if(n.flags&57344){t.msg="unknown header flags set",n.mode=me;break}n.head&&(n.head.text=c>>8&1),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Jt(n.check,Q,2,0)),c=0,f=0,n.mode=yC;case yC:for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.head&&(n.head.time=c),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,Q[2]=c>>>16&255,Q[3]=c>>>24&255,n.check=Jt(n.check,Q,4,0)),c=0,f=0,n.mode=CC;case CC:for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.head&&(n.head.xflags=c&255,n.head.os=c>>8),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Jt(n.check,Q,2,0)),c=0,f=0,n.mode=EC;case EC:if(n.flags&1024){for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.length=c,n.head&&(n.head.extra_len=c),n.flags&512&&(Q[0]=c&255,Q[1]=c>>>8&255,n.check=Jt(n.check,Q,2,0)),c=0,f=0}else n.head&&(n.head.extra=null);n.mode=IC;case IC:if(n.flags&1024&&(A=n.length,A>a&&(A=a),A&&(n.head&&(I=n.head.extra_len-n.length,n.head.extra||(n.head.extra=new Array(n.head.extra_len)),zn(n.head.extra,i,s,A,I)),n.flags&512&&(n.check=Jt(n.check,i,A,s)),a-=A,s+=A,n.length-=A),n.length))break e;n.length=0,n.mode=bC;case bC:if(n.flags&2048){if(a===0)break e;A=0;do I=i[s+A++],n.head&&I&&n.length<65536&&(n.head.name+=String.fromCharCode(I));while(I&&A<a);if(n.flags&512&&(n.check=Jt(n.check,i,A,s)),a-=A,s+=A,I)break e}else n.head&&(n.head.name=null);n.length=0,n.mode=xC;case xC:if(n.flags&4096){if(a===0)break e;A=0;do I=i[s+A++],n.head&&I&&n.length<65536&&(n.head.comment+=String.fromCharCode(I));while(I&&A<a);if(n.flags&512&&(n.check=Jt(n.check,i,A,s)),a-=A,s+=A,I)break e}else n.head&&(n.head.comment=null);n.mode=BC;case BC:if(n.flags&512){for(;f<16;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c!==(n.check&65535)){t.msg="header crc mismatch",n.mode=me;break}c=0,f=0}n.head&&(n.head.hcrc=n.flags>>9&1,n.head.done=!0),t.adler=n.check=0,n.mode=un;break;case vC:for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}t.adler=n.check=_C(c),c=0,f=0,n.mode=Sc;case Sc:if(n.havedict===0)return t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,p5;t.adler=n.check=1,n.mode=un;case un:case MA:if(n.last){c>>>=f&7,f-=f&7,n.mode=PA;break}for(;f<3;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}switch(n.last=c&1,c>>>=1,f-=1,c&3){case 0:n.mode=SC;break;case 1:v5(n),n.mode=Qc;break;case 2:n.mode=DC;break;case 3:t.msg="invalid block type",n.mode=me}c>>>=2,f-=2;break;case SC:for(c>>>=f&7,f-=f&7;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if((c&65535)!==(c>>>16^65535)){t.msg="invalid stored block lengths",n.mode=me;break}n.length=c&65535,c=0,f=0,n.mode=TA;case TA:n.mode=QC;case QC:if(A=n.length,A){if(A>a&&(A=a),A>l&&(A=l),A===0)break e;zn(r,i,s,A,o),a-=A,s+=A,l-=A,o+=A,n.length-=A;break}n.mode=un;break;case DC:for(;f<14;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(n.nlen=(c&31)+257,c>>>=5,f-=5,n.ndist=(c&31)+1,c>>>=5,f-=5,n.ncode=(c&15)+4,c>>>=4,f-=4,n.nlen>286||n.ndist>30){t.msg="too many length or distance symbols",n.mode=me;break}n.have=0,n.mode=kC;case kC:for(;n.have<n.ncode;){for(;f<3;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.lens[R[n.have++]]=c&7,c>>>=3,f-=3}for(;n.have<19;)n.lens[R[n.have++]]=0;if(n.lencode=n.lendyn,n.lenbits=7,v={bits:n.lenbits},S=mo(d5,n.lens,0,19,n.lencode,0,n.work,v),n.lenbits=v.bits,S){t.msg="invalid code lengths set",n.mode=me;break}n.have=0,n.mode=FC;case FC:for(;n.have<n.nlen+n.ndist;){for(;m=n.lencode[c&(1<<n.lenbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(C<16)c>>>=p,f-=p,n.lens[n.have++]=C;else{if(C===16){for(F=p+2;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c>>>=p,f-=p,n.have===0){t.msg="invalid bit length repeat",n.mode=me;break}I=n.lens[n.have-1],A=3+(c&3),c>>>=2,f-=2}else if(C===17){for(F=p+3;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=p,f-=p,I=0,A=3+(c&7),c>>>=3,f-=3}else{for(F=p+7;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=p,f-=p,I=0,A=11+(c&127),c>>>=7,f-=7}if(n.have+A>n.nlen+n.ndist){t.msg="invalid bit length repeat",n.mode=me;break}for(;A--;)n.lens[n.have++]=I}}if(n.mode===me)break;if(n.lens[256]===0){t.msg="invalid code -- missing end-of-block",n.mode=me;break}if(n.lenbits=9,v={bits:n.lenbits},S=mo(uC,n.lens,0,n.nlen,n.lencode,0,n.work,v),n.lenbits=v.bits,S){t.msg="invalid literal/lengths set",n.mode=me;break}if(n.distbits=6,n.distcode=n.distdyn,v={bits:n.distbits},S=mo(AC,n.lens,n.nlen,n.ndist,n.distcode,0,n.work,v),n.distbits=v.bits,S){t.msg="invalid distances set",n.mode=me;break}n.mode=Qc;case Qc:n.mode=Dc;case Dc:if(a>=6&&l>=258){t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,l5(t,h),o=t.next_out,r=t.output,l=t.avail_out,s=t.next_in,i=t.input,a=t.avail_in,c=n.hold,f=n.bits,n.mode===un&&(n.back=-1);break}for(n.back=0;m=n.lencode[c&(1<<n.lenbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(w&&(w&240)===0){for(y=p,b=w,x=C;m=n.lencode[x+((c&(1<<y+b)-1)>>y)],p=m>>>24,w=m>>>16&255,C=m&65535,!(y+p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=y,f-=y,n.back+=y}if(c>>>=p,f-=p,n.back+=p,n.length=C,w===0){n.mode=PC;break}if(w&32){n.back=-1,n.mode=un;break}if(w&64){t.msg="invalid literal/length code",n.mode=me;break}n.extra=w&15,n.mode=RC;case RC:if(n.extra){for(F=n.extra;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.length+=c&(1<<n.extra)-1,c>>>=n.extra,f-=n.extra,n.back+=n.extra}n.was=n.length,n.mode=NC;case NC:for(;m=n.distcode[c&(1<<n.distbits)-1],p=m>>>24,w=m>>>16&255,C=m&65535,!(p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if((w&240)===0){for(y=p,b=w,x=C;m=n.distcode[x+((c&(1<<y+b)-1)>>y)],p=m>>>24,w=m>>>16&255,C=m&65535,!(y+p<=f);){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}c>>>=y,f-=y,n.back+=y}if(c>>>=p,f-=p,n.back+=p,w&64){t.msg="invalid distance code",n.mode=me;break}n.offset=C,n.extra=w&15,n.mode=MC;case MC:if(n.extra){for(F=n.extra;f<F;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}n.offset+=c&(1<<n.extra)-1,c>>>=n.extra,f-=n.extra,n.back+=n.extra}if(n.offset>n.dmax){t.msg="invalid distance too far back",n.mode=me;break}n.mode=TC;case TC:if(l===0)break e;if(A=h-l,n.offset>A){if(A=n.offset-A,A>n.whave&&n.sane){t.msg="invalid distance too far back",n.mode=me;break}A>n.wnext?(A-=n.wnext,d=n.wsize-A):d=n.wnext-A,A>n.length&&(A=n.length),g=n.window}else g=r,d=o-n.offset,A=n.length;A>l&&(A=l),l-=A,n.length-=A;do r[o++]=g[d++];while(--A);n.length===0&&(n.mode=Dc);break;case PC:if(l===0)break e;r[o++]=n.length,l--,n.mode=Dc;break;case PA:if(n.wrap){for(;f<32;){if(a===0)break e;a--,c|=i[s++]<<f,f+=8}if(h-=l,t.total_out+=h,n.total+=h,h&&(t.adler=n.check=n.flags?Jt(n.check,r,h,o-h):RA(n.check,r,h,o-h)),h=l,(n.flags?c:_C(c))!==n.check){t.msg="incorrect data check",n.mode=me;break}c=0,f=0}n.mode=LC;case LC:if(n.wrap&&n.flags){for(;f<32;){if(a===0)break e;a--,c+=i[s++]<<f,f+=8}if(c!==(n.total&4294967295)){t.msg="incorrect length check",n.mode=me;break}c=0,f=0}n.mode=OC;case OC:S=g5;break e;case me:S=dC;break e;case UC:return gC;case w5:default:return Ct}return t.next_out=o,t.avail_out=l,t.next_in=s,t.avail_in=a,n.hold=c,n.bits=f,(n.wsize||h!==t.avail_out&&n.mode<me&&(n.mode<PA||e!==hC))&&zC(t,t.output,t.next_out,h-t.avail_out),u-=t.avail_in,h-=t.avail_out,t.total_in+=u,t.total_out+=h,n.total+=h,n.wrap&&h&&(t.adler=n.check=n.flags?Jt(n.check,r,h,t.next_out-h):RA(n.check,r,h,t.next_out-h)),t.data_type=n.bits+(n.last?64:0)+(n.mode===un?128:0)+(n.mode===Qc||n.mode===TA?256:0),(u===0&&h===0||e===hC)&&S===Qi&&(S=m5),S}function Q5(t){if(!t||!t.state)return Ct;var e=t.state;return e.window&&(e.window=null),t.state=null,Qi}function D5(t,e){var n;return!t||!t.state||(n=t.state,(n.wrap&2)===0)?Ct:(n.head=e,e.done=!1,Qi)}function HC(t,e){var n=e.length,i,r,s;return!t||!t.state||(i=t.state,i.wrap!==0&&i.mode!==Sc)?Ct:i.mode===Sc&&(r=1,r=RA(r,e,n,0),r!==i.check)?dC:(s=zC(t,e,n,n),s?(i.mode=UC,gC):(i.havedict=1,Qi))}const UA={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"};function k5(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}var _A=Object.prototype.toString;class kc{constructor(e){if(!(this instanceof kc))return new kc(e);this.options=t5({chunkSize:16384,windowBits:0,to:""},e||{});var n=this.options;n.raw&&n.windowBits>=0&&n.windowBits<16&&(n.windowBits=-n.windowBits,n.windowBits===0&&(n.windowBits=-15)),n.windowBits>=0&&n.windowBits<16&&!(e&&e.windowBits)&&(n.windowBits+=32),n.windowBits>15&&n.windowBits<48&&(n.windowBits&15)===0&&(n.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new k5,this.strm.avail_out=0;var i=B5(this.strm,n.windowBits);if(i!==Si)throw new Error(UA[i]);if(this.header=new o5,D5(this.strm,this.header),n.dictionary&&(typeof n.dictionary=="string"?n.dictionary=sC(n.dictionary):_A.call(n.dictionary)==="[object ArrayBuffer]"&&(n.dictionary=new Uint8Array(n.dictionary)),n.raw&&(i=HC(this.strm,n.dictionary),i!==Si)))throw new Error(UA[i])}push(e,n){var i=this.strm,r=this.options.chunkSize,s=this.options.dictionary,o,a,l,c,f,u,h=!1;if(this.ended)return!1;a=n===~~n?n:n===!0?xc:eC,typeof e=="string"?i.input=i5(e):_A.call(e)==="[object ArrayBuffer]"?i.input=new Uint8Array(e):i.input=e,i.next_in=0,i.avail_in=i.input.length;do{if(i.avail_out===0&&(i.output=Qr(r),i.next_out=0,i.avail_out=r),o=S5(i,eC),o===ZT&&s&&(typeof s=="string"?u=sC(s):_A.call(s)==="[object ArrayBuffer]"?u=new Uint8Array(s):u=s,o=HC(this.strm,u)),o===$T&&h===!0&&(o=Si,h=!1),o!==Bc&&o!==Si)return this.onEnd(o),this.ended=!0,!1;i.next_out&&(i.avail_out===0||o===Bc||i.avail_in===0&&(a===xc||a===tC))&&(this.options.to==="string"?(l=s5(i.output,i.next_out),c=i.next_out-l,f=r5(i.output,l),i.next_out=c,i.avail_out=r-c,c&&zn(i.output,i.output,l,c,0),this.onData(f)):this.onData(nC(i.output,i.next_out))),i.avail_in===0&&i.avail_out===0&&(h=!0)}while((i.avail_in>0||i.avail_out===0)&&o!==Bc);return o===Bc&&(a=xc),a===xc?(o=Q5(this.strm),this.onEnd(o),this.ended=!0,o===Si):(a===tC&&(this.onEnd(Si),i.avail_out=0),!0)}onData(e){this.chunks.push(e)}onEnd(e){e===Si&&(this.options.to==="string"?this.result=this.chunks.join(""):this.result=kA(this.chunks)),this.chunks=[],this.err=e,this.msg=this.strm.msg}}function F5(t,e){var n=new kc(e);if(n.push(t,!0),n.err)throw n.msg||UA[n.err];return n.result}var R5=F5,Di={};Di.d=(t,e)=>{for(var n in e)Di.o(e,n)&&!Di.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},Di.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),Di.r=t=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var GA={};Di.r(GA),Di.d(GA,{ChunkSliceResult:()=>Nr,DecompressResult:()=>Mr,__wbg_Error_52673b7de5a0ca89:()=>G5,__wbg___wbindgen_throw_dd24417ed36fc46e:()=>z5,__wbg_set_wasm:()=>YC,decompress_all:()=>jC,decompress_block:()=>_5,decompress_chunk_slice:()=>WC});const N5="data:application/wasm;base64,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fGooAgAiAkF4cSIAaiEDAkACQCACQQFxDQAgAkECcUUNASABKAIAIgIgAGohAAJAIAEgAmsiAUEAKALAoEBHDQAgAygCBEEDcUEDRw0BQQAgADYCuKBAIAMgAygCBEF+cTYCBCABIABBAXI2AgQgAyAANgIADwsgASACEBALAkACQAJAAkACQAJAIAMoAgQiAkECcQ0AIANBACgCxKBARg0CIANBACgCwKBARg0DIAMgAkF4cSICEBAgASACIABqIgBBAXI2AgQgASAAaiAANgIAIAFBACgCwKBARw0BQQAgADYCuKBADwsgAyACQX5xNgIEIAEgAEEBcjYCBCABIABqIAA2AgALIABBgAJJDQIgASAAEBFBACEBQQBBACgC2KBAQX9qIgA2AtigQCAADQQCQEEAKAKgnkAiAEUNAEEAIQEDQCABQQFqIQEgACgCCCIADQALC0EAIAFB/x8gAUH/H0sbNgLYoEAPC0EAIAE2AsSgQEEAQQAoArygQCAAaiIANgK8oEAgASAAQQFyNgIEAkAgAUEAKALAoEBHDQBBAEEANgK4oEBBAEEANgLAoEALIABBACgC0KBAIgRNDQNBACgCxKBAIgBFDQNBACECQQAoArygQCIFQSlJDQJBmJ7AACEBA0ACQCABKAIAIgMgAEsNACAAIAMgASgCBGpJDQQLIAEoAgghAQwACwtBACABNgLAoEBBAEEAKAK4oEAgAGoiADYCuKBAIAEgAEEBcjYCBCABIABqIAA2AgAPCwJAAkBBACgCsKBAIgNBASAAQQN2dCICcQ0AQQAgAyACcjYCsKBAIABB+AFxQaiewABqIgAhAwwBCyAAQfgBcSIDQaiewABqIQAgA0GwnsAAaigCACEDCyAAIAE2AgggAyABNgIMIAEgADYCDCABIAM2AggPCwJAQQAoAqCeQCIBRQ0AQQAhAgNAIAJBAWohAiABKAIIIgENAAsLQQAgAkH/HyACQf8fSxs2AtigQCAFIARNDQBBAEF/NgLQoEALC44FAQd/AkACQCAAKAIIIgNBgICAwAFxRQ0AAkACQAJAAkACQCADQYCAgIABcUUNACAALwEOIgQNAUEAIQIMAgsCQCACQRBJDQAgASACEAYhBQwECwJAIAINAEEAIQJBACEFDAQLIAJBA3EhBgJAAkAgAkEETw0AQQAhBUEAIQcMAQsg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IgJBAWoiAzYCACADRQ0BIAAoAgBBf0YNAiAAKAIQIQAgASACNgIAIAAPCxBdCwALEF8AC1ABAX8CQCACIAAoAgAgACgCCCIDa00NACAAIAMgAkEBQQEQFyAAKAIIIQMLAkAgAkUNACAAKAIEIANqIAEgAvwKAAALIAAgAyACajYCCEEAC0wBAX8CQCAAKAIAIgBBDGooAgAiAUUNACAAQRBqKAIAIAFBARBXCwJAIABBf0YNACAAIAAoAgRBf2oiATYCBCABDQAgAEEcQQQQVwsLRQACQAJAIAFBCUkNACABIAAQDyEBDAELIAAQAiEBCwJAIAFFDQAgAUF8ai0AAEEDcUUNACAARQ0AIAFBACAA/AsACyABC1IBAn9BACEBQQBBACgC6KBAIgJBAWo2AuigQAJAIAJBAEgNAEEBIQFBAC0A5KBADQBBACAAOgDkoEBBAEEAKALgoEBBAWo2AuCgQEECIQELIAELRwECfyABKAIEIQIgASgCACEDEGsCQEEIQQQQWiIBDQBBBEEIEGEACyABIAI2AgQgASADNgIAIABB8JfAADYCBCAAIAE2AgALOAACQAJAIAAgAksNACABIAJLDQEgACABTQ0BIAAgASADECsACyAAIAIgAxAsAAsgASACIAMQLQALQQEBfyMAQSBrIgMkACADQQA2AhAgA0EBNgIEIANCBDcCCCADIAE2AhwgAyAANgIYIAMgA0EYajYCACADIAIQQQALOQACQCACQYCAxABGDQAgACACIAEoAhARBQBFDQBBAQ8LAkAgAw0AQQAPCyAAIAMgBCABKAIMEQcACzYBAX8jAEEgayIBJAAgAUEANgIYIAFBATYCDCABQaSZwAA2AgggAUIENwIQIAFBCGogABBBAAsnAAJAIAAgARBPRQ0AAkAgAEUNABBrIAAgARBaIgFFDQELIAEPCwALLAIBfwF+IwBBEGsiASQAIAApAgAhAiABIAA2AgwgASACNwIEIAFBBGoQZgALLQEBfyMAQRBrIgEkACABIAApAgA3AgggAUEIakH0lsAAIAAoAghBAUEAECEACyoBAX8jAEEQayIDJAAgAyACNgIMIAMgATYCCCADIAA2AgQgA0EEahBnAAsqAQF/IwBBEGsiAiQAIAJBATsBDCACIAE2AgggAiAANgIEIAJBBGoQPgALKQEBfwJAIAAoAgAiAUGAgICAeHJBgICAgHhGDQAgACgCBCABQQEQVwsLHgEBfwJAIAAoAgAiAkUNACABIAIgACgCBBBTDwsACyAAAkAgASgCAEUNACAAQfCXwAA2AgQgACABNgIADwsACxsBAX8QayAAQQRqQQQQWiIBIAA2AgAgAUEEagsjAQF/AkBBjIvAABAwIgANAEHAisAAQTpB/IrAABBAAAsgAAsXAAJAIAFBCUkNACABIAAQDw8LIAAQAgsfAAJAIABBgICAgHhyQYCAgIB4Rg0AIAEgAEEBEFcLCxwBAX8CQCAAKAIAIgFFDQAgACgCBCABQQEQVwsLFgACQCAARQ0AIAAgARBhAAsgAhA8AAsVACAAQXxqIgAgACgCAEEEakEEEFcLGgEBfyABIABBACgC3KBAIgJBAyACGxEEAAALHQAgAEEIakEAKQKYlkA3AgAgAEEAKQKQlkA3AgALHQAgAEEIakEAKQKolkA3AgAgAEEAKQKglkA3AgALFQAgAWlBAUYgAEGAgICAeCABa01xCxIAAkAgAUUNACAAIAEgAhBXCwsSACAAIAEgAiADIARBACAFEAMLFQACQCAARQ0AIAAgACgCqFoRAgALCxYAIAAoAgAgASACIAAoAgQoAgwRBwALDQAgACABIAIgAxAHDwsQACABIAAoAgAgACgCBBBTCxMAIABB8JfAADYCBCAAIAE2AgALCwAgACABIAIQLw8LCgAgACABEGoaAAsLACAAIwBqJAAjAAsJACAAIAEQRw8LCQAgACABEDYPCwkAIAAgARBMDwsMAEG4iMAAQRsQXgALCQAgACABEGMACw0AQdOIwABBzwAQXgALDAAgACABKQIANwMACwkAIAEgABBcAAsNACABQdicwABBGBAKCwgAIAAgARAACwgAIAAgARABCwkAIAAoAgAQUgsHACAAECMACwcAIAAQPwALCQAgAEEANgIACwUAQQAPCwUAEGwACwMADwsDAAALC4YdAgBBgIDAAAvwHC9ob21lL2NkaWVzaC8uY2FyZ28vcmVnaXN0cnkvc3JjL2luZGV4LmNyYXRlcy5pby0xOTQ5Y2Y4YzZiNWI1NTdmL3dhc20tYmluZGdlbi0wLjIuMTA2L3NyYy9jb252ZXJ0L3NsaWNlcy5ycwAvaG9tZS9jZGllc2gvLmNhcmdvL3JlZ2lzdHJ5L3NyYy9pbmRleC5jcmF0ZXMuaW8tMTk0OWNmOGM2YjViNTU3Zi93YXNtLWJpbmRnZW4tMC4yLjEwNi9zcmMvZXh0ZXJucmVmLnJzAC9ob21lL2NkaWVzaC8ucnVzdHVwL3Rvb2xjaGFpbnMvc3RhYmxlLXg4Nl82NC11bmtub3duLWxpbnV4LWdudS9saWIvcnVzdGxpYi9zcmMvcnVzdC9saWJyYXJ5L2FsbG9jL3NyYy9zbGljZS5ycwAvaG9tZS9jZGllc2gvLnJ1c3R1cC90b29sY2hhaW5zL3N0YWJsZS14ODZfNjQtdW5rbm93bi1saW51eC1nbnUvbGliL3J1c3RsaWIvc3JjL3J1c3QvbGlicmFyeS9hbGxvYy9zcmMvcmF3X3ZlYy9tb2QucnMAL3J1c3RjL2VkNjFlN2Q3ZTI0MjQ5NGZiNzA1N2YyNjU3MzAwZDllNzdiYjRmY2IvbGlicmFyeS9hbGxvYy9zcmMvcmF3X3ZlYy9tb2QucnMAL3J1c3QvZGVwcy9kbG1hbGxvYy0wLjIuMTAvc3JjL2RsbWFsbG9jLnJzAGxpYnJhcnkvc3RkL3NyYy9hbGxvYy5ycwAvaG9tZS9jZGllc2gvLmNhcmdvL3JlZ2lzdHJ5L3NyYy9pbmRleC5jcmF0ZXMuaW8tMTk0OWNmOGM2YjViNTU3Zi9saWJkZWZsYXRlci0xLjI1LjAvc3JjL2xpYi5ycwBFARAAdQAAACoCAAARAAAA1QAQAG8AAAC9AQAAHQAAAGF0dGVtcHRlZCB0byB0YWtlIG93bmVyc2hpcCBvZiBSdXN0IHZhbHVlIHdoaWxlIGl0IHdhcyBib3Jyb3dlZAClAhAACgAAAF0AAAAWAAAAaW52YWxpZCBiZ3pmIGhlYWRlcgClAhAACgAAACkAAAAJAAAApQIQAAoAAAAqAAAACQAAAKUCEAAKAAAAKwAAAAkAAAClAhAACgAAACwAAAAJAAAApQIQAAoAAAAwAAAAFgAAAGRlY29tcHJlc3Npb24gZmFpbGVkpQIQAAoAAAAvAAAAHgAAAKUCEAAKAAAApQAAACQAAAClAhAACgAAAKYAAAAkAAAApQIQAAoAAACnAAAAFgAAAKUCEAAKAAAAxQAAABQAAAClAhAACgAAAMYAAAAUAAAApQIQAAoAAADbAAAAGAAAAKUCEAAKAAAA3AAAABgAAAClAhAACgAAANMAAAAxAAAAAAAQAGwAAAAjAQAADgAAAG51bGwgcG9pbnRlciBwYXNzZWQgdG8gcnVzdHJlY3Vyc2l2ZSB1c2Ugb2YgYW4gb2JqZWN0IGRldGVjdGVkIHdoaWNoIHdvdWxkIGxlYWQgdG8gdW5zYWZlIGFsaWFzaW5nIGluIHJ1c3QAAG0AEABnAAAAfwAAABEAAABtABAAZwAAAIwAAAARAAAAbGliZGVmbGF0ZV9kZWZsYXRlX2RlY29tcHJlc3MgcmV0dXJuZWQgYW4gdW5rbm93biBlcnJvciB0eXBlOiB0aGlzIGlzIGFuIGludGVybmFsIGJ1ZyB0aGF0ICoqbXVzdCoqIGJlIGZpeGVkUAIQAF8AAAAMAQAAFQAAAGxpYmRlZmxhdGVfYWxsb2NfZGVjb21wcmVzc29yIHJldHVybmVkIE5VTEw6IG91dCBvZiBtZW1vcnkAAFACEABfAAAAnAAAABEAAAAMAAAAAQAAAAIAAAAAAAAAAAAAABAREgAIBwkGCgULBAwDDQIOAQ8AAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAAAAAAAEAAAACAAAAAwAAAAQAAQAFAAEABwACAAkAAgANAAMAEQADABkABAAhAAQAMQAFAEEABQBhAAYAgQAGAMEABwABAQcAgQEIAAECCAABAwkAAQQJAAEGCgABCAoAAQwLAAEQCwABGAwAASAMAAEwDQABQA0AAWANAAFgDQABYAAAAIAAAAGAAAACgAAAA4AAAASAAAAFgAAABoAAAAeAAAAIgAAACYAAAAqAAAALgAAADIAAAA2AAAAOgAAAD4AAABCAAAARgAAAEoAAABOAAAAUgAAAFYAAABaAAAAXgAAAGIAAABmAAAAagAAAG4AAAByAAAAdgAAAHoAAAB+AAAAggAAAIYAAACKAAAAjgAAAJIAAACWAAAAmgAAAJ4AAACiAAAApgAAAKoAAACuAAAAsgAAALYAAAC6AAAAvgAAAMIAAADGAAAAygAAAM4AAADSAAAA1gAAANoAAADeAAAA4gAAAOYAAADqAAAA7gAAAPIAAAD2AAAA+gAAAP4AAAECAAABBgAAAQoAAAEOAAABEgAAARYAAAEaAAABHgAAASIAAAEmAAABKgAAAS4AAAEyAAABNgAAAToAAAE+AAABQgAAAUYAAAFKAAABTgAAAVIAAAFWAAABWgAAAV4AAAFiAAABZgAAAWoAAAFuAAABcgAAAXYAAAF6AAABfgAAAYIAAAGGAAABigAAAY4AAAGSAAABlgAAAZoAAAGeAAABogAAAaYAAAGqAAABrgAAAbIAAAG2AAABugAAAb4AAAHCAAABxgAAAcoAAAHOAAAB0gAAAdYAAAHaAAAB3gAAAeIAAAHmAAAB6gAAAe4AAAHyAAAB9gAAAfoAAAH+AAACAgAAAgYAAAIKAAACDgAAAhIAAAIWAAACGgAAAh4AAAIiAAACJgAAAioAAAIuAAACMgAAAjYAAAI6AAACPgAAAkIAAAJGAAACSgAAAk4AAAJSAAACVgAAAloAAAJeAAACYgAAAmYAAAJqAAACbgAAAnIAAAJ2AAACegAAAn4AAAKCAAAChgAAAooAAAKOAAACkgAAApYAAAKaAAACngAAAqIAAAKmAAACqgAAAq4AAAKyAAACtgAAAroAAAK+AAACwgAAAsYAAALKAAACzgAAAtIAAALWAAAC2gAAAt4AAALiAAAC5gAAAuoAAALuAAAC8gAAAvYAAAL6AAAC/gAAAwIAAAMGAAADCgAAAw4AAAMSAAADFgAAAxoAAAMeAAADIgAAAyYAAAMqAAADLgAAAzIAAAM2AAADOgAAAz4AAANCAAADRgAAA0oAAANOAAADUgAAA1YAAANaAAADXgAAA2IAAANmAAADagAAA24AAANyAAADdgAAA3oAAAN+AAADggAAA4YAAAOKAAADjgAAA5IAAAOWAAADmgAAA54AAAOiAAADpgAAA6oAAAOuAAADsgAAA7YAAAO6AAADvgAAA8IAAAPGAAADygAAA84AAAPSAAAD1gAAA9oAAAPeAAAD4gAAA+YAAAPqAAAD7gAAA/IAAAP2AAAD+gAAA/4AAoAAAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgABAAsAAQANAAEADwABABEAAgATAAIAFwACABsAAgAfAAMAIwADACsAAwAzAAMAOwAEAEMABABTAAQAYwAEAHMABQCDAAUAowAFAMMABQDjAAAAAgEAAAIBAAACAW1dy9YsUOtjeEGmV3Ebi7nyfVy2Bv6hO/Xnf5Lkw1AabWVtb3J5IGFsbG9jYXRpb24gb2YgIGJ5dGVzIGZhaWxlZAAAMAsQABUAAABFCxAADQAAADcCEAAYAAAAZAEAAAkAAAAAAAAACAAAAAQAAAAFAAAABgAAAAcAAAAIAAAACQAAAAwAAAAEAAAACgAAAAsAAAAMAAAAAAAAAAgAAAAEAAAADQAAAA4AAAAPAAAAEAAAABEAAAAQAAAABAAAABIAAAATAAAAFAAAAAgAAAC7ARAAUAAAACoCAAARAAAAAAAAAAgAAAAEAAAAFQAAAGFzc2VydGlvbiBmYWlsZWQ6IHBzaXplID49IHNpemUgKyBtaW5fb3ZlcmhlYWQAAAwCEAAqAAAAsQQAAAkAAABhc3NlcnRpb24gZmFpbGVkOiBwc2l6ZSA8PSBzaXplICsgbWF4X292ZXJoZWFkAAAMAhAAKgAAALcEAAANAAAACQAAAAwAAAAEAAAAFgAAAGNhcGFjaXR5IG92ZXJmbG93AAAAkAwQABEAAAAwMDAxMDIwMzA0MDUwNjA3MDgwOTEwMTExMjEzMTQxNTE2MTcxODE5MjAyMTIyMjMyNDI1MjYyNzI4MjkzMDMxMzIzMzM0MzUzNjM3MzgzOTQwNDE0MjQzNDQ0NTQ2NDc0ODQ5NTA1MTUyNTM1NDU1NTY1NzU4NTk2MDYxNjI2MzY0NjU2NjY3Njg2OTcwNzE3MjczNzQ3NTc2Nzc3ODc5ODA4MTgyODM4NDg1ODY4Nzg4ODk5MDkxOTI5Mzk0OTU5Njk3OTg5OQEAAAAAAAAAcmFuZ2Ugc3RhcnQgaW5kZXggIG91dCBvZiByYW5nZSBmb3Igc2xpY2Ugb2YgbGVuZ3RoIHwNEAASAAAAjg0QACIAAAByYW5nZSBlbmQgaW5kZXggwA0QABAAAACODRAAIgAAAHNsaWNlIGluZGV4IHN0YXJ0cyBhdCAgYnV0IGVuZHMgYXQgAOANEAAWAAAA9g0QAA0AAABpbmRleCBvdXQgb2YgYm91bmRzOiB0aGUgbGVuIGlzICBidXQgdGhlIGluZGV4IGlzIAAAFA4QACAAAAA0DhAAEgAAAFJlZkNlbGwgYWxyZWFkeSBib3Jyb3dlZABB8JzAAAsEBAAAAAApBG5hbWUBIgFZH19fd2JpbmRnZW5fYWRkX3RvX3N0YWNrX3BvaW50ZXIAPAlwcm9kdWNlcnMBDHByb2Nlc3NlZC1ieQIGd2FscnVzBjAuMjQuNAx3YXNtLWJpbmRnZW4HMC4yLjEwNg==";let j;function YC(t){j=t}function M5(t){wo===An.length&&An.push(An.length+1);const e=wo;return wo=An[e],An[e]=t,e}function T5(t){t<132||(An[t]=wo,wo=t)}function VC(t,e){return t=t>>>0,P5().subarray(t/4,t/4+e)}function zA(t,e){return t=t>>>0,HA().subarray(t/1,t/1+e)}let Rr=null;function Oe(){return(Rr===null||Rr.buffer.detached===!0||Rr.buffer.detached===void 0&&Rr.buffer!==j.memory.buffer)&&(Rr=new DataView(j.memory.buffer)),Rr}function JC(t,e){return t=t>>>0,U5(t,e)}let Fc=null;function P5(){return(Fc===null||Fc.byteLength===0)&&(Fc=new Uint32Array(j.memory.buffer)),Fc}let Rc=null;function HA(){return(Rc===null||Rc.byteLength===0)&&(Rc=new Uint8Array(j.memory.buffer)),Rc}function L5(t){return An[t]}let An=new Array(128).fill(void 0);An.push(void 0,null,!0,!1);let wo=An.length;function YA(t,e){const n=e(t.length*1,1)>>>0;return HA().set(t,n/1),Mc=t.length,n}function VA(t){const e=L5(t);return T5(t),e}let Nc=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0});Nc.decode();const O5=2146435072;let JA=0;function U5(t,e){return JA+=e,JA>=O5&&(Nc=new TextDecoder("utf-8",{ignoreBOM:!0,fatal:!0}),Nc.decode(),JA=e),Nc.decode(HA().subarray(t,t+e))}let Mc=0;const qC=typeof FinalizationRegistry>"u"?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry(t=>j.__wbg_chunksliceresult_free(t>>>0,1)),KC=typeof FinalizationRegistry>"u"?{register:()=>{},unregister:()=>{}}:new FinalizationRegistry(t=>j.__wbg_decompressresult_free(t>>>0,1));class Nr{static __wrap(e){e=e>>>0;const n=Object.create(Nr.prototype);return n.__wbg_ptr=e,qC.register(n,n.__wbg_ptr,n),n}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,qC.unregister(this),e}free(){const e=this.__destroy_into_raw();j.__wbg_chunksliceresult_free(e,0)}get cpositions(){try{const r=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_cpositions(r,this.__wbg_ptr);var e=Oe().getInt32(r+0,!0),n=Oe().getInt32(r+4,!0),i=VC(e,n).slice();return j.__wbindgen_export(e,n*4,4),i}finally{j.__wbindgen_add_to_stack_pointer(16)}}get dpositions(){try{const r=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_dpositions(r,this.__wbg_ptr);var e=Oe().getInt32(r+0,!0),n=Oe().getInt32(r+4,!0),i=VC(e,n).slice();return j.__wbindgen_export(e,n*4,4),i}finally{j.__wbindgen_add_to_stack_pointer(16)}}get buffer(){try{const r=j.__wbindgen_add_to_stack_pointer(-16);j.chunksliceresult_buffer(r,this.__wbg_ptr);var e=Oe().getInt32(r+0,!0),n=Oe().getInt32(r+4,!0),i=zA(e,n).slice();return j.__wbindgen_export(e,n*1,1),i}finally{j.__wbindgen_add_to_stack_pointer(16)}}}Symbol.dispose&&(Nr.prototype[Symbol.dispose]=Nr.prototype.free);class Mr{static __wrap(e){e=e>>>0;const n=Object.create(Mr.prototype);return n.__wbg_ptr=e,KC.register(n,n.__wbg_ptr,n),n}__destroy_into_raw(){const e=this.__wbg_ptr;return this.__wbg_ptr=0,KC.unregister(this),e}free(){const e=this.__destroy_into_raw();j.__wbg_decompressresult_free(e,0)}get bytes_read(){return j.decompressresult_bytes_read(this.__wbg_ptr)>>>0}get data(){try{const r=j.__wbindgen_add_to_stack_pointer(-16);j.decompressresult_data(r,this.__wbg_ptr);var e=Oe().getInt32(r+0,!0),n=Oe().getInt32(r+4,!0),i=zA(e,n).slice();return j.__wbindgen_export(e,n*1,1),i}finally{j.__wbindgen_add_to_stack_pointer(16)}}}Symbol.dispose&&(Mr.prototype[Symbol.dispose]=Mr.prototype.free);function jC(t){try{const o=j.__wbindgen_add_to_stack_pointer(-16),a=YA(t,j.__wbindgen_export2),l=Mc;j.decompress_all(o,a,l);var e=Oe().getInt32(o+0,!0),n=Oe().getInt32(o+4,!0),i=Oe().getInt32(o+8,!0),r=Oe().getInt32(o+12,!0);if(r)throw VA(i);var s=zA(e,n).slice();return j.__wbindgen_export(e,n*1,1),s}finally{j.__wbindgen_add_to_stack_pointer(16)}}function _5(t){try{const r=j.__wbindgen_add_to_stack_pointer(-16),s=YA(t,j.__wbindgen_export2),o=Mc;j.decompress_block(r,s,o);var e=Oe().getInt32(r+0,!0),n=Oe().getInt32(r+4,!0),i=Oe().getInt32(r+8,!0);if(i)throw VA(n);return Mr.__wrap(e)}finally{j.__wbindgen_add_to_stack_pointer(16)}}function WC(t,e,n,i,r){try{const l=j.__wbindgen_add_to_stack_pointer(-16),c=YA(t,j.__wbindgen_export2),f=Mc;j.decompress_chunk_slice(l,c,f,e,n,i,r);var s=Oe().getInt32(l+0,!0),o=Oe().getInt32(l+4,!0),a=Oe().getInt32(l+8,!0);if(a)throw VA(o);return Nr.__wrap(s)}finally{j.__wbindgen_add_to_stack_pointer(16)}}function G5(t,e){const n=Error(JC(t,e));return M5(n)}function z5(t,e){throw new Error(JC(t,e))}let yo=null,qA=null;async function XC(){return yo||(qA||(qA=(async()=>{const e=await(await fetch(N5)).arrayBuffer(),{instance:n}=await WebAssembly.instantiate(e,{"./bgzf_wasm_bg.js":GA});return yo=n.exports,YC(yo),yo})()),qA)}async function H5(t){return await XC(),jC(t)}async function Y5(t,e,n,i,r){await XC();const s=WC(t,e,n,i,r),o=s.buffer,a=[...s.cpositions],l=[...s.dpositions];return s.free(),{buffer:o,cpositions:a,dpositions:l}}function V5(t){return t.length>=2&&t[0]===31&&t[1]===139}async function J5(t){if(typeof DecompressionStream<"u"){const e=new DecompressionStream("gzip"),n=e.writable.getWriter(),i=n.write(t).then(()=>n.close()),r=[],s=e.readable.getReader();for(;;){const{done:c,value:f}=await s.read();if(c)break;r.push(f)}await i;const o=r.reduce((c,f)=>c+f.length,0),a=new Uint8Array(o);let l=0;for(const c of r)a.set(c,l),l+=c.length;return a}else return R5(t,void 0)}async function Tr(t){try{return await H5(t)}catch(e){if(/invalid bgzf header/.exec(`${e}`)){if(V5(t))return J5(t);throw new Error("problem decompressing block: not a valid bgzf or gzip block")}throw/invalid gzip header/.exec(`${e}`)?new Error("problem decompressing block: incorrect gzip header check"):e}}async function ZC(t,e,n){try{const{minv:i,maxv:r}=e,s=await Y5(t,i.blockPosition,i.dataPosition,r.blockPosition,r.dataPosition);return{buffer:s.buffer,cpositions:s.cpositions,dpositions:s.dpositions}}catch(i){throw/invalid gzip header/.exec(`${i}`)?new Error("problem decompressing block: incorrect gzip header check"):i}}let KA=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];typeof Int32Array<"u"&&(KA=new Int32Array(KA));const q5=(t,e)=>{let n=-1;for(let i=0;i<t.length;i++)n=KA[(n^t[i])&255]^n>>>8;return n^-1},K5=21582659,j5=38359875;function W5(t,e){return t*2**e}function $C(t,e){return Math.floor(t/2**e)}let Tc=class extends Zy{constructor(){super(...arguments),this.maxBinNumber=0,this.depth=0,this.minShift=0}async lineCount(e,n){return(await this.parse(n)).indices(e)?.stats?.lineCount||0}async indexCov(){return[]}parseAuxData(e,n){const i=new DataView(e.buffer),r=i.getUint32(n,!0),s=r&65536?"zero-based-half-open":"1-based-closed",o={0:"generic",1:"SAM",2:"VCF"}[r&15];if(!o)throw new Error(`invalid Tabix preset format flags ${r}`);const a={ref:i.getInt32(n+4,!0),start:i.getInt32(n+8,!0),end:i.getInt32(n+12,!0)},l=i.getInt32(n+16,!0),c=l?String.fromCharCode(l):"",f=i.getInt32(n+20,!0),u=i.getInt32(n+24,!0);return{columnNumbers:a,coordinateType:s,metaValue:l,metaChar:c,skipLines:f,format:o,formatFlags:r,...HT(e.subarray(n+28,n+28+u),this.renameRefSeq)}}async _parse(e){const n=await this.filehandle.readFile(e),i=await Tr(n),r=new DataView(i.buffer);let s;const o=r.getUint32(0,!0);if(o===K5)s=1;else if(o===j5)s=2;else throw new Error(`Not a CSI file ${o}`);this.minShift=r.getInt32(4,!0),this.depth=r.getInt32(8,!0),this.maxBinNumber=((1<<(this.depth+1)*3)-1)/7;const a=this.maxBinNumber,l=r.getInt32(12,!0),c=l>=30?this.parseAuxData(i,16):void 0,f=r.getInt32(16+l,!0);let u=16+l+4,h;const A=[];for(let m=0;m<f;m++){A.push(u);const p=r.getInt32(u,!0);u+=4;for(let w=0;w<p;w++){const C=r.getUint32(u,!0);if(u+=4,C>this.maxBinNumber)u+=44;else{u+=8;const y=r.getInt32(u,!0);u+=4;for(let b=0;b<y;b+=1){const x=Gn(i,u);u+=8,u+=8,h=ho(h,x)}}}}const d=new Ao({maxSize:5});function g(m){let p=A[m];if(p===void 0)return;const w=r.getInt32(p,!0);p+=4;const C={};let y;for(let b=0;b<w;b++){const x=r.getUint32(p,!0);if(p+=4,x>a)y=Xy(i,p+28),p+=44;else{h=ho(h,Gn(i,p)),p+=8;const I=r.getInt32(p,!0);p+=4;const S=new Array(I);for(let Q=0;Q<I;Q+=1){const v=Gn(i,p);p+=8;const F=Gn(i,p);p+=8,S[Q]=new jy(v,F,x)}C[x]=S}}return{binIndex:C,stats:y}}return{csiVersion:s,firstDataLine:h,indices:m=>{if(!d.has(m)){const p=g(m);return p&&d.set(m,p),p}return d.get(m)},refCount:f,csi:!0,maxBlockSize:65536,...c}}async blocksForRange(e,n,i,r={}){n<0&&(n=0);const o=(await this.parse(r)).indices(e);if(!o)return[];const a=this.reg2bins(n,i);if(a.length===0)return[];const l=[],{binIndex:c}=o;for(const[f,u]of a)for(let h=f;h<=u;h++){const A=c[h];if(A)for(let d=0,g=A.length;d<g;d++)l.push(A[d])}return DA(l,new $y(0,0))}reg2bins(e,n){e-=1,e<1&&(e=1),n>2**50&&(n=2**34),n-=1;let i=0,r=0,s=this.minShift+this.depth*3;const o=[];for(;i<=this.depth;s-=3,r+=W5(1,i*3),i+=1){const a=r+$C(e,s),l=r+$C(n,s);if(l-a+o.length>this.maxBinNumber)throw new Error(`query ${e}-${n} is too large for current binning scheme (shift ${this.minShift}, depth ${this.depth}), try a smaller query or a coarser index binning scheme`);o.push([a,l])}return o}async parse(e={}){return this.setupP||(this.setupP=this._parse(e).catch(n=>{throw this.setupP=void 0,n})),this.setupP}async hasRefSeq(e,n={}){return!!(await this.parse(n)).indices(e)?.binIndex}};class X5{read(){throw new Error("never called")}stat(){throw new Error("never called")}readFile(){throw new Error("never called")}close(){throw new Error("never called")}}const Z5=3,$5=4,Et={BAM_FPAIRED:1,BAM_FPROPER_PAIR:2,BAM_FUNMAP:4,BAM_FMUNMAP:8,BAM_FREVERSE:16,BAM_FMREVERSE:32,BAM_FREAD1:64,BAM_FREAD2:128,BAM_FSECONDARY:256,BAM_FQCFAIL:512,BAM_FDUP:1024,BAM_FSUPPLEMENTARY:2048},Co="=ACMGRSVTWYHKDBN".split(""),e9=[77,73,68,78,83,72,80,61,88,63,63,63,63,63,63,63],eE=461;class tE{constructor(e){this.bytes=e.bytes,this.fileOffset=e.fileOffset,this._dataView=new DataView(this.bytes.byteArray.buffer)}get byteArray(){return this.bytes.byteArray}get flags(){return this._cachedFlags===void 0&&(this._cachedFlags=(this._dataView.getInt32(this.bytes.start+16,!0)&4294901760)>>16),this._cachedFlags}get ref_id(){return this._cachedRefId===void 0&&(this._cachedRefId=this._dataView.getInt32(this.bytes.start+4,!0)),this._cachedRefId}get start(){return this._cachedStart===void 0&&(this._cachedStart=this._dataView.getInt32(this.bytes.start+8,!0)),this._cachedStart}get end(){return this._cachedEnd===void 0&&(this._cachedEnd=this.start+this.length_on_ref),this._cachedEnd}get mq(){const e=(this.bin_mq_nl&65280)>>8;return e===255?void 0:e}get score(){return this.mq}get qual(){if(this.isSegmentUnmapped())return null;{const e=this.b0+this.read_name_length+this.num_cigar_bytes+this.num_seq_bytes;return this.byteArray.subarray(e,e+this.seq_length)}}get strand(){return this.isReverseComplemented()?-1:1}get b0(){return this.bytes.start+36}get tagsStart(){return this._cachedTagsStart===void 0&&(this._cachedTagsStart=this.b0+this.read_name_length+this.num_cigar_bytes+this.num_seq_bytes+this.seq_length),this._cachedTagsStart}get name(){const e=this.read_name_length-1,n=this.b0,i=this.byteArray,r=new Array(e);for(let s=0;s<e;s++)r[s]=i[n+s];return String.fromCharCode(...r)}get NUMERIC_MD(){if(this._cachedNUMERIC_MD===void 0){const e=this.getTagRaw("MD");this._cachedNUMERIC_MD=e instanceof Uint8Array?e:null}return this._cachedNUMERIC_MD===null?void 0:this._cachedNUMERIC_MD}get tags(){return this._cachedTags===void 0&&(this._cachedTags=this._computeTags()),this._cachedTags}getTag(e){return this._cachedTags!==void 0?this._cachedTags[e]:this._findTag(e,!1)}getTagRaw(e){return this._findTag(e,!0)}_findTag(e,n){const i=e.charCodeAt(0),r=e.charCodeAt(1);let s=this.tagsStart;const o=this.bytes.end,a=this.byteArray;for(;s<o;){const l=a[s],c=a[s+1],f=a[s+2];s+=3;const u=l===i&&c===r;switch(f){case 65:if(u)return String.fromCharCode(a[s]);s+=1;break;case 105:if(u)return this._dataView.getInt32(s,!0);s+=4;break;case 73:if(u)return this._dataView.getUint32(s,!0);s+=4;break;case 99:if(u)return this._dataView.getInt8(s);s+=1;break;case 67:if(u)return this._dataView.getUint8(s);s+=1;break;case 115:if(u)return this._dataView.getInt16(s,!0);s+=2;break;case 83:if(u)return this._dataView.getUint16(s,!0);s+=2;break;case 102:if(u)return this._dataView.getFloat32(s,!0);s+=4;break;case 90:case 72:{if(u){const h=s;for(;s<o&&a[s]!==0;)s++;if(n)return a.subarray(h,s);const A=[];for(let d=h;d<s;d++)A.push(String.fromCharCode(a[d]));return A.join("")}for(;s<=o&&a[s++]!==0;);break}case 66:{const h=a[s++],A=this._dataView.getInt32(s,!0);s+=4;const d=a.byteOffset+s;if(u)if(h===105){if(d%4===0)return new Int32Array(a.buffer,d,A);const g=new Array(A);for(let m=0;m<A;m++)g[m]=this._dataView.getInt32(s+m*4,!0);return g}else if(h===73){if(d%4===0)return new Uint32Array(a.buffer,d,A);const g=new Array(A);for(let m=0;m<A;m++)g[m]=this._dataView.getUint32(s+m*4,!0);return g}else if(h===115){if(d%2===0)return new Int16Array(a.buffer,d,A);const g=new Array(A);for(let m=0;m<A;m++)g[m]=this._dataView.getInt16(s+m*2,!0);return g}else if(h===83){if(d%2===0)return new Uint16Array(a.buffer,d,A);const g=new Array(A);for(let m=0;m<A;m++)g[m]=this._dataView.getUint16(s+m*2,!0);return g}else{if(h===99)return new Int8Array(a.buffer,d,A);if(h===67)return new Uint8Array(a.buffer,d,A);if(h===102){if(d%4===0)return new Float32Array(a.buffer,d,A);const g=new Array(A);for(let m=0;m<A;m++)g[m]=this._dataView.getFloat32(s+m*4,!0);return g}}h===105||h===73||h===102?s+=A<<2:h===115||h===83?s+=A<<1:(h===99||h===67)&&(s+=A);break}}}}_computeTags(){let e=this.tagsStart;const n=this.bytes.end,i=this.byteArray,r={};for(;e<n;){const s=String.fromCharCode(i[e],i[e+1]),o=i[e+2];switch(e+=3,o){case 65:r[s]=String.fromCharCode(i[e]),e+=1;break;case 105:r[s]=this._dataView.getInt32(e,!0),e+=4;break;case 73:r[s]=this._dataView.getUint32(e,!0),e+=4;break;case 99:r[s]=this._dataView.getInt8(e),e+=1;break;case 67:r[s]=this._dataView.getUint8(e),e+=1;break;case 115:r[s]=this._dataView.getInt16(e,!0),e+=2;break;case 83:r[s]=this._dataView.getUint16(e,!0),e+=2;break;case 102:r[s]=this._dataView.getFloat32(e,!0),e+=4;break;case 90:case 72:{const a=[];for(;e<=n;){const l=i[e++];if(l!==0)a.push(String.fromCharCode(l));else break}r[s]=a.join("");break}case 66:{const a=i[e++],l=this._dataView.getInt32(e,!0);e+=4;const c=i.byteOffset+e;if(a===105){if(c%4===0)r[s]=new Int32Array(i.buffer,c,l);else{const f=new Array(l);for(let u=0;u<l;u++)f[u]=this._dataView.getInt32(e+u*4,!0);r[s]=f}e+=l<<2}else if(a===73){if(c%4===0)r[s]=new Uint32Array(i.buffer,c,l);else{const f=new Array(l);for(let u=0;u<l;u++)f[u]=this._dataView.getUint32(e+u*4,!0);r[s]=f}e+=l<<2}else if(a===115){if(c%2===0)r[s]=new Int16Array(i.buffer,c,l);else{const f=new Array(l);for(let u=0;u<l;u++)f[u]=this._dataView.getInt16(e+u*2,!0);r[s]=f}e+=l<<1}else if(a===83){if(c%2===0)r[s]=new Uint16Array(i.buffer,c,l);else{const f=new Array(l);for(let u=0;u<l;u++)f[u]=this._dataView.getUint16(e+u*2,!0);r[s]=f}e+=l<<1}else if(a===99)r[s]=new Int8Array(i.buffer,c,l),e+=l;else if(a===67)r[s]=new Uint8Array(i.buffer,c,l),e+=l;else if(a===102){if(c%4===0)r[s]=new Float32Array(i.buffer,c,l);else{const f=new Array(l);for(let u=0;u<l;u++)f[u]=this._dataView.getFloat32(e+u*4,!0);r[s]=f}e+=l<<2}break}default:console.error("Unknown BAM tag type",o);break}}return r}isPaired(){return!!(this.flags&Et.BAM_FPAIRED)}isProperlyPaired(){return!!(this.flags&Et.BAM_FPROPER_PAIR)}isSegmentUnmapped(){return!!(this.flags&Et.BAM_FUNMAP)}isMateUnmapped(){return!!(this.flags&Et.BAM_FMUNMAP)}isReverseComplemented(){return!!(this.flags&Et.BAM_FREVERSE)}isMateReverseComplemented(){return!!(this.flags&Et.BAM_FMREVERSE)}isRead1(){return!!(this.flags&Et.BAM_FREAD1)}isRead2(){return!!(this.flags&Et.BAM_FREAD2)}isSecondary(){return!!(this.flags&Et.BAM_FSECONDARY)}isFailedQc(){return!!(this.flags&Et.BAM_FQCFAIL)}isDuplicate(){return!!(this.flags&Et.BAM_FDUP)}isSupplementary(){return!!(this.flags&Et.BAM_FSUPPLEMENTARY)}get cigarAndLength(){return this._cachedCigarAndLength===void 0&&(this._cachedCigarAndLength=this._computeCigarAndLength()),this._cachedCigarAndLength}_computeCigarAndLength(){if(this.isSegmentUnmapped())return{length_on_ref:0,NUMERIC_CIGAR:new Uint32Array(0)};const e=this.num_cigar_ops;let n=this.b0+this.read_name_length;const i=this._dataView.getInt32(n,!0),r=i>>4;if((i&15)===$5&&r===this.seq_length){n+=4;const f=this._dataView.getInt32(n,!0),u=f>>4;return(f&15)!==Z5&&console.warn("CG tag with no N tag"),{NUMERIC_CIGAR:this.tags.CG,length_on_ref:u}}const o=this.byteArray.byteOffset+n;if(o%4===0&&e>50){const f=new Uint32Array(this.byteArray.buffer,o,e);let u=0;for(let h=0;h<e;++h){const A=f[h];u+=(A>>4)*(eE>>(A&15)&1)}return{NUMERIC_CIGAR:f,length_on_ref:u}}const l=new Array(e);let c=0;for(let f=0;f<e;++f){const u=this._dataView.getInt32(n+f*4,!0)|0;l[f]=u,c+=(u>>4)*(eE>>(u&15)&1)}return{NUMERIC_CIGAR:l,length_on_ref:c}}get length_on_ref(){return this.cigarAndLength.length_on_ref}get NUMERIC_CIGAR(){return this.cigarAndLength.NUMERIC_CIGAR}get CIGAR(){const e=this.NUMERIC_CIGAR;let n="";for(let i=0,r=e.length;i<r;i++){const s=e[i],o=s>>4,a=e9[s&15];n+=o+String.fromCharCode(a)}return n}get num_cigar_ops(){return this.flag_nc&65535}get num_cigar_bytes(){return this.num_cigar_ops<<2}get read_name_length(){return this.bin_mq_nl&255}get num_seq_bytes(){return this.seq_length+1>>1}get NUMERIC_SEQ(){const e=this.b0+this.read_name_length+this.num_cigar_bytes;return this.byteArray.subarray(e,e+this.num_seq_bytes)}get seq(){const e=this.NUMERIC_SEQ,n=this.seq_length,i=new Array(n);let r=0;const s=n>>1;for(let o=0;o<s;++o){const a=e[o];i[r++]=Co[(a&240)>>4],i[r++]=Co[a&15]}if(r<n){const o=e[s];i[r]=Co[(o&240)>>4]}return i.join("")}get pair_orientation(){if(!this.isSegmentUnmapped()&&!this.isMateUnmapped()&&this.ref_id===this.next_refid){const e=this.isReverseComplemented()?"R":"F",n=this.isMateReverseComplemented()?"R":"F";let i=" ",r=" ";return this.isRead1()?(i="1",r="2"):this.isRead2()&&(i="2",r="1"),this.template_length>0?`${e}${i}${n}${r}`:`${n}${r}${e}${i}`}}get bin_mq_nl(){return this._dataView.getInt32(this.bytes.start+12,!0)}get flag_nc(){return this._dataView.getInt32(this.bytes.start+16,!0)}get seq_length(){return this._dataView.getInt32(this.bytes.start+20,!0)}get next_refid(){return this._dataView.getInt32(this.bytes.start+24,!0)}get next_pos(){return this._dataView.getInt32(this.bytes.start+28,!0)}get template_length(){return this._dataView.getInt32(this.bytes.start+32,!0)}seqAt(e){if(e<this.seq_length){const n=e>>1,i=this.byteArray[this.b0+this.read_name_length+this.num_cigar_bytes+n];return e%2===0?Co[(i&240)>>4]:Co[i&15]}else return}toJSON(){const e={};for(const n of Object.keys(this))n.startsWith("_")||n==="bytes"||(e[n]=this[n]);return e}}function nE(t){const e=t.split(/\r?\n/),n=[];for(const i of e){const[r,...s]=i.split(/\t/);r&&n.push({tag:r.slice(1),data:s.map(o=>{const a=o.indexOf(":"),l=o.slice(0,a),c=o.slice(a+1);return{tag:l,value:c}})})}return n}const iE=21840194,t9=65536;class rE{constructor({bamFilehandle:e,bamPath:n,bamUrl:i,baiPath:r,baiFilehandle:s,baiUrl:o,csiPath:a,csiFilehandle:l,csiUrl:c,htsget:f,renameRefSeqs:u=A=>A,recordClass:h}){if(this.htsget=!1,this.chunkFeatureCache=new Ao({maxSize:100}),this.renameRefSeq=u,this.RecordClass=h??tE,e)this.bam=e;else if(n)this.bam=new We(n);else if(i)this.bam=new Yt(i);else if(f)this.htsget=!0,this.bam=new X5;else throw new Error("unable to initialize bam");if(l)this.index=new Tc({filehandle:l});else if(a)this.index=new Tc({filehandle:new We(a)});else if(c)this.index=new Tc({filehandle:new Yt(c)});else if(s)this.index=new vr({filehandle:s});else if(r)this.index=new vr({filehandle:new We(r)});else if(o)this.index=new vr({filehandle:new Yt(o)});else if(n)this.index=new vr({filehandle:new We(`${n}.bai`)});else if(i)this.index=new vr({filehandle:new Yt(`${i}.bai`)});else if(f)this.htsget=!0;else throw new Error("unable to infer index format")}async getHeaderPre(e){const n=zT(e);if(!this.index)return;const i=await this.index.parse(n),r=i.firstDataLine===void 0?await this.bam.readFile():await this.bam.read(i.firstDataLine.blockPosition+t9,0),s=await Tr(r),o=new DataView(s.buffer);if(o.getInt32(0,!0)!==iE)throw new Error("Not a BAM file");const a=o.getInt32(4,!0),l=new TextDecoder("utf8");this.header=l.decode(s.subarray(8,8+a));const{chrToIndex:c,indexToChr:f}=this._parseRefSeqs(s,a+8);return this.chrToIndex=c,this.indexToChr=f,nE(this.header)}getHeader(e){return this.headerP||(this.headerP=this.getHeaderPre(e).catch(n=>{throw this.headerP=void 0,n})),this.headerP}async getHeaderText(e={}){return await this.getHeader(e),this.header}_parseRefSeqs(e,n){const i=new DataView(e.buffer),r=i.getInt32(n,!0);let s=n+4;const o={},a=[],l=new TextDecoder("utf8");for(let c=0;c<r;c+=1){if(s+8>e.length)throw new Error(`Insufficient data for reference sequences: need more than ${e.length} bytes`);const f=i.getInt32(s,!0),u=this.renameRefSeq(l.decode(e.subarray(s+4,s+4+f-1))),h=i.getInt32(s+f+4,!0);o[u]=c,a.push({refName:u,length:h}),s=s+8+f}return{chrToIndex:o,indexToChr:a}}async getRecordsForRange(e,n,i,r){await this.getHeader(r);const s=this.chrToIndex?.[e];if(s===void 0||!this.index)return[];const o=await this.index.blocksForRange(s,n-1,i,r);return this._fetchChunkFeaturesDirect(o,s,n,i,r)}chunkCacheKey(e,n){const{minv:i,maxv:r}=e;return`${i.blockPosition}:${i.dataPosition}-${r.blockPosition}:${r.dataPosition}${qT(n)}`}blocksOverlap(e,n,i,r){return e<=r&&n>=i}evictOverlappingChunks(e,n){for(const[i,r]of this.chunkFeatureCache)this.blocksOverlap(e,n,r.minBlock,r.maxBlock)&&this.chunkFeatureCache.delete(i)}async _fetchChunkFeaturesDirect(e,n,i,r,s={}){const{viewAsPairs:o,filterBy:a}=s,{flagInclude:l=0,flagExclude:c=0,tagFilter:f}=a||{},u=[];for(let h=0,A=e.length;h<A;h++){const d=e[h],g=this.chunkCacheKey(d,a),m=d.minv.blockPosition,p=d.maxv.blockPosition;let w;const C=this.chunkFeatureCache.get(g);if(C)w=C.features;else{this.evictOverlappingChunks(m,p);const{data:b,cpositions:x,dpositions:I}=await this._readChunk({chunk:d,opts:s}),S=await this.readBamFeatures(b,x,I,d);if(a){w=[];for(let Q=0,v=S.length;Q<v;Q++){const F=S[Q];VT(F.flags,l,c)||f&&JT(F.tags[f.tag],f.value)||w.push(F)}}else w=S;this.chunkFeatureCache.set(g,{minBlock:m,maxBlock:p,features:w})}let y=!1;for(let b=0,x=w.length;b<x;b++){const I=w[b];if(I.ref_id===n)if(I.start>=r){y=!0;break}else I.end>=i&&u.push(I)}if(y)break}if(o){const h=await this.fetchPairs(n,u,s);for(let A=0,d=h.length;A<d;A++)u.push(h[A])}return u}async fetchPairs(e,n,i){const{pairAcrossChr:r,maxInsertSize:s=2e5}=i,o={},a={};for(let h=0,A=n.length;h<A;h++){const d=n[h],g=d.name;o[g]=(o[g]||0)+1,a[d.fileOffset]=1}const l=[];for(let h=0,A=n.length;h<A;h++){const d=n[h],g=d.name;this.index&&o[g]===1&&(r||d.next_refid===e&&Math.abs(d.start-d.next_pos)<s)&&l.push(this.index.blocksForRange(d.next_refid,d.next_pos,d.next_pos+1,i))}const c=new Map,f=await Promise.all(l);for(let h=0,A=f.length;h<A;h++){const d=f[h];for(let g=0,m=d.length;g<m;g++){const p=d[g],w=p.toString();c.has(w)||c.set(w,p)}}return(await Promise.all([...c.values()].map(async h=>{const{data:A,cpositions:d,dpositions:g,chunk:m}=await this._readChunk({chunk:h,opts:i}),p=[],w=await this.readBamFeatures(A,d,g,m);for(let C=0,y=w.length;C<y;C++){const b=w[C];o[b.name]===1&&!a[b.fileOffset]&&p.push(b)}return p}))).flat()}async _readChunk({chunk:e,opts:n}){const i=await this.bam.read(e.fetchedSize(),e.minv.blockPosition,n),{buffer:r,cpositions:s,dpositions:o}=await ZC(i,e);return{data:r,cpositions:s,dpositions:o,chunk:e}}async readBamFeatures(e,n,i,r){let s=0;const o=[];let a=0;const l=new DataView(e.buffer),c=i.length>0,f=n.length>0;for(;s+4<e.length;){const u=l.getInt32(s,!0),h=s+4+u-1;if(c){for(;s+r.minv.dataPosition>=i[a++];);a--}if(h<e.length){const A=new this.RecordClass({bytes:{byteArray:e,start:s,end:h},fileOffset:f?n[a]*256+(s-i[a])+r.minv.dataPosition+1:q5(e.subarray(s,h))>>>0});o.push(A)}s=h+1}return o}async hasRefSeq(e){const n=this.chrToIndex?.[e];return n===void 0?!1:this.index?.hasRefSeq(n)}async lineCount(e){const n=this.chrToIndex?.[e];return n===void 0||!this.index?0:this.index.lineCount(n)}async indexCov(e,n,i){if(!this.index)return[];await this.index.parse();const r=this.chrToIndex?.[e];return r===void 0?[]:this.index.indexCov(r,n,i)}async blocksForRange(e,n,i,r){if(!this.index)return[];await this.index.parse();const s=this.chrToIndex?.[e];return s===void 0?[]:this.index.blocksForRange(s,n,i,r)}clearFeatureCache(){this.chunkFeatureCache.clear()}async estimatedBytesForRegions(e,n){if(!this.index)return 0;if(await this.getHeader(n),!this.chrToIndex)throw new Error("Header not yet parsed");return this.index.estimatedBytesForRegions(e.map(i=>{const r=this.chrToIndex[i.refName];if(r===void 0)throw new Error(`Unknown reference name: ${i.refName}`);return{refId:r,start:i.start,end:i.end}}),n)}}async function sE(t,e){const n=await Promise.all(t.map(async i=>{const{url:r,headers:s}=i;if(r.startsWith("data:")){const o=await fetch(r);if(!o.ok)throw new Error("failed to decode base64");const a=await o.arrayBuffer();return new Uint8Array(a)}else{const{referer:o,...a}=s,l=await fetch(r,{...e,headers:{...e?.headers,...a}});if(!l.ok)throw new Error(`HTTP ${l.status} fetching ${r}: ${await l.text()}`);return new Uint8Array(await l.arrayBuffer())}}));return YT(await Promise.all(n.map(i=>Tr(i))))}class n9 extends rE{constructor(e){super({htsget:!0,recordClass:e.recordClass}),this.baseUrl=e.baseUrl,this.trackId=e.trackId}async getRecordsForRange(e,n,i,r){const o=`${`${this.baseUrl}/${this.trackId}`}?referenceName=${e}&start=${n}&end=${i}&format=BAM`,a=this.chrToIndex?.[e];if(a===void 0)return[];const l=await fetch(o,{...r});if(!l.ok)throw new Error(`HTTP ${l.status} fetching ${o}: ${await l.text()}`);const c=await l.json(),f=await sE(c.htsget.urls.slice(1),r),u=await this.readBamFeatures(f,[],[],{minv:{dataPosition:0,blockPosition:0},maxv:{dataPosition:0,blockPosition:0}}),h=[];for(let A=0,d=u.length;A<d;A++){const g=u[A];if(g.ref_id===a){if(g.start>=i)break;g.end>=n&&h.push(g)}}return h}async getHeader(e={}){const n=`${this.baseUrl}/${this.trackId}?referenceName=na&class=header`,i=await fetch(n,e);if(!i.ok)throw new Error(`HTTP ${i.status} fetching ${n}: ${await i.text()}`);const r=await i.json(),s=await sE(r.htsget.urls,e),o=new DataView(s.buffer);if(o.getInt32(0,!0)!==iE)throw new Error("Not a BAM file");const a=o.getInt32(4,!0),c=new TextDecoder("utf8").decode(s.subarray(8,8+a)),f=nE(c),u=[],h={},A=f.filter(d=>d.tag==="SQ");for(const[d,g]of A.entries()){let m="",p=0;for(const w of g.data)w.tag==="SN"?m=w.value:w.tag==="LN"&&(p=+w.value);h[m]=d,u[d]={refName:m,length:p}}return this.chrToIndex=h,this.indexToChr=u,f}}const i9=Object.freeze(Object.defineProperty({__proto__:null,BAI:vr,BamFile:rE,BamRecord:tE,CSI:Tc,HtsgetFile:n9},Symbol.toStringTag,{value:"Module"}));class Pc{constructor(e,n,i,r){this.minv=e,this.maxv=n,this.bin=i,this._fetchedSize=r}toUniqueString(){return`${this.minv}..${this.maxv} (bin ${this.bin}, fetchedSize ${this.fetchedSize()})`}toString(){return this.toUniqueString()}compareTo(e){return this.minv.compareTo(e.minv)||this.maxv.compareTo(e.maxv)||this.bin-e.bin}fetchedSize(){return this._fetchedSize!==void 0?this._fetchedSize:this.maxv.blockPosition+65536-this.minv.blockPosition}}class oE{constructor({filehandle:e,renameRefSeqs:n=i=>i}){this.filehandle=e,this.renameRefSeq=n}async getMetadata(e={}){const{indices:n,...i}=await this.parse(e);return i}_findFirstData(e,n){return e?e.compareTo(n)>0?n:e:n}async parse(e={}){return this.parseP||(this.parseP=this._parse(e).catch(n=>{throw this.parseP=void 0,n})),this.parseP}async hasRefSeq(e,n={}){return!!(await this.parse(n)).indices[e]?.binIndex}_parseNameBytes(e){let n=0,i=0;const r=[],s={},o=new TextDecoder("utf8");for(let a=0;a<e.length;a+=1)if(!e[a]){if(i<a){const l=this.renameRefSeq(o.decode(e.subarray(i,a)));r[n]=l,s[l]=n}i=a+1,n+=1}return{refNameToId:s,refIdToName:r}}}const aE=65536,r9=aE*aE;function cE(t,e=0){const n=t[e]|t[e+1]<<8|t[e+2]<<16|t[e+3]<<24;return((t[e+4]|t[e+5]<<8|t[e+6]<<16|t[e+7]<<24)>>>0)*r9+(n>>>0)}function s9(t,e){return e.minv.blockPosition-t.maxv.blockPosition<65e3&&e.maxv.blockPosition-t.minv.blockPosition<5e6}function lE(t,e){const n=[];let i;if(t.length===0)return t;t.sort(function(r,s){const o=r.minv.blockPosition-s.minv.blockPosition;return o===0?r.minv.dataPosition-s.minv.dataPosition:o});for(const r of t)(!e||r.maxv.compareTo(e)>0)&&(i===void 0?(n.push(r),i=r):s9(i,r)?r.maxv.compareTo(i.maxv)>0&&(i.maxv=r.maxv):(n.push(r),i=r));return n}class jA{constructor(e,n){this.blockPosition=e,this.dataPosition=n}toString(){return`${this.blockPosition}:${this.dataPosition}`}compareTo(e){return this.blockPosition-e.blockPosition||this.dataPosition-e.dataPosition}}function Pr(t,e=0){return new jA(t[e+7]*1099511627776+t[e+6]*4294967296+t[e+5]*16777216+t[e+4]*65536+t[e+3]*256+t[e+2],t[e+1]<<8|t[e])}const o9=21582659,a9=38359875,c9={0:"generic",1:"SAM",2:"VCF"};function l9(t,e){return t*2**e}function fE(t,e){return Math.floor(t/2**e)}class Lc extends oE{constructor(e){super(e),this.maxBinNumber=0,this.depth=0,this.minShift=0}async lineCount(e,n={}){const i=await this.parse(n),r=i.refNameToId[e];if(r===void 0||!i.indices[r])return-1;const{stats:o}=i.indices[r];return o?o.lineCount:-1}indexCov(){throw new Error("CSI indexes do not support indexcov")}parseAuxData(e,n){const i=new DataView(e.buffer),r=i.getInt32(n,!0),s=r&65536?"zero-based-half-open":"1-based-closed",o=c9[r&15];if(!o)throw new Error(`invalid Tabix preset format flags ${r}`);const a={ref:i.getInt32(n+4,!0),start:i.getInt32(n+8,!0),end:i.getInt32(n+12,!0)},l=i.getInt32(n+16,!0),c=l?String.fromCharCode(l):void 0,f=i.getInt32(n+20,!0),u=i.getInt32(n+24,!0),{refIdToName:h,refNameToId:A}=this._parseNameBytes(e.subarray(n+28,n+28+u));return{refIdToName:h,refNameToId:A,skipLines:f,metaChar:c,columnNumbers:a,format:o,coordinateType:s}}async _parse(e={}){const n=await Tr(await this.filehandle.readFile(e)),i=new DataView(n.buffer);let r;if(i.getUint32(0,!0)===o9)r=1;else if(i.getUint32(0,!0)===a9)r=2;else throw new Error("Not a CSI file");this.minShift=i.getInt32(4,!0),this.depth=i.getInt32(8,!0),this.maxBinNumber=((1<<(this.depth+1)*3)-1)/7;const s=2**(this.minShift+this.depth*3),o=i.getInt32(12,!0),a=o&&o>=30?this.parseAuxData(n,16):{refIdToName:[],refNameToId:{},metaChar:void 0,columnNumbers:{ref:0,start:1,end:2},coordinateType:"zero-based-half-open",format:"generic"},l=i.getInt32(16+o,!0);let c,f=16+o+4;const u=new Array(l).fill(0).map(()=>{const h=i.getInt32(f,!0);f+=4;const A={};let d;for(let g=0;g<h;g+=1){const m=i.getUint32(f,!0);if(m>this.maxBinNumber)d=this.parsePseudoBin(n,f+4),f+=48;else{const p=Pr(n,f+4);c=this._findFirstData(c,p);const w=i.getInt32(f+12,!0);f+=16;const C=new Array(w);for(let y=0;y<w;y+=1){const b=Pr(n,f),x=Pr(n,f+8);f+=16,C[y]=new Pc(b,x,m)}A[m]=C}}return{binIndex:A,stats:d}});return{...a,csi:!0,refCount:l,maxBlockSize:65536,firstDataLine:c,csiVersion:r,indices:u,depth:this.depth,maxBinNumber:this.maxBinNumber,maxRefLength:s}}parsePseudoBin(e,n){return{lineCount:cE(e,n+28)}}async blocksForRange(e,n,i,r={}){n<0&&(n=0);const s=await this.parse(r),o=s.refNameToId[e];if(o===void 0)return[];const a=s.indices[o];if(!a)return[];const l=this.reg2bins(n,i),c=[];for(const[f,u]of l)for(let h=f;h<=u;h++)if(a.binIndex[h])for(const A of a.binIndex[h])c.push(new Pc(A.minv,A.maxv,h));return lE(c,new jA(0,0))}reg2bins(e,n){e-=1,e<1&&(e=1),n>2**50&&(n=2**34),n-=1;let i=0,r=0,s=this.minShift+this.depth*3;const o=[];for(;i<=this.depth;s-=3,r+=l9(1,i*3),i+=1){const a=r+fE(e,s),l=r+fE(n,s);if(l-a+o.length>this.maxBinNumber)throw new Error(`query ${e}-${n} is too large for current binning scheme (shift ${this.minShift}, depth ${this.depth}), try a smaller query or a coarser index binning scheme`);o.push([a,l])}return o}}const f9=21578324,uE=14;function u9(t,e){return t+=1,e-=1,[[0,0],[1+(t>>26),1+(e>>26)],[9+(t>>23),9+(e>>23)],[73+(t>>20),73+(e>>20)],[585+(t>>17),585+(e>>17)],[4681+(t>>14),4681+(e>>14)]]}class Lr extends oE{async lineCount(e,n={}){const i=await this.parse(n),r=i.refNameToId[e];return r===void 0||!i.indices[r]?-1:i.indices[r].stats?.lineCount??-1}async _parse(e={}){const n=await this.filehandle.readFile(e),i=await Tr(n),r=new DataView(i.buffer);if(r.getUint32(0,!0)!==f9)throw new Error("Not a TBI file");const o=r.getUint32(4,!0),a=r.getUint32(8,!0),l=a&65536?"zero-based-half-open":"1-based-closed",f={0:"generic",1:"SAM",2:"VCF"}[a&15];if(!f)throw new Error(`invalid Tabix preset format flags ${a}`);const u={ref:r.getInt32(12,!0),start:r.getInt32(16,!0),end:r.getInt32(20,!0)},h=r.getInt32(24,!0),A=5,d=((1<<(A+1)*3)-1)/7,g=2**(14+A*3),m=h?String.fromCharCode(h):void 0,p=r.getInt32(28,!0),w=r.getInt32(32,!0),{refNameToId:C,refIdToName:y}=this._parseNameBytes(i.slice(36,36+w));let b=36+w,x;return{indices:new Array(o).fill(0).map(()=>{const S=r.getInt32(b,!0);b+=4;const Q={};let v;for(let M=0;M<S;M+=1){const O=r.getUint32(b,!0);if(b+=4,O>d+1)throw new Error("tabix index contains too many bins, please use a CSI index");if(O===d+1){const z=r.getInt32(b,!0);b+=4,z===2&&(v=this.parsePseudoBin(i,b)),b+=16*z}else{const z=r.getInt32(b,!0);b+=4;const _=new Array(z);for(let Y=0;Y<z;Y+=1){const te=Pr(i,b),oe=Pr(i,b+8);b+=16,x=this._findFirstData(x,te),_[Y]=new Pc(te,oe,O)}Q[O]=_}}const F=r.getInt32(b,!0);b+=4;const R=new Array(F);for(let M=0;M<F;M+=1)R[M]=Pr(i,b),b+=8,x=this._findFirstData(x,R[M]);return{binIndex:Q,linearIndex:R,stats:v}}),metaChar:m,maxBinNumber:d,maxRefLength:g,skipLines:p,firstDataLine:x,columnNumbers:u,coordinateType:l,format:f,refIdToName:y,refNameToId:C,maxBlockSize:65536}}parsePseudoBin(e,n){return{lineCount:cE(e,n+16)}}async blocksForRange(e,n,i,r={}){n<0&&(n=0);const s=await this.parse(r),o=s.refNameToId[e];if(o===void 0)return[];const a=s.indices[o];if(!a)return[];(a.linearIndex.length>0?a.linearIndex[n>>uE>=a.linearIndex.length?a.linearIndex.length-1:n>>uE]:new jA(0,0))||console.warn("querying outside of possible tabix range");const c=u9(n,i),f=[];for(const[g,m]of c)for(let p=g;p<=m;p++)if(a.binIndex[p])for(const w of a.binIndex[p])f.push(new Pc(w.minv,w.maxv,p));const u=a.linearIndex.length;let h;const A=Math.min(n>>14,u-1),d=Math.min(i>>14,u-1);for(let g=A;g<=d;++g){const m=a.linearIndex[g];m&&(!h||m.compareTo(h)<0)&&(h=m)}return lE(f,h)}}class A9{constructor({path:e,filehandle:n,url:i,tbiPath:r,tbiUrl:s,tbiFilehandle:o,csiPath:a,csiUrl:l,csiFilehandle:c,renameRefSeqs:f,chunkCacheSize:u=5*2**20}){this.cache=new Ao({maxSize:1e3});const h=f??(A=>A);if(n)this.filehandle=n;else if(e)this.filehandle=new We(e);else if(i)this.filehandle=new Yt(i);else throw new TypeError("must provide either filehandle or path");if(o)this.index=new Lr({filehandle:o,renameRefSeqs:h});else if(c)this.index=new Lc({filehandle:c,renameRefSeqs:h});else if(r)this.index=new Lr({filehandle:new We(r),renameRefSeqs:h});else if(a)this.index=new Lc({filehandle:new We(a),renameRefSeqs:h});else if(e)this.index=new Lr({filehandle:new We(`${e}.tbi`),renameRefSeqs:h});else if(l)this.index=new Lc({filehandle:new Yt(l)});else if(s)this.index=new Lr({filehandle:new Yt(s)});else if(i)this.index=new Lr({filehandle:new Yt(`${i}.tbi`)});else throw new TypeError("must provide one of tbiFilehandle, tbiPath, csiFilehandle, csiPath, tbiUrl, csiUrl");this.renameRefSeq=h,this.hasCustomRenameRefSeq=f!==void 0,this.chunkCache=new Ir({cache:new Ao({maxSize:Math.floor(u/65536)}),fill:(A,d)=>this.readChunk(A,{signal:d})})}calculateFileOffset(e,n,i,r,s){return e[i]*256+(r-n[i])+s+1}async getLines(e,n,i,r){let s,o={},a;typeof r=="function"?a=r:(o=r,a=r.lineCallback,s=r.signal);const l=await this.index.getMetadata(o),c=n??0,f=i??l.maxRefLength;if(!(c<=f))throw new TypeError("invalid start and end coordinates. start must be less than or equal to end");if(c===f)return;const u=await this.index.blocksForRange(e,c,f,o),h=new TextDecoder("utf8"),A=l.format==="VCF",d={ref:l.columnNumbers.ref||0,start:l.columnNumbers.start||0,end:A?8:l.columnNumbers.end||0},g=Math.max(d.ref,d.start,d.end),m=l.metaChar?.charCodeAt(0),p=l.coordinateType==="1-based-closed"?-1:0,w=!this.hasCustomRenameRefSeq;for(const C of u){const{buffer:y,cpositions:b,dpositions:x}=await this.chunkCache.get(C.toString(),C,s);let I=0,S=0;const Q=h.decode(y);if(y.length==Q.length)for(;I<Q.length;){const F=Q.indexOf(`
|
|
822
|
+
`,I);if(F===-1)break;const R=Q.slice(I,F);if(x){const O=I+C.minv.dataPosition;for(;S<x.length&&O>=x[S];)S++}const M=this.checkLine(e,c,f,R,d.ref,d.start,d.end,g,m,p,A,w);if(M===null)return;M!==void 0&&a(R,this.calculateFileOffset(b,x,S,I,C.minv.dataPosition),M.start,M.end),I=F+1}else for(;I<y.length;){const F=y.indexOf(10,I);if(F===-1)break;const R=y.slice(I,F),M=h.decode(R);if(x){const z=I+C.minv.dataPosition;for(;S<x.length&&z>=x[S];)S++}const O=this.checkLine(e,c,f,M,d.ref,d.start,d.end,g,m,p,A,w);if(O===null)return;O!==void 0&&a(M,this.calculateFileOffset(b,x,S,I,C.minv.dataPosition),O.start,O.end),I=F+1}}}async getMetadata(e={}){return this.index.getMetadata(e)}async getHeaderBuffer(e={}){const{firstDataLine:n,metaChar:i,maxBlockSize:r}=await this.getMetadata(e),s=(n?.blockPosition||0)+r,o=await this.filehandle.read(s,0,e),a=await Tr(o);if(i){let l=-1;const c=10,f=i.charCodeAt(0);for(let u=0,h=a.length;u<h;u++){const A=a[u];if(u===l+1&&A!==f)break;A===c&&(l=u)}return a.subarray(0,l+1)}return a}async getHeader(e={}){const n=new TextDecoder("utf8"),i=await this.getHeaderBuffer(e);return n.decode(i)}async getReferenceSequenceNames(e={}){return(await this.getMetadata(e)).refIdToName}checkLine(e,n,i,r,s,o,a,l,c,f,u,h){if(c!==void 0&&r.charCodeAt(0)===c)return;if(r.length<500){const C=r.split(" "),y=C[s-1];if(!(h?y===e:this.renameRefSeq(y)===e))return;const x=+C[o-1]+f;if(x>=i)return null;let I;return a===0||a===o?I=x+1:u?I=this._getVcfEnd(x,C[3],C[a-1]):I=+C[a-1],I<=n?void 0:{start:x,end:I}}let A=-1;const d=[-1];for(let C=0;C<l;C++){const y=r.indexOf(" ",A+1);if(y===-1){d.push(r.length);break}d.push(y),A=y}const g=r.slice(d[s-1]+1,d[s]);if(!(h?g===e:this.renameRefSeq(g)===e))return;const p=+r.slice(d[o-1]+1,d[o])+f;if(p>=i)return null;let w;if(a===0||a===o?w=p+1:u?w=this._getVcfEnd(p,r.slice(d[3]+1,d[4]),r.slice(d[a-1]+1,d[a])):w=+r.slice(d[a-1]+1,d[a]),!(w<=n))return{start:p,end:w}}_getVcfEnd(e,n,i){let r=e+n.length;if(i.includes("SVTYPE=TRA"))return e+1;if(i[0]!=="."){const o=i.indexOf("END=");if(o!==-1&&(o===0||i[o-1]===";")){const a=o+4;let l=i.indexOf(";",a);l===-1&&(l=i.length),r=Number.parseInt(i.slice(a,l),10)}}return r}async lineCount(e,n={}){return this.index.lineCount(e,n)}async readChunk(e,n={}){const i=await this.filehandle.read(e.fetchedSize(),e.minv.blockPosition,n);return ZC(i,e,this.cache)}}const h9=Object.freeze(Object.defineProperty({__proto__:null,CSI:Lc,TBI:Lr,TabixIndexedFile:A9},Symbol.toStringTag,{value:"Module"})),d9=/%([0-9A-Fa-f]{2})/g,g9=/^\s*##\s*(\S+)\s*(.*)/,p9=/\r?\n$/,AE=/\s+/,hE=/\D/g;function Oc(t){return t.includes("%")?t.replaceAll(d9,(e,n)=>String.fromCharCode(parseInt(n,16))):t}function m9(t){if(!t.length||t===".")return{};const e={};let n=t;n.endsWith(`
|
|
823
|
+
`)&&(n=n.slice(0,n.endsWith(`\r
|
|
824
|
+
`)?-2:-1));for(const i of n.split(";")){const r=i.indexOf("=");if(r===-1)continue;const s=i.slice(r+1);if(!s.length)continue;const o=i.slice(0,r).trim();let a=e[o];a||(a=[],e[o]=a);for(const l of s.split(","))a.push(Oc(l.trim()))}return e}function w9(t){if(!t.length||t===".")return{};const e={};let n=t;n.endsWith(`
|
|
825
|
+
`)&&(n=n.slice(0,n.endsWith(`\r
|
|
826
|
+
`)?-2:-1));for(const i of n.split(";")){const r=i.indexOf("=");if(r===-1)continue;const s=i.slice(r+1);if(!s.length)continue;const o=i.slice(0,r).trim();let a=e[o];a||(a=[],e[o]=a);for(const l of s.split(","))a.push(l.trim())}return e}function y9(t){return WA(t.split(" "))}function Ue(t){return t==="."||t===""||t===void 0?null:t}function WA(t){const e=Ue(t[0]),n=Ue(t[1]),i=Ue(t[2]),r=Ue(t[3]),s=Ue(t[4]),o=Ue(t[5]),a=Ue(t[6]),l=Ue(t[7]),c=Ue(t[8]);return{seq_id:e?Oc(e):null,source:n?Oc(n):null,type:i?Oc(i):null,start:r===null?null:parseInt(r,10),end:s===null?null:parseInt(s,10),score:o===null?null:parseFloat(o),strand:a,phase:l,attributes:c===null?null:m9(c)}}function C9(t){const e=Ue(t[0]),n=Ue(t[1]),i=Ue(t[2]),r=Ue(t[3]),s=Ue(t[4]),o=Ue(t[5]),a=Ue(t[6]),l=Ue(t[7]),c=Ue(t[8]);return{seq_id:e,source:n,type:i,start:r===null?null:parseInt(r,10),end:s===null?null:parseInt(s,10),score:o===null?null:parseFloat(o),strand:a,phase:l,attributes:c===null?null:w9(c)}}function E9(t){const e=g9.exec(t);if(!e)return null;const[,n]=e;let[,,i]=e;const r={directive:n};if(i.length&&(i=i.replace(p9,""),r.value=i),n==="sequence-region"){const s=i.split(AE,3);return{...r,seq_id:s[0],start:s[1]?.replaceAll(hE,""),end:s[2]?.replaceAll(hE,"")}}else if(n==="genome-build"){const[s,o]=i.split(AE,2);return{...r,source:s,buildName:o}}return r}const I9=/^\s*[^#\s>]/,b9=/^\s*(#+)(.*)/,x9=/^\s*$/,B9=/^\s*>/,v9=/\r?\n?$/g;class Uc{featureCallback;endCallback;commentCallback;errorCallback;disableDerivesFromReferences;directiveCallback;bufferSize;eof=!1;lineNumber=0;_underConstructionTopLevel=[];_underConstructionById={};_completedReferences={};_underConstructionOrphans={};constructor(e){const n=()=>{};this.featureCallback=e.featureCallback||n,this.endCallback=e.endCallback||n,this.commentCallback=e.commentCallback||n,this.errorCallback=e.errorCallback||n,this.directiveCallback=e.directiveCallback||n,this.disableDerivesFromReferences=e.disableDerivesFromReferences||!1,this.bufferSize=e.bufferSize===void 0?1/0:e.bufferSize}addLine(e){if(this.eof)return;if(this.lineNumber+=1,I9.test(e)){this._bufferLine(e);return}const n=b9.exec(e);if(n){const[,i]=n;let[,,r]=n;if(i.length===3)this._emitAllUnderConstructionFeatures();else if(i.length===2){const s=E9(e);s&&(s.directive==="FASTA"?(this._emitAllUnderConstructionFeatures(),this.eof=!0):this._emitItem(s))}else this._emitItem({comment:r.trimStart()})}else if(!x9.test(e))if(B9.test(e))this._emitAllUnderConstructionFeatures(),this.eof=!0;else{const i=e.replaceAll(v9,"");throw new Error(`GFF3 parse error. Cannot parse '${i}'.`)}}addParsedFeatureLine(e){this.eof||(this.lineNumber+=1,this._bufferParsedLine(e))}finish(){this._emitAllUnderConstructionFeatures(),this.endCallback()}_emitItem(e){Array.isArray(e)?this.featureCallback(e):"directive"in e?this.directiveCallback(e):"comment"in e&&this.commentCallback(e)}_enforceBufferSizeLimit(e=0){const n=i=>{i&&Array.isArray(i)&&i[0].attributes?.ID?.[0]&&(i[0].attributes.ID.forEach(s=>{delete this._underConstructionById[s],delete this._completedReferences[s]}),i.forEach(s=>{s.child_features&&s.child_features.forEach(o=>{n(o)}),s.derived_features&&s.derived_features.forEach(o=>{n(o)})}))};for(;this._underConstructionTopLevel.length+e>this.bufferSize;){const i=this._underConstructionTopLevel.shift();i&&(this._emitItem(i),n(i))}}_emitAllUnderConstructionFeatures(){this._underConstructionTopLevel.forEach(this._emitItem.bind(this)),this._underConstructionTopLevel=[],this._underConstructionById={},this._completedReferences={};const e=Object.keys(this._underConstructionOrphans);if(e.length)throw new Error(`some features reference other features that do not exist in the file (or in the same '###' scope). ${e.join(",")}`)}_bufferLine(e){this._bufferParsedLine(y9(e))}_bufferParsedLine(e){const n=e;n.child_features=[],n.derived_features=[];const i=n.attributes?.ID||[],r=n.attributes?.Parent||[],s=this.disableDerivesFromReferences?[]:n.attributes?.Derives_from||[];if(!i.length&&!r.length&&!s.length){this._emitItem([n]);return}let o;i.forEach(a=>{const l=this._underConstructionById[a];l?(l[l.length-1].type!==n.type&&this._parseError(`multi-line feature "${a}" has inconsistent types: "${n.type}", "${l[l.length-1].type}"`),l.push(n),o=l):(o=[n],this._enforceBufferSizeLimit(1),!r.length&&!s.length&&this._underConstructionTopLevel.push(o),this._underConstructionById[a]=o,this._resolveReferencesTo(o,a))}),this._resolveReferencesFrom(o||[n],{Parent:r,Derives_from:s},i)}_resolveReferencesTo(e,n){const i=this._underConstructionOrphans[n];if(i){for(const r of e)r.child_features.push(...i.Parent),r.derived_features.push(...i.Derives_from);delete this._underConstructionOrphans[n]}}_parseError(e){this.eof=!0,this.errorCallback(`${this.lineNumber}: ${e}`)}_resolveReferencesFrom(e,n,i){for(const r of n.Parent){const s=this._underConstructionById[r];if(s){let o=!1;for(const a of i){const l=`Parent,${r}`,c=this._completedReferences[a]||(this._completedReferences[a]={});c[l]&&(o=!0),c[l]=!0}if(!o)for(const a of s)a.child_features.push(e)}else{let o=this._underConstructionOrphans[r];o||(o={Parent:[],Derives_from:[]},this._underConstructionOrphans[r]=o),o.Parent.push(e)}}for(const r of n.Derives_from){const s=this._underConstructionById[r];if(s){let o=!1;for(const a of i){const l=`Derives_from,${r}`,c=this._completedReferences[a]||(this._completedReferences[a]={});c[l]&&(o=!0),c[l]=!0}if(!o)for(const a of s)a.derived_features.push(e)}else{let o=this._underConstructionOrphans[r];o||(o={Parent:[],Derives_from:[]},this._underConstructionOrphans[r]=o),o.Derives_from.push(e)}}}}function S9(t){const e=[],n=new Uc({featureCallback:i=>e.push(i),disableDerivesFromReferences:!0,errorCallback:i=>{throw new Error(i)}});for(const i of t.split(/\r?\n/))n.addLine(i);return n.finish(),e}function Q9(t){const e=[],n=new Uc({featureCallback:i=>e.push(i),disableDerivesFromReferences:!0,errorCallback:i=>{throw new Error(i)}});for(const i of t)n.addLine(i);return n.finish(),e}function D9(t){const e=[],n=new Uc({featureCallback:i=>e.push(i),disableDerivesFromReferences:!0,errorCallback:i=>{throw new Error(i)}});for(const i of t){const r=WA(i.fields);i.lineHash!==void 0&&(r.attributes||(r.attributes={}),r.attributes._lineHash=[String(i.lineHash)]),n.addParsedFeatureLine(r)}return n.finish(),e}function k9(t,e){const n=[],i=new Uc({featureCallback:s=>n.push(s),disableDerivesFromReferences:!0,errorCallback:s=>{throw new Error(s)}}),r=e?WA:C9;for(const s of t){const o=r(s.fields);s.lineHash!==void 0&&(o.attributes||(o.attributes={}),o.attributes._lineHash=[String(s.lineHash)]),i.addParsedFeatureLine(o)}return i.finish(),n}const F9=Object.freeze(Object.defineProperty({__proto__:null,parseArraySync:Q9,parseRecordsSync:D9,parseRecordsSyncFast:k9,parseStringSync:S9},Symbol.toStringTag,{value:"Module"}));function R9(t,e,n){const i=Object.create(null),r=n.length,s=e.length,o=9,a=58;let l=0;if(t==="GT"){for(let u=0;u<r;u++){const h=l;for(;l<s&&e.charCodeAt(l)!==o;)l++;i[n[u]]=e.slice(h,l),l++}return i}const c=t.indexOf("GT");if(c===-1)return i;if(c===0){for(let u=0;u<r;u++){const h=l;for(;l<s&&e.charCodeAt(l)!==a&&e.charCodeAt(l)!==o;)l++;for(i[n[u]]=e.slice(h,l);l<s&&e.charCodeAt(l)!==o;)l++;l++}return i}let f=0;for(let u=0;u<c;u++)t.charCodeAt(u)===a&&f++;for(let u=0;u<r;u++){const h=l;let A=l;for(;A<s&&e.charCodeAt(A)!==o;)A++;let d=0,g=h;for(let m=h;m<=A;m++)if(m===A||e.charCodeAt(m)===a){if(d===f){i[n[u]]=e.slice(g,m);break}d++,g=m+1}l=A+1}return i}function N9(t){const e=[],n=[];let i=!1,r=!1;const s=t.length;for(let o=0;o<s;o++){const a=t[o];a==='"'?(i=!i,n.push(a)):a==="["?(r=!0,n.push(a)):a==="]"?(r=!1,n.push(a)):a===","&&!i&&!r?(e.push(n.join("").trim()),n.length=0):n.push(a)}return n.length>0&&e.push(n.join("").trim()),e}function M9(t,e){const n=t.indexOf(e);return[t.slice(0,n),t.slice(n+1)]}function T9(t){const e=t.slice(1,-1),n=N9(e),i=[];for(let r=0;r<n.length;r++){const s=n[r],[o,a]=M9(s,"=");if(a&&a.startsWith("[")&&a.endsWith("]")){const l=a.slice(1,-1).split(",");for(let c=0;c<l.length;c++)l[c]=l[c].trim();i.push([o,l])}else a&&a.startsWith('"')&&a.endsWith('"')?i.push([o,a.slice(1,-1)]):i.push([o,a])}return Object.fromEntries(i)}const _c={InfoFields:{AA:{Number:1,Type:"String",Description:"Ancestral allele"},AC:{Number:"A",Type:"Integer",Description:"Allele count in genotypes, for each ALT allele, in the same order as listed"},AD:{Number:"R",Type:"Integer",Description:"Total read depth for each allele"},ADF:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the forward strand"},ADR:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the reverse strand"},AF:{Number:"A",Type:"Float",Description:"Allele frequency for each ALT allele in the same order as listed (estimated from primary data, not called genotypes)"},AN:{Number:1,Type:"Integer",Description:"Total number of alleles in called genotypes"},BQ:{Number:1,Type:"Float",Description:"RMS base quality"},CIGAR:{Number:1,Type:"Float",Description:"Cigar string describing how to align an alternate allele to the reference allele"},DB:{Number:0,Type:"Flag",Description:"dbSNP membership"},DP:{Number:1,Type:"Integer",Description:"combined depth across samples"},END:{Number:1,Type:"Integer",Description:"End position (for use with symbolic alleles)"},H2:{Number:0,Type:"Flag",Description:"HapMap2 membership"},H3:{Number:0,Type:"Flag",Description:"HapMap3 membership"},MQ:{Number:1,Type:null,Description:"RMS mapping quality"},MQ0:{Number:1,Type:"Integer",Description:"Number of MAPQ == 0 reads"},NS:{Number:1,Type:"Integer",Description:"Number of samples with data"},SB:{Number:4,Type:"Integer",Description:"Strand bias"},SOMATIC:{Number:0,Type:"Flag",Description:"Somatic mutation (for cancer genomics)"},VALIDATED:{Number:0,Type:"Flag",Description:"Validated by follow-up experiment"},"1000G":{Number:0,Type:"Flag",Description:"1000 Genomes membership"},IMPRECISE:{Number:0,Type:"Flag",Description:"Imprecise structural variation"},NOVEL:{Number:0,Type:"Flag",Description:"Indicates a novel structural variation"},SVTYPE:{Number:1,Type:"String",Description:"Type of structural variant"},SVLEN:{Number:null,Type:"Integer",Description:"Difference in length between REF and ALT alleles"},CIPOS:{Number:2,Type:"Integer",Description:"Confidence interval around POS for imprecise variants"},CIEND:{Number:2,Type:"Integer",Description:"Confidence interval around END for imprecise variants"},HOMLEN:{Type:"Integer",Description:"Length of base pair identical micro-homology at event breakpoints"},HOMSEQ:{Type:"String",Description:"Sequence of base pair identical micro-homology at event breakpoints"},BKPTID:{Type:"String",Description:"ID of the assembled alternate allele in the assembly file"},MEINFO:{Number:4,Type:"String",Description:"Mobile element info of the form NAME,START,END,POLARITY"},METRANS:{Number:4,Type:"String",Description:"Mobile element transduction info of the form CHR,START,END,POLARITY"},DGVID:{Number:1,Type:"String",Description:"ID of this element in Database of Genomic Variation"},DBVARID:{Number:1,Type:"String",Description:"ID of this element in DBVAR"},DBRIPID:{Number:1,Type:"String",Description:"ID of this element in DBRIP"},MATEID:{Number:null,Type:"String",Description:"ID of mate breakends"},PARID:{Number:1,Type:"String",Description:"ID of partner breakend"},EVENT:{Number:1,Type:"String",Description:"ID of event associated to breakend"},CILEN:{Number:2,Type:"Integer",Description:"Confidence interval around the inserted material between breakend"},DPADJ:{Type:"Integer",Description:"Read Depth of adjacency"},CN:{Number:1,Type:"Integer",Description:"Copy number of segment containing breakend"},CNADJ:{Number:null,Type:"Integer",Description:"Copy number of adjacency"},CICN:{Number:2,Type:"Integer",Description:"Confidence interval around copy number for the segment"},CICNADJ:{Number:null,Type:"Integer",Description:"Confidence interval around copy number for the adjacency"}},GenotypeFields:{AD:{Number:"R",Type:"Integer",Description:"Read depth for each allele"},ADF:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the forward strand"},ADR:{Number:"R",Type:"Integer",Description:"Read depth for each allele on the reverse strand"},DP:{Number:1,Type:"Integer",Description:"Read depth"},EC:{Number:"A",Type:"Integer",Description:"Expected alternate allele counts"},FT:{Number:1,Type:"String",Description:'Filter indicating if this genotype was "called"'},GL:{Number:"G",Type:"Float",Description:"Genotype likelihoods"},GP:{Number:"G",Type:"Float",Description:"Genotype posterior probabilities"},GQ:{Number:1,Type:"Integer",Description:"Conditional genotype quality"},GT:{Number:1,Type:"String",Description:"Genotype"},HQ:{Number:2,Type:"Integer",Description:"Haplotype quality"},MQ:{Number:1,Type:"Integer",Description:"RMS mapping quality"},PL:{Number:"G",Type:"Integer",Description:"Phred-scaled genotype likelihoods rounded to the closest integer"},PQ:{Number:1,Type:"Integer",Description:"Phasing quality"},PS:{Number:1,Type:"Integer",Description:"Phase set"}},AltTypes:{DEL:{Description:"Deletion relative to the reference"},INS:{Description:"Insertion of novel sequence relative to the reference"},DUP:{Description:"Region of elevated copy number relative to the reference"},INV:{Description:"Inversion of reference sequence"},CNV:{Description:"Copy number variable region (may be both deletion and duplication)"},"DUP:TANDEM":{Description:"Tandem duplication"},"DEL:ME":{Description:"Deletion of mobile element relative to the reference"},"INS:ME":{Description:"Insertion of a mobile element relative to the reference"},NON_REF:{Description:"Represents any possible alternative allele at this location"},"*":{Description:"Represents any possible alternative allele at this location"}},FilterTypes:{PASS:{Description:"Passed all filters"}}};function P9(t){try{return decodeURIComponent(t)}catch{return t}}class L9{constructor({header:e="",strict:n=!0}){if(!e.length)throw new Error("empty header received");const i=e.split(/[\r\n]+/).filter(Boolean);if(!i.length)throw new Error("no non-empty header lines specified");this.strict=n,this.metadata={INFO:{..._c.InfoFields},FORMAT:{..._c.GenotypeFields},ALT:{..._c.AltTypes},FILTER:{..._c.FilterTypes}};let r;for(let l=0;l<i.length;l++){const c=i[l];if(c.startsWith("#"))c.startsWith("##")?this.parseMetadata(c):r=c;else throw new Error(`Bad line in header:
|
|
827
|
+
${c}`)}if(!r)throw new Error("No format line found in header");const s=r.trim().split(" "),o=s.slice(0,8),a=["#CHROM","POS","ID","REF","ALT","QUAL","FILTER","INFO"];if(s.length<8)throw new Error(`VCF header missing columns:
|
|
828
|
+
${r}`);if(o.length!==a.length||!o.every((l,c)=>l===a[c]))throw new Error(`VCF column headers not correct:
|
|
829
|
+
${r}`);this.samples=s.slice(9)}parseInfo(e){const n={},i=e.includes("%"),r=e.split(";"),s=this.metadata.INFO,o=r.length;for(let a=0;a<o;a++){const l=r[a],c=l.indexOf("="),f=c===-1?l:l.slice(0,c),u=c===-1?void 0:l.slice(c+1),h=s[f]?.Type;if(h==="Flag")n[f]=!0;else if(!u)n[f]=!0;else{const A=h==="Integer"||h==="Float",d=u.split(","),g=d.length;if(i){const m=[];for(let p=0;p<g;p++){const w=d[p];if(w===".")m.push(void 0);else{const C=P9(w);m.push(A?Number(C):C)}}n[f]=m}else{const m=[];for(let p=0;p<g;p++){const w=d[p];w==="."?m.push(void 0):m.push(A?Number(w):w)}n[f]=m}}}return n}parseSamples(e,n){const i={};if(e){const r=n.split(" "),s=e.split(":"),o=this.metadata.FORMAT,a=[];for(let f=0;f<s.length;f++){const u=o[s[f]]?.Type;a.push(u==="Integer"||u==="Float")}const l=s.length,c=this.samples.length;for(let f=0;f<c;f++){const u=this.samples[f],h={},A=r[f],d=A.length;let g=0,m=0;for(let p=0;p<=d;p++)if(p===d||A[p]===":"){const w=A.slice(g,p);if(w===""||w===".")h[s[m]]=void 0;else{const C=w.split(","),y=[];if(a[m])for(let b=0;b<C.length;b++){const x=C[b];y.push(x==="."?void 0:+x)}else for(let b=0;b<C.length;b++){const x=C[b];y.push(x==="."?void 0:x)}h[s[m]]=y}if(g=p+1,m+=1,m>=l)break}i[u]=h}}return i}parseMetadata(e){const n=/^##(.+?)=(.*)/.exec(e.trim());if(!n)throw new Error(`Line is not a valid metadata line: ${e}`);const[i,r]=n.slice(1,3),s=i;if(r?.startsWith("<")){s in this.metadata||(this.metadata[s]={});const[o,a]=this.parseStructuredMetaVal(r);o?this.metadata[s][o]=a:this.metadata[s]=a}else this.metadata[s]=r}parseStructuredMetaVal(e){const n=T9(e),i=n.ID;return delete n.ID,"Number"in n&&(Number.isNaN(Number(n.Number))||(n.Number=Number(n.Number))),[i,n]}getMetadata(...e){let n=this.metadata;const i=e.length;for(let r=0;r<i;r++)if(n=n[e[r]],!n)return n;return n}parseLine(e){let n=0,i=0;for(;n<e.length&&i<9;)e[n]===" "&&(i+=1),n+=1;const r=i===9?n-1:n,s=e.slice(0,r).split(" "),o=e.slice(r+1),[a,l,c,f,u,h,A]=s,d=a,g=+l,m=c==="."?void 0:c.split(";"),p=f,w=u==="."?void 0:u.split(","),C=h==="."?void 0:+h,y=A==="."?void 0:A.split(";"),b=s[8];if(this.strict&&!s[7])throw new Error("no INFO field specified, must contain at least a '.' (turn off strict mode to allow)");const x=s[7]===void 0||s[7]==="."?{}:this.parseInfo(s[7]);return{CHROM:d,POS:g,ALT:w,INFO:x,REF:p,FILTER:y?.length===1&&y[0]==="PASS"?"PASS":y,ID:m,QUAL:C,FORMAT:b,SAMPLES:()=>this.parseSamples(s[8]??"",o),GENOTYPES:()=>R9(s[8]??"",o,this.samples)}}}const O9=Object.freeze(Object.defineProperty({__proto__:null,default:L9},Symbol.toStringTag,{value:"Module"})),dE=["BOOLEAN","INT32","INT64","INT96","FLOAT","DOUBLE","BYTE_ARRAY","FIXED_LEN_BYTE_ARRAY"],ki=["PLAIN","GROUP_VAR_INT","PLAIN_DICTIONARY","RLE","BIT_PACKED","DELTA_BINARY_PACKED","DELTA_LENGTH_BYTE_ARRAY","DELTA_BYTE_ARRAY","RLE_DICTIONARY","BYTE_STREAM_SPLIT"],U9=["REQUIRED","OPTIONAL","REPEATED"],_9=["UTF8","MAP","MAP_KEY_VALUE","LIST","ENUM","DECIMAL","DATE","TIME_MILLIS","TIME_MICROS","TIMESTAMP_MILLIS","TIMESTAMP_MICROS","UINT_8","UINT_16","UINT_32","UINT_64","INT_8","INT_16","INT_32","INT_64","JSON","BSON","INTERVAL"],G9=["UNCOMPRESSED","SNAPPY","GZIP","LZO","BROTLI","LZ4","ZSTD","LZ4_RAW"],gE=["DATA_PAGE","INDEX_PAGE","DICTIONARY_PAGE","DATA_PAGE_V2"],z9=["SPHERICAL","VINCENTY","THOMAS","ANDOYER","KARNEY"];function XA(t){const e=Gc(t);if(e.type===1)return{type:"Point",coordinates:ZA(t,e)};if(e.type===2)return{type:"LineString",coordinates:$A(t,e)};if(e.type===3)return{type:"Polygon",coordinates:pE(t,e)};if(e.type===4){const n=[];for(let i=0;i<e.count;i++)n.push(ZA(t,Gc(t)));return{type:"MultiPoint",coordinates:n}}else if(e.type===5){const n=[];for(let i=0;i<e.count;i++)n.push($A(t,Gc(t)));return{type:"MultiLineString",coordinates:n}}else if(e.type===6){const n=[];for(let i=0;i<e.count;i++)n.push(pE(t,Gc(t)));return{type:"MultiPolygon",coordinates:n}}else if(e.type===7){const n=[];for(let i=0;i<e.count;i++)n.push(XA(t));return{type:"GeometryCollection",geometries:n}}else throw new Error(`Unsupported geometry type: ${e.type}`)}function Gc(t){const{view:e}=t,n=e.getUint8(t.offset++)===1,i=e.getUint32(t.offset,n);t.offset+=4;const r=i%1e3,s=Math.floor(i/1e3);let o=0;r>1&&r<=7&&(o=e.getUint32(t.offset,n),t.offset+=4);let a=2;return s&&a++,s===3&&a++,{littleEndian:n,type:r,dim:a,count:o}}function ZA(t,e){const n=[];for(let i=0;i<e.dim;i++){const r=t.view.getFloat64(t.offset,e.littleEndian);t.offset+=8,n.push(r)}return n}function $A(t,e){const n=[];for(let i=0;i<e.count;i++)n.push(ZA(t,e));return n}function pE(t,e){const{view:n}=t,i=[];for(let r=0;r<e.count;r++){const s=n.getUint32(t.offset,e.littleEndian);t.offset+=4,i.push($A(t,{...e,count:s}))}return i}const mE=new TextDecoder,zc={timestampFromMilliseconds(t){return new Date(Number(t))},timestampFromMicroseconds(t){return new Date(Number(t/1000n))},timestampFromNanoseconds(t){return new Date(Number(t/1000000n))},dateFromDays(t){return new Date(t*864e5)},stringFromBytes(t){return t&&mE.decode(t)},geometryFromBytes(t){return t&&XA({view:new DataView(t.buffer,t.byteOffset,t.byteLength),offset:0})},geographyFromBytes(t){return t&&XA({view:new DataView(t.buffer,t.byteOffset,t.byteLength),offset:0})}};function wE(t,e,n,i){if(e&&n.endsWith("_DICTIONARY")){let r=t;t instanceof Uint8Array&&!(e instanceof Uint8Array)&&(r=new e.constructor(t.length));for(let s=0;s<t.length;s++)r[s]=e[t[s]];return r}else return yE(t,i)}function yE(t,e){const{element:n,parsers:i,utf8:r=!0,schemaPath:s}=e,{type:o,converted_type:a,logical_type:l}=n;if(s?.some(f=>f.element.logical_type?.type==="VARIANT")&&o==="BYTE_ARRAY"&&a!=="UTF8"&&l?.type!=="STRING")return t;if(a==="DECIMAL"){const u=10**-(n.scale||0),h=new Array(t.length);for(let A=0;A<h.length;A++)t[A]instanceof Uint8Array?h[A]=CE(t[A])*u:h[A]=Number(t[A])*u;return h}if(!a&&o==="INT96")return Array.from(t).map(f=>i.timestampFromNanoseconds(H9(f)));if(a==="DATE")return Array.from(t).map(f=>i.dateFromDays(f));if(a==="TIMESTAMP_MILLIS")return Array.from(t).map(f=>i.timestampFromMilliseconds(f));if(a==="TIMESTAMP_MICROS")return Array.from(t).map(f=>i.timestampFromMicroseconds(f));if(a==="JSON")return t.map(f=>JSON.parse(mE.decode(f)));if(a==="BSON")throw new Error("parquet bson not supported");if(a==="INTERVAL")throw new Error("parquet interval not supported");if(l?.type==="GEOMETRY")return t.map(f=>i.geometryFromBytes(f));if(l?.type==="GEOGRAPHY")return t.map(f=>i.geographyFromBytes(f));if(a==="UTF8"||l?.type==="STRING"||r&&o==="BYTE_ARRAY")return t.map(f=>i.stringFromBytes(f));if(a==="UINT_64"||l?.type==="INTEGER"&&l.bitWidth===64&&!l.isSigned){if(t instanceof BigInt64Array)return new BigUint64Array(t.buffer,t.byteOffset,t.length);const f=new BigUint64Array(t.length);for(let u=0;u<f.length;u++)f[u]=BigInt(t[u]);return f}if(a==="UINT_32"||l?.type==="INTEGER"&&l.bitWidth===32&&!l.isSigned){if(t instanceof Int32Array)return new Uint32Array(t.buffer,t.byteOffset,t.length);const f=new Uint32Array(t.length);for(let u=0;u<f.length;u++)f[u]=t[u];return f}if(l?.type==="FLOAT16")return Array.from(t).map(EE);if(l?.type==="TIMESTAMP"){const{unit:f}=l;let u=i.timestampFromMilliseconds;f==="MICROS"&&(u=i.timestampFromMicroseconds),f==="NANOS"&&(u=i.timestampFromNanoseconds);const h=new Array(t.length);for(let A=0;A<h.length;A++)h[A]=u(t[A]);return h}return t}function CE(t){if(!t.length)return 0;let e=0n;for(const i of t)e=e*256n+BigInt(i);const n=t.length*8;return e>=2n**BigInt(n-1)&&(e-=2n**BigInt(n)),Number(e)}function H9(t){const e=(t>>64n)-2440588n,n=t&0xffffffffffffffffn;return e*86400000000000n+n}function EE(t){if(!t)return;const e=t[1]<<8|t[0],n=e>>15?-1:1,i=e>>10&31,r=e&1023;return i===0?n*2**-14*(r/1024):i===31?r?NaN:n*(1/0):n*2**(i-15)*(1+r/1024)}function IE(t,e,n){const i=t[e],r=[];let s=1;if(i.num_children)for(;r.length<i.num_children;){const o=t[e+s],a=IE(t,e+s,[...n,o.name]);s+=a.count,r.push(a)}return{count:s,element:i,children:r,path:n}}function bE(t,e){let n=IE(t,0,[]);const i=[n];for(const r of e){const s=n.children.find(o=>o.element.name===r);if(!s)throw new Error(`parquet schema element not found: ${e}`);i.push(s),n=s}return i}function Y9(t){const e=[];function n(i){if(i.children.length)for(const r of i.children)n(r);else e.push(i.path.join("."))}return n(t),e}function xE(t){let e=0;for(const{element:n}of t)n.repetition_type==="REPEATED"&&e++;return e}function eh(t){let e=0;for(const{element:n}of t.slice(1))n.repetition_type!=="REQUIRED"&&e++;return e}function V9(t){if(!t||t.element.converted_type!=="LIST"||t.children.length>1)return!1;const e=t.children[0];return!(e.children.length>1||e.element.repetition_type!=="REPEATED")}function J9(t){if(!t||t.element.converted_type!=="MAP"||t.children.length>1)return!1;const e=t.children[0];return!(e.children.length!==2||e.element.repetition_type!=="REPEATED"||e.children.find(r=>r.element.name==="key")?.element.repetition_type==="REPEATED"||e.children.find(r=>r.element.name==="value")?.element.repetition_type==="REPEATED")}function BE(t){if(t.length!==2)return!1;const[,e]=t;return!(e.element.repetition_type==="REPEATED"||e.children.length)}const Xe={STOP:0,TRUE:1,FALSE:2,BYTE:3,I16:4,I32:5,I64:6,DOUBLE:7,BINARY:8,LIST:9,STRUCT:12};function th(t){let e=0;const n={};for(;t.offset<t.view.byteLength;){const[i,r,s]=SE(t,e);if(e=s,i===Xe.STOP)break;n[`field_${r}`]=Hc(t,i)}return n}function Hc(t,e){switch(e){case Xe.TRUE:return!0;case Xe.FALSE:return!1;case Xe.BYTE:return t.view.getInt8(t.offset++);case Xe.I16:case Xe.I32:return vE(t);case Xe.I64:return nh(t);case Xe.DOUBLE:{const n=t.view.getFloat64(t.offset,!0);return t.offset+=8,n}case Xe.BINARY:{const n=Fi(t),i=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,n);return t.offset+=n,i}case Xe.LIST:{const n=t.view.getUint8(t.offset++),i=n&15;let r=n>>4;r===15&&(r=Fi(t));const s=i===Xe.TRUE||i===Xe.FALSE,o=new Array(r);for(let a=0;a<r;a++)o[a]=s?Hc(t,Xe.BYTE)===1:Hc(t,i);return o}case Xe.STRUCT:{const n={};let i=0;for(;;){const[r,s,o]=SE(t,i);if(i=o,r===Xe.STOP)break;n[`field_${s}`]=Hc(t,r)}return n}default:throw new Error(`thrift unhandled type: ${e}`)}}function Fi(t){let e=0,n=0;for(;;){const i=t.view.getUint8(t.offset++);if(e|=(i&127)<<n,!(i&128))return e;n+=7}}function q9(t){let e=0n,n=0n;for(;;){const i=t.view.getUint8(t.offset++);if(e|=BigInt(i&127)<<n,!(i&128))return e;n+=7n}}function vE(t){const e=Fi(t);return e>>>1^-(e&1)}function nh(t){const e=q9(t);return e>>1n^-(e&1n)}function SE(t,e){const n=t.view.getUint8(t.offset++),i=n&15;if(i===Xe.STOP)return[0,0,e];const r=n>>4,s=r?e+r:vE(t);return[i,s,s]}function K9(t,e){const n=new Map,i=e?.find(({key:s})=>s==="geo")?.value,r=(i&&JSON.parse(i)?.columns)??{};for(const[s,o]of Object.entries(r)){if(o.encoding!=="WKB")continue;const a=o.edges==="spherical"?"GEOGRAPHY":"GEOMETRY",l=o.crs?.id??o.crs?.ids?.[0],c=l?`${l.authority}:${l.code.toString()}`:void 0;n.set(s,{type:a,crs:c})}for(let s=1;s<t.length;s++){const o=t[s],{logical_type:a,name:l,num_children:c,repetition_type:f,type:u}=o;if(c){s+=c;continue}u==="BYTE_ARRAY"&&a===void 0&&f!=="REPEATED"&&(o.logical_type=n.get(l))}}const j9=1<<19,W9=new TextDecoder;function qt(t){return t&&W9.decode(t)}async function X9(t,{parsers:e,initialFetchSize:n=j9,geoparquet:i=!0}={}){if(!t||!(t.byteLength>=0))throw new Error("parquet expected AsyncBuffer");const r=Math.max(0,t.byteLength-n),s=await t.slice(r,t.byteLength),o=new DataView(s);if(o.getUint32(s.byteLength-4,!0)!==827474256)throw new Error("parquet file invalid (footer != PAR1)");const a=o.getUint32(s.byteLength-8,!0);if(a>t.byteLength-8)throw new Error(`parquet metadata length ${a} exceeds available buffer ${t.byteLength-8}`);if(a+8>n){const l=t.byteLength-a-8,c=await t.slice(l,r),f=new ArrayBuffer(a+8),u=new Uint8Array(f);return u.set(new Uint8Array(c)),u.set(new Uint8Array(s),r-l),QE(f,{parsers:e,geoparquet:i})}else return QE(s,{parsers:e,geoparquet:i})}function QE(t,{parsers:e,geoparquet:n=!0}={}){if(!(t instanceof ArrayBuffer))throw new Error("parquet expected ArrayBuffer");const i=new DataView(t);if(e={...zc,...e},i.byteLength<8)throw new Error("parquet file is too short");if(i.getUint32(i.byteLength-4,!0)!==827474256)throw new Error("parquet file invalid (footer != PAR1)");const r=i.byteLength-8,s=i.getUint32(r,!0);if(s>i.byteLength-8)throw new Error(`parquet metadata length ${s} exceeds available buffer ${i.byteLength-8}`);const o=r-s,l=th({view:i,offset:o}),c=l.field_1,f=l.field_2.map(m=>({type:dE[m.field_1],type_length:m.field_2,repetition_type:U9[m.field_3],name:qt(m.field_4),num_children:m.field_5,converted_type:_9[m.field_6],scale:m.field_7,precision:m.field_8,field_id:m.field_9,logical_type:Z9(m.field_10)})),u=f.filter(m=>m.type),h=l.field_3,A=l.field_4.map(m=>({columns:m.field_1.map((p,w)=>({file_path:qt(p.field_1),file_offset:p.field_2,meta_data:p.field_3&&{type:dE[p.field_3.field_1],encodings:p.field_3.field_2?.map(C=>ki[C]),path_in_schema:p.field_3.field_3.map(qt),codec:G9[p.field_3.field_4],num_values:p.field_3.field_5,total_uncompressed_size:p.field_3.field_6,total_compressed_size:p.field_3.field_7,key_value_metadata:p.field_3.field_8?.map(C=>({key:qt(C.field_1),value:qt(C.field_2)})),data_page_offset:p.field_3.field_9,index_page_offset:p.field_3.field_10,dictionary_page_offset:p.field_3.field_11,statistics:$9(p.field_3.field_12,u[w],e),encoding_stats:p.field_3.field_13?.map(C=>({page_type:gE[C.field_1],encoding:ki[C.field_2],count:C.field_3})),bloom_filter_offset:p.field_3.field_14,bloom_filter_length:p.field_3.field_15,size_statistics:p.field_3.field_16&&{unencoded_byte_array_data_bytes:p.field_3.field_16.field_1,repetition_level_histogram:p.field_3.field_16.field_2,definition_level_histogram:p.field_3.field_16.field_3},geospatial_statistics:p.field_3.field_17&&{bbox:p.field_3.field_17.field_1&&{xmin:p.field_3.field_17.field_1.field_1,xmax:p.field_3.field_17.field_1.field_2,ymin:p.field_3.field_17.field_1.field_3,ymax:p.field_3.field_17.field_1.field_4,zmin:p.field_3.field_17.field_1.field_5,zmax:p.field_3.field_17.field_1.field_6,mmin:p.field_3.field_17.field_1.field_7,mmax:p.field_3.field_17.field_1.field_8},geospatial_types:p.field_3.field_17.field_2}},offset_index_offset:p.field_4,offset_index_length:p.field_5,column_index_offset:p.field_6,column_index_length:p.field_7,crypto_metadata:p.field_8,encrypted_column_metadata:p.field_9})),total_byte_size:m.field_2,num_rows:m.field_3,sorting_columns:m.field_4?.map(p=>({column_idx:p.field_1,descending:p.field_2,nulls_first:p.field_3})),file_offset:m.field_5,total_compressed_size:m.field_6,ordinal:m.field_7})),d=l.field_5?.map(m=>({key:qt(m.field_1),value:qt(m.field_2)})),g=qt(l.field_6);return n&&K9(f,d),{version:c,schema:f,num_rows:h,row_groups:A,key_value_metadata:d,created_by:g,metadata_length:s}}function DE({schema:t}){return bE(t,[])[0]}function Z9(t){return t?.field_1?{type:"STRING"}:t?.field_2?{type:"MAP"}:t?.field_3?{type:"LIST"}:t?.field_4?{type:"ENUM"}:t?.field_5?{type:"DECIMAL",scale:t.field_5.field_1,precision:t.field_5.field_2}:t?.field_6?{type:"DATE"}:t?.field_7?{type:"TIME",isAdjustedToUTC:t.field_7.field_1,unit:kE(t.field_7.field_2)}:t?.field_8?{type:"TIMESTAMP",isAdjustedToUTC:t.field_8.field_1,unit:kE(t.field_8.field_2)}:t?.field_10?{type:"INTEGER",bitWidth:t.field_10.field_1,isSigned:t.field_10.field_2}:t?.field_11?{type:"NULL"}:t?.field_12?{type:"JSON"}:t?.field_13?{type:"BSON"}:t?.field_14?{type:"UUID"}:t?.field_15?{type:"FLOAT16"}:t?.field_16?{type:"VARIANT",specification_version:t.field_16.field_1}:t?.field_17?{type:"GEOMETRY",crs:qt(t.field_17.field_1)}:t?.field_18?{type:"GEOGRAPHY",crs:qt(t.field_18.field_1),algorithm:z9[t.field_18.field_2]}:t}function kE(t){if(t.field_1)return"MILLIS";if(t.field_2)return"MICROS";if(t.field_3)return"NANOS";throw new Error("parquet time unit required")}function $9(t,e,n){return t&&{max:Yc(t.field_1,e,n),min:Yc(t.field_2,e,n),null_count:t.field_3,distinct_count:t.field_4,max_value:Yc(t.field_5,e,n),min_value:Yc(t.field_6,e,n),is_max_value_exact:t.field_7,is_min_value_exact:t.field_8}}function Yc(t,e,n){const{type:i,converted_type:r,logical_type:s}=e;if(t===void 0)return t;if(i==="BOOLEAN")return t[0]===1;if(i==="BYTE_ARRAY")return n.stringFromBytes(t);const o=new DataView(t.buffer,t.byteOffset,t.byteLength);return i==="FLOAT"&&o.byteLength===4?o.getFloat32(0,!0):i==="DOUBLE"&&o.byteLength===8?o.getFloat64(0,!0):i==="INT32"&&r==="DATE"?n.dateFromDays(o.getInt32(0,!0)):i==="INT64"&&r==="TIMESTAMP_MILLIS"?n.timestampFromMilliseconds(o.getBigInt64(0,!0)):i==="INT64"&&r==="TIMESTAMP_MICROS"?n.timestampFromMicroseconds(o.getBigInt64(0,!0)):i==="INT64"&&s?.type==="TIMESTAMP"&&s?.unit==="NANOS"?n.timestampFromNanoseconds(o.getBigInt64(0,!0)):i==="INT64"&&s?.type==="TIMESTAMP"&&s?.unit==="MICROS"?n.timestampFromMicroseconds(o.getBigInt64(0,!0)):i==="INT64"&&s?.type==="TIMESTAMP"?n.timestampFromMilliseconds(o.getBigInt64(0,!0)):i==="INT32"&&o.byteLength===4?o.getInt32(0,!0):i==="INT64"&&o.byteLength===8?o.getBigInt64(0,!0):r==="DECIMAL"?CE(t)*10**-(e.scale||0):s?.type==="FLOAT16"?EE(t):t}function FE(t,e){for(let i=0;i<e.length;i+=1e4)t.push(...e.slice(i,i+1e4))}function Or(t,e,n=!0){if(n?t===e:t==e)return!0;if(t instanceof Uint8Array&&e instanceof Uint8Array)return Or(Array.from(t),Array.from(e),n);if(!t||!e||typeof t!=typeof e)return!1;if(Array.isArray(t)&&Array.isArray(e)){if(t.length!==e.length)return!1;for(let r=0;r<t.length;r++)if(!Or(t[r],e[r],n))return!1;return!0}if(typeof t!="object")return!1;const i=Object.keys(t);if(i.length!==Object.keys(e).length)return!1;for(const r of i)if(!Or(t[r],e[r],n))return!1;return!0}function eP(t){if(!t)return[];if(t.length===1)return t[0];const e=[];for(const n of t)FE(e,n);return e}function ih({rowGroup:t,physicalColumns:e,filter:n,strict:i=!0}){if(!n)return!1;if("$and"in n&&Array.isArray(n.$and))return n.$and.some(r=>ih({rowGroup:t,physicalColumns:e,filter:r,strict:i}));if("$or"in n&&Array.isArray(n.$or))return n.$or.every(r=>ih({rowGroup:t,physicalColumns:e,filter:r,strict:i}));if("$nor"in n&&Array.isArray(n.$nor))return!1;for(const[r,s]of Object.entries(n)){const o=e.indexOf(r);if(o===-1)continue;const a=t.columns[o].meta_data?.statistics;if(!a)continue;const{min:l,max:c,min_value:f,max_value:u}=a,h=f!==void 0?f:l,A=u!==void 0?u:c;if(!(h===void 0||A===void 0)){for(const[d,g]of Object.entries(s||{}))if(d==="$gt"&&A<=g||d==="$gte"&&A<g||d==="$lt"&&h>=g||d==="$lte"&&h>g||d==="$eq"&&(g<h||g>A)||d==="$ne"&&Or(h,A,i)&&Or(h,g,i)||d==="$in"&&Array.isArray(g)&&g.every(m=>m<h||m>A)||d==="$nin"&&Array.isArray(g)&&Or(h,A,i)&&g.includes(h))return!0}}return!1}const tP=1<<21;function nP({metadata:t,rowStart:e=0,rowEnd:n=1/0,columns:i,filter:r,filterStrict:s=!0,useOffsetIndex:o=!1}){if(!t)throw new Error("parquetPlan requires metadata");const a=[],l=[],c=[],f=Y9(DE(t));let u=0;for(const h of t.row_groups){const A=Number(h.num_rows),d=u+A;if(A>0&&d>e&&u<n&&!ih({rowGroup:h,physicalColumns:f,filter:r,strict:s})){const g=[];for(const C of h.columns){const y=C.meta_data;if(C.file_path)throw new Error("parquet file_path not supported");if(!y)throw new Error("parquet column metadata is undefined");if(!i||i.includes(y.path_in_schema[0])){const b=y.dictionary_page_offset||y.data_page_offset,x=Number(b),I=Number(b+y.total_compressed_size);if(o&&C.offset_index_offset&&C.offset_index_length){const S=Number(C.offset_index_offset);g.push({columnMetadata:y,offsetIndex:{startByte:S,endByte:S+C.offset_index_length},bounds:{startByte:x,endByte:I}})}else g.push({columnMetadata:y,range:{startByte:x,endByte:I}})}}const m=Math.max(e-u,0),p=Math.min(n-u,A);a.push({chunks:g,rowGroup:h,groupStart:u,groupRows:A,selectStart:m,selectEnd:p});let w;for(const C of g)if("offsetIndex"in C)c.push(C.offsetIndex);else{const{range:y}=C;i?l.push(y):w&&y.endByte-w.startByte<=tP?w.endByte=y.endByte:(w&&l.push(w),w={...y})}w&&l.push(w)}u=d}return isFinite(n)||(n=u),l.push(...c),{metadata:t,rowStart:e,rowEnd:n,columns:i,fetches:l,groups:a}}function iP(t,{fetches:e}){const n=e.map(({startByte:i,endByte:r})=>t.slice(i,r));return{byteLength:t.byteLength,slice(i,r=t.byteLength){const s=e.findIndex(({startByte:o,endByte:a})=>o<=i&&r<=a);if(s<0)return t.slice(i,r);if(e[s].startByte!==i||e[s].endByte!==r){const o=i-e[s].startByte,a=r-e[s].startByte;return n[s]instanceof Promise?n[s].then(l=>l.slice(o,a)):n[s].slice(o,a)}else return n[s]}}}const rh=new TextDecoder,RE=new WeakMap;function NE(t,e=zc){if(Array.isArray(t))return t.map(n=>NE(n,e));if(typeof t!="object")return t;if("metadata"in t){const n=rP(t.metadata),i=t.typed_value&&Vc(t.typed_value,n,e),r=t.value&&Eo(Jc(t.value),n,e);return i&&r?{...r,...i}:i??r}return t}function Vc(t,e,n){if(t&&typeof t=="object"&&!Array.isArray(t)&&!(t instanceof Uint8Array)){if("typed_value"in t)return Vc(t.typed_value,e,n);if("value"in t&&t.value instanceof Uint8Array)return Eo(Jc(t.value),e,n);const i={};for(const[r,s]of Object.entries(t))i[r]=Vc(s,e,n);return i}return t instanceof Uint8Array?Eo(Jc(t),e,n):Array.isArray(t)?t.map(i=>Vc(i,e,n)):t}function Jc(t){return{view:new DataView(t.buffer,t.byteOffset,t.byteLength),offset:0}}function rP(t){let e=RE.get(t.buffer);e||(e=new Map,RE.set(t.buffer,e));const n=`${t.byteOffset}:${t.byteLength}`,i=e.get(n);if(i)return i;const r=Jc(t),s=r.view.getUint8(r.offset++),o=s&15;if(o!==1)throw new Error(`parquet unsupported variant metadata version: ${o}`);const a=(s>>4&1)===1,l=(s>>6&3)+1,c=Ri(r,l),f=new Array(c+1);for(let d=0;d<f.length;d++)f[d]=Ri(r,l);const u=r.offset,h=new Array(c);for(let d=0;d<c;d++){const g=f[d],m=f[d+1],p=new Uint8Array(t.buffer,t.byteOffset+u+g,m-g);h[d]=rh.decode(p)}const A={dictionary:h,sorted:a};return e.set(n,A),A}function Ri(t,e){let n=0;for(let i=0;i<e;i++)n|=t.view.getUint8(t.offset+i)<<i*8;return t.offset+=e,n}function Eo(t,e,n){const i=t.view.getUint8(t.offset++),r=i&3,s=i>>2;if(r===0)return sP(t,s,n);if(r===2)return oP(t,s,e,n);if(r===3)return aP(t,s,e,n);const o=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,s);return t.offset+=s,rh.decode(o)}function sP(t,e,n){switch(e){case 0:return null;case 1:return!0;case 2:return!1;case 3:{const i=t.view.getInt8(t.offset);return t.offset+=1,i}case 4:{const i=t.view.getInt16(t.offset,!0);return t.offset+=2,i}case 5:{const i=t.view.getInt32(t.offset,!0);return t.offset+=4,i}case 6:{const i=t.view.getBigInt64(t.offset,!0);return t.offset+=8,i}case 7:{const i=t.view.getFloat64(t.offset,!0);return t.offset+=8,i}case 8:return sh(t,4);case 9:return sh(t,8);case 10:return sh(t,16);case 11:{const i=t.view.getInt32(t.offset,!0);return t.offset+=4,n.dateFromDays(i)}case 12:case 13:{const i=t.view.getBigInt64(t.offset,!0);return t.offset+=8,n.timestampFromMicroseconds(i)}case 14:{const i=t.view.getFloat32(t.offset,!0);return t.offset+=4,i}case 15:return ME(t);case 16:{const i=ME(t);return rh.decode(i)}case 17:{const i=t.view.getBigInt64(t.offset,!0);return t.offset+=8,i}case 18:case 19:{const i=t.view.getBigInt64(t.offset,!0);return t.offset+=8,n.timestampFromNanoseconds(i)}case 20:{const i=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,16);t.offset+=16;const r=Array.from(i,s=>s.toString(16).padStart(2,"0")).join("");return`${r.slice(0,8)}-${r.slice(8,12)}-${r.slice(12,16)}-${r.slice(16,20)}-${r.slice(20)}`}default:throw new Error(`parquet unsupported variant primitive type: ${e}`)}}function oP(t,e,n,i){const r=(e&3)+1,s=(e>>2&3)+1,a=e>>4&1?Ri(t,4):t.view.getUint8(t.offset++),l=new Array(a);for(let u=0;u<a;u++)l[u]=Ri(t,s);const c=new Array(a+1);for(let u=0;u<c.length;u++)c[u]=Ri(t,r);const f={};for(let u=0;u<a;u++){const h=n.dictionary[l[u]],A={view:t.view,offset:t.offset+c[u]};f[h]=Eo(A,n,i)}return t.offset+=c[c.length-1],f}function aP(t,e,n,i){const r=e&3,s=e>>2&1,o=r+1,a=Ri(t,s?4:1),l=new Array(a+1);for(let u=0;u<l.length;u++)l[u]=Ri(t,o);const c=t.offset,f=new Array(a);for(let u=0;u<a;u++){const h={view:t.view,offset:c+l[u]};f[u]=Eo(h,n,i)}return t.offset=c+l[l.length-1],f}function sh(t,e){const n=t.view.getUint8(t.offset);t.offset+=1;let i;if(e===4)i=BigInt(t.view.getInt32(t.offset,!0)),t.offset+=4;else if(e===8)i=t.view.getBigInt64(t.offset,!0),t.offset+=8;else{const r=t.view.getBigUint64(t.offset,!0);i=t.view.getBigInt64(t.offset+8,!0)<<64n|r,t.offset+=16}return Number(i)*10**-n}function ME(t){const e=t.view.getUint32(t.offset,!0);t.offset+=4;const n=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,e);return t.offset+=e,n}function TE(t,e,n,i,r){const s=eh(r);if(!e?.length&&!n.length){if(!s||!i.length)return i;e=new Array(i.length).fill(s)}const o=e?.length||n.length,a=r.map(({element:d})=>d.repetition_type);let l=0;const c=[t];let f=t,u=0,h=0,A=0;if(n[0])for(;u<a.length-2&&A<n[0];)u++,a[u]!=="REQUIRED"&&(f=f.at(-1),c.push(f),h++),a[u]==="REPEATED"&&A++;for(let d=0;d<o;d++){const g=e?.length?e[d]:s,m=n[d];for(;u&&(m<A||a[u]!=="REPEATED");)a[u]!=="REQUIRED"&&(c.pop(),h--),a[u]==="REPEATED"&&A--,u--;for(f=c.at(-1);(u<a.length-2||a[u+1]==="REPEATED")&&(h<g||a[u+1]==="REQUIRED");){if(u++,a[u]!=="REQUIRED"){const p=[];f.push(p),f=p,c.push(p),h++}a[u]==="REPEATED"&&A++}g===s?f.push(i[l++]):u===a.length-2?f.push(null):f.push([])}if(!t.length)for(let d=0;d<s;d++){const g=[];f.push(g),f=g}return t}function Io(t,e,n,i=0){const r=e.path.join("."),s=e.element.repetition_type==="OPTIONAL",o=s?i+1:i;if(V9(e)){let a=e.children[0],l=o;a.children.length===1&&(a=a.children[0],l++),Io(t,a,n,l);const c=a.path.join("."),f=t.get(c);if(!f)throw new Error("parquet list column missing values");s&&qc(f,i),t.set(r,f),t.delete(c);return}if(J9(e)){const a=e.children[0].element.name;Io(t,e.children[0].children[0],n,o+1),Io(t,e.children[0].children[1],n,o+1);const l=t.get(`${r}.${a}.key`),c=t.get(`${r}.${a}.value`);if(!l)throw new Error("parquet map column missing keys");if(!c)throw new Error("parquet map column missing values");if(l.length!==c.length)throw new Error("parquet map column key/value length mismatch");const f=PE(l,c,o);s&&qc(f,i),t.delete(`${r}.${a}.key`),t.delete(`${r}.${a}.value`),t.set(r,f);return}if(e.children.length){const a=e.element.repetition_type==="REQUIRED"?i:i+1,l={};for(const f of e.children){Io(t,f,n,a);const u=t.get(f.path.join("."));if(!u)throw new Error("parquet struct missing child data");l[f.element.name]=u}for(const f of e.children)t.delete(f.path.join("."));let c=LE(l,a);e.element.logical_type?.type==="VARIANT"&&(c=NE(c,n)),s&&qc(c,i),t.set(r,c)}}function qc(t,e){for(let n=0;n<t.length;n++)e?qc(t[n],e-1):t[n]=t[n][0]}function PE(t,e,n){const i=[];for(let r=0;r<t.length;r++)if(n)i.push(PE(t[r],e[r],n-1));else if(t[r]){const s={};for(let o=0;o<t[r].length;o++){const a=e[r][o];s[t[r][o]]=a===void 0?null:a}i.push(s)}else i.push(void 0);return i}function LE(t,e){const n=Object.keys(t),i=t[n[0]]?.length,r=[];for(let s=0;s<i;s++){const o={};for(const a of n){if(t[a].length!==i)throw new Error("parquet struct parsing error");o[a]=t[a][s]}e?r.push(LE(o,e-1)):r.push(o)}return r}function bo(t,e,n){const i=n instanceof Int32Array,r=Fi(t),s=Fi(t);Fi(t);let o=nh(t),a=0;n[a++]=i?Number(o):o;const l=r/s;for(;a<e;){const c=nh(t),f=new Uint8Array(s);for(let u=0;u<s;u++)f[u]=t.view.getUint8(t.offset++);for(let u=0;u<s&&a<e;u++){const h=BigInt(f[u]);if(h){let A=0n,d=l;const g=(1n<<h)-1n;for(;d&&a<e;){let m=BigInt(t.view.getUint8(t.offset))>>A&g;for(A+=h;A>=8;)A-=8n,t.offset++,A&&(m|=BigInt(t.view.getUint8(t.offset))<<h-A&g);const p=c+m;o+=p,n[a++]=i?Number(o):o,d--}d&&(t.offset+=Math.ceil((d*Number(h)+Number(A))/8))}else for(let A=0;A<l&&a<e;A++)o+=c,n[a++]=i?Number(o):o}}}function OE(t,e,n){const i=new Int32Array(e);bo(t,e,i);for(let r=0;r<e;r++)n[r]=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,i[r]),t.offset+=i[r]}function cP(t,e,n){const i=new Int32Array(e);bo(t,e,i);const r=new Int32Array(e);bo(t,e,r);for(let s=0;s<e;s++){const o=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,r[s]);i[s]?(n[s]=new Uint8Array(i[s]+r[s]),n[s].set(n[s-1].subarray(0,i[s])),n[s].set(o,i[s])):n[s]=o,t.offset+=r[s]}}function Kc(t){return 32-Math.clz32(t)}function Hn(t,e,n,i){i===void 0&&(i=t.view.getUint32(t.offset,!0),t.offset+=4);const r=t.offset;let s=0;for(;s<n.length;){const o=Fi(t);if(o&1)s=fP(t,o,e,n,s);else{const a=o>>>1;lP(t,a,e,n,s),s+=a}}t.offset=r+i}function lP(t,e,n,i,r){const s=n+7>>3;let o=0;for(let a=0;a<s;a++)o|=t.view.getUint8(t.offset++)<<(a<<3);for(let a=0;a<e;a++)i[r+a]=o}function fP(t,e,n,i,r){let s=e>>1<<3;const o=(1<<n)-1;let a=0;if(t.offset<t.view.byteLength)a=t.view.getUint8(t.offset++);else if(o)throw new Error(`parquet bitpack offset ${t.offset} out of range`);let l=8,c=0;for(;s;)c>8?(c-=8,l-=8,a>>>=8):l-c<n?(a|=t.view.getUint8(t.offset)<<l,t.offset++,l+=8):(r<i.length&&(i[r++]=a>>c&o),s--,c+=n);return r}function UE(t,e,n,i){const r=uP(n,i),s=new Uint8Array(e*r);for(let o=0;o<r;o++)for(let a=0;a<e;a++)s[a*r+o]=t.view.getUint8(t.offset++);if(n==="FLOAT")return new Float32Array(s.buffer);if(n==="DOUBLE")return new Float64Array(s.buffer);if(n==="INT32")return new Int32Array(s.buffer);if(n==="INT64")return new BigInt64Array(s.buffer);if(n==="FIXED_LEN_BYTE_ARRAY"){const o=new Array(e);for(let a=0;a<e;a++)o[a]=s.subarray(a*r,(a+1)*r);return o}throw new Error(`parquet byte_stream_split unsupported type: ${n}`)}function uP(t,e){switch(t){case"INT32":case"FLOAT":return 4;case"INT64":case"DOUBLE":return 8;case"FIXED_LEN_BYTE_ARRAY":if(!e)throw new Error("parquet byteWidth missing type_length");return e;default:throw new Error(`parquet unsupported type: ${t}`)}}function oh(t,e,n,i){if(n===0)return[];if(e==="BOOLEAN")return AP(t,n);if(e==="INT32")return hP(t,n);if(e==="INT64")return dP(t,n);if(e==="INT96")return gP(t,n);if(e==="FLOAT")return pP(t,n);if(e==="DOUBLE")return mP(t,n);if(e==="BYTE_ARRAY")return wP(t,n);if(e==="FIXED_LEN_BYTE_ARRAY"){if(!i)throw new Error("parquet missing fixed length");return yP(t,n,i)}else throw new Error(`parquet unhandled type: ${e}`)}function AP(t,e){const n=new Array(e);for(let i=0;i<e;i++){const r=t.offset+(i/8|0),s=i%8,o=t.view.getUint8(r);n[i]=(o&1<<s)!==0}return t.offset+=Math.ceil(e/8),n}function hP(t,e){const n=(t.view.byteOffset+t.offset)%4?new Int32Array(jc(t.view.buffer,t.view.byteOffset+t.offset,e*4)):new Int32Array(t.view.buffer,t.view.byteOffset+t.offset,e);return t.offset+=e*4,n}function dP(t,e){const n=(t.view.byteOffset+t.offset)%8?new BigInt64Array(jc(t.view.buffer,t.view.byteOffset+t.offset,e*8)):new BigInt64Array(t.view.buffer,t.view.byteOffset+t.offset,e);return t.offset+=e*8,n}function gP(t,e){const n=new Array(e);for(let i=0;i<e;i++){const r=t.view.getBigInt64(t.offset+i*12,!0),s=t.view.getInt32(t.offset+i*12+8,!0);n[i]=BigInt(s)<<64n|r}return t.offset+=e*12,n}function pP(t,e){const n=(t.view.byteOffset+t.offset)%4?new Float32Array(jc(t.view.buffer,t.view.byteOffset+t.offset,e*4)):new Float32Array(t.view.buffer,t.view.byteOffset+t.offset,e);return t.offset+=e*4,n}function mP(t,e){const n=(t.view.byteOffset+t.offset)%8?new Float64Array(jc(t.view.buffer,t.view.byteOffset+t.offset,e*8)):new Float64Array(t.view.buffer,t.view.byteOffset+t.offset,e);return t.offset+=e*8,n}function wP(t,e){const n=new Array(e);for(let i=0;i<e;i++){const r=t.view.getUint32(t.offset,!0);t.offset+=4,n[i]=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,r),t.offset+=r}return n}function yP(t,e,n){const i=new Array(e);for(let r=0;r<e;r++)i[r]=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,n),t.offset+=n;return i}function jc(t,e,n){const i=new ArrayBuffer(n);return new Uint8Array(i).set(new Uint8Array(t,e,n)),i}const CP=[0,255,65535,16777215,4294967295];function _E(t,e,n,i,r){for(let s=0;s<r;s++)n[i+s]=t[e+s]}function EP(t,e){const n=t.byteLength,i=e.byteLength;let r=0,s=0;for(;r<n;){const o=t[r];if(r++,o<128)break}if(i&&r>=n)throw new Error("invalid snappy length header");for(;r<n;){const o=t[r];let a=0;if(r++,r>=n)throw new Error("missing eof marker");if((o&3)===0){let l=(o>>>2)+1;if(l>60){if(r+3>=n)throw new Error("snappy error literal pos + 3 >= inputLength");const c=l-60;l=t[r]+(t[r+1]<<8)+(t[r+2]<<16)+(t[r+3]<<24),l=(l&CP[c])+1,r+=c}if(r+l>n)throw new Error("snappy error literal exceeds input length");_E(t,r,e,s,l),r+=l,s+=l}else{let l=0;switch(o&3){case 1:a=(o>>>2&7)+4,l=t[r]+(o>>>5<<8),r++;break;case 2:if(n<=r+1)throw new Error("snappy error end of input");a=(o>>>2)+1,l=t[r]+(t[r+1]<<8),r+=2;break;case 3:if(n<=r+3)throw new Error("snappy error end of input");a=(o>>>2)+1,l=t[r]+(t[r+1]<<8)+(t[r+2]<<16)+(t[r+3]<<24),r+=4;break}if(l===0||isNaN(l))throw new Error(`invalid offset ${l} pos ${r} inputLength ${n}`);if(l>s)throw new Error("cannot copy from before start of buffer");_E(e,s-l,e,s,a),s+=a}}if(s!==i)throw new Error("premature end of input")}function IP(t,e,{type:n,element:i,schemaPath:r}){const s=new DataView(t.buffer,t.byteOffset,t.byteLength),o={view:s,offset:0};let a;const l=bP(o,e,r),{definitionLevels:c,numNulls:f}=xP(o,e,r),u=e.num_values-f;if(e.encoding==="PLAIN")a=oh(o,n,u,i.type_length);else if(e.encoding==="PLAIN_DICTIONARY"||e.encoding==="RLE_DICTIONARY"||e.encoding==="RLE"){const h=n==="BOOLEAN"?1:s.getUint8(o.offset++);h?(a=new Array(u),n==="BOOLEAN"?(Hn(o,h,a),a=a.map(A=>!!A)):Hn(o,h,a,s.byteLength-o.offset)):a=new Uint8Array(u)}else if(e.encoding==="BYTE_STREAM_SPLIT")a=UE(o,u,n,i.type_length);else if(e.encoding==="DELTA_BINARY_PACKED")a=n==="INT32"?new Int32Array(u):new BigInt64Array(u),bo(o,u,a);else if(e.encoding==="DELTA_LENGTH_BYTE_ARRAY")a=new Array(u),OE(o,u,a);else throw new Error(`parquet unsupported encoding: ${e.encoding}`);return{definitionLevels:c,repetitionLevels:l,dataPage:a}}function bP(t,e,n){if(n.length>1){const i=xE(n);if(i){const r=new Array(e.num_values);return Hn(t,Kc(i),r),r}}return[]}function xP(t,e,n){const i=eh(n);if(!i)return{definitionLevels:[],numNulls:0};const r=new Array(e.num_values);Hn(t,Kc(i),r);let s=e.num_values;for(const o of r)o===i&&s--;return s===0&&(r.length=0),{definitionLevels:r,numNulls:s}}function ah(t,e,n,i){let r;const s=i?.[n];if(n==="UNCOMPRESSED")r=t;else if(s)r=s(t,e);else if(n==="SNAPPY")r=new Uint8Array(e),EP(t,r);else throw new Error(`parquet unsupported compression codec: ${n}`);if(r?.length!==e)throw new Error(`parquet decompressed page length ${r?.length} does not match header ${e}`);return r}function BP(t,e,n){const r={view:new DataView(t.buffer,t.byteOffset,t.byteLength),offset:0},{type:s,element:o,schemaPath:a,codec:l,compressors:c}=n,f=e.data_page_header_v2;if(!f)throw new Error("parquet data page header v2 is undefined");const u=vP(r,f,a);r.offset=f.repetition_levels_byte_length;const h=SP(r,f,a),A=e.uncompressed_page_size-f.definition_levels_byte_length-f.repetition_levels_byte_length;let d=t.subarray(r.offset);f.is_compressed!==!1&&(d=ah(d,A,l,c));const g=new DataView(d.buffer,d.byteOffset,d.byteLength),m={view:g,offset:0};let p;const w=f.num_values-f.num_nulls;if(f.encoding==="PLAIN")p=oh(m,s,w,o.type_length);else if(f.encoding==="RLE")p=new Array(w),Hn(m,1,p),p=p.map(C=>!!C);else if(f.encoding==="PLAIN_DICTIONARY"||f.encoding==="RLE_DICTIONARY"){const C=g.getUint8(m.offset++);p=new Array(w),Hn(m,C,p,A-1)}else if(f.encoding==="DELTA_BINARY_PACKED")p=s==="INT32"?new Int32Array(w):new BigInt64Array(w),bo(m,w,p);else if(f.encoding==="DELTA_LENGTH_BYTE_ARRAY")p=new Array(w),OE(m,w,p);else if(f.encoding==="DELTA_BYTE_ARRAY")p=new Array(w),cP(m,w,p);else if(f.encoding==="BYTE_STREAM_SPLIT")p=UE(m,w,s,o.type_length);else throw new Error(`parquet unsupported encoding: ${f.encoding}`);return{definitionLevels:h,repetitionLevels:u,dataPage:p}}function vP(t,e,n){const i=xE(n);if(!i)return[];const r=new Array(e.num_values);return Hn(t,Kc(i),r,e.repetition_levels_byte_length),r}function SP(t,e,n){const i=eh(n);if(i){const r=new Array(e.num_values);return Hn(t,Kc(i),r,e.definition_levels_byte_length),r}}function GE(t,{groupStart:e,selectStart:n,selectEnd:i},r,s){const{pathInSchema:o,schemaPath:a}=r,l=BE(a),c=[];let f,u,h=0,A=0;const d=s&&(()=>{u&&s({pathInSchema:o,columnData:u,rowStart:e+h-u.length,rowEnd:e+h})});for(;(l?h<i:t.offset<t.view.byteLength-1)&&!(t.offset>=t.view.byteLength-1);){const g=QP(t);if(g.type==="DICTIONARY_PAGE"){const{data:m}=zE(t,g,r,f,void 0,0);m&&(f=yE(m,r))}else{const m=u?.length||0,p=zE(t,g,r,f,u,n-h);p.skipped?(c.length||(A+=p.skipped),h+=p.skipped):p.data&&u===p.data?h+=p.data.length-m:p.data&&p.data.length&&(d?.(),c.push(p.data),h+=p.data.length,u=p.data)}}return d?.(),{data:c,skipped:A}}function zE(t,e,n,i,r,s){const{type:o,element:a,schemaPath:l,codec:c,compressors:f}=n,u=new Uint8Array(t.view.buffer,t.view.byteOffset+t.offset,e.compressed_page_size);if(t.offset+=e.compressed_page_size,e.type==="DATA_PAGE"){const h=e.data_page_header;if(!h)throw new Error("parquet data page header is undefined");if(s>h.num_values&&BE(l))return{skipped:h.num_values};const A=ah(u,Number(e.uncompressed_page_size),c,f),{definitionLevels:d,repetitionLevels:g,dataPage:m}=IP(A,h,n),p=wE(m,i,h.encoding,n),w=Array.isArray(r)?r:[];return{skipped:0,data:TE(w,d,g,p,l)}}else if(e.type==="DATA_PAGE_V2"){const h=e.data_page_header_v2;if(!h)throw new Error("parquet data page header v2 is undefined");if(s>h.num_rows)return{skipped:h.num_values};const{definitionLevels:A,repetitionLevels:d,dataPage:g}=BP(u,e,n),m=wE(g,i,h.encoding,n),p=Array.isArray(r)?r:[];return{skipped:0,data:TE(p,A,d,m,l)}}else if(e.type==="DICTIONARY_PAGE"){const h=e.dictionary_page_header;if(!h)throw new Error("parquet dictionary page header is undefined");const A=ah(u,Number(e.uncompressed_page_size),c,f),d={view:new DataView(A.buffer,A.byteOffset,A.byteLength),offset:0};return{skipped:0,data:oh(d,o,h.num_values,a.type_length)}}else throw new Error(`parquet unsupported page type: ${e.type}`)}function QP(t){const e=th(t),n=gE[e.field_1],i=e.field_2,r=e.field_3,s=e.field_4,o=e.field_5&&{num_values:e.field_5.field_1,encoding:ki[e.field_5.field_2],definition_level_encoding:ki[e.field_5.field_3],repetition_level_encoding:ki[e.field_5.field_4],statistics:e.field_5.field_5&&{max:e.field_5.field_5.field_1,min:e.field_5.field_5.field_2,null_count:e.field_5.field_5.field_3,distinct_count:e.field_5.field_5.field_4,max_value:e.field_5.field_5.field_5,min_value:e.field_5.field_5.field_6}},a=e.field_6,l=e.field_7&&{num_values:e.field_7.field_1,encoding:ki[e.field_7.field_2],is_sorted:e.field_7.field_3},c=e.field_8&&{num_values:e.field_8.field_1,num_nulls:e.field_8.field_2,num_rows:e.field_8.field_3,encoding:ki[e.field_8.field_4],definition_levels_byte_length:e.field_8.field_5,repetition_levels_byte_length:e.field_8.field_6,is_compressed:e.field_8.field_7===void 0?!0:e.field_8.field_7,statistics:e.field_8.field_8};return{type:n,uncompressed_page_size:i,compressed_page_size:r,crc:s,data_page_header:o,index_page_header:a,dictionary_page_header:l,data_page_header_v2:c}}function DP(t){const e=th(t);return{page_locations:e.field_1.map(kP),unencoded_byte_array_data_bytes:e.field_2}}function kP(t){return{offset:t.field_1,compressed_page_size:t.field_2,first_row_index:t.field_3}}function FP(t,{metadata:e},n){const{file:i,compressors:r,utf8:s}=t,o=[],a={...zc,...t.parsers};for(const l of n.chunks){const{columnMetadata:c}=l,f=bE(e.schema,c.path_in_schema),u={pathInSchema:c.path_in_schema,type:c.type,element:f[f.length-1].element,schemaPath:f,codec:c.codec,parsers:a,compressors:r,utf8:s};if(!("offsetIndex"in l)){o.push({pathInSchema:c.path_in_schema,data:Promise.resolve(i.slice(l.range.startByte,l.range.endByte)).then(h=>{const A={view:new DataView(h),offset:0};return GE(A,n,u,t.onPage)})});continue}o.push({pathInSchema:c.path_in_schema,data:Promise.resolve(i.slice(l.offsetIndex.startByte,l.offsetIndex.endByte)).then(async h=>{const A=DP({view:new DataView(h),offset:0}),{selectStart:d,selectEnd:g}=n,m=A.page_locations;let p=NaN,w=NaN,C=0;for(let Q=0;Q<m.length;Q++){const v=m[Q],F=Number(v.first_row_index),R=Q+1<m.length?Number(m[Q+1].first_row_index):n.groupRows;F<g&&R>d&&(Number.isNaN(p)&&(p=Number(v.offset),C=F),w=Number(v.offset)+v.compressed_page_size)}const y=await i.slice(p,w),b={view:new DataView(y),offset:0},x=C?{...n,groupStart:n.groupStart+C,selectStart:n.selectStart-C,selectEnd:n.selectEnd-C}:n,{data:I,skipped:S}=GE(b,x,u,t.onPage);return{data:I,skipped:C+S}})})}return{groupStart:n.groupStart,groupRows:n.groupRows,asyncColumns:o}}function RP(t,e,n){const{asyncColumns:i}=t;n={...zc,...n};const r=[];for(const s of e.children)if(s.children.length){const o=i.filter(c=>c.pathInSchema[0]===s.element.name);if(!o.length)continue;const a=new Map,l=Promise.all(o.map(c=>c.data.then(({data:f})=>{a.set(c.pathInSchema.join("."),eP(f))}))).then(()=>{Io(a,s,n);const c=a.get(s.path.join("."));if(!c)throw new Error("parquet column data not assembled");return{data:[c],skipped:0}});r.push({pathInSchema:s.path,data:l})}else{const o=i.find(a=>a.pathInSchema[0]===s.element.name);o&&r.push(o)}return{...t,asyncColumns:r}}const HE=new Map,NP=200;function MP(t){if(!t.metadata)throw new Error("parquet requires metadata");const e=nP(t);return t.file=iP(t.file,e),e.groups.map(n=>FP(t,e,n))}function TP(t){if(!t)return[];if(t.length===1)return t[0];let e=0;for(const r of t)e+=r.length;const n=Array(e);let i=0;for(const r of t){for(let s=0;s<r.length;s++)n[i+s]=r[s];i+=r.length}return n}function PP(t){const e=t.join(""),n=HE.get(e);if(n)return n;const i=t.map((s,o)=>JSON.stringify(s)+": columnData["+o+"][row - columnSkipped["+o+"]]").join(`,
|
|
830
|
+
`),r=new Function("groupData","selectStart","selectCount","columnData","columnSkipped",`for (let selectRow = 0; selectRow < selectCount; selectRow++) {
|
|
831
|
+
const row = selectStart + selectRow;
|
|
832
|
+
groupData[selectRow] = {
|
|
833
|
+
`+i+`
|
|
834
|
+
};
|
|
835
|
+
}
|
|
836
|
+
return groupData;`);return HE.set(e,r),r}function LP(t,e,n,i,r,s){for(let o=0;o<n;o++){const a=e+o,l={};for(let c=0;c<i.length;c++)l[i[c]]=r[c][a-s[c]];t[o]=l}return t}async function OP({asyncColumns:t},e,n){const i=await Promise.all(t.map(u=>u.data)),r=t.length,s=Array(r),o=Array(r),a=Array(r);for(let u=0;u<r;u++)s[u]=t[u].pathInSchema[0],o[u]=TP(i[u].data),a[u]=i[u].skipped;const l=n-e,c=Array(l);return r>NP?LP(c,e,l,s,o,a):PP(s)(c,e,l,o,a)}async function YE(t){if("rowFormat"in t)throw new Error('parquetRead supports only object rows; use rowFormat: "object" implicitly');if("filter"in t||"filterStrict"in t)throw new Error("parquetRead does not support filtering");t.metadata??=await X9(t.file,t);const{rowStart:e=0,rowEnd:n,onChunk:i,onComplete:r}=t,s=MP(t);if(!r&&!i){for(const{asyncColumns:l}of s)for(const{data:c}of l)await c;return}const o=DE(t.metadata),a=s.map(l=>RP(l,o,t.parsers));if(i)for(const l of a)for(const c of l.asyncColumns)c.data.then(f=>{let u=l.groupStart+f.skipped;for(const h of f.data)i({columnName:c.pathInSchema[0],columnData:h,rowStart:u,rowEnd:u+h.length}),u+=h.length});if(r){const l=[];for(const c of a){const f=Math.max(e-c.groupStart,0),u=Math.min((n??1/0)-c.groupStart,c.groupRows),h=await OP(c,f,u);FE(l,h)}r(l)}else for(const{asyncColumns:l}of a)for(const{data:c}of l)await c}function UP(t){return new Promise((e,n)=>{YE({...t,onComplete:e}).catch(n)})}const _P=Object.freeze(Object.defineProperty({__proto__:null,parquetRead:YE,parquetReadObjects:UP},Symbol.toStringTag,{value:"Module"}));bt.GenomeSpy=hw,bt.embed=_N,bt.favIcon=UN,bt.html=ce,bt.icon=ON,bt.loadSpec=dw,Object.defineProperty(bt,Symbol.toStringTag,{value:"Module"})}));
|