@mappedin/react-native-sdk 6.0.0-alpha.6 → 6.0.0-alpha.7
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/commonjs/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +2 -2
package/dist/commonjs/index.js
CHANGED
|
@@ -6,7 +6,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
6
6
|
}
|
|
7
7
|
`)}};ae=new WeakMap,wt=new WeakMap;c();c();c();var K0=tt(L6(),1);c();c();c();var I5=tt(O5(),1);c();var j4=class{constructor({origin:t,destination:e,vortex:l,elevationDelta:n=0,distance:a=0,angle:r=0}){q(this,"origin");q(this,"destination");q(this,"vortex");q(this,"distance");q(this,"angle");q(this,"weight");this.origin=t,this.destination=e,this.vortex=l,this.distance=a,this.angle=r;let o,s;if(l?(this.distance=0,this.angle=0,l.weight!==void 0&&l.weight>0?o=l.weight:o=l.type==="elevator"?2e3:1e3,s=l.multiplier&&l.multiplier>=1?l.multiplier:1,this.weight=n*s+o):(o=e.weight&&e.weight>=0?e.weight:0,s=e.multiplier&&e.multiplier>=1?e.multiplier:1,this.weight=this.distance*s+o),isNaN(this.angle))throw new Error("nan angle")}},v3=j4;function d9(i){if(i.scale||i.x_scale)return 1/(i.scale||i.x_scale||1);try{if(!i.georeference)throw new Error(`map ${i.name||i.shortName||i.id} does not have a georeference field`);if(i.georeference.length<3)throw new Error(`map ${i.name||i.shortName||i.id} has less than 3 georeference points, we require at least 3 for proper map scaling`);let t=i.georeference[0],e=i.georeference[2],l=(0,I5.getDistance)({latitude:t.target.x,longitude:t.target.y},{latitude:e.target.x,longitude:e.target.y}),n=t.control.x-e.control.x,a=t.control.y-e.control.y;return Math.sqrt(n*n+a*a)/l}catch(t){return A.error(t),1}}function p9(i,t){let e=i.x-t.x,l=i.y-t.y;return(Math.atan2(l,e)+Math.PI*2.5)%(Math.PI*2)}var U4=class{constructor({nodes:t,vortexes:e,maps:l,showVortexNames:n=!1}){q(this,"edges");q(this,"nodesById");q(this,"mapsById");this.edges={},this.mapsById=l.map(o=>z(S({},o),{_scale:d9(o)})).reduce((o,s)=>(o[s.id]=s,o),{});let a=t.filter(o=>!!this.mapsById[o.map]).map(o=>z(S({},o),{paths:o.paths?o.paths.filter(({map:s})=>s===o.map):[]}));this.nodesById=a.reduce((o,s)=>(o[s.id]=s,o),{});for(let o in this.nodesById)this.nodesById.hasOwnProperty(o)&&(this.nodesById[o].paths=this.nodesById[o].paths.filter(({node:s})=>!!this.nodesById[s]));let r=e.map(o=>z(S({},o),{name:n?o.name:o.type,nodes:o.nodes?o.nodes.filter(s=>!!this.nodesById[s]):[]}));a.forEach(o=>{this.edges[o.id]=o.paths.map(({node:s})=>{let h=this.nodesById[s];return new v3({angle:p9(o,h),destination:h,distance:this.getDistance(o,h),origin:o})})}),r.forEach(o=>{if(o.nodes==null||o.nodes.length===0)return;let s=0;for(;s<o.nodes.length-1;){let h=this.nodesById[o.nodes[s]];if(s++,h==null)continue;let u=s;for(;u<o.nodes.length;){let d=this.nodesById[o.nodes[u]];if(u++,d==null)continue;let p=this.mapsById[h.map].elevation||0,x=this.mapsById[d.map].elevation||0,f=Math.abs(p-x);this.edges[h.id].push(new v3({destination:d,elevationDelta:f,origin:h,vortex:o})),this.edges[d.id].push(new v3({destination:h,elevationDelta:f,origin:d,vortex:o}))}}})}aStar(t,e,l){let n=t.map(h=>this.nodesById[h]).filter(h=>h),a=e.map(h=>this.nodesById[h]).filter(h=>h);if(n.length===0||a.length===0)return[];let r=[],o={},s={};for(n.forEach(h=>{let u=this.getShortestEuclideanDistance(h,a);r.push({origin:h,priority:u}),o[h.id]=null,s[h.id]=0}),r.sort((h,u)=>h.priority-u.priority);r.length>0;){let h=r[0];if(a.includes(h.origin)){let u=[],d=o[h.origin.id];for(;d!=null;){u.push(d);let p=o[d.origin.id];p!=null?d=p:d=null}return u.reverse()}for(let u of this.edges[h.origin.id]){let d=u.vortex&&u.vortex.accessible===!1;if(l&&(d||u.origin.accessible===!1||u.destination.accessible===!1))continue;let p=s[h.origin.id]+u.weight;if(s[u.destination.id]==null||p<s[u.destination.id]){s[u.destination.id]=p;let x=p+this.getShortestEuclideanDistance(u.destination,a);r.push({origin:u.destination,priority:x}),o[u.destination.id]=u}}r.splice(0,1),r.sort((u,d)=>u.priority-d.priority)}return[]}getDistance(t,e){let l=t.x-e.x,n=t.y-e.y,a=l*l+n*n,r;return this.mapsById[t.map]==null?r=1:r=this.mapsById[t.map]._scale,Math.sqrt(a)/r}getShortestEuclideanDistance(t,e){return e.reduce((l,n)=>{let a=this.getDistance(t,n);return Math.min(l,a)},Number.MAX_VALUE)}},H4=U4;c();c();var bt=(a=>(a.DEPARTURE="Departure",a.TAKEVORTEX="TakeVortex",a.EXITVORTEX="ExitVortex",a.TURN="Turn",a.ARRIVAL="Arrival",a))(bt||{}),St=(a=>(a.STRAIGHT="Straight",a.RIGHT="Right",a.SLIGHTRIGHT="SlightRight",a.LEFT="Left",a.SLIGHTLEFT="SlightLeft",a))(St||{});function x9(i){switch(i){case"down":case"up":return`${i} `;default:return""}}var G4=class{constructor({origin:t,action:e,distance:l,atLocation:n,instruction:a}){q(this,"node");q(this,"instruction");q(this,"action");q(this,"atLocation");q(this,"type");q(this,"distance",0);this.node=t,this.action=e,this.distance=l||0,this.atLocation=n,this.instruction="",a?this.instruction=a:(e!=null&&e.type==="Departure"?n!=null?this.instruction=`Depart from ${n.name}`:this.instruction="Depart from current location":e!=null&&e.type==="Arrival"?n!=null?this.instruction=`Arrive at ${n.name}`:this.instruction="Arrive at destination":e!=null&&e.type==="TakeVortex"?this.instruction=`Take ${n&&n.name} ${x9(e.direction)}to ${e.toMap.name}`:e!=null&&e.type==="ExitVortex"?this.instruction=`Exit ${n&&n.name} at ${e.toMap.name}`:e!=null&&e.bearing==="Right"?this.instruction="Turn right":e!=null&&e.bearing==="SlightRight"?this.instruction="Turn slightly right":e!=null&&e.bearing==="Straight"?this.instruction="Head straight":e!=null&&e.bearing==="SlightLeft"?this.instruction="Turn slightly left":e!=null&&e.bearing==="Left"&&(this.instruction="Turn left"),e!=null&&e.type==="Turn"&&n&&(this.instruction+=` at ${n.name}`))}},it=G4;var E3=Math.PI*.1;function M3(i,t){return((t-i+Math.PI)%(Math.PI*2)+Math.PI*2)%(Math.PI*2)-Math.PI}var W4=class{constructor({locations:t,nodes:e,vortexes:l,maps:n,showVortexNames:a}){q(this,"graph");q(this,"locationsByNodeId");this.graph=new H4({maps:n,nodes:e,showVortexNames:a,vortexes:l}),this.locationsByNodeId=t.reduce((r,o)=>(o.nodes&&o.nodes.forEach(s=>{r[s.node]=o}),o.polygons&&o.polygons.forEach(s=>{s.entrances&&s.entrances.forEach(h=>{r[h]=o})}),r),{})}getClosestLocationInRay(t,e=Math.PI*.5,l=10){let n=0,a=0,r=t;for(;Math.abs(n)<e&&a<l;){let o=this.graph.edges[r.destination.id],s=null,h=0;for(let u of o)if(u.distance>0)if(s!=null){let d=-M3(r.angle,u.angle);Math.abs(d)<Math.abs(h)&&(s=u,h=d)}else s=u,h=-M3(r.angle,u.angle);if(s!=null){if(Math.abs(h)>=e||(n+=h,a+=s.distance,Math.abs(n)>=e||a>l))return null;let u=this.locationsByNodeId[s.destination.id];if(u!=null)return u;r=s}else return null}return null}getDirections({originIds:t,destinationNodeIds:e,accessible:l,departFrom:n,arriveAt:a}){let r=this.graph.aStar(t,e,l);if(r.length===0)return{distance:0,instructions:[new it({distance:0,instruction:"No Valid Path Available"})],path:[]};let o=0,s=new Array(r.length+1);for(let y=0;y<r.length;y++)s[y]=r[y].origin;s[r.length]=r[r.length-1].destination;let h=[],u=null,d=null,p=0,x=0;for(let y=0;y<r.length;y++){let w=r[y],C=w.origin,N=w.destination;if(o+=w.distance,p+=(d==null?void 0:d.distance)||0,y===0&&h.push(new it({action:{type:"Departure"},atLocation:n,distance:0,origin:C})),w.vortex!=null){let T=this.graph.mapsById[C.map],O=this.graph.mapsById[N.map],L="none";if(T.elevation!=null&&O.elevation!=null){let B=T.elevation-O.elevation;B>0?L="down":B<0&&(L="up")}h.push(new it({action:{direction:L,fromMap:T,toMap:O,type:"TakeVortex"},atLocation:w.vortex,distance:p,origin:C})),x+=p,p=0}else if(u!=null&&d!=null)if(d.vortex!=null){let T=this.graph.mapsById[u.map],O=this.graph.mapsById[d.destination.map];h.push(new it({action:{fromMap:T,toMap:O,type:"ExitVortex"},atLocation:d.vortex,distance:p,origin:C})),x+=p,p=0}else{let O=this.graph.edges[C.id].filter(L=>L.destination!==u&&L.destination!==w.destination);if(O.length>0){let L=-M3(d.angle,w.angle),B=O.reduce((k,D)=>{let U=-M3(w.angle,D.angle);return Math.min(k,Math.abs(U))},Math.PI);if(Math.abs(L)>=E3||Math.abs(B)<=E3){let k;L<=-Math.PI/4?k="Right":L<=-E3?k="SlightRight":L<=E3?k="Straight":L<=Math.PI/4?k="SlightLeft":k="Left";let D=this.locationsByNodeId[C.id];if(D||(D=this.getClosestLocationInRay(d,Math.PI*.5,10)),D!=null){let U=new it({action:{bearing:k,referencePosition:"At",type:"Turn"},atLocation:D,distance:p,origin:C});U.type=k,h.push(U)}else h.push(new it({action:{bearing:k,referencePosition:"At",type:"Turn"},distance:p,origin:C}));x+=p,p=0}}}y===r.length-1&&(h.push(new it({action:{type:"Arrival"},atLocation:a,distance:o-x<0?0:o-x,origin:w.destination})),x+=p,p=0),u=C,d=w}let f=[],g=null,_=5;for(let y=h.length-1;y>=0;y--){let w=h[y],{action:C}=w;C&&C.type==="TakeVortex"?(g=w.node,f.unshift(w)):C&&C.type==="Turn"&&g!=null?this.graph.getDistance(w.node,g)>_&&f.unshift(w):f.unshift(w)}return{distance:o,instructions:f,path:s}}},Y4=W4;c();c();c();c();function z5(i){let t=+this._x.call(null,i),e=+this._y.call(null,i);return N5(this.cover(t,e),t,e,i)}function N5(i,t,e,l){if(isNaN(t)||isNaN(e))return i;var n,a=i._root,r={data:l},o=i._x0,s=i._y0,h=i._x1,u=i._y1,d,p,x,f,g,_,y,w;if(!a)return i._root=r,i;for(;a.length;)if((g=t>=(d=(o+h)/2))?o=d:h=d,(_=e>=(p=(s+u)/2))?s=p:u=p,n=a,!(a=a[y=_<<1|g]))return n[y]=r,i;if(x=+i._x.call(null,a.data),f=+i._y.call(null,a.data),t===x&&e===f)return r.next=a,n?n[y]=r:i._root=r,i;do n=n?n[y]=new Array(4):i._root=new Array(4),(g=t>=(d=(o+h)/2))?o=d:h=d,(_=e>=(p=(s+u)/2))?s=p:u=p;while((y=_<<1|g)===(w=(f>=p)<<1|x>=d));return n[w]=a,n[y]=r,i}function B5(i){var t,e,l=i.length,n,a,r=new Array(l),o=new Array(l),s=1/0,h=1/0,u=-1/0,d=-1/0;for(e=0;e<l;++e)isNaN(n=+this._x.call(null,t=i[e]))||isNaN(a=+this._y.call(null,t))||(r[e]=n,o[e]=a,n<s&&(s=n),n>u&&(u=n),a<h&&(h=a),a>d&&(d=a));if(s>u||h>d)return this;for(this.cover(s,h).cover(u,d),e=0;e<l;++e)N5(this,r[e],o[e],i[e]);return this}c();function D5(i,t){if(isNaN(i=+i)||isNaN(t=+t))return this;var e=this._x0,l=this._y0,n=this._x1,a=this._y1;if(isNaN(e))n=(e=Math.floor(i))+1,a=(l=Math.floor(t))+1;else{for(var r=n-e||1,o=this._root,s,h;e>i||i>=n||l>t||t>=a;)switch(h=(t<l)<<1|i<e,s=new Array(4),s[h]=o,o=s,r*=2,h){case 0:n=e+r,a=l+r;break;case 1:e=n-r,a=l+r;break;case 2:n=e+r,l=a-r;break;case 3:e=n-r,l=a-r;break}this._root&&this._root.length&&(this._root=o)}return this._x0=e,this._y0=l,this._x1=n,this._y1=a,this}c();function R5(){var i=[];return this.visit(function(t){if(!t.length)do i.push(t.data);while(t=t.next)}),i}c();function k5(i){return arguments.length?this.cover(+i[0][0],+i[0][1]).cover(+i[1][0],+i[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]}c();c();function t1(i,t,e,l,n){this.node=i,this.x0=t,this.y0=e,this.x1=l,this.y1=n}function F5(i,t,e){var l,n=this._x0,a=this._y0,r,o,s,h,u=this._x1,d=this._y1,p=[],x=this._root,f,g;for(x&&p.push(new t1(x,n,a,u,d)),e==null?e=1/0:(n=i-e,a=t-e,u=i+e,d=t+e,e*=e);f=p.pop();)if(!(!(x=f.node)||(r=f.x0)>u||(o=f.y0)>d||(s=f.x1)<n||(h=f.y1)<a))if(x.length){var _=(r+s)/2,y=(o+h)/2;p.push(new t1(x[3],_,y,s,h),new t1(x[2],r,y,_,h),new t1(x[1],_,o,s,y),new t1(x[0],r,o,_,y)),(g=(t>=y)<<1|i>=_)&&(f=p[p.length-1],p[p.length-1]=p[p.length-1-g],p[p.length-1-g]=f)}else{var w=i-+this._x.call(null,x.data),C=t-+this._y.call(null,x.data),N=w*w+C*C;if(N<e){var T=Math.sqrt(e=N);n=i-T,a=t-T,u=i+T,d=t+T,l=x.data}}return l}c();function V5(i){if(isNaN(u=+this._x.call(null,i))||isNaN(d=+this._y.call(null,i)))return this;var t,e=this._root,l,n,a,r=this._x0,o=this._y0,s=this._x1,h=this._y1,u,d,p,x,f,g,_,y;if(!e)return this;if(e.length)for(;;){if((f=u>=(p=(r+s)/2))?r=p:s=p,(g=d>=(x=(o+h)/2))?o=x:h=x,t=e,!(e=e[_=g<<1|f]))return this;if(!e.length)break;(t[_+1&3]||t[_+2&3]||t[_+3&3])&&(l=t,y=_)}for(;e.data!==i;)if(n=e,!(e=e.next))return this;return(a=e.next)&&delete e.next,n?(a?n.next=a:delete n.next,this):t?(a?t[_]=a:delete t[_],(e=t[0]||t[1]||t[2]||t[3])&&e===(t[3]||t[2]||t[1]||t[0])&&!e.length&&(l?l[y]=e:this._root=e),this):(this._root=a,this)}function j5(i){for(var t=0,e=i.length;t<e;++t)this.remove(i[t]);return this}c();function U5(){return this._root}c();function H5(){var i=0;return this.visit(function(t){if(!t.length)do++i;while(t=t.next)}),i}c();function G5(i){var t=[],e,l=this._root,n,a,r,o,s;for(l&&t.push(new t1(l,this._x0,this._y0,this._x1,this._y1));e=t.pop();)if(!i(l=e.node,a=e.x0,r=e.y0,o=e.x1,s=e.y1)&&l.length){var h=(a+o)/2,u=(r+s)/2;(n=l[3])&&t.push(new t1(n,h,u,o,s)),(n=l[2])&&t.push(new t1(n,a,u,h,s)),(n=l[1])&&t.push(new t1(n,h,r,o,u)),(n=l[0])&&t.push(new t1(n,a,r,h,u))}return this}c();function W5(i){var t=[],e=[],l;for(this._root&&t.push(new t1(this._root,this._x0,this._y0,this._x1,this._y1));l=t.pop();){var n=l.node;if(n.length){var a,r=l.x0,o=l.y0,s=l.x1,h=l.y1,u=(r+s)/2,d=(o+h)/2;(a=n[0])&&t.push(new t1(a,r,o,u,d)),(a=n[1])&&t.push(new t1(a,u,o,s,d)),(a=n[2])&&t.push(new t1(a,r,d,u,h)),(a=n[3])&&t.push(new t1(a,u,d,s,h))}e.push(l)}for(;l=e.pop();)i(l.node,l.x0,l.y0,l.x1,l.y1);return this}c();function Y5(i){return i[0]}function X5(i){return arguments.length?(this._x=i,this):this._x}c();function Z5(i){return i[1]}function J5(i){return arguments.length?(this._y=i,this):this._y}function ce(i,t,e){var l=new X4(t==null?Y5:t,e==null?Z5:e,NaN,NaN,NaN,NaN);return i==null?l:l.addAll(i)}function X4(i,t,e,l,n,a){this._x=i,this._y=t,this._x0=e,this._y0=l,this._x1=n,this._y1=a,this._root=void 0}function $5(i){for(var t={data:i.data},e=t;i=i.next;)e=e.next={data:i.data};return t}var q1=ce.prototype=X4.prototype;q1.copy=function(){var i=new X4(this._x,this._y,this._x0,this._y0,this._x1,this._y1),t=this._root,e,l;if(!t)return i;if(!t.length)return i._root=$5(t),i;for(e=[{source:t,target:i._root=new Array(4)}];t=e.pop();)for(var n=0;n<4;++n)(l=t.source[n])&&(l.length?e.push({source:l,target:t.target[n]=new Array(4)}):t.target[n]=$5(l));return i};q1.add=z5;q1.addAll=B5;q1.cover=D5;q1.data=R5;q1.extent=k5;q1.find=F5;q1.remove=V5;q1.removeAll=j5;q1.root=U5;q1.size=H5;q1.visit=G5;q1.visitAfter=W5;q1.x=X5;q1.y=J5;var z1,K,ft=class{constructor(t){v(this,z1,void 0);q(this,"categories");q(this,"locations");q(this,"vortexes");q(this,"maps");q(this,"nodes");q(this,"polygons");q(this,"events");q(this,"mapGroups");q(this,"locationStates");q(this,"rankings");v(this,K,{});E(this,z1,t)}get polygonsByMapId(){if(m(this,K).polygonsByMapId)return m(this,K).polygonsByMapId;let t={},e;for(let n=0,a=m(this,z1).polygons.length;n<a;++n)e=m(this,z1).polygons[n],t[e.map.id]||(t[e.map.id]=[]),t[e.map.id].push(e);let l=Object.entries(t).reduce((n,[a,r])=>(n.set(a,r),n),new Map);return m(this,K).polygonsByMapId=l,m(this,K).polygonsByMapId}get nodesByMapId(){if(m(this,K).nodesByMapId)return m(this,K).nodesByMapId;let t={},e;for(let n=0,a=m(this,z1).nodes.length;n<a;++n)e=m(this,z1).nodes[n],t[e.map.id]||(t[e.map.id]=[]),t[e.map.id].push(e);let l=Object.entries(t).reduce((n,[a,r])=>(n.set(a,r),n),new Map);return m(this,K).nodesByMapId=l,m(this,K).nodesByMapId}findNearestNodeOnMap(t,e){var n;if(m(this,K).nodeTreesByMap||(m(this,K).nodeTreesByMap=new Map),!m(this,K).nodeTreesByMap.has(t)){let a=(n=this.nodesByMapId.get(t))!=null?n:[],r=ce();r.x(o=>o.x),r.y(o=>o.y),r.addAll(a),m(this,K).nodeTreesByMap.set(t,r)}return m(this,K).nodeTreesByMap.get(t).find(e.x,e.y)}get locationsByMapId(){if(m(this,K).locationsByMapId)return m(this,K).locationsByMapId;let t={},e;for(let n=0,a=m(this,z1).locations.length;n<a;++n){e=m(this,z1).locations[n];for(let r=0,o=e.polygons.length;r<o;++r)t[e.polygons[r].map.id]||(t[e.polygons[r].map.id]=[]),t[e.polygons[r].map.id].push(e)}let l=Object.entries(t).reduce((n,[a,r])=>(n.set(a,r),n),new Map);return m(this,K).locationsByMapId=l,m(this,K).locationsByMapId}static create(t){return ft.instances.has(t)||ft.instances.set(t,new ft(t)),ft.instances.get(t)}static clear(){ft.instances.clear()}},w3=ft;z1=new WeakMap,K=new WeakMap,q(w3,"instances",new Map);var f1=w3;c();c();c();c();var K5="\u202F",h1=class{static get separator(){return K5}static set separator(t){K5=t}static parse(t){if(!isNaN(parseFloat(t))&&isFinite(t))return Number(t);let e=String(t).trim().replace(/^-/,"").replace(/[NSEW]$/i,"").split(/[^0-9.,]+/);if(e[e.length-1]==""&&e.splice(e.length-1),e=="")return NaN;let l=null;switch(e.length){case 3:l=e[0]/1+e[1]/60+e[2]/3600;break;case 2:l=e[0]/1+e[1]/60;break;case 1:l=e[0];break;default:return NaN}return/^-|[WS]$/i.test(t.trim())&&(l=-l),Number(l)}static toDms(t,e="d",l=void 0){if(isNaN(t)||typeof t=="string"&&t.trim()==""||typeof t=="boolean"||t==1/0||t==null)return null;if(l===void 0)switch(e){case"d":case"deg":l=4;break;case"dm":case"deg+min":l=2;break;case"dms":case"deg+min+sec":l=0;break;default:e="d",l=4;break}t=Math.abs(t);let n=null,a=null,r=null,o=null;switch(e){default:case"d":case"deg":a=t.toFixed(l),a<100&&(a="0"+a),a<10&&(a="0"+a),n=a+"\xB0";break;case"dm":case"deg+min":a=Math.floor(t),r=(t*60%60).toFixed(l),r==60&&(r=0 .toFixed(l),a++),a=("000"+a).slice(-3),r<10&&(r="0"+r),n=a+"\xB0"+h1.separator+r+"\u2032";break;case"dms":case"deg+min+sec":a=Math.floor(t),r=Math.floor(t*3600/60)%60,o=(t*3600%60).toFixed(l),o==60&&(o=0 .toFixed(l),r++),r==60&&(r=0,a++),a=("000"+a).slice(-3),r=("00"+r).slice(-2),o<10&&(o="0"+o),n=a+"\xB0"+h1.separator+r+"\u2032"+h1.separator+o+"\u2033";break}return n}static toLat(t,e,l){let n=h1.toDms(h1.wrap90(t),e,l);return n===null?"\u2013":n.slice(1)+h1.separator+(t<0?"S":"N")}static toLon(t,e,l){let n=h1.toDms(h1.wrap180(t),e,l);return n===null?"\u2013":n+h1.separator+(t<0?"W":"E")}static toBrng(t,e,l){let n=h1.toDms(h1.wrap360(t),e,l);return n===null?"\u2013":n.replace("360","0")}static fromLocale(t){let e=123456.789 .toLocaleString(),l={thousands:e.slice(3,4),decimal:e.slice(7,8)};return t.replace(l.thousands,"\u205C").replace(l.decimal,".").replace("\u205C",",")}static toLocale(t){let e=123456.789 .toLocaleString(),l={thousands:e.slice(3,4),decimal:e.slice(7,8)};return t.replace(/,([0-9])/,"\u205C$1").replace(".",l.decimal).replace("\u205C",l.thousands)}static compassPoint(t,e=3){if(![1,2,3].includes(Number(e)))throw new RangeError(`invalid precision \u2018${e}\u2019`);t=h1.wrap360(t);let l=["N","NNE","NE","ENE","E","ESE","SE","SSE","S","SSW","SW","WSW","W","WNW","NW","NNW"],n=4*d4(2,e-1);return l[Math.round(t*n/360)%n*16/n]}static wrap360(t){return 0<=t&&t<360?t:(t%360+360)%360}static wrap180(t){return-180<t&&t<=180?t:(t+540)%360-180}static wrap90(t){return-90<=t&&t<=90?t:Math.abs((t%360+270)%360-180)-90}};Number.prototype.toRadians=function(){return this*Math.PI/180};Number.prototype.toDegrees=function(){return this*180/Math.PI};var V=h1;var Z=Math.PI,P=class{constructor(t,e){if(isNaN(t))throw new TypeError(`invalid lat \u2018${t}\u2019`);if(isNaN(e))throw new TypeError(`invalid lon \u2018${e}\u2019`);this._lat=V.wrap90(Number(t)),this._lon=V.wrap180(Number(e))}get lat(){return this._lat}get latitude(){return this._lat}set lat(t){if(this._lat=isNaN(t)?V.wrap90(V.parse(t)):V.wrap90(Number(t)),isNaN(this._lat))throw new TypeError(`invalid lat \u2018${t}\u2019`)}set latitude(t){if(this._lat=isNaN(t)?V.wrap90(V.parse(t)):V.wrap90(Number(t)),isNaN(this._lat))throw new TypeError(`invalid latitude \u2018${t}\u2019`)}get lon(){return this._lon}get lng(){return this._lon}get longitude(){return this._lon}set lon(t){if(this._lon=isNaN(t)?V.wrap180(V.parse(t)):V.wrap180(Number(t)),isNaN(this._lon))throw new TypeError(`invalid lon \u2018${t}\u2019`)}set lng(t){if(this._lon=isNaN(t)?V.wrap180(V.parse(t)):V.wrap180(Number(t)),isNaN(this._lon))throw new TypeError(`invalid lng \u2018${t}\u2019`)}set longitude(t){if(this._lon=isNaN(t)?V.wrap180(V.parse(t)):V.wrap180(Number(t)),isNaN(this._lon))throw new TypeError(`invalid longitude \u2018${t}\u2019`)}static get metresToKm(){return 1/1e3}static get metresToMiles(){return 1/1609.344}static get metresToNauticalMiles(){return 1/1852}static parse(...t){if(t.length==0)throw new TypeError("invalid (empty) point");if(t[0]===null||t[1]===null)throw new TypeError("invalid (null) point");let e,l;if(t.length==2&&([e,l]=t,e=V.wrap90(V.parse(e)),l=V.wrap180(V.parse(l)),isNaN(e)||isNaN(l)))throw new TypeError(`invalid point \u2018${t.toString()}\u2019`);if(t.length==1&&typeof t[0]=="string"&&([e,l]=t[0].split(","),e=V.wrap90(V.parse(e)),l=V.wrap180(V.parse(l)),isNaN(e)||isNaN(l)))throw new TypeError(`invalid point \u2018${t[0]}\u2019`);if(t.length==1&&typeof t[0]=="object"){let n=t[0];if(n.type=="Point"&&Array.isArray(n.coordinates)?[l,e]=n.coordinates:(n.latitude!=null&&(e=n.latitude),n.lat!=null&&(e=n.lat),n.longitude!=null&&(l=n.longitude),n.lng!=null&&(l=n.lng),n.lon!=null&&(l=n.lon),e=V.wrap90(V.parse(e)),l=V.wrap180(V.parse(l))),isNaN(e)||isNaN(l))throw new TypeError(`invalid point \u2018${JSON.stringify(t[0])}\u2019`)}if(isNaN(e)||isNaN(l))throw new TypeError(`invalid point \u2018${t.toString()}\u2019`);return new P(e,l)}distanceTo(t,e=6371e3){if(t instanceof P||(t=P.parse(t)),isNaN(e))throw new TypeError(`invalid radius \u2018${e}\u2019`);let l=e,n=this.lat.toRadians(),a=this.lon.toRadians(),r=t.lat.toRadians(),o=t.lon.toRadians(),s=r-n,h=o-a,u=Math.sin(s/2)*Math.sin(s/2)+Math.cos(n)*Math.cos(r)*Math.sin(h/2)*Math.sin(h/2),d=2*Math.atan2(Math.sqrt(u),Math.sqrt(1-u));return l*d}initialBearingTo(t){if(t instanceof P||(t=P.parse(t)),this.equals(t))return NaN;let e=this.lat.toRadians(),l=t.lat.toRadians(),n=(t.lon-this.lon).toRadians(),a=Math.cos(e)*Math.sin(l)-Math.sin(e)*Math.cos(l)*Math.cos(n),r=Math.sin(n)*Math.cos(l),s=Math.atan2(r,a).toDegrees();return V.wrap360(s)}finalBearingTo(t){t instanceof P||(t=P.parse(t));let e=t.initialBearingTo(this)+180;return V.wrap360(e)}midpointTo(t){t instanceof P||(t=P.parse(t));let e=this.lat.toRadians(),l=this.lon.toRadians(),n=t.lat.toRadians(),a=(t.lon-this.lon).toRadians(),r={x:Math.cos(e),y:0,z:Math.sin(e)},o={x:Math.cos(n)*Math.cos(a),y:Math.cos(n)*Math.sin(a),z:Math.sin(n)},s={x:r.x+o.x,y:r.y+o.y,z:r.z+o.z},h=Math.atan2(s.z,Math.sqrt(s.x*s.x+s.y*s.y)),u=l+Math.atan2(s.y,s.x),d=h.toDegrees(),p=u.toDegrees();return new P(d,p)}intermediatePointTo(t,e){if(t instanceof P||(t=P.parse(t)),this.equals(t))return new P(this.lat,this.lon);let l=this.lat.toRadians(),n=this.lon.toRadians(),a=t.lat.toRadians(),r=t.lon.toRadians(),o=a-l,s=r-n,h=Math.sin(o/2)*Math.sin(o/2)+Math.cos(l)*Math.cos(a)*Math.sin(s/2)*Math.sin(s/2),u=2*Math.atan2(Math.sqrt(h),Math.sqrt(1-h)),d=Math.sin((1-e)*u)/Math.sin(u),p=Math.sin(e*u)/Math.sin(u),x=d*Math.cos(l)*Math.cos(n)+p*Math.cos(a)*Math.cos(r),f=d*Math.cos(l)*Math.sin(n)+p*Math.cos(a)*Math.sin(r),g=d*Math.sin(l)+p*Math.sin(a),_=Math.atan2(g,Math.sqrt(x*x+f*f)),y=Math.atan2(f,x),w=_.toDegrees(),C=y.toDegrees();return new P(w,C)}destinationPoint(t,e,l=6371e3){let n=t/l,a=Number(e).toRadians(),r=this.lat.toRadians(),o=this.lon.toRadians(),s=Math.sin(r)*Math.cos(n)+Math.cos(r)*Math.sin(n)*Math.cos(a),h=Math.asin(s),u=Math.sin(a)*Math.sin(n)*Math.cos(r),d=Math.cos(n)-Math.sin(r)*s,p=o+Math.atan2(u,d),x=h.toDegrees(),f=p.toDegrees();return new P(x,f)}static intersection(t,e,l,n){if(t instanceof P||(t=P.parse(t)),l instanceof P||(l=P.parse(l)),isNaN(e))throw new TypeError(`invalid brng1 \u2018${e}\u2019`);if(isNaN(n))throw new TypeError(`invalid brng2 \u2018${n}\u2019`);let a=t.lat.toRadians(),r=t.lon.toRadians(),o=l.lat.toRadians(),s=l.lon.toRadians(),h=Number(e).toRadians(),u=Number(n).toRadians(),d=o-a,p=s-r,x=2*Math.asin(Math.sqrt(Math.sin(d/2)*Math.sin(d/2)+Math.cos(a)*Math.cos(o)*Math.sin(p/2)*Math.sin(p/2)));if(Math.abs(x)<Number.EPSILON)return new P(t.lat,t.lon);let f=(Math.sin(o)-Math.sin(a)*Math.cos(x))/(Math.sin(x)*Math.cos(a)),g=(Math.sin(a)-Math.sin(o)*Math.cos(x))/(Math.sin(x)*Math.cos(o)),_=Math.acos(Math.min(Math.max(f,-1),1)),y=Math.acos(Math.min(Math.max(g,-1),1)),w=Math.sin(s-r)>0?_:2*Z-_,C=Math.sin(s-r)>0?2*Z-y:y,N=h-w,T=C-u;if(Math.sin(N)==0&&Math.sin(T)==0||Math.sin(N)*Math.sin(T)<0)return null;let O=-Math.cos(N)*Math.cos(T)+Math.sin(N)*Math.sin(T)*Math.cos(x),L=Math.atan2(Math.sin(x)*Math.sin(N)*Math.sin(T),Math.cos(T)+Math.cos(N)*O),B=Math.asin(Math.min(Math.max(Math.sin(a)*Math.cos(L)+Math.cos(a)*Math.sin(L)*Math.cos(h),-1),1)),k=Math.atan2(Math.sin(h)*Math.sin(L)*Math.cos(a),Math.cos(L)-Math.sin(a)*Math.sin(B)),D=r+k,U=B.toDegrees(),G=D.toDegrees();return new P(U,G)}crossTrackDistanceTo(t,e,l=6371e3){t instanceof P||(t=P.parse(t)),e instanceof P||(e=P.parse(e));let n=l;if(this.equals(t))return 0;let a=t.distanceTo(this,n)/n,r=t.initialBearingTo(this).toRadians(),o=t.initialBearingTo(e).toRadians();return Math.asin(Math.sin(a)*Math.sin(r-o))*n}alongTrackDistanceTo(t,e,l=6371e3){t instanceof P||(t=P.parse(t)),e instanceof P||(e=P.parse(e));let n=l;if(this.equals(t))return 0;let a=t.distanceTo(this,n)/n,r=t.initialBearingTo(this).toRadians(),o=t.initialBearingTo(e).toRadians(),s=Math.asin(Math.sin(a)*Math.sin(r-o));return Math.acos(Math.cos(a)/Math.abs(Math.cos(s)))*Math.sign(Math.cos(o-r))*n}maxLatitude(t){let e=Number(t).toRadians(),l=this.lat.toRadians();return Math.acos(Math.abs(Math.sin(e)*Math.cos(l))).toDegrees()}static crossingParallels(t,e,l){if(t.equals(e))return null;let n=Number(l).toRadians(),a=t.lat.toRadians(),r=t.lon.toRadians(),o=e.lat.toRadians(),h=e.lon.toRadians()-r,u=Math.sin(a)*Math.cos(o)*Math.cos(n)*Math.sin(h),d=Math.sin(a)*Math.cos(o)*Math.cos(n)*Math.cos(h)-Math.cos(a)*Math.sin(o)*Math.cos(n),p=Math.cos(a)*Math.cos(o)*Math.sin(n)*Math.sin(h);if(p*p>u*u+d*d)return null;let x=Math.atan2(-d,u),f=Math.acos(p/Math.sqrt(u*u+d*d)),g=r+x-f,_=r+x+f,y=g.toDegrees(),w=_.toDegrees();return{lon1:V.wrap180(y),lon2:V.wrap180(w)}}rhumbDistanceTo(t,e=6371e3){t instanceof P||(t=P.parse(t));let l=e,n=this.lat.toRadians(),a=t.lat.toRadians(),r=a-n,o=Math.abs(t.lon-this.lon).toRadians();Math.abs(o)>Z&&(o=o>0?-(2*Z-o):2*Z+o);let s=Math.log(Math.tan(a/2+Z/4)/Math.tan(n/2+Z/4)),h=Math.abs(s)>1e-11?r/s:Math.cos(n);return Math.sqrt(r*r+h*h*o*o)*l}rhumbBearingTo(t){if(t instanceof P||(t=P.parse(t)),this.equals(t))return NaN;let e=this.lat.toRadians(),l=t.lat.toRadians(),n=(t.lon-this.lon).toRadians();Math.abs(n)>Z&&(n=n>0?-(2*Z-n):2*Z+n);let a=Math.log(Math.tan(l/2+Z/4)/Math.tan(e/2+Z/4)),o=Math.atan2(n,a).toDegrees();return V.wrap360(o)}rhumbDestinationPoint(t,e,l=6371e3){let n=this.lat.toRadians(),a=this.lon.toRadians(),r=Number(e).toRadians(),o=t/l,s=o*Math.cos(r),h=n+s;Math.abs(h)>Z/2&&(h=h>0?Z-h:-Z-h);let u=Math.log(Math.tan(h/2+Z/4)/Math.tan(n/2+Z/4)),d=Math.abs(u)>1e-11?s/u:Math.cos(n),p=o*Math.sin(r)/d,x=a+p,f=h.toDegrees(),g=x.toDegrees();return new P(f,g)}rhumbMidpointTo(t){t instanceof P||(t=P.parse(t));let e=this.lat.toRadians(),l=this.lon.toRadians(),n=t.lat.toRadians(),a=t.lon.toRadians();Math.abs(a-l)>Z&&(l+=2*Z);let r=(e+n)/2,o=Math.tan(Z/4+e/2),s=Math.tan(Z/4+n/2),h=Math.tan(Z/4+r/2),u=((a-l)*Math.log(h)+l*Math.log(s)-a*Math.log(o))/Math.log(s/o);isFinite(u)||(u=(l+a)/2);let d=r.toDegrees(),p=u.toDegrees();return new P(d,p)}static areaOf(t,e=6371e3){let l=e,n=t[0].equals(t[t.length-1]);n||t.push(t[0]);let a=t.length-1,r=0;for(let h=0;h<a;h++){let u=t[h].lat.toRadians(),d=t[h+1].lat.toRadians(),p=(t[h+1].lon-t[h].lon).toRadians(),x=2*Math.atan2(Math.tan(p/2)*(Math.tan(u/2)+Math.tan(d/2)),1+Math.tan(u/2)*Math.tan(d/2));r+=x}s(t)&&(r=Math.abs(r)-2*Z);let o=Math.abs(r*l*l);return n||t.pop(),o;function s(h){let u=0,d=h[0].initialBearingTo(h[1]);for(let f=0;f<h.length-1;f++){let g=h[f].initialBearingTo(h[f+1]),_=h[f].finalBearingTo(h[f+1]);u+=(g-d+540)%360-180,u+=(_-g+540)%360-180,d=_}let p=h[0].initialBearingTo(h[1]);return u+=(p-d+540)%360-180,Math.abs(u)<90}}equals(t){return t instanceof P||(t=P.parse(t)),!(Math.abs(this.lat-t.lat)>Number.EPSILON||Math.abs(this.lon-t.lon)>Number.EPSILON)}toGeoJSON(){return{type:"Point",coordinates:[this.lon,this.lat]}}toString(t="d",e=void 0){if(!["d","dm","dms","n"].includes(t))throw new RangeError(`invalid format \u2018${t}\u2019`);if(t=="n")return e==null&&(e=4),`${this.lat.toFixed(e)},${this.lon.toFixed(e)}`;let l=V.toLat(this.lat,t,e),n=V.toLon(this.lon,t,e);return`${l}, ${n}`}};c();c();c();var N1=class{constructor(t){q(this,"destinations",[]);this.destinations=t}};c();var de,Z1,B1=class{constructor(t,e){v(this,de,void 0);v(this,Z1,void 0);q(this,"distance",0);q(this,"path",[]);q(this,"instructions",[]);E(this,Z1,t),E(this,de,e),this.distance=e.distance,this.instructions=e.instructions.map(l=>{var a,r,o,s,h,u,d,p,x,f,g,_;let n=z(S({},l),{action:S({},l.action),atLocation:(a=l.atLocation)!=null&&a.id?(o=(r=m(this,Z1))==null?void 0:r._vortexesById)==null?void 0:o[l.atLocation.id]:void 0,node:(s=l.node)!=null&&s.id?(u=(h=m(this,Z1))==null?void 0:h._nodesById)==null?void 0:u[l.node.id]:void 0});return(((d=n.action)==null?void 0:d.type)==="TakeVortex"||((p=n.action)==null?void 0:p.type)==="ExitVortex")&&(n.action.fromMap=(f=m(this,Z1)._mapsById)==null?void 0:f[(x=n.action)==null?void 0:x.fromMap.id],n.action.toMap=(_=m(this,Z1)._mapsById)==null?void 0:_[(g=n.action)==null?void 0:g.toMap.id]),n}),this.path=e.path.map(l=>{var n,a;return(a=(n=m(this,Z1))==null?void 0:n._nodesById)==null?void 0:a[l.id]})}toJSON(){return m(this,de)}};de=new WeakMap,Z1=new WeakMap;var lt,D1=class{constructor(t){v(this,lt,void 0);E(this,lt,t)}directionsTo(t,e){if(t instanceof N1){let l=[],n=this;for(let a=0;a<t.destinations.length;a++){let r=t.destinations[a],o=pe(n),s=pe(r),h=m(this,lt).navigator.getDirections({originIds:o,destinationNodeIds:s,accessible:(e==null?void 0:e.accessible)||!1}),u=new B1(m(this,lt),h);l.push(u),n=r}return l}else{let l=pe(this),n=pe(t),a=m(this,lt).navigator.getDirections({originIds:l,destinationNodeIds:n,accessible:(e==null?void 0:e.accessible)||!1});return new B1(m(this,lt),a)}}distanceTo(t,e){let l=this.directionsTo(t,e);return(l==null?void 0:l.distance)||0}};lt=new WeakMap;var b9=0,f9="9999-12-31T00:00:00.000Z";function _9(i,t,e=new Date){if(!i.states)return;let l=e||new Date,n=i.states.find(a=>{let r=new Date(a.start||b9),o=new Date(a.end||f9);return r<l&&o>l});if(n)return t.find(a=>a.value===n.type)}var R1,nt,_1,be,fe,_e,xe=class extends D1{constructor(e,l){super(e);v(this,R1,void 0);v(this,nt,void 0);v(this,_1,{});q(this,"states");q(this,"id","");q(this,"name","");q(this,"type","");q(this,"description");q(this,"sortOrder");q(this,"logo");q(this,"phone");q(this,"social");q(this,"color");q(this,"shortName");q(this,"detailsUrl");q(this,"tags");q(this,"externalId");q(this,"showLabelWhenImagePresent");q(this,"picture");q(this,"operationHours");q(this,"siblingGroups");q(this,"gallery");v(this,be,void 0);v(this,fe,[]);v(this,_e,void 0);E(this,R1,e),E(this,nt,l);let n=Object.assign({},l);delete n.categories,Object.assign(this,n)}get polygons(){let e=m(this,_1).polygons;if(typeof e!="undefined")return e;let l=[],n=m(this,be),a=m(this,R1)._polygonsById;if(Array.isArray(n))for(let r=0,o=n.length;r<o;++r){let s=n[r].id,h=a[s];h!=null&&h.geometry.visible&&l.push(h)}return m(this,_1).polygons=l,l}set polygons(e){E(this,be,e)}get nodes(){let e=m(this,_1).nodes;if(typeof e!="undefined")return e;let l=[],n=m(this,fe),a=m(this,R1)._nodesById;if(n)for(let r=0,o=n.length;r<o;++r){let s=n[r].node,h=a[s];h!=null&&l.push(h)}return m(this,_1).nodes=l,l}set nodes(e){E(this,fe,e)}get parent(){let e=m(this,_1).parent;if(typeof e!="undefined")return e;let l,n=m(this,R1)._locationsById,a=m(this,_e);return a!==void 0&&(l=n[a]),m(this,_1).parent=l,l}set parent(e){E(this,_e,e)}get categories(){let e=m(this,_1).categories;if(typeof e!="undefined")return e;let l=[];return m(this,nt).categories.forEach(n=>{let a=m(this,R1).getCollectionItemById("categories",n);a&&l.push(a)}),m(this,_1).categories=l,l}get state(){return _9(this,m(this,R1).locationStates)}clone(){return new xe(m(this,R1),m(this,nt))}get nodeOperationHours(){let e=m(this,_1).nodeOperationHours;if(typeof e!="undefined")return e;if(this.nodes==null)return{};let l=m(this,nt).nodes.reduce((n,a)=>(a.operationHours!=null&&(n[a.node]=a.operationHours),n),{});return m(this,_1).nodeOperationHours=l,l}static hydrate(e,l){return e.map(n=>new xe(l,n))}static fetch(e){return M(this,null,function*(){let l=e.options.things.locations.slice();e.options.things.categories&&J(l,"categories"),e.options.things.nodes&&J(l,"nodes"),e.options.things.polygons&&J(l,"polygons"),e.options.things.locationStates&&J(l,"states");let n={fields:l,venue:e.options.venue};try{let a=yield $(e.options,"location",n);return e.options.includeHidden||(a=a.filter(r=>!r.hidden)),a.map(r=>new xe(e,r))}catch(a){return A.error("Fetch Locations:",a),[]}})}toJSON(){let e=m(this,nt);return delete e.color,e}},m1=xe;R1=new WeakMap,nt=new WeakMap,_1=new WeakMap,be=new WeakMap,fe=new WeakMap,_e=new WeakMap;c();var at,Pt,M1,ye,A3=class extends D1{constructor(e,l){super(e);v(this,at,void 0);v(this,Pt,void 0);v(this,M1,{});q(this,"geometry");q(this,"perspectives");q(this,"image");q(this,"holes");q(this,"textures");q(this,"material");q(this,"label");q(this,"id","");q(this,"layer");q(this,"layerId");q(this,"name");q(this,"externalId");q(this,"vertexes");q(this,"canvasBounds");v(this,ye,void 0);E(this,at,e),E(this,Pt,l);let n=Object.assign({},l);delete n.map,Object.assign(this,n)}get map(){let e=m(this,M1).map;if(typeof e!="undefined")return e;let l=m(this,at).getCollectionItemById("maps",m(this,Pt).map);return m(this,M1).map=l,l}get locations(){var r,o;let e=m(this,M1).locations;if(typeof e!="undefined")return e;let l=[],n=(o=(r=f1.instances.get(m(this,at)))==null?void 0:r.locationsByMapId.get(this.map.id))!=null?o:[],{id:a}=this;for(let s=0,h=n.length;s<h;++s){let u=n[s],d=u.polygons;if(Array.isArray(d)){for(let p=0,x=d.length;p<x;++p)if(d[p].id===a){l.push(u);break}}}return m(this,M1).locations=l,l}get entrances(){let e=m(this,M1).entrances;if(typeof e!="undefined")return e;let l=[],n=m(this,ye),a=m(this,at)._nodesById;if(Array.isArray(n)){for(let r=0,o=n.length;r<o;++r){let s=n[r].id,h=a[s];h!=null&&l.push(h)}return m(this,M1).entrances=l,l}return[]}set entrances(e){E(this,ye,e)}get rank(){let e=m(this,M1).rank;if(typeof e!="undefined")return e;let{rankings:l}=m(this,at);if(!(l&&l.polygons))return null;let n=l.polygons.find(a=>a.polygonId===this.id);return n?(m(this,M1).rank={score:n.score,node:n.entranceNodeId},{score:n.score,node:n.entranceNodeId}):(m(this,M1).rank=null,null)}static hydrate(e,l){return e.map(n=>new A3(l,n))}static fetch(e){return M(this,null,function*(){let l=e.options.things.polygons.slice();e.options.things.maps&&J(l,"map"),e.options.things.nodes&&J(l,"entrances");let n={fields:l,venue:e.options.venue};try{return(yield $(e.options,"polygon",n)).filter(r=>r.geometry.visible).map(r=>new A3(e,r))}catch(a){return A.error("Fetch Polygons:",a),[]}})}toJSON(){return m(this,Pt)}},k1=A3;at=new WeakMap,Pt=new WeakMap,M1=new WeakMap,ye=new WeakMap;function t0(i){return/^[\da-f]{24}$/i.test(i)}function Q5(i,t=!1){let e="";if(i!=null){let l="?",n=t?Object.keys(i).filter(a=>!["slug","venue"].includes(a)):Object.keys(i);for(let a=0,r=n.length;a<r;++a){let o=n[a],s=i[o];s!=null&&(e+=`${l+encodeURIComponent(o)}=${encodeURIComponent(s)}`,l="&")}}return e}function g9(i,t,e,l=!1){var n,a;return l?`${i.supplementaryUrl}${t}?venue=${e.venue||e.slug}`:(n=i.baseUrl)!=null&&n.includes("gateway")?`${i.baseUrl}${t}/${e.venue||e.slug}${Q5(e,(a=i.baseUrl)==null?void 0:a.includes("gateway"))}`:i.baseUrl+t+Q5(e)}function $(i,t,e,l=!1){return M(this,null,function*(){return Z4(i,t,e,l,!0)})}function Z4(i,t,e,l=!1,n=!1){return M(this,null,function*(){let a=g9(i,t,e,l),r=yield J4(i,a,l);if(!n&&Array.isArray(r)){if(r.length===1)return r[0];throw new Error("Invalid response object")}else return r})}function J4(i,t,e=!1){return M(this,null,function*(){let l={language:i.language,clientId:i.clientId,clientSecret:i.clientSecret};e&&delete l.language,l.language&&(t+=`&lang=${encodeURIComponent(l.language)}`);let{headers:n}=i;n["Content-Type"]="text/json",i.authorization&&(n.Authorization=i.authorization),l.language&&(n["Accept-Language"]=l.language);let a={method:"GET",headers:n},r=yield ve()(t,a);if(!r.ok)throw new Error(`${r.status} ${r.statusText}`);return r.json()})}function J(i,t){i.indexOf(t)<0&&i.push(t)}function e0([i,t],[e,l]){let n=new P(i,t),a=new P(e,l);return n.distanceTo(a)}function i0(i){if(i.scale||i.x_scale)return 1/(i.scale||i.x_scale);let t;try{let e=i.georeference[0],l=i.georeference[2],n=new P(e.target.x,e.target.y),a=new P(l.target.x,l.target.y),r=n.distanceTo(a),o=e.control.x-l.control.x,s=e.control.y-l.control.y;t=Math.sqrt(o*o+s*s)/r}catch(e){t=1,A.warn(e),A.warn(`Couldn't georeference ${i.name||i.shortName||i.id}. Probably not enough geocoordinates.`)}return t}function pe(i){var t;return i instanceof k1?i.entrances.map(e=>e.id):i instanceof m1?((t=i.nodes)==null?void 0:t.map(e=>e.id))||[]:[i.id]}function l0(i){return M(this,null,function*(){let t={},{maps:e,images:l,scenes:n,polygons:a}=i;if(l!=null)try{let r=Object.keys(l).map(o=>fetch(`data:image/png;base64,${l[o]}`).then(s=>s.blob()).then(s=>{t[o]=s}).catch(s=>{A.error(s)}));yield Promise.all(r)}catch(r){A.error(r)}return e.forEach(r=>{var s;((s=r.scene)!=null&&s.polygons||n[r.id])&&(n!=null&&n[r.id]&&(r.scene||(r.scene={}),Object.defineProperty(r.scene,"polygons",{get(){return n[r.id]}})),l!=null&&(r.scene.images=r.scene.images.map(({filename:h})=>({filename:h,url:t[h]})),r.scene.polygons.forEach(h=>{var u,d;if((u=h==null?void 0:h.image)!=null&&u.url&&(d=h==null?void 0:h.image)!=null&&d.url){let p=h.image.url.split("/"),x=t[p[p.length-1]];x&&(h.image.url=x)}})))}),l!=null&&a.forEach(r=>{var o;if((o=r==null?void 0:r.image)!=null&&o.url){let s=r.image.url.split("/"),h=t[s[s.length-1]];h&&(r.image.url=h)}}),i.images!=null&&delete i.images,i.scenes!=null&&delete i.scenes,i})}function $4(i,t,e){let l;return function(){let n=this,a=arguments,r=function(){l=null,e||i.apply(n,a)},o=e&&!l;clearTimeout(l),l=setTimeout(r,t),o&&i.apply(n,a)}}var Ee,Me,we,C3=class{constructor(t,e){v(this,Ee,void 0);v(this,Me,{});v(this,we,void 0);q(this,"name");q(this,"externalId");q(this,"parents");q(this,"id");q(this,"icon");this.id=e.id,E(this,we,e),E(this,Ee,t),Object.assign(this,e)}get locations(){var a;let t=m(this,Me).locations;if(typeof t!="undefined")return t;let e=[],{locations:l}=m(this,Ee),{id:n}=this;for(let r=0,o=l.length;r<o;++r){let s=l[r],h=s.categories;if(Array.isArray(h)){for(let u=0,d=h.length;u<d;++u)if(((a=h[u])==null?void 0:a.id)===n){e.push(s);break}}}return m(this,Me).locations=e,e}static hydrate(t,e){return t.map(l=>new C3(e,l))}static fetch(t){return M(this,null,function*(){let e={fields:t.options.things.categories,venue:t.options.venue};try{return(yield $(t.options,"category",e)).map(n=>new C3(t,n))}catch(l){return A.error("Fetch Categories:",l),[]}})}toJSON(){return m(this,we)}},w1=C3;Ee=new WeakMap,Me=new WeakMap,we=new WeakMap;c();var Ae,Lt,Ce,T3=class{constructor(t,e){v(this,Ae,void 0);v(this,Lt,void 0);v(this,Ce,{});q(this,"id","");q(this,"type","");q(this,"name","");q(this,"description");q(this,"image");q(this,"startDate");q(this,"endDate");q(this,"showDate");E(this,Lt,e),E(this,Ae,t),Object.assign(this,e)}location(){let t=m(this,Ce).location;if(typeof t!="undefined")return t;let e,l=m(this,Ae)._locationsById,n=m(this,Lt).location;if(n!=null){let a=l[n];a!=null&&(e=a)}return m(this,Ce).location=e,e}static hydrate(t,e){return t.map(l=>new T3(e,l))}static fetch(t){return M(this,null,function*(){let e=t.options.things.events.slice();t.options.things.locations&&J(e,"location");let l={fields:e,venue:t.options.venue,activeAtOrAfter:Date.now()};try{return(yield $(t.options,"event",l)).map(a=>new T3(t,a))}catch(n){return A.error("Fetch Events:",n),[]}})}toJSON(){return m(this,Lt)}},rt=T3;Ae=new WeakMap,Lt=new WeakMap,Ce=new WeakMap;c();var Te,P3=class{constructor(t){v(this,Te,void 0);q(this,"id","");q(this,"name","");q(this,"value","");E(this,Te,t),Object.assign(this,t)}static hydrate(t){return t.map(e=>new P3(e))}static fetch(t){return M(this,null,function*(){let l={fields:t.options.things.locationStates.slice(),venue:t.options.venue};try{return(yield $(t.options,"location-state",l)).map(a=>new P3(a))}catch(n){return A.error("Fetch Location States:",n),[]}})}toJSON(){return m(this,Te)}},S3=P3;Te=new WeakMap;c();c();var Se,K4,Pe,Q4,Le,Oe,L3,n0,O3,a0,F1,V1,j1,U1,A1=class{constructor(t){v(this,Se);v(this,Pe);v(this,L3);v(this,O3);q(this,"map");v(this,Le,{});v(this,Oe,void 0);v(this,F1,void 0);v(this,V1,void 0);v(this,j1,void 0);v(this,U1,void 0);let{map:e,mappedin:l}=t;t.lat!=null&&t.lon!=null&&(E(this,F1,t.lat),E(this,V1,t.lon)),t.x!=null&&t.y!=null&&(E(this,j1,t.x),E(this,U1,t.y)),this.map=e,E(this,Oe,l)}get x(){return c1(this,Pe,Q4).call(this,"x")}get y(){return c1(this,Pe,Q4).call(this,"y")}get lat(){return c1(this,Se,K4).call(this,"lat")}get lon(){return c1(this,Se,K4).call(this,"lon")}absoluteDistanceTo(t){return e0([t.lat,t.lon],[this.lat,this.lon])}get nearestNode(){let t=m(this,Le).nearestNode;if(typeof t!="undefined")return t;let l=f1.instances.get(m(this,Oe)).findNearestNodeOnMap(this.map.id,this);return m(this,Le).nearestNode=l,l}toJSON(){return{x:this.x,y:this.y,map:this.map,lat:this.lat,lon:this.lon}}};Se=new WeakSet,K4=function(t){if(m(this,F1)&&m(this,V1))return t==="lat"?m(this,F1):m(this,V1);if(m(this,j1)!=null&&m(this,U1)!=null){let[e,l]=c1(this,O3,a0).call(this,m(this,j1),m(this,U1));return E(this,F1,e),E(this,V1,l),t==="lat"?m(this,F1):m(this,V1)}else throw Error("MappedinCoordinate is missing x and y")},Pe=new WeakSet,Q4=function(t){if(m(this,j1)&&m(this,U1))return t==="x"?m(this,j1):m(this,U1);if(m(this,F1)!=null&&m(this,V1)!=null){let[e,l]=c1(this,L3,n0).call(this,m(this,F1),m(this,V1));return E(this,j1,e),E(this,U1,l),t==="x"?m(this,j1):m(this,U1)}else throw Error("MappedinCoordinate is missing lat and lon")},Le=new WeakMap,Oe=new WeakMap,L3=new WeakSet,n0=function(t,e){let l=this.map.georeference[0],n=new P(l.target.x,l.target.y),a=new P(t,e),r=n.distanceTo(a),o=(n.finalBearingTo(a)+360)%360*Math.PI/180||0,s=r*(1/this.map.scale),h=o+this.map.getNorth(),u=Math.sin(h)*s,d=Math.cos(h)*s;return[l.control.x+u,l.control.y-d]},O3=new WeakSet,a0=function(t,e){let l=this.map.georeference[0],n=new P(l.target.x,l.target.y),a=t-l.control.x,r=l.control.y-e,o=Math.atan2(a,r),s;a===0&&r===0?s=0:a===0?s=r:s=a/Math.sin(o);let h=o-this.map.getNorth(),u=s/this.map._scale,d=n.destinationPoint(u,h*180/Math.PI);return[d.lat,d.lon]},F1=new WeakMap,V1=new WeakMap,j1=new WeakMap,U1=new WeakMap;var H1,Ie,ze,I3=class{constructor(t,e){v(this,H1,void 0);v(this,Ie,{});v(this,ze,void 0);q(this,"id","");q(this,"group","");q(this,"name","");q(this,"shortName","");q(this,"elevation",0);q(this,"scale",0);q(this,"layers");q(this,"x_scale");q(this,"perspectiveId");q(this,"scene");q(this,"width",0);q(this,"height",0);q(this,"georeference",[]);q(this,"_scale",0);E(this,H1,t),E(this,ze,e),Object.assign(this,e),this._scale=i0(this),this.scale=this.x_scale||1/this._scale}get polygons(){var t,e,l;return(l=(e=(t=f1.instances.get(m(this,H1)))==null?void 0:t.polygonsByMapId)==null?void 0:e.get(this.id))!=null?l:[]}get locations(){var t,e,l;return(l=(e=(t=f1.instances.get(m(this,H1)))==null?void 0:t.locationsByMapId)==null?void 0:e.get(this.id))!=null?l:[]}get nodes(){var t,e,l;return(l=(e=(t=f1.instances.get(m(this,H1)))==null?void 0:t.nodesByMapId)==null?void 0:e.get(this.id))!=null?l:[]}get mapGroup(){let t=m(this,Ie).mapGroup;if(typeof t!="undefined")return t;let e=this.group,l=e&&m(this,H1)._mapGroupsById[e]||null;return m(this,Ie).mapGroup=l,l}createCoordinateByXY(t,e){return new A1({x:t,y:e,map:this,mappedin:m(this,H1)})}createCoordinate(t,e){return new A1({lat:t,lon:e,map:this,mappedin:m(this,H1)})}getNorth(){let t;try{let e=this.georeference[0],l=this.georeference[2],n=new P(e.target.x,e.target.y),a=new P(l.target.x,l.target.y),r=(n.finalBearingTo(a)+360%360)*Math.PI/180,o=Math.atan2(l.control.y-e.control.y,l.control.x-e.control.x);t=-(r-o-Math.PI/2)}catch(e){t=0,A.warn(e),A.warn(`Couldn't georeference ${this.name||this.shortName||this.id}. Probably not enough geocoordinates.`)}return t}static hydrate(t,e){return t.map(l=>new I3(e,l))}static fetch(t){return M(this,null,function*(){let e=t.options.things.maps.slice();t.options.perspective&&J(e,"perspectives"),t.options.things.mapGroups&&J(e,"group"),J(e,"elevation"),J(e,"x_scale"),J(e,"scale"),J(e,"georeference");let l={fields:e,perspective:t.options.perspective,venue:t.options.venue};try{let a=yield $(t.options,"map",l),r=o=>{let s=n.layers.find(h=>h.id===o);s?s.visible=!0:n.layers.push({id:o,visible:!0})};for(let o=0,s=a.length;o<s;++o){var n=a[o];if(n){let h=n.perspective;h!=null&&(n.perspectiveId=h.id,e.indexOf("scene")>-1&&(n.scene=h.scene),h.layers?(n.layers.forEach(u=>{u.visible=!1}),h.layers.forEach(r)):n.layers.forEach(u=>{u.visible=!0})),delete n.perspective}a[o]=new I3(t,n)}return a}catch(a){return A.error("Fetch Maps:",a),[]}})}toJSON(){return m(this,ze)}},ot=I3;H1=new WeakMap,Ie=new WeakMap,ze=new WeakMap;c();var Ne,Ot,Be,z3=class{constructor(t,e){v(this,Ne,void 0);v(this,Ot,void 0);v(this,Be,{});q(this,"id","");q(this,"name","");E(this,Ot,e),E(this,Ne,t),Object.assign(this,e)}get maps(){let t=m(this,Be).maps;if(typeof t!="undefined")return t;let e=[],{maps:l}=m(this,Ne),{id:n}=m(this,Ot);for(let a=0,r=l.length;a<r;++a){let o=l[a];o.group===n&&e.push(o)}return m(this,Be).maps=e,e}static hydrate(t,e){return t.map(l=>new z3(e,l))}static fetch(t){return M(this,null,function*(){let l={fields:t.options.things.mapGroups.slice(),venue:t.options.venue};try{return(yield $(t.options,"map-group",l)).map(a=>new z3(t,a))}catch(n){return A.error("Fetch Map Groups:",n),[]}})}toJSON(){return m(this,Ot)}},st=z3;Ne=new WeakMap,Ot=new WeakMap,Be=new WeakMap;c();var G1,It,n1,De,N3=class extends D1{constructor(e,l){super(e);v(this,G1,void 0);v(this,It,void 0);v(this,n1,{});q(this,"id","");q(this,"x",0);q(this,"y",0);q(this,"operationHours");q(this,"externalId");v(this,De,void 0);E(this,G1,e),E(this,It,l);let n=Object.assign({},l);delete n.map,Object.assign(this,n)}get map(){let e=m(this,n1).map;if(typeof e!="undefined")return e;let l=m(this,G1).getCollectionItemById("maps",m(this,It).map);return m(this,n1).map=l,l}get lat(){var n;let e=m(this,n1).cachedLatLon;if(e!=null)return e.lat;let l=(n=m(this,G1)._mapsById)==null?void 0:n[this.map.id];if(l==null)throw new Error("Map not found");return m(this,n1).cachedLatLon=l.createCoordinateByXY(this.x,this.y),m(this,n1).cachedLatLon.lat}get lon(){var n;let e=m(this,n1).cachedLatLon;if(e!=null)return e.lon;let l=(n=m(this,G1)._mapsById)==null?void 0:n[this.map.id];if(l==null)throw new Error("Map not found");return m(this,n1).cachedLatLon=l.createCoordinateByXY(this.x,this.y),m(this,n1).cachedLatLon.lon}get paths(){let e=m(this,n1).paths;if(typeof e!="undefined")return e;let l=[],n=m(this,G1)._nodesById,a=m(this,De);if(Array.isArray(a))for(let r=0,o=a.length;r<o;++r){let s=a[r].node,h=n[s];h!=null&&l.push(h)}return m(this,n1).paths=l,l}set paths(e){E(this,De,e)}get locations(){var r,o,s;let e=m(this,n1).locations;if(typeof e!="undefined")return e;let l=[],n=(s=(o=(r=f1.instances.get(m(this,G1)))==null?void 0:r.locationsByMapId)==null?void 0:o.get(this.map.id))!=null?s:[],a=this.id;for(let h=0,u=n.length;h<u;++h){let d=n[h],p=d.nodes;if(Array.isArray(p)){for(let x=0,f=p.length;x<f;++x)if(p[x].id===a){l.push(d);break}}}return m(this,n1).locations=l,l}get polygon(){var r,o,s;let e=m(this,n1).polygon;if(typeof e!="undefined")return e;let l,n=(s=(o=(r=f1.instances.get(m(this,G1)))==null?void 0:r.polygonsByMapId)==null?void 0:o.get(this.map.id))!=null?s:[],a=this.id;for(let h=0,u=n.length;h<u;++h){let d=n[h];d.entrances.map(p=>p.id).includes(a)&&(l=d)}return m(this,n1).polygon=l,l}static hydrate(e,l){return e.map(n=>new N3(l,n))}static fetch(e){return M(this,null,function*(){let l=e.options.things.nodes.slice();e.options.things.maps&&J(l,"map"),["weight","multiplier","accessible"].forEach(function(r){J(l,r)});let a={fields:l,venue:e.options.venue};try{return(yield $(e.options,"node",a)).map(o=>new N3(e,o))}catch(r){return A.error("Fetch Nodes:",r),[]}})}toJSON(){return m(this,It)}},u1=N3;G1=new WeakMap,It=new WeakMap,n1=new WeakMap,De=new WeakMap;c();var Re,B3=class{constructor(t){v(this,Re,void 0);q(this,"polygons",[]);E(this,Re,t),Object.assign(this,t)}static hydrate(t){return new B3(t)}static fetch(t){return M(this,null,function*(){try{let e=yield Z4(t.options,"smart-labels/polygon-label-ranking",{venue:t.options.venue},!0);return new B3(e)}catch(e){return A.error("Fetch Rankings:",e),null}})}toJSON(){return m(this,Re)}},ht=B3;Re=new WeakMap;c();var ke,R3=class{constructor(t){q(this,"id","");v(this,ke,void 0);E(this,ke,t),Object.assign(this,t)}static hydrate(t){return t.map(e=>new R3(e))}static fetch(t){return M(this,null,function*(){let l={fields:t.options.things.themes.slice(),venue:t.options.venue};try{return(yield $(t.options,"apollo-theme",l)).map(a=>new R3(a))}catch(n){return A.error("Fetch Theme:",n),[]}})}toJSON(){return m(this,ke)}},D3=R3;ke=new WeakMap;c();var Fe,Ve,zt,k3=class{constructor(t,e){v(this,Fe,void 0);v(this,Ve,void 0);v(this,zt,{});q(this,"defaultMap","");q(this,"address","");q(this,"city","");q(this,"countrycode","");q(this,"externalId","");q(this,"id","");q(this,"latitude");q(this,"logo");q(this,"longitude");q(this,"metadata");q(this,"name","");q(this,"operationHours");q(this,"postal","");q(this,"slug","");q(this,"state","");q(this,"telephone","");q(this,"tzid","");q(this,"tzidOverride","");q(this,"utcOffset","");q(this,"website","");E(this,Ve,t),E(this,Fe,e),Object.assign(this,e)}static hydrate(t,e){return new k3(e,t)}static fetch(t){return M(this,null,function*(){let e={fields:t.options.things.venue,slug:t.options.venue,limit:1};try{let l=yield $(t.options,"venue",e);return new k3(t,l[0])}catch(l){return A.error("Fetch Venue:",l),{}}})}get isMultiBuilding(){if(m(this,zt).isMultiBuilding==null){let t=m(this,Ve).maps,e=t.reduce((n,a)=>n.add(a.elevation),new Set),l=t.length!==e.size;m(this,zt).isMultiBuilding=l}return m(this,zt).isMultiBuilding}toJSON(){return m(this,Fe)}},mt=k3;Fe=new WeakMap,Ve=new WeakMap,zt=new WeakMap;c();var je,F3=class{constructor(t){q(this,"id","");v(this,je,void 0);q(this,"name");q(this,"type");q(this,"weight");q(this,"multiplier");E(this,je,t),Object.assign(this,t)}static hydrate(t){return t.map(e=>new F3(e))}static fetch(t){return M(this,null,function*(){let e=t.options.things.vortexes.slice();["name","type","accessible","weight","multiplier","nodes"].forEach(function(a){J(e,a)});let n={fields:e,venue:t.options.venue};try{return(yield $(t.options,"vortex",n)).map(r=>new F3(r))}catch(a){return A.error("Fetch Vortexes:",a),[]}})}toJSON(){return m(this,je)}},ut=F3;je=new WeakMap;c();function y9(i,t){let e=[];return i.features.forEach(l=>{var h,u;let n=[];(h=l.properties.spaces)==null||h.forEach(d=>{if("id"in d){let p;p=t.get(d.id),p&&n.push(...p)}else n==null||n.push({id:d.node,level:""})});let a=n.map(d=>({node:"n_"+d.id,map:d.level})),r=(u=l.properties.spaces)==null?void 0:u.filter(d=>"id"in d),o=(l.properties.hours||[]).map(d=>z(S({},d),{"@type":"OpeningHoursSpecification",dayOfWeek:[d.dayOfWeek.replace("http://schema.org/","")]})),s=z(S({},l.properties),{polygons:r||[],nodes:a||[],description:l.properties.description||"",logo:l.properties.logo||{},picture:l.properties.picture||{},phone:l.properties.phone||{},social:l.properties.social||{},externalId:l.properties.externalId||"",states:l.properties.states||[],siblingGroups:l.properties.siblingGroups||[],operationHours:o});delete s.spaces,e.push(s)}),e}function v9(i){let t=new Set;return i.features.forEach(e=>{var l;(l=e.properties.states)==null||l.forEach(n=>{t.add(n.type)})}),Array.from(t).map(e=>({id:e,name:e,value:e}))}function E9(i){let t=[];return i.features.forEach(e=>{let l=z(S({},e.properties),{icon:e.properties.picture});delete l.picture,t.push(l)}),t}function M9(i){let t=1/0,e=1/0,l=-1/0,n=-1/0;return i.features.forEach(a=>{let r;a.geometry.type==="MultiPolygon"?r=a.geometry.coordinates[0].flat():r=a.geometry.coordinates[0],r.forEach(o=>{t=Math.min(t,o[1]),l=Math.max(l,o[1]),e=Math.min(e,o[0]),n=Math.max(n,o[0])})}),{id:i.features[0].properties.id,minLat:t,minLong:e,maxLat:l,maxLong:n}}function w9(i,t,e){let l=e.createGeoreferences(),n=[];return i.features.forEach(a=>{let r=new Set;t.forEach(u=>{u.layer&&r.add(u.layer)});let o=[...r].map(u=>({id:u,visible:!0})),s=1/e.mapScale,h=z(S({},a.properties),{georeference:l,shortName:a.properties.abbreviation||"",scene:{polygons:t},scale:s,x_scale:s,group:a.properties.building,layers:o,width:e.widthInMapUnits,height:e.heightInMapUnits});n.push(h)}),n}var t6=class{constructor(t){q(this,"mapExtent");q(this,"stretchRatio");q(this,"midLat");q(this,"midLong");q(this,"mapUnitRatio",1e6);q(this,"latDistance");q(this,"longDistance");q(this,"mapScale");q(this,"widthInMapUnits");q(this,"heightInMapUnits");this.mapExtent=t;let{minLat:e,minLong:l,maxLat:n,maxLong:a}=t,r=(e+n)/2,o=(l+a)/2,s=new P(r,a),h=new P(r,l),u=new P(e,o),d=new P(n,o);this.latDistance=u.distanceTo(d),this.longDistance=s.distanceTo(h);let p=this.latDistance/this.longDistance,x=(n-e)/(a-l);this.stretchRatio=p/x,this.midLat=r,this.midLong=o,this.widthInMapUnits=(a-l)*this.mapUnitRatio,this.heightInMapUnits=(n-e)*this.mapUnitRatio*this.stretchRatio,this.mapScale=this.widthInMapUnits/this.longDistance}convert(t){let e=t[1],n=(t[0]-this.midLong)*this.mapUnitRatio,a=(this.midLat-e)*this.mapUnitRatio*this.stretchRatio;return{x:n,y:a}}createGeoreferences(){let{minLat:t,minLong:e,maxLat:l,maxLong:n}=this.mapExtent;return[[t,e],[t,n],[l,n],[l,e]].map(r=>{let o={x:r[0],y:r[1]},s=this.convert([r[1],r[0]]);return{target:o,control:s}})}};function A9(i,t){let e=[];return i.features.forEach(l=>{let n=t.convert(l.geometry.coordinates),r=(l.properties.neighbors||[]).map(h=>({node:h,map:l.properties.level})),o=l.properties.level,s=z(S({},l.properties),{x:n.x,y:n.y,paths:r,map:o,externalId:l.properties.externalId||""});e.push(s)}),e}var r0=(i,t,e,l,n)=>{let a=[];return i.features.forEach(r=>{if(!r.geometry.coordinates[0].forEach)return;let o=[];"entrances"in r.properties&&(o=r.properties.entrances.map(g=>({id:"n_"+g.id,node:"n_"+g.id,map:g.level})));let s=e[r.properties.id],h=t.find(g=>g.id===s),u=r.geometry.coordinates[0].map(g=>n.convert(g)),d=l.find(g=>g.polygonId===r.properties.id),p=Math.max(n.widthInMapUnits,n.heightInMapUnits)/1e3,x;if(d){let g=n.convert([d.position[0],d.position[1]]),_=d.size.x,y=d.size.y,w=n.mapScale,C=_*w,N=y*w,T=C/p/d.viewBox.width,O=N/p/d.viewBox.height;x={url:h==null?void 0:h.image,visible:!!(h!=null&&h.image),viewBox:d.viewBox,scale:{x:T,y:O},position:{x:g.x,y:g.y},rotation:d.rotation,useLocalScaling:!1,_isAbsolutelyPositioned:!0}}let f=z(S({},r.properties),{entrances:o,map:r.properties.level,externalId:r.properties.externalId||"",geometry:{visible:!0,position:{x:0,y:0,z:((h==null?void 0:h.altitude)||0)*n.mapScale/p},scale:{x:1,y:1,z:((h==null?void 0:h.height)||1)*n.mapScale/p}},material:{color:(h==null?void 0:h.color)||"#000000"},image:x,vertexes:u});a.push(f)}),a};function C9(i,t,e,l,n,a){let r=r0(i,e,l,n,a),o=r0(t,e,l,n,a);return r.concat(o)}function T9(i){let t=new Map;return i.forEach(e=>{e.features.forEach(l=>{let{destinations:n}=l.properties;if(n.length===0)return;let a=n[0].split("-")[0],r=t.get(a),o=n.map(s=>s.split("-")[1]).map(s=>"n_"+s);if(r)r.nodes.push(...o);else{let{name:s,type:h,weight:u,multiplier:d,accessible:p}=l.properties,x={id:a,nodes:o,name:s,type:h,weight:u,multiplier:d,accessible:p};t.set(a,x)}})}),Array.from(t.values())}function S9(i){let t=[];return i.features.forEach(e=>{let l=S({},e.properties);t.push(l)}),t}function o0(i){let t=Array.from(i.connection.values()),e=Array.from(i.level.values()),l=i.building,n=i.category,a=i.style,r=i.location,o=i.imageInstance,s=i.polygonStyle,h={},u=[],d=new Map;e.forEach(k=>{let D=k.features[0].properties.id,U=M9(k),G=new t6(U);d.set(D,G);let W=i.obstruction.get(D),g1=i.space.get(D),i1=o.get(D),L1=s.get(D);h[D]=C9(g1,W,a,L1,i1,G);let Mt=i.node.get(D);u.push(...A9(Mt,G))});let p=Object.values(h).flat(),x=T9(t),f=e.map(k=>{let D=k.features[0].properties.id,U=d.get(D);return w9(k,h[D],U)}).flat(),g=new Map;Array.from(i.space.values()).forEach(k=>{k.features.forEach(D=>{g.set(D.properties.id,D.properties.entrances)})});let _=S9(l),y=y9(r,g),w=E9(n),C=v9(r),N=i.manifest.features[0].properties.name,T=i.manifest.features[0].geometry.coordinates[0],O=i.manifest.features[0].geometry.coordinates[1],L=i.imageBinaries;return{locations:y,categories:w,nodes:u,maps:f,polygons:p,vortexes:x,mapGroups:_,locationStates:C,themes:[],venue:{name:N,latitude:O,longitude:T},imageBinaries:L}}c();c();c();c();var e6=[0,4,6,8,10],d1=()=>{let i=new Array(16).fill(0),t=Math.random()*4294967296;for(let l=0;l<i.length;l++)l>0&&!(l&3)&&(t=Math.random()*4294967296),i[l]=t>>>((l&3)<<3)&255;let e=i.map(l=>l.toString(16).padStart(2,"0"));return e[6]="4"+e[6][1],e[8]=["8","9","a","b"].includes(e[7][0])?e[7]:"a"+e[7][1],e6.map((l,n)=>e.slice(l,n===e6.length-1?void 0:e6[n+1]).join("")).join("-")};var s0="mi-session-data",h0="mi-local-data",_t,S1,P1,i6=class{constructor(){v(this,S1,void 0);v(this,P1,void 0);try{let t=sessionStorage.getItem(s0);t?E(this,S1,JSON.parse(t)):E(this,S1,{id:d1()})}catch(t){E(this,S1,{id:d1()})}try{let t=localStorage.getItem(h0);t?E(this,P1,JSON.parse(t)):E(this,P1,{deviceId:d1()})}catch(t){E(this,P1,{deviceId:d1()})}m(this,S1).id||(m(this,S1).id=d1()),m(this,P1).deviceId||(m(this,P1).deviceId=d1())}static getInstance(){return m(this,_t)||E(this,_t,new i6),m(this,_t)}static ___clearInstance(){E(this,_t,void 0)}saveSessionData(t,e){m(this,S1)[t]=e;try{return sessionStorage.setItem(s0,JSON.stringify(m(this,S1))),!0}catch(l){return!1}}loadSessionData(t){let e=m(this,S1)[t];if(e!=null)return e}saveLocalData(t,e){m(this,P1)[t]=e;try{return localStorage.setItem(h0,JSON.stringify(m(this,P1))),!0}catch(l){return!1}}loadLocalData(t){let e=m(this,P1)[t];if(e!=null)return e}},Nt=i6;_t=new WeakMap,S1=new WeakMap,P1=new WeakMap,v(Nt,_t,void 0);function m0(i){return/^[\da-f]{24}$/i.test(i)}function u0(){return Nt.getInstance().loadLocalData("deviceId")}function q0(){return Nt.getInstance().loadSessionData("id")}var I0=tt(L0(),1);var O0,k9=(O0=b==null?void 0:b.env)==null?void 0:O0.npm_package_version,a6=["websdk","web","webv2"],r6="websdk",Ue,Bt,Dt,He,Rt,kt,Ft,gt,Ge,Vt,jt,We,o6=class{constructor(t){v(this,Ue,void 0);v(this,Bt,void 0);v(this,Dt,void 0);v(this,He,void 0);v(this,Rt,void 0);v(this,kt,void 0);v(this,Ft,void 0);v(this,gt,void 0);v(this,Ge,void 0);v(this,Vt,void 0);v(this,jt,void 0);v(this,We,void 0);var l;E(this,gt,t.clientId),E(this,Ge,t.clientSecret),E(this,Vt,t.accessToken),E(this,Ft,t.noAuth||!1);let e="https://api-gateway.mappedin.com/track-analytics/a/";!m(this,Ft)&&m(this,gt)&&!m0(m(this,gt))&&(e="https://web-proxy.mappedin.com/a/"),E(this,Dt,e),E(this,Dt,m(this,Dt)+(t.venue+"/")),E(this,Bt,!1),E(this,Ue,typeof t.testMode=="boolean"?t.testMode:((l=t.testMode)==null?void 0:l.toLowerCase())==="true"),E(this,He,a6.find(n=>n===t.context)||a6[0]),E(this,Rt,u0()),E(this,kt,q0()),E(this,jt,new Set),E(this,We,t.platformString||""),this.locationSelected=this.locationSelected.bind(this),this.categorySelected=this.categorySelected.bind(this),this.getDirections=this.getDirections.bind(this)}track(t,e){if(m(this,Ue))return;let l=z(S({},e),{g:m(this,Bt)}),n=m(this,Dt)+t+"?"+I0.default.stringify(l),a={"mi-context":r6||m(this,He),"mi-session":m(this,kt),"mi-device":m(this,Rt),"mappedin-sdk-version":k9,"mappedin-platform-version":m(this,We)};m(this,Vt)?a.Authorization=`Bearer ${m(this,Vt)}`:m(this,Ft)||(a.Authorization=`Basic ${btoa(`${m(this,gt)}:${m(this,Ge)}`)}`),ve()(n,{method:"GET",mode:"cors",headers:a})}locationSelected(t){let e=t.id||t;this.track("select-location",{id:e})}categorySelected(t){let e=t.id||t;this.track("select-category",{id:e})}mapViewLoaded(t,e,l,n){this.track("load-mapview",{type:t,force:e,benchmark:l||-1,reason:n||"success"})}getDirections(t,e){let l={start:t.id,end:e.id,type:"location_to_location"};this.track("query-directions",l)}getSessionID(){return m(this,kt)}getDeviceID(){return m(this,Rt)}setGeolocationMode(t){E(this,Bt,t)}trackBlueDotEvent(t){t&&Object.values(o6.BLUEDOT_EVENT).includes(t)&&!m(this,jt).has(t)?(this.track(t),m(this,jt).add(t)):A.warn(`Ignored unsupported blue dot event: "${t}".`)}trackSearch(t){t!=null&&this.track("query-search",t)}trackSearchSuggest(t){t!=null&&this.track("query-suggest",t)}static setContext(t){let e=a6.find(l=>l===t);e&&(r6=e)}static clearContext(){r6=void 0}},V3=o6;Ue=new WeakMap,Bt=new WeakMap,Dt=new WeakMap,He=new WeakMap,Rt=new WeakMap,kt=new WeakMap,Ft=new WeakMap,gt=new WeakMap,Ge=new WeakMap,Vt=new WeakMap,jt=new WeakMap,We=new WeakMap,q(V3,"BLUEDOT_EVENT",{ATTEMPT_BLUEDOT:"attempt-bluedot",FOUND_POSITION:"found-position",FOUND_FLOOR:"found-floor"});var j3=V3;var z0={supplementaryUrl:"https://api-gateway.mappedin.com/analytics/",headers:{},accessToken:"",clientId:"",noAuth:!1,includeHidden:!0,clientSecret:"",apiGateway:"",authorization:"",perspective:"Website",language:"",things:{},venue:""};var Ut={categories:w1,locations:m1,vortexes:ut,maps:ot,nodes:u1,polygons:k1,venue:mt,events:rt,mapGroups:st,themes:D3,locationStates:S3,rankings:ht},qt,Ht,x1=class{constructor(t){q(this,"perspective");q(this,"things");q(this,"options");v(this,qt,void 0);v(this,Ht,"");q(this,"updatedAt");q(this,"categories",[]);q(this,"locations",[]);q(this,"vortexes",[]);q(this,"maps",[]);q(this,"nodes",[]);q(this,"polygons",[]);q(this,"venue",{});q(this,"events",[]);q(this,"mapGroups",[]);q(this,"themes",[]);q(this,"locationStates",[]);q(this,"rankings");q(this,"_categoriesById");q(this,"_locationsById");q(this,"_vortexesById");q(this,"_mapsById");q(this,"_nodesById");q(this,"_polygonsById");q(this,"_eventsById");q(this,"_mapGroupsById");q(this,"_locationStatesById");q(this,"_locationRankingsById");q(this,"_rankingsById");q(this,"_categoriesByExternalId");q(this,"_locationsByExternalId");q(this,"_vortexesByExternalId");q(this,"_mapsByExternalId");q(this,"_nodesByExternalId");q(this,"_polygonsByExternalId");q(this,"_eventsByExternalId");q(this,"_mapGroupsByExternalId");q(this,"_locationStatesByExternalId");q(this,"_locationRankingsByExternalId");q(this,"_rankingsByExternalId");q(this,"images");q(this,"imageBinaries");q(this,"scenes");q(this,"analytics");q(this,"navigator");this.options=t,E(this,qt,f1.create(this));let e=new j3(z(S({},t),{testMode:!(t!=null&&t.emitAnalyticsEvents)}));this.analytics={locationSelected:e.locationSelected,categorySelected:e.categorySelected,getDirections:e.getDirections},globalThis.MappedinDebug||(globalThis.MappedinDebug={enable(){globalThis.sessionStorage.setItem(b4,"true")}})}generateGetters(t){try{for(let e=0,l=t.length;e<l;++e){let n=t[e];Array.isArray(this[n])&&(Object.defineProperty(this,`_${n}ByExternalId`,{get(){let a=m(this,qt)[n];if(a!=null)return a;let r={};return this[n].forEach(o=>r[o.externalId]=o),m(this,qt)[n]=r,r}}),Object.defineProperty(this,`_${n}ById`,{get(){let a=m(this,qt)[n];if(a!=null)return a;let r={};return this[n].forEach(o=>r[o.id]=o),m(this,qt)[n]=r,r}}))}return this}catch(e){throw new Error("Unable to generate getters, "+e)}}getCollectionItemById(t,e){let l=`_${t}ById`,n=`_${t}ByExternalId`,a=this[l];return a!=null&&a[e]!=null||(a=this[n],a!=null&&a[e]!=null)?a[e]:null}hydrateFromMVF(t){return M(this,null,function*(){let e=o0(t);return this.hydrate(e)})}hydrate(t,e){return M(this,null,function*(){let l;if(typeof t=="string")try{E(this,Ht,t),l=JSON.parse(t)}catch(s){A.error("Unable to parse JSON",s);return}else l=t,E(this,Ht,JSON.stringify(l));let n=Object.keys(l);for(let s=0,h=n.length;s<h;++s){let u=n[s],d=l[u];Ut[u]!=null&&typeof Ut[u].hydrate=="function"&&(this[u]=Ut[u].hydrate(d,this))}e&&(yield l0(l));let{images:a,scenes:r,imageBinaries:o}=l;this.images=a,this.scenes=r,this.imageBinaries=o,this.generateGetters(n),this.initNavigator()})}fetch(){return M(this,null,function*(){"vortexes"in this.options.things||(this.options.things.vortexes=["name","type","accessible","weight","multiplier","nodes"]),"locationStates"in this.options.things||(this.options.things.locationStates=["name","id","value"]),t0(this.options.clientId)||this.options.things.rankings&&delete this.options.things.rankings;let{things:t}=this.options,e=[],l=Object.keys(t);for(let n=0,a=l.length;n<a;++n){let r=l[n];Ut[r]&&e.push(Ut[r].fetch(this).then(o=>(this[r]=o,Promise.resolve())))}return this.generateGetters(l),Promise.all(e).then(()=>{this.initNavigator()})})}initNavigator(){this.navigator=new Y4({locations:this.locations.map(t=>t.toJSON()),nodes:this.nodes.map(t=>t.toJSON()),vortexes:this.vortexes.map(t=>t.toJSON()),maps:this.maps.map(t=>t.toJSON())})}toJSON(){var l;let t={};for(let n in Ut)Array.isArray(this[n])&&(t[n]=this[n].map(a=>a.toJSON()));let e=z(S({},t),{venue:this.venue.toJSON()});return this.rankings!=null&&(e.rankings=(l=this.rankings)==null?void 0:l.toJSON()),delete e.locationRankings,e}toString(){return m(this,Ht)||JSON.stringify(this.toJSON())}};qt=new WeakMap,Ht=new WeakMap;c();var N0={venue:["slug","name","defaultMap","metadata","countrycode","tzid","logo","externalId"],nodes:["externalId","x","y","paths","accessible","operationHours"],vortexes:["externalId","nodes","types","accessible"],polygons:["vertexes","geometry","canvasBounds","layer","externalId","entrances"],locations:["externalId","name","type","picture","description","icon","logo","sortOrder","phone","operationHours","social","color","toMap","tags","shortName","detailsUrl","locationState","metadata","siblingGroups","gallery"],categories:["name","color","sortOrder","parents"],maps:["name","elevation","height","width","layers","shortName","scene","group","x_scale"],mapGroups:["name"],themes:["name","themeData"],rankings:["polygons"]};c();c();var Q=function(){return Q=Object.assign||function(t){for(var e,l=1,n=arguments.length;l<n;l++){e=arguments[l];for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(t[a]=e[a])}return t},Q.apply(this,arguments)};function j(i){var t=typeof Symbol=="function"&&Symbol.iterator,e=t&&i[t],l=0;if(e)return e.call(i);if(i&&typeof i.length=="number")return{next:function(){return i&&l>=i.length&&(i=void 0),{value:i&&i[l++],done:!i}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function a1(i,t){var e=typeof Symbol=="function"&&i[Symbol.iterator];if(!e)return i;var l=e.call(i),n,a=[],r;try{for(;(t===void 0||t-- >0)&&!(n=l.next()).done;)a.push(n.value)}catch(o){r={error:o}}finally{try{n&&!n.done&&(e=l.return)&&e.call(l)}finally{if(r)throw r.error}}return a}var F9="ENTRIES",j0="KEYS",U0="VALUES",r1="",s6=function(){function i(t,e){var l=t._tree,n=Array.from(l.keys());this.set=t,this._type=e,this._path=n.length>0?[{node:l,keys:n}]:[]}return i.prototype.next=function(){var t=this.dive();return this.backtrack(),t},i.prototype.dive=function(){if(this._path.length===0)return{done:!0,value:void 0};var t=Gt(this._path),e=t.node,l=t.keys;if(Gt(l)===r1)return{done:!1,value:this.result()};var n=e.get(Gt(l));return this._path.push({node:n,keys:Array.from(n.keys())}),this.dive()},i.prototype.backtrack=function(){if(this._path.length!==0){var t=Gt(this._path).keys;t.pop(),!(t.length>0)&&(this._path.pop(),this.backtrack())}},i.prototype.key=function(){return this.set._prefix+this._path.map(function(t){var e=t.keys;return Gt(e)}).filter(function(t){return t!==r1}).join("")},i.prototype.value=function(){return Gt(this._path).node.get(r1)},i.prototype.result=function(){switch(this._type){case U0:return this.value();case j0:return this.key();default:return[this.key(),this.value()]}},i.prototype[Symbol.iterator]=function(){return this},i}(),Gt=function(i){return i[i.length-1]},V9=function(i,t,e){var l=new Map;if(t===void 0)return l;for(var n=t.length+1,a=n+e,r=new Uint8Array(a*n).fill(e+1),o=0;o<n;++o)r[o]=o;for(var s=1;s<a;++s)r[s*n]=s;return H0(i,t,e,l,r,1,n,""),l},H0=function(i,t,e,l,n,a,r,o){var s,h,u=a*r;try{t:for(var d=j(i.keys()),p=d.next();!p.done;p=d.next()){var x=p.value;if(x===r1){var f=n[u-1];f<=e&&l.set(o,[i.get(x),f])}else{for(var g=a,_=0;_<x.length;++_,++g){for(var y=x[_],w=r*g,C=w-r,N=n[w],T=Math.max(0,g-e-1),O=Math.min(r-1,g+e),L=T;L<O;++L){var B=y!==t[L],k=n[C+L]+ +B,D=n[C+L+1]+1,U=n[w+L]+1,G=n[w+L+1]=Math.min(k,D,U);G<N&&(N=G)}if(N>e)continue t}H0(i.get(x),t,e,l,n,g,r,o+x)}}}catch(W){s={error:W}}finally{try{p&&!p.done&&(h=d.return)&&h.call(d)}finally{if(s)throw s.error}}},h6=function(){function i(t,e){t===void 0&&(t=new Map),e===void 0&&(e=""),this._size=void 0,this._tree=t,this._prefix=e}return i.prototype.atPrefix=function(t){var e,l;if(!t.startsWith(this._prefix))throw new Error("Mismatched prefix");var n=a1(H3(this._tree,t.slice(this._prefix.length)),2),a=n[0],r=n[1];if(a===void 0){var o=a1(d6(r),2),s=o[0],h=o[1];try{for(var u=j(s.keys()),d=u.next();!d.done;d=u.next()){var p=d.value;if(p!==r1&&p.startsWith(h)){var x=new Map;return x.set(p.slice(h.length),s.get(p)),new i(x,t)}}}catch(f){e={error:f}}finally{try{d&&!d.done&&(l=u.return)&&l.call(u)}finally{if(e)throw e.error}}}return new i(a,t)},i.prototype.clear=function(){this._size=void 0,this._tree.clear()},i.prototype.delete=function(t){return this._size=void 0,j9(this._tree,t)},i.prototype.entries=function(){return new s6(this,F9)},i.prototype.forEach=function(t){var e,l;try{for(var n=j(this),a=n.next();!a.done;a=n.next()){var r=a1(a.value,2),o=r[0],s=r[1];t(o,s,this)}}catch(h){e={error:h}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}},i.prototype.fuzzyGet=function(t,e){return V9(this._tree,t,e)},i.prototype.get=function(t){var e=c6(this._tree,t);return e!==void 0?e.get(r1):void 0},i.prototype.has=function(t){var e=c6(this._tree,t);return e!==void 0&&e.has(r1)},i.prototype.keys=function(){return new s6(this,j0)},i.prototype.set=function(t,e){if(typeof t!="string")throw new Error("key must be a string");this._size=void 0;var l=m6(this._tree,t);return l.set(r1,e),this},Object.defineProperty(i.prototype,"size",{get:function(){if(this._size)return this._size;this._size=0;for(var t=this.entries();!t.next().done;)this._size+=1;return this._size},enumerable:!1,configurable:!0}),i.prototype.update=function(t,e){if(typeof t!="string")throw new Error("key must be a string");this._size=void 0;var l=m6(this._tree,t);return l.set(r1,e(l.get(r1))),this},i.prototype.fetch=function(t,e){if(typeof t!="string")throw new Error("key must be a string");this._size=void 0;var l=m6(this._tree,t),n=l.get(r1);return n===void 0&&l.set(r1,n=e()),n},i.prototype.values=function(){return new s6(this,U0)},i.prototype[Symbol.iterator]=function(){return this.entries()},i.from=function(t){var e,l,n=new i;try{for(var a=j(t),r=a.next();!r.done;r=a.next()){var o=a1(r.value,2),s=o[0],h=o[1];n.set(s,h)}}catch(u){e={error:u}}finally{try{r&&!r.done&&(l=a.return)&&l.call(a)}finally{if(e)throw e.error}}return n},i.fromObject=function(t){return i.from(Object.entries(t))},i}(),H3=function(i,t,e){var l,n;if(e===void 0&&(e=[]),t.length===0||i==null)return[i,e];try{for(var a=j(i.keys()),r=a.next();!r.done;r=a.next()){var o=r.value;if(o!==r1&&t.startsWith(o))return e.push([i,o]),H3(i.get(o),t.slice(o.length),e)}}catch(s){l={error:s}}finally{try{r&&!r.done&&(n=a.return)&&n.call(a)}finally{if(l)throw l.error}}return e.push([i,t]),H3(void 0,"",e)},c6=function(i,t){var e,l;if(t.length===0||i==null)return i;try{for(var n=j(i.keys()),a=n.next();!a.done;a=n.next()){var r=a.value;if(r!==r1&&t.startsWith(r))return c6(i.get(r),t.slice(r.length))}}catch(o){e={error:o}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}},m6=function(i,t){var e,l,n=t.length;t:for(var a=0;i&&a<n;){try{for(var r=(e=void 0,j(i.keys())),o=r.next();!o.done;o=r.next()){var s=o.value;if(s!==r1&&t[a]===s[0]){for(var h=Math.min(n-a,s.length),u=1;u<h&&t[a+u]===s[u];)++u;var d=i.get(s);if(u===s.length)i=d;else{var p=new Map;p.set(s.slice(u),d),i.set(t.slice(a,a+u),p),i.delete(s),i=p}a+=u;continue t}}}catch(f){e={error:f}}finally{try{o&&!o.done&&(l=r.return)&&l.call(r)}finally{if(e)throw e.error}}var x=new Map;return i.set(t.slice(a),x),x}return i},j9=function(i,t){var e=a1(H3(i,t),2),l=e[0],n=e[1];if(l!==void 0){if(l.delete(r1),l.size===0)G0(n);else if(l.size===1){var a=a1(l.entries().next().value,2),r=a[0],o=a[1];W0(n,r,o)}}},G0=function(i){if(i.length!==0){var t=a1(d6(i),2),e=t[0],l=t[1];if(e.delete(l),e.size===0)G0(i.slice(0,-1));else if(e.size===1){var n=a1(e.entries().next().value,2),a=n[0],r=n[1];a!==r1&&W0(i.slice(0,-1),a,r)}}},W0=function(i,t,e){if(i.length!==0){var l=a1(d6(i),2),n=l[0],a=l[1];n.set(a+t,e),n.delete(a)}},d6=function(i){return i[i.length-1]},Ye,p6="or",U9="and",H9="and_not",yt=function(){function i(t){if((t==null?void 0:t.fields)==null)throw new Error('MiniSearch: option "fields" must be provided');this._options=Q(Q(Q({},q6),t),{searchOptions:Q(Q({},R0),t.searchOptions||{})}),this._index=new h6,this._documentCount=0,this._documentIds=new Map,this._fieldIds={},this._fieldLength=new Map,this._avgFieldLength=[],this._nextId=0,this._storedFields=new Map,this.addFields(this._options.fields)}return i.prototype.add=function(t){var e,l,n,a,r=this._options,o=r.extractField,s=r.tokenize,h=r.processTerm,u=r.fields,d=r.idField,p=o(t,d);if(p==null)throw new Error('MiniSearch: document does not have ID field "'.concat(d,'"'));var x=this.addDocumentId(p);this.saveStoredFields(x,t);try{for(var f=j(u),g=f.next();!g.done;g=f.next()){var _=g.value,y=o(t,_);if(y!=null){var w=s(y.toString(),_),C=this._fieldIds[_],N=new Set(w).size;this.addFieldLength(x,C,this._documentCount-1,N);try{for(var T=(n=void 0,j(w)),O=T.next();!O.done;O=T.next()){var L=O.value,B=h(L,_);B&&this.addTerm(C,x,B)}}catch(k){n={error:k}}finally{try{O&&!O.done&&(a=T.return)&&a.call(T)}finally{if(n)throw n.error}}}}}catch(k){e={error:k}}finally{try{g&&!g.done&&(l=f.return)&&l.call(f)}finally{if(e)throw e.error}}},i.prototype.addAll=function(t){var e,l;try{for(var n=j(t),a=n.next();!a.done;a=n.next()){var r=a.value;this.add(r)}}catch(o){e={error:o}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}},i.prototype.addAllAsync=function(t,e){var l=this;e===void 0&&(e={});var n=e.chunkSize,a=n===void 0?10:n,r={chunk:[],promise:Promise.resolve()},o=t.reduce(function(u,d,p){var x=u.chunk,f=u.promise;return x.push(d),(p+1)%a===0?{chunk:[],promise:f.then(function(){return new Promise(function(g){return setTimeout(g,0)})}).then(function(){return l.addAll(x)})}:{chunk:x,promise:f}},r),s=o.chunk,h=o.promise;return h.then(function(){return l.addAll(s)})},i.prototype.remove=function(t){var e,l,n,a,r,o,s=this._options,h=s.tokenize,u=s.processTerm,d=s.extractField,p=s.fields,x=s.idField,f=d(t,x);if(f==null)throw new Error('MiniSearch: document does not have ID field "'.concat(x,'"'));try{for(var g=j(this._documentIds),_=g.next();!_.done;_=g.next()){var y=a1(_.value,2),w=y[0],C=y[1];if(f===C){try{for(var N=(n=void 0,j(p)),T=N.next();!T.done;T=N.next()){var O=T.value,L=d(t,O);if(L!=null){var B=h(L.toString(),O),k=this._fieldIds[O],D=new Set(B).size;this.removeFieldLength(w,k,this._documentCount,D);try{for(var U=(r=void 0,j(B)),G=U.next();!G.done;G=U.next()){var W=G.value,g1=u(W,O);g1&&this.removeTerm(k,w,g1)}}catch(i1){r={error:i1}}finally{try{G&&!G.done&&(o=U.return)&&o.call(U)}finally{if(r)throw r.error}}}}}catch(i1){n={error:i1}}finally{try{T&&!T.done&&(a=N.return)&&a.call(N)}finally{if(n)throw n.error}}this._storedFields.delete(w),this._documentIds.delete(w),this._fieldLength.delete(w),this._documentCount-=1;return}}}catch(i1){e={error:i1}}finally{try{_&&!_.done&&(l=g.return)&&l.call(g)}finally{if(e)throw e.error}}throw new Error("MiniSearch: cannot remove document with ID ".concat(f,": it is not in the index"))},i.prototype.removeAll=function(t){var e,l;if(t)try{for(var n=j(t),a=n.next();!a.done;a=n.next()){var r=a.value;this.remove(r)}}catch(o){e={error:o}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}else{if(arguments.length>0)throw new Error("Expected documents to be present. Omit the argument to remove all documents.");this._index=new h6,this._documentCount=0,this._documentIds=new Map,this._fieldLength=new Map,this._avgFieldLength=[],this._storedFields=new Map,this._nextId=0}},i.prototype.search=function(t,e){var l,n;e===void 0&&(e={});var a=this.executeQuery(t,e),r=[];try{for(var o=j(a),s=o.next();!s.done;s=o.next()){var h=a1(s.value,2),u=h[0],d=h[1],p=d.score,x=d.terms,f=d.match,g=x.length,_={id:this._documentIds.get(u),score:p*g,terms:Object.keys(f),match:f};Object.assign(_,this._storedFields.get(u)),(e.filter==null||e.filter(_))&&r.push(_)}}catch(y){l={error:y}}finally{try{s&&!s.done&&(n=o.return)&&n.call(o)}finally{if(l)throw l.error}}return r.sort(F0),r},i.prototype.autoSuggest=function(t,e){var l,n,a,r;e===void 0&&(e={}),e=Q(Q({},Z9),e);var o=new Map;try{for(var s=j(this.search(t,e)),h=s.next();!h.done;h=s.next()){var u=h.value,d=u.score,p=u.terms,x=p.join(" "),f=o.get(x);f!=null?(f.score+=d,f.count+=1):o.set(x,{score:d,terms:p,count:1})}}catch(T){l={error:T}}finally{try{h&&!h.done&&(n=s.return)&&n.call(s)}finally{if(l)throw l.error}}var g=[];try{for(var _=j(o),y=_.next();!y.done;y=_.next()){var w=a1(y.value,2),f=w[0],C=w[1],d=C.score,p=C.terms,N=C.count;g.push({suggestion:f,terms:p,score:d/N})}}catch(T){a={error:T}}finally{try{y&&!y.done&&(r=_.return)&&r.call(_)}finally{if(a)throw a.error}}return g.sort(F0),g},Object.defineProperty(i.prototype,"documentCount",{get:function(){return this._documentCount},enumerable:!1,configurable:!0}),i.loadJSON=function(t,e){if(e==null)throw new Error("MiniSearch: loadJSON should be given the same options used when serializing the index");return i.loadJS(JSON.parse(t),e)},i.getDefault=function(t){if(q6.hasOwnProperty(t))return u6(q6,t);throw new Error('MiniSearch: unknown option "'.concat(t,'"'))},i.loadJS=function(t,e){var l,n,a,r,o=t.index,s=t.documentCount,h=t.nextId,u=t.documentIds,d=t.fieldIds,p=t.fieldLength,x=t.averageFieldLength,f=t.storedFields,g=t.serializationVersion;if(g!==1&&g!==2)throw new Error("MiniSearch: cannot deserialize an index created with an incompatible version");var _=new i(e);_._documentCount=s,_._nextId=h,_._documentIds=U3(u),_._fieldIds=d,_._fieldLength=U3(p),_._avgFieldLength=x,_._storedFields=U3(f),_._index=new h6;try{for(var y=j(o),w=y.next();!w.done;w=y.next()){var C=a1(w.value,2),N=C[0],T=C[1],O=new Map;try{for(var L=(a=void 0,j(Object.keys(T))),B=L.next();!B.done;B=L.next()){var k=B.value,D=T[k];g===1&&(D=D.ds),O.set(parseInt(k,10),U3(D))}}catch(U){a={error:U}}finally{try{B&&!B.done&&(r=L.return)&&r.call(L)}finally{if(a)throw a.error}}_._index.set(N,O)}}catch(U){l={error:U}}finally{try{w&&!w.done&&(n=y.return)&&n.call(y)}finally{if(l)throw l.error}}return _},i.prototype.executeQuery=function(t,e){var l=this;if(e===void 0&&(e={}),typeof t!="string"){var n=Q(Q(Q({},e),t),{queries:void 0}),a=t.queries.map(function(_){return l.executeQuery(_,n)});return this.combineResults(a,t.combineWith)}var r=this._options,o=r.tokenize,s=r.processTerm,h=r.searchOptions,u=Q(Q({tokenize:o,processTerm:s},h),e),d=u.tokenize,p=u.processTerm,x=d(t).map(function(_){return p(_)}).filter(function(_){return!!_}),f=x.map(X9(u)),g=f.map(function(_){return l.executeQuerySpec(_,u)});return this.combineResults(g,u.combineWith)},i.prototype.executeQuerySpec=function(t,e){var l,n,a,r,o=Q(Q({},this._options.searchOptions),e),s=(o.fields||this._options.fields).reduce(function(L1,Mt){var q4;return Q(Q({},L1),(q4={},q4[Mt]=u6(L1,Mt)||1,q4))},o.boost||{}),h=o.boostDocument,u=o.weights,d=o.maxFuzzy,p=Q(Q({},R0.weights),u),x=p.fuzzy,f=p.prefix,g=this._index.get(t.term),_=this.termResults(t.term,t.term,1,g,s,h),y,w;if(t.prefix&&(y=this._index.atPrefix(t.term)),t.fuzzy){var C=t.fuzzy===!0?.2:t.fuzzy,N=C<1?Math.min(d,Math.round(t.term.length*C)):C;N&&(w=this._index.fuzzyGet(t.term,N))}if(y)try{for(var T=j(y),O=T.next();!O.done;O=T.next()){var L=a1(O.value,2),B=L[0],k=L[1],D=B.length-t.term.length;if(D){w==null||w.delete(B);var U=f*B.length/(B.length+.3*D);this.termResults(t.term,B,U,k,s,h,_)}}}catch(L1){l={error:L1}}finally{try{O&&!O.done&&(n=T.return)&&n.call(T)}finally{if(l)throw l.error}}if(w)try{for(var G=j(w.keys()),W=G.next();!W.done;W=G.next()){var B=W.value,g1=a1(w.get(B),2),i1=g1[0],D=g1[1];if(D){var U=x*B.length/(B.length+D);this.termResults(t.term,B,U,i1,s,h,_)}}}catch(L1){a={error:L1}}finally{try{W&&!W.done&&(r=G.return)&&r.call(G)}finally{if(a)throw a.error}}return _},i.prototype.combineResults=function(t,e){if(e===void 0&&(e=p6),t.length===0)return new Map;var l=e.toLowerCase();return t.reduce(G9[l])||new Map},i.prototype.toJSON=function(){var t,e,l,n,a=[];try{for(var r=j(this._index),o=r.next();!o.done;o=r.next()){var s=a1(o.value,2),h=s[0],u=s[1],d={};try{for(var p=(l=void 0,j(u)),x=p.next();!x.done;x=p.next()){var f=a1(x.value,2),g=f[0],_=f[1];d[g]=Object.fromEntries(_)}}catch(y){l={error:y}}finally{try{x&&!x.done&&(n=p.return)&&n.call(p)}finally{if(l)throw l.error}}a.push([h,d])}}catch(y){t={error:y}}finally{try{o&&!o.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}return{documentCount:this._documentCount,nextId:this._nextId,documentIds:Object.fromEntries(this._documentIds),fieldIds:this._fieldIds,fieldLength:Object.fromEntries(this._fieldLength),averageFieldLength:this._avgFieldLength,storedFields:Object.fromEntries(this._storedFields),index:a,serializationVersion:2}},i.prototype.termResults=function(t,e,l,n,a,r,o){var s,h,u,d,p;if(o===void 0&&(o=new Map),n==null)return o;try{for(var x=j(Object.keys(a)),f=x.next();!f.done;f=x.next()){var g=f.value,_=a[g],y=this._fieldIds[g],w=n.get(y);if(w!=null){var C=w.size,N=this._avgFieldLength[y];try{for(var T=(u=void 0,j(w.keys())),O=T.next();!O.done;O=T.next()){var L=O.value,B=r?r(this._documentIds.get(L),e):1;if(B){var k=w.get(L),D=this._fieldLength.get(L)[y],U=Y9(k,C,this._documentCount,D,N),G=l*_*B*U,W=o.get(L);if(W){W.score+=G,J9(W.terms,t);var g1=u6(W.match,e);g1?g1.push(g):W.match[e]=[g]}else o.set(L,{score:G,terms:[t],match:(p={},p[e]=[g],p)})}}}catch(i1){u={error:i1}}finally{try{O&&!O.done&&(d=T.return)&&d.call(T)}finally{if(u)throw u.error}}}}}catch(i1){s={error:i1}}finally{try{f&&!f.done&&(h=x.return)&&h.call(x)}finally{if(s)throw s.error}}return o},i.prototype.addTerm=function(t,e,l){var n=this._index.fetch(l,V0),a=n.get(t);if(a==null)a=new Map,a.set(e,1),n.set(t,a);else{var r=a.get(e);a.set(e,(r||0)+1)}},i.prototype.removeTerm=function(t,e,l){if(!this._index.has(l)){this.warnDocumentChanged(e,t,l);return}var n=this._index.fetch(l,V0),a=n.get(t);a==null||a.get(e)==null?this.warnDocumentChanged(e,t,l):a.get(e)<=1?a.size<=1?n.delete(t):a.delete(e):a.set(e,a.get(e)-1),this._index.get(l).size===0&&this._index.delete(l)},i.prototype.warnDocumentChanged=function(t,e,l){var n,a;if(!(console==null||console.warn==null))try{for(var r=j(Object.keys(this._fieldIds)),o=r.next();!o.done;o=r.next()){var s=o.value;if(this._fieldIds[s]===e){console.warn("MiniSearch: document with ID ".concat(this._documentIds.get(t),' has changed before removal: term "').concat(l,'" was not present in field "').concat(s,'". Removing a document after it has changed can corrupt the index!'));return}}}catch(h){n={error:h}}finally{try{o&&!o.done&&(a=r.return)&&a.call(r)}finally{if(n)throw n.error}}},i.prototype.addDocumentId=function(t){var e=this._nextId;return this._documentIds.set(e,t),this._documentCount+=1,this._nextId+=1,e},i.prototype.addFields=function(t){for(var e=0;e<t.length;e++)this._fieldIds[t[e]]=e},i.prototype.addFieldLength=function(t,e,l,n){var a=this._fieldLength.get(t);a==null&&this._fieldLength.set(t,a=[]),a[e]=n;var r=this._avgFieldLength[e]||0,o=r*l+n;this._avgFieldLength[e]=o/(l+1)},i.prototype.removeFieldLength=function(t,e,l,n){var a=this._avgFieldLength[e]*l-n;this._avgFieldLength[e]=a/(l-1)},i.prototype.saveStoredFields=function(t,e){var l,n,a=this._options,r=a.storeFields,o=a.extractField;if(!(r==null||r.length===0)){var s=this._storedFields.get(t);s==null&&this._storedFields.set(t,s={});try{for(var h=j(r),u=h.next();!u.done;u=h.next()){var d=u.value,p=o(e,d);p!==void 0&&(s[d]=p)}}catch(x){l={error:x}}finally{try{u&&!u.done&&(n=h.return)&&n.call(h)}finally{if(l)throw l.error}}}},i}(),u6=function(i,t){return Object.prototype.hasOwnProperty.call(i,t)?i[t]:void 0},G9=(Ye={},Ye[p6]=function(i,t){var e,l;try{for(var n=j(t.keys()),a=n.next();!a.done;a=n.next()){var r=a.value,o=i.get(r);if(o==null)i.set(r,t.get(r));else{var s=t.get(r),h=s.score,u=s.terms,d=s.match;o.score=o.score+h,o.match=Object.assign(o.match,d),k0(o.terms,u)}}}catch(p){e={error:p}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}return i},Ye[U9]=function(i,t){var e,l,n=new Map;try{for(var a=j(t.keys()),r=a.next();!r.done;r=a.next()){var o=r.value,s=i.get(o);if(s!=null){var h=t.get(o),u=h.score,d=h.terms,p=h.match;k0(s.terms,d),n.set(o,{score:s.score+u,terms:s.terms,match:Object.assign(s.match,p)})}}}catch(x){e={error:x}}finally{try{r&&!r.done&&(l=a.return)&&l.call(a)}finally{if(e)throw e.error}}return n},Ye[H9]=function(i,t){var e,l;try{for(var n=j(t.keys()),a=n.next();!a.done;a=n.next()){var r=a.value;i.delete(r)}}catch(o){e={error:o}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}return i},Ye),B0=1.2,D0=.7,W9=.5,Y9=function(i,t,e,l,n){var a=Math.log(1+(e-t+.5)/(t+.5));return a*(W9+i*(B0+1)/(i+B0*(1-D0+D0*l/n)))},X9=function(i){return function(t,e,l){var n=typeof i.fuzzy=="function"?i.fuzzy(t,e,l):i.fuzzy||!1,a=typeof i.prefix=="function"?i.prefix(t,e,l):i.prefix===!0;return{term:t,fuzzy:n,prefix:a}}},q6={idField:"id",extractField:function(i,t){return i[t]},tokenize:function(i,t){return i.split($9)},processTerm:function(i,t){return i.toLowerCase()},fields:void 0,searchOptions:void 0,storeFields:[]},R0={combineWith:p6,prefix:!1,fuzzy:!1,maxFuzzy:6,boost:{},weights:{fuzzy:.45,prefix:.375}},Z9={prefix:function(i,t,e){return t===e.length-1}},J9=function(i,t){i.includes(t)||i.push(t)},k0=function(i,t){var e,l;try{for(var n=j(t),a=n.next();!a.done;a=n.next()){var r=a.value;i.includes(r)||i.push(r)}}catch(o){e={error:o}}finally{try{a&&!a.done&&(l=n.return)&&l.call(n)}finally{if(e)throw e.error}}},F0=function(i,t){var e=i.score,l=t.score;return l-e},V0=function(){return new Map},U3=function(i){var t,e,l=new Map;try{for(var n=j(Object.keys(i)),a=n.next();!a.done;a=n.next()){var r=a.value;l.set(parseInt(r,10),i[r])}}catch(o){t={error:o}}finally{try{a&&!a.done&&(e=n.return)&&e.call(n)}finally{if(t)throw t.error}}return l},$9=/[\n\r -#%-*,-/:;?@[-\]_{}\u00A0\u00A1\u00A7\u00AB\u00B6\u00B7\u00BB\u00BF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C77\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166E\u1680\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2000-\u200A\u2010-\u2029\u202F-\u2043\u2045-\u2051\u2053-\u205F\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4F\u3000-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]+/u;c();var K9=["0","1","2","3","4","5","6","7","8","9"],Q9=["\u06F1","\u06F2","\u06F3","\u06F4","\u06F5","\u06F6","\u06F7","\u06F8","\u06F9","\u06F0"],t7=["\uFF10","\uFF11","\uFF12","\uFF13","\uFF14","\uFF15","\uFF16","\uFF17","\uFF18","\uFF19"],e7=["\u1040","\u1041","\u1042","\u1043","\u1044","\u1045","\u1046","\u1047","\u1048","\u1049"],iu=[...K9,...Q9,...t7,...e7];var Y0=["about","after","all","also","am","an","and","another","any","are","as","at","be","because","been","before","being","between","both","but","by","came","can","come","could","did","do","each","for","from","get","got","has","had","he","have","her","here","him","himself","his","how","if","in","into","is","it","like","make","many","me","might","more","most","much","must","my","never","now","of","on","only","or","other","our","out","over","said","same","should","since","some","still","such","take","than","that","the","their","them","then","there","these","they","this","those","through","to","too","under","up","very","was","way","we","well","were","what","where","which","while","who","with","would","you","your","a","i"];c();var i7=32,b1=!1,l7=120,x6=0,G3=class{constructor(t){q(this,"_callback");q(this,"_frameCount");q(this,"_ordering");q(this,"_supersededBy");q(this,"name");q(this,"_remainingFrameCount");q(this,"_lastFrameTime");q(this,"userdata");this._callback=t.callback,this._frameCount=t.frameCount!=null?t.frameCount:1,this._ordering=t.ordering!=null?t.ordering:0,this._supersededBy=t.supersededBy!=null?new Set(t.supersededBy):new Set,this.name=t.name,this.userdata=t.userdata,this._remainingFrameCount=this._frameCount,this._lastFrameTime=0,b1&&A.log("update instantiated",this.name)}getLastFrameTime(){return this._lastFrameTime}},$1=class{constructor(t){q(this,"_postponed");q(this,"userdata");q(this,"_priority");q(this,"_group");q(this,"name");q(this,"_lastFrameTime");q(this,"_callback");q(this,"_complete");q(this,"_scheduled");q(this,"_cancelled");if(t.group!=null&&t.priority!=null)throw new Error("cannot specify task priority individually within group");if(t.group!=null&&t.postponeOnAdd!=null)throw new Error("cannot specify task postpone individually within group");this._callback=t.callback,this._group=t.group!=null?t.group:null,this._priority=t.priority!=null?t.priority:0,this._postponed=t.postponeOnAdd!=null?t.postponeOnAdd:!1,this.name=t.name,this.userdata=t.userdata,this._complete=!1,this._scheduled=!1,this._cancelled=!1,this._lastFrameTime=0,b1&&A.log("task instantiated",this.name)}isComplete(){return this._complete}getLastFrameTime(){return this._lastFrameTime}},W3=class{constructor(t){q(this,"_postponed");q(this,"_onComplete");q(this,"_priority");q(this,"userdata");q(this,"name");q(this,"_tasks");q(this,"_scheduledTasks");q(this,"_scheduled");q(this,"_cancelled");this._onComplete=t.onComplete!=null?t.onComplete:()=>{},this._priority=t.priority!=null?t.priority:0,this._postponed=t.postponeOnAdd!=null?t.postponeOnAdd:!1,this.name=t.name,this.userdata=t.userdata,this._tasks=new Set,this._scheduledTasks=new Set,this._scheduled=!1,this._cancelled=!1,b1&&A.log("task group instantiated",this.name)}isComplete(){return this._scheduledTasks.size===0}getTasks(){return Array.from(this._tasks.values())}clear(){this._tasks.clear(),this._scheduledTasks.clear()}_popTask(){for(let t of this._scheduledTasks)return this._scheduledTasks.delete(t),t}},b6=class{constructor(t){q(this,"_maxMillisecondsPerFrame");q(this,"_time");this._maxMillisecondsPerFrame=(t==null?void 0:t.maxMillisecondsPerFrame)!=null?t.maxMillisecondsPerFrame:i7,this._time=0}beginFrame(){this._time=performance.now()+this._maxMillisecondsPerFrame}hasTimeRemaining(){return performance.now()<=this._time}};var Y3=class{constructor(t){q(this,"_raf");q(this,"_timer");q(this,"_performance");q(this,"_scheduledUpdatesByOrdering");q(this,"_scheduledTasksByPriority");q(this,"_postponedTasks");q(this,"_requestAnimationFrameHandle");q(this,"_updatesToRunThisFrame");q(this,"_lastFrameTime",0);q(this,"_updatesRunLastFrame");var e;this._timer=(t==null?void 0:t.timer)!=null?t.timer:new b6,this._performance=(t==null?void 0:t.performance)!=null?t.performance:!1,this._scheduledUpdatesByOrdering=new Wt,this._scheduledTasksByPriority=new Wt,this._postponedTasks=new Set,this._requestAnimationFrameHandle=null,this._updatesToRunThisFrame=[],this._lastFrameTime=0,this._updatesRunLastFrame=new Set,this.update=this.update.bind(this),b1&&A.log("task scheduler instantiated"),(e=globalThis.MappedinDebug)!=null&&e.TEST_IOS&&(this._raf=l=>setTimeout(l,16))}clear(){for(let t of this._scheduledTasksByPriority.values())t._cancelled=!0;for(let t of this._postponedTasks.values())t._cancelled=!0;this._scheduledUpdatesByOrdering=new Wt,this._scheduledTasksByPriority=new Wt,this._postponedTasks=new Set,this._lastFrameTime=0,this._updatesRunLastFrame.clear(),b1&&A.log("task scheduler cleared")}destroy(){this.clear()}requestAnimationFrame(){this._requestAnimationFrameHandle==null&&(this._requestAnimationFrameHandle=typeof this._raf=="function"?this._raf(this.update):requestAnimationFrame(this.update))}update(t){this._timer.beginFrame();let e;this._performance&&(e=performance.now());let l=!1;b1&&(x6===0&&(l=!0),++x6,x6%=l7);let n=this._scheduledUpdatesByOrdering.keys();for(let a=n.length-1;a>=0;--a){let r=n[a];for(let o of this._scheduledUpdatesByOrdering.get(r).values())this._updatesToRunThisFrame.push(o),l&&A.log("update scheduled to run this frame",o.name)}for(let a of this._updatesToRunThisFrame){--a._remainingFrameCount,a._remainingFrameCount<=0&&this._scheduledUpdatesByOrdering.delete(a._ordering,a),a._superseded=!1;for(let r of this._updatesToRunThisFrame)a._supersededBy.has(r)&&(a._superseded=!0,l&&A.log("update superseded",a.name,r.name))}for(let a=0;a<this._updatesToRunThisFrame.length;++a)this._updatesToRunThisFrame[a]._superseded&&(this._updatesToRunThisFrame.splice(a,1),--a);for(let a of this._updatesToRunThisFrame){let r;this._performance&&(r=performance.now()),a._callback(t),this._performance&&(a._lastFrameTime=performance.now()-r),l&&A.log("update completed",a.name)}this._updatesRunLastFrame.clear();for(let a of this._updatesToRunThisFrame)this._updatesRunLastFrame.add(a);if(this._updatesToRunThisFrame.splice(0,this._updatesToRunThisFrame.length),this._scheduledTasksByPriority.size>0)do this._executeOneTask(t);while(this._timer.hasTimeRemaining()&&this._scheduledTasksByPriority.size>0);this._performance&&(this._lastFrameTime=performance.now()-e),this._requestAnimationFrameHandle=null,(this._scheduledUpdatesByOrdering.size>0||this._scheduledTasksByPriority.size>0)&&this.requestAnimationFrame()}flushTasks(){for(;this._scheduledTasksByPriority.size>0;)this._executeOneTask(performance.now())}getLastFrameTime(){return this._lastFrameTime}getUpdatesRunLastFrame(){return this._updatesRunLastFrame}_executeOneTask(t){let e=this._scheduledTasksByPriority.popFromMaxKey(),l=null;A.assert(e!==void 0),Object.getPrototypeOf(e)===W3.prototype&&(l=e,e=l._popTask()),A.assert(e!==void 0),A.assert(Object.getPrototypeOf(e)===$1.prototype);let n;this._performance&&(n=performance.now()),e._callback(t),e._complete=!0,this._performance&&(e._lastFrameTime=performance.now()-n),b1&&A.log("task completed",e.name),l!=null&&(l.isComplete()?(l.clear(),l._onComplete(),b1&&A.log("group completed",l.name)):this._scheduledTasksByPriority.insert(l._priority,l))}scheduleUpdate(t){t._remainingFrameCount=t._frameCount,this._scheduledUpdatesByOrdering.insert(t._ordering,t),this.requestAnimationFrame()}scheduleTask(t){if(Object.getPrototypeOf(t)===W3)throw new Error("frame task groups are automatically scheduled when a task is added to them and cannot be manually scheduled: "+t.name);if(t._scheduled)throw new Error("cannot schedule already scheduled task: "+t.name);if(t._cancelled)throw new Error("cannot schedule cancelled task: "+t.name);let e=t;"_group"in t&&t._group!=null&&(t._group._tasks.add(t),t._group._scheduledTasks.add(t),e=t._group),e._postponed?this._postponedTasks.add(e):this._scheduledTasksByPriority.insert(e._priority,e),t._scheduled=!0,e._scheduled=!0,b1&&A.log("task scheduled",t.name),this.requestAnimationFrame()}cancelUpdate(t){this._scheduledUpdatesByOrdering.delete(t._ordering,t),b1&&A.log("update cancelled",t.name)}cancelTask(t){if(!t._scheduled)throw new Error("cannot cancel task that has not been scheduled: "+t.name);if(t._cancelled)throw new Error("cannot cancel task that has already been cancelled: "+t.name);if("_group"in t&&t._group!=null){let e=t._group.isComplete();t._group._tasks.delete(t),t._group._scheduledTasks.delete(t),t._group.isComplete()&&(this._scheduledTasksByPriority.delete(t._group._priority,t._group),e||t._group._onComplete())}else this._scheduledTasksByPriority.delete(t._priority,t),this._postponedTasks.delete(t);Object.getPrototypeOf(t)===$1.prototype?t._cancelled=!0:"clear"in t&&t.clear(),b1&&A.log("task cancelled",t.name)}postponeTask(t){if("_group"in t&&t._group!=null)throw new Error("cannot postpone individual tasks in group: "+t.name);if(t._cancelled)throw new Error("cannot postpone cancelled task: "+t.name);if(!t._postponed){if(Object.getPrototypeOf(t)===$1.prototype){if("_complete"in t)return;if(!t._scheduled)throw new Error("cannot postpone task that has not been scheduled: "+t.name)}this._scheduledTasksByPriority.delete(t._priority,t),(Object.getPrototypeOf(t)===$1.prototype||!t.isComplete())&&this._postponedTasks.add(t),t._postponed=!0,b1&&A.log("task postponed",t.name)}}resumeTask(t){if("_group"in t&&t._group!=null)throw new Error("cannot resume individual tasks in groups");if(t._cancelled)throw new Error("cannot resume cancelled task");if(t._postponed){if(Object.getPrototypeOf(t)===$1.prototype){if("_complete"in t&&t._complete)return;if(!t._scheduled)throw new Error("cannot resume unscheduled task")}this._postponedTasks.delete(t),(Object.getPrototypeOf(t)===$1.prototype||!t.isComplete())&&this._scheduledTasksByPriority.insert(t._priority,t),t._postponed=!1,this.requestAnimationFrame(),b1&&A.log("task resumed",t.name)}}setTaskPriority(t,e){if(Object.getPrototypeOf(t)===$1.prototype&&!t._scheduled)throw new Error("task must be scheduled to be reprioritized");this._scheduledTasksByPriority.has(t._priority,t)&&(this._scheduledTasksByPriority.delete(t._priority,t),this._scheduledTasksByPriority.insert(e,t)),t._priority=e,b1&&A.log("task priority changed",t.name,e)}},Wt=class{constructor(){q(this,"_map");q(this,"_size");q(this,"_sortedKeys");this._map=new Map,this._size=0,this._sortedKeys=[]}has(t,e){return this._map.get(t)!=null&&this._map.get(t).has(e)}get(t){return this._map.get(t)}insert(t,e){if(A.assert(typeof t=="number"&&Number.isFinite(t)),this._map.get(t)==null){this._map.set(t,new Set);for(let l=0;l<=this._sortedKeys.length;++l)if(l===this._sortedKeys.length||t<this._sortedKeys[l]){this._sortedKeys.splice(l,0,t);break}}this._map.get(t).has(e)||(this._map.get(t).add(e),++this._size)}delete(t,e){this._map.get(t)!=null&&this._map.get(t).has(e)&&(this._map.get(t).delete(e),--this._size,this._map.get(t).size===0&&(this._map.delete(t),this._sortedKeys.splice(this._sortedKeys.indexOf(t),1)))}pop(t){if(this._map.get(t)!=null){let e;for(e of this._map.get(t).values()){this._map.get(t).delete(e),--this._size;break}return this._map.get(t).size===0&&(this._map.delete(t),this._sortedKeys.splice(this._sortedKeys.indexOf(t),1)),e}}popFromMaxKey(){if(this._sortedKeys.length>0)return this.pop(this._sortedKeys[this._sortedKeys.length-1])}values(){let t=this._map.keys(),e=null,l={[Symbol.iterator]:()=>l,next:()=>{if(e==null){let a=t.next();if(a.done)return a;e=this._map.get(a.value).values()}let n=e.next();for(;n.done;){let a=t.next();if(a.done)return a;e=this._map.get(a.value).values(),n=e.next()}return n}};return l}keys(){return this._sortedKeys}get size(){let t=0;for(let e of this._map.values())t+=e.size;return A.assert(t===this._size),t}};var K1=i=>i.normalize("NFD").replace(/[\u0300-\u036f|\u2019|\u0027|\']/g,"").toLowerCase(),Yt="",n7=.09,a7=1,r7=.025,o7=.5,s7=5e-4,h7=5e-4,m7=.01,u7=.05,X0=1,q7=.01,c7=.2,d7={MappedinCategory:"categories",MappedinLocation:"locations"},p7={searchDescriptions:!0,searchTags:!0,searchTagsInCategories:!1,searchDescriptionsInCategories:!1,stopWords:Y0,jsonIndex:void 0,useLocationRank:!0,emitAnalyticsEvents:b.env.NODE_ENV==="production",constants:{PRIMARY_INDEX_FUZZYNESS:n7,PRIMARY_INDEX_WEIGHT:a7,SECONDARY_INDEX_WEIGHT:r7,CATEGORY_NAME_WEIGHT:o7,LOCATION_NAME_WEIGHT:X0,CATEGORY_LOCATION_DESCRIPTION_WEIGHT:s7,CATEGORY_LOCATION_TAGS_WEIGHT:h7,CATEGORY_LOCATION_NAME_WEIGHT:m7,PRIMARY_INDEX_TAGS_NAME_WEIGHT:u7,LOCATION_DEFAULT_RANK:X0,RATIO_OF_FUZZY_TO_EXACT:q7,RATIO_OF_PREFIX_TO_EXACT:c7}},vt,C1,ct,W1,o1,Xe,Ze,Xt,Je,Zt,Q1,Z3,J3,dt,$e,$3,K3,Q3,Z0,Ke,Qe,X3=class{constructor(t,e){v(this,Q3);v(this,vt,void 0);v(this,C1,void 0);v(this,ct,void 0);v(this,W1,void 0);v(this,o1,void 0);v(this,Xe,new Y3({performance:!0}));v(this,Ze,void 0);v(this,Xt,void 0);v(this,Je,new Map);v(this,Zt,0);v(this,Q1,t=>{x4(this,Zt)._++,m(this,Xe).scheduleUpdate(new G3({name:"updateIndex",ordering:0,frameCount:1,callback:()=>{t(),x4(this,Zt)._--,m(this,Zt)===0&&m(this,$e).call(this)}}))});v(this,Z3,t=>{var r,o,s;let{SECONDARY_INDEX_WEIGHT:e,LOCATION_DEFAULT_RANK:l,PRIMARY_INDEX_TAGS_NAME_WEIGHT:n}=m(this,o1).constants,a=l;(r=m(this,o1))!=null&&r.useLocationRank&&(a=Array.isArray(t.polygons)?Math.max(...t.polygons.map(h=>{var u,d;return(u=h.rank)!=null&&u.score?(d=h.rank)==null?void 0:d.score:l}),l):l),m(this,Q1).call(this,()=>{m(this,C1).add({name:K1(t.name),tags:"",id:"MappedinLocation_"+t.id,weight:l,rank:a})}),(o=m(this,o1))!=null&&o.searchTags&&Array.isArray(t.tags)&&t.tags.forEach(h=>{m(this,C1).add({name:"",tag:K1(h),id:"MappedinLocation_"+t.id,weight:n,rank:a})}),(s=m(this,o1))!=null&&s.searchDescriptions&&m(this,Q1).call(this,()=>m(this,ct).add({description:K1(t.description||""),id:"MappedinLocation_"+t.id,weight:e,rank:a}))});v(this,J3,t=>{var o,s;let{CATEGORY_LOCATION_DESCRIPTION_WEIGHT:e,CATEGORY_LOCATION_TAGS_WEIGHT:l,CATEGORY_LOCATION_NAME_WEIGHT:n,CATEGORY_NAME_WEIGHT:a}=m(this,o1).constants;m(this,Q1).call(this,()=>m(this,C1).add({name:K1(t.name||""),description:"",id:"MappedinCategory_"+t.id,weight:a}));let r=t.locations.reduce((h,u)=>h+` ${Yt} `+u.name,"")+` ${Yt}`;if((o=m(this,o1))!=null&&o.searchDescriptionsInCategories&&t.locations.forEach(h=>{h.description!=null&&m(this,Q1).call(this,()=>m(this,W1).add({id:"MappedinCategory_"+t.id,"category.locations.description":K1(h.description),ref:h.name,weight:e}))}),(s=m(this,o1))!=null&&s.searchTagsInCategories){let h=t.locations.reduce((u,d)=>{var p;return u+((p=d.tags)==null?void 0:p.reduce((x,f)=>x+` ${Yt} `+f,""))+` ${Yt}`},"");m(this,Q1).call(this,()=>m(this,W1).add({"category.locations.tags":K1(h),id:"MappedinCategory_"+t.id,weight:l}))}m(this,Q1).call(this,()=>m(this,W1).add({"category.locations.name":K1(r),id:"MappedinCategory_"+t.id,weight:n}))});v(this,dt,void 0);v(this,$e,void 0);v(this,$3,t=>{var u;let e=t.score,{object:l,id:n,weight:a,rank:r}=t,[o,s]=n.split("_"),h=l||m(this,vt).getCollectionItemById(d7[o],s);return r&&((u=m(this,o1))!=null&&u.useLocationRank)&&(e+=r),a&&(e*=a),{score:e,type:o,object:h}});v(this,K3,(t,e)=>{for(let l in t.match)t.match[l].forEach(n=>{let a=t.ref||t[n]||e.object[n];if(n==="category.locations.tags"||n==="category.locations.name"){let r=new RegExp(`[^${Yt}]* `+l+` [^${Yt}]*`,"ig").exec(t[n]);r!=null&&(a=r[0].slice(1,-1))}e.matches.push({term:l,weight:t.weight,matchesOn:n,value:a})})});v(this,Ke,void 0);v(this,Qe,void 0);var x,f,g;E(this,Xt,new j3(z(S({},t.options),{testMode:(e==null?void 0:e.emitAnalyticsEvents)===!1}))),E(this,o1,S(S({},p7),e)),E(this,vt,t),E(this,Ze,new Set((x=m(this,o1))==null?void 0:x.stopWords));let{PRIMARY_INDEX_FUZZYNESS:l,PRIMARY_INDEX_WEIGHT:n,CATEGORY_NAME_WEIGHT:a,RATIO_OF_FUZZY_TO_EXACT:r,RATIO_OF_PREFIX_TO_EXACT:o,PRIMARY_INDEX_TAGS_NAME_WEIGHT:s}=m(this,o1).constants,h=["object","query","weight","tag","rank"],u={fields:["query","name","tag"],storeFields:h,searchOptions:{combineWith:"OR",prefix:!0,fuzzy:l},boost:{name:n,query:n,tag:s},weights:{fuzzy:r,prefix:o},boostDocument:_=>_.includes("MappedinLocation")?n:_.includes("MappedinCategory")?a:n},d={fields:["description"],storeFields:h,searchOptions:{combineWith:"AND",prefix:!0,fuzzy:.1},processTerm:(_,y)=>{var w;return(w=m(this,Ze))!=null&&w.has(_.toLowerCase())?null:_.toLowerCase()}},p={fields:["category.locations.description","category.locations.tags","category.locations.name"],storeFields:[...h,"ref","category.locations.tags","category.locations.name","category.locations.description"],searchOptions:{combineWith:"AND",prefix:!0,fuzzy:!1}};if(E(this,dt,new Promise(_=>{E(this,$e,_)})),(f=m(this,o1))!=null&&f.jsonIndex){let{primary:_,secondary:y,extra:w}=JSON.parse((g=m(this,o1))==null?void 0:g.jsonIndex);E(this,C1,yt.loadJS(_,u)),E(this,ct,yt.loadJS(y,d)),E(this,W1,yt.loadJS(w,p))}else E(this,C1,new yt(u)),E(this,ct,new yt(d)),E(this,W1,new yt(p)),m(this,vt).locations.forEach(m(this,Z3)),m(this,vt).categories.forEach(m(this,J3));m(this,Xe).update(performance.now()),E(this,Ke,$4((_,y)=>{m(this,Xt).trackSearchSuggest({query:_,hits:y})},300)),E(this,Qe,$4((_,y)=>{m(this,Xt).trackSearch({query:_,hits:y})},300))}suggest(t){return M(this,null,function*(){yield m(this,dt);let{PRIMARY_INDEX_FUZZYNESS:e,PRIMARY_INDEX_WEIGHT:l,PRIMARY_INDEX_TAGS_NAME_WEIGHT:n,RATIO_OF_FUZZY_TO_EXACT:a,RATIO_OF_PREFIX_TO_EXACT:r}=m(this,o1).constants,o=m(this,C1).autoSuggest(t,{fields:["name","tag","query"],combineWith:"AND",prefix:!0,fuzzy:e,boost:{name:l,query:l,tag:n},weights:{fuzzy:a,prefix:r}});return m(this,Ke).call(this,t,o.length),{total:o.length,hits:o.map(s=>({text:s.suggestion}))}})}search(t){return M(this,null,function*(){yield m(this,dt);let e=c1(this,Q3,Z0).call(this,t);return m(this,Qe).call(this,t,e.length),e})}toJSON(){return M(this,null,function*(){return yield m(this,dt),JSON.stringify({primary:m(this,C1),secondary:m(this,ct),extra:m(this,W1)})})}addQuery(t){return M(this,null,function*(){let{query:e,object:l,weight:n=1}=t;yield m(this,dt);let a;l instanceof m1?a="MappedinLocation":l instanceof w1?a="MappedinCategory":a="Custom";let r;a==="MappedinLocation"||a==="MappedinCategory"?r=a+"_"+l.id:typeof l.id=="string"?r="Custom_"+l.id:(r=m(this,Je).get(l),r||(r="Custom_"+d1(),m(this,Je).set(l,r))),m(this,C1).add({id:r,weight:n,object:l,query:K1(e)})})}};vt=new WeakMap,C1=new WeakMap,ct=new WeakMap,W1=new WeakMap,o1=new WeakMap,Xe=new WeakMap,Ze=new WeakMap,Xt=new WeakMap,Je=new WeakMap,Zt=new WeakMap,Q1=new WeakMap,Z3=new WeakMap,J3=new WeakMap,dt=new WeakMap,$e=new WeakMap,$3=new WeakMap,K3=new WeakMap,Q3=new WeakSet,Z0=function(t){let e=[],l=K1(t),n=m(this,C1).search(l),a=m(this,ct).search(l),r=m(this,W1).search(l);e=[...n,...a,...r].sort((s,h)=>h.score-s.score);let o={};for(let s of e){let h=m(this,$3).call(this,s);o[s.id]?o[s.id].score+=h.score:o[s.id]=z(S({},h),{matches:[]}),m(this,K3).call(this,s,o[s.id])}return Object.keys(o).map(s=>z(S({},o[s]),{matches:o[s].matches.sort((h,u)=>u.weight-h.weight)})).sort((s,h)=>h.score-s.score)},Ke=new WeakMap,Qe=new WeakMap;c();var Jt=(e=>(e.MULTI_GEOMETRY="MULTI_GEOMETRY",e.SINGLE_GEOMETRY="SINGLE_GEOMETRY",e))(Jt||{});var J0=globalThis.fetch;function ve(){if(J0==null)throw new Error("fetch is not available in your environment. Pass your own function into `setFetch` (node-fetch, etc)");return J0}var $0,x7=($0=b==null?void 0:b.env)==null?void 0:$0.npm_package_version;globalThis.btoa||(globalThis.btoa=K0.encode);var b7=["ar"];function f6(i){let t=S(z(S({},z0),{things:N0}),i);return t.headers=z(S({},t.headers),{"mappedin-sdk-version":x7}),i.platformString&&(t.headers=z(S({},t.headers),{"mappedin-platform-version":i.platformString})),t.noAuth||(t.accessToken?t.authorization=`Bearer ${t.accessToken}`:t.clientId&&t.clientSecret&&(t.authorization=`Basic ${globalThis.btoa(`${t.clientId}:${t.clientSecret}`)}`)),t}function _6(i){return M(this,null,function*(){let e=S(S({},{emitAnalyticsEvents:!0}),i),l=f6(S({baseUrl:"https://api-gateway.mappedin.com/"},e)),n=`public/1/${l.useDraftData?"draft/":""}`,a=new x1(z(S({},l),{baseUrl:l.baseUrl+n}));return yield a.fetch(),a})}var Q0={shouldPopulateBundledImagesAsBlobs:!(typeof globalThis.navigator!="undefined"&&globalThis.navigator.product=="ReactNative")};function g6(i){return M(this,null,function*(){let t=f6(S(S({baseUrl:"https://api-gateway.mappedin.com/"},Q0),i)),{url:e,updated_at:l}=yield f7(i),n=yield ve()(e,{mode:"cors"}),{data:a,format:r="jsonstring"}=yield n.json();if(r!=="jsonstring")throw new Error(`Unrecognized format ${r}`);let o=new x1(t);return yield o.hydrate(a,t.shouldPopulateBundledImagesAsBlobs),o.updatedAt=l,o})}function f7(i){return M(this,null,function*(){let t=f6(S(S({baseUrl:"https://api-gateway.mappedin.com/"},Q0),i)),{version:e,venue:l}=i,n=`${i.bundleBaseUri||t.baseUrl+`exports/legacy${t.language!=null&&b7.includes(t.language)?"-"+t.language:""}/1/bundle`}?venue=${l}&version=1.0.0`;return t.language=void 0,yield J4(t,n)})}c();var t2=tt(t8(),1);var t4=(a=>(a[a.OPTIONAL_MINIMUM=0]="OPTIONAL_MINIMUM",a[a.OPTIONAL_MAXIMUM=1]="OPTIONAL_MAXIMUM",a[a.MEDIUM=2]="MEDIUM",a[a.HIGH=3]="HIGH",a[a.ALWAYS_VISIBLE=4]="ALWAYS_VISIBLE",a))(t4||{}),e4=(n=>(n[n.OUTSIDE_MAP=0]="OUTSIDE_MAP",n[n.NO_POSITIONS_PROVIDED=1]="NO_POSITIONS_PROVIDED",n[n.GEOLOCATION_PROVIDER_ERROR=2]="GEOLOCATION_PROVIDER_ERROR",n[n.CUSTOM_GEOLOCATION_PROVIDER_ERROR=3]="CUSTOM_GEOLOCATION_PROVIDER_ERROR",n))(e4||{}),i4=(a=>(a[a.NOT_LISTENING=0]="NOT_LISTENING",a[a.LISTENING=1]="LISTENING",a[a.HAS_POSITION=2]="HAS_POSITION",a[a.HAS_INDOOR_POSITION=3]="HAS_INDOOR_POSITION",a[a.LOCATION_UNCERTAIN=4]="LOCATION_UNCERTAIN",a))(i4||{}),l4=(n=>(n[n.HIDDEN=0]="HIDDEN",n[n.GHOST=1]="GHOST",n[n.NORMAL=2]="NORMAL",n[n.UNCERTAIN=3]="UNCERTAIN",n))(l4||{}),e2=(e=>(e.EXPLORE="explore",e.FOLLOW="follow",e))(e2||{}),n4=(a=>(a[a.CENTER=0]="CENTER",a[a.TOP=1]="TOP",a[a.LEFT=2]="LEFT",a[a.BOTTOM=3]="BOTTOM",a[a.RIGHT=4]="RIGHT",a))(n4||{});var a4=(n=>(n.UP="up",n.DOWN="down",n.LEFT="left",n.RIGHT="right",n))(a4||{});var _7={linear:t2.default.Easing.Linear.None,"ease-in":t2.default.Easing.Quadratic.In,"ease-out":t2.default.Easing.Quadratic.Out,"ease-in-out":t2.default.Easing.Quadratic.InOut},r4=(n=>(n.LINEAR="linear",n.EASE_IN="ease-in",n.EASE_OUT="ease-out",n.EASE_IN_OUT="ease-in-out",n))(r4||{});c();var $t={margin:0,text:{numLines:2,lineHeight:1.2,size:14,maxWidth:300,foregroundColor:"white",backgroundColor:"#333"},marker:{size:6,foregroundColor:{active:"white",inactive:void 0},backgroundColor:{active:"#333",inactive:void 0}}},M6={lightOnDark:z(S({},$t),{text:z(S({},$t.text),{foregroundColor:"white",backgroundColor:"#333"}),marker:z(S({},$t.marker),{foregroundColor:{active:"white",inactive:void 0},backgroundColor:{active:"#333",inactive:void 0}})}),darkOnLight:z(S({},$t),{text:z(S({},$t.text),{foregroundColor:"#333",backgroundColor:"white"}),marker:z(S({},$t.marker),{foregroundColor:{active:"#333",inactive:void 0},backgroundColor:{active:"white",inactive:void 0}})})};function Et(i){return{mapId:i.map.id,type:"Coordinate",lat:i.lat,lon:i.lon}}function s1(i){return i instanceof u1?{id:i.id,type:"Node"}:i instanceof m1?{id:i.id,type:"Location"}:{id:i.id,type:"Polygon"}}var i2,Kt,l2,Qt,h4,e8,te,o4;let e;var m4=class extends At{constructor(){super();v(this,h4);v(this,te);v(this,i2,new Set);v(this,Kt,new Set);this.state="explore";this.FlatLabels={labelAllLocations:l=>M(this,null,function*(){var a;let n;return Array.isArray(l==null?void 0:l.locations)&&(n=(a=l==null?void 0:l.locations)==null?void 0:a.map(r=>typeof r=="string"?r:r.id)),this.emitAsync("FLAT_LABEL_ALL_LOCATIONS",{options:z(S({},l),{locations:n})})}),add:(l,n,a)=>M(this,null,function*(){return this.emitAsync("ADD_FLAT_LABEL",{polygon:s1(l),text:n,options:a})}),remove:l=>M(this,null,function*(){return this.emitAsync("REMOVE_FLAT_LABEL",{polygon:s1(l)})}),removeAll:()=>M(this,null,function*(){return this.emitAsync("REMOVE_ALL_FLAT_LABELS")}),setAppearance:(l,n)=>M(this,null,function*(){return this.emitAsync("SET_FLAT_LABEL_APPEARANCE",{polygon:s1(l),appearance:n})})};this.FloatingLabels={labelAllLocations:l=>M(this,null,function*(){var a;let n;return Array.isArray(l==null?void 0:l.locations)&&(n=(a=l==null?void 0:l.locations)==null?void 0:a.map(r=>typeof r=="string"?r:r.id)),this.emitAsync("FLOATING_LABEL_ALL_LOCATIONS",{options:z(S({},l),{locations:n})})}),add:(l,n,a)=>M(this,null,function*(){return this.emitAsync("ADD_FLOATING_LABEL",{polygonOrNode:s1(l),text:n,options:a})}),remove:l=>M(this,null,function*(){return this.emitAsync("REMOVE_FLOATING_LABEL",{polygonOrNode:s1(l)})}),removeAll:()=>M(this,null,function*(){return this.emitAsync("REMOVE_ALL_FLOATING_LABELS")}),setPriority:(l,n)=>M(this,null,function*(){return this.emitAsync("SET_FLOATING_LABEL_PRIORITY",{polygonOrNode:s1(l),priority:n})}),resetPriority:l=>M(this,null,function*(){return this.emitAsync("RESET_FLOATING_LABEL_PRIORITY",{polygonOrNode:s1(l)})}),setAppearance:(l,n)=>M(this,null,function*(){return this.emitAsync("SET_FLOATING_LABEL_APPEARANCE",{polygonOrNode:s1(l),appearance:n})})};this.Camera={position:void 0,tilt:0,zoom:0,set:l=>{let n;return l.position!=null&&(l.position instanceof A1?n=Et(l.position):l.position instanceof u1&&(n=s1(l.position))),this.emitAsync("CAMERA_SET",{positionOptions:z(S({},l),{position:n})})},animate:(l,n)=>{let a;return l.position!=null&&(l.position instanceof A1?a=Et(l.position):l.position instanceof u1&&(a=s1(l.position))),this.emitAsync("CAMERA_ANIMATE",{config:z(S({},l),{position:a}),options:n})},translate:(l,n,a)=>M(this,null,function*(){return yield this.emitAsync("CAMERA_TRANSLATE",{direction:l,distance:n,options:a})}),rotation:0,setMaxTilt:l=>this.emitAsync("SET_MAX_TILT",{tiltAngle:l}),setMinZoom:l=>this.emitAsync("SET_MIN_ZOOM",{zoomLevel:l}),setMaxZoom:l=>this.emitAsync("SET_MAX_ZOOM",{zoomLevel:l}),focusOn(l,n){return M(this,null,function*(){let a={};if(Array.isArray(l==null?void 0:l.nodes)){let r=l==null?void 0:l.nodes;a.nodes=r.map(o=>typeof o=="string"?o:o.id)}if(Array.isArray(l==null?void 0:l.polygons)){let r=l==null?void 0:l.polygons;a.polygons=r.map(o=>typeof o=="string"?o:o.id)}return m4.instance.emitAsync("FOCUS_ON",{targets:a,options:n})})},setSafeAreaInsets:l=>{this.emitAsync("CAMERA_SET_SAFE_AREA_INSETS",{safeAreaInsets:l})}};this.Journey={draw:(l,n={})=>{let a;return Array.isArray(l)?a=l.map(r=>r.toJSON()):a=l.toJSON(),this.emitAsync("DRAW_JOURNEY",{directions:a,options:n})},clear:()=>this.emitAsync("CLEAR_JOURNEY"),setStep:l=>this.emitAsync("SET_JOURNEY_STEP",{step:l})};this.BlueDot={enable:l=>this.emitAsync("ENABLE_BLUE_DOT",{options:l}),disable:()=>this.emitAsync("DISABLE_BLUE_DOT")};v(this,l2,new Map);v(this,Qt,new Map);this.OfflineSearch={search:l=>M(this,null,function*(){return(yield this.emitAsync("SEARCH",{query:l})).reduce((a,r)=>(r.type==="Custom"&&c1(this,te,o4).call(this,r.object.id)?a.push(z(S({},r),{object:c1(this,te,o4).call(this,r.object.id)})):r.type==="MappedinLocation"?a.push(z(S({},r),{object:this.venueData.getCollectionItemById("locations",r.object.id)})):r.type==="MappedinCategory"&&a.push(z(S({},r),{object:this.venueData.getCollectionItemById("categories",r.object.id)})),a),[])}),suggest:l=>M(this,null,function*(){return this.emitAsync("SUGGEST",{query:l})}),addQuery:l=>{var r;let n=l.object instanceof m1?{type:"MappedinLocation",id:l.object.id||d1()}:l.object instanceof w1?{type:"MappedinCategory",id:l.object.id||d1()}:{type:"Custom",id:((r=c1(this,te,o4).call(this,l.object))==null?void 0:r.id)||c1(this,h4,e8).call(this,l.object)},a=z(S({},l),{object:n});return this.emitAsync("ADD_SEARCH_QUERY",a)}};m4.instance=this,this.privateEventBus.on("LOG",l=>{A.log("log from bridge: ",l.data)}),this.privateEventBus.on("READY",()=>{this.publicEventBus.publish("READY")}),this.privateEventBus.on("MAP_CHANGED",l=>{var a;let{mapId:n}=l.data;this.venueData!=null&&(this.currentMap=(a=this.venueData._mapsById)==null?void 0:a[n]),this.publicEventBus.publish("MAP_CHANGED",{map:this.currentMap})}),this.privateEventBus.on("CAMERA_CHANGED",l=>{var h,u;let{position:n,zoom:a,rotation:r,tilt:o}=l.data;this.Camera.rotation=r;let s;n&&(s=(u=(h=this.venueData)==null?void 0:h.getCollectionItemById("maps",n.mapId))==null?void 0:u.createCoordinate(n.lat,n.lon)),this.Camera.position=s,this.Camera.tilt=o,this.Camera.zoom=a,this.publicEventBus.publish("CAMERA_CHANGED",{position:this.Camera.position,zoom:this.Camera.zoom,rotation:this.Camera.rotation,tilt:this.Camera.tilt})}),this.privateEventBus.on("STATE_CHANGED",l=>{let{state:n}=l.data;this.state=n,this.publicEventBus.publish("STATE_CHANGED",{state:n})}),this.privateEventBus.on("POLYGON_CLICKED",l=>{var a;let{polygonId:n}=l.data;this.publicEventBus.publish("POLYGON_CLICKED",{polygon:(a=this.venueData)==null?void 0:a._polygonsById[n]})}),this.privateEventBus.on("FIRST_MAP_LOADED",()=>{this.publicEventBus.publish("FIRST_MAP_LOADED")}),this.privateEventBus.on("DATA_LOADED",l=>M(this,null,function*(){var a;let{venueData:n}=l.data;if(this.venueData==null){this.venueData=new x1(this.options);try{yield this.venueData.hydrate(n)}catch(r){A.error("Error parsing venueData coming from the bridge",r)}}this.currentMap=(a=this.venueData._mapsById)==null?void 0:a[this.venueData.venue.defaultMap],this.publicEventBus.publish("DATA_LOADED",{venueData:this.venueData})})),this.privateEventBus.on("NOTHING_CLICKED",()=>{this.publicEventBus.publish("NOTHING_CLICKED")}),this.privateEventBus.on("CLICK",l=>{let{polygons:n,position:a,nearBlueDot:r}=l.data,s=n.map(({id:h})=>{if(this.venueData!=null)return this.venueData.getCollectionItemById("polygons",h)}).filter(h=>h);this.publicEventBus.publish("CLICK",{position:a,nearBlueDot:r,polygons:s})}),this.privateEventBus.on("BLUEDOT_POSITION_UPDATE",l=>{var r,o,s,h;let{update:n}=l.data,a=z(S({},n),{map:n.map!=null?(o=(r=this.venueData)==null?void 0:r._mapsById)==null?void 0:o[n.map]:null,nearestNode:n.nearestNode!=null?(h=(s=this.venueData)==null?void 0:s._nodesById)==null?void 0:h[n.nearestNode]:null});this.publicEventBus.publish("BLUEDOT_POSITION_UPDATE",{update:a})}),this.privateEventBus.on("BLUEDOT_STATE_CHANGE",l=>{let{stateChange:n}=l.data;this.publicEventBus.publish("BLUEDOT_STATE_CHANGE",{stateChange:n})})}loadVenue(l,n){return M(this,null,function*(){return this.options=l,yield this.emitAsync("LOAD_VENUE",{options:l,showVenueOptions:n})})}showVenue(l,n){return M(this,null,function*(){if(!(l instanceof x1))throw new Error("venueData must be an instance of the Mappedin object. Please create and hydrate an instance first");return this.venueData=l,yield this.emitAsync("SHOW_VENUE",{format:"jsonstring",venueData:l.toString(),showVenueOptions:n})})}clearBundleCache(){return M(this,null,function*(){yield this.emitAsync("CLEAR_BUNDLE_CACHE")})}createTooltip(l,n,a){return M(this,null,function*(){let r;l instanceof u1?r=s1(l):r=Et(l);let o=yield this.emitAsync("CREATE_TOOLTIP",{nodeOrCoordinate:r,contentHtml:n,options:a});return m(this,Kt).add(o),o})}createCustomTooltip(l,n,a,r){return M(this,null,function*(){let o;l instanceof u1?o=s1(l):o=Et(l);let s=yield this.emitAsync("CREATE_CUSTOM_TOOLTIP",{nodeOrCoordinate:o,contentHtml:n,selector:a,options:r});return m(this,Kt).add(s),s})}removeTooltip(l){return M(this,null,function*(){return yield this.emitAsync("REMOVE_TOOLTIP",{tooltipId:l}),m(this,Kt).delete(l),l})}createMarker(l,n,a){let r;l instanceof u1?r=s1(l):r=Et(l);let o=f4();return m(this,i2).add(o),this.emitAsync("CREATE_MARKER",{options:z(S({},a),{id:o}),contentHtml:n,nodeOrCoordinate:r}),o}removeMarker(l){return M(this,null,function*(){try{yield this.emitAsync("REMOVE_MARKER",{markerId:l}),m(this,i2).delete(l)}catch(n){throw new Error(n)}})}setState(l){return M(this,null,function*(){return this.emitAsync("SET_STATE",{state:l})})}setPolygonColor(l,n){return M(this,null,function*(){return this.emitAsync("SET_POLYGON_COLOR",{polygon:{type:"Polygon",id:l.id},color:n})})}clearPolygonColor(l){return M(this,null,function*(){return this.emitAsync("CLEAR_POLYGON_COLOR",{polygonId:typeof l=="string"?l:l.id})})}clearAllPolygonColors(){return M(this,null,function*(){return this.emitAsync("CLEAR_ALL_POLYGON_COLORS")})}addInteractivePolygon(l){return M(this,null,function*(){return this.emitAsync("ADD_INTERACTIVE_POLYGON",{polygonId:typeof l=="string"?l:l.id})})}removeAllInteractivePolygons(){return M(this,null,function*(){return this.emitAsync("REMOVE_INTERACTIVE_POLYGONS")})}enableImageFlippingForPolygon(l){return M(this,null,function*(){return this.emitAsync("ENABLE_IMAGE_FLIPPING_FOR_POLYGON",{polygon:{type:"Polygon",id:l.id}})})}removeAllPaths(){return M(this,null,function*(){return this.emitAsync("REMOVE_ALL_PATHS")})}setMap(l){return M(this,null,function*(){return this.emitAsync("SET_MAP",{mapId:typeof l=="string"?l:l.id})})}getNearestNodeByScreenCoordinates(l,n,a){return M(this,null,function*(){var o;let r=yield this.emitAsync("GET_NEAREST_NODE_BY_SCREEN_COORDINATES",{x:l,y:n,map:typeof a=="string"?a:a==null?void 0:a.id});return r==null?null:(o=this.venueData)==null?void 0:o.nodes.find(s=>s.id===(r==null?void 0:r.id))})}labelAllLocations(l){return M(this,null,function*(){return l!=null&&l.flatLabels?yield this.FlatLabels.labelAllLocations(l):yield this.FloatingLabels.labelAllLocations(l)})}getPolygonsAtCoordinate(l,n){return M(this,null,function*(){let a="GET_POLYGONS_AT_COORDINATE";return this.emitAsync(a,{coordinate:Et(l),options:n})})}overrideLocation(l){this.emit("OVERRIDE_LOCATION",{location:l})}getDirections(l){return M(this,null,function*(){let{to:n,from:a,accessible:r}=l,o=s1(a),s;if(n instanceof N1?s=n.destinations.map(s1):s=s1(n),o==null||s==null)throw new Error("departure and destination need to be of type Node, Polygon on Location");let h=yield this.emitAsync("GET_DIRECTIONS",{from:o,to:s,accessible:r}),u;return Array.isArray(h)?u=h.map(d=>new B1(this.venueData,d)):u=new B1(this.venueData,h),u})}drawPath(l,n){return M(this,null,function*(){return this.emitAsync("DRAW_PATH",{path:l.map(a=>typeof a=="string"?a:a.id),pathOptions:n})})}},s4=m4;i2=new WeakMap,Kt=new WeakMap,l2=new WeakMap,Qt=new WeakMap,h4=new WeakSet,e8=function(l){let n=d1();return m(this,l2).set(l,n),m(this,Qt).set(n,l),n},te=new WeakSet,o4=function(l){if(typeof l=="string")return m(this,Qt).get(l);{let n=m(this,l2).get(l);return m(this,Qt).get(n)}};c();var l8=tt(require("react")),ee=require("react-native"),w6=tt(require("react-native-webview"));var i8=`<!DOCTYPE html><html><head>
|
|
8
8
|
<meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
-
<title>React Native Bridge</title><link rel="icon" href="favicon.ico"></head><body><script>/* built from commit
|
|
9
|
+
<title>React Native Bridge</title><link rel="icon" href="favicon.ico"></head><body><script>/* built from commit 5293bf914351902e0cdf86f2bc8710d9dc9727a3 */
|
|
10
10
|
"use strict";(()=>{var vE=Object.create;var Do=Object.defineProperty;var ME=Object.getOwnPropertyDescriptor;var EE=Object.getOwnPropertyNames;var TE=Object.getPrototypeOf,wE=Object.prototype.hasOwnProperty;var SE=(i,t,n)=>t in i?Do(i,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):i[t]=n;var R5=(i=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(i,{get:(t,n)=>(typeof require<"u"?require:t)[n]}):i)(function(i){if(typeof require<"u")return require.apply(this,arguments);throw new Error('Dynamic require of "'+i+'" is not supported')});var AE=(i,t)=>()=>(i&&(t=i(i=0)),t);var g1=(i,t)=>()=>(t||i((t={exports:{}}).exports,t),t.exports);var PE=(i,t,n,l)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of EE(t))!wE.call(i,a)&&a!==n&&Do(i,a,{get:()=>t[a],enumerable:!(l=ME(t,a))||l.enumerable});return i};var Le=(i,t,n)=>(n=i!=null?vE(TE(i)):{},PE(t||!i||!i.__esModule?Do(n,"default",{value:i,enumerable:!0}):n,i));var M=(i,t,n)=>(SE(i,typeof t!="symbol"?t+"":t,n),n),Bo=(i,t,n)=>{if(!t.has(i))throw TypeError("Cannot "+n)};var _=(i,t,n)=>(Bo(i,t,"read from private field"),n?n.call(i):t.get(i)),U=(i,t,n)=>{if(t.has(i))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(i):t.set(i,n)},G=(i,t,n,l)=>(Bo(i,t,"write to private field"),l?l.call(i,n):t.set(i,n),n),Fo=(i,t,n,l)=>({set _(a){G(i,t,a,n)},get _(){return _(i,t,l)}}),ne=(i,t,n)=>(Bo(i,t,"access private method"),n);var k,v=AE(()=>{k={env:{}}});var rf=g1((sj,af)=>{"use strict";v();af.exports=i=>encodeURIComponent(i).replace(/[!'()*]/g,t=>\`%\${t.charCodeAt(0).toString(16).toUpperCase()}\`)});var uf=g1((hj,hf)=>{"use strict";v();var mf="%[a-f0-9]{2}",of=new RegExp("("+mf+")|([^%]+?)","gi"),sf=new RegExp("("+mf+")+","gi");function Um(i,t){try{return[decodeURIComponent(i.join(""))]}catch{}if(i.length===1)return i;t=t||1;var n=i.slice(0,t),l=i.slice(t);return Array.prototype.concat.call([],Um(n),Um(l))}function nL(i){try{return decodeURIComponent(i)}catch{for(var t=i.match(of)||[],n=1;n<t.length;n++)i=Um(t,n).join(""),t=i.match(of)||[];return i}}function iL(i){for(var t={"%FE%FF":"\\uFFFD\\uFFFD","%FF%FE":"\\uFFFD\\uFFFD"},n=sf.exec(i);n;){try{t[n[0]]=decodeURIComponent(n[0])}catch{var l=nL(n[0]);l!==n[0]&&(t[n[0]]=l)}n=sf.exec(i)}t["%C2"]="\\uFFFD";for(var a=Object.keys(t),r=0;r<a.length;r++){var o=a[r];i=i.replace(new RegExp(o,"g"),t[o])}return i}hf.exports=function(i){if(typeof i!="string")throw new TypeError("Expected \`encodedURI\` to be of type \`string\`, got \`"+typeof i+"\`");try{return i=i.replace(/\\+/g," "),decodeURIComponent(i)}catch{return iL(i)}}});var qf=g1((cj,cf)=>{"use strict";v();cf.exports=(i,t)=>{if(!(typeof i=="string"&&typeof t=="string"))throw new TypeError("Expected the arguments to be of type \`string\`");if(t==="")return[i];let n=i.indexOf(t);return n===-1?[i]:[i.slice(0,n),i.slice(n+t.length)]}});var pf=g1((dj,df)=>{"use strict";v();df.exports=function(i,t){for(var n={},l=Object.keys(i),a=Array.isArray(t),r=0;r<l.length;r++){var o=l[r],s=i[o];(a?t.indexOf(o)!==-1:t(o,s,i))&&(n[o]=s)}return n}});var Mf=g1(s2=>{"use strict";v();var lL=rf(),aL=uf(),bf=qf(),rL=pf(),oL=i=>i==null,Hm=Symbol("encodeFragmentIdentifier");function sL(i){switch(i.arrayFormat){case"index":return t=>(n,l)=>{let a=n.length;return l===void 0||i.skipNull&&l===null||i.skipEmptyString&&l===""?n:l===null?[...n,[Et(t,i),"[",a,"]"].join("")]:[...n,[Et(t,i),"[",Et(a,i),"]=",Et(l,i)].join("")]};case"bracket":return t=>(n,l)=>l===void 0||i.skipNull&&l===null||i.skipEmptyString&&l===""?n:l===null?[...n,[Et(t,i),"[]"].join("")]:[...n,[Et(t,i),"[]=",Et(l,i)].join("")];case"comma":case"separator":case"bracket-separator":{let t=i.arrayFormat==="bracket-separator"?"[]=":"=";return n=>(l,a)=>a===void 0||i.skipNull&&a===null||i.skipEmptyString&&a===""?l:(a=a===null?"":a,l.length===0?[[Et(n,i),t,Et(a,i)].join("")]:[[l,Et(a,i)].join(i.arrayFormatSeparator)])}default:return t=>(n,l)=>l===void 0||i.skipNull&&l===null||i.skipEmptyString&&l===""?n:l===null?[...n,Et(t,i)]:[...n,[Et(t,i),"=",Et(l,i)].join("")]}}function mL(i){let t;switch(i.arrayFormat){case"index":return(n,l,a)=>{if(t=/\\[(\\d*)\\]$/.exec(n),n=n.replace(/\\[\\d*\\]$/,""),!t){a[n]=l;return}a[n]===void 0&&(a[n]={}),a[n][t[1]]=l};case"bracket":return(n,l,a)=>{if(t=/(\\[\\])$/.exec(n),n=n.replace(/\\[\\]$/,""),!t){a[n]=l;return}if(a[n]===void 0){a[n]=[l];return}a[n]=[].concat(a[n],l)};case"comma":case"separator":return(n,l,a)=>{let r=typeof l=="string"&&l.includes(i.arrayFormatSeparator),o=typeof l=="string"&&!r&&Q3(l,i).includes(i.arrayFormatSeparator);l=o?Q3(l,i):l;let s=r||o?l.split(i.arrayFormatSeparator).map(m=>Q3(m,i)):l===null?l:Q3(l,i);a[n]=s};case"bracket-separator":return(n,l,a)=>{let r=/(\\[\\])$/.test(n);if(n=n.replace(/\\[\\]$/,""),!r){a[n]=l&&Q3(l,i);return}let o=l===null?[]:l.split(i.arrayFormatSeparator).map(s=>Q3(s,i));if(a[n]===void 0){a[n]=o;return}a[n]=[].concat(a[n],o)};default:return(n,l,a)=>{if(a[n]===void 0){a[n]=l;return}a[n]=[].concat(a[n],l)}}}function xf(i){if(typeof i!="string"||i.length!==1)throw new TypeError("arrayFormatSeparator must be single character string")}function Et(i,t){return t.encode?t.strict?lL(i):encodeURIComponent(i):i}function Q3(i,t){return t.decode?aL(i):i}function _f(i){return Array.isArray(i)?i.sort():typeof i=="object"?_f(Object.keys(i)).sort((t,n)=>Number(t)-Number(n)).map(t=>i[t]):i}function gf(i){let t=i.indexOf("#");return t!==-1&&(i=i.slice(0,t)),i}function hL(i){let t="",n=i.indexOf("#");return n!==-1&&(t=i.slice(n)),t}function yf(i){i=gf(i);let t=i.indexOf("?");return t===-1?"":i.slice(t+1)}function ff(i,t){return t.parseNumbers&&!Number.isNaN(Number(i))&&typeof i=="string"&&i.trim()!==""?i=Number(i):t.parseBooleans&&i!==null&&(i.toLowerCase()==="true"||i.toLowerCase()==="false")&&(i=i.toLowerCase()==="true"),i}function vf(i,t){t=Object.assign({decode:!0,sort:!0,arrayFormat:"none",arrayFormatSeparator:",",parseNumbers:!1,parseBooleans:!1},t),xf(t.arrayFormatSeparator);let n=mL(t),l=Object.create(null);if(typeof i!="string"||(i=i.trim().replace(/^[?#&]/,""),!i))return l;for(let a of i.split("&")){if(a==="")continue;let[r,o]=bf(t.decode?a.replace(/\\+/g," "):a,"=");o=o===void 0?null:["comma","separator","bracket-separator"].includes(t.arrayFormat)?o:Q3(o,t),n(Q3(r,t),o,l)}for(let a of Object.keys(l)){let r=l[a];if(typeof r=="object"&&r!==null)for(let o of Object.keys(r))r[o]=ff(r[o],t);else l[a]=ff(r,t)}return t.sort===!1?l:(t.sort===!0?Object.keys(l).sort():Object.keys(l).sort(t.sort)).reduce((a,r)=>{let o=l[r];return Boolean(o)&&typeof o=="object"&&!Array.isArray(o)?a[r]=_f(o):a[r]=o,a},Object.create(null))}s2.extract=yf;s2.parse=vf;s2.stringify=(i,t)=>{if(!i)return"";t=Object.assign({encode:!0,strict:!0,arrayFormat:"none",arrayFormatSeparator:","},t),xf(t.arrayFormatSeparator);let n=o=>t.skipNull&&oL(i[o])||t.skipEmptyString&&i[o]==="",l=sL(t),a={};for(let o of Object.keys(i))n(o)||(a[o]=i[o]);let r=Object.keys(a);return t.sort!==!1&&r.sort(t.sort),r.map(o=>{let s=i[o];return s===void 0?"":s===null?Et(o,t):Array.isArray(s)?s.length===0&&t.arrayFormat==="bracket-separator"?Et(o,t)+"[]":s.reduce(l(o),[]).join("&"):Et(o,t)+"="+Et(s,t)}).filter(o=>o.length>0).join("&")};s2.parseUrl=(i,t)=>{t=Object.assign({decode:!0},t);let[n,l]=bf(i,"#");return Object.assign({url:n.split("?")[0]||"",query:vf(yf(i),t)},t&&t.parseFragmentIdentifier&&l?{fragmentIdentifier:Q3(l,t)}:{})};s2.stringifyUrl=(i,t)=>{t=Object.assign({encode:!0,strict:!0,[Hm]:!0},t);let n=gf(i.url).split("?")[0]||"",l=s2.extract(i.url),a=s2.parse(l,{sort:!1}),r=Object.assign(a,i.query),o=s2.stringify(r,t);o&&(o=\`?\${o}\`);let s=hL(i.url);return i.fragmentIdentifier&&(s=\`#\${t[Hm]?Et(i.fragmentIdentifier,t):i.fragmentIdentifier}\`),\`\${n}\${o}\${s}\`};s2.pick=(i,t,n)=>{n=Object.assign({parseFragmentIdentifier:!0,[Hm]:!1},n);let{url:l,query:a,fragmentIdentifier:r}=s2.parseUrl(i,n);return s2.stringifyUrl({url:l,query:rL(a,t),fragmentIdentifier:r},n)};s2.exclude=(i,t,n)=>{let l=Array.isArray(t)?a=>!t.includes(a):(a,r)=>!t(a,r);return s2.pick(i,l,n)}});var Ef=g1((ml,On)=>{v();(function(i){var t=typeof ml=="object"&&ml,n=typeof On=="object"&&On&&On.exports==t&&On,l=typeof global=="object"&&global;(l.global===l||l.window===l)&&(i=l);var a=function(q){this.message=q};a.prototype=new Error,a.prototype.name="InvalidCharacterError";var r=function(q){throw new a(q)},o="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",s=/[\\t\\n\\f\\r ]/g,m=function(q){q=String(q).replace(s,"");var d=q.length;d%4==0&&(q=q.replace(/==?$/,""),d=q.length),(d%4==1||/[^+a-zA-Z0-9/]/.test(q))&&r("Invalid character: the string to be decoded is not correctly encoded.");for(var p=0,f,y,b="",g=-1;++g<d;)y=o.indexOf(q.charAt(g)),f=p%4?f*64+y:y,p++%4&&(b+=String.fromCharCode(255&f>>(-2*p&6)));return b},h=function(q){q=String(q),/[^\\0-\\xFF]/.test(q)&&r("The string to be encoded contains characters outside of the Latin1 range.");for(var d=q.length%3,p="",f=-1,y,b,g,A,T=q.length-d;++f<T;)y=q.charCodeAt(f)<<16,b=q.charCodeAt(++f)<<8,g=q.charCodeAt(++f),A=y+b+g,p+=o.charAt(A>>18&63)+o.charAt(A>>12&63)+o.charAt(A>>6&63)+o.charAt(A&63);return d==2?(y=q.charCodeAt(f)<<8,b=q.charCodeAt(++f),A=y+b,p+=o.charAt(A>>10)+o.charAt(A>>4&63)+o.charAt(A<<2&63)+"="):d==1&&(A=q.charCodeAt(f),p+=o.charAt(A>>2)+o.charAt(A<<4&63)+"=="),p},u={encode:h,decode:m,version:"1.0.0"};if(typeof define=="function"&&typeof define.amd=="object"&&define.amd)define(function(){return u});else if(t&&!t.nodeType)if(n)n.exports=u;else for(var c in u)u.hasOwnProperty(c)&&(t[c]=u[c]);else i.base64=u})(ml)});var Ct=g1(ke=>{"use strict";v();Object.defineProperty(ke,"__esModule",{value:!0});ke.areaConversion=ke.timeConversion=ke.distanceConversion=ke.altitudeKeys=ke.latitudeKeys=ke.longitudeKeys=ke.MAXLON=ke.MINLON=ke.MAXLAT=ke.MINLAT=ke.earthRadius=ke.sexagesimalPattern=void 0;var uL=/^([0-9]{1,3})\xB0\\s*([0-9]{1,3}(?:\\.(?:[0-9]{1,}))?)['\u2032]\\s*(([0-9]{1,3}(\\.([0-9]{1,}))?)["\u2033]\\s*)?([NEOSW]?)$/;ke.sexagesimalPattern=uL;var cL=6378137;ke.earthRadius=cL;var qL=-90;ke.MINLAT=qL;var dL=90;ke.MAXLAT=dL;var pL=-180;ke.MINLON=pL;var fL=180;ke.MAXLON=fL;var bL=["lng","lon","longitude",0];ke.longitudeKeys=bL;var xL=["lat","latitude",1];ke.latitudeKeys=xL;var _L=["alt","altitude","elevation","elev",2];ke.altitudeKeys=_L;var gL={m:1,km:.001,cm:100,mm:1e3,mi:1/1609.344,sm:1/1852.216,ft:100/30.48,in:100/2.54,yd:1/.9144};ke.distanceConversion=gL;var yL={m:60,h:3600,d:86400};ke.timeConversion=yL;var t3={m2:1,km2:1e-6,ha:1e-4,a:.01,ft2:10.763911,yd2:1.19599,in2:1550.0031};ke.areaConversion=t3;t3.sqm=t3.m2;t3.sqkm=t3.km2;t3.sqft=t3.ft2;t3.sqyd=t3.yd2;t3.sqin=t3.in2});var zn=g1(hl=>{"use strict";v();Object.defineProperty(hl,"__esModule",{value:!0});hl.default=void 0;var vL=function(t,n){return n.reduce(function(l,a){if(typeof t>"u"||t===null)throw new Error("'".concat(t,"' is no valid coordinate."));return Object.prototype.hasOwnProperty.call(t,a)&&typeof a<"u"&&typeof l>"u"?(l=a,a):l},void 0)},ML=vL;hl.default=ML});var Rn=g1(ul=>{"use strict";v();Object.defineProperty(ul,"__esModule",{value:!0});ul.default=void 0;var EL=function(t){var n=t.toString().trim();return isNaN(parseFloat(n))?!1:parseFloat(n)===Number(n)},TL=EL;ul.default=TL});var Nn=g1(cl=>{"use strict";v();Object.defineProperty(cl,"__esModule",{value:!0});cl.default=void 0;var wL=Ct(),SL=function(t){return wL.sexagesimalPattern.test(t.toString().trim())},AL=SL;cl.default=AL});var kn=g1(ql=>{"use strict";v();Object.defineProperty(ql,"__esModule",{value:!0});ql.default=void 0;var PL=Ct(),CL=function(t){var n=new RegExp(PL.sexagesimalPattern).exec(t);if(typeof n>"u"||n===null)throw new Error("Given value is not in sexagesimal format");var l=Number(n[2])/60||0,a=Number(n[4])/3600||0,r=parseFloat(n[1])+l+a;return["S","W"].includes(n[7])?-r:r},LL=CL;ql.default=LL});var pl=g1(dl=>{"use strict";v();Object.defineProperty(dl,"__esModule",{value:!0});dl.default=void 0;var Gm=Ct(),Wm=IL(zn());function IL(i){return i&&i.__esModule?i:{default:i}}function Tf(i,t){var n=Object.keys(i);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(i);t&&(l=l.filter(function(a){return Object.getOwnPropertyDescriptor(i,a).enumerable})),n.push.apply(n,l)}return n}function OL(i){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?Tf(Object(n),!0).forEach(function(l){zL(i,l,n[l])}):Object.getOwnPropertyDescriptors?Object.defineProperties(i,Object.getOwnPropertyDescriptors(n)):Tf(Object(n)).forEach(function(l){Object.defineProperty(i,l,Object.getOwnPropertyDescriptor(n,l))})}return i}function zL(i,t,n){return t in i?Object.defineProperty(i,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):i[t]=n,i}var RL=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{longitude:Gm.longitudeKeys,latitude:Gm.latitudeKeys,altitude:Gm.altitudeKeys},l=(0,Wm.default)(t,n.longitude),a=(0,Wm.default)(t,n.latitude),r=(0,Wm.default)(t,n.altitude);return OL({latitude:a,longitude:l},r?{altitude:r}:{})},NL=RL;dl.default=NL});var Xm=g1(fl=>{"use strict";v();Object.defineProperty(fl,"__esModule",{value:!0});fl.default=void 0;var kL=jm(Rn()),DL=jm(Nn()),BL=jm(kn()),wf=Ct();function jm(i){return i&&i.__esModule?i:{default:i}}var FL=function i(t){return(0,kL.default)(t)?!(parseFloat(t)>wf.MAXLAT||t<wf.MINLAT):(0,DL.default)(t)?i((0,BL.default)(t)):!1},VL=FL;fl.default=VL});var Zm=g1(bl=>{"use strict";v();Object.defineProperty(bl,"__esModule",{value:!0});bl.default=void 0;var UL=Ym(Rn()),HL=Ym(Nn()),GL=Ym(kn()),Sf=Ct();function Ym(i){return i&&i.__esModule?i:{default:i}}var WL=function i(t){return(0,UL.default)(t)?!(parseFloat(t)>Sf.MAXLON||t<Sf.MINLON):(0,HL.default)(t)?i((0,GL.default)(t)):!1},jL=WL;bl.default=jL});var Km=g1(xl=>{"use strict";v();Object.defineProperty(xl,"__esModule",{value:!0});xl.default=void 0;var XL=Jm(pl()),Af=Jm(Xm()),Pf=Jm(Zm());function Jm(i){return i&&i.__esModule?i:{default:i}}var YL=function(t){var n=(0,XL.default)(t),l=n.latitude,a=n.longitude;if(Array.isArray(t)&&t.length>=2)return(0,Pf.default)(t[0])&&(0,Af.default)(t[1]);if(typeof l>"u"||typeof a>"u")return!1;var r=t[a],o=t[l];return!(typeof o>"u"||typeof r>"u"||(0,Af.default)(o)===!1||(0,Pf.default)(r)===!1)},ZL=YL;xl.default=ZL});var gl=g1(_l=>{"use strict";v();Object.defineProperty(_l,"__esModule",{value:!0});_l.default=void 0;var JL=Dn(Rn()),KL=Dn(Nn()),$L=Dn(kn()),Cf=Dn(Km()),QL=Dn(pl());function Dn(i){return i&&i.__esModule?i:{default:i}}function Lf(i,t){var n=Object.keys(i);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(i);t&&(l=l.filter(function(a){return Object.getOwnPropertyDescriptor(i,a).enumerable})),n.push.apply(n,l)}return n}function $m(i){for(var t=1;t<arguments.length;t++){var n=arguments[t]!=null?arguments[t]:{};t%2?Lf(Object(n),!0).forEach(function(l){Qm(i,l,n[l])}):Object.getOwnPropertyDescriptors?Object.defineProperties(i,Object.getOwnPropertyDescriptors(n)):Lf(Object(n)).forEach(function(l){Object.defineProperty(i,l,Object.getOwnPropertyDescriptor(n,l))})}return i}function Qm(i,t,n){return t in i?Object.defineProperty(i,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):i[t]=n,i}var eI=function i(t){if((0,JL.default)(t))return Number(t);if((0,KL.default)(t))return(0,$L.default)(t);if((0,Cf.default)(t)){var n=(0,QL.default)(t);return Array.isArray(t)?t.map(function(l,a){return[0,1].includes(a)?i(l):l}):$m($m($m({},t),n.latitude&&Qm({},n.latitude,i(t[n.latitude]))),n.longitude&&Qm({},n.longitude,i(t[n.longitude])))}return Array.isArray(t)?t.map(function(l){return(0,Cf.default)(l)?i(l):l}):t},tI=eI;_l.default=tI});var A2=g1(yl=>{"use strict";v();Object.defineProperty(yl,"__esModule",{value:!0});yl.default=void 0;var nI=Ct(),iI=If(zn()),lI=If(gl());function If(i){return i&&i.__esModule?i:{default:i}}var aI=function(t,n){var l=(0,iI.default)(t,nI.latitudeKeys);if(!(typeof l>"u"||l===null)){var a=t[l];return n===!0?a:(0,lI.default)(a)}},rI=aI;yl.default=rI});var P2=g1(vl=>{"use strict";v();Object.defineProperty(vl,"__esModule",{value:!0});vl.default=void 0;var oI=Ct(),sI=Of(zn()),mI=Of(gl());function Of(i){return i&&i.__esModule?i:{default:i}}var hI=function(t,n){var l=(0,sI.default)(t,oI.longitudeKeys);if(!(typeof l>"u"||l===null)){var a=t[l];return n===!0?a:(0,mI.default)(a)}},uI=hI;vl.default=uI});var g3=g1(Ml=>{"use strict";v();Object.defineProperty(Ml,"__esModule",{value:!0});Ml.default=void 0;var cI=function(t){return t*Math.PI/180},qI=cI;Ml.default=qI});var G6=g1(El=>{"use strict";v();Object.defineProperty(El,"__esModule",{value:!0});El.default=void 0;var dI=function(t){return t*180/Math.PI},pI=dI;El.default=pI});var Rf=g1(wl=>{"use strict";v();Object.defineProperty(wl,"__esModule",{value:!0});wl.default=void 0;var fI=Tl(A2()),bI=Tl(P2()),eh=Tl(g3()),th=Tl(G6()),zf=Ct();function Tl(i){return i&&i.__esModule?i:{default:i}}var xI=function(t,n,l){var a=arguments.length>3&&arguments[3]!==void 0?arguments[3]:6371e3,r=(0,fI.default)(t),o=(0,bI.default)(t),s=n/a,m=(0,eh.default)(l),h=(0,eh.default)(r),u=(0,eh.default)(o),c=Math.asin(Math.sin(h)*Math.cos(s)+Math.cos(h)*Math.sin(s)*Math.cos(m)),q=u+Math.atan2(Math.sin(m)*Math.sin(s)*Math.cos(h),Math.cos(s)-Math.sin(h)*Math.sin(c)),d=(0,th.default)(q);return(d<zf.MINLON||d>zf.MAXLON)&&(q=(q+3*Math.PI)%(2*Math.PI)-Math.PI,d=(0,th.default)(q)),{latitude:(0,th.default)(c),longitude:d}},_I=xI;wl.default=_I});var Nf=g1(Sl=>{"use strict";v();Object.defineProperty(Sl,"__esModule",{value:!0});Sl.default=void 0;var gI=Ct(),yI=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"m",l=gI.areaConversion[n];if(l)return t*l;throw new Error("Invalid unit used for area conversion.")},vI=yI;Sl.default=vI});var kf=g1(Al=>{"use strict";v();Object.defineProperty(Al,"__esModule",{value:!0});Al.default=void 0;var MI=Ct(),EI=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"m",l=MI.distanceConversion[n];if(l)return t*l;throw new Error("Invalid unit used for distance conversion.")},TI=EI;Al.default=TI});var Df=g1(Cl=>{"use strict";v();Object.defineProperty(Cl,"__esModule",{value:!0});Cl.default=void 0;var Pl=Ct(),wI=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:"kmh";switch(n){case"kmh":return t*Pl.timeConversion.h*Pl.distanceConversion.km;case"mph":return t*Pl.timeConversion.h*Pl.distanceConversion.mi;default:return t}},SI=wI;Cl.default=SI});var Vf=g1(Ll=>{"use strict";v();Object.defineProperty(Ll,"__esModule",{value:!0});Ll.default=void 0;function AI(i,t){return II(i)||LI(i,t)||CI(i,t)||PI()}function PI(){throw new TypeError(\`Invalid attempt to destructure non-iterable instance.
|
|
11
11
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.\`)}function CI(i,t){if(i){if(typeof i=="string")return Bf(i,t);var n=Object.prototype.toString.call(i).slice(8,-1);if(n==="Object"&&i.constructor&&(n=i.constructor.name),n==="Map"||n==="Set")return Array.from(i);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Bf(i,t)}}function Bf(i,t){(t==null||t>i.length)&&(t=i.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=i[n];return l}function LI(i,t){if(!(typeof Symbol>"u"||!(Symbol.iterator in Object(i)))){var n=[],l=!0,a=!1,r=void 0;try{for(var o=i[Symbol.iterator](),s;!(l=(s=o.next()).done)&&(n.push(s.value),!(t&&n.length===t));l=!0);}catch(m){a=!0,r=m}finally{try{!l&&o.return!=null&&o.return()}finally{if(a)throw r}}return n}}function II(i){if(Array.isArray(i))return i}var Ff=function(t){var n=Math.pow(10,12);return Math.round(t*n)/n},OI=function(t){var n=t.toString().split("."),l=AI(n,2),a=l[0],r=l[1],o=Math.abs(Number(a)),s=Ff(Number("0."+(r||0))*60),m=Math.floor(s),h=Ff((s%m||0)*60);return o+"\\xB0 "+Number(m.toFixed(6)).toString().split(".").map(function(u,c){return c===0?u.padStart(2,"0"):u}).join(".")+"' "+Number(h.toFixed(4)).toString().split(".").map(function(u,c){return c===0?u.padStart(2,"0"):u}).join(".")+'"'},zI=OI;Ll.default=zI});var nh=g1(Il=>{"use strict";v();Object.defineProperty(Il,"__esModule",{value:!0});Il.default=void 0;var RI=function(t){return t>1?1:t<-1?-1:t},NI=RI;Il.default=NI});var r6=g1(zl=>{"use strict";v();Object.defineProperty(zl,"__esModule",{value:!0});zl.default=void 0;var Uf=Ol(A2()),Hf=Ol(P2()),L0=Ol(g3()),kI=Ol(nh()),DI=Ct();function Ol(i){return i&&i.__esModule?i:{default:i}}var BI=function(t,n){var l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;l=typeof l<"u"&&!isNaN(l)?l:1;var a=(0,Uf.default)(t),r=(0,Hf.default)(t),o=(0,Uf.default)(n),s=(0,Hf.default)(n),m=Math.acos((0,kI.default)(Math.sin((0,L0.default)(o))*Math.sin((0,L0.default)(a))+Math.cos((0,L0.default)(o))*Math.cos((0,L0.default)(a))*Math.cos((0,L0.default)(r)-(0,L0.default)(s))))*DI.earthRadius;return Math.round(m/l)*l},FI=BI;zl.default=FI});var ih=g1(Rl=>{"use strict";v();Object.defineProperty(Rl,"__esModule",{value:!0});Rl.default=void 0;var Gf=VI(r6());function VI(i){return i&&i.__esModule?i:{default:i}}var UI=function(t,n){var l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Gf.default;return l=typeof l=="function"?l:Gf.default,n.slice().sort(function(a,r){return l(t,a)-l(t,r)})},HI=UI;Rl.default=HI});var Wf=g1(Nl=>{"use strict";v();Object.defineProperty(Nl,"__esModule",{value:!0});Nl.default=void 0;var GI=WI(ih());function WI(i){return i&&i.__esModule?i:{default:i}}var jI=function(t,n){return(0,GI.default)(t,n)[0]},XI=jI;Nl.default=XI});var Yf=g1(kl=>{"use strict";v();Object.defineProperty(kl,"__esModule",{value:!0});kl.default=void 0;var lh=ah(g3()),YI=ah(A2()),jf=ah(P2()),Xf=Ct();function ah(i){return i&&i.__esModule?i:{default:i}}var ZI=function(t){var n=0;if(t.length>2){for(var l,a,r,o=0;o<t.length;o++){o===t.length-2?(l=t.length-2,a=t.length-1,r=0):o===t.length-1?(l=t.length-1,a=0,r=1):(l=o,a=o+1,r=o+2);var s=(0,jf.default)(t[l]),m=(0,YI.default)(t[a]),h=(0,jf.default)(t[r]);n+=((0,lh.default)(h)-(0,lh.default)(s))*Math.sin((0,lh.default)(m))}n=n*Xf.earthRadius*Xf.earthRadius/2}return Math.abs(n)},JI=ZI;kl.default=JI});var rh=g1(Dl=>{"use strict";v();Object.defineProperty(Dl,"__esModule",{value:!0});Dl.default=void 0;var KI=Zf(A2()),$I=Zf(P2());function Zf(i){return i&&i.__esModule?i:{default:i}}var QI=function(t){if(Array.isArray(t)===!1||t.length===0)throw new Error("No points were given.");return t.reduce(function(n,l){var a=(0,KI.default)(l),r=(0,$I.default)(l);return{maxLat:Math.max(a,n.maxLat),minLat:Math.min(a,n.minLat),maxLng:Math.max(r,n.maxLng),minLng:Math.min(r,n.minLng)}},{maxLat:-1/0,minLat:1/0,maxLng:-1/0,minLng:1/0})},eO=QI;Dl.default=eO});var Jf=g1(Vl=>{"use strict";v();Object.defineProperty(Vl,"__esModule",{value:!0});Vl.default=void 0;var tO=Fl(A2()),nO=Fl(P2()),I0=Fl(g3()),Bl=Fl(G6()),Bn=Ct();function Fl(i){return i&&i.__esModule?i:{default:i}}var iO=function(t,n){var l=(0,tO.default)(t),a=(0,nO.default)(t),r=(0,I0.default)(l),o=(0,I0.default)(a),s=n/Bn.earthRadius,m=r-s,h=r+s,u=(0,I0.default)(Bn.MAXLAT),c=(0,I0.default)(Bn.MINLAT),q=(0,I0.default)(Bn.MAXLON),d=(0,I0.default)(Bn.MINLON),p,f;if(m>c&&h<u){var y=Math.asin(Math.sin(s)/Math.cos(r));p=o-y,p<d&&(p+=Math.PI*2),f=o+y,f>q&&(f-=Math.PI*2)}else m=Math.max(m,c),h=Math.min(h,u),p=d,f=q;return[{latitude:(0,Bl.default)(m),longitude:(0,Bl.default)(p)},{latitude:(0,Bl.default)(h),longitude:(0,Bl.default)(f)}]},lO=iO;Vl.default=lO});var Qf=g1(Hl=>{"use strict";v();Object.defineProperty(Hl,"__esModule",{value:!0});Hl.default=void 0;var aO=Ul(A2()),rO=Ul(P2()),Kf=Ul(g3()),$f=Ul(G6());function Ul(i){return i&&i.__esModule?i:{default:i}}var oO=function(t){if(Array.isArray(t)===!1||t.length===0)return!1;var n=t.length,l=t.reduce(function(s,m){var h=(0,Kf.default)((0,aO.default)(m)),u=(0,Kf.default)((0,rO.default)(m));return{X:s.X+Math.cos(h)*Math.cos(u),Y:s.Y+Math.cos(h)*Math.sin(u),Z:s.Z+Math.sin(h)}},{X:0,Y:0,Z:0}),a=l.X/n,r=l.Y/n,o=l.Z/n;return{longitude:(0,$f.default)(Math.atan2(r,a)),latitude:(0,$f.default)(Math.atan2(o,Math.sqrt(a*a+r*r)))}},sO=oO;Hl.default=sO});var eb=g1(Gl=>{"use strict";v();Object.defineProperty(Gl,"__esModule",{value:!0});Gl.default=void 0;var mO=hO(rh());function hO(i){return i&&i.__esModule?i:{default:i}}var uO=function(t){var n=(0,mO.default)(t),l=n.minLat+(n.maxLat-n.minLat)/2,a=n.minLng+(n.maxLng-n.minLng)/2;return{latitude:parseFloat(l.toFixed(6)),longitude:parseFloat(a.toFixed(6))}},cO=uO;Gl.default=cO});var oh=g1(Xl=>{"use strict";v();Object.defineProperty(Xl,"__esModule",{value:!0});Xl.default=void 0;var tb=jl(A2()),nb=jl(P2()),Wl=jl(g3()),qO=jl(G6());function jl(i){return i&&i.__esModule?i:{default:i}}var dO=function(t,n){var l=(0,Wl.default)((0,nb.default)(n))-(0,Wl.default)((0,nb.default)(t)),a=Math.log(Math.tan((0,Wl.default)((0,tb.default)(n))/2+Math.PI/4)/Math.tan((0,Wl.default)((0,tb.default)(t))/2+Math.PI/4));return Math.abs(l)>Math.PI&&(l>0?l=(Math.PI*2-l)*-1:l=Math.PI*2+l),((0,qO.default)(Math.atan2(l,a))+360)%360},pO=dO;Xl.default=pO});var lb=g1(Yl=>{"use strict";v();Object.defineProperty(Yl,"__esModule",{value:!0});Yl.default=void 0;var ib=fO(oh());function fO(i){return i&&i.__esModule?i:{default:i}}var bO=function(t,n){var l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:ib.default,a=typeof l=="function"?l(t,n):(0,ib.default)(t,n);if(isNaN(a))throw new Error("Could not calculate bearing for given points. Check your bearing function");switch(Math.round(a/22.5)){case 1:return"NNE";case 2:return"NE";case 3:return"ENE";case 4:return"E";case 5:return"ESE";case 6:return"SE";case 7:return"SSE";case 8:return"S";case 9:return"SSW";case 10:return"SW";case 11:return"WSW";case 12:return"W";case 13:return"WNW";case 14:return"NW";case 15:return"NNW";default:return"N"}},xO=bO;Yl.default=xO});var mh=g1(Zl=>{"use strict";v();Object.defineProperty(Zl,"__esModule",{value:!0});Zl.default=void 0;var sh=rb(r6()),ab=rb(nh());function rb(i){return i&&i.__esModule?i:{default:i}}var _O=function(t,n,l){var a=(0,sh.default)(n,t),r=(0,sh.default)(t,l),o=(0,sh.default)(n,l),s=Math.acos((0,ab.default)((a*a+o*o-r*r)/(2*a*o))),m=Math.acos((0,ab.default)((r*r+o*o-a*a)/(2*r*o)));return s>Math.PI/2?a:m>Math.PI/2?r:Math.sin(s)*a},gO=_O;Zl.default=gO});var mb=g1(Kl=>{"use strict";v();Object.defineProperty(Kl,"__esModule",{value:!0});Kl.default=void 0;var ob=Jl(A2()),sb=Jl(P2()),e4=Jl(g3()),yO=Jl(G6());function Jl(i){return i&&i.__esModule?i:{default:i}}var vO=function(t,n){var l=(0,ob.default)(n),a=(0,sb.default)(n),r=(0,ob.default)(t),o=(0,sb.default)(t),s=((0,yO.default)(Math.atan2(Math.sin((0,e4.default)(a)-(0,e4.default)(o))*Math.cos((0,e4.default)(l)),Math.cos((0,e4.default)(r))*Math.sin((0,e4.default)(l))-Math.sin((0,e4.default)(r))*Math.cos((0,e4.default)(l))*Math.cos((0,e4.default)(a)-(0,e4.default)(o))))+360)%360;return s},MO=vO;Kl.default=MO});var hb=g1(Ql=>{"use strict";v();Object.defineProperty(Ql,"__esModule",{value:!0});Ql.default=void 0;var EO=TO(r6());function TO(i){return i&&i.__esModule?i:{default:i}}function $l(i){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?$l=function(n){return typeof n}:$l=function(n){return n&&typeof Symbol=="function"&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n},$l(i)}var wO=function(t){var n=arguments.length>1&&arguments[1]!==void 0?arguments[1]:EO.default;return t.reduce(function(l,a){return $l(l)==="object"&&l.last!==null&&(l.distance+=n(a,l.last)),l.last=a,l},{last:null,distance:0}).distance},SO=wO;Ql.default=SO});var db=g1(ea=>{"use strict";v();Object.defineProperty(ea,"__esModule",{value:!0});ea.default=void 0;var ub=uh(A2()),cb=uh(P2()),hh=uh(g3()),qb=Ct();function uh(i){return i&&i.__esModule?i:{default:i}}var AO=function(t,n){var l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1;l=typeof l<"u"&&!isNaN(l)?l:1;var a=(0,ub.default)(t),r=(0,cb.default)(t),o=(0,ub.default)(n),s=(0,cb.default)(n),m=6356752314245e-6,h=1/298.257223563,u=(0,hh.default)(s-r),c,q,d,p,f,y,b=Math.atan((1-h)*Math.tan((0,hh.default)(parseFloat(a)))),g=Math.atan((1-h)*Math.tan((0,hh.default)(parseFloat(o)))),A=Math.sin(b),T=Math.cos(b),E=Math.sin(g),O=Math.cos(g),z=u,H,J=100;do{var F=Math.sin(z),w=Math.cos(z);if(y=Math.sqrt(O*F*(O*F)+(T*E-A*O*w)*(T*E-A*O*w)),y===0)return 0;c=A*E+T*O*w,q=Math.atan2(y,c),d=T*O*F/y,p=1-d*d,f=c-2*A*E/p,isNaN(f)&&(f=0);var R=h/16*p*(4+h*(4-3*p));H=z,z=u+(1-R)*h*d*(q+R*y*(f+R*c*(-1+2*f*f)))}while(Math.abs(z-H)>1e-12&&--J>0);if(J===0)return NaN;var V=p*(qb.earthRadius*qb.earthRadius-m*m)/(m*m),W=1+V/16384*(4096+V*(-768+V*(320-175*V))),X=V/1024*(256+V*(-128+V*(74-47*V))),j=X*y*(f+X/4*(c*(-1+2*f*f)-X/6*f*(-3+4*y*y)*(-3+4*f*f))),$=m*W*(q-j);return Math.round($/l)*l},PO=AO;ea.default=PO});var pb=g1(ta=>{"use strict";v();Object.defineProperty(ta,"__esModule",{value:!0});ta.default=void 0;var CO=function(t){if(/^NNE|NE|NNW|N$/.test(t))return"N";if(/^ENE|E|ESE|SE$/.test(t))return"E";if(/^SSE|S|SSW|SW$/.test(t))return"S";if(/^WSW|W|WNW|NW$/.test(t))return"W"},LO=CO;ta.default=LO});var fb=g1(na=>{"use strict";v();Object.defineProperty(na,"__esModule",{value:!0});na.default=void 0;var IO=OO(r6());function OO(i){return i&&i.__esModule?i:{default:i}}var zO=function(t,n){var l=arguments.length>2&&arguments[2]!==void 0?arguments[2]:IO.default,a=l(t,n),r=Number(n.time)-Number(t.time),o=a/r*1e3;return o},RO=zO;na.default=RO});var bb=g1(ia=>{"use strict";v();Object.defineProperty(ia,"__esModule",{value:!0});ia.default=void 0;var ch=NO(r6());function NO(i){return i&&i.__esModule?i:{default:i}}var kO=function(t,n,l){return(0,ch.default)(n,t)+(0,ch.default)(t,l)===(0,ch.default)(n,l)},DO=kO;ia.default=DO});var _b=g1(aa=>{"use strict";v();Object.defineProperty(aa,"__esModule",{value:!0});aa.default=void 0;var la=xb(A2()),C2=xb(P2());function xb(i){return i&&i.__esModule?i:{default:i}}var BO=function(t,n){for(var l=!1,a=n.length,r=-1,o=a-1;++r<a;o=r)((0,C2.default)(n[r])<=(0,C2.default)(t)&&(0,C2.default)(t)<(0,C2.default)(n[o])||(0,C2.default)(n[o])<=(0,C2.default)(t)&&(0,C2.default)(t)<(0,C2.default)(n[r]))&&(0,la.default)(t)<((0,la.default)(n[o])-(0,la.default)(n[r]))*((0,C2.default)(t)-(0,C2.default)(n[r]))/((0,C2.default)(n[o])-(0,C2.default)(n[r]))+(0,la.default)(n[r])&&(l=!l);return l},FO=BO;aa.default=FO});var gb=g1(ra=>{"use strict";v();Object.defineProperty(ra,"__esModule",{value:!0});ra.default=void 0;var VO=UO(mh());function UO(i){return i&&i.__esModule?i:{default:i}}var HO=function(t,n,l,a){return(0,VO.default)(t,n,l)<a},GO=HO;ra.default=GO});var yb=g1(oa=>{"use strict";v();Object.defineProperty(oa,"__esModule",{value:!0});oa.default=void 0;var WO=jO(r6());function jO(i){return i&&i.__esModule?i:{default:i}}var XO=function(t,n,l){return(0,WO.default)(t,n)<l},YO=XO;oa.default=YO});var Mb=g1(sa=>{"use strict";v();Object.defineProperty(sa,"__esModule",{value:!0});sa.default=void 0;function ZO(i,t){return QO(i)||$O(i,t)||KO(i,t)||JO()}function JO(){throw new TypeError(\`Invalid attempt to destructure non-iterable instance.
|
|
12
12
|
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.\`)}function KO(i,t){if(i){if(typeof i=="string")return vb(i,t);var n=Object.prototype.toString.call(i).slice(8,-1);if(n==="Object"&&i.constructor&&(n=i.constructor.name),n==="Map"||n==="Set")return Array.from(i);if(n==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return vb(i,t)}}function vb(i,t){(t==null||t>i.length)&&(t=i.length);for(var n=0,l=new Array(t);n<t;n++)l[n]=i[n];return l}function $O(i,t){if(!(typeof Symbol>"u"||!(Symbol.iterator in Object(i)))){var n=[],l=!0,a=!1,r=void 0;try{for(var o=i[Symbol.iterator](),s;!(l=(s=o.next()).done)&&(n.push(s.value),!(t&&n.length===t));l=!0);}catch(m){a=!0,r=m}finally{try{!l&&o.return!=null&&o.return()}finally{if(a)throw r}}return n}}function QO(i){if(Array.isArray(i))return i}var ez=function(t){if(!t.startsWith("POLYGON"))throw new Error("Invalid wkt.");var n=t.slice(t.indexOf("(")+2,t.indexOf(")")).split(", "),l=n.map(function(a){var r=a.split(" "),o=ZO(r,2),s=o[0],m=o[1];return{longitude:parseFloat(s),latitude:parseFloat(m)}});return l},tz=ez;sa.default=tz});var Tb=g1(oe=>{"use strict";v();Object.defineProperty(oe,"__esModule",{value:!0});var nz={computeDestinationPoint:!0,convertArea:!0,convertDistance:!0,convertSpeed:!0,decimalToSexagesimal:!0,findNearest:!0,getAreaOfPolygon:!0,getBounds:!0,getBoundsOfDistance:!0,getCenter:!0,getCenterOfBounds:!0,getCompassDirection:!0,getCoordinateKey:!0,getCoordinateKeys:!0,getDistance:!0,getDistanceFromLine:!0,getGreatCircleBearing:!0,getLatitude:!0,getLongitude:!0,getPathLength:!0,getPreciseDistance:!0,getRhumbLineBearing:!0,getRoughCompassDirection:!0,getSpeed:!0,isDecimal:!0,isPointInLine:!0,isPointInPolygon:!0,isPointNearLine:!0,isPointWithinRadius:!0,isSexagesimal:!0,isValidCoordinate:!0,isValidLatitude:!0,isValidLongitude:!0,orderByDistance:!0,sexagesimalToDecimal:!0,toDecimal:!0,toRad:!0,toDeg:!0,wktToPolygon:!0};Object.defineProperty(oe,"computeDestinationPoint",{enumerable:!0,get:function(){return iz.default}});Object.defineProperty(oe,"convertArea",{enumerable:!0,get:function(){return lz.default}});Object.defineProperty(oe,"convertDistance",{enumerable:!0,get:function(){return az.default}});Object.defineProperty(oe,"convertSpeed",{enumerable:!0,get:function(){return rz.default}});Object.defineProperty(oe,"decimalToSexagesimal",{enumerable:!0,get:function(){return oz.default}});Object.defineProperty(oe,"findNearest",{enumerable:!0,get:function(){return sz.default}});Object.defineProperty(oe,"getAreaOfPolygon",{enumerable:!0,get:function(){return mz.default}});Object.defineProperty(oe,"getBounds",{enumerable:!0,get:function(){return hz.default}});Object.defineProperty(oe,"getBoundsOfDistance",{enumerable:!0,get:function(){return uz.default}});Object.defineProperty(oe,"getCenter",{enumerable:!0,get:function(){return cz.default}});Object.defineProperty(oe,"getCenterOfBounds",{enumerable:!0,get:function(){return qz.default}});Object.defineProperty(oe,"getCompassDirection",{enumerable:!0,get:function(){return dz.default}});Object.defineProperty(oe,"getCoordinateKey",{enumerable:!0,get:function(){return pz.default}});Object.defineProperty(oe,"getCoordinateKeys",{enumerable:!0,get:function(){return fz.default}});Object.defineProperty(oe,"getDistance",{enumerable:!0,get:function(){return bz.default}});Object.defineProperty(oe,"getDistanceFromLine",{enumerable:!0,get:function(){return xz.default}});Object.defineProperty(oe,"getGreatCircleBearing",{enumerable:!0,get:function(){return _z.default}});Object.defineProperty(oe,"getLatitude",{enumerable:!0,get:function(){return gz.default}});Object.defineProperty(oe,"getLongitude",{enumerable:!0,get:function(){return yz.default}});Object.defineProperty(oe,"getPathLength",{enumerable:!0,get:function(){return vz.default}});Object.defineProperty(oe,"getPreciseDistance",{enumerable:!0,get:function(){return Mz.default}});Object.defineProperty(oe,"getRhumbLineBearing",{enumerable:!0,get:function(){return Ez.default}});Object.defineProperty(oe,"getRoughCompassDirection",{enumerable:!0,get:function(){return Tz.default}});Object.defineProperty(oe,"getSpeed",{enumerable:!0,get:function(){return wz.default}});Object.defineProperty(oe,"isDecimal",{enumerable:!0,get:function(){return Sz.default}});Object.defineProperty(oe,"isPointInLine",{enumerable:!0,get:function(){return Az.default}});Object.defineProperty(oe,"isPointInPolygon",{enumerable:!0,get:function(){return Pz.default}});Object.defineProperty(oe,"isPointNearLine",{enumerable:!0,get:function(){return Cz.default}});Object.defineProperty(oe,"isPointWithinRadius",{enumerable:!0,get:function(){return Lz.default}});Object.defineProperty(oe,"isSexagesimal",{enumerable:!0,get:function(){return Iz.default}});Object.defineProperty(oe,"isValidCoordinate",{enumerable:!0,get:function(){return Oz.default}});Object.defineProperty(oe,"isValidLatitude",{enumerable:!0,get:function(){return zz.default}});Object.defineProperty(oe,"isValidLongitude",{enumerable:!0,get:function(){return Rz.default}});Object.defineProperty(oe,"orderByDistance",{enumerable:!0,get:function(){return Nz.default}});Object.defineProperty(oe,"sexagesimalToDecimal",{enumerable:!0,get:function(){return kz.default}});Object.defineProperty(oe,"toDecimal",{enumerable:!0,get:function(){return Dz.default}});Object.defineProperty(oe,"toRad",{enumerable:!0,get:function(){return Bz.default}});Object.defineProperty(oe,"toDeg",{enumerable:!0,get:function(){return Fz.default}});Object.defineProperty(oe,"wktToPolygon",{enumerable:!0,get:function(){return Vz.default}});var iz=ue(Rf()),lz=ue(Nf()),az=ue(kf()),rz=ue(Df()),oz=ue(Vf()),sz=ue(Wf()),mz=ue(Yf()),hz=ue(rh()),uz=ue(Jf()),cz=ue(Qf()),qz=ue(eb()),dz=ue(lb()),pz=ue(zn()),fz=ue(pl()),bz=ue(r6()),xz=ue(mh()),_z=ue(mb()),gz=ue(A2()),yz=ue(P2()),vz=ue(hb()),Mz=ue(db()),Ez=ue(oh()),Tz=ue(pb()),wz=ue(fb()),Sz=ue(Rn()),Az=ue(bb()),Pz=ue(_b()),Cz=ue(gb()),Lz=ue(yb()),Iz=ue(Nn()),Oz=ue(Km()),zz=ue(Xm()),Rz=ue(Zm()),Nz=ue(ih()),kz=ue(kn()),Dz=ue(gl()),Bz=ue(g3()),Fz=ue(G6()),Vz=ue(Mb()),Eb=Ct();Object.keys(Eb).forEach(function(i){i==="default"||i==="__esModule"||Object.prototype.hasOwnProperty.call(nz,i)||Object.defineProperty(oe,i,{enumerable:!0,get:function(){return Eb[i]}})});function ue(i){return i&&i.__esModule?i:{default:i}}});var n5=g1((Hh,Gh)=>{v();var Wh=function(){this._tweens={},this._tweensAddedDuringUpdate={}};Wh.prototype={getAll:function(){return Object.keys(this._tweens).map(function(i){return this._tweens[i]}.bind(this))},removeAll:function(){this._tweens={}},add:function(i){this._tweens[i.getId()]=i,this._tweensAddedDuringUpdate[i.getId()]=i},remove:function(i){delete this._tweens[i.getId()],delete this._tweensAddedDuringUpdate[i.getId()]},update:function(i,t){var n=Object.keys(this._tweens);if(n.length===0)return!1;for(i=i!==void 0?i:Pe.now();n.length>0;){this._tweensAddedDuringUpdate={};for(var l=0;l<n.length;l++){var a=this._tweens[n[l]];a&&a.update(i)===!1&&(a._isPlaying=!1,t||delete this._tweens[n[l]])}n=Object.keys(this._tweensAddedDuringUpdate)}return!0}};var Pe=new Wh;Pe.Group=Wh;Pe._nextId=0;Pe.nextId=function(){return Pe._nextId++};typeof self>"u"&&typeof k<"u"&&k.hrtime?Pe.now=function(){var i=k.hrtime();return i[0]*1e3+i[1]/1e6}:typeof self<"u"&&self.performance!==void 0&&self.performance.now!==void 0?Pe.now=self.performance.now.bind(self.performance):Date.now!==void 0?Pe.now=Date.now:Pe.now=function(){return new Date().getTime()};Pe.Tween=function(i,t){this._object=i,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._repeat=0,this._repeatDelayTime=void 0,this._yoyo=!1,this._isPlaying=!1,this._reversed=!1,this._delayTime=0,this._startTime=null,this._easingFunction=Pe.Easing.Linear.None,this._interpolationFunction=Pe.Interpolation.Linear,this._chainedTweens=[],this._onStartCallback=null,this._onStartCallbackFired=!1,this._onUpdateCallback=null,this._onRepeatCallback=null,this._onCompleteCallback=null,this._onStopCallback=null,this._group=t||Pe,this._id=Pe.nextId()};Pe.Tween.prototype={getId:function(){return this._id},isPlaying:function(){return this._isPlaying},to:function(i,t){return this._valuesEnd=i,t!==void 0&&(this._duration=t),this},duration:function(t){return this._duration=t,this},start:function(i){this._group.add(this),this._isPlaying=!0,this._onStartCallbackFired=!1,this._startTime=i!==void 0?typeof i=="string"?Pe.now()+parseFloat(i):i:Pe.now(),this._startTime+=this._delayTime;for(var t in this._valuesEnd){if(this._valuesEnd[t]instanceof Array){if(this._valuesEnd[t].length===0)continue;this._valuesEnd[t]=[this._object[t]].concat(this._valuesEnd[t])}this._object[t]!==void 0&&(this._valuesStart[t]=this._object[t],this._valuesStart[t]instanceof Array||(this._valuesStart[t]*=1),this._valuesStartRepeat[t]=this._valuesStart[t]||0)}return this},stop:function(){return this._isPlaying?(this._group.remove(this),this._isPlaying=!1,this._onStopCallback!==null&&this._onStopCallback(this._object),this.stopChainedTweens(),this):this},end:function(){return this.update(1/0),this},stopChainedTweens:function(){for(var i=0,t=this._chainedTweens.length;i<t;i++)this._chainedTweens[i].stop()},group:function(i){return this._group=i,this},delay:function(i){return this._delayTime=i,this},repeat:function(i){return this._repeat=i,this},repeatDelay:function(i){return this._repeatDelayTime=i,this},yoyo:function(i){return this._yoyo=i,this},easing:function(i){return this._easingFunction=i,this},interpolation:function(i){return this._interpolationFunction=i,this},chain:function(){return this._chainedTweens=arguments,this},onStart:function(i){return this._onStartCallback=i,this},onUpdate:function(i){return this._onUpdateCallback=i,this},onRepeat:function(t){return this._onRepeatCallback=t,this},onComplete:function(i){return this._onCompleteCallback=i,this},onStop:function(i){return this._onStopCallback=i,this},update:function(i){var t,n,l;if(i<this._startTime)return!0;this._onStartCallbackFired===!1&&(this._onStartCallback!==null&&this._onStartCallback(this._object),this._onStartCallbackFired=!0),n=(i-this._startTime)/this._duration,n=this._duration===0||n>1?1:n,l=this._easingFunction(n);for(t in this._valuesEnd)if(this._valuesStart[t]!==void 0){var a=this._valuesStart[t]||0,r=this._valuesEnd[t];r instanceof Array?this._object[t]=this._interpolationFunction(r,l):(typeof r=="string"&&(r.charAt(0)==="+"||r.charAt(0)==="-"?r=a+parseFloat(r):r=parseFloat(r)),typeof r=="number"&&(this._object[t]=a+(r-a)*l))}if(this._onUpdateCallback!==null&&this._onUpdateCallback(this._object,n),n===1)if(this._repeat>0){isFinite(this._repeat)&&this._repeat--;for(t in this._valuesStartRepeat){if(typeof this._valuesEnd[t]=="string"&&(this._valuesStartRepeat[t]=this._valuesStartRepeat[t]+parseFloat(this._valuesEnd[t])),this._yoyo){var o=this._valuesStartRepeat[t];this._valuesStartRepeat[t]=this._valuesEnd[t],this._valuesEnd[t]=o}this._valuesStart[t]=this._valuesStartRepeat[t]}return this._yoyo&&(this._reversed=!this._reversed),this._repeatDelayTime!==void 0?this._startTime=i+this._repeatDelayTime:this._startTime=i+this._delayTime,this._onRepeatCallback!==null&&this._onRepeatCallback(this._object),!0}else{this._onCompleteCallback!==null&&this._onCompleteCallback(this._object);for(var s=0,m=this._chainedTweens.length;s<m;s++)this._chainedTweens[s].start(this._startTime+this._duration);return!1}return!0}};Pe.Easing={Linear:{None:function(i){return i}},Quadratic:{In:function(i){return i*i},Out:function(i){return i*(2-i)},InOut:function(i){return(i*=2)<1?.5*i*i:-.5*(--i*(i-2)-1)}},Cubic:{In:function(i){return i*i*i},Out:function(i){return--i*i*i+1},InOut:function(i){return(i*=2)<1?.5*i*i*i:.5*((i-=2)*i*i+2)}},Quartic:{In:function(i){return i*i*i*i},Out:function(i){return 1- --i*i*i*i},InOut:function(i){return(i*=2)<1?.5*i*i*i*i:-.5*((i-=2)*i*i*i-2)}},Quintic:{In:function(i){return i*i*i*i*i},Out:function(i){return--i*i*i*i*i+1},InOut:function(i){return(i*=2)<1?.5*i*i*i*i*i:.5*((i-=2)*i*i*i*i+2)}},Sinusoidal:{In:function(i){return 1-Math.cos(i*Math.PI/2)},Out:function(i){return Math.sin(i*Math.PI/2)},InOut:function(i){return .5*(1-Math.cos(Math.PI*i))}},Exponential:{In:function(i){return i===0?0:Math.pow(1024,i-1)},Out:function(i){return i===1?1:1-Math.pow(2,-10*i)},InOut:function(i){return i===0?0:i===1?1:(i*=2)<1?.5*Math.pow(1024,i-1):.5*(-Math.pow(2,-10*(i-1))+2)}},Circular:{In:function(i){return 1-Math.sqrt(1-i*i)},Out:function(i){return Math.sqrt(1- --i*i)},InOut:function(i){return(i*=2)<1?-.5*(Math.sqrt(1-i*i)-1):.5*(Math.sqrt(1-(i-=2)*i)+1)}},Elastic:{In:function(i){return i===0?0:i===1?1:-Math.pow(2,10*(i-1))*Math.sin((i-1.1)*5*Math.PI)},Out:function(i){return i===0?0:i===1?1:Math.pow(2,-10*i)*Math.sin((i-.1)*5*Math.PI)+1},InOut:function(i){return i===0?0:i===1?1:(i*=2,i<1?-.5*Math.pow(2,10*(i-1))*Math.sin((i-1.1)*5*Math.PI):.5*Math.pow(2,-10*(i-1))*Math.sin((i-1.1)*5*Math.PI)+1)}},Back:{In:function(i){var t=1.70158;return i*i*((t+1)*i-t)},Out:function(i){var t=1.70158;return--i*i*((t+1)*i+t)+1},InOut:function(i){var t=2.5949095;return(i*=2)<1?.5*(i*i*((t+1)*i-t)):.5*((i-=2)*i*((t+1)*i+t)+2)}},Bounce:{In:function(i){return 1-Pe.Easing.Bounce.Out(1-i)},Out:function(i){return i<1/2.75?7.5625*i*i:i<2/2.75?7.5625*(i-=1.5/2.75)*i+.75:i<2.5/2.75?7.5625*(i-=2.25/2.75)*i+.9375:7.5625*(i-=2.625/2.75)*i+.984375},InOut:function(i){return i<.5?Pe.Easing.Bounce.In(i*2)*.5:Pe.Easing.Bounce.Out(i*2-1)*.5+.5}}};Pe.Interpolation={Linear:function(i,t){var n=i.length-1,l=n*t,a=Math.floor(l),r=Pe.Interpolation.Utils.Linear;return t<0?r(i[0],i[1],l):t>1?r(i[n],i[n-1],n-l):r(i[a],i[a+1>n?n:a+1],l-a)},Bezier:function(i,t){for(var n=0,l=i.length-1,a=Math.pow,r=Pe.Interpolation.Utils.Bernstein,o=0;o<=l;o++)n+=a(1-t,l-o)*a(t,o)*i[o]*r(l,o);return n},CatmullRom:function(i,t){var n=i.length-1,l=n*t,a=Math.floor(l),r=Pe.Interpolation.Utils.CatmullRom;return i[0]===i[n]?(t<0&&(a=Math.floor(l=n*(1+t))),r(i[(a-1+n)%n],i[a],i[(a+1)%n],i[(a+2)%n],l-a)):t<0?i[0]-(r(i[0],i[0],i[1],i[1],-l)-i[0]):t>1?i[n]-(r(i[n],i[n],i[n-1],i[n-1],l-n)-i[n]):r(i[a?a-1:0],i[a],i[n<a+1?n:a+1],i[n<a+2?n:a+2],l-a)},Utils:{Linear:function(i,t,n){return(t-i)*n+i},Bernstein:function(i,t){var n=Pe.Interpolation.Utils.Factorial;return n(i)/n(t)/n(i-t)},Factorial:function(){var i=[1];return function(t){var n=1;if(i[t])return i[t];for(var l=t;l>1;l--)n*=l;return i[t]=n,n}}(),CatmullRom:function(i,t,n,l,a){var r=(n-i)*.5,o=(l-t)*.5,s=a*a,m=a*s;return(2*t-2*n+r+o)*m+(-3*t+3*n-2*r-o)*s+r*a+t}}};(function(i){typeof define=="function"&&define.amd?define([],function(){return Pe}):typeof Gh<"u"&&typeof Hh=="object"?Gh.exports=Pe:i!==void 0&&(i.TWEEN=Pe)})(Hh)});var Za=g1((P7,i8)=>{v();var YR=200,Fx="__lodash_hash_undefined__",ZR=800,JR=16,Vx=9007199254740991,Ux="[object Arguments]",KR="[object Array]",$R="[object AsyncFunction]",QR="[object Boolean]",eN="[object Date]",tN="[object Error]",Hx="[object Function]",nN="[object GeneratorFunction]",iN="[object Map]",lN="[object Number]",aN="[object Null]",Gx="[object Object]",rN="[object Proxy]",oN="[object RegExp]",sN="[object Set]",mN="[object String]",hN="[object Undefined]",uN="[object WeakMap]",cN="[object ArrayBuffer]",qN="[object DataView]",dN="[object Float32Array]",pN="[object Float64Array]",fN="[object Int8Array]",bN="[object Int16Array]",xN="[object Int32Array]",_N="[object Uint8Array]",gN="[object Uint8ClampedArray]",yN="[object Uint16Array]",vN="[object Uint32Array]",MN=/[\\\\^$.*+?()[\\]{}|]/g,EN=/^\\[object .+?Constructor\\]$/,TN=/^(?:0|[1-9]\\d*)$/,Be={};Be[dN]=Be[pN]=Be[fN]=Be[bN]=Be[xN]=Be[_N]=Be[gN]=Be[yN]=Be[vN]=!0;Be[Ux]=Be[KR]=Be[cN]=Be[QR]=Be[qN]=Be[eN]=Be[tN]=Be[Hx]=Be[iN]=Be[lN]=Be[Gx]=Be[oN]=Be[sN]=Be[mN]=Be[uN]=!1;var Wx=typeof global=="object"&&global&&global.Object===Object&&global,wN=typeof self=="object"&&self&&self.Object===Object&&self,I7=Wx||wN||Function("return this")(),jx=typeof P7=="object"&&P7&&!P7.nodeType&&P7,C7=jx&&typeof i8=="object"&&i8&&!i8.nodeType&&i8,Xx=C7&&C7.exports===jx,eu=Xx&&Wx.process,Lx=function(){try{var i=C7&&C7.require&&C7.require("util").types;return i||eu&&eu.binding&&eu.binding("util")}catch{}}(),Ix=Lx&&Lx.isTypedArray;function Yx(i,t,n){switch(n.length){case 0:return i.call(t);case 1:return i.call(t,n[0]);case 2:return i.call(t,n[0],n[1]);case 3:return i.call(t,n[0],n[1],n[2])}return i.apply(t,n)}function SN(i,t){for(var n=-1,l=Array(i);++n<i;)l[n]=t(n);return l}function AN(i){return function(t){return i(t)}}function PN(i,t){return i==null?void 0:i[t]}function CN(i,t){return function(n){return i(t(n))}}var LN=Array.prototype,IN=Function.prototype,Ha=Object.prototype,tu=I7["__core-js_shared__"],Ga=IN.toString,c4=Ha.hasOwnProperty,Ox=function(){var i=/[^.]+$/.exec(tu&&tu.keys&&tu.keys.IE_PROTO||"");return i?"Symbol(src)_1."+i:""}(),Zx=Ha.toString,ON=Ga.call(Object),zN=RegExp("^"+Ga.call(c4).replace(MN,"\\\\$&").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,"$1.*?")+"$"),Va=Xx?I7.Buffer:void 0,zx=I7.Symbol,Rx=I7.Uint8Array,Nx=Va?Va.allocUnsafe:void 0,Jx=CN(Object.getPrototypeOf,Object),kx=Object.create,RN=Ha.propertyIsEnumerable,NN=LN.splice,i5=zx?zx.toStringTag:void 0,Ua=function(){try{var i=su(Object,"defineProperty");return i({},"",{}),i}catch{}}(),kN=Va?Va.isBuffer:void 0,Dx=Math.max,DN=Date.now,Kx=su(I7,"Map"),L7=su(Object,"create"),BN=function(){function i(){}return function(t){if(!u4(t))return{};if(kx)return kx(t);i.prototype=t;var n=new i;return i.prototype=void 0,n}}();function l5(i){var t=-1,n=i==null?0:i.length;for(this.clear();++t<n;){var l=i[t];this.set(l[0],l[1])}}function FN(){this.__data__=L7?L7(null):{},this.size=0}function VN(i){var t=this.has(i)&&delete this.__data__[i];return this.size-=t?1:0,t}function UN(i){var t=this.__data__;if(L7){var n=t[i];return n===Fx?void 0:n}return c4.call(t,i)?t[i]:void 0}function HN(i){var t=this.__data__;return L7?t[i]!==void 0:c4.call(t,i)}function GN(i,t){var n=this.__data__;return this.size+=this.has(i)?0:1,n[i]=L7&&t===void 0?Fx:t,this}l5.prototype.clear=FN;l5.prototype.delete=VN;l5.prototype.get=UN;l5.prototype.has=HN;l5.prototype.set=GN;function q4(i){var t=-1,n=i==null?0:i.length;for(this.clear();++t<n;){var l=i[t];this.set(l[0],l[1])}}function WN(){this.__data__=[],this.size=0}function jN(i){var t=this.__data__,n=Wa(t,i);if(n<0)return!1;var l=t.length-1;return n==l?t.pop():NN.call(t,n,1),--this.size,!0}function XN(i){var t=this.__data__,n=Wa(t,i);return n<0?void 0:t[n][1]}function YN(i){return Wa(this.__data__,i)>-1}function ZN(i,t){var n=this.__data__,l=Wa(n,i);return l<0?(++this.size,n.push([i,t])):n[l][1]=t,this}q4.prototype.clear=WN;q4.prototype.delete=jN;q4.prototype.get=XN;q4.prototype.has=YN;q4.prototype.set=ZN;function l8(i){var t=-1,n=i==null?0:i.length;for(this.clear();++t<n;){var l=i[t];this.set(l[0],l[1])}}function JN(){this.size=0,this.__data__={hash:new l5,map:new(Kx||q4),string:new l5}}function KN(i){var t=Xa(this,i).delete(i);return this.size-=t?1:0,t}function $N(i){return Xa(this,i).get(i)}function QN(i){return Xa(this,i).has(i)}function ek(i,t){var n=Xa(this,i),l=n.size;return n.set(i,t),this.size+=n.size==l?0:1,this}l8.prototype.clear=JN;l8.prototype.delete=KN;l8.prototype.get=$N;l8.prototype.has=QN;l8.prototype.set=ek;function a8(i){var t=this.__data__=new q4(i);this.size=t.size}function tk(){this.__data__=new q4,this.size=0}function nk(i){var t=this.__data__,n=t.delete(i);return this.size=t.size,n}function ik(i){return this.__data__.get(i)}function lk(i){return this.__data__.has(i)}function ak(i,t){var n=this.__data__;if(n instanceof q4){var l=n.__data__;if(!Kx||l.length<YR-1)return l.push([i,t]),this.size=++n.size,this;n=this.__data__=new l8(l)}return n.set(i,t),this.size=n.size,this}a8.prototype.clear=tk;a8.prototype.delete=nk;a8.prototype.get=ik;a8.prototype.has=lk;a8.prototype.set=ak;function rk(i,t){var n=au(i),l=!n&&lu(i),a=!n&&!l&&n_(i),r=!n&&!l&&!a&&l_(i),o=n||l||a||r,s=o?SN(i.length,String):[],m=s.length;for(var h in i)(t||c4.call(i,h))&&!(o&&(h=="length"||a&&(h=="offset"||h=="parent")||r&&(h=="buffer"||h=="byteLength"||h=="byteOffset")||e_(h,m)))&&s.push(h);return s}function nu(i,t,n){(n!==void 0&&!Ya(i[t],n)||n===void 0&&!(t in i))&&ru(i,t,n)}function ok(i,t,n){var l=i[t];(!(c4.call(i,t)&&Ya(l,n))||n===void 0&&!(t in i))&&ru(i,t,n)}function Wa(i,t){for(var n=i.length;n--;)if(Ya(i[n][0],t))return n;return-1}function ru(i,t,n){t=="__proto__"&&Ua?Ua(i,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):i[t]=n}var sk=gk();function ja(i){return i==null?i===void 0?hN:aN:i5&&i5 in Object(i)?yk(i):Sk(i)}function Bx(i){return O7(i)&&ja(i)==Ux}function mk(i){if(!u4(i)||Tk(i))return!1;var t=hu(i)?zN:EN;return t.test(Lk(i))}function hk(i){return O7(i)&&i_(i.length)&&!!Be[ja(i)]}function uk(i){if(!u4(i))return wk(i);var t=t_(i),n=[];for(var l in i)l=="constructor"&&(t||!c4.call(i,l))||n.push(l);return n}function ou(i,t,n,l,a){i!==t&&sk(t,function(r,o){if(a||(a=new a8),u4(r))ck(i,t,o,n,ou,l,a);else{var s=l?l(iu(i,o),r,o+"",i,t,a):void 0;s===void 0&&(s=r),nu(i,o,s)}},a_)}function ck(i,t,n,l,a,r,o){var s=iu(i,n),m=iu(t,n),h=o.get(m);if(h){nu(i,n,h);return}var u=r?r(s,m,n+"",i,t,o):void 0,c=u===void 0;if(c){var q=au(m),d=!q&&n_(m),p=!q&&!d&&l_(m);u=m,q||d||p?au(s)?u=s:Ik(s)?u=bk(s):d?(c=!1,u=dk(m,!0)):p?(c=!1,u=fk(m,!0)):u=[]:Ok(m)||lu(m)?(u=s,lu(s)?u=zk(s):(!u4(s)||hu(s))&&(u=vk(m))):c=!1}c&&(o.set(m,u),a(u,m,l,r,o),o.delete(m)),nu(i,n,u)}function $x(i,t){return Pk(Ak(i,t,r_),i+"")}var qk=Ua?function(i,t){return Ua(i,"toString",{configurable:!0,enumerable:!1,value:kk(t),writable:!0})}:r_;function dk(i,t){if(t)return i.slice();var n=i.length,l=Nx?Nx(n):new i.constructor(n);return i.copy(l),l}function pk(i){var t=new i.constructor(i.byteLength);return new Rx(t).set(new Rx(i)),t}function fk(i,t){var n=t?pk(i.buffer):i.buffer;return new i.constructor(n,i.byteOffset,i.length)}function bk(i,t){var n=-1,l=i.length;for(t||(t=Array(l));++n<l;)t[n]=i[n];return t}function xk(i,t,n,l){var a=!n;n||(n={});for(var r=-1,o=t.length;++r<o;){var s=t[r],m=l?l(n[s],i[s],s,n,i):void 0;m===void 0&&(m=i[s]),a?ru(n,s,m):ok(n,s,m)}return n}function _k(i){return $x(function(t,n){var l=-1,a=n.length,r=a>1?n[a-1]:void 0,o=a>2?n[2]:void 0;for(r=i.length>3&&typeof r=="function"?(a--,r):void 0,o&&Mk(n[0],n[1],o)&&(r=a<3?void 0:r,a=1),t=Object(t);++l<a;){var s=n[l];s&&i(t,s,l,r)}return t})}function gk(i){return function(t,n,l){for(var a=-1,r=Object(t),o=l(t),s=o.length;s--;){var m=o[i?s:++a];if(n(r[m],m,r)===!1)break}return t}}function Qx(i,t,n,l,a,r){return u4(i)&&u4(t)&&(r.set(t,i),ou(i,t,void 0,Qx,r),r.delete(t)),i}function Xa(i,t){var n=i.__data__;return Ek(t)?n[typeof t=="string"?"string":"hash"]:n.map}function su(i,t){var n=PN(i,t);return mk(n)?n:void 0}function yk(i){var t=c4.call(i,i5),n=i[i5];try{i[i5]=void 0;var l=!0}catch{}var a=Zx.call(i);return l&&(t?i[i5]=n:delete i[i5]),a}function vk(i){return typeof i.constructor=="function"&&!t_(i)?BN(Jx(i)):{}}function e_(i,t){var n=typeof i;return t=t==null?Vx:t,!!t&&(n=="number"||n!="symbol"&&TN.test(i))&&i>-1&&i%1==0&&i<t}function Mk(i,t,n){if(!u4(n))return!1;var l=typeof t;return(l=="number"?mu(n)&&e_(t,n.length):l=="string"&&t in n)?Ya(n[t],i):!1}function Ek(i){var t=typeof i;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?i!=="__proto__":i===null}function Tk(i){return!!Ox&&Ox in i}function t_(i){var t=i&&i.constructor,n=typeof t=="function"&&t.prototype||Ha;return i===n}function wk(i){var t=[];if(i!=null)for(var n in Object(i))t.push(n);return t}function Sk(i){return Zx.call(i)}function Ak(i,t,n){return t=Dx(t===void 0?i.length-1:t,0),function(){for(var l=arguments,a=-1,r=Dx(l.length-t,0),o=Array(r);++a<r;)o[a]=l[t+a];a=-1;for(var s=Array(t+1);++a<t;)s[a]=l[a];return s[t]=n(o),Yx(i,this,s)}}function iu(i,t){if(!(t==="constructor"&&typeof i[t]=="function")&&t!="__proto__")return i[t]}var Pk=Ck(qk);function Ck(i){var t=0,n=0;return function(){var l=DN(),a=JR-(l-n);if(n=l,a>0){if(++t>=ZR)return arguments[0]}else t=0;return i.apply(void 0,arguments)}}function Lk(i){if(i!=null){try{return Ga.call(i)}catch{}try{return i+""}catch{}}return""}function Ya(i,t){return i===t||i!==i&&t!==t}var lu=Bx(function(){return arguments}())?Bx:function(i){return O7(i)&&c4.call(i,"callee")&&!RN.call(i,"callee")},au=Array.isArray;function mu(i){return i!=null&&i_(i.length)&&!hu(i)}function Ik(i){return O7(i)&&mu(i)}var n_=kN||Dk;function hu(i){if(!u4(i))return!1;var t=ja(i);return t==Hx||t==nN||t==$R||t==rN}function i_(i){return typeof i=="number"&&i>-1&&i%1==0&&i<=Vx}function u4(i){var t=typeof i;return i!=null&&(t=="object"||t=="function")}function O7(i){return i!=null&&typeof i=="object"}function Ok(i){if(!O7(i)||ja(i)!=Gx)return!1;var t=Jx(i);if(t===null)return!0;var n=c4.call(t,"constructor")&&t.constructor;return typeof n=="function"&&n instanceof n&&Ga.call(n)==ON}var l_=Ix?AN(Ix):hk;function zk(i){return xk(i,a_(i))}var Rk=$x(function(i){return i.push(void 0,Qx),Yx(Nk,void 0,i)});function a_(i){return mu(i)?rk(i,!0):uk(i)}var Nk=_k(function(i,t,n,l){ou(i,t,n,l)});function kk(i){return function(){return i}}function r_(i){return i}function Dk(){return!1}i8.exports=Rk});var q_=g1((HQ,tr)=>{v();(function(i){var t=/^\\s+/,n=/\\s+$/,l=0,a=i.round,r=i.min,o=i.max,s=i.random;function m(S,N){if(S=S||"",N=N||{},S instanceof m)return S;if(!(this instanceof m))return new m(S,N);var P=h(S);this._originalInput=S,this._r=P.r,this._g=P.g,this._b=P.b,this._a=P.a,this._roundA=a(100*this._a)/100,this._format=N.format||P.format,this._gradientType=N.gradientType,this._r<1&&(this._r=a(this._r)),this._g<1&&(this._g=a(this._g)),this._b<1&&(this._b=a(this._b)),this._ok=P.ok,this._tc_id=l++}m.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var S=this.toRgb();return(S.r*299+S.g*587+S.b*114)/1e3},getLuminance:function(){var S=this.toRgb(),N,P,t1,s1,d1,v1;return N=S.r/255,P=S.g/255,t1=S.b/255,N<=.03928?s1=N/12.92:s1=i.pow((N+.055)/1.055,2.4),P<=.03928?d1=P/12.92:d1=i.pow((P+.055)/1.055,2.4),t1<=.03928?v1=t1/12.92:v1=i.pow((t1+.055)/1.055,2.4),.2126*s1+.7152*d1+.0722*v1},setAlpha:function(S){return this._a=K(S),this._roundA=a(100*this._a)/100,this},toHsv:function(){var S=d(this._r,this._g,this._b);return{h:S.h*360,s:S.s,v:S.v,a:this._a}},toHsvString:function(){var S=d(this._r,this._g,this._b),N=a(S.h*360),P=a(S.s*100),t1=a(S.v*100);return this._a==1?"hsv("+N+", "+P+"%, "+t1+"%)":"hsva("+N+", "+P+"%, "+t1+"%, "+this._roundA+")"},toHsl:function(){var S=c(this._r,this._g,this._b);return{h:S.h*360,s:S.s,l:S.l,a:this._a}},toHslString:function(){var S=c(this._r,this._g,this._b),N=a(S.h*360),P=a(S.s*100),t1=a(S.l*100);return this._a==1?"hsl("+N+", "+P+"%, "+t1+"%)":"hsla("+N+", "+P+"%, "+t1+"%, "+this._roundA+")"},toHex:function(S){return f(this._r,this._g,this._b,S)},toHexString:function(S){return"#"+this.toHex(S)},toHex8:function(S){return y(this._r,this._g,this._b,this._a,S)},toHex8String:function(S){return"#"+this.toHex8(S)},toRgb:function(){return{r:a(this._r),g:a(this._g),b:a(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+a(this._r)+", "+a(this._g)+", "+a(this._b)+")":"rgba("+a(this._r)+", "+a(this._g)+", "+a(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:a(a1(this._r,255)*100)+"%",g:a(a1(this._g,255)*100)+"%",b:a(a1(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+a(a1(this._r,255)*100)+"%, "+a(a1(this._g,255)*100)+"%, "+a(a1(this._b,255)*100)+"%)":"rgba("+a(a1(this._r,255)*100)+"%, "+a(a1(this._g,255)*100)+"%, "+a(a1(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){return this._a===0?"transparent":this._a<1?!1:j[f(this._r,this._g,this._b,!0)]||!1},toFilter:function(S){var N="#"+b(this._r,this._g,this._b,this._a),P=N,t1=this._gradientType?"GradientType = 1, ":"";if(S){var s1=m(S);P="#"+b(s1._r,s1._g,s1._b,s1._a)}return"progid:DXImageTransform.Microsoft.gradient("+t1+"startColorstr="+N+",endColorstr="+P+")"},toString:function(S){var N=!!S;S=S||this._format;var P=!1,t1=this._a<1&&this._a>=0,s1=!N&&t1&&(S==="hex"||S==="hex6"||S==="hex3"||S==="hex4"||S==="hex8"||S==="name");return s1?S==="name"&&this._a===0?this.toName():this.toRgbString():(S==="rgb"&&(P=this.toRgbString()),S==="prgb"&&(P=this.toPercentageRgbString()),(S==="hex"||S==="hex6")&&(P=this.toHexString()),S==="hex3"&&(P=this.toHexString(!0)),S==="hex4"&&(P=this.toHex8String(!0)),S==="hex8"&&(P=this.toHex8String()),S==="name"&&(P=this.toName()),S==="hsl"&&(P=this.toHslString()),S==="hsv"&&(P=this.toHsvString()),P||this.toHexString())},clone:function(){return m(this.toString())},_applyModification:function(S,N){var P=S.apply(null,[this].concat([].slice.call(N)));return this._r=P._r,this._g=P._g,this._b=P._b,this.setAlpha(P._a),this},lighten:function(){return this._applyModification(E,arguments)},brighten:function(){return this._applyModification(O,arguments)},darken:function(){return this._applyModification(z,arguments)},desaturate:function(){return this._applyModification(g,arguments)},saturate:function(){return this._applyModification(A,arguments)},greyscale:function(){return this._applyModification(T,arguments)},spin:function(){return this._applyModification(H,arguments)},_applyCombination:function(S,N){return S.apply(null,[this].concat([].slice.call(N)))},analogous:function(){return this._applyCombination(V,arguments)},complement:function(){return this._applyCombination(J,arguments)},monochromatic:function(){return this._applyCombination(W,arguments)},splitcomplement:function(){return this._applyCombination(R,arguments)},triad:function(){return this._applyCombination(F,arguments)},tetrad:function(){return this._applyCombination(w,arguments)}},m.fromRatio=function(S,N){if(typeof S=="object"){var P={};for(var t1 in S)S.hasOwnProperty(t1)&&(t1==="a"?P[t1]=S[t1]:P[t1]=F1(S[t1]));S=P}return m(S,N)};function h(S){var N={r:0,g:0,b:0},P=1,t1=null,s1=null,d1=null,v1=!1,z1=!1;return typeof S=="string"&&(S=O1(S)),typeof S=="object"&&(P1(S.r)&&P1(S.g)&&P1(S.b)?(N=u(S.r,S.g,S.b),v1=!0,z1=String(S.r).substr(-1)==="%"?"prgb":"rgb"):P1(S.h)&&P1(S.s)&&P1(S.v)?(t1=F1(S.s),s1=F1(S.v),N=p(S.h,t1,s1),v1=!0,z1="hsv"):P1(S.h)&&P1(S.s)&&P1(S.l)&&(t1=F1(S.s),d1=F1(S.l),N=q(S.h,t1,d1),v1=!0,z1="hsl"),S.hasOwnProperty("a")&&(P=S.a)),P=K(P),{ok:v1,format:S.format||z1,r:r(255,o(N.r,0)),g:r(255,o(N.g,0)),b:r(255,o(N.b,0)),a:P}}function u(S,N,P){return{r:a1(S,255)*255,g:a1(N,255)*255,b:a1(P,255)*255}}function c(S,N,P){S=a1(S,255),N=a1(N,255),P=a1(P,255);var t1=o(S,N,P),s1=r(S,N,P),d1,v1,z1=(t1+s1)/2;if(t1==s1)d1=v1=0;else{var Y1=t1-s1;switch(v1=z1>.5?Y1/(2-t1-s1):Y1/(t1+s1),t1){case S:d1=(N-P)/Y1+(N<P?6:0);break;case N:d1=(P-S)/Y1+2;break;case P:d1=(S-N)/Y1+4;break}d1/=6}return{h:d1,s:v1,l:z1}}function q(S,N,P){var t1,s1,d1;S=a1(S,360),N=a1(N,100),P=a1(P,100);function v1(D,I,m1){return m1<0&&(m1+=1),m1>1&&(m1-=1),m1<1/6?D+(I-D)*6*m1:m1<1/2?I:m1<2/3?D+(I-D)*(2/3-m1)*6:D}if(N===0)t1=s1=d1=P;else{var z1=P<.5?P*(1+N):P+N-P*N,Y1=2*P-z1;t1=v1(Y1,z1,S+1/3),s1=v1(Y1,z1,S),d1=v1(Y1,z1,S-1/3)}return{r:t1*255,g:s1*255,b:d1*255}}function d(S,N,P){S=a1(S,255),N=a1(N,255),P=a1(P,255);var t1=o(S,N,P),s1=r(S,N,P),d1,v1,z1=t1,Y1=t1-s1;if(v1=t1===0?0:Y1/t1,t1==s1)d1=0;else{switch(t1){case S:d1=(N-P)/Y1+(N<P?6:0);break;case N:d1=(P-S)/Y1+2;break;case P:d1=(S-N)/Y1+4;break}d1/=6}return{h:d1,s:v1,v:z1}}function p(S,N,P){S=a1(S,360)*6,N=a1(N,100),P=a1(P,100);var t1=i.floor(S),s1=S-t1,d1=P*(1-N),v1=P*(1-s1*N),z1=P*(1-(1-s1)*N),Y1=t1%6,D=[P,v1,d1,d1,z1,P][Y1],I=[z1,P,P,v1,d1,d1][Y1],m1=[d1,d1,z1,P,P,v1][Y1];return{r:D*255,g:I*255,b:m1*255}}function f(S,N,P,t1){var s1=[X1(a(S).toString(16)),X1(a(N).toString(16)),X1(a(P).toString(16))];return t1&&s1[0].charAt(0)==s1[0].charAt(1)&&s1[1].charAt(0)==s1[1].charAt(1)&&s1[2].charAt(0)==s1[2].charAt(1)?s1[0].charAt(0)+s1[1].charAt(0)+s1[2].charAt(0):s1.join("")}function y(S,N,P,t1,s1){var d1=[X1(a(S).toString(16)),X1(a(N).toString(16)),X1(a(P).toString(16)),X1(i1(t1))];return s1&&d1[0].charAt(0)==d1[0].charAt(1)&&d1[1].charAt(0)==d1[1].charAt(1)&&d1[2].charAt(0)==d1[2].charAt(1)&&d1[3].charAt(0)==d1[3].charAt(1)?d1[0].charAt(0)+d1[1].charAt(0)+d1[2].charAt(0)+d1[3].charAt(0):d1.join("")}function b(S,N,P,t1){var s1=[X1(i1(t1)),X1(a(S).toString(16)),X1(a(N).toString(16)),X1(a(P).toString(16))];return s1.join("")}m.equals=function(S,N){return!S||!N?!1:m(S).toRgbString()==m(N).toRgbString()},m.random=function(){return m.fromRatio({r:s(),g:s(),b:s()})};function g(S,N){N=N===0?0:N||10;var P=m(S).toHsl();return P.s-=N/100,P.s=x1(P.s),m(P)}function A(S,N){N=N===0?0:N||10;var P=m(S).toHsl();return P.s+=N/100,P.s=x1(P.s),m(P)}function T(S){return m(S).desaturate(100)}function E(S,N){N=N===0?0:N||10;var P=m(S).toHsl();return P.l+=N/100,P.l=x1(P.l),m(P)}function O(S,N){N=N===0?0:N||10;var P=m(S).toRgb();return P.r=o(0,r(255,P.r-a(255*-(N/100)))),P.g=o(0,r(255,P.g-a(255*-(N/100)))),P.b=o(0,r(255,P.b-a(255*-(N/100)))),m(P)}function z(S,N){N=N===0?0:N||10;var P=m(S).toHsl();return P.l-=N/100,P.l=x1(P.l),m(P)}function H(S,N){var P=m(S).toHsl(),t1=(P.h+N)%360;return P.h=t1<0?360+t1:t1,m(P)}function J(S){var N=m(S).toHsl();return N.h=(N.h+180)%360,m(N)}function F(S){var N=m(S).toHsl(),P=N.h;return[m(S),m({h:(P+120)%360,s:N.s,l:N.l}),m({h:(P+240)%360,s:N.s,l:N.l})]}function w(S){var N=m(S).toHsl(),P=N.h;return[m(S),m({h:(P+90)%360,s:N.s,l:N.l}),m({h:(P+180)%360,s:N.s,l:N.l}),m({h:(P+270)%360,s:N.s,l:N.l})]}function R(S){var N=m(S).toHsl(),P=N.h;return[m(S),m({h:(P+72)%360,s:N.s,l:N.l}),m({h:(P+216)%360,s:N.s,l:N.l})]}function V(S,N,P){N=N||6,P=P||30;var t1=m(S).toHsl(),s1=360/P,d1=[m(S)];for(t1.h=(t1.h-(s1*N>>1)+720)%360;--N;)t1.h=(t1.h+s1)%360,d1.push(m(t1));return d1}function W(S,N){N=N||6;for(var P=m(S).toHsv(),t1=P.h,s1=P.s,d1=P.v,v1=[],z1=1/N;N--;)v1.push(m({h:t1,s:s1,v:d1})),d1=(d1+z1)%1;return v1}m.mix=function(S,N,P){P=P===0?0:P||50;var t1=m(S).toRgb(),s1=m(N).toRgb(),d1=P/100,v1={r:(s1.r-t1.r)*d1+t1.r,g:(s1.g-t1.g)*d1+t1.g,b:(s1.b-t1.b)*d1+t1.b,a:(s1.a-t1.a)*d1+t1.a};return m(v1)},m.readability=function(S,N){var P=m(S),t1=m(N);return(i.max(P.getLuminance(),t1.getLuminance())+.05)/(i.min(P.getLuminance(),t1.getLuminance())+.05)},m.isReadable=function(S,N,P){var t1=m.readability(S,N),s1,d1;switch(d1=!1,s1=te(P),s1.level+s1.size){case"AAsmall":case"AAAlarge":d1=t1>=4.5;break;case"AAlarge":d1=t1>=3;break;case"AAAsmall":d1=t1>=7;break}return d1},m.mostReadable=function(S,N,P){var t1=null,s1=0,d1,v1,z1,Y1;P=P||{},v1=P.includeFallbackColors,z1=P.level,Y1=P.size;for(var D=0;D<N.length;D++)d1=m.readability(S,N[D]),d1>s1&&(s1=d1,t1=m(N[D]));return m.isReadable(S,t1,{level:z1,size:Y1})||!v1?t1:(P.includeFallbackColors=!1,m.mostReadable(S,["#fff","#000"],P))};var X=m.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},j=m.hexNames=$(X);function $(S){var N={};for(var P in S)S.hasOwnProperty(P)&&(N[S[P]]=P);return N}function K(S){return S=parseFloat(S),(isNaN(S)||S<0||S>1)&&(S=1),S}function a1(S,N){b1(S)&&(S="100%");var P=k1(S);return S=r(N,o(0,parseFloat(S))),P&&(S=parseInt(S*N,10)/100),i.abs(S-N)<1e-6?1:S%N/parseFloat(N)}function x1(S){return r(1,o(0,S))}function l1(S){return parseInt(S,16)}function b1(S){return typeof S=="string"&&S.indexOf(".")!=-1&&parseFloat(S)===1}function k1(S){return typeof S=="string"&&S.indexOf("%")!=-1}function X1(S){return S.length==1?"0"+S:""+S}function F1(S){return S<=1&&(S=S*100+"%"),S}function i1(S){return i.round(parseFloat(S)*255).toString(16)}function C1(S){return l1(S)/255}var A1=function(){var S="[-\\\\+]?\\\\d+%?",N="[-\\\\+]?\\\\d*\\\\.\\\\d+%?",P="(?:"+N+")|(?:"+S+")",t1="[\\\\s|\\\\(]+("+P+")[,|\\\\s]+("+P+")[,|\\\\s]+("+P+")\\\\s*\\\\)?",s1="[\\\\s|\\\\(]+("+P+")[,|\\\\s]+("+P+")[,|\\\\s]+("+P+")[,|\\\\s]+("+P+")\\\\s*\\\\)?";return{CSS_UNIT:new RegExp(P),rgb:new RegExp("rgb"+t1),rgba:new RegExp("rgba"+s1),hsl:new RegExp("hsl"+t1),hsla:new RegExp("hsla"+s1),hsv:new RegExp("hsv"+t1),hsva:new RegExp("hsva"+s1),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}}();function P1(S){return!!A1.CSS_UNIT.exec(S)}function O1(S){S=S.replace(t,"").replace(n,"").toLowerCase();var N=!1;if(X[S])S=X[S],N=!0;else if(S=="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var P;return(P=A1.rgb.exec(S))?{r:P[1],g:P[2],b:P[3]}:(P=A1.rgba.exec(S))?{r:P[1],g:P[2],b:P[3],a:P[4]}:(P=A1.hsl.exec(S))?{h:P[1],s:P[2],l:P[3]}:(P=A1.hsla.exec(S))?{h:P[1],s:P[2],l:P[3],a:P[4]}:(P=A1.hsv.exec(S))?{h:P[1],s:P[2],v:P[3]}:(P=A1.hsva.exec(S))?{h:P[1],s:P[2],v:P[3],a:P[4]}:(P=A1.hex8.exec(S))?{r:l1(P[1]),g:l1(P[2]),b:l1(P[3]),a:C1(P[4]),format:N?"name":"hex8"}:(P=A1.hex6.exec(S))?{r:l1(P[1]),g:l1(P[2]),b:l1(P[3]),format:N?"name":"hex"}:(P=A1.hex4.exec(S))?{r:l1(P[1]+""+P[1]),g:l1(P[2]+""+P[2]),b:l1(P[3]+""+P[3]),a:C1(P[4]+""+P[4]),format:N?"name":"hex8"}:(P=A1.hex3.exec(S))?{r:l1(P[1]+""+P[1]),g:l1(P[2]+""+P[2]),b:l1(P[3]+""+P[3]),format:N?"name":"hex"}:!1}function te(S){var N,P;return S=S||{level:"AA",size:"small"},N=(S.level||"AA").toUpperCase(),P=(S.size||"small").toLowerCase(),N!=="AA"&&N!=="AAA"&&(N="AA"),P!=="small"&&P!=="large"&&(P="small"),{level:N,size:P}}typeof tr<"u"&&tr.exports?tr.exports=m:typeof define=="function"&&define.amd?define(function(){return m}):window.tinycolor=m})(Math)});var P_=g1((N11,A_)=>{"use strict";v();function $k(i,t){if(!(i instanceof t))throw new TypeError("Cannot call a class as a function")}function S_(i,t){for(var n=0;n<t.length;n++){var l=t[n];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(i,l.key,l)}}function Qk(i,t,n){return t&&S_(i.prototype,t),n&&S_(i,n),i}var eD=function(){function i(){var t=arguments.length>0&&arguments[0]!==void 0?arguments[0]:{},n=t.R,l=n===void 0?1:n,a=t.Q,r=a===void 0?1:a,o=t.A,s=o===void 0?1:o,m=t.B,h=m===void 0?0:m,u=t.C,c=u===void 0?1:u;$k(this,i),this.R=l,this.Q=r,this.A=s,this.C=c,this.B=h,this.cov=NaN,this.x=NaN}return Qk(i,[{key:"filter",value:function(n){var l=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0;if(isNaN(this.x))this.x=1/this.C*n,this.cov=1/this.C*this.Q*(1/this.C);else{var a=this.predict(l),r=this.uncertainty(),o=r*this.C*(1/(this.C*r*this.C+this.Q));this.x=a+o*(n-this.C*a),this.cov=r-o*this.C*r}return this.x}},{key:"predict",value:function(){var n=arguments.length>0&&arguments[0]!==void 0?arguments[0]:0;return this.A*this.x+this.B*n}},{key:"uncertainty",value:function(){return this.A*this.cov*this.A+this.R}},{key:"lastMeasurement",value:function(){return this.x}},{key:"setMeasurementNoise",value:function(n){this.Q=n}},{key:"setProcessNoise",value:function(n){this.R=n}}]),i}();A_.exports=eD});var Sg=g1((F21,_r)=>{v();(function(){"use strict";function i(o,s){var m=o.x-s.x,h=o.y-s.y;return m*m+h*h}function t(o,s,m){var h=s.x,u=s.y,c=m.x-h,q=m.y-u;if(c!==0||q!==0){var d=((o.x-h)*c+(o.y-u)*q)/(c*c+q*q);d>1?(h=m.x,u=m.y):d>0&&(h+=c*d,u+=q*d)}return c=o.x-h,q=o.y-u,c*c+q*q}function n(o,s){for(var m=o[0],h=[m],u,c=1,q=o.length;c<q;c++)u=o[c],i(u,m)>s&&(h.push(u),m=u);return m!==u&&h.push(u),h}function l(o,s,m,h,u){for(var c=h,q,d=s+1;d<m;d++){var p=t(o[d],o[s],o[m]);p>c&&(q=d,c=p)}c>h&&(q-s>1&&l(o,s,q,h,u),u.push(o[q]),m-q>1&&l(o,q,m,h,u))}function a(o,s){var m=o.length-1,h=[o[0]];return l(o,0,m,s,h),h.push(o[m]),h}function r(o,s,m){if(o.length<=2)return o;var h=s!==void 0?s*s:1;return o=m?o:n(o,h),o=a(o,h),o}typeof define=="function"&&define.amd?define(function(){return r}):typeof _r<"u"?(_r.exports=r,_r.exports.default=r):typeof self<"u"?self.simplify=r:window.simplify=r})()});var Rg=g1((_31,yr)=>{"use strict";v();yr.exports=function(t){if(!Array.isArray(t))throw new TypeError("array-unique expects an array.");for(var n=t.length,l=-1;l++<n;)for(var a=l+1;a<t.length;++a)t[l]===t[a]&&t.splice(a--,1);return t};yr.exports.immutable=function(t){if(!Array.isArray(t))throw new TypeError("array-unique expects an array.");for(var n=t.length,l=new Array(n),a=0;a<n;a++)l[a]=t[a];return yr.exports(l)}});var hy=g1((pc,fc)=>{v();(function(i,t){typeof pc=="object"&&typeof fc<"u"?fc.exports=t():typeof define=="function"&&define.amd?define(t):i.Stats=t()})(pc,function(){var i=function(){function t(c){return a.appendChild(c.dom),c}function n(c){for(var q=0;q<a.children.length;q++)a.children[q].style.display=q===c?"block":"none";l=c}var l=0,a=document.createElement("div");a.style.cssText="position:fixed;top:0;left:0;cursor:pointer;opacity:0.9;z-index:10000",a.addEventListener("click",function(c){c.preventDefault(),n(++l%a.children.length)},!1);var r=(performance||Date).now(),o=r,s=0,m=t(new i.Panel("FPS","#0ff","#002")),h=t(new i.Panel("MS","#0f0","#020"));if(self.performance&&self.performance.memory)var u=t(new i.Panel("MB","#f08","#201"));return n(0),{REVISION:16,dom:a,addPanel:t,showPanel:n,begin:function(){r=(performance||Date).now()},end:function(){s++;var c=(performance||Date).now();if(h.update(c-r,200),c>o+1e3&&(m.update(1e3*s/(c-o),100),o=c,s=0,u)){var q=performance.memory;u.update(q.usedJSHeapSize/1048576,q.jsHeapSizeLimit/1048576)}return c},update:function(){r=this.end()},domElement:a,setMode:n}};return i.Panel=function(t,n,l){var a=1/0,r=0,o=Math.round,s=o(window.devicePixelRatio||1),m=80*s,h=48*s,u=3*s,c=2*s,q=3*s,d=15*s,p=74*s,f=30*s,y=document.createElement("canvas");y.width=m,y.height=h,y.style.cssText="width:80px;height:48px";var b=y.getContext("2d");return b.font="bold "+9*s+"px Helvetica,Arial,sans-serif",b.textBaseline="top",b.fillStyle=l,b.fillRect(0,0,m,h),b.fillStyle=n,b.fillText(t,u,c),b.fillRect(q,d,p,f),b.fillStyle=l,b.globalAlpha=.9,b.fillRect(q,d,p,f),{dom:y,update:function(g,A){a=Math.min(a,g),r=Math.max(r,g),b.fillStyle=l,b.globalAlpha=1,b.fillRect(0,0,m,d),b.fillStyle=n,b.fillText(o(g)+" "+t+" ("+o(a)+"-"+o(r)+")",u,c),b.drawImage(y,q+s,d,p-s,f,q,d,p-s,f),b.fillRect(q+p-s,d,s,f),b.fillStyle=l,b.globalAlpha=.9,b.fillRect(q+p-s,d,s,o((1-g/A)*f))}}},i})});var vy=g1((s61,yy)=>{v();var fy=9007199254740991,CB="[object Arguments]",LB="[object Function]",IB="[object GeneratorFunction]",OB=/^(?:0|[1-9]\\d*)$/;function by(i,t,n){switch(n.length){case 0:return i.call(t);case 1:return i.call(t,n[0]);case 2:return i.call(t,n[0],n[1]);case 3:return i.call(t,n[0],n[1],n[2])}return i.apply(t,n)}function zB(i,t){for(var n=-1,l=Array(i);++n<i;)l[n]=t(n);return l}var ci=Object.prototype,qi=ci.hasOwnProperty,xy=ci.toString,RB=ci.propertyIsEnumerable,py=Math.max;function NB(i,t){var n=jB(i)||WB(i)?zB(i.length,String):[],l=n.length,a=!!l;for(var r in i)(t||qi.call(i,r))&&!(a&&(r=="length"||gy(r,l)))&&n.push(r);return n}function kB(i,t,n,l){return i===void 0||gc(i,ci[n])&&!qi.call(l,n)?t:i}function DB(i,t,n){var l=i[t];(!(qi.call(i,t)&&gc(l,n))||n===void 0&&!(t in i))&&(i[t]=n)}function BB(i){if(!vc(i))return GB(i);var t=HB(i),n=[];for(var l in i)l=="constructor"&&(t||!qi.call(i,l))||n.push(l);return n}function _y(i,t){return t=py(t===void 0?i.length-1:t,0),function(){for(var n=arguments,l=-1,a=py(n.length-t,0),r=Array(a);++l<a;)r[l]=n[t+l];l=-1;for(var o=Array(t+1);++l<t;)o[l]=n[l];return o[t]=r,by(i,this,o)}}function FB(i,t,n,l){n||(n={});for(var a=-1,r=t.length;++a<r;){var o=t[a],s=l?l(n[o],i[o],o,n,i):void 0;DB(n,o,s===void 0?i[o]:s)}return n}function VB(i){return _y(function(t,n){var l=-1,a=n.length,r=a>1?n[a-1]:void 0,o=a>2?n[2]:void 0;for(r=i.length>3&&typeof r=="function"?(a--,r):void 0,o&&UB(n[0],n[1],o)&&(r=a<3?void 0:r,a=1),t=Object(t);++l<a;){var s=n[l];s&&i(t,s,l,r)}return t})}function gy(i,t){return t=t==null?fy:t,!!t&&(typeof i=="number"||OB.test(i))&&i>-1&&i%1==0&&i<t}function UB(i,t,n){if(!vc(n))return!1;var l=typeof t;return(l=="number"?yc(n)&&gy(t,n.length):l=="string"&&t in n)?gc(n[t],i):!1}function HB(i){var t=i&&i.constructor,n=typeof t=="function"&&t.prototype||ci;return i===n}function GB(i){var t=[];if(i!=null)for(var n in Object(i))t.push(n);return t}function gc(i,t){return i===t||i!==i&&t!==t}function WB(i){return XB(i)&&qi.call(i,"callee")&&(!RB.call(i,"callee")||xy.call(i)==CB)}var jB=Array.isArray;function yc(i){return i!=null&&ZB(i.length)&&!YB(i)}function XB(i){return JB(i)&&yc(i)}function YB(i){var t=vc(i)?xy.call(i):"";return t==LB||t==IB}function ZB(i){return typeof i=="number"&&i>-1&&i%1==0&&i<=fy}function vc(i){var t=typeof i;return!!i&&(t=="object"||t=="function")}function JB(i){return!!i&&typeof i=="object"}var KB=VB(function(i,t,n,l){FB(t,QB(t),i,l)}),$B=_y(function(i){return i.push(void 0,kB),by(KB,void 0,i)});function QB(i){return yc(i)?NB(i,!0):BB(i)}yy.exports=$B});var Iy=g1((h61,di)=>{"use strict";v();var eF=!1,_5=!1,Ty=!0,wy=!1,x={},Sy=!1;typeof di<"u"&&di.exports?(di.exports=x,Sy=!0):typeof document<"u"?window.ClipperLib=x:self.ClipperLib=x;var Rr;Sy?(xt="chrome",Rr="Netscape"):(xt=navigator.userAgent.toString().toLowerCase(),Rr=navigator.appName);var xt,xe={};xt.indexOf("chrome")!=-1&&xt.indexOf("chromium")==-1?xe.chrome=1:xe.chrome=0;xt.indexOf("chromium")!=-1?xe.chromium=1:xe.chromium=0;xt.indexOf("safari")!=-1&&xt.indexOf("chrome")==-1&&xt.indexOf("chromium")==-1?xe.safari=1:xe.safari=0;xt.indexOf("firefox")!=-1?xe.firefox=1:xe.firefox=0;xt.indexOf("firefox/17")!=-1?xe.firefox17=1:xe.firefox17=0;xt.indexOf("firefox/15")!=-1?xe.firefox15=1:xe.firefox15=0;xt.indexOf("firefox/3")!=-1?xe.firefox3=1:xe.firefox3=0;xt.indexOf("opera")!=-1?xe.opera=1:xe.opera=0;xt.indexOf("msie 10")!=-1?xe.msie10=1:xe.msie10=0;xt.indexOf("msie 9")!=-1?xe.msie9=1:xe.msie9=0;xt.indexOf("msie 8")!=-1?xe.msie8=1:xe.msie8=0;xt.indexOf("msie 7")!=-1?xe.msie7=1:xe.msie7=0;xt.indexOf("msie ")!=-1?xe.msie=1:xe.msie=0;x.biginteger_used=null;var M6,tF=0xdeadbeefcafe,My=(tF&16777215)==15715070;function y1(i,t,n){x.biginteger_used=1,i!=null&&(typeof i=="number"&&typeof t>"u"?this.fromInt(i):typeof i=="number"?this.fromNumber(i,t,n):t==null&&typeof i!="string"?this.fromString(i,256):this.fromString(i,t))}function _e(){return new y1(null)}function nF(i,t,n,l,a,r){for(;--r>=0;){var o=t*this[i++]+n[l]+a;a=Math.floor(o/67108864),n[l++]=o&67108863}return a}function iF(i,t,n,l,a,r){for(var o=t&32767,s=t>>15;--r>=0;){var m=this[i]&32767,h=this[i++]>>15,u=s*m+h*o;m=o*m+((u&32767)<<15)+n[l]+(a&1073741823),a=(m>>>30)+(u>>>15)+s*h+(a>>>30),n[l++]=m&1073741823}return a}function lF(i,t,n,l,a,r){for(var o=t&16383,s=t>>14;--r>=0;){var m=this[i]&16383,h=this[i++]>>14,u=s*m+h*o;m=o*m+((u&16383)<<14)+n[l]+a,a=(m>>28)+(u>>14)+s*h,n[l++]=m&268435455}return a}My&&Rr=="Microsoft Internet Explorer"?(y1.prototype.am=iF,M6=30):My&&Rr!="Netscape"?(y1.prototype.am=nF,M6=26):(y1.prototype.am=lF,M6=28);y1.prototype.DB=M6;y1.prototype.DM=(1<<M6)-1;y1.prototype.DV=1<<M6;var Mc=52;y1.prototype.FV=Math.pow(2,Mc);y1.prototype.F1=Mc-M6;y1.prototype.F2=2*M6-Mc;var aF="0123456789abcdefghijklmnopqrstuvwxyz",kr=new Array,M8,N2;M8="0".charCodeAt(0);for(N2=0;N2<=9;++N2)kr[M8++]=N2;M8="a".charCodeAt(0);for(N2=10;N2<36;++N2)kr[M8++]=N2;M8="A".charCodeAt(0);for(N2=10;N2<36;++N2)kr[M8++]=N2;function Ey(i){return aF.charAt(i)}function Ay(i,t){var n=kr[i.charCodeAt(t)];return n==null?-1:n}function rF(i){for(var t=this.t-1;t>=0;--t)i[t]=this[t];i.t=this.t,i.s=this.s}function oF(i){this.t=1,this.s=i<0?-1:0,i>0?this[0]=i:i<-1?this[0]=i+this.DV:this.t=0}function v6(i){var t=_e();return t.fromInt(i),t}function sF(i,t){var n;if(t==16)n=4;else if(t==8)n=3;else if(t==256)n=8;else if(t==2)n=1;else if(t==32)n=5;else if(t==4)n=2;else{this.fromRadix(i,t);return}this.t=0,this.s=0;for(var l=i.length,a=!1,r=0;--l>=0;){var o=n==8?i[l]&255:Ay(i,l);if(o<0){i.charAt(l)=="-"&&(a=!0);continue}a=!1,r==0?this[this.t++]=o:r+n>this.DB?(this[this.t-1]|=(o&(1<<this.DB-r)-1)<<r,this[this.t++]=o>>this.DB-r):this[this.t-1]|=o<<r,r+=n,r>=this.DB&&(r-=this.DB)}n==8&&i[0]&128&&(this.s=-1,r>0&&(this[this.t-1]|=(1<<this.DB-r)-1<<r)),this.clamp(),a&&y1.ZERO.subTo(this,this)}function mF(){for(var i=this.s&this.DM;this.t>0&&this[this.t-1]==i;)--this.t}function hF(i){if(this.s<0)return"-"+this.negate().toString(i);var t;if(i==16)t=4;else if(i==8)t=3;else if(i==2)t=1;else if(i==32)t=5;else if(i==4)t=2;else return this.toRadix(i);var n=(1<<t)-1,l,a=!1,r="",o=this.t,s=this.DB-o*this.DB%t;if(o-- >0)for(s<this.DB&&(l=this[o]>>s)>0&&(a=!0,r=Ey(l));o>=0;)s<t?(l=(this[o]&(1<<s)-1)<<t-s,l|=this[--o]>>(s+=this.DB-t)):(l=this[o]>>(s-=t)&n,s<=0&&(s+=this.DB,--o)),l>0&&(a=!0),a&&(r+=Ey(l));return a?r:"0"}function uF(){var i=_e();return y1.ZERO.subTo(this,i),i}function cF(){return this.s<0?this.negate():this}function qF(i){var t=this.s-i.s;if(t!=0)return t;var n=this.t;if(t=n-i.t,t!=0)return this.s<0?-t:t;for(;--n>=0;)if((t=this[n]-i[n])!=0)return t;return 0}function Dr(i){var t=1,n;return(n=i>>>16)!=0&&(i=n,t+=16),(n=i>>8)!=0&&(i=n,t+=8),(n=i>>4)!=0&&(i=n,t+=4),(n=i>>2)!=0&&(i=n,t+=2),(n=i>>1)!=0&&(i=n,t+=1),t}function dF(){return this.t<=0?0:this.DB*(this.t-1)+Dr(this[this.t-1]^this.s&this.DM)}function pF(i,t){var n;for(n=this.t-1;n>=0;--n)t[n+i]=this[n];for(n=i-1;n>=0;--n)t[n]=0;t.t=this.t+i,t.s=this.s}function fF(i,t){for(var n=i;n<this.t;++n)t[n-i]=this[n];t.t=Math.max(this.t-i,0),t.s=this.s}function bF(i,t){var n=i%this.DB,l=this.DB-n,a=(1<<l)-1,r=Math.floor(i/this.DB),o=this.s<<n&this.DM,s;for(s=this.t-1;s>=0;--s)t[s+r+1]=this[s]>>l|o,o=(this[s]&a)<<n;for(s=r-1;s>=0;--s)t[s]=0;t[r]=o,t.t=this.t+r+1,t.s=this.s,t.clamp()}function xF(i,t){t.s=this.s;var n=Math.floor(i/this.DB);if(n>=this.t){t.t=0;return}var l=i%this.DB,a=this.DB-l,r=(1<<l)-1;t[0]=this[n]>>l;for(var o=n+1;o<this.t;++o)t[o-n-1]|=(this[o]&r)<<a,t[o-n]=this[o]>>l;l>0&&(t[this.t-n-1]|=(this.s&r)<<a),t.t=this.t-n,t.clamp()}function _F(i,t){for(var n=0,l=0,a=Math.min(i.t,this.t);n<a;)l+=this[n]-i[n],t[n++]=l&this.DM,l>>=this.DB;if(i.t<this.t){for(l-=i.s;n<this.t;)l+=this[n],t[n++]=l&this.DM,l>>=this.DB;l+=this.s}else{for(l+=this.s;n<i.t;)l-=i[n],t[n++]=l&this.DM,l>>=this.DB;l-=i.s}t.s=l<0?-1:0,l<-1?t[n++]=this.DV+l:l>0&&(t[n++]=l),t.t=n,t.clamp()}function gF(i,t){var n=this.abs(),l=i.abs(),a=n.t;for(t.t=a+l.t;--a>=0;)t[a]=0;for(a=0;a<l.t;++a)t[a+n.t]=n.am(0,l[a],t,a,0,n.t);t.s=0,t.clamp(),this.s!=i.s&&y1.ZERO.subTo(t,t)}function yF(i){for(var t=this.abs(),n=i.t=2*t.t;--n>=0;)i[n]=0;for(n=0;n<t.t-1;++n){var l=t.am(n,t[n],i,2*n,0,1);(i[n+t.t]+=t.am(n+1,2*t[n],i,2*n+1,l,t.t-n-1))>=t.DV&&(i[n+t.t]-=t.DV,i[n+t.t+1]=1)}i.t>0&&(i[i.t-1]+=t.am(n,t[n],i,2*n,0,1)),i.s=0,i.clamp()}function vF(i,t,n){var l=i.abs();if(!(l.t<=0)){var a=this.abs();if(a.t<l.t){t!=null&&t.fromInt(0),n!=null&&this.copyTo(n);return}n==null&&(n=_e());var r=_e(),o=this.s,s=i.s,m=this.DB-Dr(l[l.t-1]);m>0?(l.lShiftTo(m,r),a.lShiftTo(m,n)):(l.copyTo(r),a.copyTo(n));var h=r.t,u=r[h-1];if(u!=0){var c=u*(1<<this.F1)+(h>1?r[h-2]>>this.F2:0),q=this.FV/c,d=(1<<this.F1)/c,p=1<<this.F2,f=n.t,y=f-h,b=t==null?_e():t;for(r.dlShiftTo(y,b),n.compareTo(b)>=0&&(n[n.t++]=1,n.subTo(b,n)),y1.ONE.dlShiftTo(h,b),b.subTo(r,r);r.t<h;)r[r.t++]=0;for(;--y>=0;){var g=n[--f]==u?this.DM:Math.floor(n[f]*q+(n[f-1]+p)*d);if((n[f]+=r.am(0,g,n,y,0,h))<g)for(r.dlShiftTo(y,b),n.subTo(b,n);n[f]<--g;)n.subTo(b,n)}t!=null&&(n.drShiftTo(h,t),o!=s&&y1.ZERO.subTo(t,t)),n.t=h,n.clamp(),m>0&&n.rShiftTo(m,n),o<0&&y1.ZERO.subTo(n,n)}}}function MF(i){var t=_e();return this.abs().divRemTo(i,null,t),this.s<0&&t.compareTo(y1.ZERO)>0&&i.subTo(t,t),t}function g5(i){this.m=i}function EF(i){return i.s<0||i.compareTo(this.m)>=0?i.mod(this.m):i}function TF(i){return i}function wF(i){i.divRemTo(this.m,null,i)}function SF(i,t,n){i.multiplyTo(t,n),this.reduce(n)}function AF(i,t){i.squareTo(t),this.reduce(t)}g5.prototype.convert=EF;g5.prototype.revert=TF;g5.prototype.reduce=wF;g5.prototype.mulTo=SF;g5.prototype.sqrTo=AF;function PF(){if(this.t<1)return 0;var i=this[0];if(!(i&1))return 0;var t=i&3;return t=t*(2-(i&15)*t)&15,t=t*(2-(i&255)*t)&255,t=t*(2-((i&65535)*t&65535))&65535,t=t*(2-i*t%this.DV)%this.DV,t>0?this.DV-t:-t}function y5(i){this.m=i,this.mp=i.invDigit(),this.mpl=this.mp&32767,this.mph=this.mp>>15,this.um=(1<<i.DB-15)-1,this.mt2=2*i.t}function CF(i){var t=_e();return i.abs().dlShiftTo(this.m.t,t),t.divRemTo(this.m,null,t),i.s<0&&t.compareTo(y1.ZERO)>0&&this.m.subTo(t,t),t}function LF(i){var t=_e();return i.copyTo(t),this.reduce(t),t}function IF(i){for(;i.t<=this.mt2;)i[i.t++]=0;for(var t=0;t<this.m.t;++t){var n=i[t]&32767,l=n*this.mpl+((n*this.mph+(i[t]>>15)*this.mpl&this.um)<<15)&i.DM;for(n=t+this.m.t,i[n]+=this.m.am(0,l,i,t,0,this.m.t);i[n]>=i.DV;)i[n]-=i.DV,i[++n]++}i.clamp(),i.drShiftTo(this.m.t,i),i.compareTo(this.m)>=0&&i.subTo(this.m,i)}function OF(i,t){i.squareTo(t),this.reduce(t)}function zF(i,t,n){i.multiplyTo(t,n),this.reduce(n)}y5.prototype.convert=CF;y5.prototype.revert=LF;y5.prototype.reduce=IF;y5.prototype.mulTo=zF;y5.prototype.sqrTo=OF;function RF(){return(this.t>0?this[0]&1:this.s)==0}function NF(i,t){if(i>4294967295||i<1)return y1.ONE;var n=_e(),l=_e(),a=t.convert(this),r=Dr(i)-1;for(a.copyTo(n);--r>=0;)if(t.sqrTo(n,l),(i&1<<r)>0)t.mulTo(l,a,n);else{var o=n;n=l,l=o}return t.revert(n)}function kF(i,t){var n;return i<256||t.isEven()?n=new g5(t):n=new y5(t),this.exp(i,n)}y1.prototype.copyTo=rF;y1.prototype.fromInt=oF;y1.prototype.fromString=sF;y1.prototype.clamp=mF;y1.prototype.dlShiftTo=pF;y1.prototype.drShiftTo=fF;y1.prototype.lShiftTo=bF;y1.prototype.rShiftTo=xF;y1.prototype.subTo=_F;y1.prototype.multiplyTo=gF;y1.prototype.squareTo=yF;y1.prototype.divRemTo=vF;y1.prototype.invDigit=PF;y1.prototype.isEven=RF;y1.prototype.exp=NF;y1.prototype.toString=hF;y1.prototype.negate=uF;y1.prototype.abs=cF;y1.prototype.compareTo=qF;y1.prototype.bitLength=dF;y1.prototype.mod=MF;y1.prototype.modPowInt=kF;y1.ZERO=v6(0);y1.ONE=v6(1);function DF(){var i=_e();return this.copyTo(i),i}function BF(){if(this.s<0){if(this.t==1)return this[0]-this.DV;if(this.t==0)return-1}else{if(this.t==1)return this[0];if(this.t==0)return 0}return(this[1]&(1<<32-this.DB)-1)<<this.DB|this[0]}function FF(){return this.t==0?this.s:this[0]<<24>>24}function VF(){return this.t==0?this.s:this[0]<<16>>16}function UF(i){return Math.floor(Math.LN2*this.DB/Math.log(i))}function HF(){return this.s<0?-1:this.t<=0||this.t==1&&this[0]<=0?0:1}function GF(i){if(i==null&&(i=10),this.signum()==0||i<2||i>36)return"0";var t=this.chunkSize(i),n=Math.pow(i,t),l=v6(n),a=_e(),r=_e(),o="";for(this.divRemTo(l,a,r);a.signum()>0;)o=(n+r.intValue()).toString(i).substr(1)+o,a.divRemTo(l,a,r);return r.intValue().toString(i)+o}function WF(i,t){this.fromInt(0),t==null&&(t=10);for(var n=this.chunkSize(t),l=Math.pow(t,n),a=!1,r=0,o=0,s=0;s<i.length;++s){var m=Ay(i,s);if(m<0){i.charAt(s)=="-"&&this.signum()==0&&(a=!0);continue}o=t*o+m,++r>=n&&(this.dMultiply(l),this.dAddOffset(o,0),r=0,o=0)}r>0&&(this.dMultiply(Math.pow(t,r)),this.dAddOffset(o,0)),a&&y1.ZERO.subTo(this,this)}function jF(i,t,n){if(typeof t=="number")if(i<2)this.fromInt(1);else for(this.fromNumber(i,n),this.testBit(i-1)||this.bitwiseTo(y1.ONE.shiftLeft(i-1),Ec,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(t);)this.dAddOffset(2,0),this.bitLength()>i&&this.subTo(y1.ONE.shiftLeft(i-1),this);else{var l=new Array,a=i&7;l.length=(i>>3)+1,t.nextBytes(l),a>0?l[0]&=(1<<a)-1:l[0]=0,this.fromString(l,256)}}function XF(){var i=this.t,t=new Array;t[0]=this.s;var n=this.DB-i*this.DB%8,l,a=0;if(i-- >0)for(n<this.DB&&(l=this[i]>>n)!=(this.s&this.DM)>>n&&(t[a++]=l|this.s<<this.DB-n);i>=0;)n<8?(l=(this[i]&(1<<n)-1)<<8-n,l|=this[--i]>>(n+=this.DB-8)):(l=this[i]>>(n-=8)&255,n<=0&&(n+=this.DB,--i)),l&128&&(l|=-256),a==0&&(this.s&128)!=(l&128)&&++a,(a>0||l!=this.s)&&(t[a++]=l);return t}function YF(i){return this.compareTo(i)==0}function ZF(i){return this.compareTo(i)<0?this:i}function JF(i){return this.compareTo(i)>0?this:i}function KF(i,t,n){var l,a,r=Math.min(i.t,this.t);for(l=0;l<r;++l)n[l]=t(this[l],i[l]);if(i.t<this.t){for(a=i.s&this.DM,l=r;l<this.t;++l)n[l]=t(this[l],a);n.t=this.t}else{for(a=this.s&this.DM,l=r;l<i.t;++l)n[l]=t(a,i[l]);n.t=i.t}n.s=t(this.s,i.s),n.clamp()}function $F(i,t){return i&t}function QF(i){var t=_e();return this.bitwiseTo(i,$F,t),t}function Ec(i,t){return i|t}function eV(i){var t=_e();return this.bitwiseTo(i,Ec,t),t}function Py(i,t){return i^t}function tV(i){var t=_e();return this.bitwiseTo(i,Py,t),t}function Cy(i,t){return i&~t}function nV(i){var t=_e();return this.bitwiseTo(i,Cy,t),t}function iV(){for(var i=_e(),t=0;t<this.t;++t)i[t]=this.DM&~this[t];return i.t=this.t,i.s=~this.s,i}function lV(i){var t=_e();return i<0?this.rShiftTo(-i,t):this.lShiftTo(i,t),t}function aV(i){var t=_e();return i<0?this.lShiftTo(-i,t):this.rShiftTo(i,t),t}function rV(i){if(i==0)return-1;var t=0;return i&65535||(i>>=16,t+=16),i&255||(i>>=8,t+=8),i&15||(i>>=4,t+=4),i&3||(i>>=2,t+=2),i&1||++t,t}function oV(){for(var i=0;i<this.t;++i)if(this[i]!=0)return i*this.DB+rV(this[i]);return this.s<0?this.t*this.DB:-1}function sV(i){for(var t=0;i!=0;)i&=i-1,++t;return t}function mV(){for(var i=0,t=this.s&this.DM,n=0;n<this.t;++n)i+=sV(this[n]^t);return i}function hV(i){var t=Math.floor(i/this.DB);return t>=this.t?this.s!=0:(this[t]&1<<i%this.DB)!=0}function uV(i,t){var n=y1.ONE.shiftLeft(i);return this.bitwiseTo(n,t,n),n}function cV(i){return this.changeBit(i,Ec)}function qV(i){return this.changeBit(i,Cy)}function dV(i){return this.changeBit(i,Py)}function pV(i,t){for(var n=0,l=0,a=Math.min(i.t,this.t);n<a;)l+=this[n]+i[n],t[n++]=l&this.DM,l>>=this.DB;if(i.t<this.t){for(l+=i.s;n<this.t;)l+=this[n],t[n++]=l&this.DM,l>>=this.DB;l+=this.s}else{for(l+=this.s;n<i.t;)l+=i[n],t[n++]=l&this.DM,l>>=this.DB;l+=i.s}t.s=l<0?-1:0,l>0?t[n++]=l:l<-1&&(t[n++]=this.DV+l),t.t=n,t.clamp()}function fV(i){var t=_e();return this.addTo(i,t),t}function bV(i){var t=_e();return this.subTo(i,t),t}function xV(i){var t=_e();return this.multiplyTo(i,t),t}function _V(){var i=_e();return this.squareTo(i),i}function gV(i){var t=_e();return this.divRemTo(i,t,null),t}function yV(i){var t=_e();return this.divRemTo(i,null,t),t}function vV(i){var t=_e(),n=_e();return this.divRemTo(i,t,n),new Array(t,n)}function MV(i){this[this.t]=this.am(0,i-1,this,0,0,this.t),++this.t,this.clamp()}function EV(i,t){if(i!=0){for(;this.t<=t;)this[this.t++]=0;for(this[t]+=i;this[t]>=this.DV;)this[t]-=this.DV,++t>=this.t&&(this[this.t++]=0),++this[t]}}function pi(){}function Ly(i){return i}function TV(i,t,n){i.multiplyTo(t,n)}function wV(i,t){i.squareTo(t)}pi.prototype.convert=Ly;pi.prototype.revert=Ly;pi.prototype.mulTo=TV;pi.prototype.sqrTo=wV;function SV(i){return this.exp(i,new pi)}function AV(i,t,n){var l=Math.min(this.t+i.t,t);for(n.s=0,n.t=l;l>0;)n[--l]=0;var a;for(a=n.t-this.t;l<a;++l)n[l+this.t]=this.am(0,i[l],n,l,0,this.t);for(a=Math.min(i.t,t);l<a;++l)this.am(0,i[l],n,l,0,t-l);n.clamp()}function PV(i,t,n){--t;var l=n.t=this.t+i.t-t;for(n.s=0;--l>=0;)n[l]=0;for(l=Math.max(t-this.t,0);l<i.t;++l)n[this.t+l-t]=this.am(t-l,i[l],n,0,0,this.t+l-t);n.clamp(),n.drShiftTo(1,n)}function E8(i){this.r2=_e(),this.q3=_e(),y1.ONE.dlShiftTo(2*i.t,this.r2),this.mu=this.r2.divide(i),this.m=i}function CV(i){if(i.s<0||i.t>2*this.m.t)return i.mod(this.m);if(i.compareTo(this.m)<0)return i;var t=_e();return i.copyTo(t),this.reduce(t),t}function LV(i){return i}function IV(i){for(i.drShiftTo(this.m.t-1,this.r2),i.t>this.m.t+1&&(i.t=this.m.t+1,i.clamp()),this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3),this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);i.compareTo(this.r2)<0;)i.dAddOffset(1,this.m.t+1);for(i.subTo(this.r2,i);i.compareTo(this.m)>=0;)i.subTo(this.m,i)}function OV(i,t){i.squareTo(t),this.reduce(t)}function zV(i,t,n){i.multiplyTo(t,n),this.reduce(n)}E8.prototype.convert=CV;E8.prototype.revert=LV;E8.prototype.reduce=IV;E8.prototype.mulTo=zV;E8.prototype.sqrTo=OV;function RV(i,t){var n=i.bitLength(),l,a=v6(1),r;if(n<=0)return a;n<18?l=1:n<48?l=3:n<144?l=4:n<768?l=5:l=6,n<8?r=new g5(t):t.isEven()?r=new E8(t):r=new y5(t);var o=new Array,s=3,m=l-1,h=(1<<l)-1;if(o[1]=r.convert(this),l>1){var u=_e();for(r.sqrTo(o[1],u);s<=h;)o[s]=_e(),r.mulTo(u,o[s-2],o[s]),s+=2}var c=i.t-1,q,d=!0,p=_e(),f;for(n=Dr(i[c])-1;c>=0;){for(n>=m?q=i[c]>>n-m&h:(q=(i[c]&(1<<n+1)-1)<<m-n,c>0&&(q|=i[c-1]>>this.DB+n-m)),s=l;!(q&1);)q>>=1,--s;if((n-=s)<0&&(n+=this.DB,--c),d)o[q].copyTo(a),d=!1;else{for(;s>1;)r.sqrTo(a,p),r.sqrTo(p,a),s-=2;s>0?r.sqrTo(a,p):(f=a,a=p,p=f),r.mulTo(p,o[q],a)}for(;c>=0&&!(i[c]&1<<n);)r.sqrTo(a,p),f=a,a=p,p=f,--n<0&&(n=this.DB-1,--c)}return r.revert(a)}function NV(i){var t=this.s<0?this.negate():this.clone(),n=i.s<0?i.negate():i.clone();if(t.compareTo(n)<0){var l=t;t=n,n=l}var a=t.getLowestSetBit(),r=n.getLowestSetBit();if(r<0)return t;for(a<r&&(r=a),r>0&&(t.rShiftTo(r,t),n.rShiftTo(r,n));t.signum()>0;)(a=t.getLowestSetBit())>0&&t.rShiftTo(a,t),(a=n.getLowestSetBit())>0&&n.rShiftTo(a,n),t.compareTo(n)>=0?(t.subTo(n,t),t.rShiftTo(1,t)):(n.subTo(t,n),n.rShiftTo(1,n));return r>0&&n.lShiftTo(r,n),n}function kV(i){if(i<=0)return 0;var t=this.DV%i,n=this.s<0?i-1:0;if(this.t>0)if(t==0)n=this[0]%i;else for(var l=this.t-1;l>=0;--l)n=(t*n+this[l])%i;return n}function DV(i){var t=i.isEven();if(this.isEven()&&t||i.signum()==0)return y1.ZERO;for(var n=i.clone(),l=this.clone(),a=v6(1),r=v6(0),o=v6(0),s=v6(1);n.signum()!=0;){for(;n.isEven();)n.rShiftTo(1,n),t?((!a.isEven()||!r.isEven())&&(a.addTo(this,a),r.subTo(i,r)),a.rShiftTo(1,a)):r.isEven()||r.subTo(i,r),r.rShiftTo(1,r);for(;l.isEven();)l.rShiftTo(1,l),t?((!o.isEven()||!s.isEven())&&(o.addTo(this,o),s.subTo(i,s)),o.rShiftTo(1,o)):s.isEven()||s.subTo(i,s),s.rShiftTo(1,s);n.compareTo(l)>=0?(n.subTo(l,n),t&&a.subTo(o,a),r.subTo(s,r)):(l.subTo(n,l),t&&o.subTo(a,o),s.subTo(r,s))}if(l.compareTo(y1.ONE)!=0)return y1.ZERO;if(s.compareTo(i)>=0)return s.subtract(i);if(s.signum()<0)s.addTo(i,s);else return s;return s.signum()<0?s.add(i):s}var l2=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],BV=(1<<26)/l2[l2.length-1];function FV(i){var t,n=this.abs();if(n.t==1&&n[0]<=l2[l2.length-1]){for(t=0;t<l2.length;++t)if(n[0]==l2[t])return!0;return!1}if(n.isEven())return!1;for(t=1;t<l2.length;){for(var l=l2[t],a=t+1;a<l2.length&&l<BV;)l*=l2[a++];for(l=n.modInt(l);t<a;)if(l%l2[t++]==0)return!1}return n.millerRabin(i)}function VV(i){var t=this.subtract(y1.ONE),n=t.getLowestSetBit();if(n<=0)return!1;var l=t.shiftRight(n);i=i+1>>1,i>l2.length&&(i=l2.length);for(var a=_e(),r=0;r<i;++r){a.fromInt(l2[Math.floor(Math.random()*l2.length)]);var o=a.modPow(l,this);if(o.compareTo(y1.ONE)!=0&&o.compareTo(t)!=0){for(var s=1;s++<n&&o.compareTo(t)!=0;)if(o=o.modPowInt(2,this),o.compareTo(y1.ONE)==0)return!1;if(o.compareTo(t)!=0)return!1}}return!0}y1.prototype.chunkSize=UF;y1.prototype.toRadix=GF;y1.prototype.fromRadix=WF;y1.prototype.fromNumber=jF;y1.prototype.bitwiseTo=KF;y1.prototype.changeBit=uV;y1.prototype.addTo=pV;y1.prototype.dMultiply=MV;y1.prototype.dAddOffset=EV;y1.prototype.multiplyLowerTo=AV;y1.prototype.multiplyUpperTo=PV;y1.prototype.modInt=kV;y1.prototype.millerRabin=VV;y1.prototype.clone=DF;y1.prototype.intValue=BF;y1.prototype.byteValue=FF;y1.prototype.shortValue=VF;y1.prototype.signum=HF;y1.prototype.toByteArray=XF;y1.prototype.equals=YF;y1.prototype.min=ZF;y1.prototype.max=JF;y1.prototype.and=QF;y1.prototype.or=eV;y1.prototype.xor=tV;y1.prototype.andNot=nV;y1.prototype.not=iV;y1.prototype.shiftLeft=lV;y1.prototype.shiftRight=aV;y1.prototype.getLowestSetBit=oV;y1.prototype.bitCount=mV;y1.prototype.testBit=hV;y1.prototype.setBit=cV;y1.prototype.clearBit=qV;y1.prototype.flipBit=dV;y1.prototype.add=fV;y1.prototype.subtract=bV;y1.prototype.multiply=xV;y1.prototype.divide=gV;y1.prototype.remainder=yV;y1.prototype.divideAndRemainder=vV;y1.prototype.modPow=RV;y1.prototype.modInverse=DV;y1.prototype.pow=SV;y1.prototype.gcd=NV;y1.prototype.isProbablePrime=FV;y1.prototype.square=_V;var qe=y1;qe.prototype.IsNegative=function(){return this.compareTo(qe.ZERO)==-1};qe.op_Equality=function(i,t){return i.compareTo(t)==0};qe.op_Inequality=function(i,t){return i.compareTo(t)!=0};qe.op_GreaterThan=function(i,t){return i.compareTo(t)>0};qe.op_LessThan=function(i,t){return i.compareTo(t)<0};qe.op_Addition=function(i,t){return new qe(i).add(new qe(t))};qe.op_Subtraction=function(i,t){return new qe(i).subtract(new qe(t))};qe.Int128Mul=function(i,t){return new qe(i).multiply(new qe(t))};qe.op_Division=function(i,t){return i.divide(t)};qe.prototype.ToDouble=function(){return parseFloat(this.toString())};typeof Nr>"u"&&(Nr=function(i,t){var n;if(typeof Object.getOwnPropertyNames>"u"){for(n in t.prototype)(typeof i.prototype[n]>"u"||i.prototype[n]==Object.prototype[n])&&(i.prototype[n]=t.prototype[n]);for(n in t)typeof i[n]>"u"&&(i[n]=t[n]);i.$baseCtor=t}else{for(var l=Object.getOwnPropertyNames(t.prototype),a=0;a<l.length;a++)typeof Object.getOwnPropertyDescriptor(i.prototype,l[a])>"u"&&Object.defineProperty(i.prototype,l[a],Object.getOwnPropertyDescriptor(t.prototype,l[a]));for(n in t)typeof i[n]>"u"&&(i[n]=t[n]);i.$baseCtor=t}});var Nr;x.Path=function(){return[]};x.Paths=function(){return[]};x.DoublePoint=function(){var i=arguments;this.X=0,this.Y=0,i.length==1?(this.X=i[0].X,this.Y=i[0].Y):i.length==2&&(this.X=i[0],this.Y=i[1])};x.DoublePoint0=function(){this.X=0,this.Y=0};x.DoublePoint1=function(i){this.X=i.X,this.Y=i.Y};x.DoublePoint2=function(i,t){this.X=i,this.Y=t};x.PolyNode=function(){this.m_Parent=null,this.m_polygon=new x.Path,this.m_Index=0,this.m_jointype=0,this.m_endtype=0,this.m_Childs=[],this.IsOpen=!1};x.PolyNode.prototype.IsHoleNode=function(){for(var i=!0,t=this.m_Parent;t!==null;)i=!i,t=t.m_Parent;return i};x.PolyNode.prototype.ChildCount=function(){return this.m_Childs.length};x.PolyNode.prototype.Contour=function(){return this.m_polygon};x.PolyNode.prototype.AddChild=function(i){var t=this.m_Childs.length;this.m_Childs.push(i),i.m_Parent=this,i.m_Index=t};x.PolyNode.prototype.GetNext=function(){return this.m_Childs.length>0?this.m_Childs[0]:this.GetNextSiblingUp()};x.PolyNode.prototype.GetNextSiblingUp=function(){return this.m_Parent===null?null:this.m_Index==this.m_Parent.m_Childs.length-1?this.m_Parent.GetNextSiblingUp():this.m_Parent.m_Childs[this.m_Index+1]};x.PolyNode.prototype.Childs=function(){return this.m_Childs};x.PolyNode.prototype.Parent=function(){return this.m_Parent};x.PolyNode.prototype.IsHole=function(){return this.IsHoleNode()};x.PolyTree=function(){this.m_AllPolys=[],x.PolyNode.call(this)};x.PolyTree.prototype.Clear=function(){for(var i=0,t=this.m_AllPolys.length;i<t;i++)this.m_AllPolys[i]=null;this.m_AllPolys.length=0,this.m_Childs.length=0};x.PolyTree.prototype.GetFirst=function(){return this.m_Childs.length>0?this.m_Childs[0]:null};x.PolyTree.prototype.Total=function(){return this.m_AllPolys.length};Nr(x.PolyTree,x.PolyNode);x.Math_Abs_Int64=x.Math_Abs_Int32=x.Math_Abs_Double=function(i){return Math.abs(i)};x.Math_Max_Int32_Int32=function(i,t){return Math.max(i,t)};xe.msie||xe.opera||xe.safari?x.Cast_Int32=function(i){return i|0}:x.Cast_Int32=function(i){return~~i};xe.chrome?x.Cast_Int64=function(i){return i<-2147483648||i>2147483647?i<0?Math.ceil(i):Math.floor(i):~~i}:xe.firefox&&typeof Number.toInteger=="function"?x.Cast_Int64=function(i){return Number.toInteger(i)}:xe.msie7||xe.msie8?x.Cast_Int64=function(i){return parseInt(i,10)}:xe.msie?x.Cast_Int64=function(i){return i<-2147483648||i>2147483647?i<0?Math.ceil(i):Math.floor(i):i|0}:x.Cast_Int64=function(i){return i<0?Math.ceil(i):Math.floor(i)};x.Clear=function(i){i.length=0};x.PI=3.141592653589793;x.PI2=2*3.141592653589793;x.IntPoint=function(){var i=arguments,t=i.length;if(this.X=0,this.Y=0,_5)if(this.Z=0,t==3)this.X=i[0],this.Y=i[1],this.Z=i[2];else if(t==2)this.X=i[0],this.Y=i[1],this.Z=0;else if(t==1)if(i[0]instanceof x.DoublePoint){var n=i[0];this.X=x.Clipper.Round(n.X),this.Y=x.Clipper.Round(n.Y),this.Z=0}else{var l=i[0];typeof l.Z>"u"&&(l.Z=0),this.X=l.X,this.Y=l.Y,this.Z=l.Z}else this.X=0,this.Y=0,this.Z=0;else if(t==2)this.X=i[0],this.Y=i[1];else if(t==1)if(i[0]instanceof x.DoublePoint){var n=i[0];this.X=x.Clipper.Round(n.X),this.Y=x.Clipper.Round(n.Y)}else{var l=i[0];this.X=l.X,this.Y=l.Y}else this.X=0,this.Y=0};x.IntPoint.op_Equality=function(i,t){return i.X==t.X&&i.Y==t.Y};x.IntPoint.op_Inequality=function(i,t){return i.X!=t.X||i.Y!=t.Y};_5?(x.IntPoint0=function(){this.X=0,this.Y=0,this.Z=0},x.IntPoint1=function(i){this.X=i.X,this.Y=i.Y,this.Z=i.Z},x.IntPoint1dp=function(i){this.X=x.Clipper.Round(i.X),this.Y=x.Clipper.Round(i.Y),this.Z=0},x.IntPoint2=function(i,t){this.X=i,this.Y=t,this.Z=0},x.IntPoint3=function(i,t,n){this.X=i,this.Y=t,this.Z=n}):(x.IntPoint0=function(){this.X=0,this.Y=0},x.IntPoint1=function(i){this.X=i.X,this.Y=i.Y},x.IntPoint1dp=function(i){this.X=x.Clipper.Round(i.X),this.Y=x.Clipper.Round(i.Y)},x.IntPoint2=function(i,t){this.X=i,this.Y=t});x.IntRect=function(){var i=arguments,t=i.length;t==4?(this.left=i[0],this.top=i[1],this.right=i[2],this.bottom=i[3]):t==1?(this.left=ir.left,this.top=ir.top,this.right=ir.right,this.bottom=ir.bottom):(this.left=0,this.top=0,this.right=0,this.bottom=0)};x.IntRect0=function(){this.left=0,this.top=0,this.right=0,this.bottom=0};x.IntRect1=function(i){this.left=i.left,this.top=i.top,this.right=i.right,this.bottom=i.bottom};x.IntRect4=function(i,t,n,l){this.left=i,this.top=t,this.right=n,this.bottom=l};x.ClipType={ctIntersection:0,ctUnion:1,ctDifference:2,ctXor:3};x.PolyType={ptSubject:0,ptClip:1};x.PolyFillType={pftEvenOdd:0,pftNonZero:1,pftPositive:2,pftNegative:3};x.JoinType={jtSquare:0,jtRound:1,jtMiter:2};x.EndType={etOpenSquare:0,etOpenRound:1,etOpenButt:2,etClosedLine:3,etClosedPolygon:4};wy&&(x.EndType_={etSquare:0,etRound:1,etButt:2,etClosed:3});x.EdgeSide={esLeft:0,esRight:1};x.Direction={dRightToLeft:0,dLeftToRight:1};x.TEdge=function(){this.Bot=new x.IntPoint,this.Curr=new x.IntPoint,this.Top=new x.IntPoint,this.Delta=new x.IntPoint,this.Dx=0,this.PolyTyp=x.PolyType.ptSubject,this.Side=x.EdgeSide.esLeft,this.WindDelta=0,this.WindCnt=0,this.WindCnt2=0,this.OutIdx=0,this.Next=null,this.Prev=null,this.NextInLML=null,this.NextInAEL=null,this.PrevInAEL=null,this.NextInSEL=null,this.PrevInSEL=null};x.IntersectNode=function(){this.Edge1=null,this.Edge2=null,this.Pt=new x.IntPoint};x.MyIntersectNodeSort=function(){};x.MyIntersectNodeSort.Compare=function(i,t){return t.Pt.Y-i.Pt.Y};x.LocalMinima=function(){this.Y=0,this.LeftBound=null,this.RightBound=null,this.Next=null};x.Scanbeam=function(){this.Y=0,this.Next=null};x.OutRec=function(){this.Idx=0,this.IsHole=!1,this.IsOpen=!1,this.FirstLeft=null,this.Pts=null,this.BottomPt=null,this.PolyNode=null};x.OutPt=function(){this.Idx=0,this.Pt=new x.IntPoint,this.Next=null,this.Prev=null};x.Join=function(){this.OutPt1=null,this.OutPt2=null,this.OffPt=new x.IntPoint};x.ClipperBase=function(){this.m_MinimaList=null,this.m_CurrentLM=null,this.m_edges=new Array,this.m_UseFullRange=!1,this.m_HasOpenPaths=!1,this.PreserveCollinear=!1,this.m_MinimaList=null,this.m_CurrentLM=null,this.m_UseFullRange=!1,this.m_HasOpenPaths=!1};x.ClipperBase.horizontal=-9007199254740992;x.ClipperBase.Skip=-2;x.ClipperBase.Unassigned=-1;x.ClipperBase.tolerance=1e-20;eF?(x.ClipperBase.loRange=46340,x.ClipperBase.hiRange=46340):(x.ClipperBase.loRange=47453132,x.ClipperBase.hiRange=0xfffffffffffff);x.ClipperBase.near_zero=function(i){return i>-x.ClipperBase.tolerance&&i<x.ClipperBase.tolerance};x.ClipperBase.IsHorizontal=function(i){return i.Delta.Y===0};x.ClipperBase.prototype.PointIsVertex=function(i,t){var n=t;do{if(x.IntPoint.op_Equality(n.Pt,i))return!0;n=n.Next}while(n!=t);return!1};x.ClipperBase.prototype.PointOnLineSegment=function(i,t,n,l){return l?i.X==t.X&&i.Y==t.Y||i.X==n.X&&i.Y==n.Y||i.X>t.X==i.X<n.X&&i.Y>t.Y==i.Y<n.Y&&qe.op_Equality(qe.Int128Mul(i.X-t.X,n.Y-t.Y),qe.Int128Mul(n.X-t.X,i.Y-t.Y)):i.X==t.X&&i.Y==t.Y||i.X==n.X&&i.Y==n.Y||i.X>t.X==i.X<n.X&&i.Y>t.Y==i.Y<n.Y&&(i.X-t.X)*(n.Y-t.Y)==(n.X-t.X)*(i.Y-t.Y)};x.ClipperBase.prototype.PointOnPolygon=function(i,t,n){for(var l=t;;){if(this.PointOnLineSegment(i,l.Pt,l.Next.Pt,n))return!0;if(l=l.Next,l==t)break}return!1};x.ClipperBase.prototype.SlopesEqual=x.ClipperBase.SlopesEqual=function(){var i=arguments,t=i.length,n,l,a,r,o,s,m;return t==3?(n=i[0],l=i[1],m=i[2],m?qe.op_Equality(qe.Int128Mul(n.Delta.Y,l.Delta.X),qe.Int128Mul(n.Delta.X,l.Delta.Y)):x.Cast_Int64(n.Delta.Y*l.Delta.X)==x.Cast_Int64(n.Delta.X*l.Delta.Y)):t==4?(a=i[0],r=i[1],o=i[2],m=i[3],m?qe.op_Equality(qe.Int128Mul(a.Y-r.Y,r.X-o.X),qe.Int128Mul(a.X-r.X,r.Y-o.Y)):x.Cast_Int64((a.Y-r.Y)*(r.X-o.X))-x.Cast_Int64((a.X-r.X)*(r.Y-o.Y))===0):(a=i[0],r=i[1],o=i[2],s=i[3],m=i[4],m?qe.op_Equality(qe.Int128Mul(a.Y-r.Y,o.X-s.X),qe.Int128Mul(a.X-r.X,o.Y-s.Y)):x.Cast_Int64((a.Y-r.Y)*(o.X-s.X))-x.Cast_Int64((a.X-r.X)*(o.Y-s.Y))===0)};x.ClipperBase.SlopesEqual3=function(i,t,n){return n?qe.op_Equality(qe.Int128Mul(i.Delta.Y,t.Delta.X),qe.Int128Mul(i.Delta.X,t.Delta.Y)):x.Cast_Int64(i.Delta.Y*t.Delta.X)==x.Cast_Int64(i.Delta.X*t.Delta.Y)};x.ClipperBase.SlopesEqual4=function(i,t,n,l){return l?qe.op_Equality(qe.Int128Mul(i.Y-t.Y,t.X-n.X),qe.Int128Mul(i.X-t.X,t.Y-n.Y)):x.Cast_Int64((i.Y-t.Y)*(t.X-n.X))-x.Cast_Int64((i.X-t.X)*(t.Y-n.Y))===0};x.ClipperBase.SlopesEqual5=function(i,t,n,l,a){return a?qe.op_Equality(qe.Int128Mul(i.Y-t.Y,n.X-l.X),qe.Int128Mul(i.X-t.X,n.Y-l.Y)):x.Cast_Int64((i.Y-t.Y)*(n.X-l.X))-x.Cast_Int64((i.X-t.X)*(n.Y-l.Y))===0};x.ClipperBase.prototype.Clear=function(){this.DisposeLocalMinimaList();for(var i=0,t=this.m_edges.length;i<t;++i){for(var n=0,l=this.m_edges[i].length;n<l;++n)this.m_edges[i][n]=null;x.Clear(this.m_edges[i])}x.Clear(this.m_edges),this.m_UseFullRange=!1,this.m_HasOpenPaths=!1};x.ClipperBase.prototype.DisposeLocalMinimaList=function(){for(;this.m_MinimaList!==null;){var i=this.m_MinimaList.Next;this.m_MinimaList=null,this.m_MinimaList=i}this.m_CurrentLM=null};x.ClipperBase.prototype.RangeTest=function(i,t){t.Value?(i.X>x.ClipperBase.hiRange||i.Y>x.ClipperBase.hiRange||-i.X>x.ClipperBase.hiRange||-i.Y>x.ClipperBase.hiRange)&&x.Error("Coordinate outside allowed range in RangeTest()."):(i.X>x.ClipperBase.loRange||i.Y>x.ClipperBase.loRange||-i.X>x.ClipperBase.loRange||-i.Y>x.ClipperBase.loRange)&&(t.Value=!0,this.RangeTest(i,t))};x.ClipperBase.prototype.InitEdge=function(i,t,n,l){i.Next=t,i.Prev=n,i.Curr.X=l.X,i.Curr.Y=l.Y,i.OutIdx=-1};x.ClipperBase.prototype.InitEdge2=function(i,t){i.Curr.Y>=i.Next.Curr.Y?(i.Bot.X=i.Curr.X,i.Bot.Y=i.Curr.Y,i.Top.X=i.Next.Curr.X,i.Top.Y=i.Next.Curr.Y):(i.Top.X=i.Curr.X,i.Top.Y=i.Curr.Y,i.Bot.X=i.Next.Curr.X,i.Bot.Y=i.Next.Curr.Y),this.SetDx(i),i.PolyTyp=t};x.ClipperBase.prototype.FindNextLocMin=function(i){for(var t;;){for(;x.IntPoint.op_Inequality(i.Bot,i.Prev.Bot)||x.IntPoint.op_Equality(i.Curr,i.Top);)i=i.Next;if(i.Dx!=x.ClipperBase.horizontal&&i.Prev.Dx!=x.ClipperBase.horizontal)break;for(;i.Prev.Dx==x.ClipperBase.horizontal;)i=i.Prev;for(t=i;i.Dx==x.ClipperBase.horizontal;)i=i.Next;if(i.Top.Y!=i.Prev.Bot.Y){t.Prev.Bot.X<i.Bot.X&&(i=t);break}}return i};x.ClipperBase.prototype.ProcessBound=function(i,t){var n=i,l=i,a,r;if(i.Dx==x.ClipperBase.horizontal&&(t?r=i.Prev.Bot.X:r=i.Next.Bot.X,i.Bot.X!=r&&this.ReverseHorizontal(i)),l.OutIdx!=x.ClipperBase.Skip)if(t){for(;l.Top.Y==l.Next.Bot.Y&&l.Next.OutIdx!=x.ClipperBase.Skip;)l=l.Next;if(l.Dx==x.ClipperBase.horizontal&&l.Next.OutIdx!=x.ClipperBase.Skip){for(a=l;a.Prev.Dx==x.ClipperBase.horizontal;)a=a.Prev;a.Prev.Top.X==l.Next.Top.X?t||(l=a.Prev):a.Prev.Top.X>l.Next.Top.X&&(l=a.Prev)}for(;i!=l;)i.NextInLML=i.Next,i.Dx==x.ClipperBase.horizontal&&i!=n&&i.Bot.X!=i.Prev.Top.X&&this.ReverseHorizontal(i),i=i.Next;i.Dx==x.ClipperBase.horizontal&&i!=n&&i.Bot.X!=i.Prev.Top.X&&this.ReverseHorizontal(i),l=l.Next}else{for(;l.Top.Y==l.Prev.Bot.Y&&l.Prev.OutIdx!=x.ClipperBase.Skip;)l=l.Prev;if(l.Dx==x.ClipperBase.horizontal&&l.Prev.OutIdx!=x.ClipperBase.Skip){for(a=l;a.Next.Dx==x.ClipperBase.horizontal;)a=a.Next;a.Next.Top.X==l.Prev.Top.X?t||(l=a.Next):a.Next.Top.X>l.Prev.Top.X&&(l=a.Next)}for(;i!=l;)i.NextInLML=i.Prev,i.Dx==x.ClipperBase.horizontal&&i!=n&&i.Bot.X!=i.Next.Top.X&&this.ReverseHorizontal(i),i=i.Prev;i.Dx==x.ClipperBase.horizontal&&i!=n&&i.Bot.X!=i.Next.Top.X&&this.ReverseHorizontal(i),l=l.Prev}if(l.OutIdx==x.ClipperBase.Skip){if(i=l,t){for(;i.Top.Y==i.Next.Bot.Y;)i=i.Next;for(;i!=l&&i.Dx==x.ClipperBase.horizontal;)i=i.Prev}else{for(;i.Top.Y==i.Prev.Bot.Y;)i=i.Prev;for(;i!=l&&i.Dx==x.ClipperBase.horizontal;)i=i.Next}if(i==l)t?l=i.Next:l=i.Prev;else{t?i=l.Next:i=l.Prev;var o=new x.LocalMinima;o.Next=null,o.Y=i.Bot.Y,o.LeftBound=null,o.RightBound=i,o.RightBound.WindDelta=0,l=this.ProcessBound(o.RightBound,t),this.InsertLocalMinima(o)}}return l};x.ClipperBase.prototype.AddPath=function(i,t,n){Ty?!n&&t==x.PolyType.ptClip&&x.Error("AddPath: Open paths must be subject."):n||x.Error("AddPath: Open paths have been disabled.");var l=i.length-1;if(n)for(;l>0&&x.IntPoint.op_Equality(i[l],i[0]);)--l;for(;l>0&&x.IntPoint.op_Equality(i[l],i[l-1]);)--l;if(n&&l<2||!n&&l<1)return!1;for(var a=new Array,r=0;r<=l;r++)a.push(new x.TEdge);var o=!0;a[1].Curr.X=i[1].X,a[1].Curr.Y=i[1].Y;var s={Value:this.m_UseFullRange};this.RangeTest(i[0],s),this.m_UseFullRange=s.Value,s.Value=this.m_UseFullRange,this.RangeTest(i[l],s),this.m_UseFullRange=s.Value,this.InitEdge(a[0],a[1],a[l],i[0]),this.InitEdge(a[l],a[0],a[l-1],i[l]);for(var r=l-1;r>=1;--r)s.Value=this.m_UseFullRange,this.RangeTest(i[r],s),this.m_UseFullRange=s.Value,this.InitEdge(a[r],a[r+1],a[r-1],i[r]);for(var m=a[0],h=m,u=m;;){if(x.IntPoint.op_Equality(h.Curr,h.Next.Curr)){if(h==h.Next)break;h==m&&(m=h.Next),h=this.RemoveEdge(h),u=h;continue}if(h.Prev==h.Next)break;if(n&&x.ClipperBase.SlopesEqual(h.Prev.Curr,h.Curr,h.Next.Curr,this.m_UseFullRange)&&(!this.PreserveCollinear||!this.Pt2IsBetweenPt1AndPt3(h.Prev.Curr,h.Curr,h.Next.Curr))){h==m&&(m=h.Next),h=this.RemoveEdge(h),h=h.Prev,u=h;continue}if(h=h.Next,h==u)break}if(!n&&h==h.Next||n&&h.Prev==h.Next)return!1;n||(this.m_HasOpenPaths=!0,m.Prev.OutIdx=x.ClipperBase.Skip);var c=m;h=m;do this.InitEdge2(h,t),h=h.Next,o&&h.Curr.Y!=m.Curr.Y&&(o=!1);while(h!=m);if(o){if(n)return!1;h.Prev.OutIdx=x.ClipperBase.Skip,h.Prev.Bot.X<h.Prev.Top.X&&this.ReverseHorizontal(h.Prev);var q=new x.LocalMinima;for(q.Next=null,q.Y=h.Bot.Y,q.LeftBound=null,q.RightBound=h,q.RightBound.Side=x.EdgeSide.esRight,q.RightBound.WindDelta=0;h.Next.OutIdx!=x.ClipperBase.Skip;)h.NextInLML=h.Next,h.Bot.X!=h.Prev.Top.X&&this.ReverseHorizontal(h),h=h.Next;return this.InsertLocalMinima(q),this.m_edges.push(a),!0}this.m_edges.push(a);for(var d,p=null;h=this.FindNextLocMin(h),h!=p;){p==null&&(p=h);var q=new x.LocalMinima;q.Next=null,q.Y=h.Bot.Y,h.Dx<h.Prev.Dx?(q.LeftBound=h.Prev,q.RightBound=h,d=!1):(q.LeftBound=h,q.RightBound=h.Prev,d=!0),q.LeftBound.Side=x.EdgeSide.esLeft,q.RightBound.Side=x.EdgeSide.esRight,n?q.LeftBound.Next==q.RightBound?q.LeftBound.WindDelta=-1:q.LeftBound.WindDelta=1:q.LeftBound.WindDelta=0,q.RightBound.WindDelta=-q.LeftBound.WindDelta,h=this.ProcessBound(q.LeftBound,d);var f=this.ProcessBound(q.RightBound,!d);q.LeftBound.OutIdx==x.ClipperBase.Skip?q.LeftBound=null:q.RightBound.OutIdx==x.ClipperBase.Skip&&(q.RightBound=null),this.InsertLocalMinima(q),d||(h=f)}return!0};x.ClipperBase.prototype.AddPaths=function(i,t,n){for(var l=!1,a=0,r=i.length;a<r;++a)this.AddPath(i[a],t,n)&&(l=!0);return l};x.ClipperBase.prototype.Pt2IsBetweenPt1AndPt3=function(i,t,n){return x.IntPoint.op_Equality(i,n)||x.IntPoint.op_Equality(i,t)||x.IntPoint.op_Equality(n,t)?!1:i.X!=n.X?t.X>i.X==t.X<n.X:t.Y>i.Y==t.Y<n.Y};x.ClipperBase.prototype.RemoveEdge=function(i){i.Prev.Next=i.Next,i.Next.Prev=i.Prev;var t=i.Next;return i.Prev=null,t};x.ClipperBase.prototype.SetDx=function(i){i.Delta.X=i.Top.X-i.Bot.X,i.Delta.Y=i.Top.Y-i.Bot.Y,i.Delta.Y===0?i.Dx=x.ClipperBase.horizontal:i.Dx=i.Delta.X/i.Delta.Y};x.ClipperBase.prototype.InsertLocalMinima=function(i){if(this.m_MinimaList===null)this.m_MinimaList=i;else if(i.Y>=this.m_MinimaList.Y)i.Next=this.m_MinimaList,this.m_MinimaList=i;else{for(var t=this.m_MinimaList;t.Next!==null&&i.Y<t.Next.Y;)t=t.Next;i.Next=t.Next,t.Next=i}};x.ClipperBase.prototype.PopLocalMinima=function(){this.m_CurrentLM!==null&&(this.m_CurrentLM=this.m_CurrentLM.Next)};x.ClipperBase.prototype.ReverseHorizontal=function(i){var t=i.Top.X;i.Top.X=i.Bot.X,i.Bot.X=t,_5&&(t=i.Top.Z,i.Top.Z=i.Bot.Z,i.Bot.Z=t)};x.ClipperBase.prototype.Reset=function(){if(this.m_CurrentLM=this.m_MinimaList,this.m_CurrentLM!=null)for(var i=this.m_MinimaList;i!=null;){var t=i.LeftBound;t!=null&&(t.Curr.X=t.Bot.X,t.Curr.Y=t.Bot.Y,t.Side=x.EdgeSide.esLeft,t.OutIdx=x.ClipperBase.Unassigned),t=i.RightBound,t!=null&&(t.Curr.X=t.Bot.X,t.Curr.Y=t.Bot.Y,t.Side=x.EdgeSide.esRight,t.OutIdx=x.ClipperBase.Unassigned),i=i.Next}};x.Clipper=function(i){typeof i>"u"&&(i=0),this.m_PolyOuts=null,this.m_ClipType=x.ClipType.ctIntersection,this.m_Scanbeam=null,this.m_ActiveEdges=null,this.m_SortedEdges=null,this.m_IntersectList=null,this.m_IntersectNodeComparer=null,this.m_ExecuteLocked=!1,this.m_ClipFillType=x.PolyFillType.pftEvenOdd,this.m_SubjFillType=x.PolyFillType.pftEvenOdd,this.m_Joins=null,this.m_GhostJoins=null,this.m_UsingPolyTree=!1,this.ReverseSolution=!1,this.StrictlySimple=!1,x.ClipperBase.call(this),this.m_Scanbeam=null,this.m_ActiveEdges=null,this.m_SortedEdges=null,this.m_IntersectList=new Array,this.m_IntersectNodeComparer=x.MyIntersectNodeSort.Compare,this.m_ExecuteLocked=!1,this.m_UsingPolyTree=!1,this.m_PolyOuts=new Array,this.m_Joins=new Array,this.m_GhostJoins=new Array,this.ReverseSolution=(1&i)!==0,this.StrictlySimple=(2&i)!==0,this.PreserveCollinear=(4&i)!==0,_5&&(this.ZFillFunction=null)};x.Clipper.ioReverseSolution=1;x.Clipper.ioStrictlySimple=2;x.Clipper.ioPreserveCollinear=4;x.Clipper.prototype.Clear=function(){this.m_edges.length!==0&&(this.DisposeAllPolyPts(),x.ClipperBase.prototype.Clear.call(this))};x.Clipper.prototype.DisposeScanbeamList=function(){for(;this.m_Scanbeam!==null;){var i=this.m_Scanbeam.Next;this.m_Scanbeam=null,this.m_Scanbeam=i}};x.Clipper.prototype.Reset=function(){x.ClipperBase.prototype.Reset.call(this),this.m_Scanbeam=null,this.m_ActiveEdges=null,this.m_SortedEdges=null;for(var i=this.m_MinimaList;i!==null;)this.InsertScanbeam(i.Y),i=i.Next};x.Clipper.prototype.InsertScanbeam=function(i){if(this.m_Scanbeam===null)this.m_Scanbeam=new x.Scanbeam,this.m_Scanbeam.Next=null,this.m_Scanbeam.Y=i;else if(i>this.m_Scanbeam.Y){var t=new x.Scanbeam;t.Y=i,t.Next=this.m_Scanbeam,this.m_Scanbeam=t}else{for(var n=this.m_Scanbeam;n.Next!==null&&i<=n.Next.Y;)n=n.Next;if(i==n.Y)return;var t=new x.Scanbeam;t.Y=i,t.Next=n.Next,n.Next=t}};x.Clipper.prototype.Execute=function(){var i=arguments,t=i.length,n=i[1]instanceof x.PolyTree;if(t==4&&!n){var l=i[0],a=i[1],r=i[2],o=i[3];if(this.m_ExecuteLocked)return!1;this.m_HasOpenPaths&&x.Error("Error: PolyTree struct is need for open path clipping."),this.m_ExecuteLocked=!0,x.Clear(a),this.m_SubjFillType=r,this.m_ClipFillType=o,this.m_ClipType=l,this.m_UsingPolyTree=!1;try{var s=this.ExecuteInternal();s&&this.BuildResult(a)}finally{this.DisposeAllPolyPts(),this.m_ExecuteLocked=!1}return s}else if(t==4&&n){var l=i[0],m=i[1],r=i[2],o=i[3];if(this.m_ExecuteLocked)return!1;this.m_ExecuteLocked=!0,this.m_SubjFillType=r,this.m_ClipFillType=o,this.m_ClipType=l,this.m_UsingPolyTree=!0;try{var s=this.ExecuteInternal();s&&this.BuildResult2(m)}finally{this.DisposeAllPolyPts(),this.m_ExecuteLocked=!1}return s}else if(t==2&&!n){var l=i[0],a=i[1];return this.Execute(l,a,x.PolyFillType.pftEvenOdd,x.PolyFillType.pftEvenOdd)}else if(t==2&&n){var l=i[0],m=i[1];return this.Execute(l,m,x.PolyFillType.pftEvenOdd,x.PolyFillType.pftEvenOdd)}};x.Clipper.prototype.FixHoleLinkage=function(i){if(!(i.FirstLeft===null||i.IsHole!=i.FirstLeft.IsHole&&i.FirstLeft.Pts!==null)){for(var t=i.FirstLeft;t!==null&&(t.IsHole==i.IsHole||t.Pts===null);)t=t.FirstLeft;i.FirstLeft=t}};x.Clipper.prototype.ExecuteInternal=function(){try{if(this.Reset(),this.m_CurrentLM===null)return!1;var i=this.PopScanbeam();do{if(this.InsertLocalMinimaIntoAEL(i),x.Clear(this.m_GhostJoins),this.ProcessHorizontals(!1),this.m_Scanbeam===null)break;var t=this.PopScanbeam();if(!this.ProcessIntersections(i,t))return!1;this.ProcessEdgesAtTopOfScanbeam(t),i=t}while(this.m_Scanbeam!==null||this.m_CurrentLM!==null);for(var n=0,l=this.m_PolyOuts.length;n<l;n++){var a=this.m_PolyOuts[n];a.Pts===null||a.IsOpen||(a.IsHole^this.ReverseSolution)==this.Area(a)>0&&this.ReversePolyPtLinks(a.Pts)}this.JoinCommonEdges();for(var n=0,l=this.m_PolyOuts.length;n<l;n++){var a=this.m_PolyOuts[n];a.Pts!==null&&!a.IsOpen&&this.FixupOutPolygon(a)}return this.StrictlySimple&&this.DoSimplePolygons(),!0}finally{x.Clear(this.m_Joins),x.Clear(this.m_GhostJoins)}};x.Clipper.prototype.PopScanbeam=function(){var i=this.m_Scanbeam.Y,t=this.m_Scanbeam;return this.m_Scanbeam=this.m_Scanbeam.Next,t=null,i};x.Clipper.prototype.DisposeAllPolyPts=function(){for(var i=0,t=this.m_PolyOuts.length;i<t;++i)this.DisposeOutRec(i);x.Clear(this.m_PolyOuts)};x.Clipper.prototype.DisposeOutRec=function(i){var t=this.m_PolyOuts[i];t.Pts!==null&&this.DisposeOutPts(t.Pts),t=null,this.m_PolyOuts[i]=null};x.Clipper.prototype.DisposeOutPts=function(i){if(i!==null){var t=null;for(i.Prev.Next=null;i!==null;)t=i,i=i.Next,t=null}};x.Clipper.prototype.AddJoin=function(i,t,n){var l=new x.Join;l.OutPt1=i,l.OutPt2=t,l.OffPt.X=n.X,l.OffPt.Y=n.Y,this.m_Joins.push(l)};x.Clipper.prototype.AddGhostJoin=function(i,t){var n=new x.Join;n.OutPt1=i,n.OffPt.X=t.X,n.OffPt.Y=t.Y,this.m_GhostJoins.push(n)};_5&&(x.Clipper.prototype.SetZ=function(i,t){i.Z=0,this.ZFillFunction!==null&&(t.OutIdx<0?this.ZFillFunction(t.Bot,t.Top,i):this.ZFillFunction(t.Top,t.Bot,i))});x.Clipper.prototype.InsertLocalMinimaIntoAEL=function(i){for(;this.m_CurrentLM!==null&&this.m_CurrentLM.Y==i;){var t=this.m_CurrentLM.LeftBound,n=this.m_CurrentLM.RightBound;this.PopLocalMinima();var l=null;if(t===null?(this.InsertEdgeIntoAEL(n,null),this.SetWindingCount(n),this.IsContributing(n)&&(l=this.AddOutPt(n,n.Bot))):n==null?(this.InsertEdgeIntoAEL(t,null),this.SetWindingCount(t),this.IsContributing(t)&&(l=this.AddOutPt(t,t.Bot)),this.InsertScanbeam(t.Top.Y)):(this.InsertEdgeIntoAEL(t,null),this.InsertEdgeIntoAEL(n,t),this.SetWindingCount(t),n.WindCnt=t.WindCnt,n.WindCnt2=t.WindCnt2,this.IsContributing(t)&&(l=this.AddLocalMinPoly(t,n,t.Bot)),this.InsertScanbeam(t.Top.Y)),n!=null&&(x.ClipperBase.IsHorizontal(n)?this.AddEdgeToSEL(n):this.InsertScanbeam(n.Top.Y)),!(t==null||n==null)){if(l!==null&&x.ClipperBase.IsHorizontal(n)&&this.m_GhostJoins.length>0&&n.WindDelta!==0)for(var a=0,r=this.m_GhostJoins.length;a<r;a++){var o=this.m_GhostJoins[a];this.HorzSegmentsOverlap(o.OutPt1.Pt,o.OffPt,n.Bot,n.Top)&&this.AddJoin(o.OutPt1,l,o.OffPt)}if(t.OutIdx>=0&&t.PrevInAEL!==null&&t.PrevInAEL.Curr.X==t.Bot.X&&t.PrevInAEL.OutIdx>=0&&x.ClipperBase.SlopesEqual(t.PrevInAEL,t,this.m_UseFullRange)&&t.WindDelta!==0&&t.PrevInAEL.WindDelta!==0){var s=this.AddOutPt(t.PrevInAEL,t.Bot);this.AddJoin(l,s,t.Top)}if(t.NextInAEL!=n){if(n.OutIdx>=0&&n.PrevInAEL.OutIdx>=0&&x.ClipperBase.SlopesEqual(n.PrevInAEL,n,this.m_UseFullRange)&&n.WindDelta!==0&&n.PrevInAEL.WindDelta!==0){var s=this.AddOutPt(n.PrevInAEL,n.Bot);this.AddJoin(l,s,n.Top)}var m=t.NextInAEL;if(m!==null)for(;m!=n;)this.IntersectEdges(n,m,t.Curr,!1),m=m.NextInAEL}}}};x.Clipper.prototype.InsertEdgeIntoAEL=function(i,t){if(this.m_ActiveEdges===null)i.PrevInAEL=null,i.NextInAEL=null,this.m_ActiveEdges=i;else if(t===null&&this.E2InsertsBeforeE1(this.m_ActiveEdges,i))i.PrevInAEL=null,i.NextInAEL=this.m_ActiveEdges,this.m_ActiveEdges.PrevInAEL=i,this.m_ActiveEdges=i;else{for(t===null&&(t=this.m_ActiveEdges);t.NextInAEL!==null&&!this.E2InsertsBeforeE1(t.NextInAEL,i);)t=t.NextInAEL;i.NextInAEL=t.NextInAEL,t.NextInAEL!==null&&(t.NextInAEL.PrevInAEL=i),i.PrevInAEL=t,t.NextInAEL=i}};x.Clipper.prototype.E2InsertsBeforeE1=function(i,t){return t.Curr.X==i.Curr.X?t.Top.Y>i.Top.Y?t.Top.X<x.Clipper.TopX(i,t.Top.Y):i.Top.X>x.Clipper.TopX(t,i.Top.Y):t.Curr.X<i.Curr.X};x.Clipper.prototype.IsEvenOddFillType=function(i){return i.PolyTyp==x.PolyType.ptSubject?this.m_SubjFillType==x.PolyFillType.pftEvenOdd:this.m_ClipFillType==x.PolyFillType.pftEvenOdd};x.Clipper.prototype.IsEvenOddAltFillType=function(i){return i.PolyTyp==x.PolyType.ptSubject?this.m_ClipFillType==x.PolyFillType.pftEvenOdd:this.m_SubjFillType==x.PolyFillType.pftEvenOdd};x.Clipper.prototype.IsContributing=function(i){var t,n;switch(i.PolyTyp==x.PolyType.ptSubject?(t=this.m_SubjFillType,n=this.m_ClipFillType):(t=this.m_ClipFillType,n=this.m_SubjFillType),t){case x.PolyFillType.pftEvenOdd:if(i.WindDelta===0&&i.WindCnt!=1)return!1;break;case x.PolyFillType.pftNonZero:if(Math.abs(i.WindCnt)!=1)return!1;break;case x.PolyFillType.pftPositive:if(i.WindCnt!=1)return!1;break;default:if(i.WindCnt!=-1)return!1;break}switch(this.m_ClipType){case x.ClipType.ctIntersection:switch(n){case x.PolyFillType.pftEvenOdd:case x.PolyFillType.pftNonZero:return i.WindCnt2!==0;case x.PolyFillType.pftPositive:return i.WindCnt2>0;default:return i.WindCnt2<0}case x.ClipType.ctUnion:switch(n){case x.PolyFillType.pftEvenOdd:case x.PolyFillType.pftNonZero:return i.WindCnt2===0;case x.PolyFillType.pftPositive:return i.WindCnt2<=0;default:return i.WindCnt2>=0}case x.ClipType.ctDifference:if(i.PolyTyp==x.PolyType.ptSubject)switch(n){case x.PolyFillType.pftEvenOdd:case x.PolyFillType.pftNonZero:return i.WindCnt2===0;case x.PolyFillType.pftPositive:return i.WindCnt2<=0;default:return i.WindCnt2>=0}else switch(n){case x.PolyFillType.pftEvenOdd:case x.PolyFillType.pftNonZero:return i.WindCnt2!==0;case x.PolyFillType.pftPositive:return i.WindCnt2>0;default:return i.WindCnt2<0}case x.ClipType.ctXor:if(i.WindDelta===0)switch(n){case x.PolyFillType.pftEvenOdd:case x.PolyFillType.pftNonZero:return i.WindCnt2===0;case x.PolyFillType.pftPositive:return i.WindCnt2<=0;default:return i.WindCnt2>=0}else return!0}return!0};x.Clipper.prototype.SetWindingCount=function(i){for(var t=i.PrevInAEL;t!==null&&(t.PolyTyp!=i.PolyTyp||t.WindDelta===0);)t=t.PrevInAEL;if(t===null)i.WindCnt=i.WindDelta===0?1:i.WindDelta,i.WindCnt2=0,t=this.m_ActiveEdges;else if(i.WindDelta===0&&this.m_ClipType!=x.ClipType.ctUnion)i.WindCnt=1,i.WindCnt2=t.WindCnt2,t=t.NextInAEL;else if(this.IsEvenOddFillType(i)){if(i.WindDelta===0){for(var n=!0,l=t.PrevInAEL;l!==null;)l.PolyTyp==t.PolyTyp&&l.WindDelta!==0&&(n=!n),l=l.PrevInAEL;i.WindCnt=n?0:1}else i.WindCnt=i.WindDelta;i.WindCnt2=t.WindCnt2,t=t.NextInAEL}else t.WindCnt*t.WindDelta<0?Math.abs(t.WindCnt)>1?t.WindDelta*i.WindDelta<0?i.WindCnt=t.WindCnt:i.WindCnt=t.WindCnt+i.WindDelta:i.WindCnt=i.WindDelta===0?1:i.WindDelta:i.WindDelta===0?i.WindCnt=t.WindCnt<0?t.WindCnt-1:t.WindCnt+1:t.WindDelta*i.WindDelta<0?i.WindCnt=t.WindCnt:i.WindCnt=t.WindCnt+i.WindDelta,i.WindCnt2=t.WindCnt2,t=t.NextInAEL;if(this.IsEvenOddAltFillType(i))for(;t!=i;)t.WindDelta!==0&&(i.WindCnt2=i.WindCnt2===0?1:0),t=t.NextInAEL;else for(;t!=i;)i.WindCnt2+=t.WindDelta,t=t.NextInAEL};x.Clipper.prototype.AddEdgeToSEL=function(i){this.m_SortedEdges===null?(this.m_SortedEdges=i,i.PrevInSEL=null,i.NextInSEL=null):(i.NextInSEL=this.m_SortedEdges,i.PrevInSEL=null,this.m_SortedEdges.PrevInSEL=i,this.m_SortedEdges=i)};x.Clipper.prototype.CopyAELToSEL=function(){var i=this.m_ActiveEdges;for(this.m_SortedEdges=i;i!==null;)i.PrevInSEL=i.PrevInAEL,i.NextInSEL=i.NextInAEL,i=i.NextInAEL};x.Clipper.prototype.SwapPositionsInAEL=function(i,t){if(!(i.NextInAEL==i.PrevInAEL||t.NextInAEL==t.PrevInAEL)){if(i.NextInAEL==t){var n=t.NextInAEL;n!==null&&(n.PrevInAEL=i);var l=i.PrevInAEL;l!==null&&(l.NextInAEL=t),t.PrevInAEL=l,t.NextInAEL=i,i.PrevInAEL=t,i.NextInAEL=n}else if(t.NextInAEL==i){var n=i.NextInAEL;n!==null&&(n.PrevInAEL=t);var l=t.PrevInAEL;l!==null&&(l.NextInAEL=i),i.PrevInAEL=l,i.NextInAEL=t,t.PrevInAEL=i,t.NextInAEL=n}else{var n=i.NextInAEL,l=i.PrevInAEL;i.NextInAEL=t.NextInAEL,i.NextInAEL!==null&&(i.NextInAEL.PrevInAEL=i),i.PrevInAEL=t.PrevInAEL,i.PrevInAEL!==null&&(i.PrevInAEL.NextInAEL=i),t.NextInAEL=n,t.NextInAEL!==null&&(t.NextInAEL.PrevInAEL=t),t.PrevInAEL=l,t.PrevInAEL!==null&&(t.PrevInAEL.NextInAEL=t)}i.PrevInAEL===null?this.m_ActiveEdges=i:t.PrevInAEL===null&&(this.m_ActiveEdges=t)}};x.Clipper.prototype.SwapPositionsInSEL=function(i,t){if(!(i.NextInSEL===null&&i.PrevInSEL===null)&&!(t.NextInSEL===null&&t.PrevInSEL===null)){if(i.NextInSEL==t){var n=t.NextInSEL;n!==null&&(n.PrevInSEL=i);var l=i.PrevInSEL;l!==null&&(l.NextInSEL=t),t.PrevInSEL=l,t.NextInSEL=i,i.PrevInSEL=t,i.NextInSEL=n}else if(t.NextInSEL==i){var n=i.NextInSEL;n!==null&&(n.PrevInSEL=t);var l=t.PrevInSEL;l!==null&&(l.NextInSEL=i),i.PrevInSEL=l,i.NextInSEL=t,t.PrevInSEL=i,t.NextInSEL=n}else{var n=i.NextInSEL,l=i.PrevInSEL;i.NextInSEL=t.NextInSEL,i.NextInSEL!==null&&(i.NextInSEL.PrevInSEL=i),i.PrevInSEL=t.PrevInSEL,i.PrevInSEL!==null&&(i.PrevInSEL.NextInSEL=i),t.NextInSEL=n,t.NextInSEL!==null&&(t.NextInSEL.PrevInSEL=t),t.PrevInSEL=l,t.PrevInSEL!==null&&(t.PrevInSEL.NextInSEL=t)}i.PrevInSEL===null?this.m_SortedEdges=i:t.PrevInSEL===null&&(this.m_SortedEdges=t)}};x.Clipper.prototype.AddLocalMaxPoly=function(i,t,n){this.AddOutPt(i,n),t.WindDelta==0&&this.AddOutPt(t,n),i.OutIdx==t.OutIdx?(i.OutIdx=-1,t.OutIdx=-1):i.OutIdx<t.OutIdx?this.AppendPolygon(i,t):this.AppendPolygon(t,i)};x.Clipper.prototype.AddLocalMinPoly=function(i,t,n){var l,a,r;if(x.ClipperBase.IsHorizontal(t)||i.Dx>t.Dx?(l=this.AddOutPt(i,n),t.OutIdx=i.OutIdx,i.Side=x.EdgeSide.esLeft,t.Side=x.EdgeSide.esRight,a=i,a.PrevInAEL==t?r=t.PrevInAEL:r=a.PrevInAEL):(l=this.AddOutPt(t,n),i.OutIdx=t.OutIdx,i.Side=x.EdgeSide.esRight,t.Side=x.EdgeSide.esLeft,a=t,a.PrevInAEL==i?r=i.PrevInAEL:r=a.PrevInAEL),r!==null&&r.OutIdx>=0&&x.Clipper.TopX(r,n.Y)==x.Clipper.TopX(a,n.Y)&&x.ClipperBase.SlopesEqual(a,r,this.m_UseFullRange)&&a.WindDelta!==0&&r.WindDelta!==0){var o=this.AddOutPt(r,n);this.AddJoin(l,o,a.Top)}return l};x.Clipper.prototype.CreateOutRec=function(){var i=new x.OutRec;return i.Idx=-1,i.IsHole=!1,i.IsOpen=!1,i.FirstLeft=null,i.Pts=null,i.BottomPt=null,i.PolyNode=null,this.m_PolyOuts.push(i),i.Idx=this.m_PolyOuts.length-1,i};x.Clipper.prototype.AddOutPt=function(i,t){var n=i.Side==x.EdgeSide.esLeft;if(i.OutIdx<0){var l=this.CreateOutRec();l.IsOpen=i.WindDelta===0;var a=new x.OutPt;return l.Pts=a,a.Idx=l.Idx,a.Pt.X=t.X,a.Pt.Y=t.Y,a.Next=a,a.Prev=a,l.IsOpen||this.SetHoleState(i,l),_5&&(x.IntPoint.op_Equality(t,i.Bot)?(a.Pt.X=i.Bot.X,a.Pt.Y=i.Bot.Y,a.Pt.Z=i.Bot.Z):x.IntPoint.op_Equality(t,i.Top)?(a.Pt.X=i.Top.X,a.Pt.Y=i.Top.Y,a.Pt.Z=i.Top.Z):this.SetZ(a.Pt,i)),i.OutIdx=l.Idx,a}else{var l=this.m_PolyOuts[i.OutIdx],r=l.Pts;if(n&&x.IntPoint.op_Equality(t,r.Pt))return r;if(!n&&x.IntPoint.op_Equality(t,r.Prev.Pt))return r.Prev;var a=new x.OutPt;return a.Idx=l.Idx,a.Pt.X=t.X,a.Pt.Y=t.Y,a.Next=r,a.Prev=r.Prev,a.Prev.Next=a,r.Prev=a,n&&(l.Pts=a),_5&&(x.IntPoint.op_Equality(t,i.Bot)?(a.Pt.X=i.Bot.X,a.Pt.Y=i.Bot.Y,a.Pt.Z=i.Bot.Z):x.IntPoint.op_Equality(t,i.Top)?(a.Pt.X=i.Top.X,a.Pt.Y=i.Top.Y,a.Pt.Z=i.Top.Z):this.SetZ(a.Pt,i)),a}};x.Clipper.prototype.SwapPoints=function(i,t){var n=new x.IntPoint(i.Value);i.Value.X=t.Value.X,i.Value.Y=t.Value.Y,t.Value.X=n.X,t.Value.Y=n.Y};x.Clipper.prototype.HorzSegmentsOverlap=function(i,t,n,l){return i.X>n.X==i.X<l.X||t.X>n.X==t.X<l.X||n.X>i.X==n.X<t.X||l.X>i.X==l.X<t.X||i.X==n.X&&t.X==l.X?!0:i.X==l.X&&t.X==n.X};x.Clipper.prototype.InsertPolyPtBetween=function(i,t,n){var l=new x.OutPt;return l.Pt.X=n.X,l.Pt.Y=n.Y,t==i.Next?(i.Next=l,t.Prev=l,l.Next=t,l.Prev=i):(t.Next=l,i.Prev=l,l.Next=i,l.Prev=t),l};x.Clipper.prototype.SetHoleState=function(i,t){for(var n=!1,l=i.PrevInAEL;l!==null;)l.OutIdx>=0&&l.WindDelta!=0&&(n=!n,t.FirstLeft===null&&(t.FirstLeft=this.m_PolyOuts[l.OutIdx])),l=l.PrevInAEL;n&&(t.IsHole=!0)};x.Clipper.prototype.GetDx=function(i,t){return i.Y==t.Y?x.ClipperBase.horizontal:(t.X-i.X)/(t.Y-i.Y)};x.Clipper.prototype.FirstIsBottomPt=function(i,t){for(var n=i.Prev;x.IntPoint.op_Equality(n.Pt,i.Pt)&&n!=i;)n=n.Prev;var l=Math.abs(this.GetDx(i.Pt,n.Pt));for(n=i.Next;x.IntPoint.op_Equality(n.Pt,i.Pt)&&n!=i;)n=n.Next;var a=Math.abs(this.GetDx(i.Pt,n.Pt));for(n=t.Prev;x.IntPoint.op_Equality(n.Pt,t.Pt)&&n!=t;)n=n.Prev;var r=Math.abs(this.GetDx(t.Pt,n.Pt));for(n=t.Next;x.IntPoint.op_Equality(n.Pt,t.Pt)&&n!=t;)n=n.Next;var o=Math.abs(this.GetDx(t.Pt,n.Pt));return l>=r&&l>=o||a>=r&&a>=o};x.Clipper.prototype.GetBottomPt=function(i){for(var t=null,n=i.Next;n!=i;)n.Pt.Y>i.Pt.Y?(i=n,t=null):n.Pt.Y==i.Pt.Y&&n.Pt.X<=i.Pt.X&&(n.Pt.X<i.Pt.X?(t=null,i=n):n.Next!=i&&n.Prev!=i&&(t=n)),n=n.Next;if(t!==null)for(;t!=n;)for(this.FirstIsBottomPt(n,t)||(i=t),t=t.Next;x.IntPoint.op_Inequality(t.Pt,i.Pt);)t=t.Next;return i};x.Clipper.prototype.GetLowermostRec=function(i,t){i.BottomPt===null&&(i.BottomPt=this.GetBottomPt(i.Pts)),t.BottomPt===null&&(t.BottomPt=this.GetBottomPt(t.Pts));var n=i.BottomPt,l=t.BottomPt;return n.Pt.Y>l.Pt.Y?i:n.Pt.Y<l.Pt.Y?t:n.Pt.X<l.Pt.X?i:n.Pt.X>l.Pt.X||n.Next==n?t:l.Next==l||this.FirstIsBottomPt(n,l)?i:t};x.Clipper.prototype.Param1RightOfParam2=function(i,t){do if(i=i.FirstLeft,i==t)return!0;while(i!==null);return!1};x.Clipper.prototype.GetOutRec=function(i){for(var t=this.m_PolyOuts[i];t!=this.m_PolyOuts[t.Idx];)t=this.m_PolyOuts[t.Idx];return t};x.Clipper.prototype.AppendPolygon=function(i,t){var n=this.m_PolyOuts[i.OutIdx],l=this.m_PolyOuts[t.OutIdx],a;this.Param1RightOfParam2(n,l)?a=l:this.Param1RightOfParam2(l,n)?a=n:a=this.GetLowermostRec(n,l);var r=n.Pts,o=r.Prev,s=l.Pts,m=s.Prev,h;i.Side==x.EdgeSide.esLeft?(t.Side==x.EdgeSide.esLeft?(this.ReversePolyPtLinks(s),s.Next=r,r.Prev=s,o.Next=m,m.Prev=o,n.Pts=m):(m.Next=r,r.Prev=m,s.Prev=o,o.Next=s,n.Pts=s),h=x.EdgeSide.esLeft):(t.Side==x.EdgeSide.esRight?(this.ReversePolyPtLinks(s),o.Next=m,m.Prev=o,s.Next=r,r.Prev=s):(o.Next=s,s.Prev=o,r.Prev=m,m.Next=r),h=x.EdgeSide.esRight),n.BottomPt=null,a==l&&(l.FirstLeft!=n&&(n.FirstLeft=l.FirstLeft),n.IsHole=l.IsHole),l.Pts=null,l.BottomPt=null,l.FirstLeft=n;var u=i.OutIdx,c=t.OutIdx;i.OutIdx=-1,t.OutIdx=-1;for(var q=this.m_ActiveEdges;q!==null;){if(q.OutIdx==c){q.OutIdx=u,q.Side=h;break}q=q.NextInAEL}l.Idx=n.Idx};x.Clipper.prototype.ReversePolyPtLinks=function(i){if(i!==null){var t,n;t=i;do n=t.Next,t.Next=t.Prev,t.Prev=n,t=n;while(t!=i)}};x.Clipper.SwapSides=function(i,t){var n=i.Side;i.Side=t.Side,t.Side=n};x.Clipper.SwapPolyIndexes=function(i,t){var n=i.OutIdx;i.OutIdx=t.OutIdx,t.OutIdx=n};x.Clipper.prototype.IntersectEdges=function(i,t,n,l){var a=!l&&i.NextInLML===null&&i.Top.X==n.X&&i.Top.Y==n.Y,r=!l&&t.NextInLML===null&&t.Top.X==n.X&&t.Top.Y==n.Y,o=i.OutIdx>=0,s=t.OutIdx>=0;if(Ty&&(i.WindDelta===0||t.WindDelta===0)){i.WindDelta===0&&t.WindDelta===0?(a||r)&&o&&s&&this.AddLocalMaxPoly(i,t,n):i.PolyTyp==t.PolyTyp&&i.WindDelta!=t.WindDelta&&this.m_ClipType==x.ClipType.ctUnion?i.WindDelta===0?s&&(this.AddOutPt(i,n),o&&(i.OutIdx=-1)):o&&(this.AddOutPt(t,n),s&&(t.OutIdx=-1)):i.PolyTyp!=t.PolyTyp&&(i.WindDelta===0&&Math.abs(t.WindCnt)==1&&(this.m_ClipType!=x.ClipType.ctUnion||t.WindCnt2===0)?(this.AddOutPt(i,n),o&&(i.OutIdx=-1)):t.WindDelta===0&&Math.abs(i.WindCnt)==1&&(this.m_ClipType!=x.ClipType.ctUnion||i.WindCnt2===0)&&(this.AddOutPt(t,n),s&&(t.OutIdx=-1))),a&&(i.OutIdx<0?this.DeleteFromAEL(i):x.Error("Error intersecting polylines")),r&&(t.OutIdx<0?this.DeleteFromAEL(t):x.Error("Error intersecting polylines"));return}if(i.PolyTyp==t.PolyTyp)if(this.IsEvenOddFillType(i)){var m=i.WindCnt;i.WindCnt=t.WindCnt,t.WindCnt=m}else i.WindCnt+t.WindDelta===0?i.WindCnt=-i.WindCnt:i.WindCnt+=t.WindDelta,t.WindCnt-i.WindDelta===0?t.WindCnt=-t.WindCnt:t.WindCnt-=i.WindDelta;else this.IsEvenOddFillType(t)?i.WindCnt2=i.WindCnt2===0?1:0:i.WindCnt2+=t.WindDelta,this.IsEvenOddFillType(i)?t.WindCnt2=t.WindCnt2===0?1:0:t.WindCnt2-=i.WindDelta;var h,u,c,q;i.PolyTyp==x.PolyType.ptSubject?(h=this.m_SubjFillType,c=this.m_ClipFillType):(h=this.m_ClipFillType,c=this.m_SubjFillType),t.PolyTyp==x.PolyType.ptSubject?(u=this.m_SubjFillType,q=this.m_ClipFillType):(u=this.m_ClipFillType,q=this.m_SubjFillType);var d,p;switch(h){case x.PolyFillType.pftPositive:d=i.WindCnt;break;case x.PolyFillType.pftNegative:d=-i.WindCnt;break;default:d=Math.abs(i.WindCnt);break}switch(u){case x.PolyFillType.pftPositive:p=t.WindCnt;break;case x.PolyFillType.pftNegative:p=-t.WindCnt;break;default:p=Math.abs(t.WindCnt);break}if(o&&s)a||r||d!==0&&d!=1||p!==0&&p!=1||i.PolyTyp!=t.PolyTyp&&this.m_ClipType!=x.ClipType.ctXor?this.AddLocalMaxPoly(i,t,n):(this.AddOutPt(i,n),this.AddOutPt(t,n),x.Clipper.SwapSides(i,t),x.Clipper.SwapPolyIndexes(i,t));else if(o)(p===0||p==1)&&(this.AddOutPt(i,n),x.Clipper.SwapSides(i,t),x.Clipper.SwapPolyIndexes(i,t));else if(s)(d===0||d==1)&&(this.AddOutPt(t,n),x.Clipper.SwapSides(i,t),x.Clipper.SwapPolyIndexes(i,t));else if((d===0||d==1)&&(p===0||p==1)&&!a&&!r){var f,y;switch(c){case x.PolyFillType.pftPositive:f=i.WindCnt2;break;case x.PolyFillType.pftNegative:f=-i.WindCnt2;break;default:f=Math.abs(i.WindCnt2);break}switch(q){case x.PolyFillType.pftPositive:y=t.WindCnt2;break;case x.PolyFillType.pftNegative:y=-t.WindCnt2;break;default:y=Math.abs(t.WindCnt2);break}if(i.PolyTyp!=t.PolyTyp)this.AddLocalMinPoly(i,t,n);else if(d==1&&p==1)switch(this.m_ClipType){case x.ClipType.ctIntersection:f>0&&y>0&&this.AddLocalMinPoly(i,t,n);break;case x.ClipType.ctUnion:f<=0&&y<=0&&this.AddLocalMinPoly(i,t,n);break;case x.ClipType.ctDifference:(i.PolyTyp==x.PolyType.ptClip&&f>0&&y>0||i.PolyTyp==x.PolyType.ptSubject&&f<=0&&y<=0)&&this.AddLocalMinPoly(i,t,n);break;case x.ClipType.ctXor:this.AddLocalMinPoly(i,t,n);break}else x.Clipper.SwapSides(i,t)}a!=r&&(a&&i.OutIdx>=0||r&&t.OutIdx>=0)&&(x.Clipper.SwapSides(i,t),x.Clipper.SwapPolyIndexes(i,t)),a&&this.DeleteFromAEL(i),r&&this.DeleteFromAEL(t)};x.Clipper.prototype.DeleteFromAEL=function(i){var t=i.PrevInAEL,n=i.NextInAEL;t===null&&n===null&&i!=this.m_ActiveEdges||(t!==null?t.NextInAEL=n:this.m_ActiveEdges=n,n!==null&&(n.PrevInAEL=t),i.NextInAEL=null,i.PrevInAEL=null)};x.Clipper.prototype.DeleteFromSEL=function(i){var t=i.PrevInSEL,n=i.NextInSEL;t===null&&n===null&&i!=this.m_SortedEdges||(t!==null?t.NextInSEL=n:this.m_SortedEdges=n,n!==null&&(n.PrevInSEL=t),i.NextInSEL=null,i.PrevInSEL=null)};x.Clipper.prototype.UpdateEdgeIntoAEL=function(i){i.NextInLML===null&&x.Error("UpdateEdgeIntoAEL: invalid call");var t=i.PrevInAEL,n=i.NextInAEL;return i.NextInLML.OutIdx=i.OutIdx,t!==null?t.NextInAEL=i.NextInLML:this.m_ActiveEdges=i.NextInLML,n!==null&&(n.PrevInAEL=i.NextInLML),i.NextInLML.Side=i.Side,i.NextInLML.WindDelta=i.WindDelta,i.NextInLML.WindCnt=i.WindCnt,i.NextInLML.WindCnt2=i.WindCnt2,i=i.NextInLML,i.Curr.X=i.Bot.X,i.Curr.Y=i.Bot.Y,i.PrevInAEL=t,i.NextInAEL=n,x.ClipperBase.IsHorizontal(i)||this.InsertScanbeam(i.Top.Y),i};x.Clipper.prototype.ProcessHorizontals=function(i){for(var t=this.m_SortedEdges;t!==null;)this.DeleteFromSEL(t),this.ProcessHorizontal(t,i),t=this.m_SortedEdges};x.Clipper.prototype.GetHorzDirection=function(i,t){i.Bot.X<i.Top.X?(t.Left=i.Bot.X,t.Right=i.Top.X,t.Dir=x.Direction.dLeftToRight):(t.Left=i.Top.X,t.Right=i.Bot.X,t.Dir=x.Direction.dRightToLeft)};x.Clipper.prototype.PrepareHorzJoins=function(i,t){var n=this.m_PolyOuts[i.OutIdx].Pts;i.Side!=x.EdgeSide.esLeft&&(n=n.Prev),t&&(x.IntPoint.op_Equality(n.Pt,i.Top)?this.AddGhostJoin(n,i.Bot):this.AddGhostJoin(n,i.Top))};x.Clipper.prototype.ProcessHorizontal=function(i,t){var n={Dir:null,Left:null,Right:null};this.GetHorzDirection(i,n);for(var l=n.Dir,a=n.Left,r=n.Right,o=i,s=null;o.NextInLML!==null&&x.ClipperBase.IsHorizontal(o.NextInLML);)o=o.NextInLML;for(o.NextInLML===null&&(s=this.GetMaximaPair(o));;){for(var m=i==o,h=this.GetNextInAEL(i,l);h!==null&&!(h.Curr.X==i.Top.X&&i.NextInLML!==null&&h.Dx<i.NextInLML.Dx);){var u=this.GetNextInAEL(h,l);if(l==x.Direction.dLeftToRight&&h.Curr.X<=r||l==x.Direction.dRightToLeft&&h.Curr.X>=a){if(i.OutIdx>=0&&i.WindDelta!=0&&this.PrepareHorzJoins(i,t),h==s&&m){l==x.Direction.dLeftToRight?this.IntersectEdges(i,h,h.Top,!1):this.IntersectEdges(h,i,h.Top,!1),s.OutIdx>=0&&x.Error("ProcessHorizontal error");return}else if(l==x.Direction.dLeftToRight){var c=new x.IntPoint(h.Curr.X,i.Curr.Y);this.IntersectEdges(i,h,c,!0)}else{var c=new x.IntPoint(h.Curr.X,i.Curr.Y);this.IntersectEdges(h,i,c,!0)}this.SwapPositionsInAEL(i,h)}else if(l==x.Direction.dLeftToRight&&h.Curr.X>=r||l==x.Direction.dRightToLeft&&h.Curr.X<=a)break;h=u}if(i.OutIdx>=0&&i.WindDelta!==0&&this.PrepareHorzJoins(i,t),i.NextInLML!==null&&x.ClipperBase.IsHorizontal(i.NextInLML)){i=this.UpdateEdgeIntoAEL(i),i.OutIdx>=0&&this.AddOutPt(i,i.Bot);var n={Dir:l,Left:a,Right:r};this.GetHorzDirection(i,n),l=n.Dir,a=n.Left,r=n.Right}else break}if(i.NextInLML!==null)if(i.OutIdx>=0){var q=this.AddOutPt(i,i.Top);if(i=this.UpdateEdgeIntoAEL(i),i.WindDelta===0)return;var d=i.PrevInAEL,u=i.NextInAEL;if(d!==null&&d.Curr.X==i.Bot.X&&d.Curr.Y==i.Bot.Y&&d.WindDelta!==0&&d.OutIdx>=0&&d.Curr.Y>d.Top.Y&&x.ClipperBase.SlopesEqual(i,d,this.m_UseFullRange)){var p=this.AddOutPt(d,i.Bot);this.AddJoin(q,p,i.Top)}else if(u!==null&&u.Curr.X==i.Bot.X&&u.Curr.Y==i.Bot.Y&&u.WindDelta!==0&&u.OutIdx>=0&&u.Curr.Y>u.Top.Y&&x.ClipperBase.SlopesEqual(i,u,this.m_UseFullRange)){var p=this.AddOutPt(u,i.Bot);this.AddJoin(q,p,i.Top)}}else i=this.UpdateEdgeIntoAEL(i);else s!==null?s.OutIdx>=0?(l==x.Direction.dLeftToRight?this.IntersectEdges(i,s,i.Top,!1):this.IntersectEdges(s,i,i.Top,!1),s.OutIdx>=0&&x.Error("ProcessHorizontal error")):(this.DeleteFromAEL(i),this.DeleteFromAEL(s)):(i.OutIdx>=0&&this.AddOutPt(i,i.Top),this.DeleteFromAEL(i))};x.Clipper.prototype.GetNextInAEL=function(i,t){return t==x.Direction.dLeftToRight?i.NextInAEL:i.PrevInAEL};x.Clipper.prototype.IsMinima=function(i){return i!==null&&i.Prev.NextInLML!=i&&i.Next.NextInLML!=i};x.Clipper.prototype.IsMaxima=function(i,t){return i!==null&&i.Top.Y==t&&i.NextInLML===null};x.Clipper.prototype.IsIntermediate=function(i,t){return i.Top.Y==t&&i.NextInLML!==null};x.Clipper.prototype.GetMaximaPair=function(i){var t=null;return x.IntPoint.op_Equality(i.Next.Top,i.Top)&&i.Next.NextInLML===null?t=i.Next:x.IntPoint.op_Equality(i.Prev.Top,i.Top)&&i.Prev.NextInLML===null&&(t=i.Prev),t!==null&&(t.OutIdx==-2||t.NextInAEL==t.PrevInAEL&&!x.ClipperBase.IsHorizontal(t))?null:t};x.Clipper.prototype.ProcessIntersections=function(i,t){if(this.m_ActiveEdges==null)return!0;try{if(this.BuildIntersectList(i,t),this.m_IntersectList.length==0)return!0;if(this.m_IntersectList.length==1||this.FixupIntersectionOrder())this.ProcessIntersectList();else return!1}catch{this.m_SortedEdges=null,this.m_IntersectList.length=0,x.Error("ProcessIntersections error")}return this.m_SortedEdges=null,!0};x.Clipper.prototype.BuildIntersectList=function(i,t){if(this.m_ActiveEdges!==null){var n=this.m_ActiveEdges;for(this.m_SortedEdges=n;n!==null;)n.PrevInSEL=n.PrevInAEL,n.NextInSEL=n.NextInAEL,n.Curr.X=x.Clipper.TopX(n,t),n=n.NextInAEL;for(var l=!0;l&&this.m_SortedEdges!==null;){for(l=!1,n=this.m_SortedEdges;n.NextInSEL!==null;){var a=n.NextInSEL,r=new x.IntPoint;if(n.Curr.X>a.Curr.X){!this.IntersectPoint(n,a,r)&&n.Curr.X>a.Curr.X+1&&x.Error("Intersection error"),r.Y>i&&(r.Y=i,Math.abs(n.Dx)>Math.abs(a.Dx)?r.X=x.Clipper.TopX(a,i):r.X=x.Clipper.TopX(n,i));var o=new x.IntersectNode;o.Edge1=n,o.Edge2=a,o.Pt.X=r.X,o.Pt.Y=r.Y,this.m_IntersectList.push(o),this.SwapPositionsInSEL(n,a),l=!0}else n=a}if(n.PrevInSEL!==null)n.PrevInSEL.NextInSEL=null;else break}this.m_SortedEdges=null}};x.Clipper.prototype.EdgesAdjacent=function(i){return i.Edge1.NextInSEL==i.Edge2||i.Edge1.PrevInSEL==i.Edge2};x.Clipper.IntersectNodeSort=function(i,t){return t.Pt.Y-i.Pt.Y};x.Clipper.prototype.FixupIntersectionOrder=function(){this.m_IntersectList.sort(this.m_IntersectNodeComparer),this.CopyAELToSEL();for(var i=this.m_IntersectList.length,t=0;t<i;t++){if(!this.EdgesAdjacent(this.m_IntersectList[t])){for(var n=t+1;n<i&&!this.EdgesAdjacent(this.m_IntersectList[n]);)n++;if(n==i)return!1;var l=this.m_IntersectList[t];this.m_IntersectList[t]=this.m_IntersectList[n],this.m_IntersectList[n]=l}this.SwapPositionsInSEL(this.m_IntersectList[t].Edge1,this.m_IntersectList[t].Edge2)}return!0};x.Clipper.prototype.ProcessIntersectList=function(){for(var i=0,t=this.m_IntersectList.length;i<t;i++){var n=this.m_IntersectList[i];this.IntersectEdges(n.Edge1,n.Edge2,n.Pt,!0),this.SwapPositionsInAEL(n.Edge1,n.Edge2)}this.m_IntersectList.length=0};var UV=function(i){return i<0?Math.ceil(i-.5):Math.round(i)},HV=function(i){return i<0?Math.ceil(i-.5):Math.floor(i+.5)},GV=function(i){return i<0?-Math.round(Math.abs(i)):Math.round(i)},WV=function(i){return i<0?(i-=.5,i<-2147483648?Math.ceil(i):i|0):(i+=.5,i>2147483647?Math.floor(i):i|0)};xe.msie?x.Clipper.Round=UV:xe.chromium?x.Clipper.Round=GV:xe.safari?x.Clipper.Round=WV:x.Clipper.Round=HV;x.Clipper.TopX=function(i,t){return t==i.Top.Y?i.Top.X:i.Bot.X+x.Clipper.Round(i.Dx*(t-i.Bot.Y))};x.Clipper.prototype.IntersectPoint=function(i,t,n){n.X=0,n.Y=0;var l,a;if(x.ClipperBase.SlopesEqual(i,t,this.m_UseFullRange)||i.Dx==t.Dx)return t.Bot.Y>i.Bot.Y?(n.X=t.Bot.X,n.Y=t.Bot.Y):(n.X=i.Bot.X,n.Y=i.Bot.Y),!1;if(i.Delta.X===0)n.X=i.Bot.X,x.ClipperBase.IsHorizontal(t)?n.Y=t.Bot.Y:(a=t.Bot.Y-t.Bot.X/t.Dx,n.Y=x.Clipper.Round(n.X/t.Dx+a));else if(t.Delta.X===0)n.X=t.Bot.X,x.ClipperBase.IsHorizontal(i)?n.Y=i.Bot.Y:(l=i.Bot.Y-i.Bot.X/i.Dx,n.Y=x.Clipper.Round(n.X/i.Dx+l));else{l=i.Bot.X-i.Bot.Y*i.Dx,a=t.Bot.X-t.Bot.Y*t.Dx;var r=(a-l)/(i.Dx-t.Dx);n.Y=x.Clipper.Round(r),Math.abs(i.Dx)<Math.abs(t.Dx)?n.X=x.Clipper.Round(i.Dx*r+l):n.X=x.Clipper.Round(t.Dx*r+a)}if(n.Y<i.Top.Y||n.Y<t.Top.Y){if(i.Top.Y>t.Top.Y)return n.Y=i.Top.Y,n.X=x.Clipper.TopX(t,i.Top.Y),n.X<i.Top.X;n.Y=t.Top.Y,Math.abs(i.Dx)<Math.abs(t.Dx)?n.X=x.Clipper.TopX(i,n.Y):n.X=x.Clipper.TopX(t,n.Y)}return!0};x.Clipper.prototype.ProcessEdgesAtTopOfScanbeam=function(i){for(var t=this.m_ActiveEdges;t!==null;){var n=this.IsMaxima(t,i);if(n){var l=this.GetMaximaPair(t);n=l===null||!x.ClipperBase.IsHorizontal(l)}if(n){var a=t.PrevInAEL;this.DoMaxima(t),a===null?t=this.m_ActiveEdges:t=a.NextInAEL}else{if(this.IsIntermediate(t,i)&&x.ClipperBase.IsHorizontal(t.NextInLML)?(t=this.UpdateEdgeIntoAEL(t),t.OutIdx>=0&&this.AddOutPt(t,t.Bot),this.AddEdgeToSEL(t)):(t.Curr.X=x.Clipper.TopX(t,i),t.Curr.Y=i),this.StrictlySimple){var a=t.PrevInAEL;if(t.OutIdx>=0&&t.WindDelta!==0&&a!==null&&a.OutIdx>=0&&a.Curr.X==t.Curr.X&&a.WindDelta!==0){var r=this.AddOutPt(a,t.Curr),o=this.AddOutPt(t,t.Curr);this.AddJoin(r,o,t.Curr)}}t=t.NextInAEL}}for(this.ProcessHorizontals(!0),t=this.m_ActiveEdges;t!==null;){if(this.IsIntermediate(t,i)){var r=null;t.OutIdx>=0&&(r=this.AddOutPt(t,t.Top)),t=this.UpdateEdgeIntoAEL(t);var a=t.PrevInAEL,s=t.NextInAEL;if(a!==null&&a.Curr.X==t.Bot.X&&a.Curr.Y==t.Bot.Y&&r!==null&&a.OutIdx>=0&&a.Curr.Y>a.Top.Y&&x.ClipperBase.SlopesEqual(t,a,this.m_UseFullRange)&&t.WindDelta!==0&&a.WindDelta!==0){var o=this.AddOutPt(a,t.Bot);this.AddJoin(r,o,t.Top)}else if(s!==null&&s.Curr.X==t.Bot.X&&s.Curr.Y==t.Bot.Y&&r!==null&&s.OutIdx>=0&&s.Curr.Y>s.Top.Y&&x.ClipperBase.SlopesEqual(t,s,this.m_UseFullRange)&&t.WindDelta!==0&&s.WindDelta!==0){var o=this.AddOutPt(s,t.Bot);this.AddJoin(r,o,t.Top)}}t=t.NextInAEL}};x.Clipper.prototype.DoMaxima=function(i){var t=this.GetMaximaPair(i);if(t===null){i.OutIdx>=0&&this.AddOutPt(i,i.Top),this.DeleteFromAEL(i);return}for(var n=i.NextInAEL,l=!0;n!==null&&n!=t;)this.IntersectEdges(i,n,i.Top,!0),this.SwapPositionsInAEL(i,n),n=i.NextInAEL;i.OutIdx==-1&&t.OutIdx==-1?(this.DeleteFromAEL(i),this.DeleteFromAEL(t)):i.OutIdx>=0&&t.OutIdx>=0?this.IntersectEdges(i,t,i.Top,!1):l&&i.WindDelta===0?(i.OutIdx>=0&&(this.AddOutPt(i,i.Top),i.OutIdx=-1),this.DeleteFromAEL(i),t.OutIdx>=0&&(this.AddOutPt(t,i.Top),t.OutIdx=-1),this.DeleteFromAEL(t)):x.Error("DoMaxima error")};x.Clipper.ReversePaths=function(i){for(var t=0,n=i.length;t<n;t++)i[t].reverse()};x.Clipper.Orientation=function(i){return x.Clipper.Area(i)>=0};x.Clipper.prototype.PointCount=function(i){if(i===null)return 0;var t=0,n=i;do t++,n=n.Next;while(n!=i);return t};x.Clipper.prototype.BuildResult=function(i){x.Clear(i);for(var t=0,n=this.m_PolyOuts.length;t<n;t++){var l=this.m_PolyOuts[t];if(l.Pts!==null){var a=l.Pts.Prev,r=this.PointCount(a);if(!(r<2)){for(var o=new Array(r),s=0;s<r;s++)o[s]=a.Pt,a=a.Prev;i.push(o)}}}};x.Clipper.prototype.BuildResult2=function(i){i.Clear();for(var t=0,n=this.m_PolyOuts.length;t<n;t++){var l=this.m_PolyOuts[t],a=this.PointCount(l.Pts);if(!(l.IsOpen&&a<2||!l.IsOpen&&a<3)){this.FixHoleLinkage(l);var r=new x.PolyNode;i.m_AllPolys.push(r),l.PolyNode=r,r.m_polygon.length=a;for(var o=l.Pts.Prev,s=0;s<a;s++)r.m_polygon[s]=o.Pt,o=o.Prev}}for(var t=0,n=this.m_PolyOuts.length;t<n;t++){var l=this.m_PolyOuts[t];l.PolyNode!==null&&(l.IsOpen?(l.PolyNode.IsOpen=!0,i.AddChild(l.PolyNode)):l.FirstLeft!==null&&l.FirstLeft.PolyNode!=null?l.FirstLeft.PolyNode.AddChild(l.PolyNode):i.AddChild(l.PolyNode))}};x.Clipper.prototype.FixupOutPolygon=function(i){var t=null;i.BottomPt=null;for(var n=i.Pts;;){if(n.Prev==n||n.Prev==n.Next){this.DisposeOutPts(n),i.Pts=null;return}if(x.IntPoint.op_Equality(n.Pt,n.Next.Pt)||x.IntPoint.op_Equality(n.Pt,n.Prev.Pt)||x.ClipperBase.SlopesEqual(n.Prev.Pt,n.Pt,n.Next.Pt,this.m_UseFullRange)&&(!this.PreserveCollinear||!this.Pt2IsBetweenPt1AndPt3(n.Prev.Pt,n.Pt,n.Next.Pt))){t=null;var l=n;n.Prev.Next=n.Next,n.Next.Prev=n.Prev,n=n.Prev,l=null}else{if(n==t)break;t===null&&(t=n),n=n.Next}}i.Pts=n};x.Clipper.prototype.DupOutPt=function(i,t){var n=new x.OutPt;return n.Pt.X=i.Pt.X,n.Pt.Y=i.Pt.Y,n.Idx=i.Idx,t?(n.Next=i.Next,n.Prev=i,i.Next.Prev=n,i.Next=n):(n.Prev=i.Prev,n.Next=i,i.Prev.Next=n,i.Prev=n),n};x.Clipper.prototype.GetOverlap=function(i,t,n,l,a){return i<t?n<l?(a.Left=Math.max(i,n),a.Right=Math.min(t,l)):(a.Left=Math.max(i,l),a.Right=Math.min(t,n)):n<l?(a.Left=Math.max(t,n),a.Right=Math.min(i,l)):(a.Left=Math.max(t,l),a.Right=Math.min(i,n)),a.Left<a.Right};x.Clipper.prototype.JoinHorz=function(i,t,n,l,a,r){var o=i.Pt.X>t.Pt.X?x.Direction.dRightToLeft:x.Direction.dLeftToRight,s=n.Pt.X>l.Pt.X?x.Direction.dRightToLeft:x.Direction.dLeftToRight;if(o==s)return!1;if(o==x.Direction.dLeftToRight){for(;i.Next.Pt.X<=a.X&&i.Next.Pt.X>=i.Pt.X&&i.Next.Pt.Y==a.Y;)i=i.Next;r&&i.Pt.X!=a.X&&(i=i.Next),t=this.DupOutPt(i,!r),x.IntPoint.op_Inequality(t.Pt,a)&&(i=t,i.Pt.X=a.X,i.Pt.Y=a.Y,t=this.DupOutPt(i,!r))}else{for(;i.Next.Pt.X>=a.X&&i.Next.Pt.X<=i.Pt.X&&i.Next.Pt.Y==a.Y;)i=i.Next;!r&&i.Pt.X!=a.X&&(i=i.Next),t=this.DupOutPt(i,r),x.IntPoint.op_Inequality(t.Pt,a)&&(i=t,i.Pt.X=a.X,i.Pt.Y=a.Y,t=this.DupOutPt(i,r))}if(s==x.Direction.dLeftToRight){for(;n.Next.Pt.X<=a.X&&n.Next.Pt.X>=n.Pt.X&&n.Next.Pt.Y==a.Y;)n=n.Next;r&&n.Pt.X!=a.X&&(n=n.Next),l=this.DupOutPt(n,!r),x.IntPoint.op_Inequality(l.Pt,a)&&(n=l,n.Pt.X=a.X,n.Pt.Y=a.Y,l=this.DupOutPt(n,!r))}else{for(;n.Next.Pt.X>=a.X&&n.Next.Pt.X<=n.Pt.X&&n.Next.Pt.Y==a.Y;)n=n.Next;!r&&n.Pt.X!=a.X&&(n=n.Next),l=this.DupOutPt(n,r),x.IntPoint.op_Inequality(l.Pt,a)&&(n=l,n.Pt.X=a.X,n.Pt.Y=a.Y,l=this.DupOutPt(n,r))}return o==x.Direction.dLeftToRight==r?(i.Prev=n,n.Next=i,t.Next=l,l.Prev=t):(i.Next=n,n.Prev=i,t.Prev=l,l.Next=t),!0};x.Clipper.prototype.JoinPoints=function(i,t,n){var l=i.OutPt1,a=new x.OutPt,r=i.OutPt2,o=new x.OutPt,s=i.OutPt1.Pt.Y==i.OffPt.Y;if(s&&x.IntPoint.op_Equality(i.OffPt,i.OutPt1.Pt)&&x.IntPoint.op_Equality(i.OffPt,i.OutPt2.Pt)){for(a=i.OutPt1.Next;a!=l&&x.IntPoint.op_Equality(a.Pt,i.OffPt);)a=a.Next;var m=a.Pt.Y>i.OffPt.Y;for(o=i.OutPt2.Next;o!=r&&x.IntPoint.op_Equality(o.Pt,i.OffPt);)o=o.Next;var h=o.Pt.Y>i.OffPt.Y;return m==h?!1:m?(a=this.DupOutPt(l,!1),o=this.DupOutPt(r,!0),l.Prev=r,r.Next=l,a.Next=o,o.Prev=a,i.OutPt1=l,i.OutPt2=a,!0):(a=this.DupOutPt(l,!0),o=this.DupOutPt(r,!1),l.Next=r,r.Prev=l,a.Prev=o,o.Next=a,i.OutPt1=l,i.OutPt2=a,!0)}else if(s){for(a=l;l.Prev.Pt.Y==l.Pt.Y&&l.Prev!=a&&l.Prev!=r;)l=l.Prev;for(;a.Next.Pt.Y==a.Pt.Y&&a.Next!=l&&a.Next!=r;)a=a.Next;if(a.Next==l||a.Next==r)return!1;for(o=r;r.Prev.Pt.Y==r.Pt.Y&&r.Prev!=o&&r.Prev!=a;)r=r.Prev;for(;o.Next.Pt.Y==o.Pt.Y&&o.Next!=r&&o.Next!=l;)o=o.Next;if(o.Next==r||o.Next==l)return!1;var u={Left:null,Right:null};if(!this.GetOverlap(l.Pt.X,a.Pt.X,r.Pt.X,o.Pt.X,u))return!1;var c=u.Left,q=u.Right,d=new x.IntPoint,p;return l.Pt.X>=c&&l.Pt.X<=q?(d.X=l.Pt.X,d.Y=l.Pt.Y,p=l.Pt.X>a.Pt.X):r.Pt.X>=c&&r.Pt.X<=q?(d.X=r.Pt.X,d.Y=r.Pt.Y,p=r.Pt.X>o.Pt.X):a.Pt.X>=c&&a.Pt.X<=q?(d.X=a.Pt.X,d.Y=a.Pt.Y,p=a.Pt.X>l.Pt.X):(d.X=o.Pt.X,d.Y=o.Pt.Y,p=o.Pt.X>r.Pt.X),i.OutPt1=l,i.OutPt2=r,this.JoinHorz(l,a,r,o,d,p)}else{for(a=l.Next;x.IntPoint.op_Equality(a.Pt,l.Pt)&&a!=l;)a=a.Next;var f=a.Pt.Y>l.Pt.Y||!x.ClipperBase.SlopesEqual(l.Pt,a.Pt,i.OffPt,this.m_UseFullRange);if(f){for(a=l.Prev;x.IntPoint.op_Equality(a.Pt,l.Pt)&&a!=l;)a=a.Prev;if(a.Pt.Y>l.Pt.Y||!x.ClipperBase.SlopesEqual(l.Pt,a.Pt,i.OffPt,this.m_UseFullRange))return!1}for(o=r.Next;x.IntPoint.op_Equality(o.Pt,r.Pt)&&o!=r;)o=o.Next;var y=o.Pt.Y>r.Pt.Y||!x.ClipperBase.SlopesEqual(r.Pt,o.Pt,i.OffPt,this.m_UseFullRange);if(y){for(o=r.Prev;x.IntPoint.op_Equality(o.Pt,r.Pt)&&o!=r;)o=o.Prev;if(o.Pt.Y>r.Pt.Y||!x.ClipperBase.SlopesEqual(r.Pt,o.Pt,i.OffPt,this.m_UseFullRange))return!1}return a==l||o==r||a==o||t==n&&f==y?!1:f?(a=this.DupOutPt(l,!1),o=this.DupOutPt(r,!0),l.Prev=r,r.Next=l,a.Next=o,o.Prev=a,i.OutPt1=l,i.OutPt2=a,!0):(a=this.DupOutPt(l,!0),o=this.DupOutPt(r,!1),l.Next=r,r.Prev=l,a.Prev=o,o.Next=a,i.OutPt1=l,i.OutPt2=a,!0)}};x.Clipper.GetBounds=function(i){for(var t=0,n=i.length;t<n&&i[t].length==0;)t++;if(t==n)return new x.IntRect(0,0,0,0);var l=new x.IntRect;for(l.left=i[t][0].X,l.right=l.left,l.top=i[t][0].Y,l.bottom=l.top;t<n;t++)for(var a=0,r=i[t].length;a<r;a++)i[t][a].X<l.left?l.left=i[t][a].X:i[t][a].X>l.right&&(l.right=i[t][a].X),i[t][a].Y<l.top?l.top=i[t][a].Y:i[t][a].Y>l.bottom&&(l.bottom=i[t][a].Y);return l};x.Clipper.prototype.GetBounds2=function(i){var t=i,n=new x.IntRect;for(n.left=i.Pt.X,n.right=i.Pt.X,n.top=i.Pt.Y,n.bottom=i.Pt.Y,i=i.Next;i!=t;)i.Pt.X<n.left&&(n.left=i.Pt.X),i.Pt.X>n.right&&(n.right=i.Pt.X),i.Pt.Y<n.top&&(n.top=i.Pt.Y),i.Pt.Y>n.bottom&&(n.bottom=i.Pt.Y),i=i.Next;return n};x.Clipper.PointInPolygon=function(i,t){var n=0,l=t.length;if(l<3)return 0;for(var a=t[0],r=1;r<=l;++r){var o=r==l?t[0]:t[r];if(o.Y==i.Y&&(o.X==i.X||a.Y==i.Y&&o.X>i.X==a.X<i.X))return-1;if(a.Y<i.Y!=o.Y<i.Y){if(a.X>=i.X)if(o.X>i.X)n=1-n;else{var s=(a.X-i.X)*(o.Y-i.Y)-(o.X-i.X)*(a.Y-i.Y);if(s==0)return-1;s>0==o.Y>a.Y&&(n=1-n)}else if(o.X>i.X){var s=(a.X-i.X)*(o.Y-i.Y)-(o.X-i.X)*(a.Y-i.Y);if(s==0)return-1;s>0==o.Y>a.Y&&(n=1-n)}}a=o}return n};x.Clipper.prototype.PointInPolygon=function(i,t){for(var n=0,l=t;;){var a=t.Pt.X,r=t.Pt.Y,o=t.Next.Pt.X,s=t.Next.Pt.Y;if(s==i.Y&&(o==i.X||r==i.Y&&o>i.X==a<i.X))return-1;if(r<i.Y!=s<i.Y){if(a>=i.X)if(o>i.X)n=1-n;else{var m=(a-i.X)*(s-i.Y)-(o-i.X)*(r-i.Y);if(m==0)return-1;m>0==s>r&&(n=1-n)}else if(o>i.X){var m=(a-i.X)*(s-i.Y)-(o-i.X)*(r-i.Y);if(m==0)return-1;m>0==s>r&&(n=1-n)}}if(t=t.Next,l==t)break}return n};x.Clipper.prototype.Poly2ContainsPoly1=function(i,t){var n=i;do{var l=this.PointInPolygon(n.Pt,t);if(l>=0)return l!=0;n=n.Next}while(n!=i);return!0};x.Clipper.prototype.FixupFirstLefts1=function(i,t){for(var n=0,l=this.m_PolyOuts.length;n<l;n++){var a=this.m_PolyOuts[n];a.Pts!==null&&a.FirstLeft==i&&this.Poly2ContainsPoly1(a.Pts,t.Pts)&&(a.FirstLeft=t)}};x.Clipper.prototype.FixupFirstLefts2=function(i,t){for(var n=0,l=this.m_PolyOuts,a=l.length,r=l[n];n<a;n++,r=l[n])r.FirstLeft==i&&(r.FirstLeft=t)};x.Clipper.ParseFirstLeft=function(i){for(;i!=null&&i.Pts==null;)i=i.FirstLeft;return i};x.Clipper.prototype.JoinCommonEdges=function(){for(var i=0,t=this.m_Joins.length;i<t;i++){var n=this.m_Joins[i],l=this.GetOutRec(n.OutPt1.Idx),a=this.GetOutRec(n.OutPt2.Idx);if(!(l.Pts==null||a.Pts==null)){var r;if(l==a?r=l:this.Param1RightOfParam2(l,a)?r=a:this.Param1RightOfParam2(a,l)?r=l:r=this.GetLowermostRec(l,a),!!this.JoinPoints(n,l,a))if(l==a){if(l.Pts=n.OutPt1,l.BottomPt=null,a=this.CreateOutRec(),a.Pts=n.OutPt2,this.UpdateOutPtIdxs(a),this.m_UsingPolyTree)for(var o=0,s=this.m_PolyOuts.length;o<s-1;o++){var m=this.m_PolyOuts[o];m.Pts==null||x.Clipper.ParseFirstLeft(m.FirstLeft)!=l||m.IsHole==l.IsHole||this.Poly2ContainsPoly1(m.Pts,n.OutPt2)&&(m.FirstLeft=a)}this.Poly2ContainsPoly1(a.Pts,l.Pts)?(a.IsHole=!l.IsHole,a.FirstLeft=l,this.m_UsingPolyTree&&this.FixupFirstLefts2(a,l),(a.IsHole^this.ReverseSolution)==this.Area(a)>0&&this.ReversePolyPtLinks(a.Pts)):this.Poly2ContainsPoly1(l.Pts,a.Pts)?(a.IsHole=l.IsHole,l.IsHole=!a.IsHole,a.FirstLeft=l.FirstLeft,l.FirstLeft=a,this.m_UsingPolyTree&&this.FixupFirstLefts2(l,a),(l.IsHole^this.ReverseSolution)==this.Area(l)>0&&this.ReversePolyPtLinks(l.Pts)):(a.IsHole=l.IsHole,a.FirstLeft=l.FirstLeft,this.m_UsingPolyTree&&this.FixupFirstLefts1(l,a))}else a.Pts=null,a.BottomPt=null,a.Idx=l.Idx,l.IsHole=r.IsHole,r==a&&(l.FirstLeft=a.FirstLeft),a.FirstLeft=l,this.m_UsingPolyTree&&this.FixupFirstLefts2(a,l)}}};x.Clipper.prototype.UpdateOutPtIdxs=function(i){var t=i.Pts;do t.Idx=i.Idx,t=t.Prev;while(t!=i.Pts)};x.Clipper.prototype.DoSimplePolygons=function(){for(var i=0;i<this.m_PolyOuts.length;){var t=this.m_PolyOuts[i++],n=t.Pts;if(n!==null)do{for(var l=n.Next;l!=t.Pts;){if(x.IntPoint.op_Equality(n.Pt,l.Pt)&&l.Next!=n&&l.Prev!=n){var a=n.Prev,r=l.Prev;n.Prev=r,r.Next=n,l.Prev=a,a.Next=l,t.Pts=n;var o=this.CreateOutRec();o.Pts=l,this.UpdateOutPtIdxs(o),this.Poly2ContainsPoly1(o.Pts,t.Pts)?(o.IsHole=!t.IsHole,o.FirstLeft=t):this.Poly2ContainsPoly1(t.Pts,o.Pts)?(o.IsHole=t.IsHole,t.IsHole=!o.IsHole,o.FirstLeft=t.FirstLeft,t.FirstLeft=o):(o.IsHole=t.IsHole,o.FirstLeft=t.FirstLeft),l=n}l=l.Next}n=n.Next}while(n!=t.Pts)}};x.Clipper.Area=function(i){var t=i.length;if(t<3)return 0;for(var n=0,l=0,a=t-1;l<t;++l)n+=(i[a].X+i[l].X)*(i[a].Y-i[l].Y),a=l;return-n*.5};x.Clipper.prototype.Area=function(i){var t=i.Pts;if(t==null)return 0;var n=0;do n=n+(t.Prev.Pt.X+t.Pt.X)*(t.Prev.Pt.Y-t.Pt.Y),t=t.Next;while(t!=i.Pts);return n*.5};wy&&(x.Clipper.OffsetPaths=function(i,t,n,l,a){var r=new x.Paths,o=new x.ClipperOffset(a,a);return o.AddPaths(i,n,l),o.Execute(r,t),r});x.Clipper.SimplifyPolygon=function(i,t){var n=new Array,l=new x.Clipper(0);return l.StrictlySimple=!0,l.AddPath(i,x.PolyType.ptSubject,!0),l.Execute(x.ClipType.ctUnion,n,t,t),n};x.Clipper.SimplifyPolygons=function(i,t){typeof t>"u"&&(t=x.PolyFillType.pftEvenOdd);var n=new Array,l=new x.Clipper(0);return l.StrictlySimple=!0,l.AddPaths(i,x.PolyType.ptSubject,!0),l.Execute(x.ClipType.ctUnion,n,t,t),n};x.Clipper.DistanceSqrd=function(i,t){var n=i.X-t.X,l=i.Y-t.Y;return n*n+l*l};x.Clipper.DistanceFromLineSqrd=function(i,t,n){var l=t.Y-n.Y,a=n.X-t.X,r=l*t.X+a*t.Y;return r=l*i.X+a*i.Y-r,r*r/(l*l+a*a)};x.Clipper.SlopesNearCollinear=function(i,t,n,l){return x.Clipper.DistanceFromLineSqrd(t,i,n)<l};x.Clipper.PointsAreClose=function(i,t,n){var l=i.X-t.X,a=i.Y-t.Y;return l*l+a*a<=n};x.Clipper.ExcludeOp=function(i){var t=i.Prev;return t.Next=i.Next,i.Next.Prev=t,t.Idx=0,t};x.Clipper.CleanPolygon=function(i,t){typeof t>"u"&&(t=1.415);var n=i.length;if(n==0)return new Array;for(var l=new Array(n),a=0;a<n;++a)l[a]=new x.OutPt;for(var a=0;a<n;++a)l[a].Pt=i[a],l[a].Next=l[(a+1)%n],l[a].Next.Prev=l[a],l[a].Idx=0;for(var r=t*t,o=l[0];o.Idx==0&&o.Next!=o.Prev;)x.Clipper.PointsAreClose(o.Pt,o.Prev.Pt,r)?(o=x.Clipper.ExcludeOp(o),n--):x.Clipper.PointsAreClose(o.Prev.Pt,o.Next.Pt,r)?(x.Clipper.ExcludeOp(o.Next),o=x.Clipper.ExcludeOp(o),n-=2):x.Clipper.SlopesNearCollinear(o.Prev.Pt,o.Pt,o.Next.Pt,r)?(o=x.Clipper.ExcludeOp(o),n--):(o.Idx=1,o=o.Next);n<3&&(n=0);for(var s=new Array(n),a=0;a<n;++a)s[a]=new x.IntPoint(o.Pt),o=o.Next;return l=null,s};x.Clipper.CleanPolygons=function(i,t){for(var n=new Array(i.length),l=0,a=i.length;l<a;l++)n[l]=x.Clipper.CleanPolygon(i[l],t);return n};x.Clipper.Minkowski=function(i,t,n,l){var a=l?1:0,r=i.length,o=t.length,s=new Array;if(n)for(var m=0;m<o;m++){for(var h=new Array(r),u=0,c=i.length,q=i[u];u<c;u++,q=i[u])h[u]=new x.IntPoint(t[m].X+q.X,t[m].Y+q.Y);s.push(h)}else for(var m=0;m<o;m++){for(var h=new Array(r),u=0,c=i.length,q=i[u];u<c;u++,q=i[u])h[u]=new x.IntPoint(t[m].X-q.X,t[m].Y-q.Y);s.push(h)}for(var d=new Array,m=0;m<o-1+a;m++)for(var u=0;u<r;u++){var p=new Array;p.push(s[m%o][u%r]),p.push(s[(m+1)%o][u%r]),p.push(s[(m+1)%o][(u+1)%r]),p.push(s[m%o][(u+1)%r]),x.Clipper.Orientation(p)||p.reverse(),d.push(p)}var f=new x.Clipper(0);return f.AddPaths(d,x.PolyType.ptSubject,!0),f.Execute(x.ClipType.ctUnion,s,x.PolyFillType.pftNonZero,x.PolyFillType.pftNonZero),s};x.Clipper.MinkowskiSum=function(){var i=arguments,t=i.length;if(t==3){var n=i[0],l=i[1],a=i[2];return x.Clipper.Minkowski(n,l,!0,a)}else if(t==4){for(var n=i[0],r=i[1],o=i[2],a=i[3],s=new x.Clipper,m,h=0,u=r.length;h<u;++h){var m=x.Clipper.Minkowski(n,r[h],!0,a);s.AddPaths(m,x.PolyType.ptSubject,!0)}a&&s.AddPaths(r,x.PolyType.ptClip,!0);var c=new x.Paths;return s.Execute(x.ClipType.ctUnion,c,o,o),c}};x.Clipper.MinkowskiDiff=function(i,t,n){return x.Clipper.Minkowski(i,t,!1,n)};x.Clipper.PolyTreeToPaths=function(i){var t=new Array;return x.Clipper.AddPolyNodeToPaths(i,x.Clipper.NodeType.ntAny,t),t};x.Clipper.AddPolyNodeToPaths=function(i,t,n){var l=!0;switch(t){case x.Clipper.NodeType.ntOpen:return;case x.Clipper.NodeType.ntClosed:l=!i.IsOpen;break;default:break}i.m_polygon.length>0&&l&&n.push(i.m_polygon);for(var a=0,r=i.Childs(),o=r.length,s=r[a];a<o;a++,s=r[a])x.Clipper.AddPolyNodeToPaths(s,t,n)};x.Clipper.OpenPathsFromPolyTree=function(i){for(var t=new x.Paths,n=0,l=i.ChildCount();n<l;n++)i.Childs()[n].IsOpen&&t.push(i.Childs()[n].m_polygon);return t};x.Clipper.ClosedPathsFromPolyTree=function(i){var t=new x.Paths;return x.Clipper.AddPolyNodeToPaths(i,x.Clipper.NodeType.ntClosed,t),t};Nr(x.Clipper,x.ClipperBase);x.Clipper.NodeType={ntAny:0,ntOpen:1,ntClosed:2};x.ClipperOffset=function(i,t){typeof i>"u"&&(i=2),typeof t>"u"&&(t=x.ClipperOffset.def_arc_tolerance),this.m_destPolys=new x.Paths,this.m_srcPoly=new x.Path,this.m_destPoly=new x.Path,this.m_normals=new Array,this.m_delta=0,this.m_sinA=0,this.m_sin=0,this.m_cos=0,this.m_miterLim=0,this.m_StepsPerRad=0,this.m_lowest=new x.IntPoint,this.m_polyNodes=new x.PolyNode,this.MiterLimit=i,this.ArcTolerance=t,this.m_lowest.X=-1};x.ClipperOffset.two_pi=6.28318530717959;x.ClipperOffset.def_arc_tolerance=.25;x.ClipperOffset.prototype.Clear=function(){x.Clear(this.m_polyNodes.Childs()),this.m_lowest.X=-1};x.ClipperOffset.Round=x.Clipper.Round;x.ClipperOffset.prototype.AddPath=function(i,t,n){var l=i.length-1;if(!(l<0)){var a=new x.PolyNode;if(a.m_jointype=t,a.m_endtype=n,n==x.EndType.etClosedLine||n==x.EndType.etClosedPolygon)for(;l>0&&x.IntPoint.op_Equality(i[0],i[l]);)l--;a.m_polygon.push(i[0]);for(var r=0,o=0,s=1;s<=l;s++)x.IntPoint.op_Inequality(a.m_polygon[r],i[s])&&(r++,a.m_polygon.push(i[s]),(i[s].Y>a.m_polygon[o].Y||i[s].Y==a.m_polygon[o].Y&&i[s].X<a.m_polygon[o].X)&&(o=r));if(!(n==x.EndType.etClosedPolygon&&r<2||n!=x.EndType.etClosedPolygon&&r<0)&&(this.m_polyNodes.AddChild(a),n==x.EndType.etClosedPolygon))if(this.m_lowest.X<0)this.m_lowest=new x.IntPoint(0,o);else{var m=this.m_polyNodes.Childs()[this.m_lowest.X].m_polygon[this.m_lowest.Y];(a.m_polygon[o].Y>m.Y||a.m_polygon[o].Y==m.Y&&a.m_polygon[o].X<m.X)&&(this.m_lowest=new x.IntPoint(this.m_polyNodes.ChildCount()-1,o))}}};x.ClipperOffset.prototype.AddPaths=function(i,t,n){for(var l=0,a=i.length;l<a;l++)this.AddPath(i[l],t,n)};x.ClipperOffset.prototype.FixOrientations=function(){if(this.m_lowest.X>=0&&!x.Clipper.Orientation(this.m_polyNodes.Childs()[this.m_lowest.X].m_polygon))for(var i=0;i<this.m_polyNodes.ChildCount();i++){var t=this.m_polyNodes.Childs()[i];(t.m_endtype==x.EndType.etClosedPolygon||t.m_endtype==x.EndType.etClosedLine&&x.Clipper.Orientation(t.m_polygon))&&t.m_polygon.reverse()}else for(var i=0;i<this.m_polyNodes.ChildCount();i++){var t=this.m_polyNodes.Childs()[i];t.m_endtype==x.EndType.etClosedLine&&!x.Clipper.Orientation(t.m_polygon)&&t.m_polygon.reverse()}};x.ClipperOffset.GetUnitNormal=function(i,t){var n=t.X-i.X,l=t.Y-i.Y;if(n==0&&l==0)return new x.DoublePoint(0,0);var a=1/Math.sqrt(n*n+l*l);return n*=a,l*=a,new x.DoublePoint(l,-n)};x.ClipperOffset.prototype.DoOffset=function(i){if(this.m_destPolys=new Array,this.m_delta=i,x.ClipperBase.near_zero(i)){for(var t=0;t<this.m_polyNodes.ChildCount();t++){var n=this.m_polyNodes.Childs()[t];n.m_endtype==x.EndType.etClosedPolygon&&this.m_destPolys.push(n.m_polygon)}return}this.MiterLimit>2?this.m_miterLim=2/(this.MiterLimit*this.MiterLimit):this.m_miterLim=.5;var l;this.ArcTolerance<=0?l=x.ClipperOffset.def_arc_tolerance:this.ArcTolerance>Math.abs(i)*x.ClipperOffset.def_arc_tolerance?l=Math.abs(i)*x.ClipperOffset.def_arc_tolerance:l=this.ArcTolerance;var a=3.14159265358979/Math.acos(1-l/Math.abs(i));this.m_sin=Math.sin(x.ClipperOffset.two_pi/a),this.m_cos=Math.cos(x.ClipperOffset.two_pi/a),this.m_StepsPerRad=a/x.ClipperOffset.two_pi,i<0&&(this.m_sin=-this.m_sin);for(var t=0;t<this.m_polyNodes.ChildCount();t++){var n=this.m_polyNodes.Childs()[t];this.m_srcPoly=n.m_polygon;var r=this.m_srcPoly.length;if(!(r==0||i<=0&&(r<3||n.m_endtype!=x.EndType.etClosedPolygon))){if(this.m_destPoly=new Array,r==1){if(n.m_jointype==x.JoinType.jtRound)for(var o=1,s=0,m=1;m<=a;m++){this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[0].X+o*i),x.ClipperOffset.Round(this.m_srcPoly[0].Y+s*i)));var h=o;o=o*this.m_cos-this.m_sin*s,s=h*this.m_sin+s*this.m_cos}else for(var o=-1,s=-1,m=0;m<4;++m)this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[0].X+o*i),x.ClipperOffset.Round(this.m_srcPoly[0].Y+s*i))),o<0?o=1:s<0?s=1:o=-1;this.m_destPolys.push(this.m_destPoly);continue}this.m_normals.length=0;for(var m=0;m<r-1;m++)this.m_normals.push(x.ClipperOffset.GetUnitNormal(this.m_srcPoly[m],this.m_srcPoly[m+1]));if(n.m_endtype==x.EndType.etClosedLine||n.m_endtype==x.EndType.etClosedPolygon?this.m_normals.push(x.ClipperOffset.GetUnitNormal(this.m_srcPoly[r-1],this.m_srcPoly[0])):this.m_normals.push(new x.DoublePoint(this.m_normals[r-2])),n.m_endtype==x.EndType.etClosedPolygon){for(var u=r-1,m=0;m<r;m++)u=this.OffsetPoint(m,u,n.m_jointype);this.m_destPolys.push(this.m_destPoly)}else if(n.m_endtype==x.EndType.etClosedLine){for(var u=r-1,m=0;m<r;m++)u=this.OffsetPoint(m,u,n.m_jointype);this.m_destPolys.push(this.m_destPoly),this.m_destPoly=new Array;for(var c=this.m_normals[r-1],m=r-1;m>0;m--)this.m_normals[m]=new x.DoublePoint(-this.m_normals[m-1].X,-this.m_normals[m-1].Y);this.m_normals[0]=new x.DoublePoint(-c.X,-c.Y),u=0;for(var m=r-1;m>=0;m--)u=this.OffsetPoint(m,u,n.m_jointype);this.m_destPolys.push(this.m_destPoly)}else{for(var u=0,m=1;m<r-1;++m)u=this.OffsetPoint(m,u,n.m_jointype);var q;if(n.m_endtype==x.EndType.etOpenButt){var m=r-1;q=new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[m].X+this.m_normals[m].X*i),x.ClipperOffset.Round(this.m_srcPoly[m].Y+this.m_normals[m].Y*i)),this.m_destPoly.push(q),q=new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[m].X-this.m_normals[m].X*i),x.ClipperOffset.Round(this.m_srcPoly[m].Y-this.m_normals[m].Y*i)),this.m_destPoly.push(q)}else{var m=r-1;u=r-2,this.m_sinA=0,this.m_normals[m]=new x.DoublePoint(-this.m_normals[m].X,-this.m_normals[m].Y),n.m_endtype==x.EndType.etOpenSquare?this.DoSquare(m,u):this.DoRound(m,u)}for(var m=r-1;m>0;m--)this.m_normals[m]=new x.DoublePoint(-this.m_normals[m-1].X,-this.m_normals[m-1].Y);this.m_normals[0]=new x.DoublePoint(-this.m_normals[1].X,-this.m_normals[1].Y),u=r-1;for(var m=u-1;m>0;--m)u=this.OffsetPoint(m,u,n.m_jointype);n.m_endtype==x.EndType.etOpenButt?(q=new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[0].X-this.m_normals[0].X*i),x.ClipperOffset.Round(this.m_srcPoly[0].Y-this.m_normals[0].Y*i)),this.m_destPoly.push(q),q=new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[0].X+this.m_normals[0].X*i),x.ClipperOffset.Round(this.m_srcPoly[0].Y+this.m_normals[0].Y*i)),this.m_destPoly.push(q)):(u=1,this.m_sinA=0,n.m_endtype==x.EndType.etOpenSquare?this.DoSquare(0,1):this.DoRound(0,1)),this.m_destPolys.push(this.m_destPoly)}}}};x.ClipperOffset.prototype.Execute=function(){var i=arguments,t=i[0]instanceof x.PolyTree;if(t){var n=i[0],l=i[1];n.Clear(),this.FixOrientations(),this.DoOffset(l);var a=new x.Clipper(0);if(a.AddPaths(this.m_destPolys,x.PolyType.ptSubject,!0),l>0)a.Execute(x.ClipType.ctUnion,n,x.PolyFillType.pftPositive,x.PolyFillType.pftPositive);else{var r=x.Clipper.GetBounds(this.m_destPolys),o=new x.Path;if(o.push(new x.IntPoint(r.left-10,r.bottom+10)),o.push(new x.IntPoint(r.right+10,r.bottom+10)),o.push(new x.IntPoint(r.right+10,r.top-10)),o.push(new x.IntPoint(r.left-10,r.top-10)),a.AddPath(o,x.PolyType.ptSubject,!0),a.ReverseSolution=!0,a.Execute(x.ClipType.ctUnion,n,x.PolyFillType.pftNegative,x.PolyFillType.pftNegative),n.ChildCount()==1&&n.Childs()[0].ChildCount()>0){var s=n.Childs()[0];n.Childs()[0]=s.Childs()[0];for(var m=1;m<s.ChildCount();m++)n.AddChild(s.Childs()[m])}else n.Clear()}}else{var n=i[0],l=i[1];x.Clear(n),this.FixOrientations(),this.DoOffset(l);var a=new x.Clipper(0);if(a.AddPaths(this.m_destPolys,x.PolyType.ptSubject,!0),l>0)a.Execute(x.ClipType.ctUnion,n,x.PolyFillType.pftPositive,x.PolyFillType.pftPositive);else{var r=x.Clipper.GetBounds(this.m_destPolys),o=new x.Path;o.push(new x.IntPoint(r.left-10,r.bottom+10)),o.push(new x.IntPoint(r.right+10,r.bottom+10)),o.push(new x.IntPoint(r.right+10,r.top-10)),o.push(new x.IntPoint(r.left-10,r.top-10)),a.AddPath(o,x.PolyType.ptSubject,!0),a.ReverseSolution=!0,a.Execute(x.ClipType.ctUnion,n,x.PolyFillType.pftNegative,x.PolyFillType.pftNegative),n.length>0&&n.splice(0,1)}}};x.ClipperOffset.prototype.OffsetPoint=function(i,t,n){if(this.m_sinA=this.m_normals[t].X*this.m_normals[i].Y-this.m_normals[i].X*this.m_normals[t].Y,this.m_sinA<5e-5&&this.m_sinA>-5e-5)return t;if(this.m_sinA>1?this.m_sinA=1:this.m_sinA<-1&&(this.m_sinA=-1),this.m_sinA*this.m_delta<0)this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+this.m_normals[t].X*this.m_delta),x.ClipperOffset.Round(this.m_srcPoly[i].Y+this.m_normals[t].Y*this.m_delta))),this.m_destPoly.push(new x.IntPoint(this.m_srcPoly[i])),this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+this.m_normals[i].X*this.m_delta),x.ClipperOffset.Round(this.m_srcPoly[i].Y+this.m_normals[i].Y*this.m_delta)));else switch(n){case x.JoinType.jtMiter:{var l=1+(this.m_normals[i].X*this.m_normals[t].X+this.m_normals[i].Y*this.m_normals[t].Y);l>=this.m_miterLim?this.DoMiter(i,t,l):this.DoSquare(i,t);break}case x.JoinType.jtSquare:this.DoSquare(i,t);break;case x.JoinType.jtRound:this.DoRound(i,t);break}return t=i,t};x.ClipperOffset.prototype.DoSquare=function(i,t){var n=Math.tan(Math.atan2(this.m_sinA,this.m_normals[t].X*this.m_normals[i].X+this.m_normals[t].Y*this.m_normals[i].Y)/4);this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+this.m_delta*(this.m_normals[t].X-this.m_normals[t].Y*n)),x.ClipperOffset.Round(this.m_srcPoly[i].Y+this.m_delta*(this.m_normals[t].Y+this.m_normals[t].X*n)))),this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+this.m_delta*(this.m_normals[i].X+this.m_normals[i].Y*n)),x.ClipperOffset.Round(this.m_srcPoly[i].Y+this.m_delta*(this.m_normals[i].Y-this.m_normals[i].X*n))))};x.ClipperOffset.prototype.DoMiter=function(i,t,n){var l=this.m_delta/n;this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+(this.m_normals[t].X+this.m_normals[i].X)*l),x.ClipperOffset.Round(this.m_srcPoly[i].Y+(this.m_normals[t].Y+this.m_normals[i].Y)*l)))};x.ClipperOffset.prototype.DoRound=function(i,t){for(var n=Math.atan2(this.m_sinA,this.m_normals[t].X*this.m_normals[i].X+this.m_normals[t].Y*this.m_normals[i].Y),l=x.Cast_Int32(x.ClipperOffset.Round(this.m_StepsPerRad*Math.abs(n))),a=this.m_normals[t].X,r=this.m_normals[t].Y,o,s=0;s<l;++s)this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+a*this.m_delta),x.ClipperOffset.Round(this.m_srcPoly[i].Y+r*this.m_delta))),o=a,a=a*this.m_cos-this.m_sin*r,r=o*this.m_sin+r*this.m_cos;this.m_destPoly.push(new x.IntPoint(x.ClipperOffset.Round(this.m_srcPoly[i].X+this.m_normals[i].X*this.m_delta),x.ClipperOffset.Round(this.m_srcPoly[i].Y+this.m_normals[i].Y*this.m_delta)))};x.Error=function(i){try{throw new Error(i)}catch(t){alert(t.message)}};x.JS={};x.JS.AreaOfPolygon=function(i,t){return t||(t=1),x.Clipper.Area(i)/(t*t)};x.JS.AreaOfPolygons=function(i,t){t||(t=1);for(var n=0,l=0;l<i.length;l++)n+=x.Clipper.Area(i[l]);return n/(t*t)};x.JS.BoundsOfPath=function(i,t){return x.JS.BoundsOfPaths([i],t)};x.JS.BoundsOfPaths=function(i,t){t||(t=1);var n=x.Clipper.GetBounds(i);return n.left/=t,n.bottom/=t,n.right/=t,n.top/=t,n};x.JS.Clean=function(l,t){if(!(l instanceof Array))return[];var n=l[0]instanceof Array,l=x.JS.Clone(l);if(typeof t!="number"||t===null)return x.Error("Delta is not a number in Clean()."),l;if(l.length===0||l.length==1&&l[0].length===0||t<0)return l;n||(l=[l]);for(var a=l.length,r,o,s,m,h,u,c,q=[],d=0;d<a;d++)if(o=l[d],r=o.length,r!==0){if(r<3){s=o,q.push(s);continue}for(s=o,m=t*t,h=o[0],u=1,c=1;c<r;c++)(o[c].X-h.X)*(o[c].X-h.X)+(o[c].Y-h.Y)*(o[c].Y-h.Y)<=m||(s[u]=o[c],h=o[c],u++);h=o[u-1],(o[0].X-h.X)*(o[0].X-h.X)+(o[0].Y-h.Y)*(o[0].Y-h.Y)<=m&&u--,u<r&&s.splice(u,r-u),s.length&&q.push(s)}return!n&&q.length?q=q[0]:!n&&q.length===0?q=[]:n&&q.length===0&&(q=[[]]),q};x.JS.Clone=function(i){if(!(i instanceof Array))return[];if(i.length===0)return[];if(i.length==1&&i[0].length===0)return[[]];var t=i[0]instanceof Array;t||(i=[i]);var n=i.length,l,a,r,o,s=new Array(n);for(a=0;a<n;a++){for(l=i[a].length,o=new Array(l),r=0;r<l;r++)o[r]={X:i[a][r].X,Y:i[a][r].Y};s[a]=o}return t||(s=s[0]),s};x.JS.Lighten=function(i,t){if(!(i instanceof Array))return[];if(typeof t!="number"||t===null)return x.Error("Tolerance is not a number in Lighten()."),x.JS.Clone(i);if(i.length===0||i.length==1&&i[0].length===0||t<0)return x.JS.Clone(i);i[0]instanceof Array||(i=[i]);var n,l,a,r,o,s,m,h,u,c,q,d,p,f,y,b,g,A=i.length,T=t*t,E=[];for(n=0;n<A;n++)if(a=i[n],s=a.length,s!=0){for(r=0;r<1e6;r++){for(o=[],s=a.length,a[s-1].X!=a[0].X||a[s-1].Y!=a[0].Y?(d=1,a.push({X:a[0].X,Y:a[0].Y}),s=a.length):d=0,q=[],l=0;l<s-2;l++)m=a[l],u=a[l+1],h=a[l+2],b=m.X,g=m.Y,p=h.X-b,f=h.Y-g,(p!==0||f!==0)&&(y=((u.X-b)*p+(u.Y-g)*f)/(p*p+f*f),y>1?(b=h.X,g=h.Y):y>0&&(b+=p*y,g+=f*y)),p=u.X-b,f=u.Y-g,c=p*p+f*f,c<=T&&(q[l+1]=1,l++);for(o.push({X:a[0].X,Y:a[0].Y}),l=1;l<s-1;l++)q[l]||o.push({X:a[l].X,Y:a[l].Y});if(o.push({X:a[s-1].X,Y:a[s-1].Y}),d&&a.pop(),q.length)a=o;else break}s=o.length,o[s-1].X==o[0].X&&o[s-1].Y==o[0].Y&&o.pop(),o.length>2&&E.push(o)}return!i[0]instanceof Array&&(E=E[0]),typeof E>"u"&&(E=[[]]),E};x.JS.PerimeterOfPath=function(i,t,n){if(typeof i>"u")return 0;var l=Math.sqrt,a=0,r,o,s=0,m=0,h=0,u=0,c=i.length;if(c<2)return 0;for(t&&(i[c]=i[0],c++);--c;)r=i[c],s=r.X,m=r.Y,o=i[c-1],h=o.X,u=o.Y,a+=l((s-h)*(s-h)+(m-u)*(m-u));return t&&i.pop(),a/n};x.JS.PerimeterOfPaths=function(i,t,n){n||(n=1);for(var l=0,a=0;a<i.length;a++)l+=x.JS.PerimeterOfPath(i[a],t,n);return l};x.JS.ScaleDownPath=function(i,t){var n,l;for(t||(t=1),n=i.length;n--;)l=i[n],l.X=l.X/t,l.Y=l.Y/t};x.JS.ScaleDownPaths=function(i,t){var n,l,a,r=Math.round;for(t||(t=1),n=i.length;n--;)for(l=i[n].length;l--;)a=i[n][l],a.X=a.X/t,a.Y=a.Y/t};x.JS.ScaleUpPath=function(i,t){var n,l,a=Math.round;for(t||(t=1),n=i.length;n--;)l=i[n],l.X=a(l.X*t),l.Y=a(l.Y*t)};x.JS.ScaleUpPaths=function(i,t){var n,l,a,r=Math.round;for(t||(t=1),n=i.length;n--;)for(l=i[n].length;l--;)a=i[n][l],a.X=r(a.X*t),a.Y=r(a.Y*t)};x.ExPolygons=function(){return[]};x.ExPolygon=function(){this.outer=null,this.holes=null};x.JS.AddOuterPolyNodeToExPolygons=function(i,t){var n=new x.ExPolygon;n.outer=i.Contour();var l=i.Childs(),a=l.length;n.holes=new Array(a);var r,o,s,m,h,u;for(s=0;s<a;s++)for(r=l[s],n.holes[s]=r.Contour(),m=0,h=r.Childs(),u=h.length;m<u;m++)o=h[m],x.JS.AddOuterPolyNodeToExPolygons(o,t);t.push(n)};x.JS.ExPolygonsToPaths=function(i){var t,n,l,a,r=new x.Paths;for(t=0,l=i.length;t<l;t++)for(r.push(i[t].outer),n=0,a=i[t].holes.length;n<a;n++)r.push(i[t].holes[n]);return r};x.JS.PolyTreeToExPolygons=function(i){var t=new x.ExPolygons,n,l,a,r;for(l=0,a=i.Childs(),r=a.length;l<r;l++)n=a[l],x.JS.AddOuterPolyNodeToExPolygons(n,t);return t};di.exports=x});var zy=g1((x61,ZV)=>{ZV.exports={glyphs:{"0":{ha:833,x_min:83,x_max:750,o:"m 750 450 q 728 239 750 326 q 665 95 707 151 q 561 13 624 39 q 417 -14 499 -14 q 272 13 335 -14 q 168 95 210 39 q 105 239 126 151 q 83 450 83 326 q 167 799 83 682 q 417 917 250 917 q 667 799 583 917 q 750 450 750 682 m 569 450 q 528 714 569 629 q 417 799 486 799 q 306 714 347 799 q 264 450 264 629 q 305 187 264 269 q 417 104 346 104 q 528 187 488 104 q 569 450 569 269 z "},"1":{ha:579,x_min:63,x_max:454,o:"m 289 739 l 93 686 l 63 832 l 454 918 l 454 0 l 278 0 q 283 129 281 67 q 288 240 286 182 q 289 333 289 297 l 289 739 z "},"2":{ha:767,x_min:83,x_max:711,o:"m 700 0 l 88 0 q 83 51 83 25 q 115 212 83 146 q 194 325 146 278 q 297 408 242 372 q 399 477 351 443 q 478 551 447 511 q 510 646 510 590 q 469 751 510 721 q 357 782 428 782 q 255 758 308 782 q 164 704 201 735 l 104 819 q 163 861 129 843 q 235 892 197 879 q 310 910 272 904 q 382 917 349 917 q 499 903 444 917 q 595 860 554 890 q 659 783 636 831 q 682 665 682 735 q 652 524 682 585 q 576 417 622 464 q 477 335 531 371 q 378 266 424 299 q 300 201 332 233 q 265 128 268 168 l 711 136 l 700 0 z "},"3":{ha:776,x_min:69,x_max:693,o:"m 693 274 q 666 141 693 196 q 592 52 639 86 q 482 2 544 18 q 350 -14 419 -14 q 282 -10 319 -14 q 206 1 244 -6 q 133 20 168 8 q 69 46 97 32 l 100 171 q 214 128 150 146 q 333 111 278 111 q 464 149 415 111 q 513 274 513 186 q 468 378 513 344 q 357 413 424 413 l 244 413 l 250 539 l 357 539 q 440 572 410 539 q 469 658 469 606 q 430 759 469 729 q 324 789 390 789 q 228 775 279 789 q 138 739 178 761 l 104 858 q 218 900 154 883 q 338 917 282 917 q 452 905 396 917 q 552 865 508 893 q 623 792 596 838 q 650 676 650 746 q 626 572 650 618 q 550 497 603 525 q 659 410 625 471 q 693 274 693 349 z "},"4":{ha:819,x_min:69,x_max:736,o:"m 731 201 l 629 201 l 632 0 l 460 0 l 463 201 l 75 201 l 69 322 l 443 903 l 629 903 l 629 324 l 736 324 l 731 201 m 463 714 l 206 324 l 463 324 l 463 714 z "},"5":{ha:792,x_min:83,x_max:708,o:"m 708 267 q 681 138 708 192 q 608 51 654 85 q 502 1 563 17 q 374 -14 442 -14 q 227 -3 301 -14 q 83 28 153 7 l 117 158 q 235 124 169 139 q 356 108 300 108 q 423 119 392 108 q 478 151 454 131 q 515 202 501 172 q 528 269 528 232 q 477 401 528 360 q 340 442 426 442 q 246 438 293 442 q 151 426 199 433 l 188 901 l 681 901 l 669 772 l 336 778 l 317 543 q 373 550 344 547 q 429 553 401 553 q 638 478 568 553 q 708 267 708 404 z "},"6":{ha:792,x_min:83,x_max:708,o:"m 708 276 q 675 128 708 185 q 594 40 642 71 q 496 -3 547 8 q 407 -14 444 -14 q 291 -1 349 -14 q 187 57 233 13 q 112 187 140 101 q 83 418 83 272 q 106 603 83 514 q 178 763 129 693 q 303 874 226 832 q 485 917 379 917 q 599 907 556 917 q 656 894 643 897 l 636 772 q 599 783 619 778 q 556 790 581 788 q 501 793 531 793 q 397 767 438 793 q 331 699 356 742 q 295 600 306 656 q 282 485 285 544 q 313 508 299 496 q 346 531 328 521 q 388 547 364 540 q 446 553 411 553 q 544 539 496 553 q 628 493 592 525 q 686 408 664 461 q 708 276 708 354 m 528 275 q 501 406 528 367 q 414 446 474 446 q 362 436 386 446 q 319 415 338 426 q 282 385 299 401 q 290 267 282 321 q 313 175 297 214 q 353 115 328 136 q 413 94 378 94 q 457 103 436 94 q 494 132 478 111 q 519 188 510 153 q 528 275 528 222 z "},"7":{ha:697,x_min:69,x_max:656,o:"m 656 806 q 551 633 604 735 q 453 418 499 531 q 372 196 407 306 q 322 0 338 86 l 133 0 q 188 192 153 86 q 267 406 222 299 q 365 610 313 513 q 472 776 418 708 l 81 771 l 69 903 l 656 903 l 656 806 l 656 806 z "},"8":{ha:808,x_min:83,x_max:725,o:"m 518 650 q 485 772 518 739 q 404 806 453 806 q 323 772 356 806 q 290 650 290 739 q 323 545 290 575 q 404 515 356 515 q 485 545 453 515 q 518 650 518 575 m 547 254 q 538 331 547 300 q 510 378 528 361 q 465 403 492 396 q 404 410 438 410 q 344 403 371 410 q 299 378 317 396 q 271 331 281 361 q 261 254 261 300 q 299 135 261 172 q 404 97 338 97 q 509 135 471 97 q 547 254 547 172 m 725 250 q 694 119 725 171 q 615 39 663 68 q 511 -2 568 10 q 404 -14 454 -14 q 297 -2 354 -14 q 193 39 240 10 q 115 119 146 68 q 83 250 83 171 q 106 358 83 317 q 154 426 128 400 q 224 474 185 457 q 171 514 194 489 q 135 570 151 536 q 118 654 118 604 q 139 776 118 726 q 197 858 160 826 q 288 903 235 889 q 404 918 340 918 q 521 903 468 918 q 611 858 574 889 q 669 776 649 826 q 690 654 690 726 q 674 570 690 604 q 638 514 657 536 q 585 474 614 489 q 656 426 625 457 q 703 358 682 400 q 725 250 725 317 z "},"9":{ha:792,x_min:83,x_max:708,o:"m 708 485 q 694 299 708 389 q 636 140 679 210 q 514 28 593 71 q 304 -14 435 -14 q 234 -10 268 -14 q 172 -1 200 -7 q 110 13 139 4 l 129 135 q 179 122 153 128 q 231 113 203 117 q 288 110 258 110 q 428 142 379 110 q 499 221 476 175 q 524 317 521 267 q 526 401 526 367 q 472 368 501 383 q 414 344 447 356 q 343 333 381 333 q 240 347 288 333 q 158 394 193 361 q 103 481 124 426 q 83 618 83 536 q 116 768 83 710 q 196 860 149 826 q 294 905 243 893 q 382 917 344 917 q 499 901 440 917 q 603 840 557 886 q 679 708 650 793 q 708 485 708 624 m 521 499 q 516 608 521 553 q 497 708 511 664 q 453 781 482 753 q 376 808 425 808 q 335 800 356 808 q 299 771 315 792 q 274 713 283 750 q 264 619 264 676 q 295 488 264 536 q 375 440 326 440 q 435 449 408 440 q 481 469 461 458 q 521 499 503 483 z "}," ":{ha:389,x_min:0,x_max:0,o:""},"(":{ha:536,x_min:208,x_max:439,o:"m 350 -132 q 295 -28 321 -93 q 250 115 269 36 q 219 281 231 194 q 208 449 208 368 q 219 617 208 531 q 250 782 231 703 q 295 926 269 861 q 350 1029 321 990 l 439 1011 q 389 854 411 942 q 354 676 369 779 q 339 447 339 574 q 354 219 339 321 q 389 42 369 117 q 439 -114 411 -44 l 350 -132 z "},")":{ha:536,x_min:97,x_max:328,o:"m 328 449 q 317 281 328 368 q 286 115 306 194 q 241 -28 267 36 q 186 -132 215 -93 l 97 -114 q 147 43 125 -43 q 182 220 167 118 q 197 449 197 322 q 182 678 197 575 q 147 856 167 781 q 97 1011 125 942 l 186 1029 q 241 926 215 990 q 286 782 267 861 q 317 617 306 703 q 328 449 328 531 z "},"*":{ha:578,x_min:56,x_max:522,o:"m 378 700 l 497 576 l 408 488 l 296 649 l 185 488 l 96 576 l 211 697 l 56 746 l 104 861 l 242 792 l 228 961 l 354 961 l 340 793 l 474 863 l 522 747 l 378 700 z "},"+":{ha:858,x_min:97,x_max:761,o:"m 488 406 l 488 131 l 369 131 l 369 406 l 97 406 l 97 524 l 369 524 l 369 793 l 488 793 l 488 524 l 761 524 l 761 406 l 488 406 z "},",":{ha:351,x_min:54,x_max:281,o:"m 281 8 q 258 -124 281 -64 q 208 -229 236 -185 q 136 -324 176 -282 l 54 -296 q 89 -226 74 -262 q 112 -157 101 -194 q 122 -79 122 -119 q 113 -14 122 -44 q 90 42 103 17 q 68 90 78 68 q 58 128 58 111 q 69 153 58 143 q 104 168 79 163 l 247 197 q 264 140 257 171 q 276 80 271 114 q 281 8 281 46 z "},"-":{ha:588,x_min:97,x_max:490,o:"m 97 315 l 97 442 l 490 442 l 490 315 l 97 315 z "},".":{ha:383,x_min:79,x_max:282,o:"m 282 78 q 179 -17 282 -17 q 79 78 79 -17 q 179 172 79 172 q 258 149 235 172 q 282 78 282 125 z "},"/":{ha:617,x_min:111,x_max:506,o:"m 224 -229 l 111 -199 l 390 986 l 506 969 l 224 -229 z "},":":{ha:408,x_min:90,x_max:318,o:"m 318 585 q 201 475 318 475 q 117 501 144 475 q 90 585 90 526 q 117 669 90 643 q 201 694 143 694 q 291 667 264 694 q 318 585 318 639 m 318 138 q 201 28 318 28 q 117 53 144 28 q 90 138 90 79 q 117 222 90 196 q 201 247 143 247 q 291 219 264 247 q 318 138 318 192 z "},";":{ha:415,x_min:90,x_max:331,o:"m 322 585 q 204 474 322 474 q 90 585 90 474 q 117 669 90 643 q 204 694 144 694 q 295 667 268 694 q 322 585 322 639 m 331 11 q 308 -122 331 -61 q 258 -226 286 -182 q 186 -321 226 -279 l 104 -293 q 139 -224 124 -260 q 162 -154 151 -192 q 172 -76 172 -117 q 163 -11 172 -42 q 140 45 153 19 q 118 92 128 71 q 108 131 108 114 q 119 156 108 146 q 154 171 129 165 l 297 200 q 314 143 307 174 q 326 83 321 117 q 331 11 331 49 z "},"<":{ha:778,x_min:125,x_max:653,o:"m 568 -121 l 125 353 l 567 825 l 653 735 l 306 353 l 653 -31 l 568 -121 z "},"=":{ha:944,x_min:139,x_max:806,o:"m 139 269 l 139 394 l 806 394 l 806 269 l 139 269 m 139 533 l 139 658 l 806 658 l 806 533 l 139 533 z "},">":{ha:779,x_min:125,x_max:654,o:"m 211 -121 l 125 -31 l 472 353 l 125 735 l 211 825 l 654 353 l 211 -121 z "},"?":{ha:653,x_min:69,x_max:597,o:"m 342 290 q 346 238 342 263 l 203 231 q 192 278 196 254 q 189 326 189 303 q 206 406 189 375 q 249 460 224 438 q 306 501 275 483 q 362 539 336 518 q 405 587 388 560 q 422 656 422 614 q 408 713 422 689 q 372 753 394 738 q 322 777 350 769 q 264 785 293 785 q 188 775 228 785 q 115 747 147 765 l 69 875 q 173 907 114 897 q 281 917 232 917 q 396 905 339 917 q 497 866 453 893 q 569 793 542 839 q 597 678 597 747 q 578 570 597 611 q 531 503 560 529 q 469 459 503 476 q 408 421 436 442 q 360 371 379 400 q 342 290 342 342 m 382 74 q 351 4 382 25 q 275 -17 319 -17 q 199 3 229 -17 q 169 74 169 24 q 199 144 169 125 q 275 164 229 164 q 352 144 322 164 q 382 74 382 125 z "},"@":{ha:1240,x_min:76,x_max:1164,o:"m 1164 492 q 1145 326 1164 411 q 1085 169 1126 240 q 978 53 1044 99 q 815 8 911 8 q 718 53 753 8 q 683 167 683 97 q 592 59 650 103 q 460 15 533 15 q 394 33 421 15 q 351 80 368 51 q 328 142 335 108 q 321 208 321 176 q 341 373 321 293 q 403 514 361 453 q 513 613 446 575 q 676 650 581 650 q 785 642 731 650 q 893 624 840 635 l 836 211 q 832 184 835 201 q 830 149 829 167 q 837 119 831 132 q 860 107 843 107 q 922 128 894 107 q 969 184 949 150 q 1002 262 989 218 q 1024 349 1015 306 q 1037 433 1033 393 q 1040 501 1040 474 q 1016 631 1040 576 q 949 722 992 686 q 847 776 906 758 q 717 793 788 793 q 513 751 608 793 q 349 638 418 710 q 239 472 279 567 q 199 268 199 376 q 218 107 199 181 q 281 -20 238 33 q 390 -104 324 -74 q 550 -135 457 -135 q 650 -123 599 -135 q 749 -96 701 -111 l 767 -171 q 717 -187 744 -179 q 660 -202 689 -196 q 603 -212 631 -208 q 550 -217 575 -217 q 76 269 76 -217 q 126 519 76 404 q 263 719 176 635 q 467 853 350 804 q 717 901 583 901 q 896 876 814 901 q 1038 799 978 850 q 1131 672 1097 749 q 1164 492 1164 594 m 665 539 q 580 509 614 539 q 526 435 546 479 q 497 342 506 392 q 489 251 489 292 q 490 221 489 239 q 497 187 492 203 q 514 160 503 171 q 543 149 525 149 q 594 167 571 149 q 636 213 618 186 q 666 271 654 240 q 681 325 678 301 q 694 432 688 378 q 708 539 701 486 l 665 539 z "},A:{ha:893,x_min:14,x_max:879,o:"m 690 0 l 607 232 l 288 232 l 199 0 l 14 0 l 388 903 l 551 903 l 879 0 l 690 0 m 449 700 l 326 357 l 568 357 l 449 700 z "},B:{ha:829,x_min:125,x_max:760,o:"m 760 272 q 731 145 760 197 q 658 61 703 93 q 558 15 614 29 q 444 0 501 0 l 125 0 q 128 128 126 65 q 130 238 129 181 q 131 333 131 294 l 131 569 q 130 664 131 607 q 128 774 129 721 q 125 903 126 836 l 426 903 q 528 894 476 903 q 622 860 579 885 q 690 793 664 836 q 717 683 717 750 q 707 622 717 653 q 679 565 697 590 q 635 519 661 539 q 575 489 608 499 q 647 461 613 482 q 706 411 681 440 q 745 346 731 382 q 760 272 760 310 m 546 654 q 509 744 546 721 q 422 768 472 768 l 299 768 l 299 553 l 439 553 q 515 581 483 553 q 546 654 546 608 m 585 288 q 551 383 585 346 q 444 419 517 419 l 299 419 l 299 135 l 436 135 q 543 172 501 135 q 585 288 585 208 z "},C:{ha:814,x_min:69,x_max:765,o:"m 765 44 q 699 15 738 29 q 617 -5 665 4 q 501 -14 568 -14 q 329 17 408 -14 q 192 108 250 49 q 102 252 135 167 q 69 447 69 338 q 100 644 69 557 q 186 792 131 732 q 319 885 242 853 q 489 917 396 917 q 612 910 563 917 q 692 893 661 903 q 747 868 728 882 l 714 736 q 660 758 689 749 q 600 774 635 767 q 524 781 565 781 q 417 760 467 781 q 330 699 367 740 q 272 594 293 657 q 250 447 250 532 q 271 304 250 367 q 328 199 292 242 q 416 134 365 156 q 525 113 467 113 q 594 120 558 113 q 657 138 629 128 q 721 163 690 149 l 765 44 l 765 44 z "},D:{ha:933,x_min:125,x_max:864,o:"m 864 447 q 830 235 864 321 q 739 98 796 150 q 607 23 682 46 q 449 0 532 0 l 125 0 q 128 125 126 64 q 129 235 129 178 q 129 333 129 292 l 129 569 q 129 666 129 610 q 128 775 129 722 q 125 903 126 838 l 447 903 q 618 878 542 903 q 749 800 694 854 q 834 659 804 746 q 864 447 864 572 m 683 447 q 665 593 683 532 q 615 694 647 654 q 538 753 583 733 q 435 772 492 772 l 296 772 l 296 132 l 436 132 q 533 151 488 132 q 611 208 578 169 q 664 306 644 246 q 683 447 683 365 z "},E:{ha:750,x_min:125,x_max:681,o:"m 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 669 129 613 q 128 778 129 725 q 125 903 126 839 l 669 903 l 661 768 l 296 774 l 296 546 l 613 546 l 604 410 l 296 415 l 296 131 l 681 136 l 681 0 l 125 0 z "},F:{ha:738,x_min:125,x_max:668,o:"m 663 768 l 296 774 l 296 532 l 603 532 l 597 397 l 296 403 l 296 286 q 297 217 296 264 q 299 121 297 169 q 300 0 300 65 l 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 667 129 610 q 128 776 129 724 q 125 903 126 838 l 668 903 l 663 768 z "},G:{ha:899,x_min:69,x_max:794,o:"m 794 63 q 664 5 732 24 q 511 -14 596 -14 q 333 17 414 -14 q 193 108 251 49 q 102 252 135 167 q 69 447 69 338 q 102 656 69 568 q 192 803 135 744 q 329 889 250 861 q 501 917 408 917 q 614 908 563 917 q 703 889 665 900 q 783 861 747 876 l 747 722 q 688 751 722 738 q 618 772 658 763 q 529 781 578 781 q 326 696 401 781 q 250 447 250 611 q 271 310 250 372 q 327 205 292 249 q 410 137 363 161 q 511 113 457 113 q 567 115 544 113 q 603 119 589 117 q 629 125 618 122 l 629 342 l 454 342 l 454 472 l 794 472 l 794 63 l 794 63 z "},H:{ha:960,x_min:125,x_max:835,o:"m 657 0 q 660 129 658 67 q 662 240 661 182 q 663 333 663 297 l 663 421 l 297 421 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 l 297 551 l 663 551 l 657 903 l 835 903 q 832 778 833 839 q 830 668 831 725 q 829 569 829 611 l 829 333 q 830 239 829 296 q 832 129 831 182 q 835 0 833 67 l 657 0 z "},I:{ha:428,x_min:125,x_max:303,o:"m 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 q 300 778 301 839 q 298 668 299 725 q 297 569 297 611 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 z "},J:{ha:583,x_min:28,x_max:458,o:"m 458 901 q 456 776 457 838 q 453 667 454 724 q 453 569 453 610 l 453 222 q 391 43 453 100 q 213 -14 329 -14 q 94 -4 140 -14 q 28 19 47 6 l 61 144 q 97 131 79 136 q 133 120 113 125 q 172 115 153 115 q 229 126 207 115 q 264 158 251 138 q 281 206 276 178 q 286 268 286 235 l 286 569 q 285 666 286 610 q 283 775 285 722 q 281 901 282 836 l 458 901 l 458 901 z "},K:{ha:821,x_min:125,x_max:849,o:"m 618 0 l 297 425 l 297 333 q 298 238 297 294 q 300 128 299 181 q 303 0 301 65 l 125 0 q 128 129 126 67 q 130 239 129 182 q 131 333 131 296 l 131 569 q 130 663 131 606 q 128 772 129 719 q 125 903 126 835 l 303 903 q 302 849 303 889 q 300 758 301 808 q 298 657 299 708 q 297 569 297 606 l 297 497 l 588 903 l 804 903 l 453 464 l 849 0 l 618 0 z "},L:{ha:701,x_min:125,x_max:667,o:"m 660 0 l 125 0 q 128 126 126 65 q 130 236 129 179 q 131 333 131 293 l 131 569 q 130 663 131 606 q 128 772 129 719 q 125 903 126 835 l 303 903 q 300 772 301 835 q 298 663 299 719 q 297 569 297 606 l 297 131 q 332 131 310 131 q 383 131 354 131 q 443 133 411 132 q 507 133 475 133 q 667 136 582 135 l 660 0 z "},M:{ha:1178,x_min:125,x_max:1053,o:"m 875 0 l 857 669 l 632 89 l 518 89 l 293 665 l 271 0 l 125 0 l 139 335 l 168 903 l 368 903 l 593 351 l 808 903 l 1014 903 l 1040 335 l 1053 0 l 875 0 z "},N:{ha:1014,x_min:125,x_max:889,o:"m 694 0 l 290 628 l 290 333 q 291 235 290 293 q 293 125 292 178 q 296 0 294 64 l 125 0 q 128 125 126 64 q 130 235 129 178 q 131 333 131 293 l 131 903 l 321 903 l 724 272 l 724 569 q 724 600 724 581 q 724 645 724 619 q 723 699 724 671 q 722 757 722 728 q 719 903 721 824 l 889 903 q 886 774 888 836 q 884 664 885 721 q 883 569 883 607 l 883 0 l 694 0 z "},O:{ha:992,x_min:69,x_max:922,o:"m 922 449 q 885 228 922 318 q 789 84 849 139 q 652 6 729 29 q 496 -18 575 -18 q 340 6 417 -18 q 203 84 263 29 q 106 228 143 139 q 69 449 69 318 q 106 669 69 579 q 203 813 143 758 q 340 892 263 868 q 496 915 417 915 q 652 892 575 915 q 789 813 729 868 q 885 669 849 758 q 922 449 922 579 m 742 449 q 678 697 742 611 q 496 782 614 782 q 314 697 378 782 q 250 449 250 611 q 314 201 250 286 q 496 115 378 115 q 678 201 614 115 q 742 449 742 286 z "},P:{ha:801,x_min:125,x_max:732,o:"m 732 635 q 708 517 732 568 q 641 433 683 467 q 540 383 599 400 q 415 367 482 367 l 297 367 l 301 0 l 125 0 q 128 128 126 65 q 130 238 129 181 q 131 333 131 294 l 131 569 q 130 663 131 611 q 128 762 129 714 q 126 849 128 810 q 125 903 125 888 l 415 903 q 535 892 478 903 q 635 851 592 881 q 706 769 679 821 q 732 635 732 717 m 563 635 q 551 701 563 675 q 519 743 539 728 q 472 765 499 758 q 414 771 444 771 l 299 771 l 299 499 l 414 499 q 526 531 489 499 q 563 635 563 564 z "},Q:{ha:992,x_min:69,x_max:956,o:"m 892 -221 q 751 -168 821 -199 q 624 -108 682 -137 q 526 -52 567 -78 q 472 -12 486 -26 q 322 17 394 -8 q 194 97 250 43 q 103 238 138 151 q 69 450 69 325 q 106 669 69 581 q 202 813 142 758 q 340 892 263 868 q 500 915 418 915 q 656 891 579 915 q 791 812 732 867 q 886 668 850 757 q 922 449 922 579 q 903 283 922 356 q 849 158 883 211 q 769 69 815 104 q 671 14 724 33 l 956 -92 l 892 -221 m 742 449 q 680 694 742 607 q 500 782 618 782 q 314 697 378 782 q 250 450 250 613 q 315 201 250 286 q 501 115 379 115 q 607 140 563 115 q 682 208 651 164 q 727 313 713 251 q 742 449 742 375 z "},R:{ha:846,x_min:125,x_max:847,o:"m 632 0 l 381 367 l 297 367 l 301 0 l 125 0 q 128 124 126 63 q 130 233 129 176 q 131 333 131 290 l 131 903 l 408 903 q 529 892 471 903 q 633 851 588 881 q 705 770 678 822 q 732 636 732 718 q 703 514 732 563 q 639 438 675 465 q 546 388 597 404 l 847 0 l 632 0 m 563 629 q 520 740 563 710 q 407 771 478 771 l 297 771 l 297 500 l 407 500 q 524 529 485 500 q 563 629 563 558 z "},S:{ha:776,x_min:92,x_max:707,o:"m 707 251 q 678 131 707 181 q 603 48 650 81 q 498 1 557 15 q 378 -14 439 -14 q 233 0 307 -14 q 92 38 158 14 l 125 189 q 178 164 149 176 q 238 142 207 151 q 300 127 269 133 q 357 121 331 121 q 413 126 383 121 q 466 143 442 131 q 506 178 490 156 q 522 233 522 200 q 503 292 522 269 q 439 333 483 314 q 331 376 390 354 q 219 433 271 397 q 133 526 168 469 q 99 672 99 582 q 125 785 99 739 q 195 861 151 832 q 294 903 239 890 q 407 917 349 917 q 479 914 447 917 q 540 906 511 911 q 600 895 569 901 q 668 882 631 889 l 640 740 q 532 770 590 760 q 421 781 474 781 q 372 776 396 781 q 328 761 347 772 q 296 731 308 750 q 283 681 283 711 q 313 608 283 635 q 393 561 342 582 q 497 521 442 542 q 599 467 551 500 q 676 384 646 435 q 707 251 707 333 z "},T:{ha:783,x_min:51,x_max:742,o:"m 735 761 l 474 767 l 474 333 q 474 236 474 293 q 476 126 475 179 q 479 0 478 65 l 301 0 q 304 126 303 65 q 306 236 306 179 q 307 333 307 293 l 307 767 l 51 761 l 51 903 l 742 903 l 735 761 z "},U:{ha:958,x_min:125,x_max:833,o:"m 833 903 q 831 776 832 839 q 828 667 829 724 q 828 569 828 610 l 828 350 q 810 209 828 275 q 751 93 792 143 q 643 15 710 43 q 479 -14 576 -14 q 315 15 382 -14 q 208 93 249 43 q 149 209 167 143 q 131 350 131 275 l 131 569 q 130 667 131 610 q 128 776 129 724 q 125 903 126 839 l 303 903 q 300 775 301 838 q 298 666 299 722 q 297 569 297 610 l 297 329 q 303 257 297 293 q 329 192 310 221 q 384 144 349 163 q 479 126 419 126 q 574 144 539 126 q 629 192 610 163 q 655 257 649 221 q 661 329 661 293 l 661 569 q 660 666 661 610 q 658 775 660 722 q 656 903 657 838 l 833 903 l 833 903 z "},V:{ha:931,x_min:28,x_max:903,o:"m 536 0 l 354 0 l 28 903 l 217 903 l 456 192 l 722 903 l 903 903 l 536 0 z "},W:{ha:1332,x_min:28,x_max:1304,o:"m 1006 0 l 847 0 l 661 647 l 461 0 l 288 0 l 28 903 l 226 903 l 397 264 l 590 903 l 772 903 l 950 265 l 1142 903 l 1304 903 l 1006 0 z "},X:{ha:879,x_min:28,x_max:851,o:"m 646 0 l 432 328 l 217 0 l 28 0 l 332 463 l 46 903 l 261 903 l 453 613 l 647 903 l 821 903 l 544 476 l 851 0 l 646 0 z "},Y:{ha:860,x_min:28,x_max:832,o:"m 504 329 l 508 0 l 333 0 l 338 332 l 28 903 l 233 903 l 433 494 l 647 903 l 832 903 l 504 329 z "},Z:{ha:846,x_min:69,x_max:776,o:"m 769 0 l 76 0 l 69 157 l 543 761 l 83 756 l 83 903 l 760 903 l 760 746 l 282 140 l 776 146 l 769 0 z "},"[":{ha:606,x_min:208,x_max:536,o:"m 531 -203 q 498 -200 521 -201 q 449 -197 475 -199 q 400 -194 422 -196 q 371 -193 378 -193 q 328 -192 356 -193 q 274 -192 301 -192 l 208 -192 q 210 -89 208 -140 q 211 4 211 -44 q 211 92 211 53 l 211 772 q 211 859 211 811 q 210 951 211 907 q 208 1056 208 1003 l 274 1056 q 328 1056 301 1056 q 371 1057 356 1057 q 400 1058 378 1057 q 449 1061 422 1060 q 498 1064 475 1063 q 531 1067 521 1065 l 536 971 l 322 969 l 322 -106 l 536 -107 l 531 -203 z "},"\\\\":{ha:617,x_min:111,x_max:506,o:"m 392 -229 l 111 969 l 226 986 l 506 -199 l 392 -229 z "},"]":{ha:606,x_min:69,x_max:397,o:"m 332 -192 q 277 -192 304 -192 q 235 -193 250 -193 q 206 -194 228 -193 q 157 -197 183 -196 q 108 -200 131 -199 q 75 -203 85 -201 l 69 -107 l 283 -106 l 283 969 l 69 971 l 75 1067 q 108 1064 85 1065 q 157 1061 131 1063 q 206 1058 183 1060 q 235 1057 228 1057 q 277 1056 250 1057 q 332 1056 304 1056 l 397 1056 q 396 951 397 1003 q 394 859 394 907 q 394 772 394 811 l 394 92 q 394 4 394 53 q 396 -89 394 -44 q 397 -192 397 -140 l 332 -192 z "},"^":{ha:629,x_min:56,x_max:574,o:"m 503 700 l 315 928 l 126 700 l 56 771 l 283 1047 l 347 1047 l 574 771 l 503 700 z "},_:{ha:792,x_min:0,x_max:792,o:"m 0 -161 l 0 -83 l 792 -83 l 792 -161 l 0 -161 z "},"\\xE2\\x80\\x98":{ha:350,x_min:118,x_max:322,o:"m 322 615 q 312 590 322 600 q 275 575 301 581 l 150 550 q 135 607 142 576 q 123 667 128 633 q 118 739 118 701 q 136 847 118 797 q 176 936 154 897 q 235 1019 201 982 l 303 989 q 282 946 292 971 q 267 894 274 925 q 261 824 261 864 q 271 758 261 789 q 292 701 281 728 q 313 653 303 675 q 322 615 322 632 z "},a:{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 z "},b:{ha:821,x_min:118,x_max:758,o:"m 758 343 q 737 199 758 264 q 678 86 715 133 q 588 13 640 39 q 475 -14 536 -14 q 398 -3 432 -14 q 340 21 364 7 q 292 56 313 36 l 293 0 l 118 -4 q 121 125 119 63 q 123 236 122 178 q 124 333 124 294 l 124 675 q 123 766 124 711 q 121 874 122 821 q 118 1000 119 935 l 297 1014 l 290 636 q 344 672 315 657 q 404 697 369 686 q 481 708 439 708 q 694 613 631 708 q 758 343 758 517 m 589 343 q 544 519 589 463 q 411 576 500 576 q 366 570 388 576 q 328 557 344 564 q 292 536 308 549 l 292 156 q 331 136 310 144 q 372 123 349 129 q 419 117 394 117 q 481 128 451 117 q 535 167 511 140 q 574 236 560 193 q 589 343 589 279 z "},c:{ha:669,x_min:63,x_max:607,o:"m 607 25 q 558 6 586 14 q 501 -8 535 -1 q 422 -14 467 -14 q 283 8 349 -14 q 169 76 218 31 q 91 188 119 121 q 63 344 63 256 q 90 513 63 444 q 165 626 118 582 q 272 689 211 669 q 396 708 332 708 q 488 702 449 708 q 551 689 526 696 q 601 668 581 681 l 575 550 q 535 569 557 561 q 491 583 515 576 q 436 589 467 589 q 286 526 340 589 q 232 344 232 463 q 248 246 232 290 q 292 169 264 201 q 358 120 319 138 q 440 103 396 103 q 498 108 472 103 q 543 121 524 114 q 583 138 565 128 l 607 25 l 607 25 z "},d:{ha:814,x_min:63,x_max:696,o:"m 522 0 l 525 85 q 499 56 517 72 q 457 24 482 39 q 399 -3 432 8 q 326 -14 367 -14 q 223 10 271 -14 q 140 81 175 35 q 83 195 104 128 q 63 347 63 263 q 79 499 63 432 q 133 612 96 565 q 231 683 171 658 q 376 708 290 708 q 429 705 403 708 q 476 696 456 701 q 524 683 501 690 l 517 1000 l 696 1014 q 694 963 696 1003 q 692 873 693 924 q 690 770 690 822 q 689 682 689 718 l 689 333 q 690 233 689 290 q 693 124 692 176 q 696 0 694 63 l 522 0 m 522 568 q 481 581 515 571 q 404 590 447 590 q 272 531 313 590 q 231 347 231 472 q 245 244 231 286 q 283 174 260 201 q 337 135 307 147 q 396 124 367 124 q 463 142 426 124 q 522 185 499 160 l 522 568 z "},e:{ha:738,x_min:63,x_max:675,o:"m 675 447 q 669 374 675 411 q 653 301 664 336 l 243 301 q 260 219 243 256 q 308 157 278 183 q 376 117 338 131 q 458 103 415 103 q 542 115 497 103 q 624 144 588 126 l 649 33 q 592 12 624 21 q 528 -3 561 3 q 463 -11 496 -8 q 404 -14 431 -14 q 259 13 322 -14 q 152 86 196 39 q 85 199 108 133 q 63 344 63 265 q 81 495 63 428 q 140 610 100 563 q 244 683 181 657 q 394 708 307 708 q 507 691 456 708 q 596 640 558 674 q 654 558 633 607 q 675 447 675 510 m 510 424 q 514 472 514 447 q 485 564 514 531 q 394 597 457 597 q 279 548 314 597 q 244 424 244 499 l 510 424 l 510 424 z "},f:{ha:529,x_min:83,x_max:529,o:"m 511 883 q 488 890 501 888 q 462 894 476 893 q 431 896 447 896 q 349 864 374 896 q 324 765 324 832 l 324 694 l 492 699 l 485 572 l 324 576 l 324 333 q 324 236 324 293 q 326 126 325 179 q 329 0 328 65 l 153 0 q 156 126 154 65 q 157 236 157 179 q 157 333 157 293 l 157 576 l 83 576 l 83 694 l 158 694 l 158 788 q 223 964 158 913 q 404 1015 288 1015 q 449 1013 428 1015 q 489 1007 471 1010 q 529 997 510 1003 l 511 883 z "},g:{ha:829,x_min:63,x_max:711,o:"m 711 708 q 708 585 710 646 q 706 475 707 532 q 706 374 706 418 l 706 -4 q 675 -149 706 -89 q 594 -247 644 -208 q 477 -302 543 -285 q 340 -319 411 -319 q 189 -299 263 -319 q 63 -260 115 -279 l 101 -114 q 181 -147 139 -132 q 263 -169 217 -160 q 357 -179 308 -179 q 427 -169 394 -179 q 485 -137 460 -158 q 524 -83 510 -117 q 540 -4 539 -50 l 543 82 q 518 55 535 71 q 477 24 501 39 q 421 -3 453 8 q 349 -14 389 -14 q 239 9 290 -14 q 149 76 188 32 q 90 188 111 121 q 68 343 68 254 q 83 484 68 418 q 133 600 99 550 q 224 679 168 650 q 360 708 279 708 q 458 691 411 708 q 542 633 506 674 l 542 694 l 711 708 l 711 708 m 540 536 q 506 558 526 549 q 463 573 488 567 q 403 579 438 579 q 275 515 313 579 q 238 343 238 451 q 247 263 238 301 q 275 193 256 224 q 327 144 294 163 q 406 125 360 125 q 477 140 442 125 q 540 182 513 154 l 540 536 z "},h:{ha:849,x_min:118,x_max:738,o:"m 565 0 l 565 424 q 537 538 565 504 q 456 571 508 571 q 401 563 428 571 q 352 547 375 556 q 313 528 329 538 q 290 515 297 519 l 290 333 q 291 235 290 292 q 293 125 292 178 q 294 0 294 64 l 118 0 q 121 125 119 64 q 123 235 122 178 q 124 333 124 292 l 124 676 q 123 772 124 717 q 121 878 122 826 q 118 1000 119 938 l 289 1014 l 286 614 q 394 678 332 647 q 543 708 457 708 q 681 656 629 708 q 732 489 732 604 l 732 333 q 733 235 732 293 q 735 125 733 178 q 738 0 736 64 l 565 0 z "},i:{ha:449,x_min:118,x_max:331,o:"m 331 893 q 302 817 331 836 q 224 797 274 797 q 147 815 175 797 q 118 893 118 833 q 147 968 118 950 q 224 986 175 986 q 303 967 276 986 q 331 893 331 947 m 133 0 q 136 129 135 67 q 138 239 138 182 q 139 333 139 296 l 139 367 q 138 461 139 407 q 136 565 138 515 q 133 685 135 624 l 311 699 q 308 571 310 633 q 306 462 307 518 q 306 367 306 406 l 306 333 q 306 240 306 297 q 308 129 307 182 q 311 0 310 67 l 133 0 z "},j:{ha:403,x_min:-140,x_max:310,o:"m 310 893 q 281 817 310 836 q 200 797 253 797 q 121 815 150 797 q 92 893 92 833 q 120 968 92 950 q 200 986 149 986 q 283 967 256 986 q 310 893 310 947 m 290 704 q 290 655 290 694 q 288 565 289 615 q 285 460 286 514 q 285 368 285 407 l 285 -71 q 224 -251 285 -193 q 44 -308 163 -308 q -74 -299 -28 -308 q -140 -275 -121 -289 l -107 -150 q -72 -165 -90 -160 q -38 -175 -57 -171 q 0 -179 -19 -179 q 91 -144 64 -179 q 118 -37 118 -108 l 118 368 q 117 462 118 407 q 115 568 117 517 q 113 690 114 628 l 290 704 l 290 704 z "},k:{ha:761,x_min:118,x_max:750,o:"m 526 0 l 290 344 l 290 0 l 118 0 q 121 124 119 63 q 123 233 122 176 q 124 333 124 290 l 124 672 q 123 763 124 708 q 121 871 122 818 q 118 997 119 932 l 294 1011 q 293 878 294 942 q 291 766 292 824 q 290 672 290 708 l 290 407 l 529 694 l 724 694 l 440 382 l 750 0 l 526 0 z "},l:{ha:414,x_min:118,x_max:296,o:"m 118 0 q 121 124 119 63 q 123 233 122 176 q 124 333 124 290 l 124 676 q 123 770 124 715 q 121 876 122 825 q 118 1000 119 936 l 296 1014 q 293 885 294 947 q 291 774 292 832 q 290 676 290 717 l 290 333 q 291 233 290 289 q 293 124 292 176 q 296 0 294 63 l 118 0 z "},m:{ha:1247,x_min:118,x_max:1136,o:"m 965 0 l 965 422 q 940 535 965 503 q 867 567 915 567 q 819 560 843 567 q 774 545 796 554 q 735 527 753 536 q 708 511 718 518 q 712 479 711 500 q 713 443 713 458 l 713 333 q 713 238 713 294 q 715 128 714 181 q 718 0 717 65 l 543 0 l 543 422 q 518 535 543 503 q 444 567 493 567 q 394 560 419 567 q 348 543 369 553 q 310 525 326 533 q 289 513 294 517 l 289 333 q 290 233 289 290 q 292 124 290 176 q 294 0 293 63 l 118 0 q 121 124 119 63 q 122 233 122 176 q 122 333 122 290 l 122 367 q 122 457 122 403 q 121 563 122 511 q 118 688 119 622 l 292 701 l 286 613 q 392 677 331 646 q 533 708 454 708 q 630 684 588 708 q 693 603 672 660 q 747 641 718 622 q 808 674 775 660 q 878 699 842 689 q 956 708 915 708 q 1084 656 1036 708 q 1132 488 1132 604 l 1132 333 q 1133 238 1132 294 q 1135 128 1133 181 q 1136 0 1136 65 l 965 0 z "},n:{ha:846,x_min:118,x_max:735,o:"m 565 0 l 565 422 q 537 534 565 501 q 456 567 508 567 q 401 560 428 567 q 352 543 375 553 q 313 525 329 533 q 290 513 297 517 l 290 333 q 291 233 290 290 q 293 124 292 176 q 294 0 294 63 l 118 0 q 121 124 119 63 q 123 233 122 176 q 124 333 124 290 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 292 701 l 288 611 q 338 645 311 628 q 396 676 364 663 q 465 699 428 690 q 544 708 501 708 q 683 656 636 708 q 731 488 731 604 l 731 333 q 731 235 731 292 q 733 125 732 178 q 735 0 735 64 l 565 0 z "},o:{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 z "},p:{ha:819,x_min:118,x_max:757,o:"m 757 343 q 735 199 757 264 q 676 86 714 133 q 587 13 639 39 q 474 -14 535 -14 q 397 -7 431 -14 q 339 8 363 0 q 289 29 311 18 l 293 -328 l 118 -333 q 121 -211 119 -271 q 123 -104 122 -160 q 124 -7 124 -49 l 124 368 q 123 463 124 408 q 121 567 122 517 q 118 688 119 625 l 292 701 l 289 636 q 343 672 314 657 q 403 697 368 686 q 479 708 438 708 q 693 613 629 708 q 757 343 757 517 m 588 343 q 543 519 588 463 q 410 576 499 576 q 365 570 386 576 q 326 557 343 564 q 290 536 307 549 l 290 138 q 329 128 308 133 q 370 120 347 124 q 418 117 393 117 q 480 128 450 117 q 534 167 510 140 q 573 236 558 193 q 588 343 588 279 z "},q:{ha:846,x_min:63,x_max:707,o:"m 531 -333 l 538 81 q 488 33 517 54 q 426 1 463 15 q 340 -14 389 -14 q 231 9 282 -14 q 143 77 181 32 q 84 189 106 122 q 63 344 63 256 q 78 492 63 425 q 131 608 94 560 q 226 682 167 656 q 369 708 285 708 q 440 697 410 708 q 492 672 471 686 q 535 635 517 657 l 535 696 l 707 710 q 706 579 707 643 q 703 468 704 525 q 703 372 703 411 l 703 -8 q 703 -102 703 -47 q 706 -207 704 -157 q 707 -328 707 -265 l 531 -333 m 540 531 q 506 556 526 544 q 463 572 488 565 q 403 579 438 579 q 272 519 311 579 q 232 343 232 460 q 242 260 232 300 q 272 191 251 221 q 326 143 293 161 q 406 125 360 125 q 481 143 450 125 q 540 189 513 161 l 540 531 z "},r:{ha:574,x_min:118,x_max:532,o:"m 515 549 q 496 551 507 550 q 473 553 486 553 q 443 553 460 553 q 365 531 404 553 q 290 478 326 508 l 290 333 q 291 233 290 290 q 293 124 292 176 q 294 0 294 63 l 118 0 q 121 125 119 64 q 123 235 122 178 q 124 333 124 292 l 124 371 q 123 461 124 407 q 121 567 122 515 q 118 692 119 626 l 290 706 l 288 589 q 326 627 304 607 q 374 665 347 647 q 430 693 400 682 q 494 704 460 704 q 532 701 518 704 l 515 549 z "},s:{ha:667,x_min:83,x_max:604,o:"m 604 207 q 590 121 604 161 q 542 51 575 81 q 457 3 510 21 q 326 -14 404 -14 q 269 -12 301 -14 q 203 -5 236 -10 q 138 8 169 0 q 83 28 107 17 l 111 156 q 163 133 133 142 q 223 117 192 124 q 285 108 254 111 q 340 106 315 106 q 372 108 354 106 q 403 117 389 110 q 428 137 418 124 q 438 171 438 150 q 413 228 438 206 q 351 267 389 250 q 272 302 314 285 q 192 347 229 319 q 130 415 154 374 q 106 518 106 456 q 127 604 106 568 q 183 663 149 640 q 263 697 218 686 q 354 708 308 708 q 469 701 407 708 q 582 676 532 693 l 557 549 q 467 576 519 567 q 374 585 414 585 q 297 567 319 585 q 275 521 275 549 q 299 474 275 493 q 360 436 324 454 q 440 399 397 418 q 519 355 482 381 q 580 294 556 329 q 604 207 604 258 z "},t:{ha:611,x_min:69,x_max:542,o:"m 542 21 q 526 14 540 19 q 490 2 513 8 q 435 -9 467 -4 q 365 -14 403 -14 q 205 47 256 -14 q 154 215 154 108 l 154 572 l 69 572 l 69 694 l 128 694 q 156 704 149 694 q 164 736 164 714 l 164 861 l 321 882 l 321 694 l 517 699 l 507 568 l 321 572 l 321 261 q 342 145 321 182 q 411 108 364 108 q 447 112 428 108 q 481 121 465 115 q 515 133 499 126 l 542 21 l 542 21 z "},u:{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 175 41 226 -14 q 124 208 124 96 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 z "},v:{ha:758,x_min:42,x_max:717,o:"m 456 0 l 276 0 l 42 694 l 232 694 l 369 156 l 546 694 l 717 694 l 456 0 z "},w:{ha:1118,x_min:42,x_max:1076,o:"m 861 0 l 681 0 l 556 467 l 417 0 l 236 0 l 42 694 l 218 694 l 346 172 l 489 694 l 654 694 l 786 172 l 901 694 l 1076 694 l 861 0 z "},x:{ha:703,x_min:14,x_max:689,o:"m 479 0 l 349 229 l 207 0 l 14 0 l 271 350 l 57 694 l 261 694 l 365 492 l 493 694 l 683 694 l 442 353 l 689 0 l 479 0 z "},y:{ha:800,x_min:-7,x_max:758,o:"m 421 -118 q 369 -209 399 -172 q 306 -267 339 -246 q 238 -298 274 -289 q 167 -307 203 -307 q 65 -297 114 -307 q -7 -276 17 -287 l 24 -139 q 60 -153 42 -147 q 96 -162 75 -158 q 136 -167 117 -167 q 200 -151 174 -167 q 247 -112 226 -136 q 281 -58 267 -87 q 306 1 294 -28 l 47 694 l 251 694 l 397 182 l 574 694 l 758 694 l 421 -118 z "},z:{ha:658,x_min:50,x_max:604,o:"m 597 0 l 56 0 l 50 122 l 386 564 l 69 560 l 69 694 l 589 694 l 589 569 l 251 128 l 604 132 l 597 0 z "},"{":{ha:624,x_min:111,x_max:526,o:"m 524 -201 l 433 -194 q 351 -176 382 -190 q 303 -144 319 -162 q 281 -102 286 -125 q 275 -56 275 -79 l 275 176 q 262 241 275 206 q 226 307 249 276 q 174 358 204 338 q 111 379 144 379 l 111 485 q 174 506 144 485 q 226 557 204 526 q 262 623 249 588 q 275 688 275 658 l 275 919 q 281 966 275 943 q 303 1008 286 989 q 351 1040 319 1026 q 433 1058 382 1054 l 524 1065 l 526 971 l 435 964 q 395 938 410 961 q 381 874 381 914 l 381 674 q 360 574 381 618 q 312 499 339 529 q 258 452 285 468 q 217 436 231 436 l 217 428 q 258 412 231 428 q 312 365 285 396 q 360 290 339 335 q 381 190 381 246 l 381 -10 q 395 -74 381 -50 q 435 -100 410 -97 l 526 -107 l 524 -201 z "},"|":{ha:778,x_min:338,x_max:440,o:"m 338 -332 l 338 1054 l 440 1054 l 440 -332 l 338 -332 z "},"}":{ha:624,x_min:97,x_max:513,o:"m 513 379 q 449 358 479 379 q 397 307 419 338 q 362 241 375 276 q 349 176 349 206 l 349 -56 q 344 -102 349 -79 q 322 -144 339 -125 q 274 -176 306 -162 q 190 -194 243 -190 l 100 -201 l 97 -107 l 189 -100 q 228 -74 214 -97 q 243 -10 243 -50 l 243 190 q 264 290 243 246 q 312 365 285 335 q 366 412 339 396 q 407 428 393 428 l 407 436 q 366 452 393 436 q 312 499 339 468 q 264 574 285 529 q 243 674 243 618 l 243 874 q 228 938 243 914 q 189 964 214 961 l 97 971 l 100 1065 l 190 1058 q 274 1040 243 1054 q 322 1008 306 1026 q 344 966 339 989 q 349 919 349 943 l 349 688 q 362 623 349 658 q 397 557 375 588 q 449 506 419 526 q 513 485 479 485 l 513 379 l 513 379 z "},"~":{ha:731,x_min:56,x_max:675,o:"m 675 533 q 668 459 675 496 q 643 392 661 422 q 596 344 625 363 q 521 325 567 325 q 430 338 475 325 q 344 365 385 350 q 267 393 303 381 q 207 406 232 406 q 178 383 183 406 q 172 328 172 360 l 56 328 q 61 402 56 365 q 83 468 67 439 q 130 515 100 497 q 207 533 160 533 q 290 519 246 533 q 378 490 335 506 q 458 460 421 474 q 521 446 496 446 q 567 533 567 446 l 675 533 l 675 533 z "},"\\xC2\\xA1":{ha:413,x_min:100,x_max:313,o:"m 313 546 q 285 476 313 497 q 208 456 258 456 q 100 546 100 456 q 128 614 100 590 q 208 638 157 638 q 285 616 257 638 q 313 546 313 594 m 115 -282 l 140 388 l 272 388 l 296 -282 l 115 -282 z "},"\\xC2\\xA2":{ha:669,x_min:63,x_max:607,o:"m 607 25 q 564 7 589 15 q 511 -6 542 0 q 440 -14 481 -12 l 440 -132 l 322 -140 l 322 -3 q 219 38 267 10 q 136 110 171 67 q 82 212 101 153 q 63 344 63 271 q 83 492 63 429 q 140 598 104 554 q 222 667 175 642 q 322 701 269 692 l 322 826 l 440 835 l 440 707 q 513 698 482 704 q 563 685 543 692 q 601 668 586 678 l 575 550 q 535 569 557 561 q 491 583 515 576 q 436 589 467 589 q 286 526 340 589 q 232 344 232 463 q 248 246 232 290 q 292 169 264 201 q 358 120 319 138 q 440 103 396 103 q 498 108 472 103 q 543 121 524 114 q 583 138 565 128 l 607 25 l 607 25 z "},"\\xC2\\xA3":{ha:817,x_min:76,x_max:740,o:"m 732 -10 l 256 -1 q 211 -6 233 -1 q 170 -17 189 -11 q 138 -30 151 -24 q 122 -37 125 -36 l 76 75 q 105 88 89 81 q 136 108 121 96 q 163 137 151 119 q 176 179 175 154 l 193 361 l 117 361 l 117 501 l 206 501 l 219 638 q 256 778 228 724 q 324 864 283 833 q 415 906 365 894 q 519 917 465 917 q 591 913 560 917 q 643 906 622 910 q 686 893 668 900 l 661 756 q 619 768 642 763 q 577 777 600 774 q 529 781 554 781 q 480 774 504 781 q 436 751 456 768 q 403 705 417 735 q 385 628 389 675 l 372 501 l 626 506 l 617 357 l 360 361 l 338 129 l 740 129 l 732 -10 z "},"\\xE2\\x81\\x84":{ha:947,x_min:99,x_max:858,o:"m 160 71 l 99 124 l 800 875 l 858 826 l 160 71 z "},"\\xC2\\xA5":{ha:832,x_min:56,x_max:776,o:"m 501 424 l 696 424 l 686 328 l 490 328 l 490 256 l 681 256 l 671 160 l 490 160 l 490 0 l 321 0 l 321 160 l 135 160 l 135 256 l 321 256 l 321 328 l 135 328 l 135 424 l 314 424 l 56 903 l 247 903 l 419 522 l 606 903 l 776 903 l 501 424 z "},"\\xC6\\x92":{ha:701,x_min:38,x_max:669,o:"m 642 779 q 619 786 632 783 q 594 790 608 789 q 563 792 579 792 q 478 760 506 792 q 444 661 451 728 l 438 590 l 606 594 l 588 468 l 428 472 l 400 125 q 339 -46 390 7 q 175 -99 288 -99 q 122 -97 147 -99 q 78 -93 97 -96 q 38 -86 56 -90 l 60 46 q 83 42 69 44 q 144 38 107 38 q 188 47 171 38 q 214 74 204 57 q 228 117 224 92 q 235 175 232 143 l 261 472 l 188 472 l 197 590 l 272 590 l 281 683 q 360 860 292 808 q 546 911 429 911 q 591 908 569 911 q 631 903 613 906 q 669 893 651 899 l 642 779 z "},"\\xC2\\xA7":{ha:738,x_min:90,x_max:647,o:"m 647 428 q 608 313 647 363 q 511 239 569 263 q 572 175 546 211 q 599 92 599 139 q 572 -7 599 33 q 501 -72 544 -47 q 407 -108 458 -97 q 306 -119 356 -119 q 197 -110 253 -119 q 90 -85 142 -100 l 110 15 q 207 -6 157 1 q 306 -14 257 -14 q 351 -10 328 -14 q 392 5 374 -6 q 421 33 410 15 q 432 78 432 51 q 407 123 432 104 q 345 159 382 142 q 265 197 308 176 q 185 248 222 217 q 124 325 149 279 q 99 438 99 371 q 131 549 99 500 q 218 626 163 599 q 170 690 190 656 q 150 767 150 724 q 174 856 150 819 q 235 916 197 893 q 318 950 272 939 q 408 961 364 961 q 513 953 463 961 q 615 933 563 944 l 596 829 q 511 850 553 840 q 425 860 469 860 q 349 843 381 860 q 318 774 318 826 q 342 722 318 743 q 403 681 367 700 q 483 642 440 663 q 562 594 525 622 q 623 526 599 565 q 647 428 647 486 m 536 403 q 503 451 536 425 q 428 500 471 476 q 344 544 386 524 q 285 574 303 564 q 231 527 249 561 q 214 457 214 493 q 240 400 214 426 q 303 352 267 374 q 378 313 340 331 q 439 285 417 296 q 508 327 481 296 q 536 403 536 358 z "},"'":{ha:319,x_min:83,x_max:236,o:"m 211 651 l 107 651 l 83 1007 l 236 1007 l 211 651 z "},"\\xE2\\x80\\x9C":{ha:614,x_min:118,x_max:586,o:"m 586 614 q 576 589 586 599 q 540 574 567 579 l 415 549 q 400 606 407 575 q 388 666 393 632 q 383 738 383 700 q 401 846 383 796 q 442 935 419 896 q 500 1018 467 981 l 568 988 q 547 944 557 969 q 533 893 539 924 q 526 822 526 863 q 535 757 526 788 q 556 700 544 726 q 577 652 568 674 q 586 614 586 631 m 322 614 q 312 589 322 599 q 275 574 301 579 l 150 549 q 135 606 142 575 q 123 666 128 632 q 118 738 118 700 q 136 846 118 796 q 176 935 154 896 q 235 1018 201 981 l 303 988 q 282 944 292 969 q 267 893 274 924 q 261 822 261 863 q 271 757 261 788 q 292 700 281 726 q 313 652 303 674 q 322 614 322 631 z "},"\\xC2\\xAB":{ha:918,x_min:153,x_max:821,o:"m 740 25 l 440 353 l 742 682 l 821 631 l 629 353 l 821 76 l 740 25 m 453 25 l 153 353 l 454 682 l 533 631 l 340 353 l 533 76 l 453 25 z "},"\\xE2\\x80\\xB9":{ha:631,x_min:153,x_max:533,o:"m 453 25 l 153 353 l 454 682 l 533 631 l 340 353 l 533 76 l 453 25 z "},"\\xE2\\x80\\xBA":{ha:632,x_min:97,x_max:479,o:"m 178 25 l 99 76 l 290 353 l 97 631 l 178 682 l 479 353 l 178 25 z "},"\\xEF\\xAC\\x81":{ha:889,x_min:83,x_max:771,o:"m 771 694 q 768 569 769 631 q 766 461 767 517 q 765 367 765 406 l 765 333 q 766 240 765 297 q 768 129 767 182 q 771 0 769 67 l 593 0 q 596 129 594 67 q 598 239 597 182 q 599 333 599 296 l 599 582 l 324 576 l 324 333 q 324 236 324 293 q 326 126 325 179 q 329 0 328 65 l 153 0 q 156 126 154 65 q 157 236 157 179 q 157 333 157 293 l 157 576 l 83 576 l 83 694 l 158 694 q 170 808 158 751 q 218 910 182 864 q 322 984 254 956 q 500 1013 389 1013 q 577 1008 544 1013 q 632 997 610 1004 q 675 981 657 990 l 656 864 q 619 878 640 872 q 578 888 601 883 q 526 892 554 892 q 431 879 469 892 q 369 842 393 867 q 336 780 346 817 q 326 694 326 743 l 771 694 l 771 694 z "},"\\xEF\\xAC\\x82":{ha:944,x_min:83,x_max:824,o:"m 646 0 q 649 124 647 63 q 651 233 650 176 q 651 333 651 290 l 651 676 q 651 770 651 715 q 649 876 650 825 q 646 1000 647 936 l 824 1014 q 821 885 822 947 q 819 774 819 832 q 818 676 818 717 l 818 333 q 819 233 818 289 q 821 124 819 176 q 824 0 822 63 l 646 0 m 511 883 q 488 890 501 888 q 462 894 476 893 q 431 896 447 896 q 349 864 374 896 q 324 765 324 832 l 324 694 l 492 699 l 485 572 l 324 576 l 324 333 q 324 236 324 293 q 326 126 325 179 q 329 0 328 65 l 153 0 q 156 126 154 65 q 157 236 157 179 q 157 333 157 293 l 157 576 l 83 576 l 83 694 l 158 694 l 158 788 q 223 964 158 913 q 404 1015 288 1015 q 449 1013 428 1015 q 489 1007 471 1010 q 529 997 510 1003 l 511 883 z "},"\\xE2\\x80\\x93":{ha:722,x_min:28,x_max:694,o:"m 28 350 l 28 475 l 694 475 l 694 350 l 28 350 z "},"\\xE2\\x80\\xA0":{ha:583,x_min:83,x_max:500,o:"m 490 556 l 360 561 l 365 -117 l 224 -117 l 229 561 l 83 556 l 83 688 l 229 682 q 229 700 229 686 q 228 733 229 714 q 227 774 228 751 q 226 818 226 796 q 224 935 225 871 l 365 949 l 360 682 l 500 688 l 490 556 z "},"\\xE2\\x80\\xA1":{ha:583,x_min:83,x_max:500,o:"m 490 235 l 360 240 l 365 -117 l 224 -117 l 229 240 l 83 235 l 83 367 l 229 361 l 229 561 l 83 556 l 83 688 l 229 682 l 224 935 l 365 949 l 360 682 l 500 688 l 490 556 l 360 561 l 360 361 l 500 367 l 490 235 z "},"\\xC2\\xB7":{ha:510,x_min:125,x_max:385,o:"m 385 469 q 355 379 385 410 q 256 349 325 349 q 158 377 190 349 q 125 469 125 406 q 157 562 125 533 q 256 590 189 590 q 356 560 328 590 q 385 469 385 529 z "},"\\xC2\\xB6":{ha:831,x_min:83,x_max:726,o:"m 721 818 l 618 824 q 618 763 618 796 q 617 695 618 729 q 617 628 617 661 q 617 569 617 596 l 618 125 q 618 29 618 86 q 619 -81 618 -28 q 621 -208 621 -143 l 538 -208 l 538 824 l 469 824 l 471 -208 l 388 -208 q 389 -81 388 -143 q 390 29 390 -28 q 390 125 390 86 l 390 401 l 335 401 q 251 416 296 401 q 169 462 207 431 q 108 540 132 493 q 83 651 83 588 q 103 750 83 704 q 158 830 124 796 q 238 883 192 864 q 338 903 285 903 l 726 907 l 721 818 z "},"\\xE2\\x80\\xA2":{ha:611,x_min:125,x_max:486,o:"m 486 469 q 479 390 486 422 q 453 339 472 358 q 398 310 433 319 q 306 301 363 301 q 213 310 249 301 q 158 339 178 319 q 132 390 139 358 q 125 469 125 422 q 132 549 125 517 q 158 601 139 581 q 213 629 178 621 q 306 638 249 638 q 398 629 363 638 q 453 601 433 621 q 479 549 472 581 q 486 469 486 517 z "},"\\xE2\\x80\\x9A":{ha:386,x_min:49,x_max:275,o:"m 49 -294 q 97 -190 76 -250 q 118 -78 118 -131 q 108 -15 118 -44 q 88 42 99 15 q 67 91 76 68 q 57 131 57 114 q 72 159 57 150 q 104 171 88 168 l 243 199 q 267 106 258 156 q 275 10 275 56 q 264 -80 275 -35 q 233 -169 253 -125 q 188 -252 214 -212 q 131 -322 161 -292 l 49 -294 z "},"\\xE2\\x80\\x9E":{ha:650,x_min:49,x_max:539,o:"m 313 -294 q 361 -190 340 -250 q 382 -78 382 -131 q 372 -15 382 -44 q 351 42 363 15 q 331 91 340 68 q 321 131 321 114 q 336 159 321 150 q 368 171 351 168 l 507 199 q 531 106 522 156 q 539 10 539 56 q 528 -80 539 -35 q 497 -169 517 -125 q 451 -252 478 -212 q 394 -322 425 -292 l 313 -294 m 49 -294 q 97 -190 76 -250 q 118 -78 118 -131 q 108 -15 118 -44 q 88 42 99 15 q 67 91 76 68 q 57 131 57 114 q 72 159 57 150 q 104 171 88 168 l 243 199 q 267 106 258 156 q 275 10 275 56 q 264 -80 275 -35 q 233 -169 253 -125 q 188 -252 214 -212 q 131 -322 161 -292 l 49 -294 z "},"\\xE2\\x80\\x9D":{ha:669,x_min:83,x_max:551,o:"m 551 829 q 533 722 551 772 q 493 632 515 671 q 435 549 468 586 l 367 579 q 388 622 378 597 q 402 674 396 643 q 408 744 408 706 q 399 810 408 779 q 378 867 390 840 q 358 915 367 893 q 349 953 349 936 q 358 978 349 968 q 394 993 368 988 l 519 1018 q 536 961 529 992 q 547 901 543 935 q 551 829 551 867 m 288 829 q 269 722 288 772 q 229 632 251 671 q 169 549 204 586 l 101 579 q 122 622 113 597 q 137 674 131 643 q 143 744 143 706 q 134 810 143 779 q 113 867 125 840 q 92 915 101 893 q 83 953 83 936 q 94 978 83 968 q 129 993 104 988 l 254 1018 q 271 961 264 992 q 283 901 278 935 q 288 829 288 867 z "},"\\xC2\\xBB":{ha:913,x_min:97,x_max:760,o:"m 460 25 l 379 76 l 572 353 l 379 631 l 458 682 l 760 353 l 460 25 m 178 25 l 97 76 l 290 353 l 97 631 l 176 682 l 478 353 l 178 25 z "},"\\xE2\\x80\\xA6":{ha:1051,x_min:90,x_max:961,o:"m 961 79 q 858 -15 961 -15 q 758 79 758 -15 q 858 174 758 174 q 938 150 914 174 q 961 79 961 126 m 629 79 q 525 -15 629 -15 q 426 79 426 -15 q 525 174 426 174 q 605 150 581 174 q 629 79 629 126 m 293 79 q 190 -15 293 -15 q 90 79 90 -15 q 115 150 90 128 q 190 172 139 172 q 269 149 246 172 q 293 79 293 126 z "},"\\xE2\\x80\\xB0":{ha:1589,x_min:83,x_max:1506,o:"m 1506 246 q 1454 58 1506 117 q 1303 0 1403 0 q 1153 58 1203 0 q 1103 246 1103 117 q 1153 433 1103 375 q 1304 490 1203 490 q 1456 433 1406 490 q 1506 246 1506 375 m 1390 246 q 1370 367 1390 332 q 1304 403 1350 403 q 1237 367 1257 403 q 1217 246 1217 332 q 1237 124 1217 160 q 1303 88 1257 88 q 1371 124 1351 88 q 1390 246 1390 160 m 1040 246 q 989 58 1040 117 q 838 0 938 0 q 687 58 738 0 q 636 246 636 117 q 686 433 636 375 q 838 490 736 490 q 990 433 939 490 q 1040 246 1040 375 m 926 246 q 905 367 926 332 q 838 403 883 403 q 771 367 790 403 q 751 246 751 332 q 772 124 751 160 q 838 88 792 88 q 906 124 886 88 q 926 246 926 160 m 336 -14 l 254 36 l 793 925 l 872 879 l 336 -14 m 486 657 q 435 470 486 528 q 283 413 383 413 q 133 470 183 413 q 83 657 83 528 q 133 844 83 786 q 285 903 183 903 q 436 844 386 903 q 486 657 486 786 m 372 657 q 351 779 372 743 q 285 815 331 815 q 217 779 238 815 q 197 657 197 743 q 217 535 197 571 q 283 500 238 500 q 352 535 332 500 q 372 657 372 571 z "},"\\xC2\\xBF":{ha:653,x_min:56,x_max:583,o:"m 483 546 q 453 475 483 494 q 378 456 424 456 q 301 475 331 456 q 271 546 271 494 q 302 615 271 594 q 378 636 333 636 q 453 616 424 636 q 483 546 483 596 m 583 -256 q 480 -287 539 -278 q 372 -297 421 -297 q 257 -285 314 -297 q 156 -247 200 -274 q 83 -174 111 -219 q 56 -58 56 -128 q 74 49 56 8 q 122 117 93 90 q 183 160 150 143 q 245 199 217 178 q 292 249 274 219 q 311 329 311 279 q 307 382 311 357 l 450 389 q 460 341 457 365 q 464 293 464 317 q 447 213 464 244 q 403 159 429 182 q 347 119 378 136 q 291 81 317 101 q 248 33 265 60 q 231 -36 231 6 q 244 -94 231 -69 q 281 -134 258 -118 q 331 -158 303 -150 q 389 -165 360 -165 q 465 -156 425 -165 q 538 -128 506 -146 l 583 -256 l 583 -256 z "},"\`":{ha:469,x_min:63,x_max:407,o:"m 336 731 l 63 985 l 226 1046 l 407 765 l 336 731 z "},"\\xC2\\xB4":{ha:469,x_min:63,x_max:407,o:"m 133 731 l 63 765 l 243 1046 l 407 985 l 133 731 z "},"\\xCB\\x86":{ha:636,x_min:63,x_max:574,o:"m 494 749 l 315 910 l 142 749 l 63 775 l 275 1056 l 361 1056 l 574 775 l 494 749 z "},"\\xCB\\x9C":{ha:703,x_min:63,x_max:640,o:"m 640 990 q 633 916 640 953 q 608 849 626 879 q 561 801 590 819 q 486 782 532 782 q 402 794 440 782 q 331 822 364 807 q 268 850 297 838 q 214 863 239 863 q 185 840 190 863 q 179 785 179 817 l 63 785 q 68 859 63 822 q 90 925 74 896 q 137 972 107 954 q 214 990 167 990 q 291 976 253 990 q 365 947 329 963 q 431 917 400 931 q 486 903 461 903 q 532 990 532 903 l 640 990 l 640 990 z "},"\\xC2\\xA8":{ha:574,x_min:63,x_max:511,o:"m 511 899 q 426 819 511 819 q 366 838 386 819 q 346 899 346 857 q 365 959 346 940 q 426 978 385 978 q 492 958 472 978 q 511 899 511 939 m 228 899 q 143 819 228 819 q 83 838 103 819 q 63 899 63 857 q 82 959 63 940 q 143 978 101 978 q 208 958 189 978 q 228 899 228 939 z "},"\\xCB\\x9A":{ha:457,x_min:63,x_max:394,o:"m 394 904 q 378 829 394 858 q 338 783 363 800 q 285 760 314 767 q 231 754 257 754 q 176 762 206 754 q 122 788 147 769 q 79 834 96 806 q 63 906 63 863 q 79 982 63 953 q 121 1028 96 1011 q 175 1051 146 1044 q 229 1057 204 1057 q 282 1051 253 1057 q 336 1029 311 1046 q 378 983 361 1013 q 394 904 394 953 m 308 903 q 287 970 308 951 q 229 989 265 989 q 170 971 194 989 q 146 906 146 953 q 154 870 146 885 q 175 846 163 856 q 203 831 188 836 q 232 826 218 826 q 286 844 264 826 q 308 903 308 863 z "},"\\xC2\\xB8":{ha:389,x_min:63,x_max:326,o:"m 326 -153 q 301 -232 326 -200 q 239 -283 276 -264 q 158 -311 201 -303 q 76 -319 114 -319 l 63 -237 q 121 -228 96 -236 q 161 -207 143 -221 q 179 -169 179 -193 q 171 -141 179 -153 q 149 -122 163 -129 q 121 -113 136 -115 q 92 -114 106 -111 l 111 35 l 185 35 l 188 -14 q 247 -29 221 -15 q 290 -63 272 -43 q 317 -108 308 -83 q 326 -153 326 -132 z "},"\\xCB\\x87":{ha:636,x_min:63,x_max:574,o:"m 361 749 l 275 749 l 63 1029 l 142 1056 l 315 894 l 494 1056 l 574 1029 l 361 749 z "},"\\xE2\\x80\\x94":{ha:1389,x_min:0,x_max:1389,o:"m 0 350 l 0 475 l 1389 475 l 1389 350 l 0 350 z "},"\\xC3\\x86":{ha:1200,x_min:28,x_max:1131,o:"m 589 0 q 590 75 589 36 q 592 150 592 108 q 593 232 593 192 l 344 232 l 225 0 l 28 0 l 540 903 l 1119 903 l 1111 768 l 760 774 l 760 546 l 1063 546 l 1054 410 l 760 415 l 760 131 l 1131 136 l 1131 0 l 589 0 m 593 357 q 594 548 593 446 q 593 739 594 650 l 399 357 l 593 357 l 593 357 z "},\\u00C2\\u00AA:{ha:575,x_min:56,x_max:519,o:"m 519 408 q 480 402 501 406 q 438 399 458 399 q 392 409 410 399 q 365 432 375 419 q 349 465 354 447 q 317 432 335 447 q 277 408 301 419 q 221 397 253 397 q 101 442 146 397 q 56 557 56 486 q 83 647 56 614 q 153 695 111 679 q 244 715 194 711 q 338 719 294 719 l 338 743 q 311 809 338 789 q 239 829 285 829 q 197 824 219 829 q 156 811 175 818 q 113 793 133 803 l 92 881 q 143 899 114 890 q 202 911 168 906 q 281 917 236 917 q 351 910 318 917 q 411 883 385 903 q 453 831 438 864 q 468 746 468 799 l 468 526 q 471 497 468 508 q 486 486 474 486 q 499 488 493 486 q 513 490 506 489 l 519 408 l 519 408 m 338 649 l 328 649 q 276 644 301 649 q 232 628 251 639 q 200 599 213 617 q 188 557 188 582 q 206 510 188 529 q 256 490 224 490 q 301 501 279 490 q 338 525 322 513 l 338 649 z "},"\\xC3\\x98":{ha:996,x_min:69,x_max:926,o:"m 926 449 q 891 230 926 318 q 797 88 856 142 q 661 10 738 33 q 501 -12 585 -12 q 390 -2 444 -12 q 285 33 335 8 l 228 -47 l 132 19 l 190 101 q 103 241 136 156 q 69 450 69 326 q 106 669 69 581 q 202 813 142 758 q 340 892 263 868 q 500 915 418 915 q 615 902 558 915 q 724 861 672 889 l 774 932 l 869 865 l 817 789 q 897 650 867 733 q 926 449 926 567 m 639 740 q 500 782 583 782 q 314 697 378 782 q 250 450 250 613 q 289 243 250 321 l 639 740 l 639 740 m 746 449 q 713 642 746 565 l 368 151 q 501 115 424 115 q 685 201 624 115 q 746 449 746 288 z "},"\\xC5\\x92":{ha:1225,x_min:83,x_max:1156,o:"m 569 0 q 529 -4 558 0 q 468 -6 500 -8 q 325 25 394 -1 q 202 106 256 51 q 116 244 149 160 q 83 450 83 329 q 120 669 83 581 q 217 811 157 757 q 353 888 276 865 q 510 911 429 911 q 533 910 517 911 q 567 908 550 910 q 601 906 585 907 q 625 903 618 904 l 1144 903 l 1139 768 l 771 774 l 771 551 l 1088 551 l 1083 415 l 771 421 l 771 131 l 1156 136 l 1156 0 l 569 0 m 601 781 q 572 783 588 782 q 547 785 560 785 q 522 785 533 785 q 328 698 400 785 q 257 450 257 611 q 330 200 257 288 q 524 113 403 113 q 547 113 533 113 q 572 114 560 113 q 601 115 588 115 l 601 781 z "},\\u00C2\\u00BA:{ha:593,x_min:56,x_max:538,o:"m 538 656 q 519 536 538 585 q 467 456 500 488 q 391 411 435 425 q 297 397 347 397 q 203 411 247 397 q 127 456 160 425 q 75 537 94 488 q 56 657 56 586 q 75 777 56 728 q 128 858 94 826 q 205 903 161 889 q 297 917 249 917 q 390 902 346 917 q 466 856 433 888 q 518 776 499 825 q 538 656 538 726 m 404 656 q 377 788 404 746 q 297 829 350 829 q 215 788 240 829 q 189 657 189 747 q 215 525 189 567 q 297 483 240 483 q 380 524 356 483 q 404 656 404 565 z "},"\\xC3\\xA6":{ha:1142,x_min:63,x_max:1079,o:"m 1079 444 q 1074 385 1079 415 q 1057 328 1068 356 l 647 328 q 664 244 647 285 q 710 172 681 203 q 778 122 739 140 q 863 103 818 103 q 947 115 903 103 q 1028 144 992 126 l 1053 33 q 997 12 1028 21 q 933 -3 967 3 q 868 -11 900 -8 q 808 -14 836 -14 q 738 -6 775 -14 q 665 16 700 1 q 600 54 629 31 q 553 108 571 78 q 502 55 533 78 q 435 17 471 32 q 362 -6 400 1 q 289 -14 324 -14 q 199 1 240 -14 q 127 45 157 17 q 80 114 97 74 q 63 204 63 154 q 103 329 63 285 q 206 395 144 374 q 338 422 267 417 q 467 426 408 426 l 467 469 q 453 524 467 501 q 419 562 440 547 q 370 583 397 576 q 315 590 343 590 q 227 575 276 590 q 142 543 178 560 l 115 661 q 174 683 142 674 q 242 697 207 692 q 312 706 278 703 q 375 708 346 708 q 488 687 435 708 q 578 617 542 665 q 799 708 669 708 q 911 691 860 708 q 1000 640 963 674 q 1058 556 1038 606 q 1079 444 1079 507 m 914 424 q 917 443 917 433 q 917 464 917 453 q 888 559 917 521 q 799 597 860 597 q 733 583 760 597 q 688 545 706 569 q 660 490 669 521 q 649 424 651 458 l 914 424 l 914 424 m 478 326 q 403 324 446 326 q 323 310 361 322 q 258 274 285 299 q 232 204 232 250 q 265 140 232 160 q 339 121 299 121 q 413 138 375 121 q 478 179 451 156 l 478 326 z "},"\\xC4\\xB1":{ha:429,x_min:124,x_max:301,o:"m 124 0 q 126 129 125 67 q 128 239 128 182 q 129 333 129 296 l 129 367 q 128 461 129 407 q 126 565 128 515 q 124 685 125 624 l 301 699 q 299 571 300 633 q 297 462 297 518 q 296 367 296 406 l 296 333 q 297 240 296 297 q 299 129 297 182 q 301 0 300 67 l 124 0 z "},"\\xC3\\xB8":{ha:833,x_min:63,x_max:771,o:"m 771 346 q 745 180 771 249 q 672 68 719 111 q 560 6 625 25 q 417 -14 496 -14 q 253 13 324 -14 l 199 -64 l 103 3 l 154 76 q 86 187 110 121 q 63 347 63 253 q 88 514 63 446 q 161 626 114 582 q 273 689 208 669 q 417 708 338 708 q 579 682 510 708 l 636 763 l 732 696 l 678 619 q 747 508 722 575 q 771 346 771 442 m 501 571 q 417 592 464 592 q 344 578 378 592 q 286 535 311 564 q 247 459 261 506 q 233 347 233 413 q 239 276 233 308 q 254 218 244 244 l 501 571 l 501 571 m 600 346 q 579 478 600 426 l 329 124 q 417 101 368 101 q 489 115 456 101 q 547 158 522 129 q 586 234 572 188 q 600 346 600 281 z "},"\\xC5\\x93":{ha:1263,x_min:63,x_max:1200,o:"m 1200 444 q 1194 385 1200 415 q 1178 328 1189 356 l 768 328 q 785 244 768 285 q 831 172 801 203 q 899 122 860 140 q 983 103 938 103 q 1067 115 1022 103 q 1149 144 1113 126 l 1174 33 q 1122 10 1153 19 q 1059 -4 1092 1 q 995 -12 1026 -10 q 940 -14 964 -14 q 799 15 867 -14 q 683 100 732 44 q 563 13 632 40 q 417 -14 494 -14 q 151 78 239 -14 q 63 347 63 169 q 151 617 63 525 q 417 708 239 708 q 567 686 493 708 q 692 603 640 664 q 919 708 781 708 q 1032 691 981 708 q 1121 640 1083 674 q 1179 558 1158 607 q 1200 444 1200 508 m 1035 424 q 1038 443 1038 433 q 1038 464 1038 453 q 1009 559 1038 521 q 919 597 981 597 q 853 583 881 597 q 808 545 826 569 q 781 490 790 521 q 769 424 772 458 l 1035 424 l 1035 424 m 600 346 q 591 435 600 390 q 560 514 582 479 q 504 570 539 549 q 417 592 469 592 q 328 570 364 592 q 272 515 293 549 q 242 437 251 481 q 233 347 233 393 q 242 258 233 303 q 272 179 251 214 q 328 123 293 144 q 417 101 364 101 q 505 123 469 101 q 561 178 540 144 q 591 256 582 213 q 600 346 600 300 z "},"\\xC3\\x9F":{ha:946,x_min:118,x_max:869,o:"m 869 197 q 847 100 869 140 q 786 35 824 60 q 700 -2 749 10 q 601 -14 651 -14 q 477 -3 543 -14 q 356 28 411 7 l 385 151 q 478 116 425 132 q 575 100 531 100 q 615 101 593 100 q 655 110 636 103 q 686 131 674 117 q 699 169 699 144 q 674 212 699 193 q 614 249 650 231 q 535 287 578 267 q 456 335 492 307 q 395 403 419 364 q 371 496 371 442 q 392 608 371 565 q 446 675 414 650 q 516 713 478 700 q 586 736 554 725 q 640 761 618 747 q 661 803 661 775 q 646 853 661 833 q 607 883 631 872 q 556 899 583 894 q 503 903 528 903 q 406 884 447 903 q 339 832 365 865 q 300 753 313 799 q 288 656 288 708 l 288 353 q 288 176 288 264 q 290 0 289 89 l 118 0 q 120 176 119 89 q 121 353 121 264 l 121 656 q 221 925 121 836 q 497 1014 321 1014 q 601 1005 546 1014 q 702 973 656 996 q 779 911 749 950 q 810 811 810 872 q 789 715 810 746 q 738 671 768 685 q 671 653 707 657 q 604 641 635 650 q 553 608 574 632 q 532 532 532 585 q 557 478 532 500 q 619 435 582 456 q 701 396 657 415 q 782 349 744 376 q 844 286 819 322 q 869 197 869 250 z "},"\\xE2\\x84\\xA2":{ha:1076,x_min:56,x_max:1007,o:"m 444 818 l 300 818 l 300 585 q 300 531 300 563 q 301 469 300 499 q 303 399 303 435 l 194 399 q 196 469 194 435 q 197 531 197 499 q 197 585 197 563 l 197 818 l 56 818 l 56 903 l 449 903 l 444 818 m 897 767 l 771 447 l 708 447 l 582 763 l 569 397 l 488 397 q 492 471 490 435 q 494 533 493 501 q 496 585 496 565 l 510 903 l 624 903 l 750 594 l 871 903 l 983 903 l 1000 585 q 1002 533 1001 565 q 1004 471 1003 501 q 1007 397 1006 435 l 908 397 l 897 767 z "},"\\xC3\\xB7":{ha:913,x_min:97,x_max:815,o:"m 549 717 q 456 629 549 629 q 390 650 411 629 q 368 717 368 671 q 389 783 368 763 q 456 803 410 803 q 526 781 504 803 q 549 717 549 760 m 97 415 l 97 514 l 815 514 l 815 415 l 97 415 m 549 215 q 456 128 549 128 q 390 149 411 128 q 368 215 368 169 q 389 281 368 261 q 456 301 410 301 q 526 280 504 301 q 549 215 549 258 z "},"\\xC2\\xB0":{ha:446,x_min:42,x_max:404,o:"m 404 849 q 386 762 404 796 q 341 708 368 728 q 283 680 314 688 q 225 672 251 672 q 167 681 199 672 q 107 711 135 690 q 60 766 79 732 q 42 850 42 800 q 60 939 42 904 q 107 994 79 974 q 167 1021 135 1014 q 224 1028 199 1028 q 280 1021 249 1028 q 339 994 311 1014 q 385 940 367 975 q 404 849 404 906 m 339 850 q 328 910 339 886 q 300 949 317 935 q 263 970 283 964 q 224 976 243 976 q 183 969 204 976 q 146 948 163 963 q 118 910 129 933 q 107 851 107 886 q 141 756 107 789 q 225 724 175 724 q 307 753 275 724 q 339 850 339 783 z "},"\\xC2\\xAE":{ha:756,x_min:56,x_max:700,o:"m 700 686 q 670 530 700 592 q 593 432 640 468 q 489 382 546 396 q 378 368 432 368 q 268 382 325 368 q 164 432 211 396 q 86 529 117 468 q 56 686 56 590 q 85 842 56 781 q 162 941 115 904 q 265 992 208 978 q 376 1007 322 1007 q 486 992 429 1007 q 591 942 543 978 q 669 843 639 906 q 700 686 700 781 m 629 688 q 606 812 629 763 q 547 890 583 861 q 466 931 511 919 q 376 943 421 943 q 285 931 331 943 q 203 890 239 919 q 146 812 168 861 q 124 688 124 763 q 146 564 124 613 q 205 486 168 515 q 287 446 242 457 q 378 435 332 435 q 470 446 425 435 q 551 486 515 457 q 608 564 586 515 q 629 688 629 613 m 463 508 l 364 658 l 331 658 l 331 510 l 257 510 l 257 882 l 375 882 q 424 877 400 882 q 465 860 447 872 q 494 826 483 847 q 506 771 506 804 q 488 706 506 732 q 439 669 469 681 l 554 511 l 463 508 m 433 768 q 416 809 433 799 q 375 819 399 819 l 332 819 l 332 714 l 375 714 q 418 728 403 714 q 433 768 433 742 z "},"\\xC2\\xA9":{ha:1104,x_min:83,x_max:1021,o:"m 1021 449 q 977 221 1021 310 q 865 80 933 132 q 713 8 796 28 q 551 -12 631 -12 q 392 8 475 -12 q 240 79 308 28 q 128 220 172 131 q 83 449 83 310 q 127 676 83 586 q 238 820 171 767 q 389 895 306 874 q 551 917 472 917 q 711 895 628 917 q 863 821 794 874 q 976 677 932 768 q 1021 449 1021 586 m 939 449 q 902 638 939 563 q 808 756 865 713 q 683 817 751 800 q 551 835 614 835 q 418 817 486 835 q 294 755 350 799 q 201 637 238 711 q 165 449 165 563 q 201 260 165 335 q 294 143 238 186 q 419 83 350 100 q 551 67 488 67 q 685 83 617 67 q 810 143 754 100 q 903 260 867 186 q 939 449 939 335 m 706 213 q 692 205 703 210 q 664 194 682 200 q 620 185 646 189 q 563 181 594 181 q 458 197 507 181 q 374 248 410 214 q 316 333 338 282 q 294 451 294 383 q 315 578 294 526 q 371 663 336 631 q 451 711 406 696 q 544 726 496 726 q 613 722 585 726 q 661 710 642 717 q 690 699 681 704 q 701 693 700 693 l 678 610 q 644 626 661 619 q 610 638 629 633 q 572 643 592 643 q 506 633 538 643 q 449 601 474 624 q 408 542 424 579 q 393 451 393 506 q 410 364 393 400 q 453 305 426 328 q 512 272 479 282 q 576 263 544 263 q 618 267 599 263 q 653 278 638 271 q 685 293 669 285 l 706 213 l 706 213 z "},"\\xC3\\x81":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 482 944 l 411 979 l 592 1260 l 756 1199 l 482 944 z "},"\\xC3\\x82":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 681 961 l 501 1122 l 328 961 l 249 988 l 461 1268 l 547 1268 l 760 988 l 681 961 z "},"\\xC3\\x84":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 739 1051 q 654 972 739 972 q 594 991 614 972 q 574 1051 574 1010 q 593 1112 574 1093 q 654 1131 613 1131 q 719 1111 700 1131 q 739 1051 739 1092 m 456 1051 q 371 972 456 972 q 310 991 331 972 q 290 1051 290 1010 q 310 1112 290 1093 q 371 1131 329 1131 q 436 1111 417 1131 q 456 1051 456 1092 z "},"\\xC3\\x80":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 472 943 l 199 1197 l 363 1258 l 543 978 l 472 943 z "},"\\xC3\\x85":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 668 1111 q 652 1036 668 1065 q 612 990 636 1007 q 559 967 588 974 q 504 961 531 961 q 450 969 479 961 q 395 994 421 976 q 353 1041 369 1013 q 336 1113 336 1069 q 353 1189 336 1160 q 394 1235 369 1218 q 449 1258 419 1251 q 503 1264 478 1264 q 556 1258 526 1264 q 610 1236 585 1253 q 651 1190 635 1219 q 668 1111 668 1160 m 582 1110 q 560 1177 582 1158 q 503 1196 539 1196 q 444 1178 468 1196 q 419 1113 419 1160 q 428 1077 419 1092 q 449 1053 436 1063 q 476 1038 461 1043 q 506 1033 492 1033 q 560 1051 538 1033 q 582 1110 582 1069 z "},"\\xC3\\x83":{ha:976,x_min:56,x_max:921,o:"m 732 0 l 649 232 l 329 232 l 240 0 l 56 0 l 429 903 l 593 903 l 921 0 l 732 0 m 490 700 l 368 357 l 610 357 l 490 700 m 788 1179 q 781 1105 788 1142 q 756 1038 774 1068 q 708 990 738 1008 q 633 971 679 971 q 549 983 588 971 q 478 1011 511 996 q 415 1039 444 1026 q 361 1051 386 1051 q 332 1028 338 1051 q 326 974 326 1006 l 210 974 q 215 1048 210 1011 q 238 1114 221 1085 q 284 1161 254 1143 q 361 1179 314 1179 q 438 1165 400 1179 q 512 1135 476 1151 q 578 1106 547 1119 q 633 1092 608 1092 q 679 1179 679 1092 l 788 1179 l 788 1179 z "},"\\xC3\\x87":{ha:814,x_min:69,x_max:765,o:"m 765 44 q 700 15 738 28 q 619 -5 668 4 q 506 -14 571 -14 l 507 -28 q 566 -43 540 -29 q 610 -77 592 -57 q 637 -122 628 -97 q 646 -167 646 -146 q 621 -246 646 -214 q 558 -297 596 -278 q 477 -325 521 -317 q 396 -333 433 -333 l 382 -251 q 440 -242 415 -250 q 481 -221 463 -235 q 499 -183 499 -207 q 490 -155 499 -167 q 469 -136 482 -143 q 440 -127 456 -129 q 411 -128 425 -125 l 426 -8 q 282 39 347 3 q 169 133 217 75 q 96 271 122 192 q 69 447 69 350 q 100 644 69 557 q 186 792 131 732 q 319 885 242 853 q 489 917 396 917 q 612 910 563 917 q 692 893 661 903 q 747 868 728 882 l 714 736 q 660 758 689 749 q 600 774 635 767 q 524 781 565 781 q 417 760 467 781 q 330 699 367 740 q 272 594 293 657 q 250 447 250 532 q 271 304 250 367 q 328 199 292 242 q 416 134 365 156 q 525 113 467 113 q 594 120 558 113 q 657 138 629 128 q 721 163 690 149 l 765 44 l 765 44 z "},"\\xC3\\x89":{ha:750,x_min:125,x_max:681,o:"m 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 669 129 613 q 128 778 129 725 q 125 903 126 839 l 669 903 l 661 768 l 296 774 l 296 546 l 613 546 l 604 410 l 296 415 l 296 131 l 681 136 l 681 0 l 125 0 m 407 943 l 336 978 l 517 1258 l 681 1197 l 407 943 z "},"\\xC3\\x8A":{ha:750,x_min:125,x_max:681,o:"m 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 669 129 613 q 128 778 129 725 q 125 903 126 839 l 669 903 l 661 768 l 296 774 l 296 546 l 613 546 l 604 410 l 296 415 l 296 131 l 681 136 l 681 0 l 125 0 m 574 961 l 394 1122 l 221 961 l 142 988 l 354 1268 l 440 1268 l 653 988 l 574 961 z "},"\\xC3\\x8B":{ha:750,x_min:125,x_max:681,o:"m 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 669 129 613 q 128 778 129 725 q 125 903 126 839 l 669 903 l 661 768 l 296 774 l 296 546 l 613 546 l 604 410 l 296 415 l 296 131 l 681 136 l 681 0 l 125 0 m 629 1054 q 544 975 629 975 q 484 994 504 975 q 464 1054 464 1013 q 483 1115 464 1096 q 544 1133 503 1133 q 610 1114 590 1133 q 629 1054 629 1094 m 346 1054 q 261 975 346 975 q 201 994 221 975 q 181 1054 181 1013 q 200 1115 181 1096 q 261 1133 219 1133 q 326 1114 307 1133 q 346 1054 346 1094 z "},"\\xC3\\x88":{ha:750,x_min:125,x_max:681,o:"m 125 0 q 128 124 126 63 q 129 233 129 176 q 129 333 129 290 l 129 569 q 129 669 129 613 q 128 778 129 725 q 125 903 126 839 l 669 903 l 661 768 l 296 774 l 296 546 l 613 546 l 604 410 l 296 415 l 296 131 l 681 136 l 681 0 l 125 0 m 415 961 l 142 1215 l 306 1276 l 486 996 l 415 961 z "},"\\xC3\\x8D":{ha:428,x_min:125,x_max:492,o:"m 218 961 l 147 996 l 328 1276 l 492 1215 l 218 961 m 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 q 300 778 301 839 q 298 668 299 725 q 297 569 297 611 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 z "},"\\xC3\\x8E":{ha:428,x_min:-47,x_max:464,o:"m 385 961 l 206 1122 l 32 961 l -47 988 l 165 1268 l 251 1268 l 464 988 l 385 961 m 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 q 300 778 301 839 q 298 668 299 725 q 297 569 297 611 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 z "},"\\xC3\\x8F":{ha:428,x_min:-3,x_max:446,o:"m 446 1040 q 361 961 446 961 q 300 980 319 961 q 281 1040 281 999 q 299 1101 281 1082 q 361 1119 318 1119 q 426 1100 406 1119 q 446 1040 446 1081 m 163 1040 q 78 961 163 961 q 17 980 36 961 q -3 1040 -3 999 q 16 1101 -3 1082 q 78 1119 35 1119 q 142 1100 122 1119 q 163 1040 163 1081 m 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 q 300 778 301 839 q 298 668 299 725 q 297 569 297 611 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 z "},"\\xC3\\x8C":{ha:428,x_min:-61,x_max:303,o:"m 213 961 l -61 1215 l 103 1276 l 283 996 l 213 961 m 125 0 q 128 129 126 67 q 130 240 129 182 q 131 333 131 297 l 131 569 q 130 668 131 611 q 128 778 129 725 q 125 903 126 839 l 303 903 q 300 778 301 839 q 298 668 299 725 q 297 569 297 611 l 297 333 q 298 239 297 296 q 300 129 299 182 q 303 0 301 67 l 125 0 z "},"\\xC3\\x91":{ha:1014,x_min:139,x_max:903,o:"m 824 1181 q 818 1106 824 1143 q 797 1040 813 1069 q 751 993 781 1011 q 672 975 721 975 q 594 988 631 975 q 526 1017 557 1001 q 468 1047 494 1033 q 419 1060 442 1060 q 386 1042 396 1060 q 376 975 376 1025 l 246 975 q 251 1049 246 1013 q 274 1115 257 1086 q 320 1163 290 1144 q 397 1181 350 1181 q 472 1167 436 1181 q 541 1137 508 1153 q 602 1107 574 1121 q 656 1093 631 1093 q 701 1181 701 1093 l 824 1181 l 824 1181 m 722 0 l 304 614 l 304 333 q 305 235 304 293 q 307 125 306 178 q 310 0 308 64 l 139 0 q 142 125 140 64 q 144 235 143 178 q 144 333 144 293 l 144 569 q 144 664 144 607 q 142 774 143 721 q 139 903 140 836 l 321 903 l 738 286 l 738 569 q 738 600 738 581 q 738 645 738 619 q 737 699 738 671 q 736 757 736 728 q 733 903 735 824 l 903 903 q 900 774 901 836 q 898 664 899 721 q 897 569 897 607 l 897 333 q 898 235 897 292 q 900 125 899 178 q 903 0 901 64 l 722 0 z "},"\\xC3\\x93":{ha:992,x_min:69,x_max:922,o:"m 496 961 l 425 996 l 606 1276 l 769 1215 l 496 961 m 922 449 q 885 228 922 318 q 789 84 849 139 q 652 6 729 29 q 496 -18 575 -18 q 340 6 417 -18 q 203 84 263 29 q 106 228 143 139 q 69 449 69 318 q 106 669 69 579 q 203 813 143 758 q 340 892 263 868 q 496 915 417 915 q 652 892 575 915 q 789 813 729 868 q 885 669 849 758 q 922 449 922 579 m 742 449 q 678 697 742 611 q 496 782 614 782 q 314 697 378 782 q 250 449 250 611 q 314 201 250 286 q 496 115 378 115 q 678 201 614 115 q 742 449 742 286 z "},"\\xC3\\x94":{ha:992,x_min:69,x_max:922,o:"m 681 961 l 501 1122 l 328 961 l 249 988 l 461 1268 l 547 1268 l 760 988 l 681 961 m 922 449 q 885 228 922 318 q 789 84 849 139 q 652 6 729 29 q 496 -18 575 -18 q 340 6 417 -18 q 203 84 263 29 q 106 228 143 139 q 69 449 69 318 q 106 669 69 579 q 203 813 143 758 q 340 892 263 868 q 496 915 417 915 q 652 892 575 915 q 789 813 729 868 q 885 669 849 758 q 922 449 922 579 m 742 449 q 678 697 742 611 q 496 782 614 782 q 314 697 378 782 q 250 449 250 611 q 314 201 250 286 q 496 115 378 115 q 678 201 614 115 q 742 449 742 286 z "},"\\xC3\\x96":{ha:1024,x_min:97,x_max:950,o:"m 742 1053 q 657 974 742 974 q 596 992 615 974 q 576 1053 576 1011 q 595 1113 576 1094 q 657 1132 614 1132 q 722 1113 701 1132 q 742 1053 742 1093 m 458 1053 q 374 974 458 974 q 313 992 332 974 q 293 1053 293 1011 q 312 1113 293 1094 q 374 1132 331 1132 q 438 1113 418 1132 q 458 1053 458 1093 m 950 449 q 913 228 950 318 q 817 84 876 139 q 680 6 757 29 q 524 -18 603 -18 q 367 6 444 -18 q 231 84 290 29 q 134 228 171 139 q 97 449 97 318 q 134 669 97 579 q 231 813 171 758 q 367 892 290 868 q 524 915 444 915 q 680 892 603 915 q 817 813 757 868 q 913 669 876 758 q 950 449 950 579 m 769 449 q 706 697 769 611 q 524 782 642 782 q 342 697 406 782 q 278 449 278 611 q 342 201 278 286 q 524 115 406 115 q 706 201 642 115 q 769 449 769 286 z "},"\\xC3\\x92":{ha:992,x_min:69,x_max:922,o:"m 499 960 l 225 1214 l 389 1275 l 569 994 l 499 960 m 922 449 q 885 228 922 318 q 789 84 849 139 q 652 6 729 29 q 496 -18 575 -18 q 340 6 417 -18 q 203 84 263 29 q 106 228 143 139 q 69 449 69 318 q 106 669 69 579 q 203 813 143 758 q 340 892 263 868 q 496 915 417 915 q 652 892 575 915 q 789 813 729 868 q 885 669 849 758 q 922 449 922 579 m 742 449 q 678 697 742 611 q 496 782 614 782 q 314 697 378 782 q 250 449 250 611 q 314 201 250 286 q 496 115 378 115 q 678 201 614 115 q 742 449 742 286 z "},"\\xC3\\x95":{ha:1024,x_min:97,x_max:950,o:"m 818 1181 q 813 1106 818 1143 q 791 1040 807 1069 q 745 993 775 1011 q 667 975 715 975 q 588 988 625 975 q 520 1017 551 1001 q 463 1047 489 1033 q 414 1060 436 1060 q 381 1042 390 1060 q 371 975 371 1024 l 240 975 q 246 1049 240 1013 q 268 1115 251 1086 q 315 1163 285 1144 q 392 1181 344 1181 q 467 1167 431 1181 q 535 1137 503 1153 q 597 1107 568 1121 q 650 1093 625 1093 q 685 1114 674 1093 q 696 1181 696 1135 l 818 1181 l 818 1181 m 950 449 q 913 228 950 318 q 817 84 876 139 q 680 6 757 29 q 524 -18 603 -18 q 367 6 444 -18 q 231 84 290 29 q 134 228 171 139 q 97 449 97 318 q 134 669 97 579 q 231 813 171 758 q 367 892 290 868 q 524 915 444 915 q 680 892 603 915 q 817 813 757 868 q 913 669 876 758 q 950 449 950 579 m 769 449 q 706 697 769 611 q 524 782 642 782 q 342 697 406 782 q 278 449 278 611 q 342 201 278 286 q 524 115 406 115 q 706 201 642 115 q 769 449 769 286 z "},"\\xC3\\x9A":{ha:968,x_min:125,x_max:843,o:"m 482 960 l 411 994 l 592 1275 l 756 1214 l 482 960 m 843 903 q 840 776 842 839 q 838 667 839 724 q 838 569 838 610 l 838 350 q 819 209 838 275 q 760 93 801 143 q 653 15 719 43 q 489 -14 586 -14 q 317 15 386 -14 q 207 92 249 43 q 148 208 165 142 q 131 349 131 274 l 131 569 q 130 665 131 608 q 128 774 129 721 q 125 901 126 836 l 301 901 q 300 774 301 836 q 298 665 299 721 q 297 569 297 608 l 297 328 q 304 256 297 292 q 331 191 311 219 q 389 144 351 163 q 489 126 426 126 q 584 144 549 126 q 639 192 619 163 q 665 257 658 221 q 671 329 671 293 l 671 569 q 670 666 671 610 q 668 775 669 722 q 665 903 667 838 l 843 903 l 843 903 z "},"\\xC3\\x9B":{ha:968,x_min:125,x_max:843,o:"m 657 961 l 478 1122 l 304 961 l 225 988 l 438 1268 l 524 1268 l 736 988 l 657 961 m 843 903 q 840 776 842 839 q 838 667 839 724 q 838 569 838 610 l 838 350 q 819 209 838 275 q 760 93 801 143 q 653 15 719 43 q 489 -14 586 -14 q 317 15 386 -14 q 207 92 249 43 q 148 208 165 142 q 131 349 131 274 l 131 569 q 130 665 131 608 q 128 774 129 721 q 125 901 126 836 l 301 901 q 300 774 301 836 q 298 665 299 721 q 297 569 297 608 l 297 328 q 304 256 297 292 q 331 191 311 219 q 389 144 351 163 q 489 126 426 126 q 584 144 549 126 q 639 192 619 163 q 665 257 658 221 q 671 329 671 293 l 671 569 q 670 666 671 610 q 668 775 669 722 q 665 903 667 838 l 843 903 l 843 903 z "},"\\xC3\\x9C":{ha:968,x_min:125,x_max:843,o:"m 711 1054 q 626 975 711 975 q 565 994 585 975 q 546 1054 546 1013 q 565 1115 546 1096 q 626 1133 583 1133 q 691 1114 671 1133 q 711 1054 711 1094 m 428 1054 q 343 975 428 975 q 282 994 301 975 q 263 1054 263 1013 q 281 1115 263 1096 q 343 1133 300 1133 q 408 1114 388 1133 q 428 1054 428 1094 m 843 903 q 840 776 842 839 q 838 667 839 724 q 838 569 838 610 l 838 350 q 819 209 838 275 q 760 93 801 143 q 653 15 719 43 q 489 -14 586 -14 q 317 15 386 -14 q 207 92 249 43 q 148 208 165 142 q 131 349 131 274 l 131 569 q 130 665 131 608 q 128 774 129 721 q 125 901 126 836 l 301 901 q 300 774 301 836 q 298 665 299 721 q 297 569 297 608 l 297 328 q 304 256 297 292 q 331 191 311 219 q 389 144 351 163 q 489 126 426 126 q 584 144 549 126 q 639 192 619 163 q 665 257 658 221 q 671 329 671 293 l 671 569 q 670 666 671 610 q 668 775 669 722 q 665 903 667 838 l 843 903 l 843 903 z "},"\\xC3\\x99":{ha:968,x_min:125,x_max:843,o:"m 476 960 l 203 1214 l 367 1275 l 547 994 l 476 960 m 843 903 q 840 776 842 839 q 838 667 839 724 q 838 569 838 610 l 838 350 q 819 209 838 275 q 760 93 801 143 q 653 15 719 43 q 489 -14 586 -14 q 317 15 386 -14 q 207 92 249 43 q 148 208 165 142 q 131 349 131 274 l 131 569 q 130 665 131 608 q 128 774 129 721 q 125 901 126 836 l 301 901 q 300 774 301 836 q 298 665 299 721 q 297 569 297 608 l 297 328 q 304 256 297 292 q 331 191 311 219 q 389 144 351 163 q 489 126 426 126 q 584 144 549 126 q 639 192 619 163 q 665 257 658 221 q 671 329 671 293 l 671 569 q 670 666 671 610 q 668 775 669 722 q 665 903 667 838 l 843 903 l 843 903 z "},"\\xC5\\xB8":{ha:860,x_min:28,x_max:832,o:"m 504 329 l 508 0 l 333 0 l 338 332 l 28 903 l 233 903 l 433 494 l 647 903 l 832 903 l 504 329 m 671 1038 q 586 958 671 958 q 526 977 546 958 q 506 1038 506 996 q 525 1098 506 1079 q 586 1117 544 1117 q 651 1097 632 1117 q 671 1038 671 1078 m 388 1038 q 303 958 388 958 q 242 977 263 958 q 222 1038 222 996 q 242 1098 222 1079 q 303 1117 261 1117 q 368 1097 349 1117 q 388 1038 388 1078 z "},"\\xC3\\xA1":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 371 731 l 300 765 l 481 1046 l 644 985 l 371 731 z "},"\\xC3\\xA2":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 549 735 l 369 896 l 196 735 l 117 761 l 329 1042 l 415 1042 l 628 761 l 549 735 z "},"\\xC3\\xA4":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 601 857 q 517 778 601 778 q 456 797 476 778 q 436 857 436 815 q 456 917 436 899 q 517 936 475 936 q 582 917 563 936 q 601 857 601 897 m 318 857 q 233 778 318 778 q 173 797 193 778 q 153 857 153 815 q 172 917 153 899 q 233 936 192 936 q 299 917 279 936 q 318 857 318 897 z "},"\\xC3\\xA0":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 365 731 l 92 985 l 256 1046 l 436 765 l 365 731 z "},"\\xC3\\xA5":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 531 904 q 515 829 531 858 q 474 783 499 800 q 422 760 450 767 q 367 754 393 754 q 313 762 342 754 q 258 788 283 769 q 215 834 232 806 q 199 906 199 863 q 215 982 199 953 q 257 1028 232 1011 q 311 1051 282 1044 q 365 1057 340 1057 q 418 1051 389 1057 q 472 1029 447 1046 q 514 983 497 1013 q 531 904 531 953 m 444 903 q 423 970 444 951 q 365 989 401 989 q 306 971 331 989 q 282 906 282 953 q 290 870 282 885 q 311 846 299 856 q 339 831 324 836 q 368 826 354 826 q 422 844 400 826 q 444 903 444 863 z "},"\\xC3\\xA3":{ha:775,x_min:63,x_max:706,o:"m 706 1 q 657 -6 686 -1 q 599 -11 628 -11 q 517 10 549 -11 q 476 75 485 31 q 397 10 443 35 q 289 -14 351 -14 q 196 2 238 -14 q 124 47 154 18 q 78 117 94 76 q 63 204 63 157 q 101 326 63 282 q 200 393 140 371 q 331 421 260 415 q 467 426 403 426 l 467 469 q 455 529 467 506 q 422 566 443 553 q 374 585 401 579 q 315 590 346 590 q 258 583 288 590 q 201 567 228 576 q 142 543 171 556 l 115 661 q 183 685 144 674 q 265 701 217 694 q 375 708 313 708 q 474 699 428 708 q 556 663 521 689 q 613 590 592 636 q 633 474 633 544 l 633 171 q 640 122 633 139 q 668 104 647 104 q 688 107 676 104 q 699 108 693 108 l 706 1 l 706 1 m 467 326 l 442 326 q 368 324 406 326 q 301 309 331 321 q 251 273 271 297 q 232 204 232 249 q 242 161 232 178 q 267 135 251 144 q 301 124 282 126 q 339 121 319 121 q 411 138 378 121 q 467 175 444 156 l 467 326 m 672 990 q 665 916 672 953 q 640 849 658 879 q 593 801 622 819 q 518 782 564 782 q 434 794 472 782 q 363 822 396 807 q 300 850 329 838 q 246 863 271 863 q 217 840 222 863 q 211 785 211 817 l 94 785 q 100 859 94 822 q 122 925 106 896 q 169 972 139 954 q 246 990 199 990 q 323 976 285 990 q 397 947 361 963 q 463 917 432 931 q 518 903 493 903 q 564 990 564 903 l 672 990 l 672 990 z "},"\\xC3\\xA7":{ha:711,x_min:90,x_max:635,o:"m 635 25 q 586 6 614 14 q 528 -8 563 -1 q 450 -14 494 -14 q 436 -13 443 -14 q 422 -12 429 -12 l 424 -28 q 483 -43 457 -29 q 526 -77 508 -57 q 553 -122 544 -97 q 563 -167 563 -146 q 538 -246 563 -214 q 475 -297 513 -278 q 394 -325 438 -317 q 313 -333 350 -333 l 299 -251 q 357 -242 332 -250 q 397 -221 379 -235 q 415 -183 415 -207 q 407 -155 415 -167 q 385 -136 399 -143 q 357 -127 372 -129 q 328 -128 342 -125 l 344 -1 q 244 41 290 13 q 163 113 197 69 q 110 214 129 156 q 90 344 90 272 q 118 513 90 444 q 192 626 146 582 q 299 689 239 669 q 424 708 360 708 q 515 702 476 708 q 579 689 554 696 q 629 668 608 681 l 603 550 q 563 569 585 561 q 519 583 543 576 q 464 589 494 589 q 314 526 368 589 q 260 344 260 463 q 276 246 260 290 q 319 169 292 201 q 385 120 347 138 q 468 103 424 103 q 526 108 500 103 q 571 121 551 114 q 611 138 593 128 l 635 25 l 635 25 z "},"\\xC3\\xA9":{ha:738,x_min:63,x_max:675,o:"m 675 447 q 673 413 675 432 q 668 373 671 393 q 661 334 665 353 q 653 301 657 315 l 243 301 q 260 220 243 257 q 307 158 278 183 q 375 117 336 132 q 458 103 414 103 q 519 109 490 103 q 572 124 549 115 q 624 144 599 133 l 649 33 q 585 10 621 21 q 508 -7 553 0 q 404 -14 463 -14 q 268 9 331 -14 q 160 77 206 32 q 88 190 114 122 q 63 344 63 257 q 147 618 63 528 q 394 708 231 708 q 516 688 464 708 q 603 633 568 668 q 657 550 639 597 q 675 447 675 503 m 510 424 q 514 485 515 454 q 500 542 513 517 q 463 582 488 567 q 394 597 438 597 q 340 590 367 597 q 292 562 313 582 q 258 508 271 542 q 244 424 244 475 l 510 424 l 510 424 m 399 731 l 328 765 l 508 1046 l 672 985 l 399 731 z "},\\u00C3\\u00AA:{ha:738,x_min:63,x_max:675,o:"m 675 447 q 673 413 675 432 q 668 373 671 393 q 661 334 665 353 q 653 301 657 315 l 243 301 q 260 220 243 257 q 307 158 278 183 q 375 117 336 132 q 458 103 414 103 q 519 109 490 103 q 572 124 549 115 q 624 144 599 133 l 649 33 q 585 10 621 21 q 508 -7 553 0 q 404 -14 463 -14 q 268 9 331 -14 q 160 77 206 32 q 88 190 114 122 q 63 344 63 257 q 147 618 63 528 q 394 708 231 708 q 516 688 464 708 q 603 633 568 668 q 657 550 639 597 q 675 447 675 503 m 510 424 q 514 485 515 454 q 500 542 513 517 q 463 582 488 567 q 394 597 438 597 q 340 590 367 597 q 292 562 313 582 q 258 508 271 542 q 244 424 244 475 l 510 424 l 510 424 m 578 735 l 399 896 l 225 735 l 146 761 l 358 1042 l 444 1042 l 657 761 l 578 735 z "},"\\xC3\\xAB":{ha:738,x_min:63,x_max:675,o:"m 675 447 q 673 413 675 432 q 668 373 671 393 q 661 334 665 353 q 653 301 657 315 l 243 301 q 260 220 243 257 q 307 158 278 183 q 375 117 336 132 q 458 103 414 103 q 519 109 490 103 q 572 124 549 115 q 624 144 599 133 l 649 33 q 585 10 621 21 q 508 -7 553 0 q 404 -14 463 -14 q 268 9 331 -14 q 160 77 206 32 q 88 190 114 122 q 63 344 63 257 q 147 618 63 528 q 394 708 231 708 q 516 688 464 708 q 603 633 568 668 q 657 550 639 597 q 675 447 675 503 m 510 424 q 514 485 515 454 q 500 542 513 517 q 463 582 488 567 q 394 597 438 597 q 340 590 367 597 q 292 562 313 582 q 258 508 271 542 q 244 424 244 475 l 510 424 l 510 424 m 601 857 q 517 778 601 778 q 456 797 476 778 q 436 857 436 815 q 456 917 436 899 q 517 936 475 936 q 582 917 563 936 q 601 857 601 897 m 318 857 q 233 778 318 778 q 173 797 193 778 q 153 857 153 815 q 172 917 153 899 q 233 936 192 936 q 299 917 279 936 q 318 857 318 897 z "},"\\xC3\\xA8":{ha:738,x_min:63,x_max:675,o:"m 675 447 q 673 413 675 432 q 668 373 671 393 q 661 334 665 353 q 653 301 657 315 l 243 301 q 260 220 243 257 q 307 158 278 183 q 375 117 336 132 q 458 103 414 103 q 519 109 490 103 q 572 124 549 115 q 624 144 599 133 l 649 33 q 585 10 621 21 q 508 -7 553 0 q 404 -14 463 -14 q 268 9 331 -14 q 160 77 206 32 q 88 190 114 122 q 63 344 63 257 q 147 618 63 528 q 394 708 231 708 q 516 688 464 708 q 603 633 568 668 q 657 550 639 597 q 675 447 675 503 m 510 424 q 514 485 515 454 q 500 542 513 517 q 463 582 488 567 q 394 597 438 597 q 340 590 367 597 q 292 562 313 582 q 258 508 271 542 q 244 424 244 475 l 510 424 l 510 424 m 393 731 l 119 985 l 283 1046 l 464 765 l 393 731 z "},"\\xC3\\xAD":{ha:368,x_min:96,x_max:471,o:"m 197 731 l 126 765 l 307 1046 l 471 985 l 197 731 m 96 0 q 99 129 97 67 q 101 239 100 182 q 101 333 101 296 l 101 367 q 101 461 101 407 q 99 565 100 515 q 96 685 97 624 l 274 699 q 271 571 272 633 q 269 462 269 518 q 268 367 268 406 l 268 333 q 269 240 268 297 q 271 129 269 182 q 274 0 272 67 l 96 0 z "},"\\xC3\\xAE":{ha:368,x_min:-64,x_max:447,o:"m 368 735 l 189 896 l 15 735 l -64 761 l 149 1042 l 235 1042 l 447 761 l 368 735 m 96 0 q 99 129 97 67 q 101 239 100 182 q 101 333 101 296 l 101 367 q 101 461 101 407 q 99 565 100 515 q 96 685 97 624 l 274 699 q 271 571 272 633 q 269 462 269 518 q 268 367 268 406 l 268 333 q 269 240 268 297 q 271 129 269 182 q 274 0 272 67 l 96 0 z "},"\\xC3\\xAF":{ha:368,x_min:-24,x_max:425,o:"m 425 857 q 340 778 425 778 q 280 797 300 778 q 260 857 260 815 q 279 917 260 899 q 340 936 299 936 q 406 917 386 936 q 425 857 425 897 m 142 857 q 57 778 142 778 q -3 797 17 778 q -24 857 -24 815 q -4 917 -24 899 q 57 936 15 936 q 122 917 103 936 q 142 857 142 897 m 96 0 q 99 129 97 67 q 101 239 100 182 q 101 333 101 296 l 101 367 q 101 461 101 407 q 99 565 100 515 q 96 685 97 624 l 274 699 q 271 571 272 633 q 269 462 269 518 q 268 367 268 406 l 268 333 q 269 240 268 297 q 271 129 269 182 q 274 0 272 67 l 96 0 z "},"\\xC3\\xAC":{ha:368,x_min:-75,x_max:274,o:"m 199 731 l -75 985 l 89 1046 l 269 765 l 199 731 m 96 0 q 99 129 97 67 q 101 239 100 182 q 101 333 101 296 l 101 367 q 101 461 101 407 q 99 565 100 515 q 96 685 97 624 l 274 699 q 271 571 272 633 q 269 462 269 518 q 268 367 268 406 l 268 333 q 269 240 268 297 q 271 129 269 182 q 274 0 272 67 l 96 0 z "},"\\xC3\\xB1":{ha:846,x_min:118,x_max:735,o:"m 565 0 l 565 422 q 537 534 565 501 q 456 567 508 567 q 401 560 428 567 q 352 543 375 553 q 313 525 329 533 q 290 513 297 517 l 290 333 q 291 233 290 290 q 293 124 292 176 q 294 0 294 63 l 118 0 q 121 124 119 63 q 123 233 122 176 q 124 333 124 290 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 292 701 l 288 611 q 338 645 311 628 q 396 676 364 663 q 465 699 428 690 q 544 708 501 708 q 683 656 636 708 q 731 488 731 604 l 731 333 q 731 235 731 292 q 733 125 732 178 q 735 0 735 64 l 565 0 m 715 990 q 708 916 715 953 q 683 849 701 879 q 636 801 665 819 q 561 782 607 782 q 477 794 515 782 q 406 822 439 807 q 343 850 372 838 q 289 863 314 863 q 260 840 265 863 q 254 785 254 817 l 138 785 q 143 859 138 822 q 165 925 149 896 q 212 972 182 954 q 289 990 242 990 q 366 976 328 990 q 440 947 404 963 q 506 917 475 931 q 561 903 536 903 q 607 990 607 903 l 715 990 l 715 990 z "},"\\xC3\\xB3":{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 m 413 731 l 342 765 l 522 1046 l 686 985 l 413 731 z "},"\\xC3\\xB4":{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 m 581 749 l 401 910 l 228 749 l 149 775 l 361 1056 l 447 1056 l 660 775 l 581 749 z "},"\\xC3\\xB6":{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 m 617 857 q 532 778 617 778 q 472 797 492 778 q 451 857 451 815 q 471 917 451 899 q 532 936 490 936 q 597 917 578 936 q 617 857 617 897 m 333 857 q 249 778 333 778 q 188 797 208 778 q 168 857 168 815 q 188 917 168 899 q 249 936 207 936 q 314 917 294 936 q 333 857 333 897 z "},"\\xC3\\xB2":{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 m 401 731 l 128 985 l 292 1046 l 472 765 l 401 731 z "},\\u00C3\\u00B5:{ha:806,x_min:63,x_max:743,o:"m 743 347 q 719 181 743 250 q 651 69 696 113 q 544 6 607 25 q 403 -14 481 -14 q 262 6 325 -14 q 154 69 199 25 q 86 181 110 113 q 63 347 63 250 q 86 514 63 446 q 154 626 110 582 q 261 689 199 669 q 403 708 324 708 q 544 689 482 708 q 651 626 607 669 q 719 514 696 582 q 743 347 743 446 m 572 347 q 560 464 572 417 q 526 540 549 511 q 473 580 504 568 q 403 592 442 592 q 333 580 364 592 q 279 540 301 568 q 245 464 257 511 q 233 347 233 417 q 246 229 233 276 q 281 153 258 182 q 334 113 303 125 q 403 101 365 101 q 472 113 440 101 q 525 153 503 125 q 560 229 547 182 q 572 347 572 276 m 693 990 q 686 916 693 953 q 661 849 679 879 q 614 801 643 819 q 539 782 585 782 q 455 794 493 782 q 383 822 417 807 q 321 850 350 838 q 267 863 292 863 q 238 840 243 863 q 232 785 232 817 l 115 785 q 121 859 115 822 q 143 925 126 896 q 190 972 160 954 q 267 990 219 990 q 344 976 306 990 q 417 947 382 963 q 483 917 453 931 q 539 903 514 903 q 585 990 585 903 l 693 990 l 693 990 z "},\\u00C3\\u00BA:{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 175 41 226 -14 q 124 208 124 96 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 m 428 731 l 357 765 l 538 1046 l 701 985 l 428 731 z "},"\\xC3\\xBB":{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 175 41 226 -14 q 124 208 124 96 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 m 603 749 l 424 910 l 250 749 l 171 775 l 383 1056 l 469 1056 l 682 775 l 603 749 z "},"\\xC3\\xBC":{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 175 41 226 -14 q 124 208 124 96 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 m 636 857 q 551 778 636 778 q 491 797 511 778 q 471 857 471 815 q 490 917 471 899 q 551 936 510 936 q 617 917 597 936 q 636 857 636 897 m 353 857 q 268 778 353 778 q 208 797 228 778 q 188 857 188 815 q 207 917 188 899 q 268 936 226 936 q 333 917 314 936 q 353 857 353 897 z "},"\\xC3\\xB9":{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 175 41 226 -14 q 124 208 124 96 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 m 419 731 l 146 985 l 310 1046 l 490 765 l 419 731 z "},"\\xC3\\xBF":{ha:800,x_min:-7,x_max:758,o:"m 421 -118 q 369 -209 399 -172 q 306 -267 339 -246 q 238 -298 274 -289 q 167 -307 203 -307 q 65 -297 114 -307 q -7 -276 17 -287 l 24 -139 q 60 -153 42 -147 q 96 -162 75 -158 q 136 -167 117 -167 q 200 -151 174 -167 q 247 -112 226 -136 q 281 -58 267 -87 q 306 1 294 -28 l 47 694 l 251 694 l 397 182 l 574 694 l 758 694 l 421 -118 m 635 857 q 550 778 635 778 q 490 797 510 778 q 469 857 469 815 q 489 917 469 899 q 550 936 508 936 q 615 917 596 936 q 635 857 635 897 m 351 857 q 267 778 351 778 q 206 797 226 778 q 186 857 186 815 q 206 917 186 899 q 267 936 225 936 q 332 917 313 936 q 351 857 351 897 z "},"\\xE2\\x89\\xA4":{ha:1228,x_min:69,x_max:1019,o:"m 1019 -87 l 69 440 l 1019 968 l 1019 -87 z "},"\\xC2\\xA0":{ha:389,x_min:0,x_max:0,o:""},"\\xE2\\x82\\xAC":{ha:825,x_min:69,x_max:756,o:"m 710 761 q 668 774 690 768 q 626 783 649 779 q 579 786 603 786 q 417 735 483 786 q 325 585 350 685 l 631 585 l 621 489 l 69 489 l 69 585 l 153 585 q 287 831 185 744 q 544 917 389 917 q 628 913 593 917 q 688 904 664 910 q 735 892 715 899 l 710 761 m 756 21 q 704 4 732 11 q 647 -8 681 -3 q 571 -14 613 -14 q 419 8 489 -14 q 294 73 349 31 q 204 178 240 115 q 151 319 168 240 l 69 319 l 69 415 l 615 415 l 606 319 l 331 319 q 428 166 358 219 q 594 113 499 113 q 647 117 622 113 q 689 129 671 122 q 728 144 710 136 l 756 21 l 756 21 z "},"\\xC2\\xAF":{ha:694,x_min:58,x_max:639,o:"m 58 946 q 150 943 104 944 q 233 941 189 942 q 315 940 278 940 l 404 940 q 485 941 444 940 q 561 943 526 942 q 639 946 601 944 l 639 822 q 560 826 600 825 q 484 828 525 828 q 404 829 443 829 l 315 829 q 234 828 279 829 q 150 826 189 828 q 58 824 104 825 l 58 946 z "},"\\xC2\\xBC":{ha:1375,x_min:83,x_max:1264,o:"m 1258 158 l 1157 158 l 1160 -1 l 1015 -1 l 1018 158 l 704 158 l 699 279 l 1013 692 l 1157 692 l 1157 267 l 1264 267 l 1258 158 m 1018 522 l 838 267 l 1018 267 l 1018 522 m 481 -97 l 382 -67 l 744 1118 l 843 1092 l 481 -97 m 253 856 l 114 811 l 83 944 l 390 1022 l 390 297 l 242 297 l 253 631 l 253 856 z "},"\\xC2\\xBE":{ha:1417,x_min:69,x_max:1306,o:"m 550 528 q 529 426 550 468 q 472 358 508 385 q 388 319 436 332 q 286 307 340 307 q 233 310 263 307 q 175 319 204 313 q 118 333 146 325 q 69 353 90 342 l 92 456 q 181 423 132 436 q 272 410 229 410 q 314 416 292 410 q 355 435 336 422 q 385 472 374 449 q 397 528 397 494 q 370 608 397 583 q 290 633 343 633 l 206 633 l 208 736 l 290 736 q 348 760 332 736 q 364 825 364 785 q 339 892 364 864 q 267 919 314 919 q 192 909 232 919 q 121 881 153 899 l 97 979 q 184 1012 135 999 q 276 1025 233 1025 q 365 1016 322 1025 q 442 985 408 1007 q 497 928 476 964 q 518 839 518 893 q 499 758 518 794 q 440 701 481 722 q 524 633 499 681 q 550 528 550 586 m 1300 158 l 1199 158 l 1201 -1 l 1057 -1 l 1060 158 l 746 158 l 740 279 l 1054 692 l 1199 692 l 1199 267 l 1306 267 l 1300 158 m 1060 522 l 879 267 l 1060 267 l 1060 522 m 556 -97 l 457 -67 l 819 1118 l 918 1092 l 556 -97 z "},"\\xC2\\xBD":{ha:1347,x_min:69,x_max:1236,o:"m 1228 0 l 756 0 q 753 19 754 10 q 753 40 753 29 q 776 161 753 113 q 835 243 800 210 q 910 300 869 276 q 986 347 951 324 q 1044 399 1021 371 q 1068 469 1068 426 q 944 585 1068 585 q 869 565 903 585 q 815 529 836 546 l 769 632 q 815 664 789 650 q 869 687 840 678 q 928 701 899 696 q 983 706 957 706 q 1074 691 1032 706 q 1147 649 1115 676 q 1196 580 1178 621 q 1214 485 1214 539 q 1193 380 1214 422 q 1141 308 1172 338 q 1074 258 1110 279 q 1006 218 1038 238 q 951 178 974 199 q 928 126 929 157 l 1236 133 l 1228 0 m 239 856 l 100 811 l 69 944 l 376 1022 l 376 297 l 228 297 l 239 631 l 239 856 m 468 -97 l 369 -67 l 732 1118 l 831 1092 l 468 -97 z "},"\\xE2\\x88\\x92":{ha:831,x_min:83,x_max:747,o:"m 747 524 l 747 406 l 83 406 l 83 524 l 747 524 z "},"\\xC3\\x97":{ha:861,x_min:104,x_max:757,o:"m 432 376 l 188 132 l 104 217 l 349 460 l 117 692 l 200 775 l 432 543 l 671 783 l 754 699 l 515 460 l 757 217 l 674 133 l 432 376 z "},\\u00C2\\u00B5:{ha:856,x_min:118,x_max:738,o:"m 563 0 l 568 83 q 458 18 524 50 q 310 -14 393 -14 q 269 -10 289 -14 l 281 -335 l 118 -335 q 121 -208 119 -271 q 123 -97 122 -156 q 124 6 124 -39 l 124 367 q 123 457 124 403 q 121 563 122 511 q 118 688 119 622 l 294 701 q 293 569 294 633 q 291 459 292 515 q 290 367 290 403 l 290 274 q 317 162 290 193 q 396 131 344 131 q 449 138 422 131 q 500 155 476 146 q 541 173 524 164 q 565 186 558 182 l 565 361 q 565 460 565 404 q 564 567 565 515 q 561 688 563 626 l 738 701 q 735 575 736 638 q 733 464 733 522 q 732 361 732 406 l 732 328 q 733 231 732 288 q 735 124 733 175 q 738 0 736 64 l 563 0 z "},"\\xE2\\x88\\x82":{ha:792,x_min:63,x_max:688,o:"m 688 399 q 610 94 688 201 q 375 -14 532 -14 q 238 6 297 -14 q 140 69 179 25 q 82 181 101 113 q 63 347 63 250 q 80 491 63 425 q 133 606 97 557 q 226 681 169 654 q 360 708 282 708 q 430 701 400 708 q 479 682 460 693 q 518 656 503 669 l 518 719 q 504 826 518 785 q 466 891 490 868 q 409 922 442 914 q 339 931 376 931 q 263 926 296 931 q 206 914 229 921 q 158 896 179 907 l 121 1033 q 183 1053 150 1044 q 247 1065 211 1060 q 322 1071 283 1071 q 458 1059 392 1071 q 574 1009 524 1047 q 656 900 625 971 q 688 711 688 829 l 688 399 m 518 347 q 510 463 518 417 q 483 538 501 510 q 439 579 465 567 q 375 592 413 592 q 322 581 347 592 q 276 544 296 571 q 245 469 257 517 q 233 347 233 421 q 246 226 233 274 q 278 150 258 178 q 324 112 299 122 q 375 101 349 101 q 440 113 413 101 q 484 153 467 125 q 510 229 501 182 q 518 347 518 276 z "},"\\xC3\\xB0":{ha:810,x_min:63,x_max:706,o:"m 250 846 l 381 928 q 360 930 369 929 q 339 931 350 931 q 263 926 296 931 q 206 914 229 921 q 158 896 179 907 l 121 1033 q 183 1053 150 1044 q 247 1065 211 1060 q 322 1071 283 1071 q 437 1063 381 1071 q 540 1029 493 1054 l 686 1121 l 706 976 l 638 936 q 674 841 661 896 q 688 711 688 786 l 688 399 q 610 94 688 201 q 375 -14 532 -14 q 238 6 297 -14 q 140 69 179 25 q 82 181 101 113 q 63 347 63 250 q 80 491 63 425 q 133 606 97 557 q 226 681 169 654 q 360 708 282 708 q 430 701 400 708 q 479 682 460 693 q 518 656 503 669 l 518 719 q 511 796 518 764 q 493 851 504 828 l 268 718 l 250 846 m 518 347 q 510 463 518 417 q 483 538 501 510 q 439 579 465 567 q 375 592 413 592 q 322 581 347 592 q 276 544 296 571 q 245 469 257 517 q 233 347 233 421 q 246 226 233 274 q 278 150 258 178 q 324 112 299 122 q 375 101 349 101 q 440 113 413 101 q 484 153 467 125 q 510 229 501 182 q 518 347 518 276 z "},"\\xC3\\x90":{ha:936,x_min:19,x_max:867,o:"m 19 379 l 132 450 l 132 569 q 132 666 132 610 q 131 775 132 722 q 128 903 129 838 l 450 903 q 621 878 544 903 q 752 800 697 854 q 837 659 807 746 q 867 447 867 572 q 833 235 867 321 q 742 98 799 150 q 610 23 685 46 q 451 0 535 0 l 128 0 q 129 103 128 51 q 131 198 131 147 q 132 293 132 249 l 38 238 l 19 379 m 686 447 q 668 593 686 532 q 618 694 650 654 q 540 753 586 733 q 438 772 494 772 l 299 772 l 299 554 l 456 654 l 475 496 l 299 392 l 299 132 l 439 132 q 535 151 490 132 q 614 208 581 169 q 667 306 647 246 q 686 447 686 365 z "},"\\xC5\\x81":{ha:704,x_min:19,x_max:669,o:"m 19 379 l 133 450 l 133 569 q 133 663 133 606 q 131 772 132 719 q 128 903 129 835 l 306 903 l 300 556 l 456 654 l 475 496 l 300 392 l 300 131 q 335 131 313 131 q 385 131 357 131 q 446 133 414 132 q 510 133 478 133 q 669 136 585 135 l 663 0 l 128 0 q 131 104 129 51 q 133 199 132 149 q 133 293 133 250 l 38 238 l 19 379 z "},"\\xC5\\x82":{ha:424,x_min:19,x_max:475,o:"m 19 379 l 133 450 l 133 676 q 133 770 133 715 q 131 876 132 825 q 128 1000 129 936 l 306 1014 q 303 885 304 947 q 301 774 301 832 q 300 676 300 717 l 300 556 l 456 654 l 475 496 l 300 392 l 300 333 q 301 233 300 289 q 303 124 301 176 q 306 0 304 63 l 128 0 q 131 101 129 50 q 133 197 132 146 q 133 293 133 249 l 38 238 l 19 379 z "},"\\xC5\\xA0":{ha:776,x_min:92,x_max:707,o:"m 707 251 q 678 131 707 181 q 603 48 650 81 q 498 1 557 15 q 378 -14 439 -14 q 233 0 307 -14 q 92 38 158 14 l 125 189 q 178 164 149 176 q 238 142 207 151 q 300 127 269 133 q 357 121 331 121 q 413 126 383 121 q 466 143 442 131 q 506 178 490 156 q 522 233 522 200 q 503 292 522 269 q 439 333 483 314 q 331 376 390 354 q 219 433 271 397 q 133 526 168 469 q 99 672 99 582 q 125 785 99 739 q 195 861 151 832 q 294 903 239 890 q 407 917 349 917 q 479 914 447 917 q 540 906 511 911 q 600 895 569 901 q 668 882 631 889 l 640 740 q 532 770 590 760 q 421 781 474 781 q 372 776 396 781 q 328 761 347 772 q 296 731 308 750 q 283 681 283 711 q 313 608 283 635 q 393 561 342 582 q 497 521 442 542 q 599 467 551 500 q 676 384 646 435 q 707 251 707 333 m 450 969 l 364 969 l 151 1250 l 231 1276 l 404 1115 l 583 1276 l 663 1250 l 450 969 z "},"\\xC5\\xA1":{ha:668,x_min:83,x_max:606,o:"m 604 207 q 590 121 604 161 q 542 51 575 81 q 457 3 510 21 q 326 -14 404 -14 q 269 -12 301 -14 q 203 -5 236 -10 q 138 8 169 0 q 83 28 107 17 l 111 156 q 163 133 133 142 q 223 117 192 124 q 285 108 254 111 q 340 106 315 106 q 372 108 354 106 q 403 117 389 110 q 428 137 418 124 q 438 171 438 150 q 413 228 438 206 q 351 267 389 250 q 272 302 314 285 q 192 347 229 319 q 130 415 154 374 q 106 518 106 456 q 127 604 106 568 q 183 663 149 640 q 263 697 218 686 q 354 708 308 708 q 469 701 407 708 q 582 676 532 693 l 557 549 q 467 576 519 567 q 374 585 414 585 q 297 567 319 585 q 275 521 275 549 q 299 474 275 493 q 360 436 324 454 q 440 399 397 418 q 519 355 482 381 q 580 294 556 329 q 604 207 604 258 m 393 749 l 307 749 l 94 1029 l 174 1056 l 347 894 l 526 1056 l 606 1029 l 393 749 z "},"\\xC3\\x9D":{ha:860,x_min:28,x_max:832,o:"m 504 329 l 508 0 l 333 0 l 338 332 l 28 903 l 233 903 l 433 494 l 647 903 l 832 903 l 504 329 m 424 961 l 353 996 l 533 1276 l 697 1215 l 424 961 z "},"\\xC3\\xBD":{ha:800,x_min:-7,x_max:758,o:"m 421 -118 q 369 -209 399 -172 q 306 -267 339 -246 q 238 -298 274 -289 q 167 -307 203 -307 q 65 -297 114 -307 q -7 -276 17 -287 l 24 -139 q 60 -153 42 -147 q 96 -162 75 -158 q 136 -167 117 -167 q 200 -151 174 -167 q 247 -112 226 -136 q 281 -58 267 -87 q 306 1 294 -28 l 47 694 l 251 694 l 397 182 l 574 694 l 758 694 l 421 -118 m 413 731 l 342 765 l 522 1046 l 686 985 l 413 731 z "},"\\xC5\\xBD":{ha:846,x_min:69,x_max:776,o:"m 769 0 l 76 0 l 69 157 l 543 761 l 83 756 l 83 903 l 760 903 l 760 746 l 282 140 l 776 146 l 769 0 m 467 969 l 381 969 l 168 1250 l 247 1276 l 421 1115 l 600 1276 l 679 1250 l 467 969 z "},"\\xC5\\xBE":{ha:658,x_min:50,x_max:604,o:"m 597 0 l 56 0 l 50 122 l 386 564 l 69 560 l 69 694 l 589 694 l 589 569 l 251 128 l 604 132 l 597 0 m 375 749 l 289 749 l 76 1029 l 156 1056 l 329 894 l 508 1056 l 588 1029 l 375 749 z "},"\\xC3\\x9E":{ha:801,x_min:125,x_max:732,o:"m 301 904 l 301 818 q 301 760 301 786 q 299 735 300 733 l 415 735 q 535 724 478 735 q 635 683 592 713 q 706 601 679 653 q 732 467 732 549 q 708 349 732 400 q 641 265 683 299 q 540 215 599 232 q 415 199 482 199 l 297 199 l 301 0 l 125 0 q 128 128 126 65 q 130 238 129 181 q 131 333 131 294 l 131 569 l 125 903 l 301 904 m 299 331 l 414 331 q 526 363 489 331 q 563 467 563 396 q 551 533 563 507 q 519 575 539 560 q 472 597 499 590 q 414 603 444 603 l 299 603 l 299 331 z "},"\\xC3\\xBE":{ha:819,x_min:118,x_max:757,o:"m 757 343 q 735 199 757 264 q 676 86 714 133 q 587 13 639 39 q 474 -14 535 -14 q 397 -7 431 -14 q 339 8 363 0 q 289 29 311 18 l 293 -328 l 118 -333 q 121 -211 119 -271 q 123 -104 122 -160 q 124 -7 124 -49 l 124 681 q 123 775 124 721 q 121 879 122 829 q 118 1000 119 938 l 292 1014 l 289 636 q 343 672 314 657 q 403 697 368 686 q 479 708 438 708 q 693 613 629 708 q 757 343 757 517 m 588 343 q 543 519 588 463 q 410 576 499 576 q 365 570 386 576 q 326 557 343 564 q 290 536 307 549 l 290 138 q 329 128 308 133 q 370 120 347 124 q 418 117 393 117 q 480 128 450 117 q 534 167 510 140 q 573 236 558 193 q 588 343 588 279 z "},"\\xE2\\x89\\xA5":{ha:1228,x_min:208,x_max:1158,o:"m 208 968 l 1158 440 l 208 -87 l 208 968 z "},"\\xCB\\x9D":{ha:761,x_min:63,x_max:699,o:"m 133 731 l 63 765 l 243 1046 l 407 985 l 133 731 m 425 731 l 354 765 l 535 1046 l 699 985 l 425 731 z "},"\\xCB\\x99":{ha:385,x_min:63,x_max:322,o:"m 322 906 q 292 815 322 846 q 193 785 263 785 q 95 813 128 785 q 63 906 63 842 q 94 998 63 969 q 193 1026 126 1026 q 294 996 265 1026 q 322 906 322 965 z "},"\\xEF\\xA3\\xBF":{ha:4150,x_min:0,x_max:4150,o:"m 4150 904 l 4150 0 l 0 0 l 0 904 l 4150 904 m 640 542 l 640 390 q 661 337 640 353 q 707 321 682 321 q 742 326 726 321 q 769 340 757 332 q 792 355 782 347 q 807 367 801 363 l 807 321 q 786 272 807 288 q 740 251 765 257 q 672 250 711 246 l 672 210 q 764 210 724 201 q 826 241 799 217 q 854 321 854 265 l 854 531 q 844 576 854 561 q 807 592 833 592 q 760 585 781 592 q 738 576 749 581 l 738 547 l 807 542 l 807 411 q 778 392 793 400 q 752 378 765 385 q 728 371 739 371 q 688 418 688 371 l 688 531 q 638 592 688 592 q 617 591 625 592 q 603 589 608 590 q 592 586 597 588 l 592 547 l 640 542 m 1113 453 q 1103 406 1113 422 q 1080 381 1093 389 q 1051 372 1067 374 q 1022 371 1035 371 l 983 371 l 983 503 q 1015 522 1000 514 q 1045 535 1029 529 q 1074 542 1061 542 q 1108 516 1103 542 q 1113 453 1113 490 m 983 254 l 983 326 l 1022 326 q 1071 331 1046 326 q 1116 350 1096 336 q 1149 390 1136 364 q 1163 458 1163 417 q 1156 529 1163 503 q 1140 569 1150 556 q 1117 588 1131 583 q 1089 592 1104 592 q 1047 585 1065 592 q 1014 569 1029 578 q 983 547 997 560 q 968 581 983 569 q 932 592 953 592 q 911 591 919 592 q 897 589 903 590 q 888 586 892 588 l 888 547 l 938 542 l 938 254 l 888 250 l 888 210 l 1022 210 l 1022 250 l 983 254 m 1651 683 q 1686 649 1651 649 q 1708 658 1697 649 q 1719 683 1719 667 q 1713 704 1719 696 q 1686 713 1707 713 q 1661 704 1671 713 q 1651 683 1651 696 m 1321 550 q 1367 533 1350 550 q 1385 479 1385 515 l 1254 479 q 1272 530 1254 510 q 1321 550 1290 550 m 1321 596 q 1275 590 1297 596 q 1235 567 1253 583 q 1208 526 1218 551 q 1197 464 1197 501 q 1208 396 1197 424 q 1238 351 1219 368 q 1282 328 1257 335 q 1335 321 1307 321 q 1368 323 1350 321 q 1401 328 1386 325 q 1438 333 1419 331 l 1432 378 q 1399 374 1415 376 q 1368 370 1383 371 q 1340 369 1353 369 q 1315 371 1329 369 q 1288 379 1300 372 q 1265 400 1275 386 q 1254 440 1256 414 l 1436 440 q 1431 518 1440 483 q 1398 572 1422 547 q 1321 596 1374 596 m 1868 372 l 1868 506 q 1907 528 1882 514 q 1951 542 1932 542 q 1974 535 1961 542 q 1986 503 1986 528 l 1986 326 l 2076 326 l 2076 367 l 2033 372 l 2033 526 q 2013 574 2033 557 q 1969 592 1993 592 q 1931 585 1949 592 q 1899 569 1913 578 q 1868 547 1883 560 q 1853 581 1868 569 q 1817 592 1839 592 q 1782 589 1796 592 q 1772 586 1776 588 l 1772 547 l 1822 542 l 1822 372 l 1772 367 l 1772 326 l 1907 326 l 1907 367 l 1868 372 m 2146 683 q 2156 658 2146 667 q 2178 649 2167 649 q 2213 683 2213 649 q 2206 704 2213 696 q 2178 713 2200 713 q 2156 704 2167 713 q 2146 683 2146 696 m 2197 372 l 2197 542 q 2183 581 2197 571 q 2146 592 2169 592 q 2131 591 2139 592 q 2117 589 2124 590 q 2100 586 2108 588 l 2106 542 l 2150 547 l 2150 372 l 2100 367 l 2100 326 l 2243 326 l 2243 367 l 2197 372 m 2275 390 q 2294 339 2275 357 q 2343 321 2313 321 q 2373 322 2358 321 q 2400 326 2388 324 q 2428 332 2415 329 l 2424 374 q 2401 372 2413 374 q 2381 370 2392 371 q 2361 369 2371 369 q 2353 370 2360 369 q 2340 374 2346 371 q 2328 382 2333 376 q 2322 399 2322 388 l 2322 542 l 2422 547 l 2422 586 l 2328 586 l 2328 656 l 2282 656 l 2269 586 l 2236 576 l 2236 547 l 2275 542 l 2275 390 m 2494 683 q 2529 649 2494 649 q 2551 658 2540 649 q 2563 683 2563 667 q 2555 704 2563 696 q 2529 713 2547 713 q 2505 704 2515 713 q 2494 683 2494 696 m 2699 367 q 2674 374 2686 367 q 2663 401 2663 382 q 2681 429 2663 419 q 2721 444 2699 439 q 2778 453 2746 450 l 2778 396 q 2744 377 2765 388 q 2699 367 2724 367 m 2831 321 q 2854 324 2840 321 q 2865 326 2860 325 l 2861 371 l 2825 367 l 2825 485 q 2823 525 2825 506 q 2811 559 2821 544 q 2781 583 2801 574 q 2722 592 2760 592 q 2691 591 2707 592 q 2660 588 2675 590 q 2626 583 2643 585 l 2629 539 q 2660 543 2644 540 q 2689 547 2674 546 q 2717 547 2704 547 q 2766 534 2754 547 q 2778 492 2778 521 q 2736 489 2764 492 q 2680 477 2708 486 q 2631 449 2651 468 q 2610 396 2610 429 q 2633 340 2610 358 q 2694 321 2656 321 q 2729 326 2714 321 q 2756 339 2744 332 q 2778 357 2769 347 q 2785 339 2779 347 q 2801 326 2790 332 q 2831 321 2811 321 m 3115 683 q 3150 649 3115 649 q 3174 658 3163 649 q 3185 683 3185 667 q 3176 704 3185 696 q 3150 713 3167 713 q 3126 704 3138 713 q 3115 683 3115 696 m 3326 326 l 3383 326 l 3493 536 q 3490 577 3507 563 q 3447 592 3474 592 q 3431 590 3440 592 q 3413 586 3421 589 q 3392 581 3403 583 l 3392 547 l 3439 547 l 3360 386 l 3313 544 q 3293 583 3304 574 q 3257 592 3282 592 q 3238 590 3249 592 q 3218 586 3228 589 q 3194 581 3207 583 l 3200 542 l 3257 547 l 3326 326 m 2546 372 l 2546 542 q 2532 581 2546 571 q 2494 592 2518 592 q 2480 591 2488 592 q 2465 589 2472 590 q 2449 586 2457 588 l 2454 542 l 2499 547 l 2499 372 l 2449 367 l 2449 326 l 2592 326 l 2592 367 l 2546 372 m 1704 372 l 1704 542 q 1690 581 1704 571 q 1653 592 1676 592 q 1638 591 1646 592 q 1624 589 1631 590 q 1607 586 1615 588 l 1613 542 l 1657 547 l 1657 372 l 1607 367 l 1607 326 l 1750 326 l 1750 367 l 1704 372 m 2890 390 q 2909 339 2890 357 q 2958 321 2928 321 q 2988 322 2974 321 q 3015 326 3003 324 q 3043 332 3031 329 l 3039 374 q 3017 372 3028 374 q 2997 370 3007 371 q 2976 369 2986 369 q 2968 370 2975 369 q 2955 374 2961 371 q 2943 382 2949 376 q 2938 399 2938 388 l 2938 542 l 3038 547 l 3038 586 l 2943 586 l 2943 656 l 2897 656 l 2885 586 l 2851 576 l 2851 547 l 2890 542 l 2890 390 m 3168 372 l 3168 542 q 3154 581 3168 571 q 3117 592 3140 592 q 3102 591 3110 592 q 3088 589 3094 590 q 3071 586 3079 588 l 3076 542 l 3121 547 l 3121 372 l 3071 367 l 3071 326 l 3214 326 l 3214 367 l 3168 372 m 422 390 q 441 339 422 357 q 490 321 460 321 q 520 322 506 321 q 547 326 535 324 q 575 332 563 329 l 571 374 q 549 372 560 374 q 528 370 539 371 q 508 369 518 369 q 500 370 507 369 q 487 374 493 371 q 475 382 481 376 q 469 399 469 388 l 469 542 l 569 547 l 569 586 l 475 586 l 475 656 l 429 656 l 417 586 l 383 576 l 383 547 l 422 542 l 422 390 m 3629 550 q 3676 533 3658 550 q 3693 479 3693 515 l 3563 479 q 3581 530 3563 510 q 3629 550 3599 550 m 3629 596 q 3583 590 3606 596 q 3544 567 3561 583 q 3516 526 3526 551 q 3506 464 3506 501 q 3517 396 3506 424 q 3547 351 3528 368 q 3590 328 3565 335 q 3643 321 3615 321 q 3676 323 3658 321 q 3710 328 3694 325 q 3746 333 3728 331 l 3740 378 q 3707 374 3724 376 q 3676 370 3692 371 q 3649 369 3661 369 q 3623 371 3638 369 q 3596 379 3608 372 q 3574 400 3583 386 q 3563 440 3564 414 l 3744 440 q 3739 518 3749 483 q 3706 572 3731 547 q 3629 596 3682 596 z "},"\\xC2\\xB2":{ha:671,x_min:63,x_max:546,o:"m 538 360 l 65 360 q 63 379 64 369 q 63 400 63 389 q 86 522 63 474 q 144 603 110 569 q 220 660 179 636 q 296 707 261 683 q 354 758 331 731 q 378 829 378 786 q 254 944 378 944 q 179 925 213 944 q 125 889 146 906 l 79 992 q 124 1024 99 1010 q 179 1047 150 1038 q 238 1060 208 1056 q 293 1065 267 1065 q 383 1051 342 1065 q 456 1008 425 1036 q 506 940 488 981 q 524 844 524 899 q 503 740 524 782 q 451 668 482 697 q 383 618 419 639 q 315 578 347 597 q 261 538 283 558 q 238 486 239 517 l 546 493 l 538 360 z "},"\\xE2\\x88\\xAB":{ha:1372,x_min:208,x_max:1164,o:"m 208 904 l 1164 904 l 1164 0 l 208 0 l 208 904 z "},"\\xE2\\x97\\x8A":{ha:1267,x_min:125,x_max:1142,o:"m 125 435 l 633 953 l 1142 435 l 633 -82 l 125 435 z "},"\\xE2\\x88\\x86":{ha:1194,x_min:69,x_max:1125,o:"m 69 0 l 597 950 l 1125 0 l 69 0 z "},"\\xCF\\x80":{ha:958,x_min:101,x_max:874,o:"m 419 242 q 403 104 419 163 q 365 7 386 46 q 311 -69 340 -39 l 175 13 q 213 69 196 38 q 239 137 228 97 q 250 226 250 176 l 250 543 l 101 544 l 101 694 l 874 694 l 864 540 l 733 540 l 733 194 q 738 153 733 168 q 750 131 742 138 q 772 122 758 124 q 806 119 786 119 q 818 120 811 119 q 832 122 825 121 q 850 124 840 124 l 857 3 q 801 -10 838 0 q 699 -21 764 -21 q 606 16 635 -21 q 576 99 576 53 l 578 543 l 419 543 l 419 242 z "},"\\xE2\\x88\\x8F":{ha:1664,x_min:139,x_max:1525,o:"m 139 361 q 194 631 139 504 q 342 851 249 757 q 563 999 436 944 q 832 1054 689 1054 q 1101 999 975 1054 q 1322 851 1228 944 q 1470 631 1415 757 q 1525 361 1525 504 q 1470 92 1525 218 q 1322 -128 1415 -35 q 1101 -277 1228 -222 q 832 -332 975 -332 q 563 -277 689 -332 q 342 -128 436 -222 q 194 92 249 -35 q 139 361 139 218 z "},"\\xCE\\xA9":{ha:1803,x_min:208,x_max:1594,o:"m 901 -332 q 592 -277 722 -332 q 376 -128 461 -222 q 249 92 290 -35 q 208 361 208 218 q 249 631 208 504 q 376 851 290 757 q 592 999 461 944 q 901 1054 722 1054 q 1211 999 1081 1054 q 1427 851 1342 944 q 1553 631 1513 757 q 1594 361 1594 504 q 1553 92 1594 218 q 1427 -128 1513 -35 q 1211 -277 1342 -222 q 901 -332 1081 -332 z "},"\\xE2\\x88\\x91":{ha:1213,x_min:139,x_max:1074,o:"m 139 450 q 176 633 139 547 q 276 781 213 718 q 424 881 339 844 q 606 918 508 918 q 788 881 703 918 q 937 781 874 844 q 1037 633 1000 718 q 1074 450 1074 547 q 1037 268 1074 353 q 937 120 1000 183 q 788 20 874 57 q 606 -17 703 -17 q 424 20 508 -17 q 276 120 339 57 q 176 268 213 183 q 139 450 139 353 z "},"\\xCB\\x98":{ha:636,x_min:79,x_max:554,o:"m 317 768 q 141 828 203 768 q 79 990 79 889 l 161 1001 q 217 898 174 935 q 317 861 260 861 q 417 898 374 861 q 472 1001 460 935 l 554 990 q 492 828 554 889 q 317 768 431 768 z "},"\\xCB\\x9B":{ha:396,x_min:63,x_max:333,o:"m 315 44 q 324 26 319 35 q 330 13 326 19 q 332 7 333 7 q 258 -74 282 -24 q 235 -176 235 -125 q 253 -260 235 -225 l 85 -301 q 63 -194 63 -244 q 81 -109 63 -147 q 134 -42 100 -71 q 215 9 168 -12 q 315 44 261 31 z "},"\\xE2\\x89\\x88":{ha:944,x_min:139,x_max:806,o:"m 806 532 q 765 510 789 519 q 717 494 746 501 q 650 486 688 486 q 551 501 604 486 q 449 535 499 517 q 356 568 399 553 q 288 583 313 583 q 223 576 250 583 q 176 558 196 568 q 139 532 154 547 l 139 661 q 176 686 154 675 q 223 703 196 696 q 288 711 250 711 q 378 695 326 711 q 483 659 431 679 q 580 623 535 639 q 650 607 625 607 q 717 615 688 607 q 765 633 746 624 q 806 658 789 644 l 806 532 m 806 267 q 765 244 789 254 q 717 228 746 236 q 650 221 688 221 q 551 236 604 221 q 449 269 499 251 q 356 303 399 288 q 288 318 313 318 q 223 310 250 318 q 176 293 196 303 q 139 267 154 282 l 139 396 q 176 421 154 410 q 223 438 196 431 q 288 446 250 446 q 378 430 326 446 q 483 394 431 414 q 580 358 535 374 q 650 342 625 342 q 718 350 689 342 q 767 368 747 358 q 806 393 790 379 l 806 267 z "},"\\xC2\\xA6":{ha:778,x_min:338,x_max:440,o:"m 338 -332 l 338 329 l 440 329 l 440 -332 l 338 -332 m 338 428 l 338 1054 l 440 1054 l 440 428 l 338 428 z "},"\\xC2\\xAC":{ha:1194,x_min:69,x_max:1125,o:"m 1125 904 l 597 -46 l 69 904 l 1125 904 z "},"\\xE2\\x88\\x9A":{ha:1807,x_min:208,x_max:1599,o:"m 208 904 l 1599 904 l 1599 0 l 208 0 l 208 904 z "},"#":{ha:944,x_min:139,x_max:806,o:"m 692 561 l 646 367 l 806 367 l 806 242 l 615 242 l 569 44 l 457 75 l 496 242 l 342 242 l 296 44 l 183 75 l 222 242 l 139 242 l 139 367 l 253 367 l 299 561 l 139 561 l 139 686 l 328 686 l 371 865 l 486 849 l 447 686 l 601 686 l 644 865 l 760 849 l 721 686 l 806 686 l 806 561 l 692 561 m 372 367 l 526 367 l 572 561 l 418 561 l 372 367 z "},"\\xE2\\x88\\x9E":{ha:1063,x_min:69,x_max:993,o:"m 883 767 l 757 447 l 694 447 l 568 763 l 556 397 l 474 397 q 478 471 476 435 q 481 533 479 501 q 482 585 482 565 l 496 903 l 610 903 l 736 594 l 857 903 l 969 903 l 986 585 q 988 533 988 565 q 990 471 989 501 q 993 397 992 435 l 894 397 l 883 767 m 414 544 q 398 477 414 506 q 356 431 382 449 q 297 404 331 413 q 229 396 264 396 q 148 403 189 396 q 69 425 107 411 l 89 510 q 151 483 115 494 q 218 471 188 471 q 249 474 233 471 q 278 483 265 476 q 301 503 292 490 q 310 535 310 515 q 263 589 310 569 q 203 613 236 600 q 141 645 169 625 q 93 697 113 665 q 74 778 74 728 q 88 841 74 815 q 127 883 103 867 q 182 908 151 900 q 244 915 213 915 q 285 914 268 915 q 319 910 303 913 q 353 903 336 907 q 392 896 369 900 l 375 817 q 253 840 317 840 q 201 829 225 840 q 176 783 176 818 q 193 744 176 758 q 238 717 210 729 q 296 694 265 706 q 353 665 326 683 q 397 617 379 646 q 414 544 414 589 z "},"\\xC2\\xB9":{ha:488,x_min:56,x_max:363,o:"m 225 917 l 86 872 l 56 1006 l 363 1083 l 363 358 l 214 358 l 225 692 l 225 917 z "},"\\xC2\\xB3":{ha:668,x_min:63,x_max:543,o:"m 543 568 q 522 467 543 508 q 465 399 501 425 q 381 360 429 372 q 279 347 333 347 q 226 350 256 347 q 168 359 197 353 q 111 374 139 365 q 63 393 83 382 l 85 496 q 174 463 125 476 q 265 450 222 450 q 307 456 285 450 q 348 476 329 463 q 378 512 367 489 q 390 568 390 535 q 363 649 390 624 q 283 674 336 674 l 199 674 l 201 776 l 283 776 q 341 801 325 776 q 357 865 357 825 q 332 932 357 904 q 260 960 307 960 q 185 949 225 960 q 114 921 146 939 l 90 1019 q 177 1052 128 1039 q 269 1065 226 1065 q 358 1056 315 1065 q 435 1026 401 1047 q 490 969 469 1004 q 511 879 511 933 q 492 799 511 835 q 433 742 474 763 q 517 674 492 721 q 543 568 543 626 z "},"\\xE2\\x89\\xA0":{ha:944,x_min:139,x_max:806,o:"m 576 533 l 511 394 l 806 394 l 806 269 l 451 269 l 363 83 l 267 131 l 332 269 l 139 269 l 139 394 l 392 394 l 457 533 l 139 533 l 139 658 l 517 658 l 593 818 l 692 775 l 636 658 l 806 658 l 806 533 l 576 533 z "},"\\xC2\\xB1":{ha:858,x_min:96,x_max:761,o:"m 488 451 l 488 176 l 369 176 l 369 451 l 97 451 l 97 569 l 369 569 l 369 839 l 488 839 l 488 569 l 761 569 l 761 451 l 488 451 m 760 118 l 760 0 l 96 0 l 96 118 l 760 118 z "},$:{ha:776,x_min:92,x_max:707,o:"m 707 251 q 639 76 707 139 q 447 -7 571 13 l 447 -178 l 329 -178 l 329 -14 q 192 6 251 -11 q 92 38 132 22 l 125 189 q 204 156 164 171 q 279 132 239 143 q 357 121 319 121 q 419 126 389 121 q 472 146 449 132 q 508 181 494 160 q 522 233 522 203 q 491 296 522 272 q 413 339 460 319 q 310 381 365 358 q 208 438 256 403 q 130 529 161 474 q 99 672 99 585 q 117 768 99 726 q 166 839 135 810 q 240 885 197 868 q 329 911 282 903 l 329 1065 l 447 1074 l 447 915 q 580 900 526 913 q 668 882 633 888 l 640 740 q 574 761 610 753 q 504 774 543 768 q 421 781 465 781 q 370 776 394 781 q 326 760 346 772 q 295 729 307 749 q 283 681 283 710 q 315 610 283 636 q 393 565 346 585 q 495 524 440 544 q 597 471 550 504 q 676 386 644 438 q 707 251 707 335 z "},"!":{ha:413,x_min:100,x_max:313,o:"m 272 233 l 142 233 l 117 903 l 297 903 l 272 233 m 313 74 q 285 6 313 29 q 206 -17 257 -17 q 128 4 157 -17 q 100 74 100 25 q 128 143 100 122 q 206 164 156 164 q 313 74 313 164 z "},'"':{ha:531,x_min:83,x_max:447,o:"m 422 651 l 318 651 l 293 1007 l 447 1007 l 422 651 m 211 651 l 107 651 l 83 1007 l 236 1007 l 211 651 z "},"\\xE2\\x80\\x99":{ha:419,x_min:97,x_max:301,o:"m 301 829 q 283 722 301 772 q 243 632 265 671 q 183 549 218 586 l 115 579 q 136 622 126 597 q 151 674 144 643 q 157 744 157 706 q 148 810 157 779 q 127 867 139 840 q 106 915 115 893 q 97 953 97 936 q 108 978 97 968 q 143 993 118 988 l 268 1018 q 285 961 278 992 q 297 901 292 935 q 301 829 301 867 z "},"%":{ha:1124,x_min:83,x_max:1040,o:"m 1040 246 q 989 58 1040 117 q 838 0 938 0 q 687 58 738 0 q 636 246 636 117 q 686 433 636 375 q 838 490 736 490 q 990 433 939 490 q 1040 246 1040 375 m 926 246 q 905 367 926 332 q 838 403 883 403 q 771 367 790 403 q 751 246 751 332 q 772 124 751 160 q 838 88 792 88 q 906 124 886 88 q 926 246 926 160 m 336 -14 l 254 36 l 793 925 l 872 879 l 336 -14 m 486 657 q 435 470 486 528 q 283 413 383 413 q 133 470 183 413 q 83 657 83 528 q 133 844 83 786 q 285 903 183 903 q 436 844 386 903 q 486 657 486 786 m 372 657 q 351 779 372 743 q 285 815 331 815 q 217 779 238 815 q 197 657 197 743 q 217 535 197 571 q 283 500 238 500 q 352 535 332 500 q 372 657 372 571 z "},"&":{ha:899,x_min:49,x_max:913,o:"m 704 -10 l 629 83 q 494 8 567 29 q 350 -14 422 -14 q 213 4 271 -14 q 119 54 156 22 q 66 131 83 86 q 49 229 49 175 q 65 317 49 278 q 108 388 81 357 q 170 441 135 418 q 244 481 206 464 q 172 586 196 532 q 149 693 149 640 q 165 780 149 739 q 214 851 182 821 q 292 899 246 881 q 396 917 338 917 q 484 910 447 917 q 546 893 521 903 q 594 868 575 882 l 549 750 q 499 772 524 763 q 449 788 476 781 q 394 794 422 794 q 324 773 353 794 q 296 707 296 751 q 318 634 296 671 q 365 571 340 597 l 633 293 q 655 424 649 349 q 661 614 661 499 l 818 622 q 810 485 818 547 q 790 372 803 424 q 759 278 776 321 q 722 200 742 236 l 913 0 l 704 -10 m 304 419 q 276 394 292 410 q 249 357 261 378 q 227 309 236 336 q 218 250 218 282 q 232 188 218 215 q 269 141 246 160 q 324 113 293 122 q 390 103 356 103 q 474 117 432 103 q 553 163 517 132 l 304 419 z "}},familyName:"Arrival",ascender:1056,descender:-333,underlinePosition:-123,underlineThickness:20,boundingBox:{yMin:-241,xMin:-101,yMax:919,xMax:2988},resolution:1e3,original_font_information:{format:0,copyright:"Copyright (c) Keith Tam Design, 2005. All rights reserved.",fontFamily:"Arrival",fontSubfamily:"Medium",uniqueID:"KeithTamDesign: Arrival Medium: 2005",fullName:"Arrival Medium",version:"Version 1.000;PS 001.000;hotconv 1.0.38",postScriptName:"Arrival-Medium",manufacturer:"Keith Tam Design",designer:"Keith Chi-hang Tam (Type Initiative)",manufacturerURL:"http://vllg.com",designerURL:"http://keithtam.net",preferredFamily:"Arrival",preferredSubfamily:"Medium",compatibleFullName:"Arrival Medium"},cssFontWeight:"normal",cssFontStyle:"normal"}});var Ry=g1((_61,JV)=>{JV.exports={glyphs:{"0":{ha:764,x_min:0,x_max:0,o:"m 383 968 b 718 475 544 968 718 839 b 383 -18 718 113 544 -18 b 47 475 221 -18 47 113 b 383 968 47 839 221 968 m 383 32 b 667 475 561 32 667 199 b 383 919 667 753 561 919 b 99 475 204 919 99 753 b 383 32 99 199 204 32 "},"1":{ha:440,x_min:0,x_max:0,o:"m 268 0 l 217 0 l 217 819 l 75 819 l 75 861 b 224 964 163 864 217 892 l 268 964 "},"2":{ha:735,x_min:0,x_max:0,o:"m 74 650 b 386 968 74 819 182 968 b 681 710 589 968 681 839 b 381 367 681 556 588 479 b 108 51 210 274 118 197 b 681 51 157 51 681 51 l 681 0 l 56 0 l 56 26 b 357 413 56 233 192 324 b 629 710 557 521 629 582 b 386 918 629 806 565 918 b 125 650 226 918 126 808 l 74 650 "},"3":{ha:750,x_min:0,x_max:0,o:"m 694 264 b 368 -17 694 129 592 -17 b 44 281 165 -17 50 93 l 96 281 b 368 32 101 149 167 32 b 643 264 558 32 643 150 b 586 415 643 328 624 379 b 389 479 539 460 465 479 l 307 479 l 307 529 l 372 529 b 554 590 461 529 521 558 b 606 726 589 622 606 668 b 375 919 606 846 519 919 b 128 686 240 919 129 840 l 76 686 b 375 968 76 833 176 968 b 657 726 583 968 657 843 b 507 508 657 615 597 540 b 694 264 643 471 694 375 "},"4":{ha:743,x_min:0,x_max:0,o:"m 567 0 l 514 0 l 514 247 l 39 247 l 39 299 l 514 964 l 567 964 l 567 299 l 701 299 l 701 247 l 567 247 m 514 878 l 101 299 l 514 299 "},"5":{ha:721,x_min:0,x_max:0,o:"m 676 301 b 358 -17 676 117 543 -17 b 43 251 178 -17 56 94 l 96 251 b 358 33 107 125 206 33 b 625 301 515 33 625 144 b 369 568 625 458 521 568 b 129 438 274 568 185 519 l 82 456 l 147 964 l 629 964 l 629 913 l 193 913 l 143 522 b 369 618 199 582 288 618 b 676 301 547 618 676 485 "},"6":{ha:726,x_min:0,x_max:0,o:"m 696 301 b 388 -17 696 114 569 -17 b 54 424 221 -17 54 100 b 399 968 54 769 179 968 b 678 733 547 968 650 879 l 626 733 b 399 918 601 850 519 918 b 104 417 214 918 106 736 b 393 619 150 535 267 619 b 696 301 571 619 696 489 m 644 301 b 393 569 644 461 543 569 b 128 289 243 569 128 449 b 388 33 128 160 232 33 b 644 301 539 33 644 143 "},"7":{ha:726,x_min:0,x_max:0,o:"m 688 907 b 265 0 453 706 297 371 l 213 0 b 371 575 231 207 285 404 b 624 913 435 703 531 835 l 43 913 l 43 964 l 688 964 "},"8":{ha:735,x_min:0,x_max:0,o:"m 692 263 b 369 -18 692 101 556 -18 b 46 263 182 -18 46 101 b 249 518 46 388 125 482 b 88 729 153 553 88 631 b 369 968 88 868 206 968 b 650 729 532 968 650 868 b 489 518 650 631 586 553 b 692 263 613 482 692 388 m 369 542 b 599 729 501 542 599 621 b 369 918 599 839 501 918 b 139 729 236 918 139 839 b 369 542 139 621 236 542 m 640 263 b 369 492 640 397 529 492 b 97 263 208 492 97 397 b 369 33 97 129 213 33 b 640 263 526 33 640 129 "},"9":{ha:736,x_min:0,x_max:0,o:"m 685 506 b 351 -17 685 74 503 -17 b 63 214 199 -17 86 63 l 115 214 b 351 33 136 97 225 33 b 633 536 581 33 638 285 b 358 332 601 424 504 332 b 44 650 176 332 44 465 b 353 968 44 838 171 968 b 685 506 513 968 685 864 m 608 651 b 353 918 608 796 510 918 b 96 650 201 918 96 808 b 358 382 96 493 204 382 b 608 651 519 382 608 517 "},"\\0":{ha:694,x_min:0,x_max:0,o:""},"\\xC3\\xB0":{ha:779,x_min:0,x_max:0,o:"m 736 339 b 388 -25 736 139 579 -25 b 39 339 196 -25 39 139 b 388 707 39 542 196 707 b 621 608 479 707 560 669 b 375 903 564 722 474 825 l 281 832 l 236 858 l 333 932 b 215 1000 294 960 254 983 l 261 1033 b 376 964 300 1015 339 992 l 472 1036 l 517 1008 l 417 933 b 574 774 475 886 529 832 b 736 339 679 636 736 486 m 685 339 b 388 660 685 515 551 660 b 89 339 224 660 89 515 b 388 22 89 164 224 22 b 685 339 551 22 685 164 "},"\\xC5\\x81":{ha:790,x_min:0,x_max:0,o:"m 756 0 l 150 0 l 150 435 l 21 358 l 21 418 l 150 496 l 150 964 l 201 964 b 201 526 201 964 201 749 l 418 657 l 418 596 l 201 465 b 201 51 201 264 201 74 b 756 51 249 51 756 51 "},"\\xC5\\x82":{ha:349,x_min:0,x_max:0,o:"m 201 467 l 201 0 l 150 0 l 150 435 l 21 358 l 21 418 l 150 496 l 150 964 l 201 964 l 201 526 l 329 604 l 329 543 "},"\\xC5\\xA0":{ha:828,x_min:0,x_max:0,o:"m 449 1064 l 386 1064 l 274 1201 l 336 1201 l 418 1099 l 500 1201 l 561 1201 m 413 989 b 736 704 636 989 736 846 l 685 704 b 413 939 685 846 578 939 b 138 732 247 939 138 856 b 424 528 138 626 218 569 b 765 258 640 483 765 425 b 408 -18 765 90 625 -18 b 60 293 240 -18 60 81 l 111 293 b 408 35 111 115 261 35 b 714 258 597 35 714 119 b 414 478 714 378 639 432 b 86 732 243 511 86 567 b 413 989 86 886 217 989 "},"\\xC5\\xA1":{ha:710,x_min:0,x_max:0,o:"m 400 811 l 338 811 l 225 949 l 288 949 l 369 846 l 451 949 l 513 949 m 664 203 b 614 67 665 153 649 103 b 378 -17 563 14 478 -17 b 46 208 197 -17 69 63 l 97 208 b 376 32 122 93 225 32 b 576 103 463 32 535 60 b 611 201 601 129 614 164 b 363 358 608 289 538 333 b 83 539 239 376 86 397 b 354 733 83 636 175 733 b 647 533 513 733 617 663 l 594 533 b 356 685 565 629 483 685 b 136 539 226 685 135 622 b 371 408 138 457 213 431 b 664 203 519 386 657 347 "},"\\xC3\\x9D":{ha:758,x_min:0,x_max:0,o:"m 428 1038 l 369 1038 l 486 1181 l 553 1181 m 406 0 l 354 0 l 354 417 l 8 964 l 69 964 l 379 472 l 381 472 l 689 964 l 750 964 l 406 417 "},"\\xC3\\xBD":{ha:618,x_min:0,x_max:0,o:"m 351 824 l 294 824 l 410 965 l 476 965 m 299 -104 b 21 -268 247 -240 147 -292 l 21 -219 b 250 -86 132 -236 207 -201 l 283 1 l 14 715 l 69 715 l 310 74 l 553 715 l 607 715 "},"\\xC3\\x9E":{ha:822,x_min:0,x_max:0,o:"m 789 517 b 507 250 789 360 672 250 l 168 250 l 168 0 l 117 0 l 117 964 l 168 964 l 168 785 l 503 785 b 789 517 679 785 789 682 m 736 517 b 503 733 736 654 651 733 l 168 733 l 168 301 l 507 301 b 736 517 621 301 736 368 "},"\\xC3\\xBE":{ha:844,x_min:0,x_max:0,o:"m 808 356 b 451 -17 808 150 649 -17 b 146 172 318 -17 204 60 l 146 -318 l 94 -318 l 94 964 l 146 964 l 146 542 b 451 733 204 656 318 733 b 808 356 649 733 808 564 m 757 356 b 451 681 757 535 619 681 b 146 356 283 681 146 535 b 451 35 146 179 283 35 b 757 356 619 35 757 179 "},"\\xC5\\xBD":{ha:758,x_min:0,x_max:0,o:"m 421 1061 l 358 1061 l 246 1199 l 308 1199 l 390 1096 l 472 1199 l 533 1199 m 747 0 l 18 0 l 18 51 l 682 913 l 35 913 l 35 964 l 747 964 l 747 911 l 83 51 l 747 51 "},"\\xC5\\xBE":{ha:607,x_min:0,x_max:0,o:"m 338 813 l 275 813 l 163 950 l 225 950 l 307 847 l 389 950 l 450 950 m 599 0 l 14 0 l 14 51 l 517 664 l 29 664 l 29 715 l 583 715 l 583 664 l 81 51 l 599 51 "},"\\xC2\\xBD":{ha:983,x_min:0,x_max:0,o:"m 64 858 l 64 900 b 156 964 118 903 151 919 l 207 964 l 207 358 l 156 358 l 156 858 m 139 -17 l 83 -17 l 650 964 l 706 964 m 919 49 l 919 0 l 522 0 l 522 26 b 576 174 522 86 540 133 b 714 272 611 215 664 246 b 876 449 843 343 876 379 b 736 572 876 519 828 572 b 585 411 643 572 585 504 l 533 411 b 736 618 533 540 624 618 b 879 567 796 618 844 601 b 929 449 911 536 929 494 b 738 229 929 347 869 301 b 575 49 638 175 582 129 "},"\\xC2\\xBC":{ha:839,x_min:0,x_max:0,o:"m 64 858 l 64 900 b 156 964 117 903 151 919 l 207 964 l 207 358 l 156 358 l 156 858 m 138 -17 l 82 -17 l 649 964 l 704 964 m 735 146 l 735 0 l 683 0 l 683 146 l 388 146 l 388 193 l 683 606 l 735 606 l 735 193 l 797 193 l 797 146 m 683 526 l 447 193 l 683 193 "},"\\xC2\\xB9":{ha:365,x_min:0,x_max:0,o:"m 207 358 l 154 358 l 154 858 l 64 858 l 64 900 b 154 964 118 903 151 919 l 207 964 "},"\\xC2\\xBE":{ha:1042,x_min:0,x_max:0,o:"m 254 346 b 44 540 108 346 44 438 l 96 540 b 254 392 96 461 144 392 b 415 528 365 392 415 463 b 253 654 415 597 375 654 l 215 654 l 215 706 l 253 706 b 392 817 342 706 392 750 b 258 931 392 885 343 931 b 115 792 175 931 115 876 l 63 792 b 258 976 63 896 139 976 b 397 931 317 976 364 961 b 444 817 428 901 444 863 b 354 683 444 767 421 711 b 467 529 425 661 467 611 b 254 346 467 442 400 346 m 340 -17 l 285 -17 l 850 964 l 906 964 m 938 146 l 938 0 l 886 0 l 886 146 l 590 146 l 590 193 l 885 606 l 938 606 l 938 193 l 1000 193 l 1000 146 m 886 526 l 649 193 l 886 193 "},"\\xC2\\xB3":{ha:524,x_min:0,x_max:0,o:"m 468 529 b 256 346 468 442 401 346 b 44 540 111 346 44 438 l 97 540 b 256 392 97 461 146 392 b 417 528 367 392 417 463 b 253 654 417 597 378 654 l 217 654 l 217 706 l 253 706 b 393 817 343 706 393 750 b 260 931 393 885 344 931 b 117 792 176 931 117 876 l 65 792 b 260 976 65 896 140 976 b 399 931 318 976 365 961 b 444 817 429 901 444 863 b 356 683 444 767 422 711 b 468 529 426 661 468 611 "},"\\xC2\\xB2":{ha:515,x_min:0,x_max:0,o:"m 453 407 l 453 358 l 56 358 l 56 383 b 110 532 56 443 72 490 b 246 631 144 572 196 603 b 410 806 376 701 410 738 b 269 931 410 878 361 931 b 118 769 175 931 118 861 l 67 769 b 269 976 67 899 157 976 b 413 925 328 976 378 958 b 461 806 444 894 461 853 b 271 588 461 706 403 660 b 108 407 169 533 115 486 "},"\\xC3\\x97":{ha:667,x_min:0,x_max:0,o:"m 646 76 l 610 39 l 333 317 l 57 39 l 21 76 l 297 353 l 21 629 l 57 665 l 333 389 l 610 665 l 646 629 l 369 353 "}," ":{ha:410,x_min:0,x_max:0,o:""},"!":{ha:286,x_min:0,x_max:0,o:"m 118 964 l 169 964 l 169 249 l 118 249 m 118 129 l 169 129 l 169 0 l 118 0 "},'"':{ha:324,x_min:0,x_max:0,o:"m 253 715 l 201 715 l 201 964 l 253 964 m 124 715 l 72 715 l 72 964 l 124 964 "},"#":{ha:718,x_min:0,x_max:0,o:"m 501 349 l 649 349 l 640 297 l 493 297 l 458 51 l 406 51 l 442 297 l 225 297 l 189 51 l 136 51 l 172 297 l 25 297 l 33 349 l 179 349 l 218 617 l 72 617 l 79 668 l 226 668 l 263 913 l 314 913 l 278 668 l 496 668 l 531 913 l 583 913 l 547 668 l 694 668 l 688 617 l 540 617 m 271 617 l 232 349 l 449 349 l 489 617 "},$:{ha:676,x_min:0,x_max:0,o:"m 360 -40 l 311 -40 l 311 63 b 42 324 149 71 39 178 l 93 324 b 311 110 93 186 199 117 l 311 476 b 63 686 171 507 63 561 b 311 903 63 807 160 894 l 311 1011 l 360 1011 l 360 903 b 606 663 518 893 606 789 l 554 663 b 360 854 554 779 469 846 l 360 518 b 551 449 453 499 511 476 b 629 293 604 411 629 361 b 360 63 629 154 517 71 m 311 854 b 114 686 206 847 114 792 b 311 528 114 608 169 563 m 578 293 b 360 465 578 386 524 429 l 360 110 b 578 293 478 118 578 176 "},"%":{ha:1065,x_min:0,x_max:0,o:"m 250 944 b 464 731 367 944 464 849 b 250 518 464 613 367 518 b 38 731 132 518 38 613 b 250 944 38 849 132 944 m 297 0 l 239 0 l 767 964 l 826 964 m 815 447 b 1029 233 933 447 1029 351 b 815 21 1029 115 933 21 b 603 233 699 21 603 115 b 815 447 603 351 699 447 m 250 568 b 411 731 339 568 411 640 b 250 894 411 821 339 894 b 89 731 161 894 89 821 b 250 568 89 640 161 568 m 815 71 b 978 233 906 71 978 143 b 815 396 978 324 906 396 b 654 233 726 396 654 324 b 815 71 654 143 726 71 "},"&":{ha:861,x_min:0,x_max:0,o:"m 663 133 b 365 -18 600 39 494 -18 b 44 258 190 -18 44 106 b 293 576 44 406 147 494 l 249 629 b 175 794 200 685 175 742 b 379 989 175 906 264 989 b 576 796 490 989 576 907 b 368 563 576 706 500 636 l 651 224 b 679 374 669 268 679 319 l 679 453 l 731 453 l 731 374 b 689 179 731 300 715 235 l 839 0 l 775 0 m 336 600 b 522 796 478 678 522 733 b 379 942 522 878 463 942 b 228 794 292 942 228 878 b 285 661 228 754 249 704 m 324 539 b 100 261 154 444 100 365 b 365 31 100 136 218 31 b 628 175 488 31 576 88 "},"'":{ha:193,x_min:0,x_max:0,o:"m 124 715 l 72 715 l 72 964 l 124 964 "},"(":{ha:306,x_min:0,x_max:0,o:"m 326 1081 b 117 451 196 910 117 688 b 326 -178 117 214 196 -7 l 269 -178 b 60 451 138 -4 60 217 b 269 1081 60 686 138 907 l 326 1081 "},")":{ha:306,x_min:0,x_max:0,o:"m 36 1081 b 246 451 169 907 246 686 b 36 -178 246 217 169 -4 l -19 -178 b 190 451 111 -7 190 214 b -19 1081 190 688 111 910 "},"*":{ha:463,x_min:0,x_max:0,o:"m 269 756 l 353 615 l 313 592 l 232 733 l 151 592 l 111 615 l 194 756 l 31 754 l 31 800 l 194 799 l 111 940 l 151 963 l 232 821 l 313 963 l 353 940 l 269 799 l 433 801 l 433 754 "},"+":{ha:653,x_min:0,x_max:0,o:"m 353 358 l 353 104 l 301 104 l 301 358 l 49 358 l 49 408 l 301 408 l 301 661 l 353 661 l 353 408 l 606 408 l 606 358 "},",":{ha:217,x_min:0,x_max:0,o:"m 135 129 l 135 -24 b 25 -139 135 -100 79 -139 l 25 -92 b 85 -24 63 -90 85 -64 l 85 129 "},"-":{ha:418,x_min:0,x_max:0,o:"m 358 358 l 60 358 l 60 410 l 358 410 "},".":{ha:217,x_min:0,x_max:0,o:"m 135 0 l 83 0 l 83 129 l 135 129 "},"/":{ha:372,x_min:0,x_max:0,o:"m 307 1033 l 360 1033 l 68 0 l 14 0 "},":":{ha:218,x_min:0,x_max:0,o:"m 136 538 l 85 538 l 85 665 l 136 665 m 136 0 l 85 0 l 85 129 l 136 129 "},";":{ha:218,x_min:0,x_max:0,o:"m 136 538 l 85 538 l 85 665 l 136 665 m 135 129 l 135 -24 b 25 -139 135 -100 79 -139 l 25 -92 b 85 -24 63 -90 85 -64 l 85 129 "},"<":{ha:653,x_min:0,x_max:0,o:"m 115 382 l 594 167 l 594 111 l 56 354 l 56 411 l 594 656 l 594 600 l 115 385 "},"=":{ha:624,x_min:0,x_max:0,o:"m 565 471 l 61 471 l 61 521 l 565 521 m 565 246 l 61 246 l 61 296 l 565 296 "},">":{ha:653,x_min:0,x_max:0,o:"m 540 385 l 61 600 l 61 656 l 600 411 l 600 354 l 61 111 l 61 167 l 540 382 "},"?":{ha:675,x_min:0,x_max:0,o:"m 35 715 b 339 988 46 882 160 988 b 633 728 518 988 633 885 b 483 494 633 599 557 549 b 343 260 411 440 343 382 l 343 249 l 292 249 l 292 260 b 453 529 292 408 376 472 b 581 729 521 581 581 626 b 339 940 581 857 489 940 b 88 715 190 940 96 853 l 35 715 m 292 129 l 343 129 l 343 0 l 292 0 "},"@":{ha:1029,x_min:0,x_max:0,o:"m 965 208 b 539 -18 872 64 722 -18 b 50 483 268 -18 50 207 b 543 988 50 761 271 988 b 993 557 760 988 993 854 b 726 176 993 361 864 176 b 621 299 658 176 615 222 b 421 194 569 235 500 194 b 250 496 278 194 208 346 b 567 776 296 660 431 776 b 726 656 647 776 708 733 l 757 753 l 810 753 b 681 336 786 675 681 336 b 728 222 657 261 679 222 b 942 557 836 222 942 392 b 543 942 942 818 735 942 b 101 483 299 942 101 733 b 539 31 101 236 297 31 b 903 208 692 31 819 96 m 674 488 b 569 728 706 586 706 728 b 300 482 457 728 342 632 b 422 243 264 357 322 243 b 674 488 532 243 625 336 "},A:{ha:810,x_min:0,x_max:0,o:"m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},B:{ha:869,x_min:0,x_max:0,o:"m 814 267 b 535 0 814 110 700 0 l 117 0 l 117 964 l 526 964 b 786 722 688 964 786 872 b 650 508 786 621 733 544 b 814 267 754 472 814 389 m 168 531 l 531 531 b 735 722 632 531 735 590 b 526 913 735 843 658 913 l 168 913 m 763 267 b 531 481 763 401 678 481 l 168 481 l 168 51 l 535 51 b 763 267 649 51 763 118 "},C:{ha:1013,x_min:0,x_max:0,o:"m 965 306 b 521 -17 896 117 722 -17 b 44 486 257 -17 44 208 b 521 988 44 763 257 988 b 967 667 728 988 900 856 l 911 667 b 521 936 847 826 699 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 910 306 694 35 843 146 l 965 306 "},D:{ha:935,x_min:0,x_max:0,o:"m 893 483 b 464 0 893 186 729 0 l 117 0 l 117 964 l 464 964 b 893 483 733 964 893 785 m 842 483 b 464 913 842 757 704 913 l 168 913 l 168 51 l 464 51 b 842 483 700 51 842 214 "},E:{ha:831,x_min:0,x_max:0,o:"m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},F:{ha:782,x_min:0,x_max:0,o:"m 168 531 l 671 531 l 671 481 l 168 481 l 168 0 l 117 0 l 117 964 l 731 964 l 731 913 l 168 913 "},G:{ha:1056,x_min:0,x_max:0,o:"m 988 0 l 936 0 l 936 263 b 521 -17 867 90 715 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 b 968 667 735 988 900 867 l 913 667 b 521 936 849 835 706 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 935 443 749 35 914 201 l 531 443 l 531 494 l 988 494 "},H:{ha:981,x_min:0,x_max:0,o:"m 867 0 l 815 0 l 815 479 l 168 479 l 168 0 l 117 0 l 117 964 l 168 964 l 168 532 l 815 532 l 815 964 l 867 964 "},I:{ha:290,x_min:0,x_max:0,o:"m 172 0 l 121 0 l 121 964 l 172 964 "},J:{ha:721,x_min:0,x_max:0,o:"m 607 285 b 317 -18 607 101 493 -18 b 28 272 154 -18 28 110 l 79 272 b 317 35 79 138 181 35 b 556 285 464 35 556 131 l 556 964 l 607 964 "},K:{ha:814,x_min:0,x_max:0,o:"m 164 357 l 164 0 l 113 0 l 113 964 l 164 964 l 164 428 l 692 964 l 764 964 l 397 593 l 824 0 l 760 0 l 361 556 "},L:{ha:757,x_min:0,x_max:0,o:"m 168 51 l 722 51 l 722 0 l 117 0 l 117 964 l 168 964 "},M:{ha:1131,x_min:0,x_max:0,o:"m 1018 0 l 965 0 l 965 843 l 596 0 l 539 0 l 168 843 l 168 0 l 117 0 l 117 964 l 171 964 l 567 63 l 963 964 l 1018 964 "},N:{ha:983,x_min:0,x_max:0,o:"m 871 0 l 813 0 l 168 886 l 168 0 l 117 0 l 117 964 l 175 964 l 819 78 l 819 964 l 871 964 "},O:{ha:1039,x_min:0,x_max:0,o:"m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},P:{ha:821,x_min:0,x_max:0,o:"m 788 697 b 506 429 788 539 672 429 l 168 429 l 168 0 l 117 0 l 117 964 l 501 964 b 788 697 678 964 788 861 m 736 697 b 501 913 736 833 650 913 l 168 913 l 168 481 l 506 481 b 736 697 621 481 736 549 "},Q:{ha:1039,x_min:0,x_max:0,o:"m 950 0 l 875 0 l 797 76 b 521 -17 719 18 624 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 b 997 486 789 988 997 768 b 836 110 997 338 935 201 m 946 486 b 521 936 946 739 760 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 760 113 610 35 692 64 l 644 224 l 719 224 l 799 146 b 946 486 889 229 946 351 "},R:{ha:874,x_min:0,x_max:0,o:"m 781 117 b 801 0 781 81 790 28 l 749 0 b 729 104 736 26 729 60 l 729 244 b 525 431 729 397 618 431 l 168 431 l 168 0 l 117 0 l 117 964 l 522 964 b 810 697 700 964 810 861 b 649 456 810 582 747 494 b 781 244 733 424 781 351 l 781 117 m 528 481 b 757 697 642 481 757 549 b 522 913 757 833 672 913 l 168 913 l 168 481 l 528 481 "},S:{ha:828,x_min:0,x_max:0,o:"m 413 989 b 736 704 636 989 736 846 l 685 704 b 413 939 685 846 578 939 b 138 732 247 939 138 856 b 424 528 138 626 218 569 b 765 258 640 483 765 425 b 408 -18 765 90 625 -18 b 60 293 240 -18 60 81 l 111 293 b 408 35 111 115 261 35 b 714 258 597 35 714 119 b 414 478 714 378 639 432 b 86 732 243 511 86 567 b 413 989 86 886 217 989 "},T:{ha:717,x_min:0,x_max:0,o:"m 385 913 l 385 0 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 "},U:{ha:939,x_min:0,x_max:0,o:"m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 "},V:{ha:774,x_min:0,x_max:0,o:"m 415 0 l 360 0 l 4 964 l 60 964 l 388 74 l 714 964 l 769 964 "},W:{ha:1174,x_min:0,x_max:0,o:"m 890 0 l 836 0 l 589 874 l 342 0 l 288 0 l 13 964 l 67 964 l 314 92 l 561 964 l 617 964 l 864 92 l 1111 964 l 1164 964 "},X:{ha:744,x_min:0,x_max:0,o:"m 374 444 l 72 0 l 10 0 l 342 490 l 21 964 l 83 964 l 374 536 l 664 964 l 726 964 l 404 490 l 738 0 l 675 0 "},Y:{ha:758,x_min:0,x_max:0,o:"m 406 0 l 354 0 l 354 417 l 8 964 l 69 964 l 379 472 l 689 964 l 750 964 l 406 417 "},Z:{ha:758,x_min:0,x_max:0,o:"m 747 0 l 18 0 l 18 51 l 682 913 l 35 913 l 35 964 l 747 964 l 747 911 l 83 51 l 747 51 "},"[":{ha:365,x_min:0,x_max:0,o:"m 153 -17 l 331 -17 l 331 -67 l 101 -67 l 101 1031 l 331 1031 l 331 981 l 153 981 "},"\\\\":{ha:374,x_min:0,x_max:0,o:"m 308 0 l 15 1033 l 69 1033 l 361 0 "},"]":{ha:365,x_min:0,x_max:0,o:"m 39 981 l 39 1031 l 267 1031 l 267 -67 l 39 -67 l 39 -17 l 215 -17 l 215 981 "},"^":{ha:754,x_min:0,x_max:0,o:"m 350 964 l 407 964 l 713 358 l 656 358 l 379 907 l 101 358 l 44 358 "},_:{ha:1093,x_min:0,x_max:0,o:"m -15 -96 l 1111 -96 l 1111 -146 l -15 -146 "},"\`":{ha:549,x_min:0,x_max:0,o:"m 215 965 l 332 824 l 275 824 l 150 965 "},a:{ha:760,x_min:0,x_max:0,o:"m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},b:{ha:853,x_min:0,x_max:0,o:"m 817 356 b 458 -17 817 150 656 -17 b 153 172 326 -17 213 60 l 153 0 l 101 0 l 101 1033 l 153 1033 l 153 542 b 458 733 213 656 326 733 b 817 356 656 733 817 564 m 764 356 b 458 681 764 535 628 681 b 153 356 290 681 153 535 b 458 35 153 179 290 35 b 764 356 628 35 764 179 "},c:{ha:781,x_min:0,x_max:0,o:"m 726 222 b 396 -17 679 78 554 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 494 554 733 678 639 l 671 494 b 396 681 625 608 524 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 672 222 528 35 629 107 l 726 222 "},d:{ha:851,x_min:0,x_max:0,o:"m 753 0 l 701 0 l 701 172 b 396 -17 643 60 529 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 701 542 529 733 643 656 l 701 1033 l 753 1033 m 701 356 b 396 681 701 535 564 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 701 356 564 35 701 179 "},e:{ha:789,x_min:0,x_max:0,o:"m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},f:{ha:360,x_min:0,x_max:0,o:"m 164 664 l 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 356 715 l 356 664 "},g:{ha:850,x_min:0,x_max:0,o:"m 758 19 b 406 -350 758 -201 617 -350 b 72 -115 238 -350 115 -262 l 126 -115 b 406 -299 167 -231 268 -299 b 707 19 589 -299 707 -174 l 707 167 b 403 -18 650 56 539 -18 b 46 356 206 -18 46 150 b 403 733 46 564 206 733 b 707 547 539 733 650 660 l 707 715 l 758 715 m 707 356 b 403 681 707 544 579 681 b 97 356 233 681 97 535 b 403 35 97 179 233 35 b 707 356 579 35 707 169 "},h:{ha:796,x_min:0,x_max:0,o:"m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 1033 l 153 1033 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 "},i:{ha:265,x_min:0,x_max:0,o:"m 160 836 l 108 836 l 108 964 l 160 964 m 160 0 l 108 0 l 108 715 l 160 715 "},j:{ha:253,x_min:0,x_max:0,o:"m 153 836 l 101 836 l 101 964 l 153 964 m 153 -137 b 103 -279 153 -201 136 -249 b -33 -317 71 -310 26 -324 l -33 -267 b 68 -242 14 -271 46 -261 b 101 -137 90 -221 101 -186 l 101 715 l 153 715 "},k:{ha:694,x_min:0,x_max:0,o:"m 153 239 l 153 0 l 101 0 l 101 1033 l 153 1033 l 153 310 l 572 715 l 646 715 l 375 454 l 681 0 l 618 0 l 338 417 "},l:{ha:265,x_min:0,x_max:0,o:"m 160 0 l 108 0 l 108 1033 l 160 1033 "},m:{ha:1229,x_min:0,x_max:0,o:"m 1136 0 l 1085 0 l 1085 461 b 864 681 1085 589 992 681 b 644 461 738 681 644 589 l 644 0 l 593 0 l 593 461 b 372 681 593 589 500 681 b 153 461 246 681 153 589 l 153 0 l 101 0 l 101 715 l 153 715 l 153 618 b 372 733 197 689 275 733 b 622 575 489 733 582 671 b 864 733 660 671 749 733 b 1136 461 1022 733 1136 618 "},n:{ha:796,x_min:0,x_max:0,o:"m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 715 l 153 715 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 "},o:{ha:790,x_min:0,x_max:0,o:"m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},p:{ha:846,x_min:0,x_max:0,o:"m 810 356 b 451 -17 810 150 649 -17 b 146 172 319 -17 206 60 l 146 -318 l 94 -318 l 94 715 l 146 715 l 146 542 b 451 733 206 656 319 733 b 810 356 649 733 810 564 m 757 356 b 451 681 757 535 621 681 b 146 356 283 681 146 535 b 451 35 146 179 283 35 b 757 356 621 35 757 179 "},q:{ha:844,x_min:0,x_max:0,o:"m 753 -318 l 701 -318 l 701 172 b 396 -17 643 60 529 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 701 542 529 733 643 656 l 701 715 l 753 715 m 701 356 b 396 681 701 535 564 681 b 92 356 228 681 92 535 b 396 35 92 179 228 35 b 701 356 564 35 701 179 "},r:{ha:456,x_min:0,x_max:0,o:"m 444 683 b 233 622 350 692 278 665 b 154 432 182 576 154 507 l 154 0 l 101 0 l 101 715 l 154 715 l 154 596 b 201 660 167 619 182 642 b 444 731 264 715 347 742 "},s:{ha:710,x_min:0,x_max:0,o:"m 664 203 b 614 67 665 153 649 103 b 378 -17 563 14 478 -17 b 46 208 197 -17 69 63 l 97 208 b 376 32 122 93 225 32 b 576 103 463 32 535 60 b 611 201 601 129 614 164 b 363 358 608 289 538 333 b 83 539 239 376 86 397 b 354 733 83 636 175 733 b 647 533 513 733 617 663 l 594 533 b 356 685 565 629 483 685 b 136 539 226 685 135 622 b 371 408 138 457 213 431 b 664 203 519 386 657 347 "},t:{ha:388,x_min:0,x_max:0,o:"m 163 247 b 356 47 163 125 219 42 l 356 0 b 111 247 201 -14 111 88 l 111 664 l 14 664 l 14 715 l 111 715 l 111 868 l 163 868 l 163 715 l 356 715 l 356 664 l 163 664 "},u:{ha:796,x_min:0,x_max:0,o:"m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 "},v:{ha:622,x_min:0,x_max:0,o:"m 339 0 l 283 0 l 8 715 l 64 715 l 311 71 l 558 715 l 614 715 "},w:{ha:964,x_min:0,x_max:0,o:"m 731 0 l 675 0 l 483 631 l 292 0 l 236 0 l 18 715 l 72 715 l 264 85 l 456 715 l 511 715 l 703 85 l 894 715 l 949 715 "},x:{ha:600,x_min:0,x_max:0,o:"m 301 326 l 65 0 l 1 0 l 269 369 l 18 715 l 82 715 l 301 414 l 521 715 l 585 715 l 333 369 l 601 0 l 538 0 "},y:{ha:618,x_min:0,x_max:0,o:"m 299 -104 b 21 -268 247 -240 147 -292 l 21 -219 b 250 -86 132 -236 207 -201 l 283 1 l 14 715 l 69 715 l 310 74 l 553 715 l 607 715 "},z:{ha:607,x_min:0,x_max:0,o:"m 599 0 l 14 0 l 14 51 l 517 664 l 29 664 l 29 715 l 583 715 l 583 664 l 81 51 l 599 51 "},"{":{ha:353,x_min:0,x_max:0,o:"m 311 -94 b 153 69 206 -100 153 -36 l 153 311 b 57 444 153 400 121 444 l 50 444 l 50 492 l 57 492 b 153 625 121 492 153 536 l 153 867 b 311 1029 153 972 206 1035 l 311 988 b 204 872 236 988 204 943 l 204 631 b 125 468 204 543 176 492 b 204 306 176 444 204 393 l 204 63 b 311 -51 204 -7 236 -51 "},"|":{ha:275,x_min:0,x_max:0,o:"m 165 1033 l 165 0 l 114 0 l 114 1033 "},"}":{ha:353,x_min:0,x_max:0,o:"m 306 444 l 299 444 b 203 311 235 444 203 400 l 203 69 b 44 -94 203 -36 150 -100 l 44 -51 b 151 63 121 -51 151 -7 l 151 306 b 229 468 151 393 181 444 b 151 631 181 492 151 543 l 151 872 b 44 988 151 943 121 988 l 44 1029 b 203 867 150 1035 203 972 l 203 625 b 299 492 203 536 235 492 l 306 492 "},"~":{ha:558,x_min:0,x_max:0,o:"m 460 1174 b 360 1071 444 1101 403 1071 b 201 1129 289 1071 256 1132 b 146 1076 181 1129 158 1114 l 101 1076 b 201 1179 117 1149 160 1179 b 360 1119 275 1179 306 1119 b 415 1174 381 1119 403 1136 l 460 1174 "},"\\xC3\\x84":{ha:810,x_min:0,x_max:0,o:"m 451 1079 l 451 1174 l 518 1174 l 518 1079 m 264 1079 l 264 1174 l 331 1174 l 331 1079 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x85":{ha:810,x_min:0,x_max:0,o:"m 392 1279 b 506 1164 454 1279 506 1228 b 392 1050 506 1101 454 1050 b 276 1164 328 1050 276 1101 b 392 1279 276 1228 328 1279 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 392 1088 b 465 1164 432 1088 465 1122 b 392 1240 465 1207 432 1240 b 317 1164 350 1240 317 1207 b 392 1088 317 1122 350 1088 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x87":{ha:1014,x_min:0,x_max:0,o:"m 965 306 b 522 -17 896 117 724 -17 b 511 -17 518 -17 515 -17 l 475 -81 b 613 -162 526 -54 613 -83 b 504 -253 613 -218 568 -253 b 390 -203 468 -253 422 -236 l 406 -174 b 501 -214 433 -197 465 -214 b 568 -162 535 -214 568 -199 b 507 -108 568 -132 546 -108 b 450 -129 490 -108 467 -114 l 417 -106 l 467 -14 b 44 486 229 15 44 228 b 522 988 44 763 258 988 b 968 667 728 988 900 856 l 913 667 b 522 936 849 826 700 936 b 96 486 288 936 96 733 b 522 35 96 236 288 35 b 910 306 696 35 844 146 "},"\\xC3\\x89":{ha:831,x_min:0,x_max:0,o:"m 451 1063 l 394 1063 l 511 1206 l 576 1206 m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xC3\\x91":{ha:983,x_min:0,x_max:0,o:"m 685 1174 b 585 1071 669 1101 628 1071 b 426 1129 514 1071 481 1132 b 371 1076 406 1129 383 1114 l 326 1076 b 426 1179 342 1149 385 1179 b 585 1119 500 1179 531 1119 b 640 1174 606 1119 628 1136 l 685 1174 m 871 0 l 813 0 l 168 886 l 168 0 l 117 0 l 117 964 l 175 964 l 819 78 l 819 964 l 871 964 "},"\\xC3\\x96":{ha:1039,x_min:0,x_max:0,o:"m 576 1079 l 576 1174 l 643 1174 l 643 1079 m 389 1079 l 389 1174 l 454 1174 l 454 1079 m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xC3\\x9C":{ha:939,x_min:0,x_max:0,o:"m 532 1079 l 532 1174 l 599 1174 l 599 1079 m 344 1079 l 344 1174 l 411 1174 l 411 1079 m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 "},"\\xC3\\xA1":{ha:760,x_min:0,x_max:0,o:"m 404 824 l 347 824 l 463 965 l 529 965 m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC3\\xA0":{ha:760,x_min:0,x_max:0,o:"m 294 965 l 410 824 l 353 824 l 228 965 m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC3\\xA2":{ha:760,x_min:0,x_max:0,o:"m 347 956 l 410 956 l 522 818 l 460 818 l 379 921 l 297 818 l 236 818 m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC3\\xA4":{ha:760,x_min:0,x_max:0,o:"m 435 826 l 435 922 l 500 922 l 500 826 m 247 826 l 247 922 l 313 922 l 313 826 m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC3\\xA3":{ha:760,x_min:0,x_max:0,o:"m 556 935 b 456 831 540 861 499 831 b 297 890 385 831 351 892 b 242 836 276 889 254 874 l 199 836 b 297 939 213 908 256 939 b 456 881 371 939 401 879 b 511 935 476 881 500 896 l 556 935 m 631 1 b 611 107 618 28 611 63 l 611 119 b 303 -11 554 39 444 -11 b 43 190 178 -11 43 51 b 347 403 43 351 194 389 b 611 524 506 418 611 435 b 381 685 611 656 486 685 b 133 535 250 685 164 631 l 81 535 b 381 735 113 663 219 735 b 663 524 560 735 663 657 l 663 118 b 683 1 663 83 672 29 m 611 425 b 353 356 556 374 451 365 b 99 192 169 338 99 289 b 303 42 99 72 232 42 b 611 261 457 42 611 110 "},"\\xC3\\xA5":{ha:760,x_min:0,x_max:0,o:"m 372 1039 b 488 924 436 1039 488 986 b 372 810 488 861 436 810 b 258 924 310 810 258 861 b 372 1039 258 986 310 1039 m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 372 847 b 447 924 414 847 447 882 b 372 1000 447 965 414 1000 b 299 924 332 1000 299 965 b 372 847 299 882 332 847 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC3\\xA7":{ha:781,x_min:0,x_max:0,o:"m 361 -81 b 499 -162 413 -54 499 -83 b 390 -253 499 -218 454 -253 b 276 -203 354 -253 310 -236 l 292 -174 b 388 -214 319 -197 351 -214 b 456 -162 422 -214 456 -199 b 393 -108 456 -132 432 -108 b 336 -129 376 -108 354 -114 l 304 -106 l 353 -14 b 39 356 176 8 39 165 b 396 733 39 564 199 733 b 725 494 553 733 678 639 l 671 494 b 396 681 625 608 524 681 b 90 356 226 681 90 535 b 396 35 90 179 226 35 b 672 222 526 35 628 107 l 726 222 b 397 -17 679 79 556 -17 "},"\\xC3\\xA9":{ha:789,x_min:0,x_max:0,o:"m 435 824 l 376 824 l 493 965 l 560 965 m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xC3\\xA8":{ha:789,x_min:0,x_max:0,o:"m 303 965 l 418 824 l 361 824 l 236 965 m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},\\u00C3\\u00AA:{ha:789,x_min:0,x_max:0,o:"m 361 956 l 424 956 l 536 818 l 474 818 l 393 921 l 313 818 l 250 818 m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xC3\\xAB":{ha:789,x_min:0,x_max:0,o:"m 464 826 l 464 922 l 529 922 l 529 826 m 275 826 l 275 922 l 340 922 l 340 826 m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xC3\\xAD":{ha:265,x_min:0,x_max:0,o:"m 158 822 l 101 822 l 218 965 l 285 965 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xC3\\xAC":{ha:265,x_min:0,x_max:0,o:"m 38 965 l 153 822 l 97 822 l -29 965 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xC3\\xAE":{ha:265,x_min:0,x_max:0,o:"m 101 944 l 164 944 l 276 807 l 214 807 l 132 910 l 51 807 l -11 807 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xC3\\xAF":{ha:265,x_min:0,x_max:0,o:"m 183 826 l 183 922 l 249 922 l 249 826 m 15 826 l 15 922 l 81 922 l 81 826 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xC3\\xB1":{ha:796,x_min:0,x_max:0,o:"m 583 935 b 483 831 568 861 526 831 b 325 890 413 831 379 892 b 269 836 304 889 282 874 l 226 836 b 325 939 240 908 283 939 b 483 881 399 939 429 879 b 539 935 504 881 528 896 l 583 935 m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 715 l 153 715 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 "},"\\xC3\\xB3":{ha:790,x_min:0,x_max:0,o:"m 431 824 l 374 824 l 489 965 l 556 965 m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},"\\xC3\\xB2":{ha:790,x_min:0,x_max:0,o:"m 301 965 l 417 824 l 360 824 l 235 965 m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},"\\xC3\\xB4":{ha:790,x_min:0,x_max:0,o:"m 360 956 l 422 956 l 535 818 l 472 818 l 390 921 l 310 818 l 247 818 m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},"\\xC3\\xB6":{ha:790,x_min:0,x_max:0,o:"m 456 826 l 456 922 l 521 922 l 521 826 m 268 826 l 268 922 l 333 922 l 333 826 m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},\\u00C3\\u00B5:{ha:790,x_min:0,x_max:0,o:"m 564 935 b 465 831 549 861 507 831 b 306 890 393 831 360 892 b 250 836 285 889 263 874 l 207 836 b 306 939 222 908 264 939 b 465 881 379 939 410 879 b 521 935 486 881 508 896 l 564 935 m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 "},\\u00C3\\u00BA:{ha:796,x_min:0,x_max:0,o:"m 426 824 l 368 824 l 485 965 l 551 965 m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 "},"\\xC3\\xB9":{ha:796,x_min:0,x_max:0,o:"m 318 965 l 435 824 l 378 824 l 251 965 m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 "},"\\xC3\\xBB":{ha:796,x_min:0,x_max:0,o:"m 368 956 l 431 956 l 543 818 l 481 818 l 400 921 l 318 818 l 257 818 m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 "},"\\xC3\\xBC":{ha:796,x_min:0,x_max:0,o:"m 456 826 l 456 922 l 521 922 l 521 826 m 267 826 l 267 922 l 332 922 l 332 826 m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 "},"\\xE2\\x80\\xA0":{ha:460,x_min:0,x_max:0,o:"m 257 733 l 257 308 l 206 308 l 206 733 l 36 733 l 36 782 l 206 782 l 206 964 l 257 964 l 257 782 l 428 782 l 428 733 "},"\\xC2\\xB0":{ha:489,x_min:0,x_max:0,o:"m 246 964 b 458 751 363 964 458 868 b 246 538 458 633 363 538 b 32 751 128 538 32 633 b 246 964 32 868 128 964 m 246 588 b 407 751 335 588 407 661 b 246 914 407 840 335 914 b 83 751 157 914 83 840 b 246 588 83 661 157 588 "},"\\xC2\\xA2":{ha:700,x_min:0,x_max:0,o:"m 674 226 b 365 -15 631 81 514 -15 b 274 -3 333 -15 303 -11 l 222 -162 l 171 -162 l 228 15 b 33 353 111 71 33 199 b 365 722 33 563 176 722 b 453 710 396 722 425 718 l 504 868 l 556 868 l 499 693 b 671 490 579 656 640 583 l 617 490 b 483 646 590 560 544 615 l 289 44 b 365 33 313 38 339 33 b 619 226 486 33 581 110 l 674 226 m 438 664 b 365 674 415 671 390 674 b 85 353 206 674 85 533 b 243 63 85 222 149 114 "},"\\xC2\\xA3":{ha:736,x_min:0,x_max:0,o:"m 704 50 b 397 33 592 -35 493 -8 b 78 -4 300 76 182 63 l 49 39 b 204 318 146 108 204 214 b 172 449 204 368 190 410 l 28 449 l 28 497 l 144 497 b 138 510 143 501 140 506 b 68 706 104 567 68 626 b 365 965 68 835 161 965 b 668 685 575 965 668 824 l 617 685 b 365 917 617 824 518 917 b 121 706 217 917 121 832 b 182 536 121 640 150 590 b 204 497 189 524 197 511 l 472 497 l 472 449 l 229 449 b 256 318 244 410 256 368 b 164 85 256 240 222 142 b 415 81 246 121 347 111 b 675 93 510 38 589 25 l 704 50 "},"\\xC2\\xA7":{ha:699,x_min:0,x_max:0,o:"m 550 281 b 590 174 576 254 590 219 b 351 -18 590 58 497 -18 b 113 194 186 -18 113 89 l 164 194 b 351 32 164 97 238 32 b 539 174 469 32 539 86 b 322 321 539 250 483 290 b 50 524 190 346 50 381 b 154 689 50 597 90 657 b 113 797 128 715 113 750 b 353 988 113 911 208 988 b 590 776 518 988 590 882 l 539 776 b 353 940 539 874 465 940 b 164 797 238 940 164 882 b 382 650 164 711 240 678 b 651 447 518 624 651 589 b 550 281 651 372 613 313 m 600 447 b 372 601 600 532 544 569 b 197 657 308 614 246 629 b 101 524 139 636 101 583 b 331 369 101 442 161 400 b 508 314 393 358 458 343 b 600 447 564 333 600 386 "},"\\xE2\\x80\\xA2":{ha:435,x_min:0,x_max:0,o:"m 218 358 b 69 507 135 358 69 424 b 218 654 69 588 135 654 b 365 507 299 654 365 588 b 218 358 365 424 299 358 "},"\\xC2\\xB6":{ha:721,x_min:0,x_max:0,o:"m 622 0 l 571 0 l 571 913 l 417 913 l 417 0 l 365 0 l 365 429 l 329 429 b 47 697 163 429 47 539 b 333 964 47 861 157 964 l 622 964 "},"\\xC3\\x9F":{ha:829,x_min:0,x_max:0,o:"m 546 558 b 782 278 690 525 782 422 b 438 -21 782 99 643 -21 b 306 -1 390 -21 346 -14 l 306 50 b 438 29 346 36 390 29 b 729 278 574 29 729 96 b 442 524 729 458 574 524 l 306 524 l 306 575 l 407 575 b 651 776 549 575 651 663 b 403 981 651 917 528 981 b 153 733 328 981 153 956 l 153 0 l 101 0 l 101 733 b 403 1031 101 917 217 1031 b 706 776 583 1031 706 929 b 546 558 706 676 642 597 "},"\\xC2\\xAE":{ha:1078,x_min:0,x_max:0,o:"m 1043 485 b 540 -18 1043 208 817 -18 b 39 485 264 -18 39 208 b 540 988 39 763 264 988 b 1043 485 817 988 1043 763 m 992 485 b 540 939 992 736 789 939 b 90 485 292 939 90 736 b 540 32 90 235 292 32 b 992 485 789 32 992 235 m 775 206 l 715 206 l 588 438 l 406 438 l 406 206 l 354 206 l 354 763 l 604 763 b 778 600 713 763 778 701 b 642 440 778 515 724 454 m 726 600 b 604 713 726 699 650 713 l 406 713 l 406 488 l 607 488 b 726 600 667 488 726 522 "},"\\xC2\\xA9":{ha:1078,x_min:0,x_max:0,o:"m 540 988 b 1043 485 817 988 1043 763 b 540 -18 1043 208 817 -18 b 39 485 264 -18 39 208 b 540 988 39 763 264 988 m 540 32 b 992 485 789 32 992 235 b 540 939 992 736 789 939 b 90 485 292 939 90 736 b 540 32 90 235 292 32 m 797 386 b 540 199 758 276 658 199 b 267 486 389 199 267 326 b 540 774 267 644 389 774 b 799 585 661 774 761 696 l 744 585 b 542 724 710 667 633 724 b 318 486 418 724 318 617 b 542 247 318 354 418 247 b 743 386 631 247 708 304 l 797 386 "},"\\xE2\\x84\\xA2":{ha:1224,x_min:0,x_max:0,o:"m 1144 358 l 1093 358 l 1093 842 l 1090 842 l 878 358 l 819 358 l 608 842 l 607 842 l 607 358 l 554 358 l 554 964 l 611 964 l 849 422 l 850 422 l 1089 964 l 1144 964 m 465 964 l 465 914 l 271 914 l 271 358 l 219 358 l 219 914 l 25 914 l 25 964 "},"\\xC2\\xB4":{ha:549,x_min:0,x_max:0,o:"m 296 824 l 238 824 l 354 965 l 421 965 "},"\\xC2\\xA8":{ha:547,x_min:0,x_max:0,o:"m 336 826 l 336 922 l 403 922 l 403 826 m 149 826 l 149 922 l 214 922 l 214 826 "},"\\xC3\\x86":{ha:1361,x_min:0,x_max:0,o:"m 700 532 l 1226 532 l 1226 479 l 700 479 l 700 51 l 1286 51 l 1286 0 l 647 0 l 647 332 l 208 332 l 64 0 l 7 0 l 428 964 l 1286 964 l 1286 913 b 700 913 1286 913 747 913 m 647 913 b 461 913 615 913 519 913 l 231 385 l 647 385 "},"\\xC3\\x98":{ha:1039,x_min:0,x_max:0,o:"m 997 486 b 521 -17 997 208 783 -17 b 199 115 396 -17 283 33 l 100 17 l 67 49 l 167 150 b 44 486 90 239 44 356 b 521 988 44 763 258 988 b 856 847 653 988 769 935 l 950 943 l 982 910 l 886 813 b 997 486 956 725 997 613 m 819 810 b 521 936 743 889 639 936 b 96 486 286 936 96 733 b 203 186 96 371 136 265 m 944 486 b 849 775 944 597 910 699 l 235 153 b 521 35 310 79 411 35 b 944 486 756 35 944 238 "},"\\xC2\\xA5":{ha:686,x_min:0,x_max:0,o:"m 650 650 l 650 599 l 481 599 l 379 421 l 629 421 l 629 371 l 371 371 l 371 0 l 319 0 l 319 371 l 61 371 l 61 421 l 310 421 l 208 599 l 40 599 l 40 650 l 181 650 l 0 964 l 60 964 l 344 465 l 346 465 l 629 964 l 689 964 l 510 650 "},\\u00C2\\u00AA:{ha:525,x_min:0,x_max:0,o:"m 397 535 b 386 589 390 549 386 567 b 210 517 356 547 296 517 b 43 649 129 517 43 558 b 235 786 43 743 125 776 b 383 856 328 794 383 804 b 257 938 383 896 344 938 b 118 854 204 938 139 921 l 65 854 b 256 985 83 931 149 985 b 435 847 418 985 435 889 l 435 604 b 449 535 435 583 442 551 l 397 535 m 385 783 b 242 743 363 758 317 750 b 94 649 122 731 94 693 b 210 565 94 582 169 565 b 385 690 300 565 385 604 "},\\u00C2\\u00BA:{ha:524,x_min:0,x_max:0,o:"m 263 985 b 488 749 386 985 488 879 b 263 514 488 619 386 514 b 39 749 139 514 39 619 b 263 985 39 879 139 985 m 263 563 b 435 749 358 563 435 646 b 263 938 435 853 358 938 b 90 749 168 938 90 853 b 263 563 90 646 168 563 "},"\\xC3\\xA6":{ha:1363,x_min:0,x_max:0,o:"m 1310 222 b 976 -17 1260 68 1143 -17 b 650 196 828 -17 706 69 b 307 -12 622 67 504 -12 b 43 189 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 654 486 683 b 135 532 250 683 164 629 l 81 532 b 381 733 113 661 219 733 b 658 533 554 733 656 660 b 968 733 717 651 832 733 b 1324 386 1153 733 1310 581 l 1326 358 l 663 358 l 663 356 b 976 35 663 176 800 35 b 1254 222 1144 35 1221 128 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 308 40 99 71 229 40 b 611 268 500 40 611 117 m 1269 410 b 968 682 1244 564 1117 682 b 668 410 817 682 692 564 "},"\\xC3\\xB8":{ha:790,x_min:0,x_max:0,o:"m 754 356 b 396 -17 754 150 593 -17 b 158 79 306 -17 221 19 l 85 4 l 51 36 l 126 113 b 39 356 72 178 39 263 b 396 733 39 564 200 733 b 639 632 490 733 576 694 l 710 703 l 743 671 l 671 597 b 754 356 722 532 754 449 m 604 596 b 396 685 550 651 476 685 b 90 356 228 685 90 538 b 163 149 90 278 118 204 m 701 356 b 635 561 701 433 676 506 l 193 114 b 396 32 247 63 318 32 b 701 356 565 32 701 178 "},"\\xC2\\xBF":{ha:675,x_min:0,x_max:0,o:"m 386 831 l 333 831 l 333 960 l 386 960 m 642 243 b 338 -28 632 78 517 -28 b 43 232 160 -28 43 75 b 194 465 43 361 121 410 b 333 700 267 519 333 576 l 333 711 l 386 711 l 386 700 b 225 431 386 551 300 488 b 96 231 156 379 96 333 b 338 19 96 103 189 19 b 590 243 488 19 581 107 l 642 243 "},"\\xC2\\xA1":{ha:288,x_min:0,x_max:0,o:"m 171 836 l 119 836 l 119 964 l 171 964 m 171 0 l 119 0 l 119 715 l 171 715 "},"\\xC6\\x92":{ha:569,x_min:0,x_max:0,o:"m 558 824 b 443 833 518 847 475 850 b 360 694 404 815 375 767 l 346 632 l 472 632 l 472 582 l 336 582 l 264 251 b 153 81 247 167 208 108 b 4 81 110 58 58 56 l 4 132 b 129 126 51 111 96 108 b 214 263 171 146 199 194 l 282 582 l 157 582 l 157 632 l 293 632 l 308 704 b 421 881 328 793 367 854 b 558 876 461 900 514 900 "},"\\xC2\\xAB":{ha:468,x_min:0,x_max:0,o:"m 444 599 l 444 532 l 300 415 l 444 299 l 444 232 l 263 382 l 263 449 m 208 599 l 208 532 l 65 415 l 208 299 l 208 232 l 28 382 l 28 449 "},"\\xC2\\xBB":{ha:468,x_min:0,x_max:0,o:"m 443 382 l 263 232 l 263 299 l 406 415 l 263 532 l 263 599 l 443 449 m 208 449 l 208 382 l 28 232 l 28 299 l 171 415 l 28 532 l 28 599 "},"\\xE2\\x80\\xA6":{ha:1010,x_min:0,x_max:0,o:"m 928 0 l 876 0 l 876 129 l 928 129 m 532 0 l 481 0 l 481 129 l 532 129 m 136 0 l 85 0 l 85 129 l 136 129 "},"\\xC3\\x80":{ha:810,x_min:0,x_max:0,o:"m 335 1206 l 451 1063 l 393 1063 l 268 1206 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x83":{ha:810,x_min:0,x_max:0,o:"m 576 1174 b 476 1071 561 1101 519 1071 b 318 1129 406 1071 372 1132 b 263 1076 297 1129 275 1114 l 219 1076 b 318 1179 233 1149 276 1179 b 476 1119 392 1179 422 1119 b 532 1174 497 1119 521 1136 l 576 1174 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x95":{ha:1039,x_min:0,x_max:0,o:"m 689 1174 b 590 1071 674 1101 632 1071 b 431 1129 518 1071 485 1132 b 375 1076 410 1129 388 1114 l 332 1076 b 431 1179 347 1149 389 1179 b 590 1119 504 1179 535 1119 b 646 1174 611 1119 633 1136 l 689 1174 m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xC5\\x92":{ha:1660,x_min:0,x_max:0,o:"m 997 532 l 1525 532 l 1525 479 l 997 479 l 997 51 l 1585 51 l 1585 0 l 946 0 l 946 268 b 522 -17 871 100 710 -17 b 44 486 258 -17 44 208 b 522 988 44 763 258 988 b 946 708 713 988 871 876 l 946 964 l 1585 964 l 1585 913 l 997 913 m 946 488 b 522 936 946 739 760 936 b 96 486 288 936 96 735 b 522 35 96 238 288 35 b 946 488 756 35 946 238 "},"\\xC5\\x93":{ha:1453,x_min:0,x_max:0,o:"m 754 358 b 1067 35 754 172 893 35 b 1344 222 1233 35 1313 128 l 1400 222 b 1067 -17 1351 68 1233 -17 b 726 229 907 -17 775 85 b 396 -17 678 86 550 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 483 550 733 681 629 b 1060 733 775 629 904 733 b 1417 358 1272 733 1418 539 m 1358 410 b 1060 682 1335 564 1208 682 b 757 410 907 682 782 564 l 1358 410 m 701 356 b 396 682 701 536 564 682 b 90 356 229 682 90 536 b 396 35 90 179 229 35 b 701 356 564 35 701 179 "},"\\xE2\\x80\\x93":{ha:738,x_min:0,x_max:0,o:"m 679 358 l 61 358 l 61 410 l 679 410 "},"\\xE2\\x80\\x94":{ha:1354,x_min:0,x_max:0,o:"m 1296 358 l 61 358 l 61 410 l 1296 410 "},"\\xE2\\x80\\x9C":{ha:368,x_min:0,x_max:0,o:"m 215 700 l 215 853 b 325 968 215 929 271 968 l 325 921 b 265 853 288 919 265 893 l 265 700 m 54 700 l 54 853 b 164 968 54 929 110 968 l 164 921 b 104 853 126 919 104 893 l 104 700 "},"\\xE2\\x80\\x9D":{ha:367,x_min:0,x_max:0,o:"m 315 964 l 315 811 b 206 696 315 735 260 696 l 206 743 b 265 811 243 744 265 771 l 265 964 m 154 964 l 154 811 b 44 696 154 735 99 696 l 44 743 b 104 811 82 744 104 771 l 104 964 "},"\\xE2\\x80\\x98":{ha:207,x_min:0,x_max:0,o:"m 54 700 l 54 853 b 164 968 54 929 110 968 l 164 921 b 104 853 126 919 104 893 l 104 700 "},"\\xE2\\x80\\x99":{ha:206,x_min:0,x_max:0,o:"m 154 964 l 154 811 b 44 696 154 735 99 696 l 44 743 b 104 811 82 744 104 771 l 104 964 "},"\\xC3\\xBF":{ha:618,x_min:0,x_max:0,o:"m 379 826 l 379 922 l 444 922 l 444 826 m 192 826 l 192 922 l 257 922 l 257 826 m 299 -104 b 21 -268 247 -240 147 -292 l 21 -219 b 250 -86 132 -236 207 -201 l 283 1 l 14 715 l 69 715 l 310 74 l 553 715 l 607 715 "},"\\xC5\\xB8":{ha:758,x_min:0,x_max:0,o:"m 443 1079 l 443 1174 l 508 1174 l 508 1079 m 256 1079 l 256 1174 l 321 1174 l 321 1079 m 406 0 l 354 0 l 354 417 l 8 964 l 69 964 l 379 472 l 381 472 l 689 964 l 750 964 l 406 417 "},"\\xE2\\x81\\x84":{ha:704,x_min:0,x_max:0,o:"m 97 -17 l 42 -17 l 607 964 l 663 964 "},"\\xE2\\x82\\xAC":{ha:918,x_min:0,x_max:0,o:"m 896 199 b 546 0 821 79 692 0 b 138 331 351 0 186 140 l 21 331 l 21 379 l 128 379 b 122 446 125 401 122 424 b 125 494 122 463 124 478 l 21 494 l 21 544 l 133 544 b 546 892 176 743 344 892 b 890 703 692 892 817 818 l 865 651 b 546 844 801 768 683 844 b 186 544 374 844 226 715 l 813 544 l 789 494 l 178 494 b 174 446 175 478 174 463 b 179 379 174 424 176 401 l 733 379 l 708 331 l 190 331 b 546 47 236 167 379 47 b 836 199 664 47 768 107 l 896 199 "},"\\xE2\\x80\\xB9":{ha:233,x_min:0,x_max:0,o:"m 65 415 l 208 299 l 208 232 l 28 382 l 28 449 l 208 599 l 208 532 "},"\\xE2\\x80\\xBA":{ha:233,x_min:0,x_max:0,o:"m 208 382 l 28 232 l 28 299 l 171 415 l 28 532 l 28 599 l 208 449 "},"\\xEF\\xAC\\x81":{ha:618,x_min:0,x_max:0,o:"m 513 836 l 461 836 l 461 964 l 513 964 m 164 664 l 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 513 715 l 513 0 l 461 0 l 461 664 "},"\\xEF\\xAC\\x82":{ha:625,x_min:0,x_max:0,o:"m 519 0 l 468 0 l 468 1033 l 519 1033 m 164 664 l 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 356 715 l 356 664 "},"\\xE2\\x80\\xA1":{ha:460,x_min:0,x_max:0,o:"m 257 542 l 428 542 l 428 493 l 257 493 l 257 311 l 206 311 l 206 493 l 36 493 l 36 542 l 206 542 l 206 733 l 36 733 l 36 782 l 206 782 l 206 964 l 257 964 l 257 782 l 428 782 l 428 733 l 257 733 "},"\\xC2\\xB7":{ha:217,x_min:0,x_max:0,o:"m 135 371 l 83 371 l 83 500 l 135 500 "},"\\xE2\\x80\\x9A":{ha:206,x_min:0,x_max:0,o:"m 147 129 l 147 -24 b 38 -139 147 -100 92 -139 l 38 -92 b 97 -24 75 -90 97 -64 l 97 129 "},"\\xE2\\x80\\x9E":{ha:367,x_min:0,x_max:0,o:"m 308 129 l 308 -24 b 199 -139 308 -100 253 -139 l 199 -92 b 258 -24 236 -90 258 -64 l 258 129 m 147 129 l 147 -24 b 38 -139 147 -100 92 -139 l 38 -92 b 97 -24 75 -90 97 -64 l 97 129 "},"\\xE2\\x80\\xB0":{ha:1464,x_min:0,x_max:0,o:"m 250 944 b 464 731 368 944 464 849 b 250 518 464 613 368 518 b 38 731 133 518 38 613 b 250 944 38 849 133 944 m 733 964 l 789 964 l 224 -17 l 168 -17 m 1214 447 b 1428 233 1332 447 1428 351 b 1214 21 1428 115 1332 21 b 1001 233 1097 21 1001 115 b 1214 447 1001 351 1097 447 m 717 447 b 929 233 833 447 929 351 b 717 21 929 115 833 21 b 503 233 599 21 503 115 b 717 447 503 351 599 447 m 250 568 b 413 731 340 568 413 640 b 250 894 413 821 340 894 b 89 731 163 894 89 821 b 250 568 89 640 163 568 m 1214 71 b 1375 233 1303 71 1375 143 b 1214 396 1375 324 1303 396 b 1053 233 1125 396 1053 324 b 1214 71 1053 143 1125 71 m 717 71 b 878 233 806 71 878 143 b 717 396 878 324 806 396 b 554 233 628 396 554 324 b 717 71 554 143 628 71 "},"\\xC3\\x82":{ha:810,x_min:0,x_max:0,o:"m 360 1196 l 422 1196 l 535 1060 l 472 1060 l 390 1161 l 310 1060 l 247 1060 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x8A":{ha:831,x_min:0,x_max:0,o:"m 403 1196 l 465 1196 l 578 1060 l 515 1060 l 435 1161 l 354 1060 l 292 1060 m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xC3\\x81":{ha:810,x_min:0,x_max:0,o:"m 431 1063 l 372 1063 l 489 1206 l 556 1206 m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xC3\\x8B":{ha:831,x_min:0,x_max:0,o:"m 506 1079 l 506 1174 l 571 1174 l 571 1079 m 317 1079 l 317 1174 l 383 1174 l 383 1079 m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xC3\\x88":{ha:831,x_min:0,x_max:0,o:"m 350 1206 l 465 1063 l 408 1063 l 283 1206 m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xC3\\x8D":{ha:290,x_min:0,x_max:0,o:"m 174 1063 l 115 1063 l 232 1204 l 299 1204 m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xC3\\x8E":{ha:290,x_min:0,x_max:0,o:"m 114 1196 l 176 1196 l 289 1060 l 226 1060 l 146 1161 l 64 1060 l 1 1060 m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xC3\\x8F":{ha:290,x_min:0,x_max:0,o:"m 196 1078 l 196 1174 l 263 1174 l 263 1078 m 28 1078 l 28 1174 l 93 1174 l 93 1078 m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xC3\\x8C":{ha:290,x_min:0,x_max:0,o:"m 44 1206 l 161 1063 l 104 1063 l -22 1206 m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xC3\\x93":{ha:1039,x_min:0,x_max:0,o:"m 553 1063 l 496 1063 l 613 1206 l 678 1206 m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xC3\\x94":{ha:1039,x_min:0,x_max:0,o:"m 482 1196 l 544 1196 l 657 1060 l 594 1060 l 514 1161 l 432 1060 l 369 1060 m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xEF\\xA3\\xBF":{ha:1256,x_min:0,x_max:0,o:"m 1199 482 b 722 1 1199 190 957 8 l 706 0 l 706 965 l 722 964 b 1199 482 957 957 1199 775 m 665 964 l 665 790 l 538 790 b 240 482 356 790 240 650 b 538 174 240 314 356 174 l 665 174 l 665 0 l 538 0 b 57 482 246 0 57 224 b 538 964 57 740 246 964 m 978 467 b 949 281 976 399 965 338 b 1078 217 994 265 1038 243 b 1165 467 1129 283 1163 368 m 949 683 b 978 499 965 628 976 565 l 1165 499 b 1078 749 1163 597 1129 681 b 949 683 1038 722 994 700 m 739 319 b 917 290 803 317 863 307 b 946 467 933 343 944 403 l 739 467 l 739 319 m 946 499 b 917 674 944 563 933 621 b 739 646 863 658 803 649 l 739 499 m 739 678 b 907 706 799 682 856 690 b 739 922 867 810 803 886 l 739 678 m 739 43 b 907 260 803 78 867 156 b 739 286 856 275 799 283 l 739 43 m 796 922 b 938 715 851 878 903 806 b 1057 774 981 731 1019 750 b 796 922 988 851 894 903 m 1057 192 b 938 250 1019 215 981 235 b 796 43 903 160 851 88 b 1057 192 894 63 988 114 "},"\\xC3\\x92":{ha:1039,x_min:0,x_max:0,o:"m 424 1206 l 540 1063 l 483 1063 l 358 1206 m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xC3\\x9A":{ha:939,x_min:0,x_max:0,o:"m 493 1063 l 435 1063 l 551 1206 l 618 1206 m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 "},"\\xC3\\x9B":{ha:939,x_min:0,x_max:0,o:"m 449 1196 l 511 1196 l 624 1060 l 561 1060 l 481 1161 l 400 1060 l 338 1060 m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 "},"\\xC3\\x99":{ha:939,x_min:0,x_max:0,o:"m 392 1206 l 508 1063 l 451 1063 l 326 1206 m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 "},"\\xC4\\xB1":{ha:265,x_min:0,x_max:0,o:"m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xCB\\x86":{ha:549,x_min:0,x_max:0,o:"m 354 819 l 275 919 l 197 819 l 132 819 l 244 957 l 307 957 l 419 819 "},"\\xCB\\x9C":{ha:549,x_min:0,x_max:0,o:"m 454 935 b 354 831 439 861 397 831 b 196 890 283 831 250 892 b 140 836 175 889 153 874 l 97 836 b 196 939 111 908 154 939 b 354 881 269 939 300 879 b 410 935 375 881 399 896 l 454 935 "},"\\xC2\\xAF":{ha:575,x_min:0,x_max:0,o:"m 478 832 l 97 832 l 97 883 l 478 883 "},"\\xCB\\x98":{ha:557,x_min:0,x_max:0,o:"m 460 964 b 279 819 439 875 371 819 b 97 964 186 819 118 875 l 146 964 b 279 868 167 901 211 868 b 411 964 346 868 392 901 l 460 964 "},"\\xCB\\x99":{ha:260,x_min:0,x_max:0,o:"m 97 826 l 97 922 l 163 922 l 163 826 "},"\\xCB\\x9A":{ha:424,x_min:0,x_max:0,o:"m 211 1039 b 326 924 275 1039 326 986 b 211 810 326 861 275 810 b 97 924 149 810 97 861 b 211 1039 97 986 149 1039 m 211 847 b 286 924 253 847 286 882 b 211 1000 286 965 253 1000 b 138 924 171 1000 138 965 b 211 847 138 882 171 847 "},"\\xC2\\xB8":{ha:417,x_min:0,x_max:0,o:"m 319 -162 b 211 -253 319 -218 275 -253 b 97 -203 175 -253 131 -236 l 113 -174 b 208 -214 140 -197 172 -214 b 276 -162 243 -214 276 -199 b 214 -108 276 -132 253 -108 b 157 -129 197 -108 174 -114 l 125 -106 l 181 0 l 229 0 l 182 -81 b 319 -162 233 -54 319 -83 "},"\\xCB\\x9D":{ha:485,x_min:0,x_max:0,o:"m 282 822 l 228 822 l 321 965 l 388 965 m 151 822 l 97 822 l 192 965 l 257 965 "},"\\xCB\\x9B":{ha:385,x_min:0,x_max:0,o:"m 288 -214 b 107 -190 215 -254 133 -243 b 192 7 83 -140 97 -56 l 247 7 b 153 -169 165 -49 126 -121 b 288 -175 169 -201 231 -203 "},"\\xCB\\x87":{ha:482,x_min:0,x_max:0,o:"m 272 819 l 210 819 l 97 957 l 160 957 l 242 854 l 324 957 l 385 957 "},"\\xEF\\x80\\x84":{ha:417,x_min:0,x_max:0,o:"m 221 -71 b 319 -162 268 -71 319 -101 b 211 -253 319 -218 275 -253 b 97 -203 172 -253 128 -235 l 113 -174 b 208 -214 136 -197 172 -214 b 276 -162 243 -214 276 -199 b 210 -108 276 -131 251 -108 b 151 -121 190 -108 168 -112 l 151 -87 b 221 -71 171 -76 194 -71 "},"\\xE2\\x89\\xA0":{ha:719,x_min:0,x_max:0,o:"m 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 471 715 l 471 765 b 715 1011 471 924 561 1025 l 715 964 b 524 761 581 972 524 889 l 524 715 l 715 715 l 715 664 l 524 664 l 524 0 l 471 0 l 471 664 l 164 664 "},"\\xC2\\xB1":{ha:985,x_min:0,x_max:0,o:"m 879 0 l 828 0 l 828 1033 l 879 1033 m 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 471 715 l 471 765 b 715 1011 471 924 561 1025 l 715 964 b 524 761 581 972 524 889 l 524 715 l 715 715 l 715 664 l 524 664 l 524 0 l 471 0 l 471 664 l 164 664 "},"\\xE2\\x88\\x9E":{ha:978,x_min:0,x_max:0,o:"m 872 836 l 821 836 l 821 964 l 872 964 m 164 0 l 111 0 l 111 664 l 14 664 l 14 715 l 111 715 l 111 765 b 356 1011 111 924 201 1025 l 356 964 b 164 761 221 972 164 889 l 164 715 l 471 715 l 471 765 b 715 1011 471 924 561 1025 l 715 964 b 524 761 581 972 524 889 l 524 715 l 872 715 l 872 0 l 821 0 l 821 664 l 524 664 l 524 0 l 471 0 l 471 664 l 164 664 "},"\\xC4\\x82":{ha:810,x_min:0,x_max:0,o:"m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 m 586 1206 b 406 1061 565 1117 497 1061 b 224 1206 313 1061 244 1117 l 272 1206 b 406 1110 293 1143 338 1110 b 538 1206 472 1110 518 1143 l 586 1206 "},"\\xC4\\x80":{ha:810,x_min:0,x_max:0,o:"m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 m 594 1060 l 214 1060 l 214 1111 l 594 1111 "},"\\xC4\\x84":{ha:810,x_min:0,x_max:0,o:"m 843 -221 b 663 -197 771 -261 689 -250 b 747 0 639 -147 653 -62 l 619 332 l 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 b 708 -176 721 -56 682 -128 b 843 -182 725 -208 786 -210 m 404 893 l 210 383 l 600 383 "},"\\xC4\\x86":{ha:1013,x_min:0,x_max:0,o:"m 965 306 b 521 -17 896 117 722 -17 b 44 486 257 -17 44 208 b 521 988 44 763 257 988 b 967 667 728 988 900 856 l 911 667 b 521 936 847 826 699 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 910 306 694 35 843 146 l 965 306 m 549 1058 l 490 1058 l 607 1200 l 674 1200 "},"\\xC4\\x8C":{ha:1013,x_min:0,x_max:0,o:"m 965 306 b 521 -17 896 117 722 -17 b 44 486 257 -17 44 208 b 521 988 44 763 257 988 b 967 667 728 988 900 856 l 911 667 b 521 936 847 826 699 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 910 306 694 35 843 146 l 965 306 m 544 1061 l 482 1061 l 369 1199 l 432 1199 l 514 1096 l 596 1199 l 657 1199 "},"\\xC4\\x8E":{ha:935,x_min:0,x_max:0,o:"m 893 483 b 464 0 893 186 729 0 l 117 0 l 117 964 l 464 964 b 893 483 733 964 893 785 m 842 483 b 464 913 842 757 704 913 l 168 913 l 168 51 l 464 51 b 842 483 700 51 842 214 m 415 1058 l 353 1058 l 240 1196 l 303 1196 l 385 1093 l 467 1196 l 528 1196 "},"\\xC4\\x90":{ha:926,x_min:0,x_max:0,o:"m 885 483 b 454 0 885 186 719 0 l 107 0 l 107 504 l 21 504 l 21 556 l 107 556 l 107 964 l 454 964 b 885 483 724 964 885 785 m 832 483 b 454 913 832 757 694 913 l 158 913 l 158 556 l 485 556 l 485 504 l 158 504 l 158 51 l 454 51 b 832 483 692 51 832 214 "},"\\xC4\\x9A":{ha:831,x_min:0,x_max:0,o:"m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 m 467 1068 l 404 1068 l 292 1206 l 354 1206 l 436 1103 l 518 1206 l 579 1206 "},"\\xC4\\x96":{ha:831,x_min:0,x_max:0,o:"m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 m 411 1079 l 411 1175 l 476 1175 l 476 1079 "},"\\xC4\\x92":{ha:831,x_min:0,x_max:0,o:"m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 m 633 1081 l 253 1081 l 253 1132 l 633 1132 "},"\\xC4\\x98":{ha:831,x_min:0,x_max:0,o:"m 517 -221 b 336 -197 444 -261 363 -250 b 421 0 313 -147 326 -62 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 l 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 476 0 b 382 -176 394 -56 356 -128 b 517 -182 399 -208 460 -210 "},"\\xC4\\x9E":{ha:1056,x_min:0,x_max:0,o:"m 988 0 l 936 0 l 936 263 b 521 -17 867 90 715 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 b 968 667 735 988 900 867 l 913 667 b 521 936 849 835 706 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 935 443 749 35 914 201 l 531 443 l 531 494 l 988 494 m 708 1206 b 528 1061 688 1117 619 1061 b 346 1206 435 1061 367 1117 l 394 1206 b 528 1110 415 1143 460 1110 b 660 1206 594 1110 640 1143 l 708 1206 "},"\\xC4\\xA2":{ha:1056,x_min:0,x_max:0,o:"m 611 -162 b 503 -253 611 -218 567 -253 b 389 -203 467 -253 422 -236 l 404 -174 b 500 -214 432 -197 464 -214 b 568 -162 535 -214 568 -199 b 506 -108 568 -132 544 -108 b 449 -129 489 -108 465 -114 l 417 -106 l 465 -12 b 44 486 228 15 44 228 b 521 988 44 763 258 988 b 968 667 735 988 900 867 l 913 667 b 521 936 849 835 706 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 935 443 749 35 914 201 l 531 443 l 531 494 l 988 494 l 988 0 l 936 0 l 936 263 b 521 -17 867 90 715 -17 l 511 -17 l 474 -81 b 611 -162 525 -54 611 -83 "},"\\xC4\\xB0":{ha:290,x_min:0,x_max:0,o:"m 172 0 l 121 0 l 121 964 l 172 964 m 113 1078 l 113 1174 l 178 1174 l 178 1078 "},\\u00C4\\u00AA:{ha:290,x_min:0,x_max:0,o:"m 172 0 l 121 0 l 121 964 l 172 964 m 336 1057 l -44 1057 l -44 1108 l 336 1108 "},"\\xC4\\xAE":{ha:290,x_min:0,x_max:0,o:"m 215 -221 b 35 -197 143 -261 61 -250 b 119 0 11 -147 25 -62 l 121 0 l 121 964 l 172 964 l 172 0 l 175 0 b 81 -176 93 -56 54 -128 b 215 -182 97 -208 158 -210 "},"\\xC4\\xB6":{ha:814,x_min:0,x_max:0,o:"m 164 357 l 164 0 l 113 0 l 113 964 l 164 964 l 164 428 l 692 964 l 764 964 l 397 593 l 824 0 l 760 0 l 361 556 m 419 -37 b 518 -129 467 -37 518 -68 b 410 -219 518 -185 474 -219 b 296 -169 371 -219 326 -201 l 311 -140 b 407 -181 335 -164 371 -181 b 475 -129 442 -181 475 -165 b 408 -75 475 -97 450 -75 b 350 -87 389 -75 367 -79 l 350 -54 b 419 -37 369 -43 393 -37 "},"\\xC4\\xB9":{ha:757,x_min:0,x_max:0,o:"m 168 51 l 722 51 l 722 0 l 117 0 l 117 964 l 168 964 m 178 1061 l 119 1061 l 236 1203 l 303 1203 "},"\\xC4\\xBD":{ha:757,x_min:0,x_max:0,o:"m 168 51 l 722 51 l 722 0 l 117 0 l 117 964 l 168 964 m 372 822 l 314 822 l 431 964 l 497 964 "},"\\xC4\\xBB":{ha:757,x_min:0,x_max:0,o:"m 531 -162 b 422 -253 531 -218 486 -253 b 308 -203 386 -253 342 -236 l 324 -174 b 419 -214 351 -197 383 -214 b 488 -162 454 -214 488 -199 b 425 -108 488 -132 464 -108 b 368 -129 408 -108 385 -114 l 336 -106 l 392 0 l 117 0 l 117 964 l 168 964 l 168 51 l 722 51 l 722 0 l 440 0 l 393 -81 b 531 -162 444 -54 531 -83 "},"\\xC5\\x83":{ha:983,x_min:0,x_max:0,o:"m 871 0 l 813 0 l 168 886 l 168 0 l 117 0 l 117 964 l 175 964 l 819 78 l 819 964 l 871 964 m 514 1064 l 456 1064 l 572 1206 l 639 1206 "},"\\xC5\\x87":{ha:983,x_min:0,x_max:0,o:"m 871 0 l 813 0 l 168 886 l 168 0 l 117 0 l 117 964 l 175 964 l 819 78 l 819 964 l 871 964 m 522 1057 l 460 1057 l 347 1194 l 410 1194 l 492 1092 l 574 1194 l 635 1194 "},"\\xC5\\x85":{ha:983,x_min:0,x_max:0,o:"m 871 0 l 813 0 l 168 886 l 168 0 l 117 0 l 117 964 l 175 964 l 819 78 l 819 964 l 871 964 m 504 -36 b 603 -128 551 -36 603 -67 b 494 -218 603 -183 558 -218 b 381 -168 456 -218 411 -200 l 396 -139 b 492 -179 419 -162 456 -179 b 560 -128 526 -179 560 -164 b 493 -74 560 -96 535 -74 b 435 -86 474 -74 451 -78 l 435 -53 b 504 -36 454 -42 478 -36 "},"\\xC5\\x90":{ha:1039,x_min:0,x_max:0,o:"m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 m 600 1057 l 546 1057 l 639 1200 l 706 1200 m 469 1057 l 415 1057 l 510 1200 l 575 1200 "},"\\xC5\\x8C":{ha:1039,x_min:0,x_max:0,o:"m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 m 710 1060 l 329 1060 l 329 1111 l 710 1111 "},"\\xC5\\x94":{ha:874,x_min:0,x_max:0,o:"m 781 117 b 801 0 781 81 790 28 l 749 0 b 729 104 736 26 729 60 l 729 244 b 525 431 729 397 618 431 l 168 431 l 168 0 l 117 0 l 117 964 l 522 964 b 810 697 700 964 810 861 b 649 456 810 582 747 494 b 781 244 733 424 781 351 l 781 117 m 528 481 b 757 697 642 481 757 549 b 522 913 757 833 672 913 l 168 913 l 168 481 l 528 481 m 431 1058 l 372 1058 l 489 1200 l 556 1200 "},"\\xC5\\x98":{ha:874,x_min:0,x_max:0,o:"m 781 117 b 801 0 781 81 790 28 l 749 0 b 729 104 736 26 729 60 l 729 244 b 525 431 729 397 618 431 l 168 431 l 168 0 l 117 0 l 117 964 l 522 964 b 810 697 700 964 810 861 b 649 456 810 582 747 494 b 781 244 733 424 781 351 l 781 117 m 528 481 b 757 697 642 481 757 549 b 522 913 757 833 672 913 l 168 913 l 168 481 l 528 481 m 468 1061 l 406 1061 l 293 1199 l 356 1199 l 438 1096 l 519 1199 l 581 1199 "},"\\xC5\\x96":{ha:874,x_min:0,x_max:0,o:"m 781 117 b 801 0 781 81 790 28 l 749 0 b 729 104 736 26 729 60 l 729 244 b 525 431 729 397 618 431 l 168 431 l 168 0 l 117 0 l 117 964 l 522 964 b 810 697 700 964 810 861 b 649 456 810 582 747 494 b 781 244 733 424 781 351 l 781 117 m 528 481 b 757 697 642 481 757 549 b 522 913 757 833 672 913 l 168 913 l 168 481 l 528 481 m 449 -36 b 547 -128 496 -36 547 -67 b 439 -218 547 -183 503 -218 b 325 -168 400 -218 356 -200 l 340 -139 b 436 -179 364 -162 400 -179 b 504 -128 471 -179 504 -164 b 438 -74 504 -96 479 -74 b 379 -86 418 -74 396 -78 l 379 -53 b 449 -36 399 -42 422 -36 "},"\\xC5\\x9A":{ha:828,x_min:0,x_max:0,o:"m 413 989 b 736 704 636 989 736 846 l 685 704 b 413 939 685 846 578 939 b 138 732 247 939 138 856 b 424 528 138 626 218 569 b 765 258 640 483 765 425 b 408 -18 765 90 625 -18 b 60 293 240 -18 60 81 l 111 293 b 408 35 111 115 261 35 b 714 258 597 35 714 119 b 414 478 714 378 639 432 b 86 732 243 511 86 567 b 413 989 86 886 217 989 m 436 1060 l 378 1060 l 494 1201 l 561 1201 "},"\\xC5\\x9E":{ha:828,x_min:0,x_max:0,o:"m 553 -162 b 444 -253 553 -218 508 -253 b 331 -203 408 -253 364 -236 l 346 -174 b 442 -214 374 -197 406 -214 b 510 -162 476 -214 510 -199 b 447 -108 510 -132 486 -108 b 390 -129 431 -108 407 -114 l 358 -106 l 404 -18 b 60 293 238 -17 60 82 l 111 293 b 408 35 111 115 261 35 b 714 258 597 35 714 119 b 414 478 714 378 639 432 b 86 732 243 511 86 567 b 413 989 86 886 217 989 b 736 704 636 989 736 846 l 685 704 b 413 939 685 846 578 939 b 138 732 247 939 138 856 b 424 528 138 626 218 569 b 765 258 640 483 765 425 b 453 -15 765 101 643 -1 l 415 -81 b 553 -162 467 -54 553 -83 "},"\\xC5\\xA4":{ha:717,x_min:0,x_max:0,o:"m 385 913 l 385 0 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 m 389 1058 l 326 1058 l 214 1196 l 276 1196 l 358 1093 l 440 1196 l 501 1196 "},"\\xC5\\xA2":{ha:717,x_min:0,x_max:0,o:"m 472 -162 b 364 -253 472 -218 428 -253 b 250 -203 328 -253 283 -236 l 265 -174 b 361 -214 293 -197 325 -214 b 429 -162 396 -214 429 -199 b 367 -108 429 -132 406 -108 b 310 -129 350 -108 326 -114 l 278 -106 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 l 385 913 l 385 0 l 382 0 l 335 -81 b 472 -162 386 -54 472 -83 "},"\\xC5\\xB0":{ha:939,x_min:0,x_max:0,o:"m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 m 564 1071 l 510 1071 l 603 1214 l 669 1214 m 433 1071 l 379 1071 l 474 1214 l 539 1214 "},\\u00C5\\u00AA:{ha:939,x_min:0,x_max:0,o:"m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 m 660 1057 l 279 1057 l 279 1108 l 660 1108 "},"\\xC5\\xB2":{ha:939,x_min:0,x_max:0,o:"m 626 -221 b 446 -197 554 -261 472 -250 b 508 -15 424 -151 433 -76 b 471 -18 496 -17 483 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 l 840 344 b 579 -4 840 169 738 36 b 492 -176 501 -60 465 -129 b 626 -182 508 -208 569 -210 "},"\\xC5\\xAE":{ha:939,x_min:0,x_max:0,o:"m 840 344 b 471 -18 840 132 689 -18 b 101 344 254 -18 101 132 l 101 964 l 153 964 l 153 344 b 471 35 153 160 282 35 b 789 344 661 35 789 160 l 789 964 l 840 964 m 468 1288 b 583 1172 532 1288 583 1235 b 468 1058 583 1110 532 1058 b 354 1172 406 1058 354 1110 b 468 1288 354 1235 406 1288 m 468 1096 b 543 1172 510 1096 543 1131 b 468 1249 543 1214 510 1249 b 394 1172 428 1249 394 1214 b 468 1096 394 1131 428 1096 "},"\\xC5\\xB9":{ha:758,x_min:0,x_max:0,o:"m 747 0 l 18 0 l 18 51 l 682 913 l 35 913 l 35 964 l 747 964 l 747 911 l 83 51 l 747 51 m 415 1072 l 357 1072 l 474 1214 l 540 1214 "},"\\xC5\\xBB":{ha:758,x_min:0,x_max:0,o:"m 747 0 l 18 0 l 18 51 l 682 913 l 35 913 l 35 964 l 747 964 l 747 911 l 83 51 l 747 51 m 346 1061 l 346 1157 l 411 1157 l 411 1061 "},"\\xC4\\x83":{ha:760,x_min:0,x_max:0,o:"m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 m 561 957 b 381 813 540 868 472 813 b 199 957 288 813 219 868 l 247 957 b 381 861 268 894 313 861 b 513 957 447 861 493 894 l 561 957 "},"\\xC4\\x81":{ha:760,x_min:0,x_max:0,o:"m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 m 569 813 l 189 813 l 189 864 l 569 864 "},"\\xC4\\x85":{ha:760,x_min:0,x_max:0,o:"m 726 -221 b 546 -197 654 -261 572 -250 b 631 0 522 -147 536 -62 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 l 686 0 b 592 -176 604 -56 565 -128 b 726 -182 608 -208 669 -210 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xC4\\x87":{ha:781,x_min:0,x_max:0,o:"m 726 222 b 396 -17 679 78 554 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 494 554 733 678 639 l 671 494 b 396 681 625 608 524 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 672 222 528 35 629 107 l 726 222 m 431 824 l 372 824 l 489 965 l 556 965 "},"\\xC4\\x8D":{ha:781,x_min:0,x_max:0,o:"m 726 222 b 396 -17 679 78 554 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 494 554 733 678 639 l 671 494 b 396 681 625 608 524 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 672 222 528 35 629 107 l 726 222 m 421 819 l 358 819 l 246 957 l 308 957 l 390 854 l 472 957 l 533 957 "},"\\xC4\\x8F":{ha:851,x_min:0,x_max:0,o:"m 753 0 l 701 0 l 701 172 b 396 -17 643 60 529 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 701 542 529 733 643 656 l 701 1033 l 753 1033 m 701 356 b 396 681 701 535 564 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 701 356 564 35 701 179 m 864 893 l 806 893 l 922 1035 l 989 1035 "},"\\xC4\\x91":{ha:851,x_min:0,x_max:0,o:"m 918 832 l 753 832 l 753 0 l 701 0 l 701 172 b 396 -17 643 60 529 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 701 542 529 733 643 656 l 701 832 l 538 832 l 538 883 l 701 883 l 701 1033 l 753 1033 l 753 883 l 918 883 m 701 356 b 396 681 701 535 564 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 701 356 564 35 701 179 "},"\\xC4\\x9B":{ha:789,x_min:0,x_max:0,o:"m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 m 425 819 l 363 819 l 250 957 l 313 957 l 394 854 l 476 957 l 538 957 "},"\\xC4\\x97":{ha:789,x_min:0,x_max:0,o:"m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 m 361 826 l 361 922 l 426 922 l 426 826 "},"\\xC4\\x93":{ha:789,x_min:0,x_max:0,o:"m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 m 585 813 l 204 813 l 204 864 l 585 864 "},"\\xC4\\x99":{ha:789,x_min:0,x_max:0,o:"m 496 -221 b 315 -197 424 -261 342 -250 b 378 -15 293 -151 303 -76 b 39 356 186 -3 39 156 b 396 733 39 564 199 733 b 753 358 610 733 756 539 l 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 433 -15 690 76 586 -6 b 361 -176 367 -68 338 -132 b 496 -182 378 -208 439 -210 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xC4\\x9F":{ha:850,x_min:0,x_max:0,o:"m 758 19 b 406 -350 758 -201 617 -350 b 72 -115 238 -350 115 -262 l 126 -115 b 406 -299 167 -231 268 -299 b 707 19 589 -299 707 -174 l 707 167 b 403 -18 650 56 539 -18 b 46 356 206 -18 46 150 b 403 733 46 564 206 733 b 707 547 539 733 650 660 l 707 715 l 758 715 m 707 356 b 403 681 707 544 579 681 b 97 356 233 681 97 535 b 403 35 97 179 233 35 b 707 356 579 35 707 169 m 592 957 b 411 813 571 868 503 813 b 229 957 318 813 250 868 l 278 957 b 411 861 299 894 343 861 b 543 957 478 861 524 894 l 592 957 "},"\\xC4\\xA3":{ha:850,x_min:0,x_max:0,o:"m 758 19 b 406 -350 758 -201 617 -350 b 72 -115 238 -350 115 -262 l 126 -115 b 406 -299 167 -231 268 -299 b 707 19 589 -299 707 -174 l 707 167 b 403 -18 650 56 539 -18 b 46 356 206 -18 46 150 b 403 733 46 564 206 733 b 707 547 539 733 650 660 l 707 715 l 758 715 m 707 356 b 403 681 707 544 579 681 b 97 356 233 681 97 535 b 403 35 97 179 233 35 b 707 356 579 35 707 169 m 419 992 b 518 900 467 992 518 961 b 410 810 518 844 474 810 b 296 860 371 810 326 828 l 311 889 b 407 849 335 865 371 849 b 475 900 442 849 475 864 b 408 954 475 932 450 954 b 350 942 389 954 367 950 l 350 975 b 419 992 369 986 393 992 "},"\\xC4\\xAB":{ha:265,x_min:0,x_max:0,o:"m 160 0 l 108 0 l 108 715 l 160 715 m 324 808 l -57 808 l -57 860 l 324 860 "},"\\xC4\\xAF":{ha:265,x_min:0,x_max:0,o:"m 201 -221 b 21 -197 129 -261 47 -250 b 106 0 -3 -147 11 -62 l 108 0 l 108 715 l 160 715 l 160 0 l 161 0 b 67 -176 79 -56 40 -128 b 201 -182 83 -208 144 -210 m 160 836 l 108 836 l 108 964 l 160 964 "},"\\xC4\\xB7":{ha:694,x_min:0,x_max:0,o:"m 153 239 l 153 0 l 101 0 l 101 1033 l 153 1033 l 153 310 l 572 715 l 646 715 l 375 454 l 681 0 l 618 0 l 338 417 m 360 -36 b 458 -128 407 -36 458 -67 b 350 -218 458 -183 414 -218 b 236 -168 311 -218 267 -200 l 251 -139 b 347 -179 275 -162 311 -179 b 415 -128 382 -179 415 -164 b 349 -74 415 -96 390 -74 b 290 -86 329 -74 307 -78 l 290 -53 b 360 -36 310 -42 333 -36 "},\\u00C4\\u00BA:{ha:265,x_min:0,x_max:0,o:"m 160 0 l 108 0 l 108 1033 l 160 1033 m 163 1103 l 104 1103 l 221 1244 l 288 1244 "},"\\xC4\\xBE":{ha:265,x_min:0,x_max:0,o:"m 160 0 l 108 0 l 108 1033 l 160 1033 m 281 893 l 222 893 l 339 1035 l 406 1035 "},"\\xC4\\xBC":{ha:265,x_min:0,x_max:0,o:"m 247 -162 b 139 -253 247 -218 203 -253 b 25 -203 103 -253 58 -236 l 40 -174 b 136 -214 68 -197 100 -214 b 204 -162 171 -214 204 -199 b 142 -108 204 -132 181 -108 b 85 -129 125 -108 101 -114 l 53 -106 l 108 0 l 108 1033 l 160 1033 l 160 0 l 157 0 l 110 -81 b 247 -162 161 -54 247 -83 "},"\\xC5\\x84":{ha:796,x_min:0,x_max:0,o:"m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 715 l 153 715 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 m 433 814 l 375 814 l 492 956 l 558 956 "},"\\xC5\\x88":{ha:796,x_min:0,x_max:0,o:"m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 715 l 153 715 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 m 443 811 l 381 811 l 268 949 l 331 949 l 413 846 l 494 949 l 556 949 "},"\\xC5\\x86":{ha:796,x_min:0,x_max:0,o:"m 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 715 l 153 715 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 m 410 -36 b 508 -128 457 -36 508 -67 b 400 -218 508 -183 464 -218 b 286 -168 361 -218 317 -200 l 301 -139 b 397 -179 325 -162 361 -179 b 465 -128 432 -179 465 -164 b 399 -74 465 -96 440 -74 b 340 -86 379 -74 357 -78 l 340 -53 b 410 -36 360 -42 383 -36 "},"\\xC5\\x91":{ha:790,x_min:0,x_max:0,o:"m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 m 483 811 l 429 811 l 522 954 l 589 954 m 353 811 l 299 811 l 393 954 l 458 954 "},"\\xC5\\x8D":{ha:790,x_min:0,x_max:0,o:"m 396 733 b 754 356 593 733 754 564 b 396 -17 754 150 593 -17 b 39 356 200 -17 39 150 b 396 733 39 564 200 733 m 396 32 b 701 356 565 32 701 178 b 396 685 701 538 565 685 b 90 356 228 685 90 538 b 396 32 90 178 228 32 m 585 811 l 204 811 l 204 863 l 585 863 "},"\\xC5\\x95":{ha:456,x_min:0,x_max:0,o:"m 444 683 b 233 622 350 692 278 665 b 154 432 182 576 154 507 l 154 0 l 101 0 l 101 715 l 154 715 l 154 596 b 201 660 167 619 182 642 b 444 731 264 715 347 742 m 167 813 l 108 813 l 225 954 l 292 954 "},"\\xC5\\x99":{ha:456,x_min:0,x_max:0,o:"m 444 683 b 233 622 350 692 278 665 b 154 432 182 576 154 507 l 154 0 l 101 0 l 101 715 l 154 715 l 154 596 b 201 660 167 619 182 642 b 444 731 264 715 347 742 m 288 813 l 225 813 l 113 950 l 175 950 l 257 847 l 339 950 l 400 950 "},"\\xC5\\x97":{ha:456,x_min:0,x_max:0,o:"m 240 -162 b 132 -253 240 -218 196 -253 b 18 -203 96 -253 51 -236 l 33 -174 b 129 -214 61 -197 93 -214 b 197 -162 164 -214 197 -199 b 135 -108 197 -132 174 -108 b 78 -129 118 -108 94 -114 l 46 -106 l 101 0 l 101 715 l 154 715 l 154 596 b 201 660 167 619 182 642 b 444 731 264 715 347 742 l 444 683 b 233 622 350 692 278 665 b 154 432 182 576 154 507 l 154 0 l 150 0 l 103 -81 b 240 -162 154 -54 240 -83 "},"\\xC5\\x9B":{ha:710,x_min:0,x_max:0,o:"m 664 203 b 614 67 665 153 649 103 b 378 -17 563 14 478 -17 b 46 208 197 -17 69 63 l 97 208 b 376 32 122 93 225 32 b 576 103 463 32 535 60 b 611 201 601 129 614 164 b 363 358 608 289 538 333 b 83 539 239 376 86 397 b 354 733 83 636 175 733 b 647 533 513 733 617 663 l 594 533 b 356 685 565 629 483 685 b 136 539 226 685 135 622 b 371 408 138 457 213 431 b 664 203 519 386 657 347 m 383 810 l 325 810 l 442 951 l 508 951 "},"\\xC5\\x9F":{ha:710,x_min:0,x_max:0,o:"m 493 -162 b 385 -253 493 -218 449 -253 b 271 -203 349 -253 304 -236 l 286 -174 b 382 -214 314 -197 346 -214 b 450 -162 417 -214 450 -199 b 388 -108 450 -132 426 -108 b 331 -129 371 -108 347 -114 l 299 -106 l 346 -15 b 46 208 182 -7 68 71 l 97 208 b 376 32 122 93 225 32 b 576 103 463 32 535 60 b 611 201 601 129 614 164 b 363 358 608 289 538 333 b 83 539 239 376 86 397 b 354 733 83 636 175 733 b 647 533 513 733 617 663 l 594 533 b 356 685 565 629 483 685 b 136 539 226 685 135 622 b 371 408 138 457 213 431 b 664 203 519 386 657 347 b 614 67 665 153 649 103 b 393 -17 565 17 486 -14 l 356 -81 b 493 -162 407 -54 493 -83 "},"\\xC5\\xA5":{ha:388,x_min:0,x_max:0,o:"m 163 247 b 356 47 163 125 219 42 l 356 0 b 111 247 201 -14 111 88 l 111 664 l 14 664 l 14 715 l 111 715 l 111 868 l 163 868 l 163 715 l 356 715 l 356 664 l 163 664 m 286 782 l 228 782 l 344 924 l 411 924 "},"\\xC5\\xA3":{ha:388,x_min:0,x_max:0,o:"m 446 -162 b 338 -253 446 -218 401 -253 b 224 -203 301 -253 257 -236 l 239 -174 b 335 -214 267 -197 299 -214 b 403 -162 369 -214 403 -199 b 340 -108 403 -132 379 -108 b 283 -129 324 -108 300 -114 l 251 -106 l 307 0 b 111 247 182 8 111 104 l 111 664 l 14 664 l 14 715 l 111 715 l 111 868 l 163 868 l 163 715 l 356 715 l 356 664 l 163 664 l 163 247 b 356 47 163 125 219 42 l 356 0 l 308 -81 b 446 -162 360 -54 446 -83 "},"\\xC5\\xB1":{ha:796,x_min:0,x_max:0,o:"m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 m 479 808 l 425 808 l 518 951 l 585 951 m 349 808 l 294 808 l 389 951 l 454 951 "},"\\xC5\\xAB":{ha:796,x_min:0,x_max:0,o:"m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 m 588 807 l 207 807 l 207 858 l 588 858 "},"\\xC5\\xB3":{ha:796,x_min:0,x_max:0,o:"m 738 -221 b 557 -197 665 -261 583 -250 b 642 0 533 -147 547 -62 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 l 697 0 b 603 -176 615 -56 576 -128 b 738 -182 619 -208 681 -210 "},"\\xC5\\xAF":{ha:796,x_min:0,x_max:0,o:"m 697 0 l 646 0 l 646 118 b 396 -17 597 35 508 -17 b 96 283 222 -17 96 110 l 96 715 l 147 715 l 147 283 b 396 35 147 139 253 35 b 646 283 542 35 646 139 l 646 715 l 697 715 m 397 1039 b 513 924 461 1039 513 986 b 397 810 513 861 461 810 b 283 924 335 810 283 861 b 397 1039 283 986 335 1039 m 397 847 b 472 924 439 847 472 882 b 397 1000 472 965 439 1000 b 324 924 357 1000 324 965 b 397 847 324 882 357 847 "},\\u00C5\\u00BA:{ha:607,x_min:0,x_max:0,o:"m 599 0 l 14 0 l 14 51 l 517 664 l 29 664 l 29 715 l 583 715 l 583 664 l 81 51 l 599 51 m 326 824 l 268 824 l 385 965 l 451 965 "},"\\xC5\\xBC":{ha:607,x_min:0,x_max:0,o:"m 599 0 l 14 0 l 14 51 l 517 664 l 29 664 l 29 715 l 583 715 l 583 664 l 81 51 l 599 51 m 271 826 l 271 922 l 336 922 l 336 826 "},"\\xD0\\x81":{ha:831,x_min:0,x_max:0,o:"m 506 1079 l 506 1174 l 571 1174 l 571 1079 m 317 1079 l 317 1174 l 383 1174 l 383 1079 m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xD0\\x82":{ha:1038,x_min:0,x_max:0,o:"m 385 0 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 l 385 913 l 385 532 l 713 532 b 992 267 878 532 992 422 b 713 0 992 110 878 0 l 575 0 l 575 51 l 713 51 b 940 267 826 51 940 113 b 713 481 940 421 826 481 l 385 481 "},"\\xD0\\x83":{ha:753,x_min:0,x_max:0,o:"m 435 1063 l 378 1063 l 494 1206 l 560 1206 m 168 0 l 117 0 l 117 964 l 714 964 l 714 913 l 168 913 "},"\\xD0\\x84":{ha:1013,x_min:0,x_max:0,o:"m 597 513 l 597 463 l 96 463 b 525 35 108 217 296 35 b 910 306 697 35 843 146 l 965 306 b 525 -17 896 117 725 -17 b 44 486 260 -17 44 200 b 525 988 44 771 260 988 b 967 667 731 988 900 856 l 911 667 b 525 936 847 826 701 936 b 96 513 297 936 110 754 "},"\\xD0\\x85":{ha:828,x_min:0,x_max:0,o:"m 413 989 b 736 704 636 989 736 846 l 685 704 b 413 939 685 846 578 939 b 138 732 247 939 138 856 b 424 528 138 626 218 569 b 765 258 640 483 765 425 b 408 -18 765 90 625 -18 b 60 293 240 -18 60 81 l 111 293 b 408 35 111 115 261 35 b 714 258 597 35 714 119 b 414 478 714 378 639 432 b 86 732 243 511 86 567 b 413 989 86 886 217 989 "},"\\xD0\\x86":{ha:290,x_min:0,x_max:0,o:"m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xD0\\x87":{ha:290,x_min:0,x_max:0,o:"m 196 1078 l 196 1174 l 263 1174 l 263 1078 m 28 1078 l 28 1174 l 93 1174 l 93 1078 m 172 0 l 121 0 l 121 964 l 172 964 "},"\\xD0\\x88":{ha:721,x_min:0,x_max:0,o:"m 607 285 b 317 -18 607 101 493 -18 b 28 272 154 -18 28 110 l 79 272 b 317 35 79 138 181 35 b 556 285 464 35 556 131 l 556 964 l 607 964 "},"\\xD0\\x89":{ha:1375,x_min:0,x_max:0,o:"m 1047 532 b 1326 267 1213 532 1326 422 b 1047 0 1326 110 1213 0 l 692 0 l 692 913 l 343 913 l 67 0 l 14 0 l 306 964 l 743 964 l 743 532 m 1275 267 b 1047 481 1275 421 1161 481 l 743 481 l 743 51 l 1047 51 b 1275 267 1161 51 1275 113 "},"\\xD0\\x8A":{ha:1386,x_min:0,x_max:0,o:"m 168 481 l 168 0 l 117 0 l 117 964 l 168 964 l 168 532 l 703 532 l 703 964 l 754 964 l 754 532 l 1058 532 b 1338 267 1224 532 1338 422 b 1058 0 1338 110 1224 0 l 703 0 l 703 481 m 1286 267 b 1058 481 1286 421 1172 481 l 754 481 l 754 51 l 1058 51 b 1286 267 1172 51 1286 113 "},"\\xD0\\x8B":{ha:1061,x_min:0,x_max:0,o:"m 385 0 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 l 385 913 l 385 532 l 689 532 b 968 267 854 532 968 422 l 968 0 l 917 0 l 917 267 b 689 481 917 421 803 481 l 385 481 "},"\\xD0\\x8C":{ha:818,x_min:0,x_max:0,o:"m 450 1063 l 393 1063 l 510 1206 l 575 1206 m 168 357 l 168 0 l 117 0 l 117 964 l 168 964 l 168 428 l 696 964 l 768 964 l 401 593 l 828 0 l 764 0 l 365 556 "},"\\xD0\\x8E":{ha:747,x_min:0,x_max:0,o:"m 558 1215 b 378 1071 538 1126 469 1071 b 196 1215 285 1071 217 1126 l 247 1215 b 378 1119 265 1153 310 1119 b 507 1215 444 1119 489 1153 l 558 1215 m 682 964 l 739 964 l 385 207 b 101 0 318 65 244 0 l 71 0 l 71 50 l 101 50 b 342 225 222 50 288 107 l 350 244 l 8 964 l 65 964 l 378 303 "},"\\xD0\\x8F":{ha:929,x_min:0,x_max:0,o:"m 117 0 l 117 964 l 168 964 l 168 51 l 761 51 l 761 964 l 813 964 l 813 0 l 490 0 l 490 -153 l 439 -153 l 439 0 "},"\\xD0\\x90":{ha:810,x_min:0,x_max:0,o:"m 190 332 l 63 0 l 7 0 l 376 964 l 433 964 l 803 0 l 747 0 l 619 332 m 404 893 l 210 383 l 600 383 "},"\\xD0\\x91":{ha:860,x_min:0,x_max:0,o:"m 814 267 b 535 0 814 110 700 0 l 117 0 l 117 964 l 718 964 l 718 913 l 168 913 l 168 532 l 535 532 b 814 267 700 532 814 422 m 763 267 b 535 481 763 421 649 481 l 168 481 l 168 51 l 535 51 b 763 267 649 51 763 113 "},"\\xD0\\x92":{ha:869,x_min:0,x_max:0,o:"m 814 267 b 535 0 814 110 700 0 l 117 0 l 117 964 l 526 964 b 786 722 688 964 786 872 b 650 508 786 621 733 544 b 814 267 754 472 814 389 m 168 531 l 531 531 b 735 722 632 531 735 590 b 526 913 735 843 658 913 l 168 913 m 763 267 b 531 481 763 401 678 481 l 168 481 l 168 51 l 535 51 b 763 267 649 51 763 118 "},"\\xD0\\x93":{ha:753,x_min:0,x_max:0,o:"m 168 0 l 117 0 l 117 964 l 714 964 l 714 913 l 168 913 "},"\\xD0\\x94":{ha:1010,x_min:0,x_max:0,o:"m 985 51 l 985 -153 l 933 -153 l 933 0 l 76 0 l 76 -153 l 25 -153 l 25 51 l 96 51 l 338 964 l 667 964 l 908 51 m 856 51 l 628 913 l 376 913 l 149 51 "},"\\xD0\\x95":{ha:831,x_min:0,x_max:0,o:"m 168 531 l 694 531 l 694 481 l 168 481 l 168 51 l 756 51 l 756 0 l 117 0 l 117 964 l 756 964 l 756 913 l 168 913 "},"\\xD0\\x96":{ha:1107,x_min:0,x_max:0,o:"m 1013 964 l 1078 964 l 715 507 l 1096 0 l 1038 0 l 672 481 b 579 481 672 481 629 481 l 579 0 l 528 0 l 528 481 b 436 481 478 481 436 481 l 68 0 l 11 0 l 390 507 b 29 964 392 507 29 964 l 96 964 l 433 531 l 528 531 l 528 964 l 579 964 l 579 531 l 672 531 "},"\\xD0\\x97":{ha:772,x_min:0,x_max:0,o:"m 717 256 b 379 -17 717 106 608 -17 b 29 274 169 -17 36 92 l 81 274 b 379 32 85 136 171 32 b 665 256 574 32 665 125 b 421 481 665 408 576 481 l 315 481 l 315 531 l 414 531 b 638 731 558 531 638 601 b 382 939 638 858 540 939 b 119 731 244 939 124 876 l 68 731 b 382 988 71 865 176 988 b 689 731 599 988 689 853 b 549 510 689 610 635 544 b 717 256 665 478 717 378 "},"\\xD0\\x98":{ha:985,x_min:0,x_max:0,o:"m 167 964 l 167 71 l 811 964 l 869 964 l 869 0 l 818 0 l 818 893 l 174 0 l 115 0 l 115 964 "},"\\xD0\\x99":{ha:985,x_min:0,x_max:0,o:"m 683 1215 b 503 1071 663 1126 594 1071 b 321 1215 410 1071 342 1126 l 372 1215 b 503 1119 390 1153 435 1119 b 632 1215 569 1119 614 1153 l 683 1215 m 167 964 l 167 71 l 811 964 l 869 964 l 869 0 l 818 0 l 818 893 l 174 0 l 115 0 l 115 964 "},"\\xD0\\x9A":{ha:818,x_min:0,x_max:0,o:"m 168 357 l 168 0 l 117 0 l 117 964 l 168 964 l 168 428 l 696 964 l 768 964 l 401 593 l 828 0 l 764 0 l 365 556 "},"\\xD0\\x9B":{ha:868,x_min:0,x_max:0,o:"m 64 0 l 11 0 l 276 964 l 592 964 l 857 0 l 804 0 l 553 913 l 315 913 "},"\\xD0\\x9C":{ha:1135,x_min:0,x_max:0,o:"m 1018 0 l 965 0 l 965 843 l 596 0 l 539 0 l 168 843 l 168 0 l 117 0 l 117 964 l 171 964 l 567 63 l 963 964 l 1018 964 "},"\\xD0\\x9D":{ha:983,x_min:0,x_max:0,o:"m 867 0 l 815 0 l 815 479 l 168 479 l 168 0 l 117 0 l 117 964 l 168 964 l 168 532 l 815 532 l 815 964 l 867 964 "},"\\xD0\\x9E":{ha:1039,x_min:0,x_max:0,o:"m 521 988 b 997 486 789 988 997 768 b 521 -17 997 208 783 -17 b 44 486 258 -17 44 208 b 521 988 44 763 258 988 m 521 35 b 944 486 756 35 944 238 b 521 936 944 739 758 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 "},"\\xD0\\x9F":{ha:956,x_min:0,x_max:0,o:"m 839 0 l 788 0 l 788 913 l 168 913 l 168 0 l 117 0 l 117 964 l 839 964 "},"\\xD0\\xA0":{ha:821,x_min:0,x_max:0,o:"m 788 697 b 506 429 788 539 672 429 l 168 429 l 168 0 l 117 0 l 117 964 l 501 964 b 788 697 678 964 788 861 m 736 697 b 501 913 736 833 650 913 l 168 913 l 168 481 l 506 481 b 736 697 621 481 736 549 "},"\\xD0\\xA1":{ha:1013,x_min:0,x_max:0,o:"m 965 306 b 521 -17 896 117 722 -17 b 44 486 257 -17 44 208 b 521 988 44 763 257 988 b 967 667 728 988 900 856 l 911 667 b 521 936 847 826 699 936 b 96 486 286 936 96 733 b 521 35 96 236 286 35 b 910 306 694 35 843 146 l 965 306 "},"\\xD0\\xA2":{ha:717,x_min:0,x_max:0,o:"m 385 913 l 385 0 l 333 0 l 333 913 l 10 913 l 10 964 l 710 964 l 710 913 "},"\\xD0\\xA3":{ha:747,x_min:0,x_max:0,o:"m 682 964 l 739 964 l 385 207 b 101 0 318 65 244 0 l 71 0 l 71 50 l 101 50 b 342 225 222 50 288 107 l 350 244 l 8 964 l 65 964 l 378 303 "},"\\xD0\\xA4":{ha:967,x_min:0,x_max:0,o:"m 517 875 b 926 486 765 875 926 701 b 517 97 926 272 761 97 l 508 97 l 508 0 l 457 0 l 457 97 l 449 97 b 40 486 204 97 40 271 b 449 875 40 699 204 875 l 457 875 l 457 964 l 508 964 l 508 875 m 508 149 l 517 149 b 875 486 739 149 875 300 b 517 824 875 674 740 824 l 508 824 m 457 824 l 449 824 b 92 486 226 824 92 671 b 449 149 92 299 226 149 l 457 149 "},"\\xD0\\xA5":{ha:744,x_min:0,x_max:0,o:"m 374 444 l 72 0 l 10 0 l 342 490 l 21 964 l 83 964 l 374 536 l 664 964 l 726 964 l 404 490 l 738 0 l 675 0 "},"\\xD0\\xA6":{ha:936,x_min:0,x_max:0,o:"m 761 964 l 813 964 l 813 51 l 886 51 l 886 -153 l 835 -153 l 835 0 l 117 0 l 117 964 l 168 964 l 168 51 l 761 51 "},"\\xD0\\xA7":{ha:821,x_min:0,x_max:0,o:"m 653 964 l 704 964 l 704 0 l 653 0 l 653 376 l 372 376 b 85 693 200 376 85 476 l 85 964 l 136 964 l 136 693 b 372 428 136 492 235 428 l 653 428 "},"\\xD0\\xA8":{ha:1246,x_min:0,x_max:0,o:"m 597 964 l 649 964 l 649 51 l 1078 51 l 1078 964 l 1129 964 l 1129 0 l 117 0 l 117 964 l 168 964 l 168 51 l 597 51 "},"\\xD0\\xA9":{ha:1253,x_min:0,x_max:0,o:"m 1078 964 l 1129 964 l 1129 51 l 1203 51 l 1203 -153 l 1151 -153 l 1151 0 l 117 0 l 117 964 l 168 964 l 168 51 l 597 51 l 597 964 l 649 964 l 649 51 l 1078 51 "},\\u00D0\\u00AA:{ha:1014,x_min:0,x_max:0,o:"m 965 267 b 686 0 965 110 851 0 l 303 0 l 303 913 l 10 913 l 10 964 l 354 964 l 354 532 l 686 532 b 965 267 851 532 965 422 m 914 267 b 686 481 914 421 800 481 l 354 481 l 354 51 l 686 51 b 914 267 800 51 914 113 "},"\\xD0\\xAB":{ha:1032,x_min:0,x_max:0,o:"m 864 0 l 864 964 l 915 964 l 915 0 m 751 267 b 472 0 751 110 638 0 l 117 0 l 117 964 l 168 964 l 168 532 l 472 532 b 751 267 638 532 751 422 m 700 267 b 472 481 700 421 586 481 l 168 481 l 168 51 l 472 51 b 700 267 586 51 700 113 "},"\\xD0\\xAC":{ha:846,x_min:0,x_max:0,o:"m 800 267 b 521 0 800 110 686 0 l 117 0 l 117 964 l 168 964 l 168 532 l 521 532 b 800 267 686 532 800 422 m 749 267 b 521 481 749 421 635 481 l 168 481 l 168 51 l 521 51 b 749 267 635 51 749 113 "},"\\xD0\\xAD":{ha:1013,x_min:0,x_max:0,o:"m 415 463 l 415 513 l 917 513 b 497 936 904 754 724 936 b 101 667 319 936 165 826 l 46 667 b 497 988 113 856 290 988 b 968 486 761 988 968 771 b 497 -17 968 200 761 -17 b 47 306 296 -17 117 117 l 103 306 b 497 35 169 146 324 35 b 917 463 725 35 906 217 "},"\\xD0\\xAE":{ha:1333,x_min:0,x_max:0,o:"m 168 469 l 168 0 l 117 0 l 117 964 l 168 964 l 168 521 l 393 521 b 840 988 408 786 599 988 b 1289 486 1097 988 1289 774 b 840 -17 1289 203 1093 -17 b 392 469 593 -17 400 194 m 840 35 b 1236 486 1072 35 1236 238 b 840 936 1236 739 1075 936 b 443 486 608 936 443 733 b 840 35 443 236 608 35 "},"\\xD0\\xAF":{ha:878,x_min:0,x_max:0,o:"m 101 244 b 233 456 101 351 149 424 b 72 697 135 494 72 582 b 360 964 72 861 182 964 l 765 964 l 765 0 l 714 0 l 714 431 l 357 431 b 153 244 264 431 153 397 l 153 104 b 133 0 153 60 146 26 l 81 0 b 101 117 92 28 101 81 m 714 481 l 714 913 l 360 913 b 125 697 210 913 125 833 b 354 481 125 549 240 481 "},"\\xD0\\xB0":{ha:760,x_min:0,x_max:0,o:"m 631 0 b 611 104 618 26 611 60 l 611 118 b 303 -12 554 38 444 -12 b 43 188 178 -12 43 50 b 347 401 43 350 194 388 b 611 521 506 417 611 433 b 381 683 611 653 486 683 b 133 532 250 683 164 629 l 81 532 b 381 733 113 660 219 733 b 663 521 560 733 663 656 l 663 117 b 683 0 663 81 672 28 m 611 424 b 353 354 556 372 451 363 b 99 189 169 336 99 288 b 303 39 99 71 232 39 b 611 260 457 39 611 108 "},"\\xD0\\xB1":{ha:821,x_min:0,x_max:0,o:"m 71 664 b 408 1033 71 899 210 1033 l 535 1033 b 664 1057 593 1033 635 1044 l 664 1004 b 542 982 636 990 601 982 l 408 982 b 122 663 236 982 122 872 l 122 539 b 428 733 182 653 296 733 b 785 356 625 733 785 564 b 428 -17 785 150 625 -17 b 71 357 231 -17 71 150 l 71 664 m 733 356 b 428 683 733 535 596 683 b 122 356 260 683 122 535 b 428 33 122 176 260 33 b 733 356 596 33 733 179 "},"\\xD0\\xB2":{ha:701,x_min:0,x_max:0,o:"m 515 386 b 643 207 600 358 643 292 b 414 0 643 64 547 0 l 101 0 l 101 715 l 406 715 b 611 532 526 715 611 654 b 515 386 611 457 578 410 m 406 411 b 560 532 513 411 560 446 b 406 665 560 624 497 665 l 153 665 l 153 411 m 153 50 l 414 50 b 592 207 517 50 592 94 b 414 363 592 296 538 363 l 153 363 "},"\\xD0\\xB3":{ha:611,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 581 715 l 581 665 l 153 665 "},"\\xD0\\xB4":{ha:761,x_min:0,x_max:0,o:"m 260 715 l 501 715 l 688 50 l 744 50 l 744 -133 l 693 -133 l 693 0 l 68 0 l 68 -133 l 17 -133 l 17 50 l 74 50 m 464 665 l 297 665 l 125 50 l 636 50 "},\\u00D0\\u00B5:{ha:789,x_min:0,x_max:0,o:"m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xD0\\xB6":{ha:885,x_min:0,x_max:0,o:"m 299 378 b 22 715 299 379 22 715 l 88 715 l 340 400 b 415 400 357 400 385 400 l 415 715 l 467 715 l 467 400 b 542 400 497 400 525 400 l 792 715 l 858 715 b 583 378 858 715 583 379 l 883 0 l 821 0 l 543 351 l 467 351 l 467 0 l 415 0 l 415 351 l 340 351 l 64 0 l 1 0 l 299 378 "},"\\xD0\\xB7":{ha:650,x_min:0,x_max:0,o:"m 465 383 b 597 197 553 358 597 289 b 328 -17 597 61 493 -17 b 25 218 124 -17 38 106 l 79 218 b 328 32 97 103 176 32 b 546 197 469 32 546 92 b 365 358 546 300 489 358 l 256 358 l 256 407 l 357 407 b 514 536 464 407 514 446 b 328 685 514 622 447 685 b 122 526 222 685 144 632 l 68 526 b 328 733 94 660 192 733 b 565 536 468 733 565 653 b 465 383 565 456 529 406 "},"\\xD0\\xB8":{ha:768,x_min:0,x_max:0,o:"m 101 715 l 153 715 l 153 69 l 610 715 l 667 715 l 667 0 l 615 0 l 615 646 l 158 0 l 101 0 "},"\\xD0\\xB9":{ha:768,x_min:0,x_max:0,o:"m 565 986 b 385 842 544 897 476 842 b 203 986 292 842 224 897 l 254 986 b 385 890 272 924 317 890 b 514 986 451 890 496 924 l 565 986 m 101 715 l 153 715 l 153 69 l 610 715 l 667 715 l 667 0 l 615 0 l 615 646 l 158 0 l 101 0 "},\\u00D0\\u00BA:{ha:694,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 153 715 l 153 272 l 576 715 l 646 715 l 375 436 l 681 0 l 619 0 l 339 397 b 153 206 339 399 200 254 "},"\\xD0\\xBB":{ha:682,x_min:0,x_max:0,o:"m 64 0 l 13 0 l 208 715 l 474 715 l 669 0 l 618 0 l 436 665 l 246 665 "},"\\xD0\\xBC":{ha:917,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 161 715 l 460 57 l 760 715 l 815 715 l 815 0 l 764 0 l 764 615 l 485 0 l 433 0 l 153 618 "},"\\xD0\\xBD":{ha:786,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 153 715 l 153 410 l 633 410 l 633 715 l 685 715 l 685 0 l 633 0 l 633 360 l 153 360 "},"\\xD0\\xBE":{ha:790,x_min:0,x_max:0,o:"m 394 733 b 753 356 592 733 753 564 b 394 -17 753 150 592 -17 b 38 356 199 -17 38 150 b 394 733 38 564 199 733 m 394 32 b 700 356 564 32 700 178 b 394 685 700 538 564 685 b 89 356 226 685 89 538 b 394 32 89 178 226 32 "},"\\xD0\\xBF":{ha:768,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 667 715 l 667 0 l 615 0 l 615 665 l 153 665 "},"\\xD1\\x80":{ha:846,x_min:0,x_max:0,o:"m 810 356 b 451 -17 810 150 649 -17 b 146 172 319 -17 206 60 l 146 -318 l 94 -318 l 94 715 l 146 715 l 146 542 b 451 733 206 656 319 733 b 810 356 649 733 810 564 m 757 356 b 451 681 757 535 621 681 b 146 356 283 681 146 535 b 451 35 146 179 283 35 b 757 356 621 35 757 179 "},"\\xD1\\x81":{ha:768,x_min:0,x_max:0,o:"m 726 222 b 396 -17 679 78 554 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 494 554 733 678 639 l 671 494 b 396 681 625 608 524 681 b 90 356 228 681 90 535 b 396 35 90 179 228 35 b 672 222 528 35 629 107 l 726 222 "},"\\xD1\\x82":{ha:607,x_min:0,x_max:0,o:"m 328 0 l 276 0 l 276 665 l 13 665 l 13 715 l 594 715 l 594 665 l 328 665 "},"\\xD1\\x83":{ha:618,x_min:0,x_max:0,o:"m 299 -104 b 21 -268 247 -240 147 -292 l 21 -219 b 250 -86 132 -236 207 -201 l 283 1 l 14 715 l 69 715 l 310 74 l 553 715 l 607 715 "},"\\xD1\\x84":{ha:804,x_min:0,x_max:0,o:"m 428 732 b 765 356 614 718 765 554 b 428 -15 765 160 614 -1 l 428 -318 l 376 -318 l 376 -15 b 39 356 192 -3 39 158 b 376 732 39 556 192 719 l 376 1033 l 428 1033 l 428 732 m 428 33 b 713 356 585 47 713 188 b 428 683 713 528 585 669 m 376 683 b 90 356 219 669 90 528 b 376 33 90 186 219 47 "},"\\xD1\\x85":{ha:600,x_min:0,x_max:0,o:"m 301 326 l 65 0 l 1 0 l 269 369 l 18 715 l 82 715 l 301 414 l 521 715 l 585 715 l 333 369 l 601 0 l 538 0 "},"\\xD1\\x86":{ha:758,x_min:0,x_max:0,o:"m 597 715 l 649 715 l 649 50 l 722 50 l 722 -133 l 671 -133 l 671 0 l 101 0 l 101 715 l 153 715 l 153 50 l 597 50 "},"\\xD1\\x87":{ha:682,x_min:0,x_max:0,o:"m 325 258 b 69 503 165 258 69 356 l 69 715 l 121 715 l 121 503 b 325 307 121 383 189 307 l 529 307 l 529 715 l 581 715 l 581 0 l 529 0 l 529 258 "},"\\xD1\\x88":{ha:1024,x_min:0,x_max:0,o:"m 485 715 l 536 715 l 536 50 l 871 50 l 871 715 l 922 715 l 922 0 l 101 0 l 101 715 l 153 715 l 153 50 l 485 50 "},"\\xD1\\x89":{ha:1032,x_min:0,x_max:0,o:"m 871 715 l 922 715 l 922 50 l 996 50 l 996 -133 l 944 -133 l 944 0 l 101 0 l 101 715 l 153 715 l 153 50 l 485 50 l 485 715 l 536 715 l 536 50 l 871 50 "},"\\xD1\\x8A":{ha:778,x_min:0,x_max:0,o:"m 504 413 b 733 207 638 413 733 344 b 504 0 733 69 638 0 l 225 0 l 225 665 l 13 665 l 13 715 l 276 715 l 276 413 m 276 50 l 504 50 b 682 207 607 50 682 94 b 504 363 682 321 607 363 l 276 363 "},"\\xD1\\x8B":{ha:831,x_min:0,x_max:0,o:"m 678 715 l 729 715 l 729 0 l 678 0 m 350 413 b 579 207 483 413 579 344 b 350 0 579 69 483 0 l 101 0 l 101 715 l 153 715 l 153 413 m 153 50 l 350 50 b 528 207 453 50 528 94 b 350 363 528 321 453 363 l 153 363 "},"\\xD1\\x8C":{ha:688,x_min:0,x_max:0,o:"m 414 413 b 643 207 547 413 643 344 b 414 0 643 69 547 0 l 101 0 l 101 715 l 153 715 l 153 413 m 153 50 l 414 50 b 592 207 517 50 592 94 b 414 363 592 321 517 363 l 153 363 "},"\\xD1\\x8D":{ha:768,x_min:0,x_max:0,o:"m 288 338 l 288 388 l 676 388 b 381 681 663 551 538 681 b 97 494 251 681 143 608 l 42 494 b 381 733 90 639 221 733 b 729 356 576 733 729 564 b 381 -17 729 150 576 -17 b 42 222 221 -17 89 78 l 96 222 b 381 35 139 107 247 35 b 678 338 542 35 668 169 "},"\\xD1\\x8E":{ha:1036,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 153 715 l 153 396 l 319 396 b 654 733 338 585 482 733 b 992 356 840 733 992 564 b 654 -17 992 150 840 -17 b 318 346 472 -17 324 144 l 153 346 m 654 32 b 939 356 815 32 939 178 b 654 685 939 538 815 685 b 369 356 494 685 369 538 b 654 32 369 178 494 32 "},"\\xD1\\x8F":{ha:725,x_min:0,x_max:0,o:"m 179 340 b 71 514 106 371 71 436 b 300 715 71 657 172 715 l 624 715 l 624 0 l 572 0 l 572 314 l 292 314 b 131 167 169 314 131 268 l 131 111 b 110 0 131 63 124 29 l 57 0 b 79 117 69 28 79 79 l 79 167 b 179 340 79 265 113 319 m 572 665 l 300 665 b 122 514 197 665 122 626 b 300 364 122 401 197 364 l 572 364 "},"\\xD1\\x91":{ha:789,x_min:0,x_max:0,o:"m 464 826 l 464 922 l 529 922 l 529 826 m 275 826 l 275 922 l 340 922 l 340 826 m 90 358 b 404 35 92 172 231 35 b 683 222 572 35 649 128 l 738 222 b 404 -17 688 68 572 -17 b 39 356 200 -17 39 147 b 396 733 39 564 199 733 b 753 358 610 733 756 539 m 697 410 b 396 681 672 564 546 681 b 96 410 244 681 119 564 "},"\\xD1\\x92":{ha:796,x_min:0,x_max:0,o:"m 14 860 l 14 911 l 101 911 l 101 1033 l 153 1033 l 153 911 l 425 911 l 425 860 l 153 860 l 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 l 703 -111 b 513 -318 703 -260 618 -318 l 449 -318 l 449 -268 l 513 -268 b 651 -111 610 -268 651 -211 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 860 "},"\\xD1\\x93":{ha:594,x_min:0,x_max:0,o:"m 360 824 l 301 824 l 418 965 l 485 965 m 153 0 l 101 0 l 101 715 l 564 715 l 564 665 l 153 665 "},"\\xD1\\x94":{ha:768,x_min:0,x_max:0,o:"m 90 338 b 396 35 100 169 233 35 b 672 222 528 35 629 107 l 726 222 b 396 -17 679 78 554 -17 b 39 356 199 -17 39 150 b 396 733 39 564 199 733 b 726 494 554 733 678 639 l 671 494 b 396 681 625 608 524 681 b 92 388 238 681 107 551 l 481 388 l 481 338 l 90 338 "},"\\xD1\\x95":{ha:710,x_min:0,x_max:0,o:"m 664 203 b 614 67 665 153 649 103 b 378 -17 563 14 478 -17 b 46 208 197 -17 69 63 l 97 208 b 376 32 122 93 225 32 b 576 103 463 32 535 60 b 611 201 601 129 614 164 b 363 358 608 289 538 333 b 83 539 239 376 86 397 b 354 733 83 636 175 733 b 647 533 513 733 617 663 l 594 533 b 356 685 565 629 483 685 b 136 539 226 685 135 622 b 371 408 138 457 213 431 b 664 203 519 386 657 347 "},"\\xD1\\x96":{ha:265,x_min:0,x_max:0,o:"m 160 836 l 108 836 l 108 964 l 160 964 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xD1\\x97":{ha:265,x_min:0,x_max:0,o:"m 183 826 l 183 922 l 249 922 l 249 826 m 15 826 l 15 922 l 81 922 l 81 826 m 160 0 l 108 0 l 108 715 l 160 715 "},"\\xD1\\x98":{ha:253,x_min:0,x_max:0,o:"m 153 836 l 101 836 l 101 964 l 153 964 m 153 -137 b 103 -279 153 -201 136 -249 b -33 -317 71 -310 26 -324 l -33 -267 b 68 -242 14 -271 46 -261 b 101 -137 90 -221 101 -186 l 101 715 l 153 715 "},"\\xD1\\x99":{ha:1090,x_min:0,x_max:0,o:"m 817 413 b 1046 207 950 413 1046 344 b 817 0 1046 69 950 0 l 539 0 l 539 665 l 246 665 l 64 0 l 13 0 l 208 715 l 590 715 l 590 413 m 590 50 l 817 50 b 994 207 919 50 994 94 b 817 363 994 321 919 363 l 590 363 "},"\\xD1\\x9A":{ha:1111,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 153 715 l 153 413 l 560 413 l 560 715 l 611 715 l 611 413 l 838 413 b 1067 207 971 413 1067 344 b 838 0 1067 69 971 0 l 560 0 l 560 363 l 153 363 m 611 50 l 838 50 b 1015 207 940 50 1015 94 b 838 363 1015 321 940 363 l 611 363 "},"\\xD1\\x9B":{ha:796,x_min:0,x_max:0,o:"m 153 594 b 411 733 204 679 297 733 b 703 432 594 733 703 618 l 703 0 l 651 0 l 651 432 b 410 683 651 589 567 683 b 153 432 265 683 153 576 l 153 0 l 101 0 l 101 860 l 14 860 l 14 911 l 101 911 l 101 1033 l 153 1033 l 153 911 l 425 911 l 425 860 l 153 860 "},"\\xD1\\x9C":{ha:694,x_min:0,x_max:0,o:"m 153 0 l 101 0 l 101 715 l 153 715 l 153 272 l 576 715 l 646 715 l 375 436 l 681 0 l 619 0 l 339 397 b 153 206 339 399 200 254 m 383 824 l 325 824 l 442 965 l 508 965 "},"\\xD1\\x9E":{ha:618,x_min:0,x_max:0,o:"m 494 986 b 314 842 474 897 406 842 b 132 986 221 842 153 897 l 183 986 b 314 890 201 924 246 890 b 443 986 381 890 425 924 l 494 986 m 299 -104 b 21 -268 247 -240 147 -292 l 21 -219 b 250 -86 132 -236 207 -201 l 283 1 l 14 715 l 69 715 l 310 74 l 553 715 l 607 715 "},"\\xD1\\x9F":{ha:754,x_min:0,x_max:0,o:"m 403 -133 l 351 -133 l 351 0 l 101 0 l 101 715 l 153 715 l 153 50 l 601 50 l 601 715 l 653 715 l 653 0 l 403 0 "},"\\xD2\\x90":{ha:753,x_min:0,x_max:0,o:"m 663 1115 l 714 1115 l 714 913 l 168 913 l 168 0 l 117 0 l 117 964 l 663 964 "},"\\xD2\\x91":{ha:622,x_min:0,x_max:0,o:"m 535 715 l 535 849 l 586 849 l 586 665 l 153 665 l 153 0 l 101 0 l 101 715 "},"\\xE2\\x84\\x96":{ha:1547,x_min:0,x_max:0,o:"m 1222 419 b 950 701 1072 419 950 546 b 1222 985 950 857 1072 985 b 1492 701 1372 985 1492 857 b 1222 419 1492 546 1372 419 m 829 0 l 771 0 l 168 881 l 168 0 l 117 0 l 117 964 l 175 964 l 778 83 l 778 964 l 829 964 m 993 222 l 993 274 l 1438 274 l 1438 222 m 993 0 l 993 51 l 1438 51 l 1438 0 m 1222 935 b 1001 701 1097 935 1001 829 b 1222 469 1001 574 1097 469 b 1440 701 1347 469 1440 574 b 1222 935 1440 829 1347 935 "},"\\xC3\\x90":{ha:926,x_min:0,x_max:0,o:"m 885 483 b 454 0 885 186 719 0 l 107 0 l 107 504 l 21 504 l 21 556 l 107 556 l 107 964 l 454 964 b 885 483 724 964 885 785 m 832 483 b 454 913 832 757 694 913 l 158 913 l 158 556 l 485 556 l 485 504 l 158 504 l 158 51 l 454 51 b 832 483 692 51 832 214 "}},familyName:"Chalet-ParisNineteenSixty",ascender:1042,descender:-236,underlinePosition:-75,underlineThickness:50,boundingBox:{yMin:-252,xMin:-41,yMax:927,xMax:1141},resolution:1e3,original_font_information:{format:0,copyright:"Copyright (C) 2000-2005, House Industries/Brand Design Co. Inc. All rights reserved.",fontFamily:"Chalet-ParisNineteenSixty",fontSubfamily:"Regular",uniqueID:"2.001;HOUS;Chalet-ParisNineteenSixty",fullName:"Chalet-ParisNineteenSixty",version:"Version 2.001;PS 002.000;hotconv 1.0.38",postScriptName:"Chalet-ParisNineteenSixty",trademark:"Chalet-ParisNineteenSixty is a trademark of House Industries.",manufacturer:"House Industries",designer:"House Industries",description:"Part of the Chalet collection from House Industries.",manufacturerURL:"http://www.houseind.com/",designerURL:"http://www.houseind.com/",licence:\`House Industries Font Software License Agreement
|