@eid-easy/eideasy-widget 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,4 +20,4 @@ function n(e){const t=Object.create(null);for(const n of e.split(","))t[n]=1;ret
|
|
|
20
20
|
* Signature Pad v5.1.0 | https://github.com/szimek/signature_pad
|
|
21
21
|
* (c) 2025 Szymon Nowak | Released under the MIT license
|
|
22
22
|
*/
|
|
23
|
-
var Mm=class{constructor(e,n,i,a){if(t(this,"x"),t(this,"y"),t(this,"pressure"),t(this,"time"),isNaN(e)||isNaN(n))throw new Error(`Point is invalid: (${e}, ${n})`);this.x=+e,this.y=+n,this.pressure=i||0,this.time=a||Date.now()}distanceTo(e){return Math.sqrt(Math.pow(this.x-e.x,2)+Math.pow(this.y-e.y,2))}equals(e){return this.x===e.x&&this.y===e.y&&this.pressure===e.pressure&&this.time===e.time}velocityFrom(e){return this.time!==e.time?this.distanceTo(e)/(this.time-e.time):0}},Sm=class e{constructor(e,t,n,i,a,o){this.startPoint=e,this.control2=t,this.control1=n,this.endPoint=i,this.startWidth=a,this.endWidth=o}static fromPoints(t,n){const i=this.calculateControlPoints(t[0],t[1],t[2]).c2,a=this.calculateControlPoints(t[1],t[2],t[3]).c1;return new e(t[1],i,a,t[2],n.start,n.end)}static calculateControlPoints(e,t,n){const i=e.x-t.x,a=e.y-t.y,o=t.x-n.x,r=t.y-n.y,s=(e.x+t.x)/2,l=(e.y+t.y)/2,c=(t.x+n.x)/2,d=(t.y+n.y)/2,u=Math.sqrt(i*i+a*a),C=Math.sqrt(o*o+r*r),p=u+C==0?0:C/(u+C),h=c+(s-c)*p,g=d+(l-d)*p,f=t.x-h,m=t.y-g;return{c1:new Mm(s+f,l+m),c2:new Mm(c+f,d+m)}}length(){let e,t,n=0;for(let i=0;i<=10;i+=1){const a=i/10,o=this.point(a,this.startPoint.x,this.control1.x,this.control2.x,this.endPoint.x),r=this.point(a,this.startPoint.y,this.control1.y,this.control2.y,this.endPoint.y);if(i>0){const i=o-e,a=r-t;n+=Math.sqrt(i*i+a*a)}e=o,t=r}return n}point(e,t,n,i,a){return t*(1-e)*(1-e)*(1-e)+3*n*(1-e)*(1-e)*e+3*i*(1-e)*e*e+a*e*e*e}},wm=class{constructor(){t(this,"_et");try{this._et=new EventTarget}catch{this._et=document}}addEventListener(e,t,n){this._et.addEventListener(e,t,n)}dispatchEvent(e){return this._et.dispatchEvent(e)}removeEventListener(e,t,n){this._et.removeEventListener(e,t,n)}};var Am=class e extends wm{constructor(n,i={}){super(),t(this,"dotSize"),t(this,"minWidth"),t(this,"maxWidth"),t(this,"penColor"),t(this,"minDistance"),t(this,"velocityFilterWeight"),t(this,"compositeOperation"),t(this,"backgroundColor"),t(this,"throttle"),t(this,"canvasContextOptions"),t(this,"_ctx"),t(this,"_drawingStroke",!1),t(this,"_isEmpty",!0),t(this,"_dataUrl"),t(this,"_dataUrlOptions"),t(this,"_lastPoints",[]),t(this,"_data",[]),t(this,"_lastVelocity",0),t(this,"_lastWidth",0),t(this,"_strokeMoveUpdate"),t(this,"_strokePointerId"),this.canvas=n,this.velocityFilterWeight=i.velocityFilterWeight||.7,this.minWidth=i.minWidth||.5,this.maxWidth=i.maxWidth||2.5,this.throttle=i.throttle??16,this.minDistance=i.minDistance??5,this.dotSize=i.dotSize||0,this.penColor=i.penColor||"black",this.backgroundColor=i.backgroundColor||"rgba(0,0,0,0)",this.compositeOperation=i.compositeOperation||"source-over",this.canvasContextOptions=i.canvasContextOptions??{},this._strokeMoveUpdate=this.throttle?function(e,t=250){let n,i,a,o=0,r=null;const s=()=>{o=Date.now(),r=null,n=e.apply(i,a),r||(i=null,a=[])};return function(...l){const c=Date.now(),d=t-(c-o);return i=this,a=l,d<=0||d>t?(r&&(clearTimeout(r),r=null),o=c,n=e.apply(i,a),r||(i=null,a=[])):r||(r=window.setTimeout(s,d)),n}}(e.prototype._strokeUpdate,this.throttle):e.prototype._strokeUpdate,this._handleMouseDown=this._handleMouseDown.bind(this),this._handleMouseMove=this._handleMouseMove.bind(this),this._handleMouseUp=this._handleMouseUp.bind(this),this._handleTouchStart=this._handleTouchStart.bind(this),this._handleTouchMove=this._handleTouchMove.bind(this),this._handleTouchEnd=this._handleTouchEnd.bind(this),this._handlePointerDown=this._handlePointerDown.bind(this),this._handlePointerMove=this._handlePointerMove.bind(this),this._handlePointerUp=this._handlePointerUp.bind(this),this._ctx=n.getContext("2d",this.canvasContextOptions),this.clear(),this.on()}clear(){const{_ctx:e,canvas:t}=this;e.fillStyle=this.backgroundColor,e.clearRect(0,0,t.width,t.height),e.fillRect(0,0,t.width,t.height),this._data=[],this._reset(this._getPointGroupOptions()),this._isEmpty=!0,this._dataUrl=void 0,this._dataUrlOptions=void 0,this._strokePointerId=void 0}redraw(){const e=this._data,t=this._dataUrl,n=this._dataUrlOptions;this.clear(),t&&this.fromDataURL(t,n),this.fromData(e,{clear:!1})}fromDataURL(e,t={}){return new Promise((n,i)=>{const a=new Image,o=t.ratio||window.devicePixelRatio||1,r=t.width||this.canvas.width/o,s=t.height||this.canvas.height/o,l=t.xOffset||0,c=t.yOffset||0;this._reset(this._getPointGroupOptions()),a.onload=()=>{this._ctx.drawImage(a,l,c,r,s),n()},a.onerror=e=>{i(e)},a.crossOrigin="anonymous",a.src=e,this._isEmpty=!1,this._dataUrl=e,this._dataUrlOptions={...t}})}toDataURL(e="image/png",t){return"image/svg+xml"===e?("object"!=typeof t&&(t=void 0),`data:image/svg+xml;base64,${btoa(this.toSVG(t))}`):("number"!=typeof t&&(t=void 0),this.canvas.toDataURL(e,t))}on(){this.canvas.style.touchAction="none",this.canvas.style.msTouchAction="none",this.canvas.style.userSelect="none";const e=/Macintosh/.test(navigator.userAgent)&&"ontouchstart"in document;window.PointerEvent&&!e?this._handlePointerEvents():(this._handleMouseEvents(),"ontouchstart"in window&&this._handleTouchEvents())}off(){this.canvas.style.touchAction="auto",this.canvas.style.msTouchAction="auto",this.canvas.style.userSelect="auto",this.canvas.removeEventListener("pointerdown",this._handlePointerDown),this.canvas.removeEventListener("mousedown",this._handleMouseDown),this.canvas.removeEventListener("touchstart",this._handleTouchStart),this._removeMoveUpEventListeners()}_getListenerFunctions(){const e=window.document===this.canvas.ownerDocument?window:this.canvas.ownerDocument.defaultView??this.canvas.ownerDocument;return{addEventListener:e.addEventListener.bind(e),removeEventListener:e.removeEventListener.bind(e)}}_removeMoveUpEventListeners(){const{removeEventListener:e}=this._getListenerFunctions();e("pointermove",this._handlePointerMove),e("pointerup",this._handlePointerUp),e("mousemove",this._handleMouseMove),e("mouseup",this._handleMouseUp),e("touchmove",this._handleTouchMove),e("touchend",this._handleTouchEnd)}isEmpty(){return this._isEmpty}fromData(e,{clear:t=!0}={}){t&&this.clear(),this._fromData(e,this._drawCurve.bind(this),this._drawDot.bind(this)),this._data=this._data.concat(e)}toData(){return this._data}_isLeftButtonPressed(e,t){return t?1===e.buttons:!(1&~e.buttons)}_pointerEventToSignatureEvent(e){return{event:e,type:e.type,x:e.clientX,y:e.clientY,pressure:"pressure"in e?e.pressure:0}}_touchEventToSignatureEvent(e){const t=e.changedTouches[0];return{event:e,type:e.type,x:t.clientX,y:t.clientY,pressure:t.force}}_handleMouseDown(e){this._isLeftButtonPressed(e,!0)&&!this._drawingStroke&&this._strokeBegin(this._pointerEventToSignatureEvent(e))}_handleMouseMove(e){this._isLeftButtonPressed(e,!0)&&this._drawingStroke?this._strokeMoveUpdate(this._pointerEventToSignatureEvent(e)):this._strokeEnd(this._pointerEventToSignatureEvent(e),!1)}_handleMouseUp(e){this._isLeftButtonPressed(e)||this._strokeEnd(this._pointerEventToSignatureEvent(e))}_handleTouchStart(e){1!==e.targetTouches.length||this._drawingStroke||(e.cancelable&&e.preventDefault(),this._strokeBegin(this._touchEventToSignatureEvent(e)))}_handleTouchMove(e){1===e.targetTouches.length&&(e.cancelable&&e.preventDefault(),this._drawingStroke?this._strokeMoveUpdate(this._touchEventToSignatureEvent(e)):this._strokeEnd(this._touchEventToSignatureEvent(e),!1))}_handleTouchEnd(e){0===e.targetTouches.length&&(e.cancelable&&e.preventDefault(),this._strokeEnd(this._touchEventToSignatureEvent(e)))}_getPointerId(e){return e.persistentDeviceId||e.pointerId}_allowPointerId(e,t=!1){return void 0===this._strokePointerId?t:this._getPointerId(e)===this._strokePointerId}_handlePointerDown(e){!this._drawingStroke&&this._isLeftButtonPressed(e)&&this._allowPointerId(e,!0)&&(this._strokePointerId=this._getPointerId(e),e.preventDefault(),this._strokeBegin(this._pointerEventToSignatureEvent(e)))}_handlePointerMove(e){this._allowPointerId(e)&&(this._isLeftButtonPressed(e,!0)&&this._drawingStroke?(e.preventDefault(),this._strokeMoveUpdate(this._pointerEventToSignatureEvent(e))):this._strokeEnd(this._pointerEventToSignatureEvent(e),!1))}_handlePointerUp(e){!this._isLeftButtonPressed(e)&&this._allowPointerId(e)&&(e.preventDefault(),this._strokeEnd(this._pointerEventToSignatureEvent(e)))}_getPointGroupOptions(e){return{penColor:e&&"penColor"in e?e.penColor:this.penColor,dotSize:e&&"dotSize"in e?e.dotSize:this.dotSize,minWidth:e&&"minWidth"in e?e.minWidth:this.minWidth,maxWidth:e&&"maxWidth"in e?e.maxWidth:this.maxWidth,velocityFilterWeight:e&&"velocityFilterWeight"in e?e.velocityFilterWeight:this.velocityFilterWeight,compositeOperation:e&&"compositeOperation"in e?e.compositeOperation:this.compositeOperation}}_strokeBegin(e){if(!this.dispatchEvent(new CustomEvent("beginStroke",{detail:e,cancelable:!0})))return;const{addEventListener:t}=this._getListenerFunctions();switch(e.event.type){case"mousedown":t("mousemove",this._handleMouseMove,{passive:!1}),t("mouseup",this._handleMouseUp,{passive:!1});break;case"touchstart":t("touchmove",this._handleTouchMove,{passive:!1}),t("touchend",this._handleTouchEnd,{passive:!1});break;case"pointerdown":t("pointermove",this._handlePointerMove,{passive:!1}),t("pointerup",this._handlePointerUp,{passive:!1})}this._drawingStroke=!0;const n=this._getPointGroupOptions(),i={...n,points:[]};this._data.push(i),this._reset(n),this._strokeUpdate(e)}_strokeUpdate(e){if(!this._drawingStroke)return;if(0===this._data.length)return void this._strokeBegin(e);this.dispatchEvent(new CustomEvent("beforeUpdateStroke",{detail:e}));const t=this._createPoint(e.x,e.y,e.pressure),n=this._data[this._data.length-1],i=n.points,a=i.length>0&&i[i.length-1],o=!!a&&t.distanceTo(a)<=this.minDistance,r=this._getPointGroupOptions(n);if(!a||!a||!o){const e=this._addPoint(t,r);a?e&&this._drawCurve(e,r):this._drawDot(t,r),i.push({time:t.time,x:t.x,y:t.y,pressure:t.pressure})}this.dispatchEvent(new CustomEvent("afterUpdateStroke",{detail:e}))}_strokeEnd(e,t=!0){this._removeMoveUpEventListeners(),this._drawingStroke&&(t&&this._strokeUpdate(e),this._drawingStroke=!1,this._strokePointerId=void 0,this.dispatchEvent(new CustomEvent("endStroke",{detail:e})))}_handlePointerEvents(){this._drawingStroke=!1,this.canvas.addEventListener("pointerdown",this._handlePointerDown,{passive:!1})}_handleMouseEvents(){this._drawingStroke=!1,this.canvas.addEventListener("mousedown",this._handleMouseDown,{passive:!1})}_handleTouchEvents(){this.canvas.addEventListener("touchstart",this._handleTouchStart,{passive:!1})}_reset(e){this._lastPoints=[],this._lastVelocity=0,this._lastWidth=(e.minWidth+e.maxWidth)/2,this._ctx.fillStyle=e.penColor,this._ctx.globalCompositeOperation=e.compositeOperation}_createPoint(e,t,n){const i=this.canvas.getBoundingClientRect();return new Mm(e-i.left,t-i.top,n,(new Date).getTime())}_addPoint(e,t){const{_lastPoints:n}=this;if(n.push(e),n.length>2){3===n.length&&n.unshift(n[0]);const e=this._calculateCurveWidths(n[1],n[2],t),i=Sm.fromPoints(n,e);return n.shift(),i}return null}_calculateCurveWidths(e,t,n){const i=n.velocityFilterWeight*t.velocityFrom(e)+(1-n.velocityFilterWeight)*this._lastVelocity,a=this._strokeWidth(i,n),o={end:a,start:this._lastWidth};return this._lastVelocity=i,this._lastWidth=a,o}_strokeWidth(e,t){return Math.max(t.maxWidth/(e+1),t.minWidth)}_drawCurveSegment(e,t,n){const i=this._ctx;i.moveTo(e,t),i.arc(e,t,n,0,2*Math.PI,!1),this._isEmpty=!1}_drawCurve(e,t){const n=this._ctx,i=e.endWidth-e.startWidth,a=2*Math.ceil(e.length());n.beginPath(),n.fillStyle=t.penColor;for(let o=0;o<a;o+=1){const n=o/a,r=n*n,s=r*n,l=1-n,c=l*l,d=c*l;let u=d*e.startPoint.x;u+=3*c*n*e.control1.x,u+=3*l*r*e.control2.x,u+=s*e.endPoint.x;let C=d*e.startPoint.y;C+=3*c*n*e.control1.y,C+=3*l*r*e.control2.y,C+=s*e.endPoint.y;const p=Math.min(e.startWidth+s*i,t.maxWidth);this._drawCurveSegment(u,C,p)}n.closePath(),n.fill()}_drawDot(e,t){const n=this._ctx,i=t.dotSize>0?t.dotSize:(t.minWidth+t.maxWidth)/2;n.beginPath(),this._drawCurveSegment(e.x,e.y,i),n.closePath(),n.fillStyle=t.penColor,n.fill()}_fromData(e,t,n){for(const i of e){const{points:e}=i,a=this._getPointGroupOptions(i);if(e.length>1)for(let n=0;n<e.length;n+=1){const i=e[n],o=new Mm(i.x,i.y,i.pressure,i.time);0===n&&this._reset(a);const r=this._addPoint(o,a);r&&t(r,a)}else this._reset(a),n(e[0],a)}}toSVG({includeBackgroundColor:e=!1,includeDataUrl:t=!1}={}){var n,i,a,o,r;const s=this._data,l=Math.max(window.devicePixelRatio||1,1),c=this.canvas.width/l,d=this.canvas.height/l,u=document.createElementNS("http://www.w3.org/2000/svg","svg");if(u.setAttribute("xmlns","http://www.w3.org/2000/svg"),u.setAttribute("xmlns:xlink","http://www.w3.org/1999/xlink"),u.setAttribute("viewBox",`0 0 ${c} ${d}`),u.setAttribute("width",c.toString()),u.setAttribute("height",d.toString()),e&&this.backgroundColor){const e=document.createElement("rect");e.setAttribute("width","100%"),e.setAttribute("height","100%"),e.setAttribute("fill",this.backgroundColor),u.appendChild(e)}if(t&&this._dataUrl){const e=(null==(n=this._dataUrlOptions)?void 0:n.ratio)||window.devicePixelRatio||1,t=(null==(i=this._dataUrlOptions)?void 0:i.width)||this.canvas.width/e,s=(null==(a=this._dataUrlOptions)?void 0:a.height)||this.canvas.height/e,l=(null==(o=this._dataUrlOptions)?void 0:o.xOffset)||0,c=(null==(r=this._dataUrlOptions)?void 0:r.yOffset)||0,d=document.createElement("image");d.setAttribute("x",l.toString()),d.setAttribute("y",c.toString()),d.setAttribute("width",t.toString()),d.setAttribute("height",s.toString()),d.setAttribute("preserveAspectRatio","none"),d.setAttribute("href",this._dataUrl),u.appendChild(d)}return this._fromData(s,(e,{penColor:t})=>{const n=document.createElement("path");if(!(isNaN(e.control1.x)||isNaN(e.control1.y)||isNaN(e.control2.x)||isNaN(e.control2.y))){const i=`M ${e.startPoint.x.toFixed(3)},${e.startPoint.y.toFixed(3)} C ${e.control1.x.toFixed(3)},${e.control1.y.toFixed(3)} ${e.control2.x.toFixed(3)},${e.control2.y.toFixed(3)} ${e.endPoint.x.toFixed(3)},${e.endPoint.y.toFixed(3)}`;n.setAttribute("d",i),n.setAttribute("stroke-width",(2.25*e.endWidth).toFixed(3)),n.setAttribute("stroke",t),n.setAttribute("fill","none"),n.setAttribute("stroke-linecap","round"),u.appendChild(n)}},(e,{penColor:t,dotSize:n,minWidth:i,maxWidth:a})=>{const o=document.createElement("circle"),r=n>0?n:(i+a)/2;o.setAttribute("r",r.toString()),o.setAttribute("cx",e.x.toString()),o.setAttribute("cy",e.y.toString()),o.setAttribute("fill",t),u.appendChild(o)}),u.outerHTML}};const bm={container:"_container_1rllt_2",canvasWrap:"_canvasWrap_1rllt_7",canvas:"_canvas_1rllt_7",clearButton:"_clearButton_1rllt_24",validationContainer:"_validationContainer_1rllt_28",validationMessage:"_validationMessage_1rllt_36",error:"_error_1rllt_50"};const Fm=oc({name:"SignaturePad",components:{AppButton:HC,FormFieldLabel:XC},data:()=>({signaturePad:null,errors:[]}),computed:{hasErrors(){return this.errors.length>0}},mounted(){this.initSignaturePad(),window.addEventListener("resize",this.resizeCanvas),this.resizeCanvas()},unmounted(){window.removeEventListener("resize",this.resizeCanvas)},methods:{initSignaturePad(){this.signaturePad=new Am(this.$refs.canvas,{backgroundColor:"rgb(255, 255, 255)"})},resizeCanvas(){const e=this.$refs.canvas,t=Math.max(window.devicePixelRatio||1,1);e.width=e.offsetWidth*t,e.height=e.offsetHeight*t,e.getContext("2d").scale(t,t),this.signaturePad.fromData(this.signaturePad.toData())},clear(){this.signaturePad.clear()},toDataURL(e){return this.signaturePad.toDataURL(e)},toData(){return this.signaturePad.toData()},isEmpty(){return this.signaturePad.isEmpty()},validate(){return this.errors=[],!this.signaturePad.isEmpty()||(this.errors.push(this.$t("this-field-is-required")),!1)}}},[["render",function(e,t,n,i,a,o){const r=Ci("FormFieldLabel"),s=Ci("AppButton");return Na(),Oa("div",{class:K(e.$style.signaturePad)},[Za(r,null,{default:gn(()=>[Wa(J(e.$t("Draw signature")),1)]),_:1}),Ka("div",{class:K(e.$style.canvasWrap)},[Ka("canvas",{ref:"canvas",class:K([e.$style.canvas,{[e.$style.error]:o.hasErrors}]),onClick:t[0]||(t[0]=(...e)=>o.validate&&o.validate(...e))},null,2)],2),o.hasErrors?(Na(),Oa("ul",{key:0,class:K(e.$style.validationContainer)},[(Na(!0),Oa(Ta,null,mi(a.errors,t=>(Na(),Oa("li",{key:t,class:K(e.$style.validationMessage)},J(t),3))),128))],2)):Qa("",!0),Ka("div",{class:K(e.$style.container)},[Za(s,{scheme:"secondary",class:K(e.$style.clearButton),"on-click":o.clear},{default:gn(()=>[Wa(J(e.$t("clear")),1)]),_:1},8,["class","on-click"])],2)],2)}],["__cssModules",{$style:bm}]]),_m={container:"_container_erqxk_2",line:"_line_erqxk_7",mb4:"_mb4_erqxk_11",mt4:"_mt4_erqxk_15",resendLink:"_resendLink_erqxk_19"},km={key:0},Im={class:"container"},Tm={key:1,class:"container"},Em={key:2,class:"container"},Lm={key:3},Bm={key:0},Dm="STEP_REQUEST_CODE",xm="STEP_ENTER_CODE",Nm="STEP_CONFIRM",zm=oc({__name:"SignatureOtp",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,endSignatureProcessing:s,loadingStart:l,loadingEnd:c,addFlashMessage:d,clearFlashMessages:u}=o,{inputValues:C,otpEmail:p,otpPhone:h,emailToken:g,isOtpSent:f,additionalMethodConfig:m,requireHandwrittenSignature:v}=ts(o),y=bt({}),M=bt({}),S=bt(null),w=bt(null),A=bt(null),b=bt(null),F=bt(null),_=bt(null);function k(){I(f.value?xm:Dm)}function I(e){w.value=S.value,S.value=e}const T=wo(()=>{const e=[];return h.value&&e.push(h.value),p.value&&e.push(p.value),[{type:"textSection",text:t.t("confirmation-code-will-be-sent-to")+" "+e.join(" & ")},{type:"submit",label:t.t("continue")}]}),E=wo(()=>{const e=[];return p.value&&e.push({type:g.value?"hidden":"text",name:"email_token",instructions:t.t("email-code-sent")+" "+p.value,label:t.t("your-code"),validation:["required"]}),h.value&&e.push({type:"text",name:"sms_token",instructions:t.t("sms-code-sent")+" "+h.value,label:t.t("your-code"),validation:["required"]}),e.length&&e.push({type:"submit",label:t.t("Sign")}),e}),L=wo({get:()=>({email_token:C.value.email_token,sms_token:C.value.sms_token}),set(e){r(e)}});function B(){if(v.value){if(!_.value.validate())return;b.value=_.value.toData(),A.value=_.value.toDataURL()}I(Nm)}function D(){I(Dm)}function x(){I(w.value)}function N(){z()}function z(){l(),u(),y.value={};const e=m.value||{};M.value=n.signature.otpSignature.start({emailToken:L.value.email_token,smsToken:L.value.sms_token,handwrittenSignatureData:b.value,handwrittenSignatureDataUrl:A.value,started:e=>{e.data&&e.data.token&&(c(),I(xm))},confirmationCodeRequest:(e,t)=>{F.value=t},fail:e=>{e.isCancel||(d(e),r({sms_token:"",email_token:""})),y.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{k(),s(),c()},...e})}return ni(()=>{k()}),oi(()=>{!function(){const{cancel:e}=M.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",null,[It(h)||It(p)?S.value===Nm?(Na(),Oa("div",Tm,[Za(ym,{"on-approve-confirm":N,"on-reject-confirm":x})])):S.value===Dm?(Na(),Oa("div",Em,[Za(up,{id:"requestCodeForm",schema:T.value,"on-submit":z,errors:y.value},null,8,["schema","errors"])])):(Na(),Oa("div",Lm,[Ka("div",{class:K(e.$style.container)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.mb4)},"Phone: "+J(It(h)),3)):Qa("",!0),It(p)?(Na(),Oa("div",{key:1,class:K(e.$style.mb4)},[t[2]||(t[2]=Wa(" Email: ")),Ka("b",null,J(It(p)),1)],2)):Qa("",!0)],2),E.value.length?(Na(),Oa("div",Bm,[It(v)?(Na(),Pa(Fm,{key:0,ref_key:"signaturePad",ref:_},null,512)):Qa("",!0),Ka("div",{class:K(e.$style.container)},[Za(up,{id:"otpSignatureForm",modelValue:L.value,"onUpdate:modelValue":t[0]||(t[0]=e=>L.value=e),schema:E.value,"on-submit":B,errors:y.value},null,8,["modelValue","schema","errors"]),Ka("div",{class:K(e.$style.mt4)},[Wa(J(e.$t("Didnt receive a code?"))+" ",1),Ka("a",{href:"#",class:K(e.$style.resendLink),onClick:kr(D,["prevent"])},J(e.$t("Resend")),3)],2)],2)])):Qa("",!0)])):(Na(),Oa("div",km,[Ka("div",Im,[Za(rc,{scheme:"danger"},{default:gn(()=>t[1]||(t[1]=[Wa(" Missing otpEmail or otpPhone ")])),_:1,__:[1]})])]))]))}},[["__cssModules",{$style:_m}]]),Vm={fill:"#000000",version:"1.1",id:"info-icon_svg__Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 416.979 416.979","xml:space":"preserve"};const Rm={render:function(e,t){return Na(),Oa("svg",Vm,t[0]||(t[0]=[Ka("g",null,[Ka("path",{d:"M356.004,61.156c-81.37-81.47-213.377-81.551-294.848-0.182c-81.47,81.371-81.552,213.379-0.181,294.85\n\t\tc81.369,81.47,213.378,81.551,294.849,0.181C437.293,274.636,437.375,142.626,356.004,61.156z M237.6,340.786\n\t\tc0,3.217-2.607,5.822-5.822,5.822h-46.576c-3.215,0-5.822-2.605-5.822-5.822V167.885c0-3.217,2.607-5.822,5.822-5.822h46.576\n\t\tc3.215,0,5.822,2.604,5.822,5.822V340.786z M208.49,137.901c-18.618,0-33.766-15.146-33.766-33.765\n\t\tc0-18.617,15.147-33.766,33.766-33.766c18.619,0,33.766,15.148,33.766,33.766C242.256,122.755,227.107,137.901,208.49,137.901z"})],-1)]))}},Om={mt4:"_mt4_10krr_2",formContainer:"_formContainer_10krr_6",label:"_label_10krr_11",highlight:"_highlight_10krr_16",infoIcon:"_infoIcon_10krr_21",infoSection:"_infoSection_10krr_27",iconWrap:"_iconWrap_10krr_34",infoLink:"_infoLink_10krr_40"},Pm={key:1},Um={__name:"SignatureEvrotrust",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(null),y=bt({});function M(){const{refresh:e}=y.value;e&&e()}const S=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:h.value+"00000000"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function A(){s(),d(),m.value={};const e={...w.value};e.phone=e.phone||"";const t=g.value||{};y.value=n.signature.evroTrustSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.transaction_id&&(v.value=e.data.transaction_id,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&A()}),oi(()=>{!function(){const{cancel:e}=y.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1}),Ka("div",{class:K(e.$style.mt4)},[Za(mp,{"on-click":M})],2)],2)):(Na(),Oa("div",Pm,[Za(up,{id:"smartIdSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":A,errors:m.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},Gm={$style:Om},jm=oc(Um,[["__cssModules",Gm]]),Hm={mt4:"_mt4_10krr_2",formContainer:"_formContainer_10krr_6",label:"_label_10krr_11",highlight:"_highlight_10krr_16",infoIcon:"_infoIcon_10krr_21",infoSection:"_infoSection_10krr_27",iconWrap:"_iconWrap_10krr_34",infoLink:"_infoLink_10krr_40"},Km={key:1},Zm={__name:"SignatureEvrotrustGeda",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(null),y=bt({});function M(){const{refresh:e}=y.value;e&&e()}const S=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:h.value+"00000000"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function A(){s(),d(),m.value={};const e={...w.value};e.phone=e.phone||"";const t=g.value||{};y.value=n.signature.evroTrustGedaSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.transaction_id&&(v.value=e.data.transaction_id,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&A()}),oi(()=>{!function(){const{cancel:e}=y.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1}),Ka("div",{class:K(e.$style.mt4)},[Za(mp,{"on-click":M})],2)],2)):(Na(),Oa("div",Km,[Za(up,{id:"evrotrustGedaSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":A,errors:m.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},qm={$style:Hm},Wm=oc(Zm,[["__cssModules",qm]]),Jm={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},Qm={key:1},Ym={__name:"SignatureDTrustSignMe",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username-or-email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.dTrustSignMeSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm)],2)):(Na(),Oa("div",Qm,[Za(up,{id:"dTrustSignMeSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info-2",{method:"D-trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://cloud.sign-me.de/signature/start",target:"_blank",rel:"noopener noreferrer"},J(e.$t("here")),3)])],2)],2))}},Xm={$style:Jm},$m=oc(Ym,[["__cssModules",Xm]]),ev={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},tv={key:1},nv={__name:"SignatureDTrustSignMeAdv",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username-or-email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.dTrustSignMeAdvSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm)],2)):(Na(),Oa("div",tv,[Za(up,{id:"dTrustSignMeAdvSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info-2",{method:"D-trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://cloud.sign-me.de/signature/start",target:"_blank",rel:"noopener noreferrer"},J(e.$t("here")),3)])],2)],2))}},iv={$style:ev},av=oc(nv,[["__cssModules",iv]]),ov={formContainer:"_formContainer_b77pi_2"},rv={key:0,class:"challenge"},sv={key:1},lv={key:2},cv="STEP_START",dv="STEP_CONFIRM",uv={__name:"SignatureChaveMovel",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt([]),v=bt(null),y=bt(null);v.value=cv;const M=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number")+", "+t.t("including-calling-code"),validation:["required"]},{type:"password",name:"signingPin",label:t.t("digital-signature-pin"),validation:["required"]},{type:"textSection",text:t.t("mobile-key-signing-info")},{type:"submit",label:t.t("Sign")}]),S=wo(()=>[{type:"password",name:"confirmationCode",label:t.t("enter-temp-security-code"),validation:["required"]},{type:"textSection",text:t.t("you-have-5-minutes-to-enter-the-code")},{type:"textSection",text:t.t("after-confirmation-following-docs-will-be-signed")+" "+m.value.map(e=>e.fileName).join(", ")+". "+t.t("signature-confirmation-irreversible-note")},{type:"textSection",text:t.t("mobile-key-signing-info")},{type:"submit",label:t.t("confirm")}]),w=wo({get:()=>({phone:C.value.phone,signingPin:C.value.signingPin}),set(e){r(e)}}),A=wo({get:()=>({confirmationCode:C.value.confirmationCode}),set(e){r(e)}});function b(){s(),d(),g.value={};const e={...w.value},t=h.value||{};f.value=n.signature.chaveMovelSignature.start({...e,started:e=>{e.data&&e.data.token&&(l(),m.value=e.data.files,v.value=dv)},confirmationCodeRequest:(e,t)=>{y.value=t},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=cv,r({confirmationCode:""}),u(),l()},...t})}function F(){s(),y.value(A.value.confirmationCode)}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",rv,[Za(pm)])):v.value===cv?(Na(),Oa("div",sv,[Za(up,{id:"chaveMovelUserCredentialsForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:M.value,"on-submit":b,errors:g.value},null,8,["modelValue","schema","errors"])])):v.value===dv?(Na(),Oa("div",lv,[Za(up,{id:"chaveMovelConfirmationForm",modelValue:A.value,"onUpdate:modelValue":t[1]||(t[1]=e=>A.value=e),schema:S.value,"on-submit":F,errors:g.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},Cv={$style:ov},pv=oc(uv,[["__cssModules",Cv]]),hv={formContainer:"_formContainer_b77pi_2"},gv={key:0,class:"challenge"},fv={key:1},mv={__name:"SignatureECertChile",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode,email:p.value.email}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.eCertChileSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",gv,[Za(pm)])):(Na(),Oa("div",fv,[Za(up,{id:"eCertChileSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},vv={$style:hv},yv=oc(mv,[["__cssModules",vv]]),Mv={formContainer:"_formContainer_b77pi_2"},Sv={key:0,class:"challenge"},wv={key:1},Av={__name:"SignatureNoBankId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"name",validation:["required"],label:t.t("name")},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({name:p.value.name}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.noBankIdAdvSignature.start({...e,started:()=>{u()},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",Sv,[Za(pm)])):(Na(),Oa("div",wv,[Za(up,{id:"noBankIdSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},bv={$style:Mv},Fv=oc(Av,[["__cssModules",bv]]),_v={formContainer:"_formContainer_b77pi_2"},kv={key:0,class:"challenge"},Iv={key:1},Tv={__name:"SignatureSpidQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"text",name:"phone",label:t.t("phone-number")+", "+t.t("including-calling-code"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({email:p.value.email,phone:p.value.phone}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.spidQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",kv,[Za(pm)])):(Na(),Oa("div",Iv,[Za(up,{id:"spidQesSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},Ev={$style:_v},Lv=oc(Tv,[["__cssModules",Ev]]),Bv={formContainer:"_formContainer_b77pi_2"},Dv={key:0,class:"userInstructions"},xv={key:1},Nv=oc({__name:"SignatureFrejaId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(),m=bt({});const v=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({email:p.value.email}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},o=h.value||{};m.value=n.signature.frejaSimpleSignature.start({...e,started:()=>{f.value=t.t("approve-sign-request-on-freja-app"),u(),l()},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...o})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Dv,[Za(gp,{"user-instructions":f.value},null,8,["user-instructions"])])):(Na(),Oa("div",xv,[Za(up,{id:"frejaSignatureIdForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:Bv}]]),zv={formContainer:"_formContainer_b77pi_2"},Vv={key:0,class:"challenge"},Rv={key:1},Ov=oc({__name:"SignatureAudkenni",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={},m.value=n.signature.audkenniQesSignature.start({...y.value,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...h})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Vv,[Za(gp,{challenge:f.value},null,8,["challenge"])])):(Na(),Oa("div",Rv,[Za(up,{id:"audkenniSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:zv}]]),Pv={formContainer:"_formContainer_b77pi_2"},Uv={key:0,class:"challenge"},Gv={key:1},jv={key:2},Hv="STEP_START",Kv="STEP_CONFIRM",Zv=oc({__name:"SignatureUanatacaQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt(null),v=bt(null);m.value=Hv;const y=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"password",label:t.t("password"),validation:["required"]},{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),M=wo({get:()=>({username:C.value.username??"",password:C.value.password??"",pin:C.value.pin??""}),set(e){r(e)}}),S=wo(()=>[{type:"password",name:"confirmationCode",label:t.t("your-sms-otp-code"),validation:["required"]},{type:"submit",label:t.t("confirm")}]),w=wo({get:()=>({confirmationCode:C.value.confirmationCode}),set(e){r(e)}});function A(){s(),d(),g.value={};const e={...M.value},t=h.value||{};f.value=n.signature.uanatacaQesSignature.start({...e,started:e=>{e.data&&e.data.token&&(l(),m.value=Kv)},confirmationCodeRequest:(e,t)=>{v.value=t},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=Hv,r({confirmationCode:""}),u(),l()},...t})}function b(){s(),v.value(w.value.confirmationCode)}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Uv,[Za(pm)])):m.value===Hv?(Na(),Oa("div",Gv,[Za(up,{id:"uanatacaQesSignatureForm",modelValue:M.value,"onUpdate:modelValue":t[0]||(t[0]=e=>M.value=e),schema:y.value,"on-submit":A,errors:g.value},null,8,["modelValue","schema","errors"])])):m.value===Kv?(Na(),Oa("div",jv,[Za(up,{id:"uanatacaQesSignatureConfirmationForm",modelValue:w.value,"onUpdate:modelValue":t[1]||(t[1]=e=>w.value=e),schema:S.value,"on-submit":b,errors:g.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},[["__cssModules",{$style:Pv}]]),qv={formContainer:"_formContainer_mv0un_2",label:"_label_mv0un_7"},Wv={key:0,class:"challenge"},Jv={key:1},Qv={key:2},Yv={class:"formContainer"},Xv="STEP_START",$v="STEP_CONFIRM",ey=oc({__name:"SignatureInfoCertQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h,mode:g}=ts(o),f=bt({}),m=bt({}),v=bt("STEP_START"),y=bt(null),M=bt(null);const S=wo(()=>[{type:"text",name:"userId",label:t.t("User ID"),validation:["required"],placeholder:"MA123456"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({userId:C.value.userId??"",password:C.value.password??"",pin:C.value.pin??""}),set(e){r(e)}}),A=wo(()=>[{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"text",name:"otp",label:t.t("otp"),validation:["required"]},{type:"submit",label:t.t("confirm")}]),b=wo({get:()=>({pin:C.value.pin,otp:C.value.otp}),set(e){r(e)}});function F(){s(),d(),f.value={};const e={...w.value},t=h.value||{};m.value=n.signature.infoCertQesSignature.start({...e,action:g.value,started:e=>{e.data&&e.data.token&&(l(),v.value=$v,y.value=e.data.message)},otpCodeRequest:(e,t)=>{M.value=t},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=Xv,r({confirmationCode:""}),u(),l()},...t})}function _(){s(),M.value(b.value)}return ni(()=>{v.value=Xv,"cscApiSign"===g.value&&(F(),v.value=$v)}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Wv,[Za(pm)])):v.value===Xv?(Na(),Oa("div",Jv,[Za(up,{id:"infoCertQesSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":F,errors:f.value},null,8,["modelValue","schema","errors"])])):v.value===$v?(Na(),Oa("div",Qv,[Ka("div",Yv,[Za(rc,{scheme:"success"},{default:gn(()=>[Wa(J(y.value),1)]),_:1})]),Za(up,{id:"infoCertQesSignatureOtpCodeForm",modelValue:b.value,"onUpdate:modelValue":t[1]||(t[1]=e=>b.value=e),schema:A.value,"on-submit":_,errors:f.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},[["__cssModules",{$style:qv}]]),ty={formContainer:"_formContainer_1mokl_2",label:"_label_1mokl_7",highlight:"_highlight_1mokl_12"},ny={key:1},iy=oc({__name:"SignatureHalcomQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(),y=bt({});const M=wo(()=>[{type:"text",name:"username",label:t.t("username")},{type:"sectionSpacer",text:t.t("or")+":"},{type:"tel",name:"phoneWithoutCallingCode",label:t.t("phone-number"),callingCode:h.value},{type:"sectionSpacer",text:t.t("or")+":"},{type:"email",name:"email",label:t.t("email")},{type:"submit",label:t.t("Sign")}]),S=wo({get:()=>({username:p.value.username,email:p.value.email,phoneWithoutCallingCode:p.value.phoneWithoutCallingCode}),set(e){r(e)}});function w(){s(),d(),m.value={};const e={...S.value};e.phone=e.phoneWithoutCallingCode?h.value+e.phoneWithoutCallingCode:"";const t=g.value||{};y.value=n.signature.halcomQesSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.challenge&&(v.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&w()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-halcom-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1})],2)):(Na(),Oa("div",ny,[Za(up,{id:"halcomSignatureForm",modelValue:S.value,"onUpdate:modelValue":t[0]||(t[0]=e=>S.value=e),schema:M.value,"on-submit":w,errors:m.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ty}]]),ay={formContainer:"_formContainer_b77pi_2"},oy={key:0,class:"challenge"},ry={key:1},sy=oc({__name:"SignatureSwissIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCode:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt(null),v=bt({});const y=wo(()=>[{type:"email",name:"email",label:t.t("email")},{type:"submit",label:t.t("Sign")}]),M=wo({get:()=>({email:p.value.email}),set(e){r(e)}});function S(){s(),d(),f.value={};const e={...M.value};e.phone=e.phone?h.value+e.phone:"";const t=g.value||{};v.value=n.signature.swissIdQesSignature.start({...e,started:e=>{e.data&&e.data.token&&(m.value=e.data.token,l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[m.value?(Na(),Oa("div",oy,[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-swiss-id-app")),1)]),_:1})])):(Na(),Oa("div",ry,[Za(up,{id:"swissIdSignatureForm",modelValue:M.value,"onUpdate:modelValue":t[0]||(t[0]=e=>M.value=e),schema:y.value,"on-submit":S,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ay}]]),ly={formContainer:"_formContainer_nh7n0_2",label:"_label_nh7n0_7",highlight:"_highlight_nh7n0_12",infoSection:"_infoSection_nh7n0_17",infoIcon:"_infoIcon_nh7n0_24",infoLink:"_infoLink_nh7n0_30",iconWrap:"_iconWrap_nh7n0_34"},cy={key:1},dy=oc({__name:"SignatureSwissComQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(null),m=bt({});const v=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.swissComQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-app",{name:"Swisscom"})),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(f.value),3)]),_:1})],2)):(Na(),Oa("div",cy,[Za(up,{id:"swissComSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Swisscom"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.eideasy.com/help/get-started-swisscom",target:"_blank",rel:"noopener noreferrer"}," https://www.eideasy.com/help/get-started-swisscom ",2)])],2)],2))}},[["__cssModules",{$style:ly}]]),uy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},Cy={key:0,class:"challenge"},py={key:1},hy=oc({__name:"SignatureMitIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.mitIdAdvancedSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Cy,[Za(pm)])):(Na(),Oa("div",py,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("MitID")})),3),t[1]||(t[1]=Ka("br",null,null,-1)),Za(up,{id:"mitIdAdvancedSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:uy}]]),gy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},fy={key:0,class:"challenge"},my={key:1},vy=oc({__name:"SignatureMitIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.mitIdQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",fy,[Za(pm)])):(Na(),Oa("div",my,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("MitID")})),3),t[1]||(t[1]=Ka("br",null,null,-1)),Za(up,{id:"mitIdQesSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:gy}]]),yy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},My={key:0,class:"challenge"},Sy={key:1},wy=oc({__name:"SignatureSeBankIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.seBankIdAdvancedSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>It(p)?(Na(),Oa("div",My,[Za(pm)])):(Na(),Oa("div",Sy,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("BankID")})),3),Ka("div",{class:K(e.$style.formContainer)},[Za(up,{id:"seBankIdAdvancedSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])],2)]))}},[["__cssModules",{$style:yy}]]),Ay={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},by={key:0,class:"challenge"},Fy={key:1},_y=oc({__name:"SignatureSeBankIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.seBankIdQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>It(p)?(Na(),Oa("div",by,[Za(pm)])):(Na(),Oa("div",Fy,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("BankID")})),3),Ka("div",{class:K(e.$style.formContainer)},[Za(up,{id:"seBankIdQesSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])],2)]))}},[["__cssModules",{$style:Ay}]]),ky={formContainer:"_formContainer_b77pi_2"},Iy={key:0,class:"userInstructions"},Ty={key:1},Ey=oc({__name:"SignatureFrejaIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{inputValues:C,additionalMethodConfig:p}=ts(o),h=bt({}),g=bt(),f=bt({});const m=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"textSection",text:t.t("pre-sign-confirmation",{method:t.t("FREJA EID")})},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({email:C.value.email}),set(e){r(e)}});function y(){c(),h.value={};const e={...v.value},o=p.value||{};g.value=t.t("approve-sign-request-on-freja-app"),f.value=n.signature.frejaAdvancedSignature.start({...e,started:()=>{d()},fail:e=>{g.value=void 0,e.isCancel||l(e),h.value=OC(e),a(e)},success:e=>{g.value=void 0,i(e)},finished:()=>{g.value=void 0,u(),s()},...o})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[g.value?(Na(),Oa("div",Iy,[Za(gp,{"user-instructions":g.value},null,8,["user-instructions"])])):(Na(),Oa("div",Ty,[Za(up,{id:"frejaSignatureIdForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:h.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ky}]]),Ly={formContainer:"_formContainer_b77pi_2"},By={key:0,class:"userInstructions"},Dy={key:1},xy=oc({__name:"SignatureFrejaIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{inputValues:C,additionalMethodConfig:p}=ts(o),h=bt({}),g=bt(),f=bt({});const m=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"textSection",text:t.t("pre-sign-confirmation",{method:t.t("FREJA EID")})},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({email:C.value.email}),set(e){r(e)}});function y(){c(),h.value={};const e={...v.value},o=p.value||{};g.value=t.t("approve-sign-request-on-freja-app"),f.value=n.signature.frejaQesSignature.start({...e,started:()=>{d()},fail:e=>{g.value=void 0,e.isCancel||l(e),h.value=OC(e),a(e)},success:e=>{g.value=void 0,i(e)},finished:()=>{g.value=void 0,u(),s()},...o})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[g.value?(Na(),Oa("div",By,[Za(gp,{"user-instructions":g.value},null,8,["user-instructions"])])):(Na(),Oa("div",Dy,[Za(up,{id:"frejaSignatureIdForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:h.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:Ly}]]),Ny={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},zy=oc({__name:"IdentificationMitId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{loadingStart:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c}=o,{clientInfo:d,additionalMethodConfig:u,mode:C}=ts(o),p=bt({}),h=bt({});const g=wo(()=>[{type:"submit",label:t.t("log-in")}]);function f(){r(),c(),p.value={};const e=u.value||{};h.value=n.identification.mitId.start({action:C.value,fail:e=>{e.isCancel||l(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{s()},...e})}return oi(()=>{!function(){const{cancel:e}=h.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",{class:K(e.$style.note)},J(e.$t("client-request-data-confirmation",{websiteName:It(d).websiteName,companyName:`(${It(d).companyName})`})),3),t[0]||(t[0]=Ka("br",null,null,-1)),Za(up,{id:"mitIdForm",class:"formContainer",schema:g.value,"on-submit":f,errors:p.value},null,8,["schema","errors"])],2))}},[["__cssModules",{$style:Ny}]]),Vy={formContainer:"_formContainer_psfc2_2",mt4:"_mt4_psfc2_7",mb4:"_mb4_psfc2_11",infoIcon:"_infoIcon_psfc2_15",infoSection:"_infoSection_psfc2_21",iconWrap:"_iconWrap_psfc2_28",infoLink:"_infoLink_psfc2_34"},Ry=oc({__name:"SignatureItsmeQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,changeView:u}=o,{additionalMethodConfig:C}=ts(o),p=bt({}),h=bt({});const g=wo(()=>[{type:"submit",label:t.t("Sign")}]),f=wo({get:()=>({}),set(e){r(e)}});function m(){const{cancel:e}=h.value;e&&e(),u(cs.MethodSelection)}function v(){s(),d(),p.value={};const e=C.value||{};h.value=n.signature.itsmeQesSignature.start({confirmedBySigner:!0,fail:e=>{e.isCancel||c(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{l()},...e})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",{class:K(e.$style.mb4)},J(e.$t("i-accept-and-approve-this-doc")),3),Za(up,{id:"itsmeQesSignatureForm",modelValue:f.value,"onUpdate:modelValue":t[0]||(t[0]=e=>f.value=e),schema:g.value,"on-submit":v,errors:p.value},null,8,["modelValue","schema","errors"]),Ka("div",{class:K(e.$style.mt4)},[Za(HC,{scheme:"secondary","on-click":m},{default:gn(()=>[Wa(J(e.$t("cancel")),1)]),_:1})],2),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Itsme"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.itsme-id.com/get-started",target:"_blank",rel:"noopener noreferrer"}," https://www.itsme-id.com/get-started ",2)])],2)],2))}},[["__cssModules",{$style:Vy}]]),Oy={formContainer:"_formContainer_b77pi_2"},Py=oc({__name:"SignatureHandwritten",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{loadingStart:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{additionalMethodConfig:C,mode:p}=ts(o),h=bt({}),g=bt(null),f=bt(null),m=bt(null),v=wo(()=>[{type:"submit",label:t.t("Sign")}]);function y(){m.value.validate()&&(f.value=m.value.toData(),g.value=m.value.toDataURL(),function(){r(),c();const e=C.value||{};h.value=n.signature.handwrittenSignature.start({handwrittenSignatureData:f.value,handwrittenSignatureDataUrl:g.value,action:p.value,started:()=>{s(),d()},fail:e=>{e.isCancel||l(e),a(e)},success:e=>{i(e)},finished:()=>{u(),s()},...e})}())}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Za(Fm,{ref_key:"signaturePad",ref:m},null,512),Za(up,{id:"handwrittenSignatureForm",schema:v.value,"on-submit":y},null,8,["schema"])],2))}},[["__cssModules",{$style:Oy}]]),Uy={formContainer:"_formContainer_b77pi_2"},Gy=oc({__name:"SignatureHaricaQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"password",label:t.t("password"),validation:["required"]},{type:"password",name:"otpCode",label:t.t("enter-temp-security-code"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({username:p.value.username,password:p.value.password,otpCode:p.value.otpCode}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.haricaQesSignature.start({...e,started:()=>{u()},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",null,[Za(up,{id:"haricaSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])])],2))}},[["__cssModules",{$style:Uy}]]),jy={formContainer:"_formContainer_b77pi_2"},Hy={key:0,class:"challenge"},Ky={key:1},Zy=oc({__name:"SignatureLtIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(void 0),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.ltIdQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Hy,[Za(gp,{challenge:f.value},null,8,["challenge"])])):(Na(),Oa("div",Ky,[Za(up,{id:"ltIdQesSignatureIdForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:jy}]]),qy={formContainer:"_formContainer_9m4rx_2",iframeHolder:"_iframeHolder_9m4rx_6",stepHidden:"_stepHidden_9m4rx_11",buttonHolder:"_buttonHolder_9m4rx_15"},Wy="startButton",Jy="signing",Qy="success",Yy=oc({__name:"SignatureIframe",setup(e){const t=Vf(),n=function(e="$style"){{const t=oo();if(!t)return i;const n=t.type.__cssModules;if(!n)return i;return n[e]||i}}(),a=Hi("eidEasyClient"),o=Hi("eidEasyOnSuccess"),r=Hi("eidEasyOnFail"),s=Hi("eidEasyMethodsConfig"),l=Hi("useAppStore")(),{addFlashMessage:c,clearFlashMessages:d}=l,{additionalMethodConfig:u,currentMethod:C,mode:p,signingCertificate:h}=ts(l),g=bt({}),f=bt(null),m=bt(null),v=wo(()=>s.methodsByActionType),y=wo(()=>t.t("finalizing")+"..."),M=wo(()=>[{type:"submit",label:t.t("Sign")}]);function S(){f.value=Jy,d();const e=u.value||{},t=v.value[C.value.actionType];g.value=a.signature[t.handlingModule].start({action:p.value,iframeHolder:m.value,signingCertificate:h.value,fail:e=>{e.isCancel||c(e),f.value=Wy,r(e)},success:e=>{f.value=Qy,m.value.innerHTML="",o(e)},finished:()=>{},...e})}function w(e){return e===f.value?[]:[n.stepHidden]}return ni(()=>{f.value=Jy,on(()=>{S()})}),oi(()=>{!function(){const{cancel:e}=g.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(It(n).formContainer)},[Ka("div",{ref_key:"iframeHolder",ref:m,class:K([It(n).iframeHolder,{[It(n).stepHidden]:f.value===Qy}])},null,2),Ka("div",{class:K(w(Wy))},[Ka("div",{class:K(It(n).buttonHolder)},[Za(up,{id:"iframeSignatureForm",schema:M.value,"on-submit":S},null,8,["schema"])],2)],2),Ka("div",{class:K(w(Qy))},[Za(gp,{"user-instructions":y.value},null,8,["user-instructions"])],2)],2))}},[["__cssModules",{$style:qy}]]),Xy={formContainer:"_formContainer_b77pi_2"},$y=oc({__name:"SignatureEsLleidaAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h,mode:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username,pin:p.value.pin}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=h.value||{};m.value=n.signature.esLleidaAdvSignature.start({...e,action:g.value,started:()=>{u()},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return ni(()=>{"cscApiSign"===g.value&&M()}),oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",null,[Za(up,{id:"esLleidaSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])],2))}},[["__cssModules",{$style:Xy}]]),eM={formContainer:"_formContainer_4fee0_2",infoIcon:"_infoIcon_4fee0_7",contentCenter:"_contentCenter_4fee0_13",infoSection:"_infoSection_4fee0_17",iconWrap:"_iconWrap_4fee0_24",infoLink:"_infoLink_4fee0_30",space:"_space_4fee0_34",buttonSpace:"_buttonSpace_4fee0_38"},tM={key:0},nM={key:1},iM=["href"],aM=["src"],oM=oc({__name:"SignatureDiia",setup(e){const t=Hi("eidEasyClient"),n=Hi("eidEasyOnSuccess"),i=Hi("eidEasyOnFail"),a=Hi("useAppStore")(),{loadingStart:o,loadingEnd:r,addFlashMessage:s,clearFlashMessages:l}=a,c=bt(null),d=bt(null),u=bt(null),C=bt(null),p=bt({}),h=bt(!1),g=wo(()=>{const e=Math.floor(c.value/60),t=c.value%60;return`${e}:${t<10?"0":""}${t}`});function f(){const{cancel:e}=p.value;e&&(m(),e())}function m(){d.value=null,u.value=null,c.value=null,h.value=!0,clearInterval(C.value)}function v(){h.value=!1,o(),l(),p.value=t.signature.diiaQesSignature.start({countryCode:"UA",started:e=>{e.data&&e.data.qr_code&&(d.value=e.data.qr_code,u.value=e.data.redirect_uri,c.value=180,C.value=setInterval(()=>{c.value>0?c.value--:(clearInterval(C.value),f())},1e3),r())},onTryComplete:e=>{s(e)},fail:e=>{e.isCancel||s(e),i(e)},success:e=>{n(e)},finished:()=>{m(),r()}})}return ni(()=>{v()}),oi(()=>{null!==d.value&&f()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[h.value?(Na(),Oa("div",tM,[Za(tp,{text:e.$t("The signing session was cancelled or got expired")},null,8,["text"]),Za(HC,{class:K(e.$style.buttonSpace),"on-click":v},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1},8,["class"])])):Qa("",!0),d.value?(Na(),Oa("div",nM,[Za(tp,{text:e.$t("Open the QR scanner in your Diia app, point it at the QR code below, and follow instructions. If you've opened this page on a smartphone with Diia app installed, just tap the QR code.")},null,8,["text"]),Ka("div",{class:K(e.$style.contentCenter)},[Ka("a",{href:u.value,target:"_blank"},[Ka("img",{src:d.value,alt:"QR code"},null,8,aM)],8,iM),Za(tp,{text:e.$t("Time left")+": "+g.value},null,8,["text"]),Za(HC,{class:K(e.$style.buttonSpace),"on-click":f},{default:gn(()=>[Wa(J(e.$t("Cancel")),1)]),_:1},8,["class"]),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Diia.Signature"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=e3K-qT5hQlQ",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=e3K-qT5hQlQ ",2)])],2)],2)])):Qa("",!0)],2))}},[["__cssModules",{$style:eM}]]),rM={formContainer:"_formContainer_b77pi_2"},sM=oc({__name:"SignatureDigilogix",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt();const v=wo(()=>[{type:"text",name:"idcode",label:t.t("CUIL number"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={};const e=h.value||{};f.value=n.signature.digilogixQesSignature.start({...y.value,started:e=>{e.data&&e.data.challenge&&(m.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=void 0,C(),l()},...e})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Za(up,{id:"digilogixSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])],2))}},[["__cssModules",{$style:rM}]]),lM={formContainer:"_formContainer_1qio5_2",iframeHolder:"_iframeHolder_1qio5_7",hidden:"_hidden_1qio5_12"},cM=oc({__name:"WebEidLogin",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{addFlashMessage:r,clearFlashMessages:s}=o,{countryCode:l}=ts(o),c=bt({}),d=bt(!1),u=bt(!1),C=bt(null);function p(){d.value=!1,s(),c.value=n.identification.webEid.start({countryCode:l.value,iframeHolder:C.value,fail:e=>{e.isCancel||(e.translationKey=t.t(e.message),r(e)),d.value=!0,C.value.innerHTML="",a(e)},success:e=>{u.value=!0,i(e)}})}return ni(()=>{p()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[d.value?(Na(),Pa(HC,{key:0,"on-click":p},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1})):Qa("",!0),Ka("div",{ref_key:"webEidIframeHolder",ref:C,class:K([e.$style.iframeHolder,{[e.$style.hidden]:d.value||u.value}])},null,2)],2))}},[["__cssModules",{$style:lM}]]),dM={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},uM={key:1},CM=oc({__name:"SignatureBTrustQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(null),m=bt({});const v=wo(()=>[{type:"text",name:"profileId",label:t.t("Profile ID"),validation:["required"],placeholder:"1234-12345"},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({profileId:p.value.profileId}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.bTrustQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-app",{name:"B-Trust"})),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(f.value),3)]),_:1})],2)):(Na(),Oa("div",uM,[Za(up,{id:"bTrustQesSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,J(e.$t("Profile ID can be found from B-Trust application. Navigate to MQES and look for a number next to your name.")),1)],2),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"B-Trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.b-trust.org/en/",target:"_blank",rel:"noopener noreferrer"}," https://www.b-trust.org/en/ ",2)])],2)],2))}},[["__cssModules",{$style:dM}]]),pM={radioBtn:"_radioBtn_1llks_2",selected:"_selected_1llks_19",disabled:"_disabled_1llks_22"};const hM=oc({name:"RadioButton",props:{value:{type:String,required:!0},modelValue:{type:String,required:!0},disabled:{type:Boolean,default:!1},onClick:Function},computed:{className(){return this.modelValue===this.value?"selected":this.disabled?"disabled":""}},methods:{handleClick(e){this.isSelected||!this.onClick||this.disabled||this.onClick(this.value,e)}}},[["render",function(e,t,n,i,a,o){return Na(),Oa("button",{class:K([e.$style.radioBtn,e.$style[o.className]]),type:"button",onClick:t[0]||(t[0]=(...e)=>o.handleClick&&o.handleClick(...e))},[vi(e.$slots,"default")],2)}],["__cssModules",{$style:pM}]]),gM={formContainer:"_formContainer_11bbh_2",iframeHolder:"_iframeHolder_11bbh_7",hidden:"_hidden_11bbh_12","text-center":"_text-center_11bbh_16"},fM={key:1},mM={class:"text-center"},vM=oc({__name:"IdentificationGoogleWallet",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{addFlashMessage:r,clearFlashMessages:s}=o,{countryCode:l}=ts(o),c=bt({}),d=bt(!1),u=bt("mDL"),C=bt(!0),p=bt(!1),h=bt();function g(e){u.value=e}function f(){d.value=!1,C.value=!0,s(),c.value=n.identification.googleWallet.start({countryCode:l.value,documentType:u.value,iframeHolder:h.value,fail:e=>{e.isCancel||(e.translationKey=t.t(e.message),r(e)),d.value=!0,h.value&&(h.value.innerHTML=""),a(e)},success:e=>{p.value=!0,i(e)}})}return ni(()=>{f()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[d.value?(Na(),Pa(HC,{key:0,"on-click":f},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1})):Qa("",!0),C.value?Qa("",!0):(Na(),Oa("div",fM,[Ka("p",mM,J(e.$t("Choose your document type")),1),Za(hM,{value:"mDL","model-value":u.value,"on-click":()=>g("mDL")},{default:gn(()=>[Wa(J(e.$t("Mobile Driver License")),1)]),_:1},8,["model-value","on-click"]),Za(hM,{value:"pid","model-value":u.value,disabled:!1,"on-click":()=>g("pid")},{default:gn(()=>[Wa(J(e.$t("Personal Identity Document")),1)]),_:1},8,["model-value","on-click"]),d.value?Qa("",!0):(Na(),Pa(HC,{key:0,"on-click":f},{default:gn(()=>[Wa(J(e.$t("Continue")),1)]),_:1}))])),Ka("div",{ref_key:"googleWalletIframeHolder",ref:h,class:K([e.$style.iframeHolder,{[e.$style.hidden]:d.value||p.value}])},null,2)],2))}},[["__cssModules",{$style:gM}]]),yM={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},MM={key:1},SM=oc({__name:"IdentificationEvrotrust",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d}=o,{inputValues:u,additionalMethodConfig:C}=ts(o),p=bt({}),h=bt(),g=bt({});const f=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:"+37200000000"},{type:"submit",label:t.t("log-in")}]),m=wo({get:()=>({phone:u.value.phone}),set(e){r(e)}});function v(){s(),d(),p.value={};const e={...m.value},t=C.value||{};g.value=n.identification.evrotrust.start({...e,started:e=>{e.data&&e.data.challenge&&(h.value=e.data.challenge,l())},fail:e=>{e.isCancel||c(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{h.value=void 0,l()},...t})}return oi(()=>{!function(){const{cancel:e}=g.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[h.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("approve-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(h.value),3)]),_:1})],2)):(Na(),Oa("div",MM,[Za(up,{id:"evrotrustForm",modelValue:m.value,"onUpdate:modelValue":t[0]||(t[0]=e=>m.value=e),schema:f.value,"on-submit":v,errors:p.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},[["__cssModules",{$style:yM}]]),wM={formContainer:"_formContainer_1rpdl_2",contentCenter:"_contentCenter_1rpdl_7",space:"_space_1rpdl_11",buttonSpace:"_buttonSpace_1rpdl_15"},AM={key:0},bM=["href"],FM=["src"],_M=oc({__name:"IdentificationAtValeraWallet",setup(e){const t=Hi("eidEasyClient"),n=Hi("eidEasyOnSuccess"),i=Hi("eidEasyOnFail"),a=Hi("useAppStore")(),{loadingEnd:o,addFlashMessage:r,clearFlashMessages:s}=a,{additionalMethodConfig:l,isLoading:c}=ts(a),d=bt({}),u=bt(null),C=bt(null),p=bt(null);function h(){const{cancel:e}=d.value;C.value=null,p.value=null,e&&e()}return ni(()=>{!function(){u.value=null,s();const e=l.value||{};d.value=t.identification.eudiWallet.start({...e,documentType:"PID",started:e=>{e.data&&e.data.qrCode&&(C.value=e.data.qrCode,p.value=e.data.deepLink,o())},fail:e=>{e.isCancel||r(e),u.value=e,i(e)},success:e=>{C.value=null,n(e)},finished:()=>{o()}})}()}),oi(()=>{h()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[C.value?(Na(),Oa("div",AM,[Za(tp,{text:e.$t("Scan this QR code with your Valera wallet application or click it if you are viewing from the phone.")},null,8,["text"]),Ka("div",{class:K(e.$style.contentCenter)},[Ka("a",{href:p.value,target:"_blank"},[Ka("img",{src:C.value,alt:"QR code"},null,8,FM)],8,bM),Za(HC,{class:"buttonSpace","on-click":h},{default:gn(()=>[Wa(J(e.$t("Cancel")),1)]),_:1})],2)])):Qa("",!0),!C.value&&It(c)?(Na(),Oa("div",{key:1,class:K(e.$style.space)},null,2)):Qa("",!0)],2))}},[["__cssModules",{$style:wM}]]),kM=Object.freeze({MethodSelection:RC,SmartIdAuth:Hf,WebEidLogin:cM,MobileIdAuth:Wf,IdentificationFrejaId:Xf,IdentificationZealId:tm,IdentificationMitId:zy,IdentificationGoogleWallet:vM,IdentificationEvrotrust:SM,SignatureSmartId:rm,SignatureMobileId:dm,SignatureFtn:Cm,SignatureOtp:zm,SignatureEvrotrust:jm,SignatureEvrotrustGeda:Wm,SignatureDTrustSignMe:$m,SignatureDTrustSignMeAdv:av,SignatureChaveMovel:pv,SignatureECertChile:yv,SignatureFtnAdvancedFull:vm,SignatureNoBankId:Fv,SignatureSpidQes:Lv,SignatureFrejaId:Nv,SignatureAudkenni:Ov,SignatureUanatacaQes:Zv,SignatureInfoCertQes:ey,SignatureHalcomQes:iy,SignatureSwissIdQes:sy,SignatureSwissComQes:dy,SignatureMitIdAdvanced:hy,SignatureMitIdQes:vy,SignatureSeBankIdAdvanced:wy,SignatureSeBankIdQes:_y,SignatureFrejaIdAdvanced:Ey,SignatureFrejaIdQes:xy,SignatureItsmeQes:Ry,SignatureHandwritten:Py,SignatureHaricaQes:Gy,SignatureLtIdQes:Zy,SignatureIframe:Yy,SignatureEsLleidaAdvanced:$y,SignatureDiia:oM,SignatureDigilogix:sM,SignatureBTrustQes:CM,IdentificationAtValeraWallet:_M});const IM=oc({name:"AppHeader"},[["render",function(e,t,n,i,a,o){return Na(),Oa("div",{class:K(e.$style.header)},[vi(e.$slots,"default")],2)}],["__cssModules",{$style:{header:"_header_1eumk_2"}}]]);var TM={};const EM=JSON.parse('[["AF","AFG","004","ISO 3166-2:AF"],["AL","ALB","008","ISO 3166-2:AL"],["DZ","DZA","012","ISO 3166-2:DZ"],["AS","ASM","016","ISO 3166-2:AS"],["AD","AND","020","ISO 3166-2:AD"],["AO","AGO","024","ISO 3166-2:AO"],["AI","AIA","660","ISO 3166-2:AI"],["AQ","ATA","010","ISO 3166-2:AQ"],["AG","ATG","028","ISO 3166-2:AG"],["AR","ARG","032","ISO 3166-2:AR"],["AM","ARM","051","ISO 3166-2:AM"],["AW","ABW","533","ISO 3166-2:AW"],["AU","AUS","036","ISO 3166-2:AU"],["AT","AUT","040","ISO 3166-2:AT"],["AZ","AZE","031","ISO 3166-2:AZ"],["BS","BHS","044","ISO 3166-2:BS"],["BH","BHR","048","ISO 3166-2:BH"],["BD","BGD","050","ISO 3166-2:BD"],["BB","BRB","052","ISO 3166-2:BB"],["BY","BLR","112","ISO 3166-2:BY"],["BE","BEL","056","ISO 3166-2:BE"],["BZ","BLZ","084","ISO 3166-2:BZ"],["BJ","BEN","204","ISO 3166-2:BJ"],["BM","BMU","060","ISO 3166-2:BM"],["BT","BTN","064","ISO 3166-2:BT"],["BO","BOL","068","ISO 3166-2:BO"],["BA","BIH","070","ISO 3166-2:BA"],["BW","BWA","072","ISO 3166-2:BW"],["BV","BVT","074","ISO 3166-2:BV"],["BR","BRA","076","ISO 3166-2:BR"],["IO","IOT","086","ISO 3166-2:IO"],["BN","BRN","096","ISO 3166-2:BN"],["BG","BGR","100","ISO 3166-2:BG"],["BF","BFA","854","ISO 3166-2:BF"],["BI","BDI","108","ISO 3166-2:BI"],["KH","KHM","116","ISO 3166-2:KH"],["CM","CMR","120","ISO 3166-2:CM"],["CA","CAN","124","ISO 3166-2:CA"],["CV","CPV","132","ISO 3166-2:CV"],["KY","CYM","136","ISO 3166-2:KY"],["CF","CAF","140","ISO 3166-2:CF"],["TD","TCD","148","ISO 3166-2:TD"],["CL","CHL","152","ISO 3166-2:CL"],["CN","CHN","156","ISO 3166-2:CN"],["CX","CXR","162","ISO 3166-2:CX"],["CC","CCK","166","ISO 3166-2:CC"],["CO","COL","170","ISO 3166-2:CO"],["KM","COM","174","ISO 3166-2:KM"],["CG","COG","178","ISO 3166-2:CG"],["CD","COD","180","ISO 3166-2:CD"],["CK","COK","184","ISO 3166-2:CK"],["CR","CRI","188","ISO 3166-2:CR"],["CI","CIV","384","ISO 3166-2:CI"],["HR","HRV","191","ISO 3166-2:HR"],["CU","CUB","192","ISO 3166-2:CU"],["CY","CYP","196","ISO 3166-2:CY"],["CZ","CZE","203","ISO 3166-2:CZ"],["DK","DNK","208","ISO 3166-2:DK"],["DJ","DJI","262","ISO 3166-2:DJ"],["DM","DMA","212","ISO 3166-2:DM"],["DO","DOM","214","ISO 3166-2:DO"],["EC","ECU","218","ISO 3166-2:EC"],["EG","EGY","818","ISO 3166-2:EG"],["SV","SLV","222","ISO 3166-2:SV"],["GQ","GNQ","226","ISO 3166-2:GQ"],["ER","ERI","232","ISO 3166-2:ER"],["EE","EST","233","ISO 3166-2:EE"],["ET","ETH","231","ISO 3166-2:ET"],["FK","FLK","238","ISO 3166-2:FK"],["FO","FRO","234","ISO 3166-2:FO"],["FJ","FJI","242","ISO 3166-2:FJ"],["FI","FIN","246","ISO 3166-2:FI"],["FR","FRA","250","ISO 3166-2:FR"],["GF","GUF","254","ISO 3166-2:GF"],["PF","PYF","258","ISO 3166-2:PF"],["TF","ATF","260","ISO 3166-2:TF"],["GA","GAB","266","ISO 3166-2:GA"],["GM","GMB","270","ISO 3166-2:GM"],["GE","GEO","268","ISO 3166-2:GE"],["DE","DEU","276","ISO 3166-2:DE"],["GH","GHA","288","ISO 3166-2:GH"],["GI","GIB","292","ISO 3166-2:GI"],["GR","GRC","300","ISO 3166-2:GR"],["GL","GRL","304","ISO 3166-2:GL"],["GD","GRD","308","ISO 3166-2:GD"],["GP","GLP","312","ISO 3166-2:GP"],["GU","GUM","316","ISO 3166-2:GU"],["GT","GTM","320","ISO 3166-2:GT"],["GN","GIN","324","ISO 3166-2:GN"],["GW","GNB","624","ISO 3166-2:GW"],["GY","GUY","328","ISO 3166-2:GY"],["HT","HTI","332","ISO 3166-2:HT"],["HM","HMD","334","ISO 3166-2:HM"],["VA","VAT","336","ISO 3166-2:VA"],["HN","HND","340","ISO 3166-2:HN"],["HK","HKG","344","ISO 3166-2:HK"],["HU","HUN","348","ISO 3166-2:HU"],["IS","ISL","352","ISO 3166-2:IS"],["IN","IND","356","ISO 3166-2:IN"],["ID","IDN","360","ISO 3166-2:ID"],["IR","IRN","364","ISO 3166-2:IR"],["IQ","IRQ","368","ISO 3166-2:IQ"],["IE","IRL","372","ISO 3166-2:IE"],["IL","ISR","376","ISO 3166-2:IL"],["IT","ITA","380","ISO 3166-2:IT"],["JM","JAM","388","ISO 3166-2:JM"],["JP","JPN","392","ISO 3166-2:JP"],["JO","JOR","400","ISO 3166-2:JO"],["KZ","KAZ","398","ISO 3166-2:KZ"],["KE","KEN","404","ISO 3166-2:KE"],["KI","KIR","296","ISO 3166-2:KI"],["KP","PRK","408","ISO 3166-2:KP"],["KR","KOR","410","ISO 3166-2:KR"],["KW","KWT","414","ISO 3166-2:KW"],["KG","KGZ","417","ISO 3166-2:KG"],["LA","LAO","418","ISO 3166-2:LA"],["LV","LVA","428","ISO 3166-2:LV"],["LB","LBN","422","ISO 3166-2:LB"],["LS","LSO","426","ISO 3166-2:LS"],["LR","LBR","430","ISO 3166-2:LR"],["LY","LBY","434","ISO 3166-2:LY"],["LI","LIE","438","ISO 3166-2:LI"],["LT","LTU","440","ISO 3166-2:LT"],["LU","LUX","442","ISO 3166-2:LU"],["MO","MAC","446","ISO 3166-2:MO"],["MG","MDG","450","ISO 3166-2:MG"],["MW","MWI","454","ISO 3166-2:MW"],["MY","MYS","458","ISO 3166-2:MY"],["MV","MDV","462","ISO 3166-2:MV"],["ML","MLI","466","ISO 3166-2:ML"],["MT","MLT","470","ISO 3166-2:MT"],["MH","MHL","584","ISO 3166-2:MH"],["MQ","MTQ","474","ISO 3166-2:MQ"],["MR","MRT","478","ISO 3166-2:MR"],["MU","MUS","480","ISO 3166-2:MU"],["YT","MYT","175","ISO 3166-2:YT"],["MX","MEX","484","ISO 3166-2:MX"],["FM","FSM","583","ISO 3166-2:FM"],["MD","MDA","498","ISO 3166-2:MD"],["MC","MCO","492","ISO 3166-2:MC"],["MN","MNG","496","ISO 3166-2:MN"],["MS","MSR","500","ISO 3166-2:MS"],["MA","MAR","504","ISO 3166-2:MA"],["MZ","MOZ","508","ISO 3166-2:MZ"],["MM","MMR","104","ISO 3166-2:MM"],["NA","NAM","516","ISO 3166-2:NA"],["NR","NRU","520","ISO 3166-2:NR"],["NP","NPL","524","ISO 3166-2:NP"],["NL","NLD","528","ISO 3166-2:NL"],["NC","NCL","540","ISO 3166-2:NC"],["NZ","NZL","554","ISO 3166-2:NZ"],["NI","NIC","558","ISO 3166-2:NI"],["NE","NER","562","ISO 3166-2:NE"],["NG","NGA","566","ISO 3166-2:NG"],["NU","NIU","570","ISO 3166-2:NU"],["NF","NFK","574","ISO 3166-2:NF"],["MP","MNP","580","ISO 3166-2:MP"],["MK","MKD","807","ISO 3166-2:MK"],["NO","NOR","578","ISO 3166-2:NO"],["OM","OMN","512","ISO 3166-2:OM"],["PK","PAK","586","ISO 3166-2:PK"],["PW","PLW","585","ISO 3166-2:PW"],["PS","PSE","275","ISO 3166-2:PS"],["PA","PAN","591","ISO 3166-2:PA"],["PG","PNG","598","ISO 3166-2:PG"],["PY","PRY","600","ISO 3166-2:PY"],["PE","PER","604","ISO 3166-2:PE"],["PH","PHL","608","ISO 3166-2:PH"],["PN","PCN","612","ISO 3166-2:PN"],["PL","POL","616","ISO 3166-2:PL"],["PT","PRT","620","ISO 3166-2:PT"],["PR","PRI","630","ISO 3166-2:PR"],["QA","QAT","634","ISO 3166-2:QA"],["RE","REU","638","ISO 3166-2:RE"],["RO","ROU","642","ISO 3166-2:RO"],["RU","RUS","643","ISO 3166-2:RU"],["RW","RWA","646","ISO 3166-2:RW"],["SH","SHN","654","ISO 3166-2:SH"],["KN","KNA","659","ISO 3166-2:KN"],["LC","LCA","662","ISO 3166-2:LC"],["PM","SPM","666","ISO 3166-2:PM"],["VC","VCT","670","ISO 3166-2:VC"],["WS","WSM","882","ISO 3166-2:WS"],["SM","SMR","674","ISO 3166-2:SM"],["ST","STP","678","ISO 3166-2:ST"],["SA","SAU","682","ISO 3166-2:SA"],["SN","SEN","686","ISO 3166-2:SN"],["SC","SYC","690","ISO 3166-2:SC"],["SL","SLE","694","ISO 3166-2:SL"],["SG","SGP","702","ISO 3166-2:SG"],["SK","SVK","703","ISO 3166-2:SK"],["SI","SVN","705","ISO 3166-2:SI"],["SB","SLB","090","ISO 3166-2:SB"],["SO","SOM","706","ISO 3166-2:SO"],["ZA","ZAF","710","ISO 3166-2:ZA"],["GS","SGS","239","ISO 3166-2:GS"],["ES","ESP","724","ISO 3166-2:ES"],["LK","LKA","144","ISO 3166-2:LK"],["SD","SDN","729","ISO 3166-2:SD"],["SR","SUR","740","ISO 3166-2:SR"],["SJ","SJM","744","ISO 3166-2:SJ"],["SZ","SWZ","748","ISO 3166-2:SZ"],["SE","SWE","752","ISO 3166-2:SE"],["CH","CHE","756","ISO 3166-2:CH"],["SY","SYR","760","ISO 3166-2:SY"],["TW","TWN","158","ISO 3166-2:TW"],["TJ","TJK","762","ISO 3166-2:TJ"],["TZ","TZA","834","ISO 3166-2:TZ"],["TH","THA","764","ISO 3166-2:TH"],["TL","TLS","626","ISO 3166-2:TL"],["TG","TGO","768","ISO 3166-2:TG"],["TK","TKL","772","ISO 3166-2:TK"],["TO","TON","776","ISO 3166-2:TO"],["TT","TTO","780","ISO 3166-2:TT"],["TN","TUN","788","ISO 3166-2:TN"],["TR","TUR","792","ISO 3166-2:TR"],["TM","TKM","795","ISO 3166-2:TM"],["TC","TCA","796","ISO 3166-2:TC"],["TV","TUV","798","ISO 3166-2:TV"],["UG","UGA","800","ISO 3166-2:UG"],["UA","UKR","804","ISO 3166-2:UA"],["AE","ARE","784","ISO 3166-2:AE"],["GB","GBR","826","ISO 3166-2:GB"],["US","USA","840","ISO 3166-2:US"],["UM","UMI","581","ISO 3166-2:UM"],["UY","URY","858","ISO 3166-2:UY"],["UZ","UZB","860","ISO 3166-2:UZ"],["VU","VUT","548","ISO 3166-2:VU"],["VE","VEN","862","ISO 3166-2:VE"],["VN","VNM","704","ISO 3166-2:VN"],["VG","VGB","092","ISO 3166-2:VG"],["VI","VIR","850","ISO 3166-2:VI"],["WF","WLF","876","ISO 3166-2:WF"],["EH","ESH","732","ISO 3166-2:EH"],["YE","YEM","887","ISO 3166-2:YE"],["ZM","ZMB","894","ISO 3166-2:ZM"],["ZW","ZWE","716","ISO 3166-2:ZW"],["AX","ALA","248","ISO 3166-2:AX"],["BQ","BES","535","ISO 3166-2:BQ"],["CW","CUW","531","ISO 3166-2:CW"],["GG","GGY","831","ISO 3166-2:GG"],["IM","IMN","833","ISO 3166-2:IM"],["JE","JEY","832","ISO 3166-2:JE"],["ME","MNE","499","ISO 3166-2:ME"],["BL","BLM","652","ISO 3166-2:BL"],["MF","MAF","663","ISO 3166-2:MF"],["RS","SRB","688","ISO 3166-2:RS"],["SX","SXM","534","ISO 3166-2:SX"],["SS","SSD","728","ISO 3166-2:SS"],["XK","XKK","983","ISO 3166-2:XK"]]'),LM=["br","cy","dv","sw","eu","af","am","ha","ku","ml","mt","no","ps","sd","so","sq","ta","tg","tt","ug","ur","vi","ar","az","be","bg","bn","bs","ca","cs","da","de","el","en","es","et","fa","fi","fr","ga","gl","he","hi","hr","hu","hy","id","is","it","ja","ka","kk","km","ko","ky","lt","lv","mk","mn","mr","ms","nb","nl","nn","pl","pt","ro","ru","sk","sl","sr","sv","th","tk","tr","uk","uz","zh"];var BM,DM,xM={};const NM=is((DM||(DM=1,function(e){const t=EM,n=LM,i=function(){if(BM)return xM;BM=1,xM.remove=function(e){return e.replace(/[^\u0000-\u007e]/g,function(e){return t[e]||e})};for(var e=[{base:" ",chars:" "},{base:"0",chars:"߀"},{base:"A",chars:"ⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",chars:"Ꜳ"},{base:"AE",chars:"ÆǼǢ"},{base:"AO",chars:"Ꜵ"},{base:"AU",chars:"Ꜷ"},{base:"AV",chars:"ꜸꜺ"},{base:"AY",chars:"Ꜽ"},{base:"B",chars:"ⒷBḂḄḆɃƁ"},{base:"C",chars:"ⒸCꜾḈĆCĈĊČÇƇȻ"},{base:"D",chars:"ⒹDḊĎḌḐḒḎĐƊƉᴅꝹ"},{base:"Dh",chars:"Ð"},{base:"DZ",chars:"DZDŽ"},{base:"Dz",chars:"DzDž"},{base:"E",chars:"ɛⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎᴇ"},{base:"F",chars:"ꝼⒻFḞƑꝻ"},{base:"G",chars:"ⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾɢ"},{base:"H",chars:"ⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",chars:"ⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",chars:"ⒿJĴɈȷ"},{base:"K",chars:"ⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",chars:"ⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",chars:"LJ"},{base:"Lj",chars:"Lj"},{base:"M",chars:"ⓂMḾṀṂⱮƜϻ"},{base:"N",chars:"ꞤȠⓃNǸŃÑṄŇṆŅṊṈƝꞐᴎ"},{base:"NJ",chars:"NJ"},{base:"Nj",chars:"Nj"},{base:"O",chars:"ⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OE",chars:"Œ"},{base:"OI",chars:"Ƣ"},{base:"OO",chars:"Ꝏ"},{base:"OU",chars:"Ȣ"},{base:"P",chars:"ⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",chars:"ⓆQꝖꝘɊ"},{base:"R",chars:"ⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",chars:"ⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",chars:"ⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"Th",chars:"Þ"},{base:"TZ",chars:"Ꜩ"},{base:"U",chars:"ⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",chars:"ⓋVṼṾƲꝞɅ"},{base:"VY",chars:"Ꝡ"},{base:"W",chars:"ⓌWẀẂŴẆẄẈⱲ"},{base:"X",chars:"ⓍXẊẌ"},{base:"Y",chars:"ⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",chars:"ⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",chars:"ⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐɑ"},{base:"aa",chars:"ꜳ"},{base:"ae",chars:"æǽǣ"},{base:"ao",chars:"ꜵ"},{base:"au",chars:"ꜷ"},{base:"av",chars:"ꜹꜻ"},{base:"ay",chars:"ꜽ"},{base:"b",chars:"ⓑbḃḅḇƀƃɓƂ"},{base:"c",chars:"cⓒćĉċčçḉƈȼꜿↄ"},{base:"d",chars:"ⓓdḋďḍḑḓḏđƌɖɗƋᏧԁꞪ"},{base:"dh",chars:"ð"},{base:"dz",chars:"dzdž"},{base:"e",chars:"ⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇǝ"},{base:"f",chars:"ⓕfḟƒ"},{base:"ff",chars:"ff"},{base:"fi",chars:"fi"},{base:"fl",chars:"fl"},{base:"ffi",chars:"ffi"},{base:"ffl",chars:"ffl"},{base:"g",chars:"ⓖgǵĝḡğġǧģǥɠꞡꝿᵹ"},{base:"h",chars:"ⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",chars:"ƕ"},{base:"i",chars:"ⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",chars:"ⓙjĵǰɉ"},{base:"k",chars:"ⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",chars:"ⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇɭ"},{base:"lj",chars:"lj"},{base:"m",chars:"ⓜmḿṁṃɱɯ"},{base:"n",chars:"ⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥлԉ"},{base:"nj",chars:"nj"},{base:"o",chars:"ⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿꝋꝍɵɔᴑ"},{base:"oe",chars:"œ"},{base:"oi",chars:"ƣ"},{base:"oo",chars:"ꝏ"},{base:"ou",chars:"ȣ"},{base:"p",chars:"ⓟpṕṗƥᵽꝑꝓꝕρ"},{base:"q",chars:"ⓠqɋꝗꝙ"},{base:"r",chars:"ⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",chars:"ⓢsśṥŝṡšṧṣṩșşȿꞩꞅẛʂ"},{base:"ss",chars:"ß"},{base:"t",chars:"ⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"th",chars:"þ"},{base:"tz",chars:"ꜩ"},{base:"u",chars:"ⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",chars:"ⓥvṽṿʋꝟʌ"},{base:"vy",chars:"ꝡ"},{base:"w",chars:"ⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",chars:"ⓧxẋẍ"},{base:"y",chars:"ⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",chars:"ⓩzźẑżžẓẕƶȥɀⱬꝣ"}],t={},n=0;n<e.length;n+=1)for(var i=e[n].chars,a=0;a<i.length;a+=1)t[i[a]]=e[n].base;return xM.replacementList=e,xM.diacriticsMap=t,xM}().remove,a={},o={},r={},s={},l={};function c(e){return String("000"+(e||"")).slice(-3)}function d(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function u(e,t){switch(e){case"official":return Array.isArray(t)?t[0]:t;case"all":return"string"==typeof t?[t]:t;case"alias":return Array.isArray(t)?t[1]||t[0]:t;default:throw new TypeError("LocaleNameType must be one of these: all, official, alias!")}}function C(e){return r[e]}function p(e){return o[e]}function h(e){const t=c(e);return p(s[t])}function g(e){const t=c(e);return s[t]}function f(e){if("string"==typeof e){if(/^[0-9]*$/.test(e))return g(e);if(2===e.length)return e.toUpperCase();if(3===e.length)return C(e.toUpperCase())}if("number"==typeof e)return g(e)}t.forEach(function(e){const t=e;o[t[0]]=t[1],r[t[1]]=t[0],s[t[2]]=t[0],l[t[0]]=t[2]}),e.registerLocale=function(e){if(!e.locale)throw new TypeError("Missing localeData.locale");if(!e.countries)throw new TypeError("Missing localeData.countries");a[e.locale]=e.countries},e.alpha3ToAlpha2=C,e.alpha2ToAlpha3=p,e.alpha3ToNumeric=function(e){return l[C(e)]},e.alpha2ToNumeric=function(e){return l[e]},e.numericToAlpha3=h,e.numericToAlpha2=g,e.toAlpha3=function(e){if("string"==typeof e){if(/^[0-9]*$/.test(e))return h(e);if(2===e.length)return p(e.toUpperCase());if(3===e.length)return e.toUpperCase()}if("number"==typeof e)return h(e)},e.toAlpha2=f,e.getName=function(e,t,n={}){"select"in n||(n.select="official");try{const i=a[t.toLowerCase()][f(e)];return u(n.select,i)}catch(i){return}},e.getNames=function(e,t={}){"select"in t||(t.select="official");const n=a[e.toLowerCase()];return void 0===n?{}:function(e,t){return Object.keys(e).reduce(function(n,i){const a=e[i];return n[i]=t(a,i),n},{})}(n,function(e){return u(t.select,e)})},e.getAlpha2Code=function(e,t){const n=e=>e.toLowerCase(),i=(e,t)=>n(e)===n(t);try{const n=a[t.toLowerCase()];for(const t in n)if(d(n,t)){if("string"==typeof n[t]&&i(n[t],e))return t;if(Array.isArray(n[t]))for(const a of n[t])if(i(a,e))return t}return}catch(o){return}},e.getSimpleAlpha2Code=function(e,t){const n=e=>i(e.toLowerCase()),o=(e,t)=>n(e)===n(t);try{const n=a[t.toLowerCase()];for(const t in n)if(d(n,t)){if("string"==typeof n[t]&&o(n[t],e))return t;if(Array.isArray(n[t]))for(const i of n[t])if(o(i,e))return t}return}catch(r){return}},e.getAlpha2Codes=function(){return o},e.getAlpha3Code=function(t,n){const i=e.getAlpha2Code(t,n);return i?e.toAlpha3(i):void 0},e.getSimpleAlpha3Code=function(t,n){const i=e.getSimpleAlpha2Code(t,n);return i?e.toAlpha3(i):void 0},e.getAlpha3Codes=function(){return r},e.getNumericCodes=function(){return s},e.langs=function(){return Object.keys(a)},e.getSupportedLanguages=function(){return n},e.isValid=function(e){if(!e)return!1;const t=e.toString().toUpperCase();return d(r,t)||d(o,t)||d(s,t)}}(TM)),TM)),zM={locale:"de",countries:{AF:"Afghanistan",EG:"Ägypten",AX:"Åland",AL:"Albanien",DZ:"Algerien",AS:"Amerikanisch-Samoa",VI:"Amerikanische Jungferninseln",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua und Barbuda",GQ:"Äquatorialguinea",AR:"Argentinien",AM:"Armenien",AW:"Aruba",AZ:"Aserbaidschan",ET:"Äthiopien",AU:"Australien",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesch",BB:"Barbados",BY:"Belarus",BE:"Belgien",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivien",BQ:"Bonaire",BA:"Bosnien und Herzegowina",BW:"Botswana",BV:"Bouvetinsel",BR:"Brasilien",VG:"Britische Jungferninseln",IO:"Britisches Territorium im Indischen Ozean",BN:"Brunei Darussalam",BG:"Bulgarien",BF:"Burkina Faso",BI:"Burundi",CL:"Chile",CN:"China",CK:"Cookinseln",CR:"Costa Rica",CI:"Elfenbeinküste",CW:"Curaçao",DK:"Dänemark",DE:"Deutschland",DM:"Dominica",DO:"Dominikanische Republik",DJ:"Dschibuti",EC:"Ecuador",SV:"El Salvador",ER:"Eritrea",EE:"Estland",FK:"Falklandinseln",FO:"Färöer",FJ:"Fidschi",FI:"Finnland",FR:"Frankreich",GF:"Französisch-Guayana",PF:"Französisch-Polynesien",TF:"Französische Süd- und Antarktisgebiete",GA:"Gabun",GM:"Gambia",GE:"Georgien",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GR:"Griechenland",GL:"Grönland",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard und McDonaldinseln",HN:"Honduras",HK:["Hongkong","Hong Kong"],IN:"Indien",ID:"Indonesien",IM:"Insel Man",IQ:"Irak",IR:"Iran",IE:"Irland",IS:"Island",IL:"Israel",IT:"Italien",JM:"Jamaika",JP:"Japan",YE:"Jemen",JE:"Jersey",JO:"Jordanien",KY:"Kaimaninseln",KH:"Kambodscha",CM:"Kamerun",CA:"Kanada",CV:"Kap Verde",KZ:"Kasachstan",QA:"Katar",KE:"Kenia",KG:"Kirgisistan",KI:"Kiribati",CC:"Kokosinseln",CO:"Kolumbien",KM:"Komoren",CD:"Kongo",KP:"Nordkorea",KR:"Südkorea",HR:"Kroatien",CU:"Kuba",KW:"Kuwait",LA:"Laos",LS:"Lesotho",LV:"Lettland",LB:"Libanon",LR:"Liberia",LY:"Libyen",LI:"Liechtenstein",LT:"Litauen",LU:"Luxemburg",MO:"Macao",MG:"Madagaskar",MW:"Malawi",MY:"Malaysia",MV:"Malediven",ML:"Mali",MT:"Malta",MA:"Marokko",MH:"Marshallinseln",MQ:"Martinique",MR:"Mauretanien",MU:"Mauritius",YT:"Mayotte",MX:"Mexiko",FM:"Mikronesien",MD:"Moldawien",MC:"Monaco",MN:"Mongolei",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NC:"Neukaledonien",NZ:"Neuseeland",NI:"Nicaragua",NL:"Niederlande",NE:"Niger",NG:"Nigeria",NU:"Niue",MK:"Nordmazedonien",MP:"Nördliche Marianen",NF:"Norfolkinsel",NO:"Norwegen",OM:"Oman",AT:"Österreich",TL:"Osttimor",PK:"Pakistan",PS:"Staat Palästina",PW:"Palau",PA:"Panama",PG:"Papua-Neuguinea",PY:"Paraguay",PE:"Peru",PH:"Philippinen",PN:"Pitcairninseln",PL:"Polen",PT:"Portugal",PR:"Puerto Rico",TW:"Taiwan",CG:"Republik Kongo",RE:"Réunion",RW:"Ruanda",RO:"Rumänien",RU:["Russische Föderation","Russland"],BL:"Saint-Barthélemy",MF:"Saint-Martin",SB:"Salomonen",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé und Príncipe",SA:"Saudi-Arabien",SE:"Schweden",CH:"Schweiz",SN:"Senegal",RS:"Serbien",SC:"Seychellen",SL:"Sierra Leone",ZW:"Simbabwe",SG:"Singapur",SX:"Sint Maarten",SK:"Slowakei",SI:"Slowenien",SO:"Somalia",ES:"Spanien",LK:"Sri Lanka",SH:"St. Helena",KN:"St. Kitts und Nevis",LC:"St. Lucia",PM:"Saint-Pierre und Miquelon",VC:"St. Vincent und die Grenadinen",ZA:"Südafrika",SD:"Sudan",GS:"Südgeorgien und die Südlichen Sandwichinseln",SS:"Südsudan",SR:"Suriname",SJ:"Svalbard und Jan Mayen",SZ:"Eswatini",SY:"Syrien, Arabische Republik",TJ:"Tadschikistan",TZ:["Tansania, Vereinigte Republik","Tansania"],TH:"Thailand",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad und Tobago",TD:"Tschad",CZ:["Tschechische Republik","Tschechien"],TN:"Tunesien",TR:"Türkei",TM:"Turkmenistan",TC:"Turks- und Caicosinseln",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",HU:"Ungarn",UM:"United States Minor Outlying Islands",UY:"Uruguay",UZ:"Usbekistan",VU:"Vanuatu",VA:"Vatikanstadt",VE:"Venezuela",AE:"Vereinigte Arabische Emirate",US:["Vereinigte Staaten von Amerika","Vereinigte Staaten","USA"],GB:["Vereinigtes Königreich","Großbritannien"],VN:"Vietnam",WF:"Wallis und Futuna",CX:"Weihnachtsinsel",EH:"Westsahara",CF:"Zentralafrikanische Republik",CY:"Zypern",XK:"Kosovo"}},VM={locale:"en",countries:{AF:"Afghanistan",AL:"Albania",DZ:"Algeria",AS:"American Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarctica",AG:"Antigua and Barbuda",AR:"Argentina",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbaijan",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BY:"Belarus",BE:"Belgium",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BA:"Bosnia and Herzegovina",BW:"Botswana",BV:"Bouvet Island",BR:"Brazil",IO:"British Indian Ocean Territory",BN:"Brunei Darussalam",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodia",CM:"Cameroon",CA:"Canada",CV:"Cape Verde",KY:"Cayman Islands",CF:"Central African Republic",TD:"Chad",CL:"Chile",CN:["People's Republic of China","China"],CX:"Christmas Island",CC:"Cocos (Keeling) Islands",CO:"Colombia",KM:"Comoros",CG:["Republic of the Congo","Congo"],CD:["Democratic Republic of the Congo","Congo"],CK:"Cook Islands",CR:"Costa Rica",CI:["Cote d'Ivoire","Côte d'Ivoire","Ivory Coast"],HR:"Croatia",CU:"Cuba",CY:"Cyprus",CZ:["Czech Republic","Czechia"],DK:"Denmark",DJ:"Djibouti",DM:"Dominica",DO:"Dominican Republic",EC:"Ecuador",EG:"Egypt",SV:"El Salvador",GQ:"Equatorial Guinea",ER:"Eritrea",EE:"Estonia",ET:"Ethiopia",FK:"Falkland Islands (Malvinas)",FO:"Faroe Islands",FJ:"Fiji",FI:"Finland",FR:"France",GF:"French Guiana",PF:"French Polynesia",TF:"French Southern Territories",GA:"Gabon",GM:["Republic of The Gambia","The Gambia","Gambia"],GE:"Georgia",DE:"Germany",GH:"Ghana",GI:"Gibraltar",GR:"Greece",GL:"Greenland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard Island and McDonald Islands",VA:"Holy See (Vatican City State)",HN:"Honduras",HK:"Hong Kong",HU:"Hungary",IS:"Iceland",IN:"India",ID:"Indonesia",IR:["Islamic Republic of Iran","Iran"],IQ:"Iraq",IE:"Ireland",IL:"Israel",IT:"Italy",JM:"Jamaica",JP:"Japan",JO:"Jordan",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"North Korea",KR:["South Korea","Korea, Republic of","Republic of Korea"],KW:"Kuwait",KG:"Kyrgyzstan",LA:"Lao People's Democratic Republic",LV:"Latvia",LB:"Lebanon",LS:"Lesotho",LR:"Liberia",LY:"Libya",LI:"Liechtenstein",LT:"Lithuania",LU:"Luxembourg",MO:"Macao",MG:"Madagascar",MW:"Malawi",MY:"Malaysia",MV:"Maldives",ML:"Mali",MT:"Malta",MH:"Marshall Islands",MQ:"Martinique",MR:"Mauritania",MU:"Mauritius",YT:"Mayotte",MX:"Mexico",FM:"Micronesia, Federated States of",MD:"Moldova, Republic of",MC:"Monaco",MN:"Mongolia",MS:"Montserrat",MA:"Morocco",MZ:"Mozambique",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:["Netherlands","The Netherlands","Netherlands (Kingdom of the)"],NC:"New Caledonia",NZ:"New Zealand",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk Island",MK:["The Republic of North Macedonia","North Macedonia"],MP:"Northern Mariana Islands",NO:"Norway",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:["State of Palestine","Palestine"],PA:"Panama",PG:"Papua New Guinea",PY:"Paraguay",PE:"Peru",PH:"Philippines",PN:["Pitcairn","Pitcairn Islands"],PL:"Poland",PT:"Portugal",PR:"Puerto Rico",QA:"Qatar",RE:"Reunion",RO:"Romania",RU:["Russian Federation","Russia"],RW:"Rwanda",SH:"Saint Helena",KN:"Saint Kitts and Nevis",LC:"Saint Lucia",PM:"Saint Pierre and Miquelon",VC:"Saint Vincent and the Grenadines",WS:"Samoa",SM:"San Marino",ST:"Sao Tome and Principe",SA:"Saudi Arabia",SN:"Senegal",SC:"Seychelles",SL:"Sierra Leone",SG:"Singapore",SK:"Slovakia",SI:"Slovenia",SB:"Solomon Islands",SO:"Somalia",ZA:"South Africa",GS:"South Georgia and the South Sandwich Islands",ES:"Spain",LK:"Sri Lanka",SD:"Sudan",SR:"Suriname",SJ:"Svalbard and Jan Mayen",SZ:"Eswatini",SE:"Sweden",CH:"Switzerland",SY:"Syrian Arab Republic",TW:["Taiwan, Province of China","Taiwan"],TJ:"Tajikistan",TZ:["United Republic of Tanzania","Tanzania"],TH:"Thailand",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad and Tobago",TN:"Tunisia",TR:["Türkiye","Turkey"],TM:"Turkmenistan",TC:"Turks and Caicos Islands",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",AE:["United Arab Emirates","UAE"],GB:["United Kingdom","UK","Great Britain"],US:["United States of America","United States","USA","U.S.A.","US","U.S."],UM:"United States Minor Outlying Islands",UY:"Uruguay",UZ:"Uzbekistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Virgin Islands, British",VI:"Virgin Islands, U.S.",WF:"Wallis and Futuna",EH:"Western Sahara",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabwe",AX:["Åland Islands","Aland Islands"],BQ:"Bonaire, Sint Eustatius and Saba",CW:"Curaçao",GG:"Guernsey",IM:"Isle of Man",JE:"Jersey",ME:"Montenegro",BL:"Saint Barthélemy",MF:"Saint Martin (French part)",RS:"Serbia",SX:"Sint Maarten (Dutch part)",SS:"South Sudan",XK:"Kosovo"}},RM={locale:"et",countries:{AF:"Afganistan",AX:"Ahvenamaa",AL:"Albaania",DZ:"Alžeeria",AS:"Ameerika Samoa",US:"Ameerika Ühendriigid",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua ja Barbuda",MO:"Aomen - Hiina erihalduspiirkond",AE:"Araabia Ühendemiraadid",AR:"Argentina",AM:"Armeenia",AW:"Aruba",AZ:"Aserbaidžaan",AU:"Austraalia",AT:"Austria",BS:"Bahama",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",PW:"Belau",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Boliivia",BA:"Bosnia ja Hertsegoviina",BW:"Botswana",BV:"Bouvet’i saar",BR:"Brasiilia",BQ:"Bonaire, Sint Eustatius ja Saba",IO:"Briti India ookeani ala",VG:"Briti Neitsisaared",BN:"Brunei",BG:"Bulgaaria",BF:"Burkina Faso",BI:"Burundi",CO:"Colombia",CK:"Cooki saared",CR:"Costa Rica",CI:"Côte d'Ivoire",CW:"Curaçao",DJ:"Djibouti",DM:"Dominica",DO:"Dominikaani Vabariik",EC:"Ecuador",EE:"Eesti",EG:"Egiptus",GQ:"Ekvatoriaal-Guinea",SV:"El Salvador",ER:"Eritrea",ET:"Etioopia",FK:"Falklandi saared",FJ:"Fidži",PH:"Filipiinid",FO:"Fääri saared",GA:"Gabon",GM:"Gambia",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GE:"Gruusia",GL:"Gröönimaa",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard ja McDonald saared",CN:"Hiina",ES:"Hispaania",NL:"Holland",HN:"Honduras",HK:"Hongkong - Hiina erihalduspiirkond",HR:"Horvaatia",TL:"Ida-Timor",IE:"Iirimaa",IL:"Iisrael",IN:"India",ID:"Indoneesia",IQ:"Iraak",IR:"Iraan",IS:"Island",IT:"Itaalia",JP:"Jaapan",JM:"Jamaica",YE:"Jeemen",JE:"Jersey",JO:"Jordaania",CX:"Jõulusaar",KY:"Kaimanisaared",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",KZ:"Kasahstan",QA:"Katar",KE:"Kenya",CF:"Kesk-Aafrika Vabariik",KI:"Kiribati",KM:"Komoorid",CD:"Kongo DV",CG:"Kongo-Brazzaville",CC:"Kookossaared",GR:"Kreeka",CU:"Kuuba",KW:"Kuveit",KG:"Kõrgõzstan",CY:"Küpros",LA:"Laos",LT:"Leedu",LS:"Lesotho",LR:"Libeeria",LI:"Liechtenstein",LB:"Liibanon",LY:"Liibüa",LU:"Luksemburg",ZA:"Lõuna-Aafrika Vabariik",GS:"Lõuna-Georgia ja Lõuna-Sandwichi saared",KR:"Lõuna-Korea",LV:"Läti",EH:"Lääne-Sahara",MG:"Madagaskar",MY:"Malaisia",MW:"Malawi",MV:"Maldiivid",ML:"Mali",MT:"Malta",IM:"Mani saar",MA:"Maroko",MH:"Marshalli saared",MQ:"Martinique",MR:"Mauritaania",MU:"Mauritius",YT:"Mayotte",MX:"Mehhiko",FM:"Mikroneesia Liiduriigid",MD:"Moldova",MC:"Monaco",MN:"Mongoolia",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambiik",MM:"Myanmar",NA:"Namiibia",NR:"Nauru",NP:"Nepal",NI:"Nicaragua",NG:"Nigeeria",NE:"Niger",NU:"Niue",NF:"Norfolk",NO:"Norra",OM:"Omaan",PG:"Paapua Uus-Guinea",PK:"Pakistan",PS:"Palestiina ala",PA:"Panama",PY:"Paraguay",PE:"Peruu",PN:"Pitcairn",PL:"Poola",PT:"Portugal",GF:"Prantsuse Guajaana",TF:"Prantsuse Lõunaalad",PF:"Prantsuse Polüneesia",FR:"Prantsusmaa",PR:"Puerto Rico",KP:"Põhja-Korea",MK:"Põhja-Makedoonia",MP:"Põhja-Mariaanid",RE:"Réunion",CV:"Roheneemesaared",SE:"Rootsi",SX:"Sint Maarten",RO:"Rumeenia",RW:"Rwanda",SB:"Saalomoni Saared",BL:"Saint Barthélemy",SH:"Saint Helena",KN:"Saint Kitts ja Nevis",LC:"Saint Lucia",MF:"Saint Martin",PM:"Saint Pierre ja Miquelon",VC:"Saint Vincent ja Grenadiinid",DE:"Saksamaa",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé ja Príncipe",SA:"Saudi Araabia",SC:"Seišellid",SN:"Senegal",RS:"Serbia",SL:"Sierra Leone",SG:"Singapur",SK:"Slovakkia",SI:"Sloveenia",SO:"Somaalia",FI:"Soome",LK:"Sri Lanka",SD:"Sudaan",SS:"Lõuna-Sudaan",SR:"Suriname",GB:"Suurbritannia",SZ:"Svaasimaa",SJ:"Svalbard ja Jan Mayen",SY:"Süüria",CH:"Šveits",ZW:"Zimbabwe",DK:"Taani",TJ:"Tadžikistan",TH:"Tai",TW:"Taiwan",TZ:"Tansaania",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad ja Tobago",TD:"Tšaad",CZ:"Tšehhi",CL:"Tšiili",TN:"Tuneesia",TC:"Turks ja Caicos",TV:"Tuvalu",TR:"Türgi",TM:"Türkmenistan",UG:"Uganda",UA:"Ukraina",HU:"Ungari",UY:"Uruguay",VI:"USA Neitsisaared",UZ:"Usbekistan",NC:"Uus-Kaledoonia",NZ:"Uus-Meremaa",BY:"Valgevene",WF:"Wallis ja Futuna",VU:"Vanuatu",VA:"Vatikan",RU:"Venemaa",VE:"Venezuela",VN:"Vietnam",UM:"Ühendriikide hajasaared",XK:"Kosovo"}},OM={locale:"lv",countries:{AD:"Andora",AE:"Apvienotie Arābu Emirāti",AF:"Afganistāna",AG:"Antigva un Barbuda",AI:"Angilja",AL:"Albānija",AM:"Armēnija",AO:"Angola",AQ:"Antarktika",AR:"Argentīna",AS:"ASV Samoa",AT:"Austrija",AU:"Austrālija",AW:"Aruba",AX:"Olandes salas",AZ:"Azerbaidžāna",BA:"Bosnija un Hercegovina",BB:"Barbadosa",BD:"Bangladeša",BE:"Beļģija",BF:"Burkinafaso",BG:"Bulgārija",BH:"Bahreina",BI:"Burundija",BJ:"Benina",BL:"Senbartelmī",BM:"Bermudu salas",BN:"Bruneja",BO:"Bolīvija",BQ:"Nīderlandes Karību salas",BR:"Brazīlija",BS:"Bahamu salas",BT:"Butāna",BV:"Buvē sala",BW:"Botsvāna",BY:"Baltkrievija",BZ:"Beliza",CA:"Kanāda",CC:"Kokosu (Kīlinga) salas",CD:"Kongo (Kinšasa)",CF:"Centrālāfrikas Republika",CG:"Kongo (Brazavila)",CH:"Šveice",CI:"Kotdivuāra",CK:"Kuka salas",CL:"Čīle",CM:"Kamerūna",CN:"Ķīna",CO:"Kolumbija",CR:"Kostarika",CU:"Kuba",CV:"Kaboverde",CW:"Kirasao",CX:"Ziemsvētku sala",CY:"Kipra",CZ:"Čehija",DE:"Vācija",DJ:"Džibutija",DK:"Dānija",DM:"Dominika",DO:"Dominikāna",DZ:"Alžīrija",EC:"Ekvadora",EE:"Igaunija",EG:"Ēģipte",EH:"Rietumsahāra",ER:"Eritreja",ES:"Spānija",ET:"Etiopija",FI:"Somija",FJ:"Fidži",FK:"Folklenda salas",FM:"Mikronēzija",FO:"Fēru salas",FR:"Francija",GA:"Gabona",GB:"Lielbritānija",GD:"Grenāda",GE:"Gruzija",GF:"Francijas Gviāna",GG:"Gērnsija",GH:"Gana",GI:"Gibraltārs",GL:"Grenlande",GM:"Gambija",GN:"Gvineja",GP:"Gvadelupa",GQ:"Ekvatoriālā Gvineja",GR:"Grieķija",GS:"Dienviddžordžija un Dienvidsendviču salas",GT:"Gvatemala",GU:"Guama",GW:"Gvineja-Bisava",GY:"Gajāna",HK:"Ķīnas īpašās pārvaldes apgabals Honkonga",HM:"Hērda sala un Makdonalda salas",HN:"Hondurasa",HR:"Horvātija",HT:"Haiti",HU:"Ungārija",ID:"Indonēzija",IE:"Īrija",IL:"Izraēla",IM:"Mena",IN:"Indija",IO:"Indijas okeāna Britu teritorija",IQ:"Irāka",IR:"Irāna",IS:"Islande",IT:"Itālija",JE:"Džērsija",JM:"Jamaika",JO:"Jordānija",JP:"Japāna",KE:"Kenija",KG:"Kirgizstāna",KH:"Kambodža",KI:"Kiribati",KM:"Komoru salas",KN:"Sentkitsa un Nevisa",KP:"Ziemeļkoreja",KR:"Dienvidkoreja",KW:"Kuveita",KY:"Kaimanu salas",KZ:"Kazahstāna",LA:"Laosa",LB:"Libāna",LC:"Sentlūsija",LI:"Lihtenšteina",LK:"Šrilanka",LR:"Libērija",LS:"Lesoto",LT:"Lietuva",LU:"Luksemburga",LV:"Latvija",LY:"Lībija",MA:"Maroka",MC:"Monako",MD:"Moldova",ME:"Melnkalne",MF:"Senmartēna",MG:"Madagaskara",MH:"Māršala salas",MK:"Ziemeļmaķedonija",ML:"Mali",MM:"Mjanma (Birma)",MN:"Mongolija",MO:"Ķīnas īpašās pārvaldes apgabals Makao",MP:"Ziemeļu Marianas salas",MQ:"Martinika",MR:"Mauritānija",MS:"Montserrata",MT:"Malta",MU:"Maurīcija",MV:"Maldīvija",MW:"Malāvija",MX:"Meksika",MY:"Malaizija",MZ:"Mozambika",NA:"Namībija",NC:"Jaunkaledonija",NE:"Nigēra",NF:"Norfolkas sala",NG:"Nigērija",NI:"Nikaragva",NL:"Nīderlande",NO:"Norvēģija",NP:"Nepāla",NR:"Nauru",NU:"Niue",NZ:"Jaunzēlande",OM:"Omāna",PA:"Panama",PE:"Peru",PF:"Francijas Polinēzija",PG:"Papua-Jaungvineja",PH:"Filipīnas",PK:"Pakistāna",PL:"Polija",PM:"Senpjēra un Mikelona",PN:"Pitkērnas salas",PR:"Puertoriko",PS:"Palestīna",PT:"Portugāle",PW:"Palau",PY:"Paragvaja",QA:"Katara",RE:"Reinjona",RO:"Rumānija",RS:"Serbija",RU:"Krievija",RW:"Ruanda",SA:"Saūda Arābija",SB:"Zālamana salas",SC:"Seišelu salas",SD:"Sudāna",SE:"Zviedrija",SG:"Singapūra",SH:"Sv.Helēnas sala",SI:"Slovēnija",SJ:"Svalbāra un Jana Majena sala",SK:"Slovākija",SL:"Sjerraleone",SM:"Sanmarīno",SN:"Senegāla",SO:"Somālija",SR:"Surinama",SS:"Dienvidsudāna",ST:"Santome un Prinsipi",SV:"Salvadora",SX:"Sintmārtena",SY:"Sīrija",SZ:"Svazilenda",TC:"Tērksas un Kaikosas salas",TD:"Čada",TF:"Francijas Dienvidjūru teritorija",TG:"Togo",TH:"Taizeme",TJ:"Tadžikistāna",TK:"Tokelau",TL:"Austrumtimora",TM:"Turkmenistāna",TN:"Tunisija",TO:"Tonga",TR:"Turcija",TT:"Trinidāda un Tobāgo",TV:"Tuvalu",TW:"Taivāna",TZ:"Tanzānija",UA:"Ukraina",UG:"Uganda",UM:"ASV Mazās Aizjūras salas",US:"Amerikas Savienotās Valstis",UY:"Urugvaja",UZ:"Uzbekistāna",VA:"Vatikāns",VC:"Sentvinsenta un Grenadīnas",VE:"Venecuēla",VG:"Britu Virdžīnas",VI:"ASV Virdžīnas",VN:"Vjetnama",VU:"Vanuatu",WF:"Volisa un Futunas salas",WS:"Samoa",XK:"Kosova",YE:"Jemena",YT:"Majota",ZA:"Dienvidāfrikas Republika",ZM:"Zambija",ZW:"Zimbabve"}},PM={locale:"lt",countries:{AD:"Andora",AE:"Jungtiniai Arabų Emyratai",AF:"Afganistanas",AG:"Antigva ir Barbuda",AI:"Angilija",AL:"Albanija",AM:"Armėnija",AO:"Angola",AQ:"Antarktida",AR:"Argentina",AS:"Amerikos Samoa",AT:"Austrija",AU:"Australija",AW:"Aruba",AX:"Alandų Salos",AZ:"Azerbaidžanas",BA:"Bosnija ir Hercegovina",BB:"Barbadosas",BD:"Bangladešas",BE:"Belgija",BF:"Burkina Fasas",BG:"Bulgarija",BH:"Bahreinas",BI:"Burundis",BJ:"Beninas",BL:"Sen Bartelemi",BM:"Bermuda",BN:"Brunėjus",BO:"Bolivija",BQ:"Karibų Nyderlandai",BR:"Brazilija",BS:"Bahamos",BT:"Butanas",BV:"Buvė Sala",BW:"Botsvana",BY:"Baltarusija",BZ:"Belizas",CA:"Kanada",CC:"Kokosų (Kilingo) Salos",CD:"Kongas-Kinšasa",CF:"Centrinės Afrikos Respublika",CG:"Kongas-Brazavilis",CH:"Šveicarija",CI:"Dramblio Kaulo Krantas",CK:"Kuko Salos",CL:"Čilė",CM:"Kamerūnas",CN:"Kinija",CO:"Kolumbija",CR:"Kosta Rika",CU:"Kuba",CV:"Žaliasis Kyšulys",CW:"Kiurasao",CX:"Kalėdų Sala",CY:"Kipras",CZ:"Čekija",DE:"Vokietija",DJ:"Džibutis",DK:"Danija",DM:"Dominika",DO:"Dominikos Respublika",DZ:"Alžyras",EC:"Ekvadoras",EE:"Estija",EG:"Egiptas",EH:"Vakarų Sachara",ER:"Eritrėja",ES:"Ispanija",ET:"Etiopija",FI:"Suomija",FJ:"Fidžis",FK:"Folklando Salos",FM:"Mikronezija",FO:"Farerų Salos",FR:"Prancūzija",GA:"Gabonas",GB:"Jungtinė Karalystė",GD:"Grenada",GE:["Sakartvelas","Gruzija"],GF:"Prancūzijos Gviana",GG:"Gernsis",GH:"Gana",GI:"Gibraltaras",GL:"Grenlandija",GM:"Gambija",GN:"Gvinėja",GP:"Gvadelupa",GQ:"Pusiaujo Gvinėja",GR:"Graikija",GS:"Pietų Džordžija ir Pietų Sandvičo salos",GT:"Gvatemala",GU:"Guamas",GW:"Bisau Gvinėja",GY:"Gajana",HK:"Honkongas",HM:"Herdo ir Makdonaldo Salos",HN:"Hondūras",HR:"Kroatija",HT:"Haitis",HU:"Vengrija",ID:"Indonezija",IE:"Airija",IL:"Izraelis",IM:"Meno Sala",IN:"Indija",IO:"Indijos Vandenyno Britų Sritis",IQ:"Irakas",IR:"Iranas",IS:"Islandija",IT:"Italija",JE:"Džersis",JM:"Jamaika",JO:"Jordanija",JP:"Japonija",KE:"Kenija",KG:"Kirgizija",KH:"Kambodža",KI:"Kiribatis",KM:"Komorai",KN:"Sent Kitsas ir Nevis",KP:"Šiaurės Korėja",KR:"Pietų Korėja",KW:"Kuveitas",KY:"Kaimanų Salos",KZ:"Kazachstanas",LA:"Laosas",LB:"Libanas",LC:"Sent Lusija",LI:"Lichtenšteinas",LK:"Šri Lanka",LR:"Liberija",LS:"Lesotas",LT:"Lietuva",LU:"Liuksemburgas",LV:"Latvija",LY:"Libija",MA:"Marokas",MC:"Monakas",MD:"Moldova",ME:"Juodkalnija",MF:"Sen Martenas",MG:"Madagaskaras",MH:"Maršalo Salos",MK:"Šiaurės Makedonija",ML:"Malis",MM:"Mianmaras (Birma)",MN:"Mongolija",MO:"Makao",MP:"Marianos Šiaurinės Salos",MQ:"Martinika",MR:"Mauritanija",MS:"Montseratas",MT:"Malta",MU:"Mauricijus",MV:"Maldyvai",MW:"Malavis",MX:"Meksika",MY:"Malaizija",MZ:"Mozambikas",NA:"Namibija",NC:"Naujoji Kaledonija",NE:"Nigeris",NF:"Norfolko sala",NG:"Nigerija",NI:"Nikaragva",NL:"Nyderlandai",NO:"Norvegija",NP:"Nepalas",NR:"Nauru",NU:"Niujė",NZ:"Naujoji Zelandija",OM:"Omanas",PA:"Panama",PE:"Peru",PF:"Prancūzijos Polinezija",PG:"Papua Naujoji Gvinėja",PH:"Filipinai",PK:"Pakistanas",PL:"Lenkija",PM:"Sen Pjeras ir Mikelonas",PN:"Pitkerno salos",PR:"Puerto Rikas",PS:"Palestinos teritorija",PT:"Portugalija",PW:"Palau",PY:"Paragvajus",QA:"Kataras",RE:"Reunjonas",RO:"Rumunija",RS:"Serbija",RU:"Rusija",RW:"Ruanda",SA:"Saudo Arabija",SB:"Saliamono Salos",SC:"Seišeliai",SD:"Sudanas",SE:"Švedija",SG:"Singapūras",SH:"Šv. Elenos Sala",SI:"Slovėnija",SJ:"Svalbardas ir Janas Majenas",SK:"Slovakija",SL:"Siera Leonė",SM:"San Marinas",SN:"Senegalas",SO:"Somalis",SR:"Surinamas",SS:"Pietų Sudanas",ST:"San Tomė ir Prinsipė",SV:"Salvadoras",SX:"Sint Martenas",SY:"Sirija",SZ:"Svazilandas",TC:"Terkso ir Kaikoso Salos",TD:"Čadas",TF:"Prancūzijos Pietų sritys",TG:"Togas",TH:"Tailandas",TJ:"Tadžikija",TK:"Tokelau",TL:"Rytų Timoras",TM:"Turkmėnistanas",TN:"Tunisas",TO:"Tonga",TR:"Turkija",TT:"Trinidadas ir Tobagas",TV:"Tuvalu",TW:"Taivanas",TZ:"Tanzanija",UA:"Ukraina",UG:"Uganda",UM:"Jungtinių Valstijų Mažosios Tolimosios Salos",US:"Jungtinės Valstijos",UY:"Urugvajus",UZ:"Uzbekistanas",VA:"Vatikano Miesto Valstybė",VC:"Šventasis Vincentas ir Grenadinai",VE:"Venesuela",VG:"Didžiosios Britanijos Mergelių Salos",VI:"Jungtinių Valstijų Mergelių Salos",VN:"Vietnamas",VU:"Vanuatu",WF:"Volisas ir Futūna",WS:"Samoa",XK:"Kosovas",YE:"Jemenas",YT:"Majotas",ZA:"Pietų Afrika",ZM:"Zambija",ZW:"Zimbabvė"}},UM={locale:"ru",countries:{AU:"Австралия",AT:"Австрия",AZ:"Азербайджан",AX:"Аландские острова",AL:"Албания",DZ:"Алжир",VI:"Виргинские Острова (США)",AS:"Американское Самоа",AI:"Ангилья",AO:"Ангола",AD:"Андорра",AQ:"Антарктида",AG:"Антигуа и Барбуда",AR:"Аргентина",AM:"Армения",AW:"Аруба",AF:"Афганистан",BS:"Багамы",BD:"Бангладеш",BB:"Барбадос",BH:"Бахрейн",BZ:"Белиз",BY:"Беларусь",BE:"Бельгия",BJ:"Бенин",BM:"Бермуды",BG:"Болгария",BO:"Боливия",BQ:"Бонэйр, Синт-Эстатиус и Саба",BA:"Босния и Герцеговина",BW:"Ботсвана",BR:"Бразилия",IO:"Британская территория в Индийском океане",VG:"Виргинские Острова (Великобритания)",BN:"Бруней",BF:"Буркина-Фасо",BI:"Бурунди",BT:"Бутан",VU:"Вануату",VA:"Ватикан",GB:"Великобритания",HU:"Венгрия",VE:"Венесуэла",UM:"Внешние малые острова (США)",TL:"Восточный Тимор",VN:"Вьетнам",GA:"Габон",HT:"Гаити",GY:"Гайана",GM:"Гамбия",GH:"Гана",GP:"Гваделупа",GT:"Гватемала",GF:"Гвиана",GN:"Гвинея",GW:"Гвинея-Бисау",DE:"Германия",GG:"Гернси",GI:"Гибралтар",HN:"Гондурас",HK:"Гонконг",GD:"Гренада",GL:"Гренландия",GR:"Греция",GE:"Грузия",GU:"Гуам",DK:"Дания",JE:"Джерси",DJ:"Джибути",DM:"Доминика",DO:"Доминиканская Республика",CD:"Демократическая Республика Конго",EG:"Египет",ZM:"Замбия",EH:"САДР",ZW:"Зимбабве",IL:"Израиль",IN:"Индия",ID:"Индонезия",JO:"Иордания",IQ:"Ирак",IR:"Иран",IE:"Ирландия",IS:"Исландия",ES:"Испания",IT:"Италия",YE:"Йемен",CV:"Кабо-Верде",KZ:"Казахстан",KY:"Острова Кайман",KH:"Камбоджа",CM:"Камерун",CA:"Канада",QA:"Катар",KE:"Кения",CY:"Кипр",KG:"Киргизия",KI:"Кирибати",TW:["Тайвань","Китайская Республика"],KP:"КНДР (Корейская Народно-Демократическая Республика)",CN:"КНР (Китайская Народная Республика)",CC:"Кокосовые острова",CO:"Колумбия",KM:"Коморы",CR:"Коста-Рика",CI:"Кот-д’Ивуар",CU:"Куба",KW:"Кувейт",CW:"Кюрасао",LA:"Лаос",LV:"Латвия",LS:"Лесото",LR:"Либерия",LB:"Ливан",LY:"Ливия",LT:"Литва",LI:"Лихтенштейн",LU:"Люксембург",MU:"Маврикий",MR:"Мавритания",MG:"Мадагаскар",YT:"Майотта",MO:"Макао",MW:"Малави",MY:"Малайзия",ML:"Мали",MV:"Мальдивы",MT:"Мальта",MA:"Марокко",MQ:"Мартиника",MH:"Маршалловы Острова",MX:"Мексика",FM:"Микронезия",MZ:"Мозамбик",MD:"Молдавия",MC:"Монако",MN:"Монголия",MS:"Монтсеррат",MM:"Мьянма",NA:"Намибия",NR:"Науру",NP:"Непал",NE:"Нигер",NG:"Нигерия",NL:"Нидерланды",NI:"Никарагуа",NU:"Ниуэ",NZ:"Новая Зеландия",NC:"Новая Каледония",NO:"Норвегия",AE:"ОАЭ",OM:"Оман",BV:"Остров Буве",IM:"Остров Мэн",CK:"Острова Кука",NF:"Остров Норфолк",CX:"Остров Рождества",PN:"Острова Питкэрн",SH:"Острова Святой Елены, Вознесения и Тристан-да-Кунья",PK:"Пакистан",PW:"Палау",PS:"Государство Палестина",PA:"Панама",PG:"Папуа — Новая Гвинея",PY:"Парагвай",PE:"Перу",PL:"Польша",PT:"Португалия",PR:"Пуэрто-Рико",CG:"Республика Конго",KR:"Республика Корея",RE:"Реюньон",RU:["Российская Федерация","Россия"],RW:"Руанда",RO:"Румыния",SV:"Сальвадор",WS:"Самоа",SM:"Сан-Марино",ST:"Сан-Томе и Принсипи",SA:"Саудовская Аравия",SZ:"Эсватини",MK:"Северная Македония",MP:"Северные Марианские Острова",SC:"Сейшельские Острова",BL:"Сен-Бартелеми",MF:"Сен-Мартен",PM:"Сен-Пьер и Микелон",SN:"Сенегал",VC:"Сент-Винсент и Гренадины",KN:"Сент-Китс и Невис",LC:"Сент-Люсия",RS:"Сербия",SG:"Сингапур",SX:"Синт-Мартен",SY:"Сирия",SK:"Словакия",SI:"Словения",SB:"Соломоновы Острова",SO:"Сомали",SD:"Судан",SR:"Суринам",US:"США",SL:"Сьерра-Леоне",TJ:"Таджикистан",TH:"Таиланд",TZ:"Танзания",TC:"Теркс и Кайкос",TG:"Того",TK:"Токелау",TO:"Тонга",TT:"Тринидад и Тобаго",TV:"Тувалу",TN:"Тунис",TM:"Туркмения",TR:"Турция",UG:"Уганда",UZ:"Узбекистан",UA:"Украина",WF:"Уоллис и Футуна",UY:"Уругвай",FO:"Фареры",FJ:"Фиджи",PH:"Филиппины",FI:"Финляндия",FK:"Фолклендские острова",FR:"Франция",PF:"Французская Полинезия",TF:"Французские Южные и Антарктические Территории",HM:"Херд и Макдональд",HR:"Хорватия",CF:"ЦАР",TD:"Чад",ME:"Черногория",CZ:"Чехия",CL:"Чили",CH:"Швейцария",SE:"Швеция",SJ:"Шпицберген и Ян-Майен",LK:"Шри-Ланка",EC:"Эквадор",GQ:"Экваториальная Гвинея",ER:"Эритрея",EE:"Эстония",ET:"Эфиопия",ZA:"ЮАР",GS:"Южная Георгия и Южные Сандвичевы Острова",SS:"Южный Судан",JM:"Ямайка",JP:"Япония",XK:"Косово"}},GM={locale:"es",countries:{AF:"Afganistán",AL:"Albania",DZ:"Argelia",AS:"Samoa Americana",AD:"Andorra",AO:"Angola",AI:"Anguila",AQ:"Antártida",AG:"Antigua y Barbuda",AR:"Argentina",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbaiyán",BS:"Bahamas",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",BY:"Bielorrusia",BE:"Bélgica",BZ:"Belice",BJ:"Benin",BM:"Bermudas",BT:"Bután",BO:"Bolivia",BA:"Bosnia y Herzegovina",BW:"Botswana",BV:"Isla Bouvet",BR:"Brasil",IO:"Territorio Británico del Océano Índico",BN:"Brunei Darussalam",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Camboya",CM:"Camerún",CA:"Canadá",CV:"Cabo Verde",KY:"Islas Caimán",CF:"República Centroafricana",TD:"Chad",CL:"Chile",CN:"China",CX:"Isla de Navidad",CC:"Islas Cocos (Keeling)",CO:"Colombia",KM:"Comoras",CG:"Congo",CD:"Congo (República Democrática del)",CK:"Islas Cook",CR:"Costa Rica",CI:"Costa de Marfil",HR:"Croacia",CU:"Cuba",CY:"Chipre",CZ:"República Checa",DK:"Dinamarca",DJ:"Yibuti",DM:"Dominica",DO:"República Dominicana",EC:"Ecuador",EG:"Egipto",SV:"El Salvador",GQ:"Guinea Ecuatorial",ER:"Eritrea",EE:"Estonia",ET:"Etiopía",FK:"Islas Malvinas",FO:"Islas Feroe",FJ:"Fiji",FI:"Finlandia",FR:"Francia",GF:"Guayana Francesa",PF:"Polinesia Francesa",TF:"Tierras Australes Francesas",GA:"Gabón",GM:"Gambia",GE:"Georgia",DE:"Alemania",GH:"Ghana",GI:"Gibraltar",GR:"Grecia",GL:"Groenlandia",GD:"Granada",GP:"Guadalupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea Bissau",GY:"Guyana",HT:"Haití",HM:"Heard e Islas McDonald",VA:"Santa Sede",HN:"Honduras",HK:"Hong Kong",HU:"Hungría",IS:"Islandia",IN:"India",ID:"Indonesia",IR:["Irán","República Islámica de Irán"],IQ:"Iraq",IE:"Irlanda",IL:"Israel",IT:"Italia",JM:"Jamaica",JP:"Japón",JO:"Jordania",KZ:"Kazajistán",KE:"Kenia",KI:"Kiribati",KP:"República Popular Democrática de Corea",KR:"República de Corea",KW:"Kuwait",KG:"Kirguistán",LA:"República Democrática Popular de Lao",LV:"Letonia",LB:"Líbano",LS:"Lesoto",LR:"Liberia",LY:"Libia",LI:"Liechtenstein",LT:"Lituania",LU:"Luxemburgo",MO:"Macao",MK:"Macedonia del Norte",MG:"Madagascar",MW:"Malaui",MY:"Malasia",MV:"Maldivas",ML:"Malí",MT:"Malta",MH:"Islas Marshall",MQ:"Martinica",MR:"Mauritania",MU:"Mauricio",YT:"Mayotte",MX:"México",FM:"Micronesia",MD:"Moldavia",MC:"Mónaco",MN:"Mongolia",MS:"Montserrat",MA:"Marruecos",MZ:"Mozambique",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Países Bajos",NC:"Nueva Caledonia",NZ:"Nueva Zelanda",NI:"Nicaragua",NE:"Níger",NG:"Nigeria",NU:"Niue",NF:"Isla Norfolk",MP:"Islas Marianas del Norte",NO:"Noruega",OM:"Omán",PK:"Pakistán",PW:"Palau",PS:"Palestina",PA:"Panamá",PG:"Papua Nueva Guinea",PY:"Paraguay",PE:"Perú",PH:"Filipinas",PN:"Pitcairn",PL:"Polonia",PT:"Portugal",PR:"Puerto Rico",QA:"Catar",RE:"Reunión",RO:"Rumanía",RU:"Rusia",RW:"Ruanda",SH:"Santa Helena, Ascensión y Tristán de Acuña",KN:"Saint Kitts y Nevis",LC:"Santa Lucía",PM:"San Pedro y Miquelón",VC:"San Vicente y las Granadinas",WS:"Samoa",SM:"San Marino",ST:"Santo Tomé y Príncipe",SA:"Arabia Saudita",SN:"Senegal",SC:"Seychelles",SL:"Sierra Leona",SG:"Singapur",SK:"Eslovaquia",SI:"Eslovenia",SB:"Islas Salomón",SO:"Somalia",ZA:"Sudáfrica",GS:"Georgia del Sur y las Islas Sandwich del Sur",ES:"España",LK:"Sri Lanka",SD:"Sudán",SR:"Suriname",SJ:"Svalbard y Jan Mayen",SZ:"Esuatini",SE:"Suecia",CH:"Suiza",SY:"República Árabe Siria",TW:"Taiwán",TJ:"Tayikistán",TZ:"Tanzania",TH:"Tailandia",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad y Tobago",TN:"Túnez",TR:"Turquía",TM:"Turkmenistán",TC:"Islas Turcas y Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ucrania",AE:"Emiratos Árabes Unidos",GB:"Reino Unido",US:"Estados Unidos",UM:"Islas Ultramarinas Menores de los Estados Unidos",UY:"Uruguay",UZ:"Uzbekistán",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Islas Vírgenes británicas",VI:"Islas Vírgenes de los Estados Unidos",WF:"Wallis y Futuna",EH:"Sahara Occidental",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabue",AX:"Islas Åland",BQ:"Bonaire, San Eustaquio y Saba",CW:"Curaçao",GG:"Guernsey",IM:"Isla de Man",JE:"Jersey",ME:"Montenegro",BL:"Saint Barthélemy",MF:"Saint Martin (francesa)",RS:"Serbia",SX:"Sint Maarten (neerlandesa)",SS:"Sudán del Sur",XK:"Kosovo"}},jM={locale:"fi",countries:{AF:"Afganistan",AX:"Ahvenanmaa",NL:"Alankomaat",AL:"Albania",DZ:"Algeria",AS:"Amerikan Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua ja Barbuda",AE:"Arabiemiirikunnat",AR:"Argentiina",AM:"Armenia",AW:"Aruba",AU:"Australia",AZ:"Azerbaidžan",BS:"Bahama",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BQ:"Bonaire, Sint Eustatius ja Saba",BA:"Bosnia ja Hertsegovina",BW:"Botswana",BV:"Bouvet’nsaari",BR:"Brasilia",IO:"Brittiläinen Intian valtameren alue",VG:"Brittiläiset Neitsytsaaret",BN:"Brunei",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KY:"Caymansaaret",CL:"Chile",CK:"Cookinsaaret",CR:"Costa Rica",CW:"Curaçao",DJ:"Djibouti",DM:"Dominica",DO:"Dominikaaninen tasavalta",EC:"Ecuador",EG:"Egypti",SV:"El Salvador",ER:"Eritrea",ES:"Espanja",ET:"Etiopia",ZA:"Etelä-Afrikka",GS:"Etelä-Georgia ja Eteläiset Sandwichsaaret",SS:"Etelä-Sudan",FK:"Falklandinsaaret",FO:"Färsaaret",FJ:"Fidži",PH:"Filippiinit",GA:"Gabon",GM:"Gambia",GE:"Georgia",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GL:"Grönlanti",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard ja McDonaldinsaaret",HN:"Honduras",HK:"Hongkong",ID:"Indonesia",IN:"Intia",IQ:"Irak",IR:"Iran",IE:"Irlanti",IS:"Islanti",IL:"Israel",IT:"Italia",TL:"Itä-Timor",AT:"Itävalta",JM:"Jamaika",JP:"Japani",YE:"Jemen",JE:"Jersey",JO:"Jordania",CX:"Joulusaari",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",CV:"Kap Verde",KZ:"Kazakstan",KE:"Kenia",CF:"Keski-Afrikan tasavalta",CN:"Kiina",KG:"Kirgisia",KI:"Kiribati",CO:"Kolumbia",KM:"Komorit",CD:"Kongon demokraattinen tasavalta",CG:"Kongon tasavalta",CC:"Kookossaaret",KP:"Korean demokraattinen kansantasavalta",KR:"Korean tasavalta",GR:"Kreikka",HR:"Kroatia",CU:"Kuuba",KW:"Kuwait",CY:"Kypros",LA:"Laos",LV:"Latvia",LS:"Lesotho",LB:"Libanon",LR:"Liberia",LY:"Libya",LI:"Liechtenstein",LT:"Liettua",LU:"Luxemburg",EH:"Länsi-Sahara",MO:"Macao",MG:"Madagaskar",MW:"Malawi",MV:"Malediivit",MY:"Malesia",ML:"Mali",MT:"Malta",IM:"Mansaari",MA:"Marokko",MH:"Marshallinsaaret",MQ:"Martinique",MR:"Mauritania",MU:"Mauritius",YT:"Mayotte",MX:"Meksiko",FM:"Mikronesian liittovaltio",MD:"Moldova",MC:"Monaco",MN:"Mongolia",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolkinsaari",NO:"Norja",CI:"Norsunluurannikko",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palestiina",PA:"Panama",PG:"Papua-Uusi-Guinea",PY:"Paraguay",PE:"Peru",MK:"Pohjois-Makedonia",MP:"Pohjois-Mariaanit",PN:"Pitcairn",PT:"Portugali",PR:"Puerto Rico",PL:"Puola",GQ:"Päiväntasaajan Guinea",QA:"Qatar",FR:"Ranska",TF:"Ranskan eteläiset alueet",GF:"Ranskan Guayana",PF:"Ranskan Polynesia",RE:"Réunion",RO:"Romania",RW:"Ruanda",SE:"Ruotsi",BL:"Saint-Barthélemy",SH:"Saint Helena",KN:"Saint Kitts ja Nevis",LC:"Saint Lucia",MF:"Saint-Martin",PM:"Saint-Pierre ja Miquelon",VC:"Saint Vincent ja Grenadiinit",DE:"Saksa",SB:"Salomonsaaret",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé ja Príncipe",SA:"Saudi-Arabia",SN:"Senegal",RS:"Serbia",SC:"Seychellit",SL:"Sierra Leone",SG:"Singapore",SX:"Sint Maarten",SK:"Slovakia",SI:"Slovenia",SO:"Somalia",LK:"Sri Lanka",SD:"Sudan",FI:"Suomi",SR:"Suriname",SJ:"Svalbard ja Jan Mayen",SZ:"Swazimaa",CH:"Sveitsi",SY:"Syyria",TJ:"Tadžikistan",TW:"Taiwan",TZ:"Tansania",DK:"Tanska",TH:"Thaimaa",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad ja Tobago",TD:"Tšad",CZ:"Tšekki",TN:"Tunisia",TR:"Turkki",TM:"Turkmenistan",TC:"Turks- ja Caicossaaret",TV:"Tuvalu",UG:"Uganda",UA:"Ukraina",HU:"Unkari",UY:"Uruguay",NC:"Uusi-Kaledonia",NZ:"Uusi-Seelanti",UZ:"Uzbekistan",BY:"Valko-Venäjä",VU:"Vanuatu",VA:"Vatikaanivaltio",VE:"Venezuela",RU:"Venäjä",VN:"Vietnam",EE:"Viro",WF:"Wallis ja Futunasaaret",GB:"Yhdistynyt kuningaskunta",US:"Yhdysvallat",VI:"Yhdysvaltain Neitsytsaaret",UM:"Yhdysvaltain pienet erillissaaret",ZW:"Zimbabwe",XK:"Kosovo"}},HM={locale:"fr",countries:{AF:"Afghanistan",AL:"Albanie",DZ:"Algérie",AS:"Samoa américaines",AD:"Andorre",AO:"Angola",AI:"Anguilla",AQ:"Antarctique",AG:"Antigua-et-Barbuda",AR:"Argentine",AM:"Arménie",AW:"Aruba",AU:"Australie",AT:"Autriche",AZ:"Azerbaïdjan",BS:"Bahamas",BH:"Bahreïn",BD:"Bangladesh",BB:"Barbade",BY:"Biélorussie",BE:"Belgique",BZ:"Belize",BJ:"Bénin",BM:"Bermudes",BT:"Bhoutan",BO:"Bolivie",BA:"Bosnie-Herzégovine",BW:"Botswana",BV:"Île Bouvet",BR:"Brésil",IO:"Océan Indien Britannique",BN:"Brunei Darussalam",BG:"Bulgarie",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodge",CM:"Cameroun",CA:"Canada",CV:"Cap-Vert",KY:"Îles Caïmans",CF:"République Centrafricaine",TD:"Tchad",CL:"Chili",CN:"Chine",CX:"Île Christmas",CC:"Îles Cocos",CO:"Colombie",KM:"Comores",CG:"République du Congo",CD:"République démocratique du Congo",CK:"Îles Cook",CR:"Costa Rica",CI:"Côte-d'Ivoire",HR:"Croatie",CU:"Cuba",CY:"Chypre",CZ:"République Tchèque",DK:"Danemark",DJ:"Djibouti",DM:"Dominique",DO:"République Dominicaine",EC:"Équateur",EG:"Égypte",SV:"El Salvador",GQ:"Guinée équatoriale",ER:"Érythrée",EE:"Estonie",ET:"Éthiopie",FK:"Îles Malouines",FO:"Îles Féroé",FJ:"Fidji",FI:"Finlande",FR:"France",GF:"Guyane française",PF:"Polynésie française",TF:"Terres australes françaises",GA:"Gabon",GM:"Gambie",GE:"Géorgie",DE:"Allemagne",GH:"Ghana",GI:"Gibraltar",GR:"Grèce",GL:"Groenland",GD:"Grenade",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinée",GW:"Guinée-Bissau",GY:"Guyana",HT:"Haïti",HM:"Îles Heard-et-MacDonald",VA:"Saint-Siège (Vatican)",HN:"Honduras",HK:"Hong Kong",HU:"Hongrie",IS:"Islande",IN:"Inde",ID:"Indonésie",IR:"Iran",IQ:"Irak",IE:"Irlande",IL:"Israël",IT:"Italie",JM:"Jamaïque",JP:"Japon",JO:"Jordanie",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"Corée du Nord",KR:"Corée du Sud",KW:"Koweït",KG:"Kirghizistan",LA:"Laos",LV:"Lettonie",LB:"Liban",LS:"Lesotho",LR:"Libéria",LY:"Libye",LI:"Liechtenstein",LT:"Lituanie",LU:"Luxembourg",MO:"Macao",MK:"Macédoine du Nord",MG:"Madagascar",MW:"Malawi",MY:"Malaisie",MV:"Maldives",ML:"Mali",MT:"Malte",MH:"Îles Marshall",MQ:"Martinique",MR:"Mauritanie",MU:"Maurice",YT:"Mayotte",MX:"Mexique",FM:"Micronésie",MD:"Moldavie",MC:"Monaco",MN:"Mongolie",MS:"Montserrat",MA:"Maroc",MZ:"Mozambique",MM:"Myanmar",NA:"Namibie",NR:"Nauru",NP:"Népal",NL:"Pays-Bas",NC:"Nouvelle-Calédonie",NZ:"Nouvelle-Zélande",NI:"Nicaragua",NE:"Niger",NG:"Nigéria",NU:"Niué",NF:"Île Norfolk",MP:"Îles Mariannes du Nord",NO:"Norvège",OM:"Oman",PK:"Pakistan",PW:"Palaos",PS:"Palestine",PA:"Panama",PG:"Papouasie-Nouvelle-Guinée",PY:"Paraguay",PE:"Pérou",PH:"Philippines",PN:"Îles Pitcairn",PL:"Pologne",PT:"Portugal",PR:"Porto Rico",QA:"Qatar",RE:"Réunion",RO:"Roumanie",RU:"Russie",RW:"Rwanda",SH:"Sainte-Hélène",KN:"Saint-Christophe-et-Niévès",LC:"Sainte-Lucie",PM:"Saint-Pierre-et-Miquelon",VC:"Saint-Vincent-et-les-Grenadines",WS:"Samoa",SM:"Saint-Marin",ST:"São Tomé-et-Principe",SA:"Arabie Saoudite",SN:"Sénégal",SC:"Seychelles",SL:"Sierra Leone",SG:"Singapour",SK:"Slovaquie",SI:"Slovénie",SB:"Îles Salomon",SO:"Somalie",ZA:"Afrique du Sud",GS:"Géorgie du Sud-et-les Îles Sandwich du Sud",ES:"Espagne",LK:"Sri Lanka",SD:"Soudan",SR:"Suriname",SJ:"Svalbard et Île Jan Mayen",SZ:"Royaume d'Eswatini",SE:"Suède",CH:"Suisse",SY:"Syrie",TW:"Taïwan",TJ:"Tadjikistan",TZ:"République unie de Tanzanie",TH:"Thaïlande",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinité-et-Tobago",TN:"Tunisie",TR:"Turquie",TM:"Turkménistan",TC:"Îles Turques-et-Caïques",TV:"Tuvalu",UG:"Ouganda",UA:"Ukraine",AE:"Émirats Arabes Unis",GB:"Royaume-Uni",US:"États-Unis d'Amérique",UM:"Îles mineures éloignées des États-Unis",UY:"Uruguay",UZ:"Ouzbékistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Îles vierges britanniques",VI:"Îles vierges américaines",WF:"Wallis-et-Futuna",EH:"Sahara occidental",YE:"Yémen",ZM:"Zambie",ZW:"Zimbabwe",AX:"Åland",BQ:"Bonaire, Saint-Eustache et Saba",CW:"Curaçao",GG:"Guernesey",IM:"Île de Man",JE:"Jersey",ME:"Monténégro",BL:"Saint-Barthélemy",MF:"Saint-Martin (partie française)",RS:"Serbie",SX:"Saint-Martin (partie néerlandaise)",SS:"Soudan du Sud",XK:"Kosovo"}},KM={locale:"pl",countries:{AF:"Afganistan",AL:"Albania",DZ:"Algieria",AS:"Samoa Amerykańskie",AD:"Andora",AO:"Angola",AI:"Anguilla",AQ:"Antarktyka",AG:"Antigua i Barbuda",AR:"Argentyna",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbejdżan",BS:"Bahamy",BH:"Bahrajn",BD:"Bangladesz",BB:"Barbados",BY:"Białoruś",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermudy",BT:"Bhutan",BO:"Boliwia",BA:"Bośnia i Hercegowina",BW:"Botswana",BV:"Wyspa Bouveta",BR:"Brazylia",IO:"Brytyjskie Terytorium Oceanu Indyjskiego",BN:"Brunei",BG:"Bułgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Kambodża",CM:"Kamerun",CA:"Kanada",CV:"Republika Zielonego Przylądka",KY:"Kajmany",CF:"Republika Środkowoafrykańska",TD:"Czad",CL:"Chile",CN:"Chiny",CX:"Wyspa Bożego Narodzenia",CC:"Wyspy Kokosowe",CO:"Kolumbia",KM:"Komory",CG:"Kongo",CD:"Demokratyczna Republika Konga",CK:"Wyspy Cooka",CR:"Kostaryka",CI:"Wybrzeże Kości Słoniowej",HR:"Chorwacja",CU:"Kuba",CY:"Cypr",CZ:"Czechy",DK:"Dania",DJ:"Dżibuti",DM:"Dominika",DO:"Dominikana",EC:"Ekwador",EG:"Egipt",SV:"Salwador",GQ:"Gwinea Równikowa",ER:"Erytrea",EE:"Estonia",ET:"Etiopia",FK:"Falklandy",FO:"Wyspy Owcze",FJ:"Fidżi",FI:"Finlandia",FR:"Francja",GF:"Gujana Francuska",PF:"Polinezja Francuska",TF:"Francuskie Terytoria Południowe i Antarktyczne",GA:"Gabon",GM:"Gambia",GE:"Gruzja",DE:"Niemcy",GH:"Ghana",GI:"Gibraltar",GR:"Grecja",GL:"Grenlandia",GD:"Grenada",GP:"Gwadelupa",GU:"Guam",GT:"Gwatemala",GN:"Gwinea",GW:"Gwinea Bissau",GY:"Gujana",HT:"Haiti",HM:"Wyspy Heard i McDonalda",VA:"Watykan",HN:"Honduras",HK:"Hongkong",HU:"Węgry",IS:"Islandia",IN:"Indie",ID:"Indonezja",IR:"Iran",IQ:"Irak",IE:"Irlandia",IL:"Izrael",IT:"Włochy",JM:"Jamajka",JP:"Japonia",JO:"Jordania",KZ:"Kazachstan",KE:"Kenia",KI:"Kiribati",KP:"Korea Północna",KR:"Korea Południowa",KW:"Kuwejt",KG:"Kirgistan",LA:"Laos",LV:"Łotwa",LB:"Liban",LS:"Lesotho",LR:"Liberia",LY:"Libia",LI:"Liechtenstein",LT:"Litwa",LU:"Luksemburg",MO:"Makau",MK:"Macedonia Północna",MG:"Madagaskar",MW:"Malawi",MY:"Malezja",MV:"Malediwy",ML:"Mali",MT:"Malta",MH:"Wyspy Marshalla",MQ:"Martynika",MR:"Mauretania",MU:"Mauritius",YT:"Majotta",MX:"Meksyk",FM:"Mikronezja",MD:"Mołdawia",MC:"Monako",MN:"Mongolia",MS:"Montserrat",MA:"Maroko",MZ:"Mozambik",MM:"Mjanma",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Holandia",NC:"Nowa Kaledonia",NZ:"Nowa Zelandia",NI:"Nikaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk",MP:"Mariany Północne",NO:"Norwegia",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palestyna",PA:"Panama",PG:"Papua-Nowa Gwinea",PY:"Paragwaj",PE:"Peru",PH:"Filipiny",PN:"Pitcairn",PL:"Polska",PT:"Portugalia",PR:"Portoryko",QA:"Katar",RE:"Reunion",RO:"Rumunia",RU:"Rosja",RW:"Rwanda",SH:"Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha",KN:"Saint Kitts i Nevis",LC:"Saint Lucia",PM:"Saint-Pierre i Miquelon",VC:"Saint Vincent i Grenadyny",WS:"Samoa",SM:"San Marino",ST:"Wyspy Świętego Tomasza i Książęca",SA:"Arabia Saudyjska",SN:"Senegal",SC:"Seszele",SL:"Sierra Leone",SG:"Singapur",SK:"Słowacja",SI:"Słowenia",SB:"Wyspy Salomona",SO:"Somalia",ZA:"Południowa Afryka",GS:"Georgia Południowa i Sandwich Południowy",ES:"Hiszpania",LK:"Sri Lanka",SD:"Sudan",SR:"Surinam",SJ:"Svalbard i Jan Mayen",SZ:"Eswatini",SE:"Szwecja",CH:"Szwajcaria",SY:"Syria",TW:"Tajwan",TJ:"Tadżykistan",TZ:"Tanzania",TH:"Tajlandia",TL:"Timor Wschodni",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trynidad i Tobago",TN:"Tunezja",TR:"Turcja",TM:"Turkmenistan",TC:"Turks i Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ukraina",AE:"Zjednoczone Emiraty Arabskie",GB:"Wielka Brytania",US:"Stany Zjednoczone",UM:"Dalekie Wyspy Mniejsze Stanów Zjednoczonych",UY:"Urugwaj",UZ:"Uzbekistan",VU:"Vanuatu",VE:"Wenezuela",VN:"Wietnam",VG:"Brytyjskie Wyspy Dziewicze",VI:"Wyspy Dziewicze Stanów Zjednoczonych",WF:"Wallis i Futuna",EH:"Sahara Zachodnia",YE:"Jemen",ZM:"Zambia",ZW:"Zimbabwe",AX:"Wyspy Alandzkie",BQ:"Bonaire, Sint Eustatius i Saba",CW:"Curaçao",GG:"Guernsey",IM:"Wyspa Man",JE:"Jersey",ME:"Czarnogóra",BL:"Saint-Barthélemy",MF:"Saint-Martin",RS:"Serbia",SX:"Sint Maarten",SS:"Sudan Południowy",XK:"Kosowo"}},ZM={locale:"pt",countries:{AF:"Afeganistão",ZA:"África do Sul",AL:"Albânia",DE:"Alemanha",AD:"Andorra",AO:"Angola",AI:"Anguila",AQ:"Antártida",AG:"Antígua e Barbuda",SA:"Arábia Saudita",DZ:"Argélia",AR:"Argentina",AM:"Arménia",AW:"Aruba",AU:"Austrália",AT:"Áustria",AZ:"Azerbaijão",BS:"Bahamas",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",BE:"Bélgica",BZ:"Belize",BJ:"Benim",BM:"Bermudas",BY:"Bielorrússia",BO:"Bolívia",BA:"Bósnia-Herzegovina",BW:"Botsuana",BR:"Brasil",BN:"Brunei",BG:"Bulgária",BF:"Burkina Faso",BI:"Burundi",BT:"Butão",CV:"Cabo Verde",KH:"Camboja",CA:"Canadá",QA:"Qatar",KZ:"Cazaquistão",TD:"Chade",CL:"Chile",CN:"China",CY:"Chipre",VA:"Santa Sé",SG:"Singapura",CO:"Colômbia",KM:"Comores",CG:"República Democrática do Congo",CD:"República Popular do Congo",KP:"Coreia do Norte",KR:"Coreia do Sul",CI:"Costa do Marfim",CR:"Costa Rica",HR:"Croácia",CU:"Cuba",CW:"Curaçao",DK:"Dinamarca",DJ:"Djibouti",DM:"Dominica",EG:"Egito",SV:"El Salvador",AE:"Emirados Árabes Unidos",EC:"Equador",ER:"Eritreia",SK:"Eslováquia",SI:"Eslovénia",ES:"Espanha",US:["Estados Unidos","Estados Unidos da América"],EE:"Estónia",ET:"Etiópia",FJ:"Fiji",PH:"Filipinas",FI:"Finlândia",FR:"França",GA:"Gabão",GM:"Gâmbia",GH:"Gana",GE:"Geórgia",GS:"Geórgia do Sul e Ilhas Sandwich do Sul",GI:"Gibraltar",GD:"Granada",GR:"Grécia",GL:"Gronelândia",GP:"Guadalupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GY:"Guiana",GF:"Guiana Francesa",GN:"Guiné",GW:"Guiné-Bissau",GQ:"Guiné Equatorial",HT:"Haiti",NL:"Países Baixos",HN:"Honduras",HK:"Hong Kong",HU:"Hungria",YE:"Iémen",BV:"Ilha Bouvet",CX:"Ilha de Natal",IM:"Ilha de Man",NF:"Ilha Norfolk",AX:"Ilhas Åland",KY:"Ilhas Caimão",CC:"Ilhas Cocos (Keeling)",CK:"Ilhas Cook",UM:"Ilhas Distantes dos EUA",HM:"Ilha Heard e Ilhas McDonald",FO:"Ilhas Faroé",FK:"Ilhas Malvinas",MP:"Ilhas Marianas do Norte",MH:"Ilhas Marshall",PN:"Ilhas Pitcairn",SB:"Ilhas Salomão",TC:"Ilhas Turcas e Caicos",VG:"Ilhas Virgens Britânicas",VI:"Ilhas Virgens Americanas",IN:"Índia",ID:"Indonésia",IR:"Irão",IQ:"Iraque",IE:"Irlanda",IS:"Islândia",IL:"Israel",IT:"Itália",JM:"Jamaica",JP:"Japão",JE:"Jersey",JO:"Jordânia",KW:"Koweit",LA:"Laos",LS:"Lesoto",LV:"Letónia",LB:"Líbano",LR:"Libéria",LY:"Líbia",LI:"Liechtenstein",LT:"Lituânia",LU:"Luxemburgo",MO:"Macau",MK:"Macedónia do Norte",MG:"Madagáscar",MY:"Malásia",MW:"Maláui",MV:"Maldivas",ML:"Mali",MT:"Malta",MA:"Marrocos",MQ:"Martinica",MU:"Maurícia",MR:"Mauritânia",YT:"Mayotte",MX:"México",MM:"Mianmar (Birmânia)",FM:"Micronésia",MZ:"Moçambique",MD:"Moldávia",MC:"Mónaco",MN:"Mongólia",ME:"Montenegro",MS:"Monserrate",NA:"Namíbia",NR:"Nauru",NP:"Nepal",NI:"Nicarágua",NE:"Níger",NG:"Nigéria",NU:"Niue",NO:"Noruega",NC:"Nova Caledónia",NZ:"Nova Zelândia",OM:"Omã",BQ:"Países Baixos Caribenhos",PW:"Palau",PA:"Panamá",PG:"Papua-Nova Guiné",PK:"Paquistão",PY:"Paraguai",PE:"Peru",PF:"Polinésia Francesa",PL:"Polónia",PR:"Porto Rico",PT:"Portugal",KE:"Quénia",KG:"Quirguistão",KI:"Quiribati",GB:"Reino Unido",CF:"República Centro-Africana",DO:"República Dominicana",CM:"Camarões",CZ:"Chéquia",RE:"Reunião",RO:"Roménia",RW:"Ruanda",RU:"Rússia",EH:"Saara Ocidental",PM:"Saint Pierre e Miquelon",WS:"Samoa",AS:"Samoa Americana",SM:"San Marino",SH:"Santa Helena",LC:"Santa Lúcia",BL:"São Bartolomeu",KN:"São Cristóvão e Neves",MF:"São Martinho",ST:"São Tomé e Príncipe",VC:"São Vicente e Granadinas",SN:"Senegal",SL:"Serra Leoa",RS:"Sérvia",SC:"Seychelles",SX:"São Martinho",SY:"Síria",SO:"Somália",LK:"Sri Lanka",SZ:"Essuatíni",SD:"Sudão",SS:"Sudão do Sul",SE:"Suécia",CH:"Suíça",SR:"Suriname",SJ:"Svalbard e Jan Mayen",TH:"Tailândia",TW:"Taiwan",TJ:"Tajiquistão",TZ:"Tanzânia",IO:"Território Britânico do Oceano Índico",TF:"Terras Austrais e Antárticas Francesas",PS:"Territórios palestinos",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trindade e Tobago",TN:"Tunísia",TM:"Turquemenistão",TR:"Turquia",TV:"Tuvalu",UA:"Ucrânia",UG:"Uganda",UY:"Uruguai",UZ:"Uzbequistão",VU:"Vanuatu",VE:"Venezuela",VN:"Vietname",WF:"Wallis e Futuna",ZM:"Zâmbia",ZW:"Zimbábue",XK:"Kosovo"}},qM={locale:"sv",countries:{AD:"Andorra",AE:"Förenade Arabemiraten",AF:"Afghanistan",AG:"Antigua och Barbuda",AI:"Anguilla",AL:"Albanien",AM:"Armenien",AO:"Angola",AQ:"Antarktis",AR:"Argentina",AS:"Amerikanska Samoa",AT:"Österrike",AU:"Australien",AW:"Aruba",AX:"Åland",AZ:"Azerbajdzjan",BA:"Bosnien och Hercegovina",BB:"Barbados",BD:"Bangladesh",BE:"Belgien",BF:"Burkina Faso",BG:"Bulgarien",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BL:"Saint-Barthélemy",BM:"Bermuda",BN:"Brunei",BO:"Bolivia",BQ:"Bonaire, Saint Eustatius och Saba",BR:"Brasilien",BS:"Bahamas",BT:"Bhutan",BV:"Bouvetön",BW:"Botswana",BY:"Belarus",BZ:"Belize",CA:"Kanada",CC:"Kokosöarna",CD:"Demokratiska republiken Kongo",CF:"Centralafrikanska republiken",CG:"Kongo-Brazzaville",CH:"Schweiz",CI:"Elfenbenskusten",CK:"Cooköarna",CL:"Chile",CM:"Kamerun",CN:"Kina",CO:"Colombia",CR:"Costa Rica",CU:"Kuba",CV:"Kap Verde",CW:"Curacao",CX:"Julön",CY:"Cypern",CZ:"Tjeckien",DE:"Tyskland",DJ:"Djibouti",DK:"Danmark",DM:"Dominica",DO:"Dominikanska republiken",DZ:"Algeriet",EC:"Ecuador",EE:"Estland",EG:"Egypten",EH:"Västsahara",ER:"Eritrea",ES:"Spanien",ET:"Etiopien",FI:"Finland",FJ:"Fiji",FK:"Falklandsöarna",FM:"Mikronesiska federationen",FO:"Färöarna",FR:"Frankrike",GA:"Gabon",GB:"Storbritannien",GD:"Grenada",GE:"Georgien",GF:"Franska Guyana",GG:"Guernsey",GH:"Ghana",GI:"Gibraltar",GL:"Grönland",GM:"Gambia",GN:"Guinea",GP:"Guadeloupe",GQ:"Ekvatorialguinea",GR:"Grekland",GS:"Sydgeorgien och Sydsandwichöarna",GT:"Guatemala",GU:"Guam",GW:"Guinea Bissau",GY:"Guyana",HK:"Hongkong",HM:"Heard- och McDonaldsöarna",HN:"Honduras",HR:"Kroatien",HT:"Haiti",HU:"Ungern",ID:"Indonesien",IE:"Irland",IL:"Israel",IM:"Isle of Man",IN:"Indien",IO:"Brittiska territoriet i Indiska Oceanen",IQ:"Irak",IR:"Iran",IS:"Island",IT:"Italien",JE:"Jersey",JM:"Jamaica",JO:"Jordanien",JP:"Japan",KE:"Kenya",KG:"Kirgizistan",KH:"Kambodja",KI:"Kiribati",KM:"Komorerna",KN:"Saint Kitts och Nevis",KP:"Nordkorea",KR:"Sydkorea",KW:"Kuwait",KY:"Caymanöarna",KZ:"Kazakstan",LA:"Laos",LB:"Libanon",LC:"Saint Lucia",LI:"Liechtenstein",LK:"Sri Lanka",LR:"Liberia",LS:"Lesotho",LT:"Litauen",LU:"Luxemburg",LV:"Lettland",LY:"Libyen",MA:"Marocko",MC:"Monaco",MD:"Moldavien",ME:"Montenegro",MF:"Saint Martin (franska delen)",MG:"Madagaskar",MH:"Marshallöarna",MK:"Nordmakedonien",ML:"Mali",MM:"Burma",MN:"Mongoliet",MO:"Macau",MP:"Nordmarianerna",MQ:"Martinique",MR:"Mauretanien",MS:"Montserrat",MT:"Malta",MU:"Mauritius",MV:"Maldiverna",MW:"Malawi",MX:"Mexiko",MY:"Malaysia",MZ:"Moçambique",NA:"Namibia",NC:"Nya Kaledonien",NE:"Niger",NF:"Norfolkön",NG:"Nigeria",NI:"Nicaragua",NL:"Nederländerna",NO:"Norge",NP:"Nepal",NR:"Nauru",NU:"Niue",NZ:"Nya Zeeland",OM:"Oman",PA:"Panama",PE:"Peru",PF:"Franska Polynesien",PG:"Papua Nya Guinea",PH:"Filippinerna",PK:"Pakistan",PL:"Polen",PM:"Saint-Pierre och Miquelon",PN:"Pitcairnöarna",PR:"Puerto Rico",PS:"Palestinska territoriet, ockuperade",PT:"Portugal",PW:"Palau",PY:"Paraguay",QA:"Qatar",RE:"Réunion",RO:"Rumänien",RS:"Serbien",RU:"Ryssland",RW:"Rwanda",SA:"Saudiarabien",SB:"Salomonöarna",SC:"Seychellerna",SD:"Sudan",SE:"Sverige",SG:"Singapore",SH:"Sankta Helena",SI:"Slovenien",SJ:"Svalbard och Jan Mayen",SK:"Slovakien",SL:"Sierra Leone",SM:"San Marino",SN:"Senegal",SO:"Somalia",SR:"Surinam",SS:"Sydsudan",ST:"São Tomé och Príncipe",SV:"El Salvador",SX:"Sint Maarten (nederländska delen)",SY:"Syrien",SZ:"Eswatini",TC:"Turks- och Caicosöarna",TD:"Tchad",TF:"Franska södra territorierna",TG:"Togo",TH:"Thailand",TJ:"Tadzjikistan",TK:"Tokelauöarna",TL:"Östtimor",TM:"Turkmenistan",TN:"Tunisien",TO:"Tonga",TR:"Turkiet",TT:"Trinidad och Tobago",TV:"Tuvalu",TW:"Taiwan",TZ:"Tanzania",UA:"Ukraina",UG:"Uganda",UM:"USA:s yttre öar",US:"USA",UY:"Uruguay",UZ:"Uzbekistan",VA:"Vatikanstaten",VC:"Saint Vincent och Grenadinerna",VE:"Venezuela",VG:"Brittiska Jungfruöarna",VI:"Amerikanska Jungfruöarna",VN:"Vietnam",VU:"Vanuatu",WF:"Wallis- och Futunaöarna",WS:"Samoa",YE:"Jemen",YT:"Mayotte",ZA:"Sydafrika",ZM:"Zambia",ZW:"Zimbabwe",XK:"Kosovo"}},WM={locale:"cs",countries:{AF:"Afghánistán",AX:"Ålandy",AL:"Albánie",DZ:"Alžírsko",AS:"Americká Samoa",VI:"Americké Panenské ostrovy",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktida",AG:"Antigua a Barbuda",AR:"Argentina",AM:"Arménie",AW:"Aruba",AU:"Austrálie",AZ:"Ázerbájdžán",BS:"Bahamy",BH:"Bahrajn",BD:"Bangladéš",BB:"Barbados",BE:"Belgie",BZ:"Belize",BY:"Bělorusko",BJ:"Benin",BM:"Bermudy",BT:"Bhútán",BO:"Bolívie",BQ:"Bonaire, Svatý Eustach a Saba",BA:"Bosna a Hercegovina",BW:"Botswana",BV:"Bouvetův ostrov",BR:"Brazílie",IO:"Britské indickooceánské území",VG:"Britské Panenské ostrovy",BN:"Brunej",BG:"Bulharsko",BF:"Burkina Faso",BI:"Burundi",CK:"Cookovy ostrovy",CW:"Curaçao",TD:"Čad",ME:"Černá Hora",CZ:"Česká republika",CN:"Čína",DK:"Dánsko",CD:"Demokratická republika Kongo",DM:"Dominika",DO:"Dominikánská republika",DJ:"Džibutsko",EG:"Egypt",EC:"Ekvádor",ER:"Eritrea",EE:"Estonsko",ET:"Etiopie",FO:"Faerské ostrovy",FK:"Falklandy (Malvíny)",FJ:"Fidži",PH:"Filipíny",FI:"Finsko",FR:"Francie",GF:"Francouzská Guyana",TF:"Francouzská jižní a antarktická území",PF:"Francouzská Polynésie",GA:"Gabon",GM:"Gambie",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GL:"Grónsko",GE:"Gruzie",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GG:"Guernsey",GY:"Guyana",HT:"Haiti",HM:"Heardův ostrov a McDonaldovy ostrovy",HN:"Honduras",HK:"Hongkong",CL:"Chile",HR:"Chorvatsko",IN:"Indie",ID:"Indonésie",IQ:"Irák",IR:"Írán",IE:"Irsko",IS:"Island",IT:"Itálie",IL:"Izrael",JM:"Jamajka",JP:"Japonsko",YE:"Jemen",JE:"Jersey",ZA:"Jihoafrická republika",GS:"Jižní Georgie a Jižní Sandwichovy ostrovy",KR:"Jižní Korea",SS:"Jižní Súdán",JO:"Jordánsko",KY:"Kajmanské ostrovy",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",CV:"Kapverdy",QA:"Katar",KZ:"Kazachstán",KE:"Keňa",KI:"Kiribati",CC:"Kokosové ostrovy",CO:"Kolumbie",KM:"Komory",CG:"Kongo",CR:"Kostarika",CU:"Kuba",KW:"Kuvajt",CY:"Kypr",KG:"Kyrgyzstán",LA:"Laos",LS:"Lesotho",LB:"Libanon",LR:"Libérie",LY:"Libye",LI:"Lichtenštejnsko",LT:"Litva",LV:"Lotyšsko",LU:"Lucembursko",MO:"Macao",MG:"Madagaskar",HU:"Maďarsko",MY:"Malajsie",MW:"Malawi",MV:"Maledivy",ML:"Mali",MT:"Malta",IM:"Ostrov Man",MA:"Maroko",MH:"Marshallovy ostrovy",MQ:"Martinik",MU:"Mauricius",MR:"Mauritánie",YT:"Mayotte",UM:"Menší odlehlé ostrovy USA",MX:"Mexiko",FM:"Mikronésie",MD:"Moldavsko",MC:"Monako",MN:"Mongolsko",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibie",NR:"Nauru",DE:"Německo",NP:"Nepál",NE:"Niger",NG:"Nigérie",NI:"Nikaragua",NU:"Niue",NL:"Nizozemsko",NF:"Norfolk",NO:"Norsko",NC:"Nová Kaledonie",NZ:"Nový Zéland",OM:"Omán",PK:"Pákistán",PW:"Palau",PS:"Palestinská autonomie",PA:"Panama",PG:"Papua-Nová Guinea",PY:"Paraguay",PE:"Peru",PN:"Pitcairnovy ostrovy",CI:"Pobřeží slonoviny",PL:"Polsko",PR:"Portoriko",PT:"Portugalsko",AT:"Rakousko",RE:"Réunion",GQ:"Rovníková Guinea",RO:"Rumunsko",RU:"Rusko",RW:"Rwanda",GR:"Řecko",PM:"Saint-Pierre a Miquelon",SV:"Salvador",WS:"Samoa",SM:"San Marino",SA:"Saúdská Arábie",SN:"Senegal",KP:"Severní Korea",MK:"Severní Makedonie",MP:"Severní Mariany",SC:"Seychely",SL:"Sierra Leone",SG:"Singapur",SK:"Slovensko",SI:"Slovinsko",SO:"Somálsko",AE:"Spojené arabské emiráty",GB:"Spojené království",US:"Spojené státy americké",RS:"Srbsko",CF:"Středoafrická republika",SD:"Súdán",SR:"Surinam",SH:"Svatá Helena, Ascension a Tristan da Cunha",LC:"Svatá Lucie",BL:"Svatý Bartoloměj",KN:"Svatý Kryštof a Nevis",MF:"Svatý Martin (francouzská část)",SX:"Svatý Martin (nizozemská část)",ST:"Svatý Tomáš a Princův ostrov",VC:"Svatý Vincenc a Grenadiny",SZ:"Svazijsko",SY:"Sýrie",SB:"Šalamounovy ostrovy",ES:"Španělsko",SJ:"Špicberky a Jan Mayen",LK:"Šrí Lanka",SE:"Švédsko",CH:"Švýcarsko",TJ:"Tádžikistán",TZ:"Tanzanie",TH:"Thajsko",TW:"Tchaj-wan",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad a Tobago",TN:"Tunisko",TR:"Turecko",TM:"Turkmenistán",TC:"Turks a Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ukrajina",UY:"Uruguay",UZ:"Uzbekistán",CX:"Vánoční ostrov",VU:"Vanuatu",VA:"Vatikán",VE:"Venezuela",VN:"Vietnam",TL:"Východní Timor",WF:"Wallis a Futuna",ZM:"Zambie",EH:"Západní Sahara",ZW:"Zimbabwe",XK:"Kosovo"}},JM={locale:"it",countries:{AD:"Andorra",AE:"Emirati Arabi Uniti",AF:"Afghanistan",AG:"Antigua e Barbuda",AI:"Anguilla",AL:"Albania",AM:"Armenia",AO:"Angola",AQ:"Antartide",AR:"Argentina",AS:"Samoa Americane",AT:"Austria",AU:"Australia",AW:"Aruba",AX:"Isole Åland",AZ:"Azerbaigian",BA:"Bosnia ed Erzegovina",BB:"Barbados",BD:"Bangladesh",BE:"Belgio",BF:"Burkina Faso",BG:"Bulgaria",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BL:"Saint-Barthélemy",BM:"Bermuda",BN:"Brunei",BO:"Bolivia",BQ:"Isole BES",BR:"Brasile",BS:"Bahamas",BT:"Bhutan",BV:"Isola Bouvet",BW:"Botswana",BY:"Bielorussia",BZ:"Belize",CA:"Canada",CC:"Isole Cocos e Keeling",CD:"Repubblica Democratica del Congo",CF:"Repubblica Centrafricana",CG:"Repubblica del Congo",CH:"Svizzera",CI:"Costa d'Avorio",CK:"Isole Cook",CL:"Cile",CM:"Camerun",CN:"Cina",CO:"Colombia",CR:"Costa Rica",CU:"Cuba",CV:"Capo Verde",CW:"Curaçao",CX:"Isola del Natale",CY:"Cipro",CZ:"Repubblica Ceca",DE:"Germania",DJ:"Gibuti",DK:"Danimarca",DM:"Dominica",DO:"Repubblica Dominicana",DZ:"Algeria",EC:"Ecuador",EE:"Estonia",EG:"Egitto",EH:"Sahara Occidentale",ER:"Eritrea",ES:"Spagna",ET:"Etiopia",FI:"Finlandia",FJ:"Figi",FK:"Isole Falkland",FM:"Stati Federati di Micronesia",FO:"Isole Fær Øer",FR:"Francia",GA:"Gabon",GB:"Regno Unito",GD:"Grenada",GE:"Georgia",GF:"Guyana Francese",GG:"Guernsey",GH:"Ghana",GI:"Gibilterra",GL:"Groenlandia",GM:"Gambia",GN:"Guinea",GP:"Guadalupa",GQ:"Guinea Equatoriale",GR:"Grecia",GS:"Georgia del Sud e isole Sandwich meridionali",GT:"Guatemala",GU:"Guam",GW:"Guinea-Bissau",GY:"Guyana",HK:"Hong Kong",HM:"Isole Heard e McDonald",HN:"Honduras",HR:"Croazia",HT:"Haiti",HU:"Ungheria",ID:"Indonesia",IE:"Irlanda",IL:"Israele",IM:"Isola di Man",IN:"India",IO:"Territori Britannici dell'Oceano Indiano",IQ:"Iraq",IR:"Iran",IS:"Islanda",IT:"Italia",JE:"Jersey",JM:"Giamaica",JO:"Giordania",JP:"Giappone",KE:"Kenya",KG:"Kirghizistan",KH:"Cambogia",KI:"Kiribati",KM:"Comore",KN:"Saint Kitts e Nevis",KP:"Corea del Nord",KR:"Corea del Sud",KW:"Kuwait",KY:"Isole Cayman",KZ:"Kazakistan",LA:"Laos",LB:"Libano",LC:"Santa Lucia",LI:"Liechtenstein",LK:"Sri Lanka",LR:"Liberia",LS:"Lesotho",LT:"Lituania",LU:"Lussemburgo",LV:"Lettonia",LY:"Libia",MA:"Marocco",MC:"Monaco",MD:"Moldavia",ME:"Montenegro",MF:"Saint-Martin",MG:"Madagascar",MH:"Isole Marshall",MK:"Macedonia del Nord",ML:"Mali",MM:"Birmania Myanmar",MN:"Mongolia",MO:"Macao",MP:"Isole Marianne Settentrionali",MQ:"Martinica",MR:"Mauritania",MS:"Montserrat",MT:"Malta",MU:"Mauritius",MV:"Maldive",MW:"Malawi",MX:"Messico",MY:"Malesia",MZ:"Mozambico",NA:"Namibia",NC:"Nuova Caledonia",NE:"Niger",NF:"Isola Norfolk",NG:"Nigeria",NI:"Nicaragua",NL:"Paesi Bassi",NO:"Norvegia",NP:"Nepal",NR:"Nauru",NU:"Niue",NZ:"Nuova Zelanda",OM:"Oman",PA:"Panamá",PE:"Perù",PF:"Polinesia Francese",PG:"Papua Nuova Guinea",PH:"Filippine",PK:"Pakistan",PL:"Polonia",PM:"Saint Pierre e Miquelon",PN:"Isole Pitcairn",PR:"Porto Rico",PS:"Stato di Palestina",PT:"Portogallo",PW:"Palau",PY:"Paraguay",QA:"Qatar",RE:"Réunion",RO:"Romania",RS:"Serbia",RU:"Russia",RW:"Ruanda",SA:"Arabia Saudita",SB:"Isole Salomone",SC:"Seychelles",SD:"Sudan",SE:"Svezia",SG:"Singapore",SH:"Sant'Elena, Isola di Ascensione e Tristan da Cunha",SI:"Slovenia",SJ:"Svalbard e Jan Mayen",SK:"Slovacchia",SL:"Sierra Leone",SM:"San Marino",SN:"Senegal",SO:"Somalia",SR:"Suriname",SS:"Sudan del Sud",ST:"São Tomé e Príncipe",SV:"El Salvador",SX:"Sint Maarten",SY:"Siria",SZ:"Eswatini",TC:"Isole Turks e Caicos",TD:"Ciad",TF:"Territori Francesi del Sud",TG:"Togo",TH:"Thailandia",TJ:"Tagikistan",TK:"Tokelau",TL:"Timor Est",TM:"Turkmenistan",TN:"Tunisia",TO:"Tonga",TR:"Turchia",TT:"Trinidad e Tobago",TV:"Tuvalu",TW:["Repubblica di Cina","Taiwan"],TZ:"Tanzania",UA:"Ucraina",UG:"Uganda",UM:"Isole minori esterne degli Stati Uniti",US:"Stati Uniti d'America",UY:"Uruguay",UZ:"Uzbekistan",VA:"Città del Vaticano",VC:"Saint Vincent e Grenadine",VE:"Venezuela",VG:"Isole Vergini Britanniche",VI:"Isole Vergini Americane",VN:"Vietnam",VU:"Vanuatu",WF:"Wallis e Futuna",WS:"Samoa",YE:"Yemen",YT:"Mayotte",ZA:"Sudafrica",ZM:"Zambia",ZW:"Zimbabwe",XK:"Kosovo"}},QM={locale:"nl",countries:{AF:["Islamitisch Emiraat Afghanistan","Afghanistan"],AL:["Republiek Albanië","Albanië"],DZ:["Democratische Volksrepubliek Algerije","Algerije"],AS:"Amerikaans-Samoa",AD:["Vorstendom Andorra","Andorra"],AO:["Republiek Angola","Angola"],AI:"Anguilla",AQ:"Antarctica",AG:"Antigua en Barbuda",AR:["Argentijnse Republiek","Argentinië"],AM:["Republiek Armenië","Armenië"],AW:"Aruba",AU:["Gemenebest van Australië","Australië"],AT:["Republiek Oostenrijk","Oostenrijk"],AZ:["Republiek Azerbeidzjan","Azerbeidzjan"],BS:["Gemenebest van de Bahama's","Bahama's"],BH:["Koninkrijk Bahrein","Bahrein"],BD:["Volksrepubliek Bangladesh","Bangladesh"],BB:["Barbados","Barbados"],BY:["Republiek Wit-Rusland","Wit-Rusland"],BE:["Koninkrijk België","België"],BZ:["Belize","Belize"],BJ:["Republiek Benin","Benin"],BM:"Bermuda",BT:["Koninkrijk Bhutan","Bhutan"],BO:["Plurinationale Staat Bolivia","Bolivië"],BA:["Bosnië en Herzegovina","Bosnië-Herzegovina"],BW:["Republiek Botswana","Botswana"],BV:"Bouvet Eiland",BR:["Federale Republiek Brazilië","Brazilië"],IO:"Brits Indische oceaan",BN:["Brunei Darussalam","Brunei"],BG:["Republiek Bulgarije","Bulgarije"],BF:["Burkina Faso","Burkina Faso"],BI:["Republiek Burundi","Burundi"],KH:["Koninkrijk Cambodja","Cambodja"],CM:["Republiek Kameroen","Kameroen"],CA:"Canada",CV:["Republiek Kaapverdië","Kaapverdië"],KY:"Kaaimaneilanden",CF:"Centraal-Afrikaanse Republiek",TD:["Republiek Tsjaad","Tsjaad"],CL:["Republiek Chili","Chili"],CN:["Volksrepubliek China","China"],CX:["Christmaseiland","Kersteiland"],CC:"Cocoseilanden",CO:["Republiek Colombia","Colombia"],KM:["Unie der Comoren","Comoren"],CG:["Republiek Congo","Congo-Brazzaville"],CD:["Democratische Republiek Congo","Congo-Kinshasa"],CK:"Cookeilanden",CR:["Republiek Costa Rica","Costa Rica"],CI:["Republiek Ivoorkust","Ivoorkust"],HR:["Republiek Kroatië","Kroatië"],CU:["Republiek Cuba","Cuba"],CY:["Republiek Cyprus","Cyprus"],CZ:["Tsjechische Republiek","Tsjechië"],DK:["Koninkrijk Denemarken","Denemarken"],DJ:["Republiek Djibouti","Djibouti"],DM:["Gemenebest Dominica","Dominica"],DO:"Dominicaanse Republiek",EC:["Republiek Ecuador","Ecuador"],EG:["Arabische Republiek Egypte","Egypte"],SV:["Republiek El Salvador","El Salvador"],GQ:["Republiek Equatoriaal-Guinea","Equatoriaal-Guinea"],ER:["Staat Eritrea","Eritrea"],EE:["Republiek Estland","Estland"],ET:["Federale Democratische Republiek Ethiopië","Ethiopië"],FK:"Falklandeilanden",FO:"Faeröer",FJ:["Republiek Fiji","Fiji"],FI:["Republiek Finland","Finland"],FR:["Franse Republiek","Frankrijk"],GF:"Frans-Guyana",PF:"Frans-Polynesië",TF:"Franse Zuidelijke Gebieden",GA:["Republiek Gabon","Gabon"],GM:["Republiek Gambia","Gambia"],GE:["Georgië","Georgië"],DE:["Bondsrepubliek Duitsland","Duitsland"],GH:["Republiek Ghana","Ghana"],GI:"Gibraltar",GR:["Helleense Republiek","Griekenland"],GL:"Groenland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:["Republiek Guatemala","Guatemala"],GN:["Republiek Guinee","Guinea"],GW:["Republiek Guinee-Bissau","Guinee-Bissau"],GY:["Coöperatieve Republiek Guyana","Guyana"],HT:["Republiek Haïti","Haïti"],HM:"Heard en McDonaldeilanden",VA:["Vaticaanstad","Vaticaanstad"],HN:["Republiek Honduras","Honduras"],HK:"Hong Kong",HU:["Hongaarse Republiek","Hongarije"],IS:["IJslandse Republiek","IJsland"],IN:["Republiek India","India"],ID:["Republiek Indonesië","Indonesië"],IR:["Islamitische Republiek Iran","Iran"],IQ:["Republiek Irak","Irak"],IE:["Ierse Republiek","Ierland"],IL:["Staat Israël","Israël"],IT:["Italiaanse Republiek","Italië"],JM:"Jamaica",JP:"Japan",JO:["Hasjemitisch Koninkrijk Jordanië","Jordanië"],KZ:["Republiek Kazachstan","Kazachstan"],KE:["Republiek Kenia","Kenia"],KI:["Republiek Kiribati","Kiribati"],KP:["Democratische Volksrepubliek Korea","Noord-Korea"],KR:["Republiek Korea","Zuid-Korea"],KW:["Staat Koeweit","Koeweit"],KG:["Kirgizische Republiek","Kirgizië"],LA:["Lao Democratische Volksrepubliek","Laos"],LV:["Republiek Letland","Letland"],LB:["Libanese Republiek","Libanon"],LS:["Koninkrijk Lesotho","Lesotho"],LR:["Republiek Liberia","Liberia"],LY:["Staat Libië","Libië"],LI:["Vorstendom Liechtenstein","Liechtenstein"],LT:["Republiek Litouwen","Litouwen"],LU:["Groothertogdom Luxemburg","Luxemburg"],MO:"Macao",MG:["Republiek Madagaskar","Madagaskar"],MW:["Republiek Malawi","Malawi"],MY:["Maleisië","Maleisië"],MV:["Republiek der Maldiven","Maldiven"],ML:["Republiek Mali","Mali"],MT:["Republiek Malta","Malta"],MH:["Republiek der Marshalleilanden","Marshalleilanden"],MQ:"Martinique",MR:["Islamitische Republiek Mauritanië","Mauritanië"],MU:["Republiek Mauritius","Mauritius"],YT:"Mayotte",MX:["Verenigde Mexicaanse Staten","Mexico"],FM:["Federale Staten van Micronesië","Micronesië"],MD:["Republiek Moldavië","Moldavië"],MC:["Vorstendom Monaco","Monaco"],MN:["Mongolië","Mongolië"],MS:"Montserrat",MA:["Koninkrijk Marokko","Marokko"],MZ:["Republiek Mozambique","Mozambique"],MM:["Republiek van de Unie van Myanmar","Myanmar"],NA:["Republiek Namibië","Namibië"],NR:["Republiek Nauru","Nauru"],NP:["Federale Democratische Republiek Nepal","Nepal"],NL:["Koninkrijk der Nederlanden","Nederland"],NC:["Nieuw-Caledonië","Nieuw-Caledonië"],NZ:["Nieuw-Zeeland","Nieuw-Zeeland"],NI:["Republiek Nicaragua","Nicaragua"],NE:["Republiek Niger","Niger"],NG:["Federale Republiek Nigeria","Nigeria"],NU:"Niue",NF:"Norfolk",MP:"Noordelijke Marianen",MK:["Republiek Noord-Macedonië","Noord-Macedonië"],NO:["Koninkrijk Noorwegen","Noorwegen"],OM:["Sultanaat Oman","Oman"],PK:["Islamitische Republiek Pakistan","Pakistan"],PW:["Republiek Palau","Palau"],PS:["Staat Palestina","Palestina"],PA:["Republiek Panama","Panama"],PG:["Onafhankelijke Staat Papoea-Nieuw-Guinea","Papoea-Nieuw-Guinea"],PY:["Republiek Paraguay","Paraguay"],PE:["Republiek Peru","Peru"],PH:["Republiek der Filipijnen","Filipijnen"],PN:"Pitcairn",PL:["Republiek Polen","Polen"],PT:["Portugese Republiek","Portugal"],PR:"Puerto Rico",QA:["Staat Qatar","Qatar"],RE:"Réunion",RO:["Roemeense Republiek","Roemenië"],RU:["Russische Federatie","Rusland"],RW:["Republiek Rwanda","Rwanda"],SH:"Sint-Helena",KN:["Federatie Saint Kitts en Nevis","Saint Kitts en Nevis"],LC:["Saint Lucia","Saint Lucia"],PM:["Saint-Pierre en Miquelon","Saint-Pierre en Miquelon"],VC:["Saint Vincent en de Grenadines","Saint Vincent en de Grenadines"],WS:["Onafhankelijke Staat Samoa","Samoa"],SM:["Republiek San Marino","San Marino"],ST:["Democratische Republiek São Tomé en Principe","São Tomé en Principe"],SA:["Koninkrijk Saudi-Arabië","Saudi-Arabië"],SN:["Republiek Senegal","Senegal"],SC:["Republiek der Seychellen","Seychellen"],SL:["Republiek Sierra Leone","Sierra Leone"],SG:["Republiek Singapore","Singapore"],SK:["Slowaakse Republiek","Slowakije"],SI:["Republiek Slovenië","Slovenië"],SB:["Salomonseilanden","Salomonseilanden"],SO:["Federale Republiek Somalië","Somalië"],ZA:["Republiek Zuid-Afrika","Zuid-Afrika"],GS:"Zuid-Georgia en de Zuidelijke Sandwicheilanden",ES:["Koninkrijk Spanje","Spanje"],LK:["Democratische Socialistische Republiek Sri Lanka","Sri Lanka"],SD:["Republiek Soedan","Soedan"],SR:["Republiek Suriname","Suriname"],SJ:"Spitsbergen en Jan Mayen",SZ:["Koninkrijk Eswatini","Eswatini","Swaziland"],SE:["Koninkrijk Zweden","Zweden"],CH:["Zwitserse Bondsstaat","Zwitserland"],SY:["Syrische Arabische Republiek","Syrië"],TW:["Taiwan","Taiwan"],TJ:["Republiek Tadzjikistan","Tadzjikistan"],TZ:["Verenigde Republiek Tanzania","Tanzania"],TH:["Koninkrijk Thailand","Thailand"],TL:["Democratische Republiek Timor-Leste","Timor Leste"],TG:["Togolese Republiek","Togo"],TK:"Tokelau",TO:["Koninkrijk Tonga","Tonga"],TT:["Republiek Trinidad en Tobago","Trinidad en Tobago"],TN:["Republiek Tunesië","Tunesië"],TR:["Republiek Turkije","Turkije"],TM:["Turkmeense Republiek","Turkmenistan"],TC:"Turks- en Caicoseilanden",TV:["Tuvalu","Tuvalu"],UG:["Republiek Oeganda","Oeganda"],UA:["Oekraïne","Oekraïne"],AE:["Verenigde Arabische Emiraten","Verenigde Arabische Emiraten"],GB:["Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland","Verenigd Koninkrijk"],US:["Verenigde Staten van Amerika","Verenigde Staten"],UM:"Amerikaanse Kleinere Afgelegen Eilanden",UY:["Oostelijke Republiek Uruguay","Uruguay"],UZ:["Republiek Oezbekistan","Oezbekistan"],VU:["Republiek Vanuatu","Vanuatu"],VE:["Bolivariaanse Republiek Venezuela","Venezuela"],VN:["Socialistische Republiek Vietnam","Vietnam"],VG:"Britse Maagdeneilanden",VI:"Amerikaanse Maagdeneilanden",WF:"Wallis en Futuna",EH:"Westelijke Sahara",YE:["Republiek Jemen","Jemen"],ZM:["Republiek Zambia","Zambia"],ZW:["Republiek Zimbabwe","Zimbabwe"],AX:"Åland",BQ:"Bonaire, Sint Eustatius en Saba",CW:"Curaçao",GG:"Guernsey",IM:"Man Eiland",JE:"Jersey",ME:["Montenegro","Montenegro"],BL:"Saint Barthélemy",MF:["Sint-Maarten (Frans deel)","Sint-Maarten (Franse Antillen)","Collectiviteit van Sint-Maarten"],RS:["Republiek Servië","Servië"],SX:["Sint Maarten","Sint-Maarten","Sint Maarten (Nederlands deel)","Land Sint Maarten"],SS:["Republiek Zuid-Soedan","Zuid-Soedan"],XK:["Republiek Kosovo","Kosovo"]}},YM={locale:"da",countries:{AF:"Afghanistan",AL:"Albanien",DZ:"Algeriet",AS:"Amerikansk Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua og Barbuda",AR:"Argentina",AM:"Armenien",AW:"Aruba",AU:"Australien",AT:"Østrig",AZ:"Aserbajdsjan",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BY:"Hviderusland",BE:"Belgien",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BA:"Bosnien-Hercegovina",BW:"Botswana",BV:"Bouvet Island",BR:"Brasilien",IO:"British Indian Ocean Territory",BN:"Brunei Darussalam",BG:"Bulgarien",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodja",CM:"Cameroun",CA:"Canada",CV:"Kap Verde",KY:"Caymanøerne",CF:"Den Centralafrikanske Republik",TD:"Tchad",CL:"Chile",CN:"Kina",CX:"Juløen",CC:"Cocosøerne",CO:"Colombia",KM:"Comorerne",CG:"Congo",CD:"Demokratiske Republik Congo",CK:"Cookøerne",CR:"Costa Rica",CI:"Elfenbenskysten",HR:"Kroatien",CU:"Cuba",CY:"Cypern",CZ:"Tjekkiet",DK:"Danmark",DJ:"Djibouti",DM:"Dominica",DO:"Dominikanske Republik",EC:"Ecuador",EG:"Egypten",SV:"El Salvador",GQ:"Ækvatorialguinea",ER:"Eritrea",EE:"Estland",ET:"Etiopien",FK:"Falklandsøerne",FO:"Færøerne",FJ:"Fiji",FI:"Finland",FR:"Frankrig",GF:"Fransk Guiana",PF:"Fransk Polynesien",TF:"Franske Sydterritorier",GA:"Gabon",GM:"Gambia",GE:"Georgien",DE:"Tyskland",GH:"Ghana",GI:"Gibraltar",GR:"Grækenland",GL:"Grønland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard-øen og McDonald-øerne",VA:"Vatikanstaten",HN:"Honduras",HK:"Hong Kong",HU:"Ungarn",IS:"Island",IN:"Indien",ID:"Indonesien",IR:"Iran",IQ:"Irak",IE:"Irland",IL:"Israel",IT:"Italien",JM:"Jamaica",JP:"Japan",JO:"Jordan",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"Nordkorea",KR:"Sydkorea",KW:"Kuwait",KG:"Kirgisistan",LA:"Laos",LV:"Letland",LB:"Libanon",LS:"Lesotho",LR:"Liberia",LY:"Libyen",LI:"Liechtenstein",LT:"Litauen",LU:"Luxembourg",MO:"Macao",MK:"Nordmakedonien",MG:"Madagaskar",MW:"Malawi",MY:"Malaysia",MV:"Maldiverne",ML:"Mali",MT:"Malta",MH:"Marshalløerne",MQ:"Martinique",MR:"Mauretanien",MU:"Mauritius",YT:"Mayotte",MX:"Mexico",FM:"Mikronesien",MD:"Moldova",MC:"Monaco",MN:"Mongoliet",MS:"Montserrat",MA:"Marokko",MZ:"Mozambique",MM:"Myanmar (Burma)",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Holland",NC:"Ny Kaledonien",NZ:"New Zealand",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk Island",MP:"Nordmarianerne",NO:"Norge",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palæstina",PA:"Panama",PG:"Papua Ny Guinea",PY:"Paraguay",PE:"Peru",PH:"Filippinerne",PN:"Pitcairn",PL:"Polen",PT:"Portugal",PR:"Puerto Rico",QA:"Qatar",RE:"Réunion",RO:"Rumænien",RU:"Rusland",RW:"Rwanda",SH:"Sankt Helena",KN:"Saint Kitts og Nevis",LC:"Saint Lucia",PM:"Saint-Pierre og Miquelon",VC:"Saint Vincent og Grenadinerne",WS:"Samoa",SM:"San Marino",ST:"São Tomé og Príncipe",SA:"Saudi-Arabien",SN:"Senegal",SC:"Seychellerne",SL:"Sierra Leone",SG:"Singapore",SK:"Slovakiet",SI:"Slovenien",SB:"Salomonøerne",SO:"Somalia",ZA:"Sydafrika",GS:"South Georgia og South Sandwich Islands",ES:"Spanien",LK:"Sri Lanka",SD:"Sudan",SR:"Surinam",SJ:"Norge Svalbard og Jan Mayen",SZ:"Eswatini",SE:"Sverige",CH:"Schweiz",SY:"Syrien",TW:"Republikken Kina Taiwan",TJ:"Tadsjikistan",TZ:"Tanzania",TH:"Thailand",TL:"Østtimor",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad og Tobago",TN:"Tunesien",TR:"Tyrkiet",TM:"Turkmenistan",TC:"Turks- og Caicosøerne",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",AE:"Forenede Arabiske Emirater",GB:"Storbritannien",US:"USA",UM:"USA's ydre småøer",UY:"Uruguay",UZ:"Usbekistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Britiske Jomfruøer",VI:"Amerikanske Jomfruøer",WF:"Wallis og Futuna",EH:"Vestsahara",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabwe",AX:"Ålandsøerne",BQ:"Nederlandske Antiller",CW:"Curaçao",GG:"Guernsey",IM:"Isle of Man",JE:"Jersey",ME:"Montenegro",BL:"Saint-Barthélemy",MF:"Saint Martin (fransk side)",RS:"Serbien",SX:"Saint Martin (hollandsk side)",SS:"Sydsudan",XK:"Kosovo"}},XM={locale:"uk",countries:{AU:"Австралія",AT:"Австрія",AZ:"Азербайджан",AX:"Аландські Острови",AL:"Албанія",DZ:"Алжир",AS:"Американське Самоа",AI:"Ангілья",AO:"Ангола",AD:"Андорра",AQ:"Антарктика",AG:"Антигуа і Барбуда",MO:"Макао",AR:"Аргентина",AM:"Вірменія",AW:"Аруба",AF:"Афганістан",BS:"Багамські Острови",BD:"Бангладеш",BB:"Барбадос",BH:"Бахрейн",BZ:"Беліз",BE:"Бельгія",BJ:"Бенін",BM:"Бермудські Острови",BY:"Білорусь",BG:"Болгарія",BO:"Болівія",BA:"Боснія і Герцеговина",BW:"Ботсвана",BR:"Бразилія",IO:"Британська Територія в Індійському Океані",VG:"Британські Віргінські Острови",BN:"Бруней-Даруссалам",BF:"Буркіна-Фасо",BI:"Бурунді",BT:"Бутан",VU:"Вануату",VA:"Ватикан",GB:"Великобританія",VE:"Венесуела",VI:"Віргінські Острови (США)",WF:"Волліс і Футуна",VN:"В'єтнам",UM:"Зовнішні Віддалені Острови (США)",GA:"Габон",HT:"Гаїті",GY:"Гаяна",GM:"Гамбія",GH:"Гана",GP:"Гваделупа",GT:"Гватемала",GF:"Гвіана",GN:"Гвінея",GW:"Гвінея-Бісау",GG:"Гернсі",GI:"Гібралтар",HN:"Гондурас",HK:"Гонконг",GD:"Гренада",GR:"Греція",GE:"Грузія",GU:"Гуам",GL:"Гренландія",DK:"Данія",JE:"Джерсі",DJ:"Джибуті",DM:"Домініка",DO:"Домініканська Республіка",CD:"Демократична Республіка Конго",EC:"Еквадор",GQ:"Екваторіальна Гвінея",ER:"Еритрея",EE:"Естонія",ET:"Ефіопія",EG:"Єгипет",YE:"Ємен",ZM:"Замбія",ZW:"Зімбабве",IL:"Ізраїль",IN:"Індія",ID:"Індонезія",IQ:"Ірак",IR:"Іран",IE:"Ірландія",IS:"Ісландія",ES:"Іспанія",IT:"Італія",JO:"Йорданія",CV:"Кабо-Верде",KZ:"Казахстан",KY:"Кайманові Острови",KH:"Камбоджа",CM:"Камерун",CA:"Канада",BQ:"Карибські Нідерланди",QA:"Катар",KE:"Кенія",CY:"Кіпр",KI:"Кірибаті",KG:"Киргизстан",TW:"Тайвань, Провінція Китаю",KP:"Корейська Народно-Демократична Республіка",CN:"Китай",CC:"Кокосові Острови",CO:"Колумбія",KM:"Комори",XK:"Косово",CR:"Коста-Рика",CI:"Кот-Д'Івуар",CU:"Куба",KW:"Кувейт",CW:"Кюрасао",LA:"Лаос",LV:"Латвія",LS:"Лесото",LR:"Ліберія",LB:"Ліван",LY:"Лівія",LT:"Литва",LI:"Ліхтенштейн",LU:"Люксембург",MU:"Маврикій",MR:"Мавританія",MG:"Мадагаскар",YT:"Майотта",MW:"Малаві",MY:"Малайзія",ML:"Малі",MV:"Мальдіви",MT:"Мальта",MA:"Марокко",MQ:"Мартиніка",MH:"Маршаллові Острови",MX:"Мексика",FM:"Мікронезія",MZ:"Мозамбік",MD:"Молдова",MC:"Монако",MN:"Монголія",MS:"Монтсеррат",MM:"М'янма",NA:"Намібія",NR:"Науру",NP:"Непал",NE:"Нігер",NG:"Нігерія",NL:"Нідерланди",NI:"Нікарагуа",DE:"Німеччина",NU:"Ніуе",NZ:"Нова Зеландія",NC:"Нова Каледонія",NO:"Норвегія",AE:"Об'єднані Арабські Емірати",OM:"Оман",BV:"Острів Буве",HM:"Острів Герд і Острови Макдоналд",IM:"Острів Мен",NF:"Острів Норфолк",CX:"Острів Різдва",CK:"Острови Кука",SH:"Острів Святої Єлени",TC:"Острови Теркс і Кайкос",PK:"Пакистан",PW:"Палау",PS:"Палестина",PA:"Панама",PG:"Папуа-Нова Гвінея",ZA:"Південна Африка",PY:"Парагвай",PE:"Перу",GS:"Південна Джорджія та Південні Сандвічеві Острови",KR:"Республіка Корея",SS:"Південний Судан",MK:"Північна Македонія",MP:"Північні Маріанські Острови",PN:"Піткерн",PL:"Польща",PT:"Португалія",PR:"Пуерто-Рико",CG:"Конго",RE:"Реюньйон",RU:"Росія",RW:"Руанда",RO:"Румунія",EH:"Західна Сахара",SV:"Сальвадор",WS:"Самоа",SM:"Сан-Марино",ST:"Сан-Томе і Принсіпі",SA:"Саудівська Аравія",SZ:"Есватіні",SJ:"Острови Шпіцберген та Ян-Маєн",SC:"Сейшельські Острови",BL:"Сен-Бартелемі",MF:"Сен-Мартен",PM:"Сен-П'єр і Мікелон",SN:"Сенегал",VC:"Сент-Вінсент і Гренадіни",KN:"Сент-Кітс і Невіс",LC:"Сент-Люсія",RS:"Сербія",SG:"Сингапур",SX:"Сінт-Мартен",SY:"Сирія",SK:"Словаччина",SI:"Словенія",SB:"Соломонові Острови",SO:"Сомалі",SD:"Судан",SR:"Суринам",TL:"Тимор-Лешті",US:"США",SL:"Сьєрра-Леоне",TJ:"Таджикистан",TH:"Таїланд",TZ:"Танзанія",TG:"Того",TK:"Токелау",TO:"Тонга",TT:"Тринідад і Тобаго",TV:"Тувалу",TN:"Туніс",TM:"Туркменистан",TR:"Туреччина",UG:"Уганда",HU:"Угорщина",UZ:"Узбекистан",UA:"Україна",UY:"Уругвай",FO:"Фарерські Острови",FJ:"Фіджі",PH:"Філіппіни",FI:"Фінляндія",FK:"Фолклендські Острови",FR:"Франція",PF:"Французька Полінезія",TF:"Французькі Південні і Антарктичні Території",HR:"Хорватія",CF:"Центральноафриканська Республіка",TD:"Чад",ME:"Чорногорія",CZ:"Чехія",CL:"Чилі",CH:"Швейцарія",SE:"Швеція",LK:"Шри-Ланка",JM:"Ямайка",JP:"Японія"}};NM.registerLocale(zM),NM.registerLocale(VM),NM.registerLocale(RM),NM.registerLocale(OM),NM.registerLocale(PM),NM.registerLocale(UM),NM.registerLocale(GM),NM.registerLocale(jM),NM.registerLocale(HM),NM.registerLocale(KM),NM.registerLocale(ZM),NM.registerLocale(qM),NM.registerLocale(WM),NM.registerLocale(JM),NM.registerLocale(QM),NM.registerLocale(YM),NM.registerLocale(XM),function(){try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode('@keyframes spinner-circle-animation-ed866313{0%,39%,to{opacity:0}40%{opacity:1}}.spinner[data-v-ed866313]{position:relative;width:var(--vs-spinner-size);height:var(--vs-spinner-size);margin:0;padding:0}.spinner-circle[data-v-ed866313]{width:100%;height:100%;position:absolute;left:0;top:0}.spinner-circle[data-v-ed866313]:before{content:"";display:block;margin:0 auto;width:15%;height:15%;background-color:var(--vs-spinner-color);border-radius:100%;-webkit-animation:spinner-circle-animation-ed866313 1.2s infinite ease-in-out both;animation:spinner-circle-animation-ed866313 1.2s infinite ease-in-out both}.spinner-circle[data-v-ed866313]:nth-child(2){transform:rotate(30deg)}.spinner-circle[data-v-ed866313]:nth-child(3){transform:rotate(60deg)}.spinner-circle[data-v-ed866313]:nth-child(4){transform:rotate(90deg)}.spinner-circle[data-v-ed866313]:nth-child(5){transform:rotate(120deg)}.spinner-circle[data-v-ed866313]:nth-child(6){transform:rotate(150deg)}.spinner-circle[data-v-ed866313]:nth-child(7){transform:rotate(180deg)}.spinner-circle[data-v-ed866313]:nth-child(8){transform:rotate(210deg)}.spinner-circle[data-v-ed866313]:nth-child(9){transform:rotate(240deg)}.spinner-circle[data-v-ed866313]:nth-child(10){transform:rotate(270deg)}.spinner-circle[data-v-ed866313]:nth-child(11){transform:rotate(300deg)}.spinner-circle[data-v-ed866313]:nth-child(12){transform:rotate(330deg)}.spinner-circle[data-v-ed866313]:nth-child(2):before{animation-delay:-1.1s}.spinner-circle[data-v-ed866313]:nth-child(3):before{animation-delay:-1s}.spinner-circle[data-v-ed866313]:nth-child(4):before{animation-delay:-.9s}.spinner-circle[data-v-ed866313]:nth-child(5):before{animation-delay:-.8s}.spinner-circle[data-v-ed866313]:nth-child(6):before{animation-delay:-.7s}.spinner-circle[data-v-ed866313]:nth-child(7):before{animation-delay:-.6s}.spinner-circle[data-v-ed866313]:nth-child(8):before{animation-delay:-.5s}.spinner-circle[data-v-ed866313]:nth-child(9):before{animation-delay:-.4s}.spinner-circle[data-v-ed866313]:nth-child(10):before{animation-delay:-.3s}.spinner-circle[data-v-ed866313]:nth-child(11):before{animation-delay:-.2s}.spinner-circle[data-v-ed866313]:nth-child(12):before{animation-delay:-.1s}.indicators-container[data-v-f0250ade]{display:flex;align-items:center;align-self:stretch;flex-shrink:0;gap:var(--vs-indicators-gap);padding:var(--vs-padding)}.clear-button[data-v-f0250ade]{appearance:none;display:inline-block;padding:0;margin:0;border:0;width:var(--vs-indicator-icon-size);height:var(--vs-indicator-icon-size);color:var(--vs-indicator-icon-color);background:none;outline:none;cursor:var(--vs-indicator-icon-cursor)}.dropdown-icon[data-v-f0250ade]{appearance:none;display:inline-block;padding:0;margin:0;border:0;width:var(--vs-indicator-icon-size);height:var(--vs-indicator-icon-size);color:var(--vs-indicator-icon-color);background:none;outline:none;cursor:var(--vs-indicator-icon-cursor);transition:var(--vs-indicator-dropdown-icon-transition)}.dropdown-icon.active[data-v-f0250ade]{transform:rotate(180deg)}[data-v-4c5f8027]{box-sizing:border-box}.menu-option[data-v-4c5f8027]{display:flex;width:var(--vs-option-width);border:0;margin:0;padding:var(--vs-option-padding);font-size:var(--vs-option-font-size);font-weight:var(--vs-option-font-weight);font-family:var(--vs-font-family);color:var(--vs-option-text-color);white-space:break-spaces;background-color:var(--vs-option-background-color);text-align:var(--vs-option-text-align);cursor:var(--vs-option-cursor)}.menu-option[data-v-4c5f8027]:hover{background-color:var(--vs-option-hover-background-color);color:var(--vs-option-hover-text-color)}.menu-option.focused[data-v-4c5f8027]{background-color:var(--vs-option-focused-background-color);color:var(--vs-option-focused-text-color)}.menu-option.selected[data-v-4c5f8027]{background-color:var(--vs-option-selected-background-color);color:var(--vs-option-selected-text-color)}.menu-option.disabled[data-v-4c5f8027]{background-color:var(--vs-option-disabled-background-color);color:var(--vs-option-disabled-text-color)}[data-v-5c36e7d3]{box-sizing:border-box}.menu[data-v-5c36e7d3]{position:absolute;margin-top:var(--vs-menu-offset-top);max-height:var(--vs-menu-height);overflow-y:auto;border:var(--vs-menu-border);border-radius:var(--vs-border-radius);box-shadow:var(--vs-menu-box-shadow);background-color:var(--vs-menu-background-color);z-index:var(--vs-menu-z-index)}.no-results[data-v-5c36e7d3]{padding:var(--vs-option-padding);font-size:var(--vs-font-size);font-family:var(--vs-font-family);color:var(--vs-text-color)}.taggable-no-options[data-v-5c36e7d3]{padding:var(--vs-option-padding);font-size:var(--vs-font-size);font-family:var(--vs-font-family);color:var(--vs-text-color);cursor:pointer}.multi-value[data-v-dfb6ab09]{display:flex;min-width:0px;margin:var(--vs-multi-value-margin);border-radius:var(--vs-multi-value-border-radius);background:var(--vs-multi-value-background-color)}.multi-value-label[data-v-dfb6ab09]{padding:var(--vs-multi-value-label-padding);border:var(--vs-multi-value-border);border-radius:var(--vs-multi-value-border-radius);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:var(--vs-multi-value-label-font-size);font-weight:var(--vs-multi-value-label-font-weight);line-height:var(--vs-multi-value-label-line-height);color:var(--vs-multi-value-label-text-color)}.multi-value-remove[data-v-dfb6ab09]{border-radius:var(--vs-multi-value-border-radius);appearance:none;display:flex;align-items:center;padding:var(--vs-multi-value-delete-padding);border:none;outline:none;cursor:var(--vs-multi-value-xmark-cursor);background-color:var(--vs-multi-value-background-color)}.multi-value-remove[data-v-dfb6ab09]:hover{background-color:var(--vs-multi-value-delete-hover-background-color)}.multi-value-remove svg[data-v-dfb6ab09]{width:var(--vs-multi-value-xmark-size);height:var(--vs-multi-value-xmark-size);fill:var(--vs-multi-value-xmark-color)}.multi-value-remove:hover svg[data-v-dfb6ab09]{fill:var(--vs-multi-value-xmark-hover-color)}.input-placeholder[data-v-d650edcf]{grid-area:1 / 1 / 2 / 3;color:var(--vs-placeholder-color)}:root{--vs-width: 100%;--vs-min-height: 38px;--vs-padding: 4px 8px;--vs-border: 1px solid #e4e4e7;--vs-border-radius: 4px;--vs-font-size: 16px;--vs-font-weight: 400;--vs-font-family: inherit;--vs-text-color: #18181b;--vs-line-height: 1.5;--vs-placeholder-color: #52525b;--vs-background-color: #fff;--vs-disabled-background-color: #f4f4f5;--vs-outline-width: 1px;--vs-outline-color: #3b82f6;--vs-menu-offset-top: 8px;--vs-menu-height: 200px;--vs-menu-border: var(--vs-border);--vs-menu-background-color: var(--vs-background-color);--vs-menu-box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--vs-menu-z-index: 2;--vs-option-width: 100%;--vs-option-padding: 8px 12px;--vs-option-cursor: pointer;--vs-option-font-size: var(--vs-font-size);--vs-option-font-weight: var(--vs-font-weight);--vs-option-text-align: -webkit-auto;--vs-option-text-color: var(--vs-text-color);--vs-option-hover-text-color: var(--vs-text-color);--vs-option-focused-text-color: var(--vs-text-color);--vs-option-selected-text-color: var(--vs-text-color);--vs-option-disabled-text-color: #52525b;--vs-option-background-color: var(--vs-menu-background);--vs-option-hover-background-color: #dbeafe;--vs-option-focused-background-color: var(--vs-option-hover-background-color);--vs-option-selected-background-color: #93c5fd;--vs-option-disabled-background-color: #f4f4f5;--vs-option-opacity-menu-open: .4;--vs-multi-value-margin: 2px;--vs-multi-value-border: 0px;--vs-multi-value-border-radius: 2px;--vs-multi-value-background-color: #f4f4f5;--vs-multi-value-label-padding: 4px 4px 4px 8px;--vs-multi-value-label-font-size: 12px;--vs-multi-value-label-font-weight: 400;--vs-multi-value-label-line-height: 1;--vs-multi-value-label-text-color: #3f3f46;--vs-multi-value-delete-padding: 0 3px;--vs-multi-value-delete-hover-background-color: #FF6467;--vs-multi-value-xmark-size: 16px;--vs-multi-value-xmark-cursor: pointer;--vs-multi-value-xmark-color: var(--vs-multi-value-label-text-color);--vs-multi-value-xmark-hover-color: #fff;--vs-indicators-gap: 0px;--vs-indicator-icon-size: 20px;--vs-indicator-icon-color: var(--vs-text-color);--vs-indicator-icon-cursor: pointer;--vs-indicator-dropdown-icon-transition: transform .2s ease-out;--vs-spinner-color: var(--vs-text-color);--vs-spinner-size: 16px}[data-v-c5806535]{box-sizing:border-box}.vue-select[data-v-c5806535]{position:relative;box-sizing:border-box;width:var(--vs-width)}.control[data-v-c5806535]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;min-height:var(--vs-min-height);border:var(--vs-border);border-radius:var(--vs-border-radius);background-color:var(--vs-background-color)}.control.focused[data-v-c5806535]{box-shadow:0 0 0 var(--vs-outline-width) var(--vs-outline-color);border-color:var(--vs-outline-color)}.control.disabled[data-v-c5806535]{background-color:var(--vs-disabled-background-color)}.value-container[data-v-c5806535]{position:relative;overflow:hidden;display:grid;align-items:center;flex:1 1 0%;padding:var(--vs-padding)}.value-container.multi.has-value[data-v-c5806535]{display:flex;flex-wrap:wrap}.single-value[data-v-c5806535]{display:block;grid-area:1 / 1 / 2 / 3;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:var(--vs-font-size);font-weight:var(--vs-font-weight);font-family:var(--vs-font-family);line-height:var(--vs-line-height);color:var(--vs-text-color)}.vue-select[data-state=open] .single-value[data-v-c5806535]{opacity:var(--vs-option-opacity-menu-open)}.vue-select.typing .single-value[data-v-c5806535]{opacity:0}.input-container[data-v-c5806535]{visibility:visible;display:inline-grid;grid-area:1 / 1 / 2 / 3;grid-template-columns:0px min-content}.input-container.typing[data-v-c5806535]{transform:translateZ(0)}.input-container.typing[data-v-c5806535]:after{content:attr(data-value) " ";visibility:hidden;white-space:pre;grid-area:1 / 2;min-width:2px;padding:0;margin:0;border:0}.search-input[data-v-c5806535]{margin:0;padding:0;border:0;min-width:2px;width:100%;grid-area:1 / 2;background:0px center;font-size:var(--vs-font-size);font-family:var(--vs-font-family);line-height:var(--vs-line-height);color:var(--vs-text-color);opacity:1;outline:none}')),document.head.appendChild(e)}}catch(j_){console.error("vite-plugin-css-injected-by-js",j_)}}();const $M=(e,t)=>{const n=e.__vccOpts||e;for(const[i,a]of t)n[i]=a;return n},eS={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"};const tS=$M({},[["render",function(e,t){return Na(),Oa("svg",eS,t[0]||(t[0]=[Ka("path",{"fill-rule":"evenodd",d:"M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"},null,-1)]))}]]),nS={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"};const iS=$M({},[["render",function(e,t){return Na(),Oa("svg",nS,t[0]||(t[0]=[Ka("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"},null,-1)]))}]]),aS={className:"spinner"};const oS=$M({},[["render",function(e,t){return Na(),Oa("div",aS,[(Na(),Oa(Ta,null,mi(12,e=>Ka("div",{key:e,class:"spinner-circle"})),64))])}],["__scopeId","data-v-ed866313"]]),rS={ref:"container",class:"indicators-container"},sS=["disabled"],lS=["disabled"],cS=$M(jn({__name:"Indicators",props:{hasSelectedOption:{type:Boolean},isMenuOpen:{type:Boolean},isClearable:{type:Boolean},isLoading:{type:Boolean},isDisabled:{type:Boolean},slots:{}},emits:["clear","toggle"],setup(e,{expose:t,emit:n}){const i=e,a=n;return t({containerRef:Kn("container"),clearButtonRef:Kn("clearButton"),dropdownButtonRef:Kn("dropdownButton")}),(e,t)=>(Na(),Oa("div",rS,[e.hasSelectedOption&&e.isClearable&&!e.isLoading?(Na(),Oa("button",{key:0,ref:"clearButton",type:"button",class:"clear-button",tabindex:"-1",disabled:e.isDisabled,onClick:t[0]||(t[0]=kr(e=>a("clear"),["stop"]))},[i.slots.clear?(Na(),Pa(hi(i.slots.clear),{key:0})):(Na(),Pa(iS,{key:1}))],8,sS)):Qa("",!0),e.isLoading?Qa("",!0):(Na(),Oa("button",{key:1,ref:"dropdownButton",type:"button",class:K(["dropdown-icon",{active:e.isMenuOpen}]),tabindex:"-1",disabled:e.isDisabled,onClick:t[1]||(t[1]=kr(e=>a("toggle"),["stop"]))},[i.slots.dropdown?(Na(),Pa(hi(i.slots.dropdown),{key:0})):(Na(),Pa(tS,{key:1}))],10,lS)),i.slots.loading?(Na(),Pa(hi(i.slots.loading),{key:2})):(Na(),Oa(Ta,{key:3},[e.isLoading?(Na(),Pa(oS,{key:0})):Qa("",!0)],64))],512))}}),[["__scopeId","data-v-f0250ade"]]),dS=Symbol("props"),uS=Symbol("data");let CS=0;const pS=["aria-disabled","aria-selected"],hS=jn({__name:"MenuOption",props:{menu:{},index:{},isFocused:{type:Boolean},isSelected:{type:Boolean},isDisabled:{type:Boolean}},emits:["select"],setup(e,{emit:t}){const n=e,i=t,a=bt(null);return ga(()=>n.isFocused,()=>{if(n.isFocused&&n.menu){const e=n.menu.children[n.index],t=e.offsetTop,i=t+e.clientHeight,a=n.menu.scrollTop,o=n.menu.clientHeight;t<a?n.menu.scrollTop=t:i>a+o&&(n.menu.scrollTop=i-o)}}),(e,t)=>(Na(),Oa("div",{ref_key:"option",ref:a,class:K(["menu-option",{focused:e.isFocused,selected:e.isSelected,disabled:e.isDisabled}]),tabindex:"-1",role:"option","aria-disabled":e.isDisabled,"aria-selected":e.isSelected,onClick:t[0]||(t[0]=e=>i("select")),onKeydown:t[1]||(t[1]=Tr(e=>i("select"),["enter"]))},[vi(e.$slots,"default",{},void 0,!0)],42,pS))}}),gS=$M(hS,[["__scopeId","data-v-4c5f8027"]]),fS=["id","aria-label","aria-multiselectable"],mS=jn({__name:"Menu",props:_i({slots:{}},{modelValue:{required:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const t=e,n=ya(e,"modelValue"),i=Hi(dS),a=Hi(uS),o=Kn("menu"),r=()=>{if(a.containerRef.value){const e=a.containerRef.value.getBoundingClientRect();return{left:`${e.x}px`,top:`${e.y+e.height}px`}}return console.warn("Unable to calculate dynamic menu position because of missing internal DOM reference."),{top:"0px",left:"0px"}},s=e=>{if(a.menuOpen.value){const t=a.focusedOption.value;if("ArrowDown"===e.key){e.preventDefault();const n=a.availableOptions.value.findIndex((e,n)=>!e.disabled&&n>t),i=a.availableOptions.value.findIndex(e=>!e.disabled);a.focusedOption.value=-1===n?i:n}if("ArrowUp"===e.key){e.preventDefault();const n=a.availableOptions.value.reduce((e,n,i)=>!n.disabled&&i<t?i:e,-1),i=a.availableOptions.value.reduce((e,t,n)=>t.disabled?e:n,-1);a.focusedOption.value=-1===n?i:n}if("Enter"===e.key){const n=a.availableOptions.value[t];e.preventDefault(),n?a.setOption(n):i.isTaggable&&a.search.value&&a.createOption()}if("Space"===e.code&&0===a.search.value.length){const n=a.availableOptions.value[t];e.preventDefault(),n&&a.setOption(n)}"Escape"===e.key&&(e.preventDefault(),a.closeMenu());const o=i.isMulti&&Array.isArray(n.value)?n.value.length>0:!!n.value;"Backspace"===e.key&&0===a.search.value.length&&o&&(e.preventDefault(),i.isMulti&&Array.isArray(n.value)?n.value=n.value.slice(0,-1):n.value=void 0)}},l=e=>{const t=e.target,n=a.containerRef.value&&a.containerRef.value.contains(t),i=o.value&&o.value.contains(t);!n&&!i&&a.closeMenu()};return ni(()=>{document.addEventListener("keydown",s),document.addEventListener("click",l)}),oi(()=>{document.removeEventListener("keydown",s),document.removeEventListener("click",l)}),(e,s)=>{var l,c,d,u,C,p;return Na(),Oa("div",{id:`vue-select-${It(i).uid}-listbox`,ref:"menu",class:K(["menu",null==(l=It(i).classes)?void 0:l.menuContainer]),role:"listbox","aria-label":null==(c=It(i).aria)?void 0:c.labelledby,"aria-multiselectable":It(i).isMulti,style:P({width:It(i).teleport?`${null==(u=null==(d=It(a).containerRef)?void 0:d.value)?void 0:u.getBoundingClientRect().width}px`:"100%",top:It(i).teleport?r().top:"unset",left:It(i).teleport?r().left:"unset"})},[(Na(!0),Oa(Ta,null,mi(It(a).availableOptions.value,(e,r)=>{var s;return Na(),Pa(gS,{key:r,type:"button",menu:o.value,index:r,"is-focused":It(a).focusedOption.value===r,"is-selected":Array.isArray(n.value)?n.value.includes(e.value):e.value===n.value,"is-disabled":e.disabled||!1,class:K(null==(s=It(i).classes)?void 0:s.menuOption),onSelect:t=>It(a).setOption(e)},{default:gn(()=>[(Na(),Pa(hi(t.slots["menu-header"]))),t.slots.option?(Na(),Pa(hi(t.slots.option),{key:0,option:e,index:r,"is-focused":It(a).focusedOption.value===r,"is-selected":Array.isArray(n.value)?n.value.includes(e.value):e.value===n.value,"is-disabled":e.disabled||!1},null,8,["option","index","is-focused","is-selected","is-disabled"])):It(i).getOptionLabel?(Na(),Oa(Ta,{key:1},[Wa(J(It(i).getOptionLabel(e)),1)],64)):(Na(),Oa(Ta,{key:2},[Wa(J(e.label),1)],64))]),_:2},1032,["menu","index","is-focused","is-selected","is-disabled","class","onSelect"])}),128)),It(i).isTaggable||0!==It(a).availableOptions.value.length?Qa("",!0):(Na(),Oa("div",{key:0,class:K(["no-results",null==(C=It(i).classes)?void 0:C.noResults])},[t.slots["no-options"]?(Na(),Pa(hi(t.slots["no-options"]),{key:0})):(Na(),Oa(Ta,{key:1},[Wa(" No results found ")],64))],2)),It(i).isTaggable&&It(a).search.value?(Na(),Oa("div",{key:1,class:K(["taggable-no-options",null==(p=It(i).classes)?void 0:p.taggableNoOptions]),onClick:s[0]||(s[0]=(...e)=>It(a).createOption&&It(a).createOption(...e))},[t.slots["taggable-no-options"]?(Na(),Pa(hi(t.slots["taggable-no-options"]),{key:0,option:It(a).search.value},null,8,["option"])):(Na(),Oa(Ta,{key:1},[Wa(" Press enter to add "+J(It(a).search.value)+" option ",1)],64))],2)):Qa("",!0)],14,fS)}}}),vS=$M(mS,[["__scopeId","data-v-5c36e7d3"]]),yS=["aria-label"],MS=jn({__name:"MultiValue",props:{label:{},classes:{}},emits:["remove"],setup(e,{emit:t}){const n=e,i=t;return(e,t)=>{var a,o,r;return Na(),Oa("div",{class:K(["multi-value",null==(a=n.classes)?void 0:a.multiValue])},[Ka("div",{class:K(["multi-value-label",null==(o=n.classes)?void 0:o.multiValueLabel])},J(n.label),3),Ka("button",{type:"button",class:K(["multi-value-remove",null==(r=n.classes)?void 0:r.multiValueRemove]),"aria-label":`Remove ${n.label}`,onClick:t[0]||(t[0]=kr(e=>i("remove"),["stop"]))},[Za(iS)],10,yS)],2)}}}),SS=$M(MS,[["__scopeId","data-v-dfb6ab09"]]),wS={class:"input-placeholder"},AS=jn({__name:"Placeholder",props:{text:{},placeholderSlot:{type:Function}},setup:e=>(e,t)=>(Na(),Oa("div",wS,[e.placeholderSlot?(Na(),Pa(hi(e.placeholderSlot),{key:0})):(Na(),Oa(Ta,{key:1},[Wa(J(e.text),1)],64))]))}),bS=$M(AS,[["__scopeId","data-v-d650edcf"]]),FS=["data-state"],_S=["id","aria-expanded","aria-describedby","aria-description","aria-labelledby","aria-label","aria-required","aria-owns","aria-controls"],kS=["data-value"],IS=["id","aria-labelledby","disabled"],TS=jn({__name:"Select",props:_i({options:{},displayedOptions:{},placeholder:{default:"Select an option"},isClearable:{type:Boolean,default:!0},isDisabled:{type:Boolean,default:!1},isSearchable:{type:Boolean,default:!0},isMulti:{type:Boolean,default:!1},isTaggable:{type:Boolean,default:!1},isLoading:{type:Boolean,default:!1},isMenuOpen:{type:Boolean,default:void 0},hideSelectedOptions:{type:Boolean,default:!0},shouldAutofocusOption:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},teleport:{default:void 0},inputId:{default:void 0},classes:{default:void 0},uid:{default:++CS},aria:{default:void 0},disableInvalidVModelWarn:{type:Boolean,default:!1},filterBy:{type:Function,default:(e,t,n)=>t.toLowerCase().includes(n.toLowerCase())},getOptionValue:{type:Function,default:e=>e.value},getOptionLabel:{type:Function,default:e=>e.label}},{modelValue:{required:!0},modelModifiers:{}}),emits:_i(["optionSelected","optionDeselected","optionCreated","menuOpened","menuClosed","search"],["update:modelValue"]),setup(e,{emit:t}){const n=e,i=t,a=bi(),o=ya(e,"modelValue"),r=Kn("container"),s=Kn("input"),l=Kn("indicators"),c=bt(""),d=bt(!1),u=bt(-1),C=wo(()=>{const e=n.displayedOptions||n.options;(null==e?void 0:e.length)||console.warn("[vue3-select-component warn]: No options or displayedOptions were provided to the component.");const t=e.map(e=>({...e,label:n.getOptionLabel(e),value:n.getOptionValue(e)})),i=e=>e.filter(e=>!n.hideSelectedOptions||!Array.isArray(o.value)||!o.value.includes(e.value));if(n.isSearchable&&c.value){const e=t.filter(e=>n.filterBy(e,n.getOptionLabel(e),c.value));return n.isMulti?i(e):e}return n.isMulti?i(t):t}),p=wo(()=>{if(n.isMulti)return Array.isArray(o.value)?o.value.map(e=>n.options.find(t=>n.getOptionValue(t)===e)).filter(e=>void 0!==e):(n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}`),[]);const e=n.options.find(e=>n.getOptionValue(e)===o.value);return e?[e]:[]});function h(){n.isDisabled||(d.value=!0,n.shouldAutofocusOption&&(u.value=n.options.findIndex(e=>!e.disabled)),s.value&&s.value.focus(),i("menuOpened"))}function g(){d.value=!1,c.value="",i("search",""),i("menuClosed")}function f(){d.value?g():h()}function m(e){var t;(null==(t=l.value)?void 0:t.containerRef)&&!l.value.containerRef.contains(e.target)&&h()}const v=e=>{n.isMulti&&!n.isDisabled&&(Array.isArray(o.value)?(o.value=o.value.filter(t=>t!==e.value),i("optionDeselected",e)):n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}`))},y=()=>{n.isMulti?(o.value=[],i("optionDeselected",null)):(o.value=void 0,i("optionDeselected",p.value[0])),d.value&&g(),s.value&&s.value.blur()},M=e=>{"Tab"===e.key?g():"Space"===e.code&&!d.value&&0===c.value.length&&(e.preventDefault(),e.stopImmediatePropagation(),h())};return ji(dS,n),ji(uS,{vmodel:o,availableOptions:C,selectedOptions:p,menuOpen:d,focusedOption:u,containerRef:r,search:c,openMenu:h,closeMenu:g,toggleMenu:f,handleControlClick:m,setOption:e=>{e.disabled||(n.isMulti?Array.isArray(o.value)?o.value.find(t=>t===e.value)?o.value=o.value.filter(t=>t!==e.value):o.value=[...o.value,e.value]:(o.value=[e.value],n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}. Since an option has been selected, the component automatically converted the v-model to an array.`)):o.value=e.value,i("optionSelected",e),c.value="",n.closeOnSelect&&g(),s.value&&s.value.blur())},removeOption:v,createOption:()=>{i("optionCreated",c.value),c.value="",g()}}),ga(()=>c.value,()=>{c.value&&(i("search",c.value),d.value||h())}),ga(()=>n.isMenuOpen,(e,t)=>{void 0===t&&void 0===e||(e?h():g())},{immediate:!0}),(e,t)=>{var i,r,s,l,u,C,g,S,w;return Na(),Oa("div",{ref:"container",dir:"auto",class:K(["vue-select",[{open:d.value,typing:d.value&&c.value.length>0,disabled:e.isDisabled},null==(i=n.classes)?void 0:i.container]]),"data-state":d.value?"open":"closed"},[Ka("div",{class:K(["control",[{focused:d.value,disabled:n.isDisabled},null==(r=n.classes)?void 0:r.control]]),onClick:t[3]||(t[3]=e=>m(e))},[Ka("div",{id:`vue-select-${e.uid}-combobox`,class:K(["value-container",[{multi:e.isMulti,"has-value":p.value.length>0},null==(s=n.classes)?void 0:s.valueContainer]]),role:"combobox","aria-expanded":d.value,"aria-describedby":e.placeholder,"aria-description":e.placeholder,"aria-labelledby":null==(l=e.aria)?void 0:l.labelledby,"aria-label":p.value.length?p.value.map(e.getOptionLabel).join(", "):"","aria-required":null==(u=e.aria)?void 0:u.required,"aria-owns":`vue-select-${e.uid}-listbox`,"aria-controls":`vue-select-${e.uid}-listbox`,"aria-haspopup":"true"},[p.value[0]||c.value.length?!n.isMulti&&p.value[0]?(Na(),Oa("div",{key:1,class:K(["single-value",[null==(g=n.classes)?void 0:g.singleValue]]),onClick:t[0]||(t[0]=e=>h())},[a.value?(Na(),Pa(hi(a.value),{key:0,option:p.value[0]},null,8,["option"])):(Na(),Oa(Ta,{key:1},[Wa(J(e.getOptionLabel(p.value[0])),1)],64))],2)):n.isMulti&&p.value.length?(Na(!0),Oa(Ta,{key:2},mi(p.value,t=>{var i,o,r;return Na(),Oa(Ta,{key:t.value},[a.tag?(Na(),Pa(hi(a.tag),{key:0,option:t,"remove-option":()=>v(t)},null,8,["option","remove-option"])):(Na(),Pa(SS,{key:1,label:e.getOptionLabel(t),classes:{multiValue:null==(i=n.classes)?void 0:i.multiValue,multiValueLabel:null==(o=n.classes)?void 0:o.multiValueLabel,multiValueRemove:null==(r=n.classes)?void 0:r.multiValueRemove},onRemove:e=>v(t)},null,8,["label","classes","onRemove"]))],64)}),128)):Qa("",!0):(Na(),Pa(bS,{key:0,text:e.placeholder,"placeholder-slot":a.placeholder,class:K(null==(C=n.classes)?void 0:C.placeholder)},null,8,["text","placeholder-slot","class"])),Ka("div",{class:K(["input-container",[{typing:d.value&&c.value.length>0},null==(S=n.classes)?void 0:S.inputContainer]]),"data-value":c.value},[fn(Ka("input",{id:e.inputId,ref:"input","onUpdate:modelValue":t[1]||(t[1]=e=>c.value=e),class:K(["search-input",null==(w=n.classes)?void 0:w.searchInput]),autocapitalize:"none",autocomplete:"off",autocorrect:"off",spellcheck:"false",tabindex:"0",type:"text","aria-autocomplete":"list","aria-labelledby":`vue-select-${e.uid}-combobox`,disabled:e.isDisabled,placeholder:"",onMousedown:t[2]||(t[2]=e=>h()),onKeydown:M},null,42,IS),[[br,c.value]])],10,kS)],10,_S),Za(cS,{ref:"indicators","has-selected-option":p.value.length>0,"is-menu-open":d.value,"is-clearable":e.isClearable,"is-loading":e.isLoading,"is-disabled":e.isDisabled,slots:{clear:a.clear,dropdown:a.dropdown,loading:a.loading},onClear:y,onToggle:f},null,8,["has-selected-option","is-menu-open","is-clearable","is-loading","is-disabled","slots"])],2),(Na(),Pa(kn,{to:e.teleport,disabled:!e.teleport,defer:!0},[d.value?(Na(),Pa(vS,{key:0,modelValue:o.value,"onUpdate:modelValue":t[4]||(t[4]=e=>o.value=e),slots:{option:a.option,"menu-header":a["menu-header"],"no-options":a["no-options"],"taggable-no-options":a["taggable-no-options"]}},null,8,["modelValue","slots"])):Qa("",!0)],8,["to","disabled"]))],10,FS)}}}),ES=$M(TS,[["__scopeId","data-v-c5806535"]]),LS=Object.assign({"./assets/country-flag-icons/3x2/AC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<g>\n\t<path fill="#FFFFFF" d="M440.1,181.1c-0.1,39.2-6.4,81.4-57.4,101.5c-51.1-20.1-57.3-62.3-57.4-101.5L440.1,181.1L440.1,181.1z"/>\n\t<path fill="#29DBFF" d="M439.6,197.7c-2.8,34.9-12.4,67.4-57,85c-44.4-17.6-54.5-51.2-56.9-84.9"/>\n\t<path fill="#FFFFFF" d="M437.8,214.1c-3.2,24.3-16.7,53.5-55.1,68.6c-38.4-15.1-50.5-42.5-55.1-68.4"/>\n\t<path fill="#29DBFF" d="M434.2,230.3c-5.7,17.7-19.3,39.4-51.3,52.8c-32-12.6-45.2-33.8-51.4-53"/>\n\t<path fill="#FFFFFF" d="M426.7,246.9c-6.5,11.3-17.7,25.4-44,35.9c-27.5-11.5-37.4-25.3-44-36.1"/>\n\t<path fill="#29DBFF" d="M412.4,265.1c-8.1,7.2-12,11.2-29.6,17.9c-20.1-7.9-22.6-11.6-29.2-17.5"/>\n\t<path fill="#5CC85C" d="M383.3,231.6c-0.2-0.2-27.9,35.7-27.9,35.7c-1.8-1.3-10-9.5-13.3-15l41.3-50.1l40.2,49.7\n\t\tc-3.9,6.5-11.4,13.6-13.2,15"/>\n</g>\n<polygon fill="#5CC85C" points="382.6,85.3 356.1,130.3 409.1,130.3 409.1,130.3 "/>\n<ellipse transform="matrix(0.134 -0.991 0.991 0.134 28.7247 484.2523)" fill="#F7A226" cx="291.4" cy="225.7" rx="48.7" ry="15.7"/>\n<ellipse transform="matrix(0.373 -0.9278 0.9278 0.373 37.247 384.4472)" fill="#DDC7AB" cx="303.1" cy="164.7" rx="11.7" ry="7.2"/>\n<ellipse transform="matrix(0.1437 -0.9896 0.9896 0.1437 -19.091 521.3171)" fill="#DDC7AB" cx="291.7" cy="271.7" rx="11.4" ry="3.3"/>\n<ellipse transform="matrix(0.9986 -5.352928e-02 5.352928e-02 0.9986 -13.9925 16.4237)" fill="#DDC7AB" cx="299.6" cy="269.4" rx="3.3" ry="11"/>\n<ellipse transform="matrix(0.9303 -0.3668 0.3668 0.9303 -51.8254 129.3871)" fill="#DDC7AB" cx="314.5" cy="201.1" rx="4.1" ry="13.7"/>\n<ellipse transform="matrix(0.9303 -0.3668 0.3668 0.9303 -43.1881 128.875)" fill="#DDC7AB" cx="317.5" cy="178.1" rx="13.7" ry="4.1"/>\n<ellipse transform="matrix(0.991 -0.134 0.134 0.991 -26.0008 65.5194)" fill="#F7A226" cx="473.6" cy="225.9" rx="15.7" ry="48.7"/>\n<ellipse transform="matrix(0.9278 -0.373 0.373 0.9278 -28.1478 184.2457)" fill="#DDC7AB" cx="462" cy="164.9" rx="7.2" ry="11.7"/>\n<ellipse transform="matrix(0.9896 -0.1437 0.1437 0.9896 -34.1512 70.8368)" fill="#DDC7AB" cx="473.4" cy="271.9" rx="3.3" ry="11.4"/>\n<ellipse transform="matrix(5.352928e-02 -0.9986 0.9986 5.352928e-02 171.3404 719.9983)" fill="#DDC7AB" cx="465.5" cy="269.6" rx="11" ry="3.3"/>\n<ellipse transform="matrix(0.3668 -0.9303 0.9303 0.3668 98.0689 546.5782)" fill="#DDC7AB" cx="450.6" cy="201.2" rx="13.7" ry="4.1"/>\n<ellipse transform="matrix(0.3668 -0.9303 0.9303 0.3668 117.5679 529.2617)" fill="#DDC7AB" cx="447.6" cy="178.3" rx="4.1" ry="13.7"/>\n<polygon fill="#B0C6CC" points="373.3,130.3 356.1,155 373.9,181.1 396,181.1 400.7,155.7 395.3,130.3 "/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t144,69.4 "/>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t"/>\n</g>\n<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 "/>\n<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 "/>\n<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFDA44" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="171" height="342"/>\n<rect x="342" y="0" fill="#D80027" width="171" height="342"/>\n<rect x="198.92" y="113.58" fill="#D80027" width="57.08" height="64.8"/>\n<polygon fill="#D80027" points="309.16,228.68 256,243.18 256,178.38 313.08,178.38 "/>\n<path fill="#BC8B00" d="M182.24,95.92v92.2c0,34.32,27.26,54.17,48.63,64.46c-0.8,1.37,25.13,8.26,25.13,8.26s25.93-6.9,25.13-8.26\n\tc21.38-10.29,48.63-30.14,48.63-64.46v-92.2L182.24,95.92z M312.1,188.12c0,16.88-10,29.43-32.76,43.9\n\tc-8.62,5.48-17.54,9.03-23.34,11.01c-5.8-1.98-14.72-5.53-23.34-11.01C209.9,217.55,199.9,204,199.9,188.12v-74.54h112.2\n\tL312.1,188.12z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="114"/>\n<rect y="228" width="513" height="114"/>\n<rect y="0" fill="#dd0d12" width="171" height="342"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#DB3E00" width="513" height="342"/>\n<rect x="331" y="0" fill="#479900" width="182" height="342"/>\n<rect y="0" width="181.8" height="342"/>\n<path fill="#FFFFFF" d="M256,126.7c-19.4,0-35.2,15.8-35.2,35.2v52.8h70.4v-52.8C291.2,142.4,275.4,126.7,256,126.7z"/>\n<path fill="#FFFFFF" d="M256,84.3c-47.7,0-86.4,38.7-86.4,86.4S208.3,257,256,257c47.7,0,86.4-38.7,86.4-86.4S303.7,84.3,256,84.3z\n\t M256,242c-39.4,0-71.4-32-71.4-71.4c0-39.4,32-71.4,71.4-71.4c39.4,0,71.4,32,71.4,71.4C327.4,210.1,295.4,242,256,242z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" width="513" height="342"/>\n<path fill="#186DD2" d="M88.8,136.5c-2.2,12.9-3.4,26.2-3.4,39.8c0,13.6,1.2,27,3.4,39.8L256,228.3l167.2-12.1\n\tc2.2-12.9,3.4-26.2,3.4-39.8s-1.2-27-3.4-39.8"/>\n<path fill="#FFFFFF" d="M423.2,219H88.8c15.8,69.8,84.7,122.3,167.2,122.3S407.4,288.8,423.2,219z"/>\n<polygon fill="#FFDA44" points="365.9,136.5 146.1,136.5 191,115.4 167.1,71.9 215.9,81.3 222,32 256,68.2 290,32 296.1,81.3\n\t344.9,71.9 321,115.4 "/>\n<g>\n\t<polygon fill="#C32500" points="256.5,342 0,0 0,342 \t"/>\n\t<polygon fill="#C32500" points="513,342 513,0 256,342 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<path fill="#FFFFFF" d="M454.8,265.38c7.94-10.93,13.24-24.27,13.24-40.42V104.89c-10.04,7.54-22.5,12.01-36.02,12.01\n\tc-19.64,0-37.07-9.43-48.03-24.01c-10.95,14.58-28.39,24.01-48.03,24.01c-13.52,0-25.99-4.47-36.02-12v120.06\n\tc0,16.16,5.3,29.5,13.24,40.42L454.8,265.38L454.8,265.38z"/>\n<path fill="#8DCCFF" d="M310.23,260.98C332.65,296.96,384,309,384,309s51.35-12.04,73.77-48.02H310.23L310.23,260.98z"/>\n<path fill="#D87B00" d="M396.66,172.21c0.32,1.42,8.72,10.17,17.56,20.15c1.39,1.57-8.74,12.63-6.91,12.59\n\tc4.75-0.12,19.27-17.26,19.34,6.65c0.05,15.94-30,27.51-30,27.51h17.47l0.65,14.96c0,0,4.97-13.34,7.59-16.57\n\tc8.1-9.97,20.18-30.07,34.59-27.1c14.41,2.97-13.66-13.92-13.66-13.92s-5.2-15.19-16.63-16.97c-10.06-1.57-14.29-2.51-26.64-7.3\n\tC398.34,171.56,396.14,169.89,396.66,172.21z"/>\n<path fill="#D87B00" d="M359.69,198.69c1.07-0.99,4.46-12.63,8.69-25.28c0.67-1.99,15.31,1.27,14.35-0.3\n\tc-2.47-4.06-24.58-8.08-3.9-20.08c13.79-8,38.82,12.27,38.82,12.27l-8.72-15.14l12.64-8.03c0,0-14.05,2.35-18.14,1.69\n\tc-12.68-2.04-36.13-2.48-40.75-16.45c-4.62-13.97-5.25,18.79-5.25,18.79s-10.56,12.08-6.4,22.88c3.66,9.5,4.96,13.64,6.97,26.73\n\tC358.29,197.56,357.94,200.3,359.69,198.69z"/>\n<path fill="#D87B00" d="M395.67,219.87c-1.39-0.43-13.16,2.49-26.22,5.18c-2.06,0.42-6.59-13.88-7.47-12.26\n\tc-2.27,4.17,5.36,25.31-15.41,13.45c-13.84-7.91-8.89-39.73-8.89-39.73l-8.71,15.14l-13.29-6.9c0,0,9.09,10.96,10.57,14.84\n\tc4.6,11.99,16,32.49,6.24,43.49c-9.76,11.01,18.88-4.9,18.88-4.9s15.76,3.07,23-5.96c6.38-7.94,9.3-11.14,19.61-19.45\n\tC395.41,221.65,397.95,220.58,395.67,219.87z"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256.5,0 233.4,0 160,48.9 160,0 96,0 96,48.9 22.6,0 0,0 0,22.7 46.1,53.4 0,53.4 0,117.4 46.1,117.4\n\t\t0,148.1 0,171 22.6,171 96,121.8 96,171 160,171 160,121.8 233.4,171 256.5,171 256.5,148.1 209.9,117.4 256.5,117.4\n\t\t256.5,53.4 209.9,53.4 256.5,22.7 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,171 144,171 144,101.4 256.5,101.4 256.5,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,171 0,159.7 62.5,117.4 85.1,117.4 7.3,171 \t"/>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256.5,0.1 256.5,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,171 170.9,117.4 193.5,117.4 256.5,159.7 256.5,171 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<rect x="0" fill="#ED2024" width="90" height="60"/>\n<polygon fill="#212121" points="32.5,12.2 32.5,28.2 39.6,30.7 34.6,35.6 37,38.6 42.3,33.1 43.5,35.4 40.5,40.3 44.1,45.9 42.3,48.5\n\t45.1,52.1 47.8,48.4 46.3,45.8 49.3,40 46.6,35.4 47.8,33.1 53,38.6 55.5,35.7 50.3,30.6 57.5,28 57.5,12.2 52.3,14.1 52.2,17.9\n\t48.9,18.2 48.9,15.6 50.6,13.3 56.2,11.1 53.9,10.7 55.3,9.5 56.2,9.9 55.4,8.5 54,9 53,7.9 47.5,9 48.9,10.1 45.1,15 41.3,10.2\n\t42.6,9.1 37.6,7.9 36.2,9 34.7,8.6 33.9,10 34.8,9.4 36.4,10.5 34.1,11 39.6,13 41.2,15.3 41.2,18.2 37.9,17.9 37.9,14.3 "/>\n<g>\n\t<rect x="26.2" y="25" fill="#212121" width="6.4" height="2.5"/>\n\t<rect x="26.2" y="20.9" fill="#212121" width="6.4" height="2.7"/>\n\t<rect x="26.2" y="16.7" fill="#212121" width="6.4" height="2.6"/>\n\t<rect x="26.2" y="12.7" fill="#212121" width="6.4" height="2.5"/>\n</g>\n<g>\n\t<rect x="57.4" y="25" fill="#212121" width="6.4" height="2.5"/>\n\t<rect x="57.4" y="20.9" fill="#212121" width="6.4" height="2.7"/>\n\t<rect x="57.4" y="16.7" fill="#212121" width="6.4" height="2.6"/>\n\t<rect x="57.4" y="12.7" fill="#212121" width="6.4" height="2.5"/>\n</g>\n<rect x="53.4" y="36.1" fill="#212121" width="6.4" height="1.9"/>\n<rect x="30.2" y="36.1" fill="#212121" width="6.4" height="1.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<rect y="0" fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#FF9811" width="513" height="114"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="171" width="513" height="171"/>\n<rect y="0" fill="#D80027" width="513" height="171"/>\n<g>\n\t<path fill="#FFDA44" d="M197.01,139.81c-9.32,12.37-9,27.81,3.37,37.12c0,0,162.62,122.13,164.64,123.93c2.02,1.8,6.3,2.38,11-3.27\n\t\tc4.46-5.36,3.31-9.78,1.04-11.63S197.01,139.81,197.01,139.81z"/>\n\t<polygon fill="#FFDA44" points="264.42,79.12 276.14,103.15 302.59,107.11 283.36,125.69 287.76,152.07 264.15,139.52 240.42,151.85\n\t\t245.06,125.52 226,106.77 252.47,103.04 \t"/>\n\t<path fill="#FFDA44" d="M268.67,39.2l-3.2,22.04c51.81,3.9,92.64,47.18,92.64,99.99c0,55.38-44.9,100.28-100.28,100.28\n\t\tc-40.82,0-75.94-24.39-91.59-59.4l-18.4,13.11c19.96,40.59,61.71,68.52,110,68.52c67.66,0,122.51-54.85,122.51-122.51\n\t\tC380.34,97.22,331.25,44.69,268.67,39.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 744 496">\n\t<path fill="#3A7DCE" d="M0,0h744v496H0V0z"/>\n\t<polygon fill="#ffffff" points="120,125 210,188 264,174 287,93 348,57 440,71 545,126 551,216 585,228 585,320 520,435 442,459\n\t\t370,442 388,412 380,380 370,389 208,364 159,279 179,233 130,171 "/>\n</svg>',"./assets/country-flag-icons/3x2/AR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="512" height="342"/>\n<rect y="0" fill="#338AF3" width="512" height="114"/>\n<rect y="228" fill="#338AF3" width="512" height="114"/>\n<circle fill="#FFDA44" stroke="#d6ab00" stroke-width="5" cx="256.5" cy="171" r="40"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<polygon fill="#D80027" points="513,33 95.3,171 513,310.76 513,341.33 0,171 513,0 "/>\n<polyline fill="#FFFFFF" points="513,287.18 513,311.76 81.72,171 513,30 513,54.16 "/>\n<path fill="#A2001D" d="M476.98,140.21l-21.89,10.68l-3.18-15.32l31.19-29.77c0,0-9.42-40.65-13.75-44.98l-112.32,55.82l-6.84,36.76\n\tl-31.9,28.59l-0.4,34.2l34.29-22.76l67.23-2.66l-1.51,38.11h22.23l11.9-44.64l31.55-24.61L476.98,140.21z"/>\n<polygon fill="#EFC100" stroke="#231F20" stroke-miterlimit="10" points="317.89,238.41 295.65,227.3 317.89,216.19 462.35,216.19 462.35,238.41 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="114" fill="#FFFFFF" width="513" height="114"/>\n<rect y="0" fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#D80027" width="513" height="114"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<g fill="#FFFFFF">\n\t<path d="M222.2,170.7c0.3-0.3,0.5-0.6,0.8-0.9C222.8,170.1,222.5,170.4,222.2,170.7L222.2,170.7z"/>\n\t<polygon points="188,212.6 199,235.5 223.7,229.8 212.7,252.6 232.6,268.4 207.8,274 207.9,299.4 188,283.5\n\t\t168.2,299.4 168.3,274 143.5,268.4 163.4,252.6 152.3,229.8 177.1,235.5 \t"/>\n\t<polygon points="385.9,241.1 391.1,252 402.9,249.3 397.6,260.2 407.1,267.7 395.3,270.3 395.3,282.5 385.9,274.9\n\t\t376.4,282.5 376.5,270.3 364.7,267.7 374.2,260.2 368.9,249.3 380.7,252 \t"/>\n\t<polygon points="337.3,125.1 342.5,136 354.3,133.3 349,144.2 358.5,151.7 346.7,154.4 346.7,166.5 337.3,158.9\n\t\t327.8,166.5 327.9,154.4 316,151.7 325.5,144.2 320.2,133.3 332,136 \t"/>\n\t<polygon points="385.9,58.9 391.1,69.8 402.9,67.1 397.6,78 407.1,85.5 395.3,88.2 395.3,100.3 385.9,92.7\n\t\t376.4,100.3 376.5,88.2 364.7,85.5 374.2,78 368.9,67.1 380.7,69.8 \t"/>\n\t<polygon points="428.4,108.6 433.6,119.5 445.4,116.8 440.1,127.7 449.6,135.2 437.8,137.8 437.8,150 428.4,142.4\n\t\t418.9,150 418.9,137.8 407.1,135.2 416.6,127.7 411.3,116.8 423.1,119.5 \t"/>\n\t<polygon points="398,166.5 402.1,179.2 415.4,179.2 404.6,187 408.8,199.7 398,191.8 387.2,199.7 391.3,187\n\t\t380.6,179.2 393.9,179.2 \t"/>\n\t<polygon points="254.8,0 254.8,30.6 209.7,55.7 254.8,55.7 254.8,115 195.7,115 254.8,147.8 254.8,170.7 228.1,170.7\n\t\t154.6,129.8 154.6,170.7 99,170.7 99,122.1 11.6,170.7 -1.2,170.7 -1.2,140.1 44,115 -1.2,115 -1.2,55.7 57.9,55.7 -1.2,22.8\n\t\t-1.2,0 25.5,0 99,40.8 99,0 154.6,0 154.6,48.6 242.1,0 \t"/>\n</g>\n<polygon fill="#D80027" points="142.8,0 110.8,0 110.8,69.3 -1.2,69.3 -1.2,101.3 110.8,101.3 110.8,170.7 142.8,170.7 142.8,101.3\n\t254.8,101.3 254.8,69.3 142.8,69.3 "/>\n<polygon fill="#0052B4" points="154.6,115 254.8,170.7 254.8,154.9 183,115 "/>\n<polygon fill="#FFFFFF" points="154.6,115 254.8,170.7 254.8,154.9 183,115 "/>\n<g fill="#D80027">\n\t<polygon points="154.6,115 254.8,170.7 254.8,154.9 183,115 \t"/>\n\t<polygon points="70.7,115 -1.2,154.9 -1.2,170.7 -1.2,170.7 99,115 \t"/>\n</g>\n<polygon fill="#0052B4" points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 "/>\n<polygon fill="#FFFFFF" points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 "/>\n<g fill="#D80027">\n\t<polygon points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 \t"/>\n\t<polygon points="183,55.7 254.8,15.7 254.8,0 254.8,0 154.6,55.7 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AW.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 363 242">\n<rect fill="#338AF3" width="363" height="242"/>\n<g>\n\t<polygon fill="#FFFFFF" points="57,96.9 14.7,78.2 57,59.6 75.6,17.4 94.2,59.6 136.5,78.2 94.2,96.9 75.6,139.1 \t"/>\n\t<polygon fill="#D80027" points="75.6,40.6 87.1,66.7 113.2,78.2 87.1,89.7 75.6,115.8 64.1,89.7 38,78.2 64.1,66.7 \t"/>\n</g>\n<g fill="#FFDA44">\n\t<rect y="152.2" width="363" height="15.7"/>\n\t<rect y="183.6" width="363" height="15.7"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<polygon fill="#FFDA44" points="513,210.9 202.2,210.9 202.2,342 122.4,342 122.4,210.9 0,210.9 0,192.3 0,149.7 0,131.1 122.4,131.1\n\t122.4,0 202.2,0 202.2,131.1 513,131.1 513,149.7 513,192.3 "/>\n<polygon fill="#D80027" points="513,149.7 513,192.3 183.7,192.3 183.7,342 141,342 141,192.3 0,192.3 0,149.7 141,149.7 141,0\n\t183.7,0 183.7,149.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<rect fill="#338AF3" width="513" height="114"/>\n<rect y="228" fill="#6DA544" width="513" height="114"/>\n<g fill="#FFFFFF">\n\t<path d="M265.6,212.6c-23,0-41.6-18.6-41.6-41.6s18.6-41.6,41.6-41.6c7.2,0,13.9,1.8,19.8,5\n\t\tc-9.2-9-21.9-14.6-35.8-14.6c-28.3,0-51.2,22.9-51.2,51.2s22.9,51.2,51.2,51.2c13.9,0,26.6-5.6,35.8-14.6\n\t\tC279.5,210.8,272.8,212.6,265.6,212.6z"/>\n\t<polygon points="297.6,142.2 303.1,157.7 318,150.6 310.9,165.5 326.4,171 310.9,176.5 318,191.4 303.1,184.3\n\t\t297.6,199.8 292.1,184.3 277.2,191.4 284.3,176.5 268.8,171 284.3,165.5 277.2,150.6 292.1,157.7 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polyline fill="#FFDA44" points="99.905,85.329 441.238,85.329 441.238,426.663 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="36.561,100.645 51.404,89.838 66.271,100.632 61.292,85.33 41.525,85.33 "/>\n\t<polygon fill="#FFFFFF" points="88.332,103.632 82.649,86.16 76.977,103.632 58.612,103.644 73.479,114.44 67.818,131.901 82.661,121.095 97.527,131.89 91.843,114.416 106.697,103.621 "/>\n\t<polygon fill="#FFFFFF" points="119.59,134.89 113.906,117.416 108.233,134.89 89.868,134.901 104.735,145.696 99.074,163.158 113.918,152.351 128.784,163.147 123.099,145.673 137.955,134.879 "/>\n\t<polygon fill="#FFFFFF" points="150.846,166.146 145.163,148.673 139.49,166.146 121.126,166.157 135.992,176.953 130.331,194.414 145.174,183.608 160.04,194.403 154.357,176.929 169.212,166.135 "/>\n\t<polygon fill="#FFFFFF" points="182.103,197.403 176.42,179.929 170.748,197.403 152.382,197.414 167.248,208.209 161.588,225.671 176.431,214.864 191.297,225.66 185.613,208.187 200.468,197.392 "/>\n\t<polygon fill="#FFFFFF" points="213.359,228.659 207.676,211.187 202.004,228.659 183.639,228.671 198.505,239.466 192.845,256.928 207.687,246.122 222.553,256.916 216.87,239.443 231.725,228.648 "/>\n\t<polygon fill="#FFFFFF" points="244.616,259.916 238.933,242.443 233.261,259.916 214.895,259.928 229.762,270.723 224.101,288.185 238.945,277.378 253.811,288.172 248.126,270.7 262.981,259.906 "/>\n\t<polygon fill="#FFFFFF" points="275.872,291.173 270.19,273.7 264.517,291.173 246.152,291.184 261.019,301.98 255.358,319.441 270.201,308.635 285.067,319.43 279.384,301.956 294.237,291.162 "/>\n\t<polygon fill="#FFFFFF" points="307.13,322.43 301.447,304.956 295.773,322.43 277.409,322.441 292.275,333.236 286.614,350.698 301.458,339.891 316.324,350.687 310.64,333.213 325.495,322.419 "/>\n\t<polygon fill="#FFFFFF" points="338.386,353.686 332.703,336.214 327.031,353.686 308.666,353.698 323.532,364.493 317.871,381.955 332.714,371.148 347.58,381.943 341.897,364.471 356.752,353.675 "/>\n\t<polygon fill="#FFFFFF" points="369.643,384.943 363.96,367.47 358.288,384.943 339.922,384.955 354.788,395.749 349.128,413.212 363.971,402.405 378.837,413.2 373.153,395.727 388.008,384.932 "/>\n\t<polygon fill="#FFFFFF" points="395.216,398.727 389.544,416.199 371.179,416.211 385.573,426.664 404.851,426.664 419.265,416.188 400.899,416.199 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#FFDA44" width="512" height="341.34"/>\n<g>\n\t<rect y="0" fill="#0052B4" width="170.66" height="341.34"/>\n\t<rect x="341.34" y="0" fill="#0052B4" width="170.66" height="341.34"/>\n</g>\n<path d="M325.74,101.02l-31.97,12.4c-0.68,1.35-5.79,7.54-8.18,53.06h-17.05v-60.42l-12.54-27.38l-12.54,27v60.8H226.4\n\tc-2.39-45.53-7.8-52.48-8.47-53.84l-31.68-11.63c0.15,0.31,15.4,31.34,15.4,78.01v12.54h41.81v71.07h25.08v-71.07h41.81v-12.54\n\tc0-24.13,4.17-44.02,7.68-56.46c3.82-13.57,7.7-21.49,7.74-21.57L325.74,101.02z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<circle fill="#F40B32" cx="218.902" cy="255.994" r="115"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.331" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<rect y="0" fill="#D80027" width="512" height="170.7"/>\n<polygon fill="#FFDA44" points="256,66.9 281.8,146.2 365.1,146.2 297.7,195.2 323.4,274.5 256,225.5 188.6,274.5 214.3,195.2\n\t146.9,146.2 230.2,146.2 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFFFFF" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect x="2.216" y="86.076" fill="#D80027" width="509.784" height="339.848"/>\n<polygon fill="#FFFFFF" points="209.455,154.969 159.219,180.236 209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#6DA544" points="215.9,170.7 0,314.6 0,26.8 \t"/>\n\t<polygon fill="#6DA544" points="512,26.8 512,314.6 296.1,170.7 \t"/>\n</g>\n<polygon fill="#0052B4" points="512,26.8 296.1,170.7 512,314.6 512,341.3 471.9,341.3 256,197.4 40.1,341.3 0,341.3 0,314.6\n\t215.9,170.7 0,26.8 0,0 40.1,0 256,143.9 471.9,0 512,0 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="512,26.8 296.1,170.7 512,314.6 512,341.3 471.9,341.3 256,197.4 40.1,341.3 0,341.3 0,314.6\n\t\t215.9,170.7 0,26.8 0,0 40.1,0 256,143.9 471.9,0 512,0 \t"/>\n</g>\n<circle fill="#FFFFFF" cx="251.6" cy="170.7" r="100.2"/>\n<g>\n\t<polygon fill="#D80027" points="251.6,93.3 261.7,110.8 281.9,110.8 271.8,128.3 281.9,145.8 261.7,145.8 251.6,163.3 241.5,145.8\n\t\t221.3,145.8 231.4,128.3 221.3,110.8 241.5,110.8 \t"/>\n\t<polygon fill="#D80027" points="210.3,163.4 220.4,180.9 240.7,180.9 230.6,198.4 240.7,215.9 220.4,215.9 210.3,233.4 200.2,215.9\n\t\t180,215.9 190.1,198.4 180,180.9 200.2,180.9 \t"/>\n\t<polygon fill="#D80027" points="292.8,163.4 302.9,180.9 323.1,180.9 313,198.4 323.1,215.9 302.9,215.9 292.8,233.4 282.7,215.9\n\t\t262.5,215.9 272.6,198.4 262.5,180.9 282.7,180.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect x="196.641" y="85.337" fill="#FFDA44" width="315.359" height="170.663"/>\n<rect x="196.641" y="256" fill="#D80027" width="315.359" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect fill="#FFFFFF" width="512" height="341.33"/>\n<path fill="#FFFFFF" d="M0-75.85"/>\n<path fill="#E6BC00" d="M157.31,199.76c0,0-9.04,43.93-19.31,40.39c-10.62-3.54-17.53-18.76-17.53-18.76l-14.52,21.24\n\t\tc0,0,38.18,8.48,41.01,5.47c1.22-1.14,8.21-15.1,10.34-26.05V199.76z M101.18,260.33c0,0-2.48,20.18-1.06,22.66\n\t\tc1.24,2.3,39.48,11.33,39.48,11.33s-24.96,16.46-29.74,20.54L91.8,284.94l-0.71-24.61L101.18,260.33L101.18,260.33z"/>\n<path fill="#E6BC00" d="M0-75.85"/>\n<path fill="#E6BC00" d="M112.51,94.64c0,0,39.65,41.6,40.36,45.5c0.71,3.72-4.25,3.19-4.25,3.19s-44.79-37.53-49.92-41.07\n\tC93.39,98.71,112.51,94.64,112.51,94.64L112.51,94.64z"/>\n<path fill="#ADADAD" d="M99.41,104.73c0,0,16.99-0.71,16.64-11.51C115.7,82.6,104.9,78.35,96.93,80.83\n\tc-7.97,2.3-23.01,13.45-13.63,35.05c9.38,21.42,23.37,29.39,26.2,47.8c0,0-5.46,9.86-19.12,0.35c-16.9-11.77-6.2-38.24-10.44-44.96\n\tc-4.25-7.08-40.95-38.92-40.95-38.92s-30.24,39.37-18,74.92c16.95,49.21,51.74,31.98,64.61,36.76c0,0-42.13,61.96-49.57,67.09\n\tc0,0,24.08,8.32,47.8-18.76c0,0,5.84,9.74,7.08,20.18h10.27c4.78-26.2,51.51-64.26,49.92-82.32\n\tC149.33,156.77,101.89,128.63,99.41,104.73z"/>\n<path fill="#E6BC00" d="M359.17,201.27c0,0,8.96,42.43,19.23,38.89c10.62-3.54,17.53-18.76,17.53-18.76l14.52,21.24\n\tc0,0-37,8.48-39.83,5.47c-1.21-1.14-9.32-13.79-11.52-24.66L359.17,201.27z M415.22,260.33c0,0,2.48,20.18,1.06,22.66\n\tc-1.24,2.3-39.48,11.33-39.48,11.33s24.96,16.46,29.74,20.54l18.06-29.92l0.71-24.61H415.22z"/>\n<path fill="#E6BC00" d="M403.89,94.64c0,0-39.65,41.6-40.36,45.5c-0.71,3.72,4.25,3.19,4.25,3.19s44.79-37.53,49.92-41.07\n\tC422.84,98.71,403.89,94.64,403.89,94.64L403.89,94.64z"/>\n<g transform="translate(6.5 5)">\n\t<g>\n\t\t<path id="b_1_" fill="#125ECC" d="M150.81,82.06h201.79v145.46c0,16.06-9.69,21.39-21.91,31.85l-45.92,39.41\n\t\t\tc-18.25,15.62-47.91,15.57-66.07,0l-46.01-39.43c-12.08-10.35-21.88-15.71-21.88-31.82V82.06z"/>\n\t</g>\n\t<path fill="#FFE600" d="M194.05,142.71c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\t\tS202.01,142.71,194.05,142.71z M251.7,139.71c-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41\n\t\ts14.41,6.45,14.41,14.41C266.11,133.26,259.66,139.71,251.7,139.71z M309.35,142.71c-7.96,0-14.41-6.45-14.41-14.41\n\t\ts6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41S317.31,142.71,309.35,142.71z M208.46,269.43c-7.96,0-14.41-6.45-14.41-14.41\n\t\tc0-7.96,6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41C222.88,262.98,216.42,269.43,208.46,269.43z M251.7,283.85\n\t\tc-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41C266.11,277.39,259.66,283.85,251.7,283.85z\n\t\t M294.94,269.43c-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41c7.96,0,14.41,6.45,14.41,14.41\n\t\tC309.35,262.98,302.9,269.43,294.94,269.43z"/>\n\t<path fill="#D60537" d="M150.81,170.36h201.79v57.65H150.81V170.36z"/>\n</g>\n<path fill="#EACE00" d="M142.9,43.82c0,0,57.65-14.41,115.31-14.41s115.31,14.41,115.31,14.41l-14.41,57.65\n\tc0,0-50.45-14.41-100.89-14.41s-100.89,14.41-100.89,14.41L142.9,43.82z"/>\n<path fill="#7A6920" d="M258.2,72.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41c7.96,0,14.41,6.45,14.41,14.41\n\tS266.16,72.65,258.2,72.65z M315.85,77.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\tS323.81,77.65,315.85,77.65z M200.55,77.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\tS208.51,77.65,200.55,77.65z"/>\n<path fill="#ADADAD" d="M365.08,178.02c-1.59,18.06,45.14,56.12,49.92,82.32h10.27c1.24-10.44,7.08-20.18,7.08-20.18\n\tc23.72,27.09,47.8,18.76,47.8,18.76c-7.44-5.13-49.57-67.09-49.57-67.09c12.88-4.78,47.67,12.45,64.61-36.76\n\tc12.24-35.55-18-74.92-18-74.92s-36.7,31.84-40.95,38.92c-4.25,6.73,6.46,33.2-10.44,44.96c-13.66,9.51-19.12-0.35-19.12-0.35\n\tc2.83-18.41,16.82-26.38,26.2-47.8c9.38-21.6-5.66-32.75-13.63-35.05c-7.97-2.48-18.76,1.77-19.12,12.39\n\tc-0.35,10.8,16.64,11.51,16.64,11.51C414.29,128.63,366.85,156.77,365.08,178.02z"/>\n<circle fill="#FFFFFF" cx="258.2" cy="204.19" r="16.93"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#D80027" width="512" height="341.34"/>\n<g>\n\t<rect y="0.1" fill="#0052B4" width="256" height="170.6"/>\n\t<polygon fill="#FFFFFF" points="256,0 233.4,0 160,48.9 160,0 96,0 96,48.9 22.6,0 0,0 0,22.7 46.1,53.4 0,53.4 0,117.4 46.1,117.4\n\t\t0,148.1 0,170.7 22.6,170.7 96,121.8 96,170.7 160,170.7 160,121.8 233.4,170.7 256,170.7 256,148.1 209.9,117.4 256,117.4\n\t\t256,53.4 209.9,53.4 256,22.7 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t"/>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 \t"/>\n</g>\n<g transform="translate(13 5)">\n\t<path fill="#ffffff" d="M303.9,94.94v99.69c0,59.81,79.75,99.69,79.75,99.69s79.75-39.88,79.75-99.69V94.94H303.9z"/>\n\t<path fill="#2F8F22" d="M436.37,254.44H330.93c23.13,25.08,52.72,39.88,52.72,39.88S413.24,279.52,436.37,254.44z"/>\n\t<circle fill="#65B5D2" cx="383.65" cy="214.56" r="39.88"/>\n\t<circle fill="#D80027" cx="343.77" cy="194.63" r="19.94"/>\n\t<circle fill="#D80027" cx="423.52" cy="194.63" r="19.94"/>\n\t<circle fill="#D80027" cx="383.65" cy="154.75" r="19.94"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#FFDA44" width="512" height="341.33"/>\n<polygon fill="#000000" points="0,193.74 512,320.93 512,214.26 0,97.08 "/>\n<polyline fill="#FFFFFF" points="512,234.26 512,147.59 0,20.41 0,107.08 "/>\n<g>\n\t<path fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" d="M306.4,134.01c3.87,7.14,6.07,15.33,6.07,24.02c0,21.55-13.51,39.94-32.52,47.19v-59.51\n\t\tc5.7-1.19,10-6.37,10-12.59c6.9,0,12.5-5.75,12.5-12.85h-0.42c6.9,0,12.91-5.75,12.91-12.85h-34.99V76.58l-14.99-27.71l-15,27.71\n\t\tv30.84h-34.99c0,7.1,6.01,12.85,12.91,12.85h-0.42c0,7.1,5.6,12.85,12.5,12.85c0,6.22,4.29,11.4,9.99,12.59v61.37\n\t\tc-22.09-5.39-38.48-25.3-38.48-49.05c0-8.7,2.2-16.88,6.07-24.02c-10.96,11.21-17.72,26.53-17.72,43.44\n\t\tc0,34.32,27.82,62.15,62.15,62.15s62.15-27.83,62.15-62.15C324.12,160.54,317.35,145.21,306.4,134.01z"/>\n\t<path fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" d="M198.46,226.81c0,0,20.69,27.71,66.5,27.71s66.5-27.71,66.5-27.71l13.47,28.37c0,0-21.03,27.71-79.97,27.71\n\t\ts-79.97-27.71-79.97-27.71L198.46,226.81z"/>\n\t<polygon fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" points="129.24,133.18 150.12,133.18 175.05,160.44 175.05,233.89 148.77,233.89 148.77,165.52 \t"/>\n\t<polygon fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" points="400,133.18 379.12,133.18 354.19,160.44 354.19,233.89 380.46,233.89 380.46,165.52 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#0052B4" points="0,341.3 512,341.3 512,0 512,0 "/>\n<polygon fill="#FFDA44" points="250.4,0 0,0 0,0 0,166.9 "/>\n<polygon fill="#D80027" points="140.4,118.3 152.6,139.5 177.1,139.5 164.8,160.6 177.1,181.8 152.6,181.8 140.4,203 128.2,181.8\n\t103.7,181.8 116,160.6 103.7,139.5 128.2,139.5 "/>\n<circle fill="none" stroke="#000000" stroke-width="9" stroke-miterlimit="10" cx="140.4" cy="160.6" r="57.7"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<polygon fill="#FFDA44" points="256,19.3 461.4,170.7 256,322 50.6,170.7 \t"/>\n<circle fill="#FFFFFF" cx="256" cy="170.7" r="86.5"/>\n<g>\n\t<path fill="#0052B4" d="M212.8,165.3c-15,0-29.5,2.3-43.2,6.5c0.6,47.2,39.1,85.3,86.4,85.3c29.3,0,55.2-14.6,70.8-36.9\n\t\tC300.1,186.8,258.9,165.3,212.8,165.3z"/>\n\t<path fill="#0052B4" d="M340.9,187.2c1-5.4,1.6-10.9,1.6-16.6c0-47.8-38.7-86.5-86.5-86.5c-35.6,0-66.2,21.6-79.5,52.3\n\t\tc11.7-2.4,23.8-3.7,36.2-3.7C263,132.8,308.4,153.7,340.9,187.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#338AF3" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</g>\n<polygon points="256,256.006 0,426.668 0,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#FF7415" width="512" height="341.3"/>\n<polyline fill="#FFDA44" points="512,0 0,0 0,341.3 "/>\n<path fill="none" stroke="#FFFFFF" stroke-width="42" stroke-miterlimit="10" d="M128.7,255.5c0,0,35,54,67.3,32.4c56.9-37.9-68.9-108.6-2.9-152.6c58.3-38.8,76.6,103.5,137.6,62.8\n\tc59-39.3-64.7-111.4-9.2-148.4c33.4-22.2,67.1,32.6,67.1,32.6"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BV.svg":'<?xml version="1.0" encoding="utf-8" standalone="no"?>\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"\n"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 33.333 1100 733.333">\n<rect width="1100" height="800" fill="#ef2b2d"/>\n<rect width="200" height="800" x="300" fill="#ffffff"/>\n<rect width="1100" height="200" y="300" fill="#ffffff"/>\n<rect width="100" height="800" x="350" fill="#002868"/>\n<rect width="1100" height="100" y="350" fill="#002868"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="322.783" fill="#338AF3" width="512" height="103.88"/>\n\t<rect y="85.337" fill="#338AF3" width="512" height="104.515"/>\n</g>\n<rect y="210.877" width="512" height="89.656"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect x="0.6" y="0.2" fill="#75AF2B" width="511.4" height="341"/>\n<polyline fill="#D32424" points="0,230 512,230 512,0.2 512,0.2 0,0.2 0,0.2 "/>\n<polygon fill="#FFFFFF" points="100.1,230 100.1,215.1 100.1,0.2 0,0.2 0,341.1 511.4,341.1 511.4,341.1 100.1,341.1 "/>\n<polygon fill="#D32424" points="51.6,218 13.6,170.3 51.6,123.4 89.6,170.3"/>\n<polygon fill="#D32424" points="51.6,113.4 13.6,65.7 51.6,18.8 89.6,65.7"/>\n<polygon fill="#D32424" points="51.6,322.6 13.6,274.9 51.6,228 89.6,274.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<circle fill="#FFFFFF" cx="260.9" cy="170.9" r="118.9"/>\n\t<circle fill="none" stroke="#6DA544" stroke-width="18" stroke-miterlimit="10" cx="261.9" cy="173.1" r="94.5"/>\n</g>\n<g stroke="#000000" stroke-width="1">\n\t<path fill="#0052B4" d="M261.9,151.5l-50.6,23.4v20c0,11.8,6.1,22.8,16.2,28.9l34.5,15.2l34.5-15.2c10-6.2,16.2-17.1,16.2-28.9v-20\n\t\tL261.9,151.5z"/>\n\t<rect x="211.3" y="128.1" fill="#FFDA44" width="101.3" height="46.7"/>\n</g>\n<g>\n\t<rect y="0" fill="#BC0029" width="512" height="35"/>\n\t<rect y="306" fill="#BC0029" width="512" height="35"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="0" fill="#D80027" width="142" height="341.3"/>\n\t<rect x="370" y="0" fill="#D80027" width="142" height="341.3"/>\n\t<polygon fill="#D80027" points="306.5,206 356.9,180.8 331.7,168.2 331.7,143 281.3,168.2 306.5,117.8 281.3,117.8 256.1,80\n\t\t230.9,117.8 205.7,117.8 230.9,168.2 180.5,143 180.5,168.2 155.3,180.8 205.7,206 193.1,231.2 243.5,231.2 243.5,269 268.7,269\n\t\t268.7,231.2 319.1,231.2 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<g fill="#FFDA44">\n\t<polygon points="422.7,252.4 428.9,265.2 442.7,262 436.5,274.8 447.7,283.6 433.8,286.8 433.8,301 422.7,292.1\n\t\t411.6,301 411.6,286.8 397.8,283.6 408.9,274.8 402.7,262 416.6,265.2 \t"/>\n\t<polygon points="376.1,116.1 382.3,129 396.1,125.8 389.9,138.6 401.1,147.4 387.2,150.5 387.2,164.8 376.1,155.9\n\t\t365,164.8 365.1,150.5 351.2,147.4 362.3,138.6 356.1,125.8 370,129 \t"/>\n\t<polygon points="413.1,38.3 419.3,51.1 433.1,47.9 426.9,60.7 438.1,69.6 424.2,72.7 424.2,86.9 413.1,78 402,86.9\n\t\t402.1,72.7 388.2,69.6 399.3,60.7 393.1,47.9 407,51.1 \t"/>\n\t<polygon points="464.9,96.7 471.1,109.5 485,106.3 478.7,119.1 489.9,128 476,131.1 476.1,145.3 464.9,136.4\n\t\t453.8,145.3 453.9,131.1 440,128 451.2,119.1 444.9,106.3 458.8,109.5 \t"/>\n\t<polygon points="436.9,164.8 441.8,179.6 457.4,179.6 444.8,188.8 449.6,203.7 436.9,194.5 424.3,203.7 429.1,188.8\n\t\t416.5,179.6 432.1,179.6 \t"/>\n</g>\n<path fill="#FFDA44" d="M306.8,254.7c-49.2,0-89.1-39.9-89.1-89.1s39.9-89.1,89.1-89.1c15.3,0,29.8,3.9,42.4,10.7\n\tC329.4,67.9,302.3,56,272.5,56c-60.5,0-109.6,49.1-109.6,109.6S212,275.3,272.5,275.3c29.8,0,56.9-11.9,76.6-31.3\n\tC336.5,250.8,322.1,254.7,306.8,254.7z"/>\n<g>\n\t<path fill="#FFDA44" d="M140.4,59.5C129.7,41,109.7,28.6,86.8,28.6S44,41,33.3,59.5H140.4z"/>\n\t<path fill="#FFDA44" d="M140.6,59.9l-53.8,53.8L33.1,59.9c-5.1,9-8.1,19.4-8.1,30.6c0,34.2,27.7,61.9,61.9,61.9s61.9-27.7,61.9-61.9\n\t\tC148.7,79.3,145.7,68.9,140.6,59.9z"/>\n\t<path fill="#A2001D" d="M71.4,98.2v52.2c4.9,1.3,10.1,1.9,15.5,1.9s10.5-0.7,15.5-1.9V98.2H71.4z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<polygon fill="#FFDA44" points="512,66.9 512,0 411.7,0 0,274.4 0,341.3 100.3,341.3 "/>\n<polygon fill="#D80027" points="512,0 512,40.1 60.2,341.3 0,341.3 0,301.2 451.8,0 "/>\n<polygon fill="#FFDA44" points="93.6,31.2 109.9,81.6 163,81.6 120.1,112.8 136.5,163.3 93.6,132.1 50.6,163.3 67,112.8 24.1,81.6\n\t77.2,81.6 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<rect y="170.7" fill="#6DA544" width="211.5" height="85.3"/>\n\t<rect x="300.5" y="170.7" fill="#6DA544" width="211.5" height="85.3"/>\n</g>\n<polygon fill="#0052B4" points="0,0 0,0 0,85.3 211.5,85.3 211.5,0 300.5,0 300.5,85.3 512,85.3 512,0 512,0 "/>\n<g>\n\t<rect x="300.5" y="85.3" fill="#FFFFFF" width="211.5" height="85.3"/>\n\t<rect y="85.3" fill="#FFFFFF" width="211.5" height="85.3"/>\n</g>\n<g>\n\t<polygon fill="#FFDA44" points="300.5,341.3 211.5,341.3 211.5,256 0,256 0,341.3 0,341.3 512,341.3 512,341.3 512,256 300.5,256 \t"/>\n\t<polygon fill="#FFDA44" points="105.7,8.6 114.3,34.8 141.8,34.8 119.5,51 128.1,77.2 105.7,61 83.4,77.2 91.9,51 69.6,34.8\n\t\t97.2,34.8 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#6DA544" points="443.726,85.331 102.4,426.657 0,426.657 0,85.331 "/>\n<polygon fill="#FFDA44" points="500.124,85.331 158.798,426.657 11.876,426.657 353.202,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="356.174,222.609 289.391,222.609 289.391,155.826 222.609,155.826 222.609,222.609 155.826,222.609 155.826,289.391 222.609,289.391 222.609,356.174 289.391,356.174 289.391,289.391 356.174,289.391 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect x="330.207" y="85.331" fill="#6DA544" width="181.793" height="341.337"/>\n<rect y="85.331" fill="#FF9811" width="181.793" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.332" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#FFFFFF" points="384,156.705 389.283,172.959 406.372,172.959 392.546,183.004 397.827,199.258 384,189.211 370.175,199.258 375.455,183.004 361.63,172.959 378.719,172.959 "/>\n\t<polygon fill="#FFFFFF" points="313.791,185.786 329.019,193.544 341.103,181.461 338.43,198.34 353.657,206.099 336.778,208.772 334.104,225.652 326.344,210.425 309.466,213.098 321.552,201.014 "/>\n\t<polygon fill="#FFFFFF" points="284.71,255.995 300.964,250.714 300.965,233.625 311.009,247.45 327.263,242.168 317.217,255.995 327.263,269.821 311.009,264.541 300.965,278.366 300.965,261.276 "/>\n\t<polygon fill="#FFFFFF" points="313.791,326.204 321.55,310.975 309.466,298.891 326.347,301.565 334.104,286.338 336.778,303.217 353.657,305.889 338.43,313.648 341.103,330.53 329.019,318.443 "/>\n\t<polygon fill="#FFFFFF" points="384,355.284 378.719,339.031 361.628,339.031 375.455,328.986 370.175,312.732 384,322.776 397.827,312.732 392.546,328.986 406.372,339.031 389.283,339.031 "/>\n\t<polygon fill="#FFFFFF" points="454.209,326.204 438.98,318.446 426.897,330.53 429.57,313.648 414.343,305.892 431.222,303.217 433.897,286.338 441.653,301.565 458.534,298.891 446.448,310.976 "/>\n\t<polygon fill="#FFFFFF" points="483.29,255.995 467.036,261.276 467.036,278.366 456.991,264.54 440.737,269.821 450.783,255.995 440.737,242.168 456.991,247.45 467.036,233.625 467.036,250.714 "/>\n\t<polygon fill="#FFFFFF" points="454.209,185.788 446.452,201.014 458.534,213.098 441.653,210.425 433.897,225.652 431.222,208.772 414.343,206.097 429.57,198.34 426.897,181.462 438.981,193.544 "/>\n\t<path fill="#FFFFFF" d="M0,186.665v16h46.069L0,233.377v7.539l57.377-38.252H80L0,255.998h112v-69.334H0z M96,255.996 H22.628L96,207.083V255.996z"/>\n\t<path fill="#FFFFFF" d="M176,138.665l80-53.334H144v69.334h112v-16h-46.069L256,107.951v-7.539l-57.377,38.251H176V138.665z M160,85.333h73.372L160,134.246V85.333z"/>\n\t<path fill="#FFFFFF" d="M144,255.998h112l-80-53.334h22.623L256,240.917v-7.539l-46.069-30.713H256v-16H144V255.998z M160,207.083l73.372,48.913H160V207.083z"/>\n\t<path fill="#FFFFFF" d="M112,85.331H0l80,53.334H57.377L0,100.413v7.539l46.069,30.712H0v16h112V85.331z M96,134.246 L22.628,85.333H96V134.246z"/>\n</g>\n<g>\n\t<polygon fill="#D80027" points="144,85.331 112,85.331 112,154.665 0,154.665 0,186.665 112,186.665 112,255.998 144,255.998 144,186.665 256,186.665 256,154.665 144,154.665 "/>\n\t<polygon fill="#D80027" points="80,138.665 0,85.331 0,100.413 57.377,138.665 "/>\n\t<polygon fill="#D80027" points="176,138.665 198.623,138.665 256,100.413 256,85.331 "/>\n\t<polygon fill="#D80027" points="57.377,202.665 0,240.917 0,255.998 80,202.665 "/>\n\t<polygon fill="#D80027" points="176,202.665 256,255.998 256,240.917 198.623,202.665 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect x="256" y="85.337" fill="#FFFFFF" width="256" height="170.663"/>\n<rect y="85.337" fill="#0052B4" width="256" height="170.663"/>\n<polygon fill="#FFFFFF" points="128,109.801 143.108,156.299 192,156.299 152.446,185.038 167.554,231.536 128,202.799 88.446,231.536 103.554,185.038 64,156.299 112.892,156.299 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<rect y="0" fill="#496E2D" width="170.7" height="341.3"/>\n<g>\n\t<rect x="341.3" y="0" fill="#FFDA44" width="170.7" height="341.3"/>\n\t<polygon fill="#FFDA44" points="256,102.2 273.2,155.2 329,155.2 283.9,188 301.1,241 256,208.3 210.9,241 228.1,188 183,155.2\n\t\t238.8,155.2 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFDA44" points="352.3,312.6 328,294.9 303.6,312.6 312.9,284 288.6,266.3 318.7,266.3 328,237.7 337.3,266.3\n\t\t367.4,266.3 343,284 \t"/>\n\t<polygon fill="#FFDA44" points="415.9,120.9 391.5,138.6 400.8,167.2 376.5,149.5 352.1,167.2 361.4,138.6 337.1,120.9 367.2,120.9\n\t\t376.5,92.3 385.8,120.9 \t"/>\n\t<polygon fill="#FFDA44" points="367.4,57.4 343,75 352.3,103.7 328,86 303.6,103.7 312.9,75 288.6,57.4 318.7,57.4 328,28.7\n\t\t337.3,57.4 \t"/>\n\t<polygon fill="#FFDA44" points="415.9,204.4 391.5,222 400.8,250.7 376.5,233 352.1,250.7 361.4,222 337.1,204.4 367.2,204.4\n\t\t376.5,175.7 385.8,204.4 \t"/>\n</g>\n<polygon fill="#FFDA44" points="167.6,64.4 193.6,144.7 278.1,144.7 209.8,194.3 235.9,274.7 167.6,225 99.2,274.7 125.3,194.3\n\t57,144.7 141.5,144.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="343.096" fill="#D80027" width="512" height="83.567"/>\n<rect y="256" fill="#0052B4" width="512" height="87.096"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="211.473" fill="#D80027" width="512" height="89.043"/>\n<g>\n\t<rect y="352.462" fill="#0052B4" width="512" height="74.207"/>\n\t<rect y="85.331" fill="#0052B4" width="512" height="74.207"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<polygon fill="#FF9811" points="0,-40.8 0,-40.8 0,382.1 0,382.1 0,170.7 "/>\n<rect fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect fill="#0052B4" width="512" height="68.3"/>\n\t<rect y="136.5" fill="#0052B4" width="512" height="68.3"/>\n\t<rect y="273.1" fill="#0052B4" width="512" height="68.3"/>\n</g>\n<polygon fill="#D80027" points="256,170.7 0,341.3 0,0 "/>\n<polygon fill="#FFFFFF" points="81.5,94.8 98.4,146.7 153,146.7 108.8,178.8 125.7,230.8 81.5,198.7 37.3,230.8 54.2,178.8 10,146.7\n\t64.6,146.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<rect y="182.2" fill="#D80027" width="512" height="41.4"/>\n\t<rect y="140.8" fill="#FFFFFF" width="512" height="41.4"/>\n\t<rect y="223.6" fill="#FFFFFF" width="512" height="41.4"/>\n</g>\n<g fill="#FFDA44" stroke="#000000" stroke-miterlimit="10">\n\t<polygon points="150.4,70 157.3,91.1 179.5,91.1 161.5,104.2 168.4,125.3 150.4,112.2 132.5,125.3 139.3,104.2\n\t\t121.4,91.1 143.6,91.1 \t"/>\n\t<polygon points="150.4,279.7 157.3,300.8 179.5,300.8 161.5,313.8 168.4,335 150.4,321.9 132.5,335 139.3,313.8\n\t\t121.4,300.8 143.6,300.8 \t"/>\n\t<polygon points="52.8,208.8 59.7,229.9 81.9,229.9 63.9,242.9 70.8,264.1 52.8,251 34.9,264.1 41.7,242.9 23.8,229.9\n\t\t46,229.9 \t"/>\n\t<polygon points="90.1,91 97,112.1 119.2,112.1 101.2,125.1 108.1,146.3 90.1,133.2 72.2,146.3 79,125.1 61,112.1\n\t\t83.3,112.1 \t"/>\n\t<polygon points="23.8,162 46,162 52.8,140.9 59.7,162 81.9,162 63.9,175.1 70.8,196.2 52.8,183.2 34.9,196.2\n\t\t41.7,175.1 \t"/>\n\t<polygon points="72.2,310.9 79,289.8 61,276.8 83.3,276.8 90.1,255.6 97,276.8 119.2,276.8 101.2,289.8 108.1,310.9\n\t\t90.1,297.9 \t"/>\n\t<polygon points="248,208.8 241.1,229.9 218.9,229.9 236.9,242.9 230,264.1 248,251 266,264.1 259.1,242.9 277.1,229.9\n\t\t254.9,229.9 \t"/>\n\t<polygon points="210.7,91 203.9,112.1 181.7,112.1 199.6,125.1 192.8,146.3 210.7,133.2 228.7,146.3 221.8,125.1\n\t\t239.8,112.1 217.6,112.1 \t"/>\n\t<polygon points="277.1,162 254.9,162 248,140.9 241.1,162 218.9,162 236.9,175.1 230,196.2 248,183.2 266,196.2\n\t\t259.1,175.1 \t"/>\n\t<polygon points="228.7,310.9 221.8,289.8 239.8,276.8 217.6,276.8 210.7,255.6 203.9,276.8 181.7,276.8 199.6,289.8\n\t\t192.8,310.9 210.7,297.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CW.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<rect y="233.5" fill="#FFDA44" width="512" height="51"/>\n<g>\n\t<polygon fill="#FFFFFF" points="168.7,86.5 181.6,126.3 223.4,126.3 189.6,150.8 202.5,190.5 168.7,166 134.9,190.5 147.8,150.8\n\t\t114,126.3 155.8,126.3 \t"/>\n\t<polygon fill="#FFFFFF" points="85.4,32.5 93.2,56.4 118.2,56.4 97.9,71.1 105.7,94.9 85.4,80.2 65.1,94.9 72.9,71.1 52.6,56.4\n\t\t77.7,56.4 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polyline fill="#6DA544" points="0,0 512,0 512,341.3 "/>\n<g fill="#FFFFFF">\n\t<polygon points="77.6,272 83.3,283.9 96.1,280.9 90.4,292.8 100.7,300.9 87.9,303.8 87.9,317 77.6,308.7 67.4,317\n\t\t67.4,303.8 54.6,300.9 64.9,292.8 59.1,280.9 72,283.9 \t"/>\n\t<polygon points="40.5,173.1 46.2,185 59,182 53.3,193.8 63.6,202 50.7,204.9 50.8,218.1 40.5,209.8 30.2,218.1\n\t\t30.3,204.9 17.4,202 27.8,193.8 22,182 34.8,185 \t"/>\n\t<polygon points="77.6,92.2 83.3,104 96.1,101.1 90.4,112.9 100.7,121.1 87.9,124 87.9,137.1 77.6,128.9 67.4,137.1\n\t\t67.4,124 54.6,121.1 64.9,112.9 59.1,101.1 72,104 \t"/>\n\t<polygon points="123.7,155.1 129.4,167 142.2,164 136.5,175.9 146.8,184 134,186.9 134,200.1 123.7,191.9 113.5,200.1\n\t\t113.5,186.9 100.7,184 111,175.9 105.3,164 118.1,167 \t"/>\n\t<polygon points="90.8,209.1 95.2,222.8 109.7,222.8 98,231.3 102.5,245 90.8,236.6 79.1,245 83.6,231.3 71.9,222.8\n\t\t86.3,222.8 \t"/>\n</g>\n<g>\n\t<circle fill="#FFDA44" cx="267.1" cy="170.7" r="74.5"/>\n\t<path fill="#6DA544" d="M267.1,220.3h24.8c0,0,10.8-19,0-37.2l24.8-24.8l-12.4-24.8h-12.4c0,0-6.2,18.6-31,18.6s-31-18.6-31-18.6\n\t\th-12.4l12.4,24.8l-12.4,24.8l12.4,12.4c0,0,12.4-24.8,37.2-12.4C267.1,183.1,277.6,198.6,267.1,220.3z"/>\n</g>\n<path fill="#FFDA44" d="M464.4,92.2c0.6-2.9-0.2-17.6-0.2-20.7c0-21.3-13.9-39.4-33.2-45.7c5.9,12,9.2,25.4,9.2,39.7\n\tc0,4.8-0.4,9.5-1.1,14.1c-2.9-4.7-6.6-8.9-11.2-12.6c-17.1-13.6-40.6-14-57.9-2.5c13.4,2.9,26.3,8.9,37.7,18\n\tc9,7.1,16.2,16.8,21.7,26.1c0,0-17.8,10.9-31,15.1s-42.3,7.9-42.3,7.9c72,12,132-36,132-36C481.6,82.2,472.3,91.6,464.4,92.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<path fill="#6DA544" d="M371.5,275.9l-11.1-15c-22.4,16.1-67.7,35.8-104.3,35.8c-35.8,0-79.6-17.1-104.3-35.8l-11.1,15\n\tc10,10.3,46.9,27,88.4,38.4c-3.9,6-1.6,6.1,2.6,10.8c8.5-6.6,17.4-1.5,24.9-7.3c7.5,5.8,16.3,0.7,24.9,7.3c5.4-5.6,5.4-5.6,2.5-11.1\n\tC325,302.3,361,286.4,371.5,275.9z"/>\n<path fill="#DB7D00" d="M113.7,168.7c0,0,0.2,79.9,89,77.8L208,263h10.6c0,0-8.9-49,71.7-49.4c0,0,0-32.9,32.9-32.9s49.4,0,49.4,0\n\tS294,119,442.8,40.1l2.2-15.6c0,0-154.8,84.6-237,68.1c0,0,12.7,50.7-12.9,50.7c-12.8,0-11.6-9.6-38.4-9.6\n\tc-22.3,0-20.6,23.5-31.3,23.2s-22.4-14.6-23.4-12.1S113.7,168.7,113.7,168.7z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,256 512,426.663 0,426.663 215.185,256 "/>\n<polygon fill="#FFFFFF" points="512,85.337 512,256 215.185,256 0,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" width="512" height="113.775"/>\n<rect y="312.882" fill="#FFDA44" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/DJ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<polygon fill="#338AF3" points="512,0 512,166.7 0,170.8 0,0 "/>\n<polygon fill="#FFFFFF" points="256,170.7 0,341.3 0,0 "/>\n<polygon fill="#D80027" points="89.8,92.5 106.8,144.9 162,144.9 117.4,177.4 134.4,229.8 89.8,197.4 45.2,229.8 62.2,177.4\n\t17.6,144.9 72.8,144.9 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<polygon fill="#FFFFFF" points="190,0 130,0 130,140 0,140 0,200 130,200 130,342 190,342 190,200 513,200 513,140\n\t190,140 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#496E2D" width="512" height="341.3"/>\n<polygon points="0,110.7 0,150.7 0,190.7 0,230.7 512,230.7 512,190.7 512,150.7 512,110.7 "/>\n<rect y="110.7" fill="#FFDA44" width="512" height="40"/>\n<rect y="190.7" fill="#FFFFFF" width="512" height="40"/>\n<rect x="196" y="0" width="120" height="341.3"/>\n<rect x="196" y="0" fill="#FFDA44" width="40" height="341.3"/>\n<rect x="274.7" y="0" fill="#FFFFFF" width="40" height="341.3"/>\n<g>\n\t<circle fill="#D80027" cx="256" cy="170.7" r="123.1"/>\n\t<g fill="#496E2D">\n\t\t<polygon points="256,58.6 260.6,72.8 275.6,72.8 263.5,81.7 268.1,95.9 256,87.1 243.9,95.9 248.5,81.7 236.4,72.8\n\t\t\t251.4,72.8 \t\t"/>\n\t\t<polygon points="190.1,80 202.3,88.8 214.4,80 209.8,94.3 221.9,103.1 206.9,103.1 202.3,117.3 197.6,103.1\n\t\t\t182.6,103.1 194.7,94.3 \t\t"/>\n\t\t<polygon points="149.4,136 164.4,136 169,121.8 173.7,136 188.7,136 176.5,144.8 181.2,159.1 169,150.3 156.9,159.1\n\t\t\t161.5,144.8 \t\t"/>\n\t\t<polygon points="149.4,205.3 161.5,196.5 156.9,182.2 169,191 181.2,182.2 176.5,196.5 188.7,205.3 173.7,205.3\n\t\t\t169,219.6 164.4,205.3 \t\t"/>\n\t\t<polygon points="190.1,261.4 194.7,247.1 182.6,238.3 197.6,238.3 202.3,224 206.9,238.3 221.9,238.3 209.8,247.1\n\t\t\t214.4,261.4 202.3,252.5 \t\t"/>\n\t\t<polygon points="256,282.8 251.4,268.5 236.4,268.5 248.5,259.7 243.9,245.4 256,254.2 268.1,245.4 263.5,259.7\n\t\t\t275.6,268.5 260.6,268.5 \t\t"/>\n\t\t<polygon points="321.9,261.4 309.7,252.5 297.6,261.4 302.2,247.1 290.1,238.3 305.1,238.3 309.7,224 314.4,238.3\n\t\t\t329.4,238.3 317.3,247.1 \t\t"/>\n\t\t<polygon points="362.6,205.3 347.6,205.3 343,219.6 338.3,205.3 323.3,205.3 335.5,196.5 330.8,182.2 343,191\n\t\t\t355.1,182.2 350.5,196.5 \t\t"/>\n\t\t<polygon points="362.6,136 350.5,144.8 355.1,159.1 343,150.3 330.8,159.1 335.5,144.8 323.3,136 338.3,136\n\t\t\t343,121.8 347.6,136 \t\t"/>\n\t\t<polygon points="321.9,80 317.3,94.3 329.4,103.1 314.4,103.1 309.7,117.3 305.1,103.1 290.1,103.1 302.2,94.3\n\t\t\t297.6,80 309.7,88.8 \t\t"/>\n\t</g>\n\t<path fill="#496E2D" d="M279.3,168.7c-11-21.1-14.5-25.1-14.5-25.1s0.4-9.7,0.4-15.6c0-8.8-7.4-15.8-16.5-15.8\n\t\tc-8.6,0-15.7,2.9-16.5,11c-4.2,0.9-8.6,4.1-8.6,10.7c0,4.8,1,7.3,5.2,9.3c2.1-4.6,4.3-4.8,9.3-6.4c0.8,0.6,1.7,3,2.6,3.4l0.3,1\n\t\tc0,0-13.3,6.6-13.3,30.9c0,29.5,22,45.4,22,45.4l-1.8,0.3l-1.9,7.1h22v-7.2l11,17.5C279.3,234.9,289.2,187.6,279.3,168.7z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/DO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="215.2" fill="#D80027" width="211.5" height="126.1"/>\n<rect y="0" fill="#0052B4" width="211.5" height="126.2"/>\n<rect x="300.5" y="0" fill="#D80027" width="211.5" height="126.2"/>\n<rect x="300.5" y="215.2" fill="#0052B4" width="211.5" height="126.1"/>\n<g stroke="#FFFFFF" stroke-width="5" stroke-miterlimit="10">\n\t<path fill="#0052B4" d="M256,130h-49.9v49.4c0,0,19.5,6,49.9,6V130z"/>\n\t<path fill="#D80027" d="M206.1,179.4v6c0,27.5,22.3,49.9,49.9,49.9v-49.9C225.6,185.4,206.1,179.4,206.1,179.4z"/>\n\t<path fill="#0052B4" d="M256,235.3c27.5,0,49.9-22.3,49.9-49.9v-6c0,0-19.5,6-49.9,6V235.3z"/>\n\t<path fill="#D80027" d="M256,130v55.4c30.4,0,49.9-6,49.9-6V130H256z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/DZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#41662E" width="512" height="341.3"/>\n<rect x="256" y="0" fill="#FFFFFF" width="256" height="341.3"/>\n<g>\n\t<polygon fill="#D80027" points="341.5,105.3 312.1,145.7 264.6,130.3 294,170.7 264.6,211.1 312.1,195.7 341.5,236.1 341.5,186.1\n\t\t389,170.6 341.5,155.2 \t"/>\n\t<path fill="#D80027" d="M309.9,276.7c-58.5,0-106-47.5-106-106s47.5-106,106-106c18.3,0,35.4,4.6,50.4,12.7\n\t\tc-23.5-23-55.7-37.2-91.2-37.2c-72,0-130.4,58.4-130.4,130.4s58.4,130.4,130.4,130.4c35.5,0,67.7-14.2,91.2-37.2\n\t\tC345.4,272,328.2,276.7,309.9,276.7z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/EC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFDA44" width="512" height="341.3"/>\n<rect y="170.7" fill="#0052B4" width="512" height="85.3"/>\n<rect y="256" fill="#D80027" width="512" height="85.3"/>\n<circle fill="#FFDA44" cx="256" cy="170.7" r="59.4"/>\n<path fill="#4C1F00" d="M369.2,79.9c0,0-27.2-13.8-33.9-16c-6.7-2.2-49.1-13.2-49.1-7c0,10.3-13.5,12-15.5,12s-2-5.3-14.8-5.3\n\ts-13.7,4.8-15.8,4.8c-2.2,0-14.5-1-14.5-11.5c0-5.2-42.9,4-49.1,7c-6.1,3.1-33.9,16-33.9,16s45.8,2.7,53.9,6.2s43.8,16.5,43.8,16.5\n\tl-2.8,13.3h37.8l-3.8-13.3c0,0,35.1-12.7,43.8-16.5S369.2,79.9,369.2,79.9z"/>\n<path fill="#57BA17" d="M217.7,171.7c0,21.1,17.2,38.3,38.3,38.3c21.1,0,38.3-17.2,38.3-38.3v-11.5h-76.5V171.7z"/>\n<path fill="#338AF3" d="M256,110.5c-21.1,0-38.3,17.2-38.3,38.3v11.5h76.5v-11.5C294.3,127.7,277.1,110.5,256,110.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#111111" width="512" height="341.326"/>\n<rect y="85.337" fill="#368FD8" width="512" height="113.775"/>\n<rect y="312.888" fill="#FFFFFF" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="0" fill="#D80027" width="512" height="113.8"/>\n<rect y="227.6" width="512" height="113.8"/>\n<path fill="#C09300" d="M220.3,204.4c0,0,0-58.4,4.5-64.7c3.1-4.3,16.8,5.2,22.7,4.5c0,0,4.2-7.5,4.5-12c0.3-4.6-1.1-7.6-4.9-6.2\n\tc0,0-1.2-2.1,0.5-3.3c1.6-1.2,5.6,0.1,5.6,0.1s-0.5-1,1.6-0.9c2.9,0.2,7.2,1.4,7.4,5.6c0.2,3.1,0.3,7.7,0.4,8.7\n\tc0.7,6.8,2.7,8.7,2.7,8.7s18.4-9.2,22-5.2c3.3,3.8,4.5,64.7,4.5,64.7l-18.1-16.8l12.1,29.5c0,0-14.4,2.4-28.9,2.4\n\tc-14.5,0-31.1-4.2-31.1-4.2l13.8-28.2L220.3,204.4z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="0" width="512" height="113.8"/>\n<rect y="227.6" fill="#428823" width="512" height="113.8"/>\n<g>\n\t<polygon fill="#D80027" points="256,170.7 0,341.3 0,0 \t"/>\n\t<path fill="#D80027" d="M309.1,170.7c0-22.9,13.1-42.1,34.6-46.8c-3.3-0.7-6.7-1.1-10.3-1.1c-26.4,0-47.9,21.4-47.9,47.9\n\t\ts21.4,47.9,47.9,47.9c3.5,0,7-0.4,10.3-1.1C322.2,212.7,309.1,193.6,309.1,170.7z"/>\n\t<polygon fill="#D80027" points="365,129.2 375.3,160.9 408.6,160.9 381.6,180.5 391.9,212.2 365,192.6 338,212.2 348.3,180.5\n\t\t321.3,160.9 354.7,160.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ER.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<rect y="0" fill="#56AF35" width="512" height="170.7"/>\n<path fill="#D80027" d="M0,341.3c0,0,512-170.7,512-170.7L0,0V341.3z"/>\n<g fill="#ffc945">\n\t<path d="M134.7,231.5c33.6,0,60.8-27.2,60.8-60.8s-27.2-60.8-60.8-60.8s-60.8,27.2-60.8,60.8S101.1,231.5,134.7,231.5z\n\t\t M134.7,255.8c-47,0-85.2-38.1-85.2-85.2s38.1-85.2,85.2-85.2s85.2,38.1,85.2,85.2S181.7,255.8,134.7,255.8z"/>\n\t<circle cx="119.5" cy="148.3" r="17.5"/>\n\t<circle cx="148.9" cy="158.5" r="17.5"/>\n\t<circle cx="134.7" cy="135.2" r="17.5"/>\n\t<circle cx="119.5" cy="172.7" r="17.5"/>\n\t<circle cx="149.9" cy="182.8" r="17.5"/>\n\t<circle cx="122.5" cy="198" r="17.5"/>\n\t<circle cx="145.9" cy="205.2" r="17.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ES.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n\t<rect y="312.882" fill="#D80027" width="512" height="113.775"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ET.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n<g>\n\t<path fill="#20AA46" d="M0,0h22.5v5H0V0z"/>\n\t<path fill="#E92F3B" d="M0,10h22.5v5H0V10z"/>\n\t<path fill="#FADF50" d="M0,5h22.5v5H0V5z"/>\n\t<circle fill="#205CCA" cx="11.3" cy="7.5" r="5.2"/>\n\t<path fill="#FFDB3D" d="M11.2,9.2L8.8,11l0.9-2.9L7.3,6.3l3,0l1-2.8l1,2.9l3,0l-2.4,1.8l0.9,2.9L11.2,9.2z M11.2,8.2l0.9,0.6l-0.3-1.1\n\t\tl0.9-0.7l-1.1,0l-0.4-1.1l-0.4,1.1l-1.1,0l0.9,0.7l-0.3,1.1C10.3,8.9,11.2,8.2,11.2,8.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#2E52B2" points="512,129.3 512,212 203.7,212 203.7,341.3 121,341.3 121,212 0,212 0,129.3 121,129.3 121,0 203.7,0\n\t203.7,129.3 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/FJ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#2E52B2" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,22.6 209.9,53.3 256,53.3 256,117.3 209.9,117.3 256,148 256,170.7 233.4,170.7 160,121.7\n\t160,170.7 96,170.7 96,121.7 22.6,170.7 0,170.7 0,148 46.1,117.3 0,117.3 0,53.3 46.1,53.3 0,22.6 0,0 22.6,0 96,48.9 96,0 160,0\n\t160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t\t144,69.3 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.3 80,53.3 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.3 176,53.3 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.3 80,53.3 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.3 176,53.3 \t"/>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.3 80,117.3 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.3 176,117.3 \t"/>\n</g>\n<g>\n\t<path fill="#F3F3F3" d="M307.1,127.1v92c0,61.6,80.5,80.5,80.5,80.5S468,280.6,468,219v-92l-80.5-23L307.1,127.1z"/>\n\t<path fill="#D80027" d="M468,132.8V98.3H307.1v34.5h69v69h-69v23v0h69V296c6.9,2.5,11.5,3.5,11.5,3.5s4.6-1.1,11.5-3.5v-71.2h69v0v-23\n\t\th-69v-69H468z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,30.6 210.8,55.7 256,55.7 256,115 196.9,115 256,147.8 256,170.7 229.3,170.7 155.8,129.8\n\t155.8,170.7 100.2,170.7 100.2,122.1 12.7,170.7 0,170.7 0,140.1 45.2,115 0,115 0,55.7 59.1,55.7 0,22.8 0,0 26.7,0 100.2,40.8\n\t100.2,0 155.8,0 155.8,48.6 243.3,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t144,69.3 "/>\n<polygon fill="#0052B4" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#FFFFFF" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<g>\n\t<polygon fill="#D80027" points="155.8,115 256,170.7 256,154.9 184.2,115 \t"/>\n\t<polygon fill="#D80027" points="71.8,115 0,154.9 0,170.7 0,170.7 100.2,115 \t"/>\n</g>\n<polygon fill="#0052B4" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#FFFFFF" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<g>\n\t<polygon fill="#D80027" points="100.2,55.6 0,0 0,15.7 71.8,55.6 \t"/>\n\t<polygon fill="#D80027" points="184.2,55.6 256,15.7 256,0 256,0 155.8,55.6 \t"/>\n</g>\n<g transform="translate(13 4)">\n\t<path fill="#1F8BDE" d="M299.2,190.2v-90c0-8.5,6.5-15.3,15-15.3h120.5c8.3,0,15,6.8,15,15.3v90\n\t\t\tc0,75.2-75.2,105.3-75.2,105.3S299.2,265.4,299.2,190.2z"/>\n\t<path fill="#FFFFFF" d="M299.2,190.2v-90c0-8.5,6.5-15.3,15-15.3h120.5c8.3,0,15,6.8,15,15.3v90c0,75.2-75.2,105.3-75.2,105.3\n\t\tS299.2,265.4,299.2,190.2z M378.8,276.5c7.9-4.5,15.9-10,23.2-16.7c20.5-18.5,32.6-41.4,32.6-69.7v-90c0-0.3-120.4-0.3-120.4-0.3\n\t\tl0,90.3c0,28.3,12.1,51.2,32.6,69.7c8.3,7.5,17.6,13.9,27.6,19C375.8,278.2,377.2,277.4,378.8,276.5z"/>\n\t<path fill="#187536" d="M334.1,189.4c-2.6-7.9,1.7-14.3,10.1-14.3h60.5c8.2,0,12.8,6.3,10.1,14.3l-5.5,16.5c-2.6,7.9-8.9,9.2-15.8,4\n\t\tc0,0,2.6-4.8-19.1-4.8c-21.7,0-19.1,4.8-19.1,4.8c-6.1,5.7-13.1,4-15.8-4C339.6,206,334.1,189.4,334.1,189.4z"/>\n\n\t<path fill="#FFFFFF" d="M344.4,175.1c8.1,1.6,17.8-15,30.1-15c13.1,0,21.8,17.1,30.1,15c7.4-1.8,15-22.2,15-30.1\n\t\tc0-16.6-20.2-30.1-45.1-30.1c-24.9,0-45.1,13.5-45.1,30.1C329.3,153.5,336,173.5,344.4,175.1z"/>\n\n\t<path fill="#FFFFFF" d="M343,266.7c6.2,0.4,12.5-1.8,17.2-6.5l9-9c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c4.7,4.7,11,6.9,17.1,6.5\n\t\tc5.3-0.3,32.5-33.5,25.7-32.6c-4.6,0.6-9.1,2.8-12.7,6.3c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9\n\t\tc-8.7-8.8-22.9-8.8-31.7-0.1c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-3.5-3.5-7.8-5.6-12.3-6.3\n\t\tC311,233.1,337.8,266.4,343,266.7z M309.1,206c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c8.8,8.7,22.9,8.7,31.7,0l9-9\n\t\tc2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c8.8,8.7,22.9,8.7,31.7,0l9-9c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0c0,0,5.5-14.8,2.5-15.9\n\t\tc-7.9-2.9-17.2-1.2-23.5,5.2c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-8.7-8.8-22.9-8.8-31.7-0.1\n\t\tc0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-6.2-6.2-15.1-8-22.8-5.5C304.1,191,309.1,206,309.1,206z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256,37.9 266.1,69.1 299,69.1 272.4,88.4 282.6,119.6 256,100.3 229.4,119.6 239.6,88.4 213,69.1\n\t\t245.9,69.1 \t"/>\n\t<polygon fill="#FFFFFF" points="123.2,170.7 154.4,160.5 154.4,127.7 173.7,154.3 204.9,144.1 185.6,170.7 204.9,197.2 173.7,187.1\n\t\t154.4,213.6 154.4,180.8 \t"/>\n\t<polygon fill="#FFFFFF" points="256,303.5 245.9,272.3 213,272.3 239.6,253 229.4,221.7 256,241 282.6,221.7 272.4,253 299,272.3\n\t\t266.1,272.3 \t"/>\n\t<polygon fill="#FFFFFF" points="388.8,170.7 357.6,180.8 357.6,213.6 338.3,187.1 307.1,197.2 326.4,170.7 307.1,144.1 338.3,154.3\n\t\t357.6,127.7 357.6,160.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#0F61A5" points="512,214.5 206.2,214.5 206.2,341.3 183.7,341.3 141,341.3 118.4,341.3 118.4,214.5 0,214.5 0,192\n\t0,149.3 0,126.8 118.4,126.8 118.4,0 141,0 183.7,0 206.2,0 206.2,126.8 512,126.8 512,149.3 512,192 "/>\n<polygon fill="#E50E3D" points="512,149.3 512,192 183.7,192 183.7,341.3 141,341.3 141,192 0,192 0,149.3 141,149.3 141,0 183.7,0\n\t183.7,149.3 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/FR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GB.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#FFFFFF" width="512" height="341.337"/>\n<polygon fill="#D80027" points="288,85.33 224,85.33 224,223.996 0,223.996 0,287.996 224,287.996 224,426.662 288,426.662 288,287.996 512,287.996 512,223.996 288,223.996 "/>\n<g>\n\t<polygon fill="#0052B4" points="393.785,315.358 512,381.034 512,315.358 "/>\n\t<polygon fill="#0052B4" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n\t<polygon fill="#0052B4" points="458.634,426.662 311.652,344.998 311.652,426.662 "/>\n</g>\n<polygon fill="#FFFFFF" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n<polygon fill="#D80027" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n<g>\n\t<polygon fill="#0052B4" points="90.341,315.356 0,365.546 0,315.356 "/>\n\t<polygon fill="#0052B4" points="200.348,329.51 200.348,426.661 25.491,426.661 "/>\n</g>\n<polygon fill="#D80027" points="143.693,315.358 0,395.188 0,426.662 0,426.662 200.348,315.358 "/>\n<g>\n\t<polygon fill="#0052B4" points="118.215,196.634 0,130.958 0,196.634 "/>\n\t<polygon fill="#0052B4" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n\t<polygon fill="#0052B4" points="53.366,85.33 200.348,166.994 200.348,85.33 "/>\n</g>\n<polygon fill="#FFFFFF" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n<polygon fill="#D80027" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n<g>\n\t<polygon fill="#0052B4" points="421.659,196.636 512,146.446 512,196.636 "/>\n\t<polygon fill="#0052B4" points="311.652,182.482 311.652,85.331 486.509,85.331 "/>\n</g>\n<polygon fill="#D80027" points="368.307,196.634 512,116.804 512,85.33 512,85.33 311.652,196.634 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#c60a0a" width="512" height="341.3"/>\n<polygon fill="#3E8446" points="256,170.7 44.5,296.8 44.5,44.5 "/>\n<g>\n\t<polygon fill="#FFDA44" points="256,170.7 467.5,296.8 44.5,296.8 \t"/>\n\t<polygon fill="#FFDA44" points="467.5,44.5 256,170.7 44.5,44.5 \t"/>\n</g>\n<polygon fill="#3E8446" points="467.5,44.5 467.5,296.8 256,170.7 "/>\n<g fill="#FFDA44">\n\t<polygon points="256,10.4 259.3,20.6 270,20.6 261.4,26.9 264.7,37.1 256,30.8 247.3,37.1 250.6,26.9 242,20.6\n\t\t252.7,20.6 \t"/>\n\t<polygon points="170.1,10.4 173.4,20.6 184.1,20.6 175.5,26.9 178.8,37.1 170.1,30.8 161.4,37.1 164.7,26.9\n\t\t156.1,20.6 166.8,20.6 \t"/>\n\t<polygon points="341.9,10.4 345.2,20.6 356,20.6 347.3,26.9 350.6,37.1 341.9,30.8 333.2,37.1 336.5,26.9 327.9,20.6\n\t\t338.6,20.6 \t"/>\n\t<polygon points="256,304.2 259.3,314.4 270,314.4 261.4,320.7 264.7,330.9 256,324.6 247.3,330.9 250.6,320.7\n\t\t242,314.4 252.7,314.4 \t"/>\n\t<polygon points="170.1,304.2 173.4,314.4 184.1,314.4 175.5,320.7 178.8,330.9 170.1,324.6 161.4,330.9 164.7,320.7\n\t\t156.1,314.4 166.8,314.4 \t"/>\n\t<polygon points="341.9,304.2 345.2,314.4 356,314.4 347.3,320.7 350.6,330.9 341.9,324.6 333.2,330.9 336.5,320.7\n\t\t327.9,314.4 338.6,314.4 \t"/>\n</g>\n<g>\n\t<circle fill="#c60a0a" cx="244.5" cy="170.7" r="76.2"/>\n\t<polygon fill="#FFDA44" points="244.5,110.1 258.1,151.9 302.1,151.9 266.5,177.7 280.1,219.5 244.5,193.7 209,219.5 222.6,177.7\n\t\t187,151.9 231,151.9 \t"/>\n</g>\n<path fill="#FFDA44" d="M107.7,167.8c4.4,6.9,2.3,16.1-4.6,20.5s-16.1,2.3-20.5-4.6c-7.9-12.5-3.3-33-3.3-33S99.7,155.3,107.7,167.8z"\n\t/>\n<circle fill="#A2001D" cx="99.1" cy="182.1" r="7.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GE-AB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="0" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="97.5" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="195" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="292.6" fill="#6DA544" width="512" height="48.8"/>\n</g>\n<rect y="0" fill="#D80027" width="256" height="146.3"/>\n<polygon fill="#FFFFFF" points="116.9,114.4 109.4,99.6 109.4,69.9 128,59 146.6,69.9 146.6,92.2 154,84.8 158.2,87.8 154,99.6\n\t139.1,114.4 "/>\n<circle fill="#FFFFFF" cx="82" cy="82.8" r="5.4"/>\n<circle fill="#FFFFFF" cx="90.8" cy="61.7" r="5.4"/>\n<circle fill="#FFFFFF" cx="106.6" cy="46.2" r="5.4"/>\n<circle fill="#FFFFFF" cx="128" cy="40.8" r="5.4"/>\n<circle fill="#FFFFFF" cx="149.4" cy="46.2" r="5.4"/>\n<circle fill="#FFFFFF" cx="165.2" cy="61.7" r="5.4"/>\n<circle fill="#FFFFFF" cx="174" cy="82.8" r="5.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GE-OS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<rect width="450" height="300" fill="#FFFFFF"/>\n<rect width="450" height="200" y="100" fill="#FF0000"/>\n<rect width="450" height="100" y="200" fill="#FFDF00"/>\n</svg>',"./assets/country-flag-icons/3x2/GE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n\t<path fill="#FFFFFF" d="M0.8,0h21v15h-21V0z"/>\n\t<path fill="#eb000e" d="M9.8,6H0v3h9.8v6h3V9h9.8V6h-9.8V0h-3V6z"/>\n\t<path fill="#eb000e" d="M17.3,2.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1l-1.2-0.2l0.2,1.2h-1l0.2-1.2l-1.2,0.2v-1L17.3,2.7z M4.6,2.7L4.4,1.5\n\t\th1L5.2,2.7l1.2-0.2v1L5.2,3.3l0.2,1.2h-1l0.2-1.2L3.4,3.5v-1C3.4,2.5,4.6,2.7,4.6,2.7z M4.6,11.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1\n\t\tl-1.2-0.2l0.2,1.2h-1l0.2-1.2l-1.2,0.2v-1C3.4,11.5,4.6,11.7,4.6,11.7z M17.3,11.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1l-1.2-0.2l0.2,1.2\n\t\th-1l0.2-1.2l-1.2,0.2v-1L17.3,11.7z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<polygon fill="#FDEB01" points="0,0 90,60 0,60 "/>\n<polygon fill="#58A846" points="90,0 90,60 0,0 "/>\n<polygon fill="#ED3D24" stroke="#A02021" stroke-miterlimit="10" points="54.1,35.3 68.8,24.6 50.6,24.6 45,7.3 39.4,24.6 21.2,24.6 35.9,35.3 30.3,52.7 45,42 59.7,52.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFFFFF" width="513" height="342"/>\n<polygon fill="#D80027" points="308,0 204,0 204,118.7 0,118.7 0,222.7 204,222.7 204,342 308,342 308,222.7 513,222.7 513,118.7 308,118.7 "/>\n<polygon fill="#FFDA44" points="368.6,188 394.6,205.3 394.6,136 368.6,153.3 273.3,153.3 273.3,58.1 290.6,32.1 221.4,32.1 238.7,58.1 238.7,153.3 143.4,153.3 117.4,136 117.4,205.3 143.4,188 238.7,188 238.7,283.2 221.4,309.2 290.6,309.2 273.3,283.2 273.3,188 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#496E2D" width="512" height="113.775"/>\n<polygon points="255.883,199.111 270.002,242.569 310.368,245.769 273.399,272.63 292.852,312.889 255.883,286.03 218.913,312.889 233.036,269.43 196.067,242.569 241.763,242.569 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="230" fill="#D80027" width="513" height="112"/>\n<polygon fill="#D80027" stroke="#000000" stroke-miterlimit="10" points="363.1,131.8 363.1,99.1 374,99.1 374,77.3 352.1,77.3 352.1,88.2 330.3,88.2 330.3,77.3 308.5,77.3\n\t308.5,99.1 319.4,99.1 319.4,131.8 297.6,131.8 297.6,55.5 308.5,55.5 308.5,33.7 286.7,33.7 286.7,44.6 275.8,44.6 275.8,33.7\n\t254,33.7 254,44.6 243.1,44.6 243.1,33.7 221.3,33.7 221.3,55.5 232.2,55.5 232.2,131.8 210.4,131.8 210.4,99.1 221.3,99.1\n\t221.3,77.3 199.5,77.3 199.5,88.2 177.7,88.2 177.7,77.3 155.9,77.3 155.9,99.1 166.8,99.1 166.8,131.8 145,131.8 145,219\n\t384.9,219 384.9,131.8 "/>\n<path fill="#FFDA44" stroke="#000000" stroke-miterlimit="10" d="M264.9,235.5l-24.2,18.2l19.1,14.3v31.3h-23.2v9l23,0l0,7.9l-23,0v9.3H270V268l19.1-14.3L264.9,235.5z\n\t M264.9,260.8l-10.1-7.1l10.1-7.1l10.1,7.1L264.9,260.8z"/>\n<path d="M239.6,209.7v-27.9c0,0,0.1-22.3,25-22.3c24.8,0,25.7,22,25.7,22v28.2H239.6z"/>\n<path d="M170.5,209.7v-24.3c0,0,0.1-18.7,19.6-18.7s20.2,18.4,20.2,18.4v24.5H170.5z"/>\n<path d="M169.1,209.7v-24.3c0,0,0.1-18.7,19.6-18.7s20.2,18.4,20.2,18.4v24.5H169.1z"/>\n<path d="M320.9,209.7v-24.3c0,0,0.1-18.7,19.6-18.7c19.5,0,20.2,18.4,20.2,18.4v24.5H320.9z"/>\n<path d="M329.3,132v-15.7c0,0,0.1-12.1,11.3-12.1c11.3,0,11.7,11.9,11.7,11.9V132H329.3z"/>\n<path d="M250.5,132v-23.7c0,0,0.1-18.3,14.3-18.3c14.2,0,14.7,18,14.7,18v24H250.5z"/>\n<path d="M177.5,132v-15.7c0,0,0.1-12.1,11.3-12.1s11.7,11.9,11.7,11.9V132H177.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<polygon fill="#FFFFFF" points="513,0 513,171 0,171 0,0 "/>\n<circle fill="#FFFFFF" cx="185.8" cy="171.2" r="117.8"/>\n<path fill="#D80027" d="M68,171c0-65.1,52.8-117.8,117.8-117.8c65.1,0,117.8,52.8,117.8,117.8"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="322.783" fill="#1a7e25" width="512" height="103.88"/>\n<rect y="85.337" fill="#cf0d19" width="512" height="104.515"/>\n<rect y="210.877" fill="#0052B4" width="512" height="89.656"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFDA44" width="512" height="342"/>\n<rect x="342" fill="#6DA544" width="171" height="342"/>\n<rect fill="#D80027" width="171" height="342"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="113.8"/>\n<rect y="227.6" fill="#D80027" width="513" height="114.4"/>\n<polygon fill="#0070C8" points="126,170.7 0,341.3 0,0 "/>\n<path fill="none" stroke="#000000" stroke-miterlimit="10" d="M233.8,139.4v40.4c0,35.6,35.6,35.6,35.6,35.6s35.6,0,35.6-35.6v-40.4H233.8z"/>\n<polygon fill="#786145" points="264.5,179.8 274.3,179.8 278.3,205.6 260.5,205.6 "/>\n<path fill="#6DA544" d="M287.2,162c0-9.8-8-14.8-17.8-14.8s-17.8,5-17.8,14.8c-4.9,0-8.9,4-8.9,8.9s4,8.9,8.9,8.9c2.9,0,32.6,0,35.6,0\n\tc4.9,0,8.9-4,8.9-8.9S292.1,162,287.2,162z"/>\n<g fill="#FFDA00" stroke="#000000" stroke-miterlimit="10">\n\t<polygon points="230.7,120 232.6,123.3 236.4,123.3 234.5,126.6 236.4,129.8 232.6,129.8 230.7,133.1 228.8,129.8\n\t\t225,129.8 226.9,126.6 225,123.3 228.8,123.3 \t"/>\n\t<polygon points="246,120 247.9,123.3 251.6,123.3 249.7,126.6 251.6,129.8 247.9,129.8 246,133.1 244.1,129.8\n\t\t240.3,129.8 242.2,126.6 240.3,123.3 244.1,123.3 \t"/>\n\t<polygon points="261.3,120 263.2,123.3 266.9,123.3 265,126.6 266.9,129.8 263.2,129.8 261.3,133.1 259.4,129.8\n\t\t255.6,129.8 257.5,126.6 255.6,123.3 259.4,123.3 \t"/>\n\t<polygon points="277.1,120 279,123.3 282.8,123.3 280.9,126.6 282.8,129.8 279,129.8 277.1,133.1 275.2,129.8\n\t\t271.5,129.8 273.3,126.6 271.5,123.3 275.2,123.3 \t"/>\n\t<polygon points="293.1,120 295,123.3 298.8,123.3 296.9,126.6 298.8,129.8 295,129.8 293.1,133.1 291.2,129.8\n\t\t287.5,129.8 289.3,126.6 287.5,123.3 291.2,123.3 \t"/>\n\t<polygon points="308.1,120 310,123.3 313.7,123.3 311.8,126.6 313.7,129.8 310,129.8 308.1,133.1 306.2,129.8\n\t\t302.4,129.8 304.3,126.6 302.4,123.3 306.2,123.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 513 342">\n\t<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n\t<g fill="#1571CC">\n\t\t<rect y="0" width="513" height="38"/>\n\t\t<rect y="76" width="513" height="38"/>\n\t\t<rect y="152" width="513" height="38"/>\n\t\t<rect y="228" width="513" height="38"/>\n\t\t<rect y="304" width="513" height="38"/>\n\t</g>\n\t<rect y="0" fill="#1571CC" width="190" height="190"/>\n\t<g>\n\t\t<rect y="76" fill="#FFFFFF" width="190" height="38"/>\n\t\t<rect x="76" y="0" fill="#FFFFFF" width="38" height="190"/>\n\t</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 \t"/>\n\t<g>\n\t\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t\t"/>\n\t</g>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 \t"/>\n</g>\n<g>\n\t<ellipse fill="#FFFFFF" cx="443.4" cy="233.6" rx="29" ry="43.5"/>\n\t<ellipse fill="#FFCE00" cx="406.9" cy="317.7" rx="22" ry="9.3"/>\n\t<ellipse fill="#FFCE00" cx="364" cy="317.7" rx="22" ry="9.3"/>\n\t<polygon fill="#39B200" points="342,190.1 385.4,277 428.9,190.1 \t"/>\n\t<ellipse fill="#9B9B9B" cx="327.5" cy="233.6" rx="29" ry="43.5"/>\n\t<path fill="#757575" d="M371,175.6l-14.5,14.5h57.9l-14.5-14.5l14.5-43.5c0,0-13-29-29-29s-29,29-29,29L371,175.6z"/>\n\t<circle fill="#C6B56F" cx="385.4" cy="67" r="29"/>\n\t<circle fill="#A54A00" cx="386" cy="88.7" r="29"/>\n\t<circle fill="#FFFFFF" cx="443.4" cy="117.7" r="29"/>\n\t<circle fill="#0049FF" cx="342.2" cy="146.7" r="29"/>\n\t<circle fill="#0041F9" cx="429.8" cy="146.7" r="29"/>\n\t<circle fill="#F7D71E" cx="386" cy="233.6" r="29"/>\n\t<circle fill="#CEC851" cx="457.9" cy="190.1" r="29"/>\n\t<circle fill="#FFFFFF" cx="385.4" cy="289.5" r="29"/>\n\t<path fill="#7C0B29" d="M371,135.7l14.5-3.5l14.5,3.5c0,7.5-14.5,11-14.5,11S371,143.2,371,135.7z"/>\n\t<circle fill="#FFFFFF" cx="327.5" cy="117.4" r="29"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g>\n\t<rect y="0" fill="#338AF3" width="171" height="342"/>\n\t<rect x="342" y="0" fill="#338AF3" width="171" height="342"/>\n</g>\n<circle fill="#DCC26D" cx="256" cy="155.8" r="25.5"/>\n<path fill="#628A40" d="M194.2,155.9c0,22.1,11.8,42.5,30.8,53.5c5.9,3.4,13.5,1.4,16.9-4.5c3.4-5.9,1.4-13.5-4.5-16.9\n\tc-11.5-6.6-18.5-18.9-18.5-32.1c0-6.8-5.5-12.4-12.4-12.4S194.2,149,194.2,155.9z M289.3,208c17.8-11.4,28.6-31,28.5-52.1\n\tc0-6.8-5.5-12.4-12.4-12.4c-6.8,0-12.4,5.5-12.4,12.4c0,12.7-6.5,24.5-17.1,31.3c-5.8,3.6-7.7,11.2-4.1,17c3.6,5.8,11.2,7.7,17,4.1\n\tC289,208.2,289.1,208.1,289.3,208z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="512" height="341.3"/>\n<rect x="11.1" y="11.1" fill="#0052B4" width="489.7" height="319.1"/>\n<path fill="#7DBEF1" d="M256,285.3c0,0,76.4-51.3,76.4-114.6S256,56,256,56s-76.4,51.3-76.4,114.6S256,285.3,256,285.3z"/>\n<polygon fill="#1C8AE6" points="179.8,180.7 332.4,180.7 303.1,245.6 207.9,245.6 "/>\n<path fill="#FFF042" d="M192.3,205.9c0,0,40.5,38.2,51,38.2c12.4,0,12.6-18.4,25.5-25.5c20.2-11.1,51-12.7,51-12.7l-22.8,42.8l-41,36.6\n\tl-46.8-39.7L192.3,205.9z"/>\n<path fill="#259C7B" d="M256,157.5l-22.5,15.6l7.9-26.2l-21.8-16.5l27.4-0.5l9-25.9l9,25.9l27.4,0.5L270.6,147l7.9,26.2L256,157.5z"/>\n<path fill="#8E5715" d="M249.7,144.6c-0.9,9.2-1.5,18.4-1.7,27.6c-0.3,11.9,0.3,20.7,2,26c2.2,6.6,7.2,12.9,14.2,18.9\n\tc5.3,4.6,10.6,8.1,14.2,10.1c3.1,1.7,7,0.6,8.7-2.4c1.7-3.1,0.6-7-2.4-8.7l0,0c-4.3-2.5-8.4-5.4-12.2-8.7\n\tc-5.4-4.6-9.1-9.2-10.4-13.3c-1.1-3.4-1.6-11.3-1.4-21.7c0.2-8.9,0.8-17.8,1.7-26.6c0.4-3.5-2.2-6.6-5.7-7\n\tC253.1,138.5,250,141.1,249.7,144.6z"/>\n<path fill="#FFFFFF" d="M217.8,170.7l25.5,38.2h-25.5V170.7z"/>\n<path fill="none" stroke="#D80027" stroke-width="12" stroke-miterlimit="10" d="M256,285.3c0,0,76.4-51.3,76.4-114.6S256,56,256,56s-76.4,51.3-76.4,114.6S256,285.3,256,285.3z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#6DA544" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFDA44" width="512" height="170.663"/>\n<rect y="85.331" fill="#D80027" width="181.793" height="341.337"/>\n<polygon points="98.32,195.127 113.427,241.624 162.321,241.624 122.766,270.364 137.874,316.862 98.32,288.125 58.764,316.862 73.875,270.364 34.321,241.624 83.212,241.624 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<path fill="#009E49" d="M0,0h900v600H0V0z"/>\n<path fill="#FFFFFF" d="M0,0l947,300L0,600V0z"/>\n<path fill="#FFD00D" d="M0,26.1L870,300L0,573.9V26.1z"/>\n<path fill="#2D2D2D" d="M0,0l450,300L0,600V0z"/>\n<path fill="#D3132F" d="M0,35l397.5,265L0,565V35z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/HK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<g fill="#FFFFFF">\n\t<path d="M274.2,119.8c-5.1,21.1-14.1,17.1-18.5,35.5c-26.1-6.3-42.1-32.5-35.9-58.6c6.3-26.1,32.5-42.1,58.5-35.9\n\t\tC269.6,97.7,278.8,100.9,274.2,119.8z"/>\n\t<path d="M206.6,135.4c18.5,11.3,11.9,18.7,28,28.6c-14,22.9-43.9,30-66.8,16c-22.9-14-30-43.9-16-66.8\n\t\tC184.1,133,190,125.3,206.6,135.4z"/>\n\t<path d="M200.6,204.6c16.5-14.1,21.4-5.5,35.8-17.8c17.4,20.4,15,51-5.4,68.4c-20.4,17.4-51,15-68.4-5.4\n\t\tC191.3,225.2,185.8,217.2,200.6,204.6z"/>\n\t<path d="M264.5,231.7c-8.3-20.1,1.4-22.1-5.9-39.6c24.8-10.3,53.2,1.5,63.4,26.3c10.3,24.8-1.5,53.2-26.3,63.4\n\t\tC281.2,246.8,271.9,249.6,264.5,231.7z"/>\n\t<path d="M310,179.3c-21.6,1.7-20.6-8.1-39.5-6.6c-2.1-26.7,17.9-50.1,44.6-52.2c26.7-2.1,50.1,17.9,52.2,44.6\n\t\tC329.6,168,329.4,177.8,310,179.3z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<path fill="#FFFFFF" d="M223.397,255.996c0.273-0.304,0.543-0.609,0.813-0.916c-0.27,0.308-0.546,0.61-0.82,0.916H223.397z"/>\n\t<polygon fill="#FFFFFF" points="189.217,297.923 200.175,320.836 224.922,315.118 213.839,337.971 233.739,353.752 208.963,359.337 209.032,384.735 189.217,368.845 169.403,384.735 169.472,359.337 144.696,353.752 164.596,337.971 153.513,315.118 178.259,320.836 "/>\n\t<polygon fill="#FFFFFF" points="387.076,326.387 392.303,337.316 404.106,334.588 398.82,345.488 408.312,353.016 396.494,355.679 396.526,367.793 387.076,360.215 377.626,367.793 377.658,355.679 365.841,353.016 375.332,345.488 370.047,334.588 381.85,337.316 "/>\n\t<polygon fill="#FFFFFF" points="338.453,210.448 343.68,221.378 355.483,218.649 350.197,229.55 359.688,237.078 347.871,239.741 347.903,251.856 338.453,244.276 329.002,251.856 329.035,239.741 317.217,237.078 326.708,229.55 321.424,218.649 333.226,221.378 "/>\n\t<polygon fill="#FFFFFF" points="387.076,144.198 392.303,155.128 404.106,152.398 398.82,163.3 408.311,170.827 396.494,173.491 396.526,185.605 387.076,178.025 377.626,185.605 377.658,173.491 365.841,170.827 375.332,163.3 370.047,152.398 381.85,155.128 "/>\n\t<polygon fill="#FFFFFF" points="429.547,193.886 434.774,204.815 446.576,202.087 441.292,212.987 450.783,220.514 438.965,223.178 438.998,235.292 429.547,227.714 420.097,235.292 420.129,223.178 408.312,220.514 417.803,212.987 412.517,202.087 424.32,204.815 "/>\n\t<polygon fill="#FFFFFF" points="399.179,251.856 403.289,264.508 416.593,264.508 405.83,272.328 409.942,284.98 399.179,277.161 388.414,284.98 392.526,272.328 381.763,264.508 395.067,264.508 "/>\n\t<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.443 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 "/>\n</g>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#338AF3">\n\t<rect y="0" width="513" height="114"/>\n\t<rect y="228" width="513" height="114"/>\n\t<polygon points="203.5,117.9 210.2,134.5 227.8,135.5 213.8,146.4 218.5,164.1 203.5,154.2 188.5,164.1 193.2,146.4\n\t\t179.2,135.5 196.8,134.5 \t"/>\n\t<polygon points="308.5,117.9 315.2,134.5 332.8,135.5 318.8,146.4 323.5,164.1 308.5,154.2 293.5,164.1 298.2,146.4\n\t\t284.2,135.5 301.8,134.5 \t"/>\n\t<polygon points="256,147.6 262.7,164.2 280.3,165.2 266.3,176.1 271,193.8 256,183.9 241,193.8 245.7,176.1\n\t\t231.7,165.2 249.3,164.2 \t"/>\n\t<polygon points="203.5,177.3 210.2,193.9 227.8,194.9 213.8,205.8 218.5,223.4 203.5,213.5 188.5,223.4 193.2,205.8\n\t\t179.2,194.9 196.8,193.9 \t"/>\n\t<polygon points="308.5,177.3 315.2,193.9 332.8,194.9 318.8,205.8 323.5,223.4 308.5,213.5 293.5,223.4 298.2,205.8\n\t\t284.2,194.9 301.8,193.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFFFFF" width="513" height="342"/>\n<rect fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#0052B4" width="513" height="114"/>\n<g fill="#338AF3">\n\t<polygon points="309.3,113.2 309.3,69.2 326.8,54.8 344.5,69.2 344.5,113.2 \t"/>\n\t<polygon points="203.7,113.2 203.7,69.2 186.4,54.8 168.5,69.2 168.5,113.2 \t"/>\n\t<polygon points="238.9,113.2 238.9,69.2 256.5,54.8 274.1,69.2 274.1,113.2 \t"/>\n</g>\n<g fill="#0052B4">\n\t<polygon points="309.3,113.2 274.1,113.2 274.1,69.2 291.6,54.8 309.3,69.2 "/>\n\t<polygon points="238.9,113.2 203.7,113.2 203.7,69.2 221.2,54.8 238.9,69.2 "/>\n</g>\n<path stroke="#D80027" stroke-width="1" fill="#FFFFFF" d="M168.5,113.2v101.9c0,24.3,14.4,46.2,35.4,59.4c21.3,13.4,42.1,14.7,52.6,14.7c10.5,0,31.4-1.7,52.6-14.8\n\tc21-13,35.4-35.1,35.4-59.3V113.2L168.5,113.2z"/>\n<g fill="#D80027">\n\t<rect x="168.5" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="238.9" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="309.3" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="203.7" y="148.4" width="35.2" height="35.2"/>\n\t<rect x="274.1" y="148.4" width="35.2" height="35.2"/>\n\t<rect x="168.5" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="203.7" y="218.8" width="35.2" height="35.2"/>\n\t<rect x="238.9" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="309.3" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="274.1" y="218.8" width="35.2" height="35.2"/>\n\t<path d="M309.3,274.3c8.6-5.4,16.2-12.3,22-20.3h-22V274.3z"/>\n\t<path d="M181.7,254c5.8,8,13.3,14.9,22,20.4V254H181.7z"/>\n\t<path d="M238.9,254v33.7c7.2,1.2,13.3,1.5,17.6,1.5c4.3,0,10.4-0.3,17.6-1.6V254H238.9z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#A2001D" width="513" height="172"/>\n<rect y="172" fill="#0052B4" width="513" height="172"/>\n<polygon fill="#FFFFFF" points="381.4,251.5 270.7,237.7 159.9,251.5 159.9,85.4 381.4,85.4 \t"/>\n<circle fill="#0052B4" cx="270.7" cy="182.3" r="55.4"/>\n<circle fill="#A2001D" cx="270.7" cy="182.3" r="27.7"/>\n<polygon fill="#6DA544" points="229.1,113.1 312.2,113.1 270.7,154.6 \t"/>\n<rect x="256.8" y="140.8" fill="#FFDA44" width="27.7" height="83"/>\n<polygon fill="#6DA544" points="314.9,215.5 226.4,215.5 159.9,251.5 381.4,251.5 \t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/HU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ID.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#A2001D" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#FF9811" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#2E52B2">\n\t<path d="M340.6,122.4h-56.1l-28-48.6l-28,48.6h-56.1l28,48.6l-28,48.6h56.1l28,48.6l28-48.6h56.1l-28-48.6L340.6,122.4\n\t\tz M293.2,171l-17.2,33.2h-38.9L219.8,171l17.2-33.2h38.9L293.2,171z M256.5,99.2l11.9,23.3h-23.9L256.5,99.2z M198.2,137.8h23.9\n\t\tl-10.8,21L198.2,137.8z M198.2,204.2l13-22.1l11.9,22.1H198.2z M256.5,241.7l-11.9-22.1h23.9L256.5,241.7z M315.9,204.2h-25\n\t\tl11.9-22.1L315.9,204.2z M289.8,137.8h26.1l-13,22.1L289.8,137.8z"/>\n\t<rect y="21.3" width="512" height="42.7"/>\n\t<rect y="277.3" width="512" height="42.7"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#E52D42" width="513" height="342"/>\n<path fill="#FFFFFF" d="M393.3,68.2h-45.8l-33.8,80.2l-34.4-22.9c0,0-24.7-59.1-34.4-68.2c-9.7-9.7-18.7-0.6-48.9,7.8\n\tc-29.6,8.4-30.8,18.7-42.2,18.7c-4.8,0-19.9-17.5-27.7-22.3c-12.1-7.8-16.9-4.2-13.9,7.2c1.2,4.8,10.9,10.9,16.9,19.9\n\tc7.8,11.5,12.7,25.9,12.7,25.9s10.9-10.3,16.9-12.1c9-2.4,19.3,1.8,31.4,0c15.1-2.4,31.4-10.9,31.4-10.9l4.2,43.4\n\tc0,0-54.3,50.7-49.5,70.6s56.1,44.6,68.2,62.7c12.1,17.5-7.2,24.1-7.2,32.6s-1.8,19.9,7.2,16.3c9-3.6,10.3-18.1,18.7-31.4\n\tc6-9,10.3-13.9,11.5-17.5c1.8-9-23.5-32-37.4-48.9c-6.6-7.8-19.9-18.7-19.9-18.7l39.2-29.6c0,0,67.6,27.7,82.6,18.7\n\tc15.1-9,19.3-98.3,19.3-98.3l47-11.5L393.3,68.2z"/>\n<path fill="#F8DD4E" d="M279.3,262.4c-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S285.3,262.4,279.3,262.4z\n\t M325.1,79.6c-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S331.1,79.6,325.1,79.6z M325.1,170.7\n\tc-6,0-11.5-4.8-11.5-11.5c0-6,4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5C336,165.9,331.1,170.7,325.1,170.7z M188.2,216.5\n\tc-6,0-11.5-4.8-11.5-11.5c0-6,4.8-11.5,11.5-11.5c6.6,0,11.5,4.8,11.5,11.5C199.7,211.7,194.2,216.5,188.2,216.5z M233.4,79.6\n\tc-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S240.1,79.6,233.4,79.6z M256.3,170.7c-6,0-11.5-10.3-11.5-22.9\n\ts4.8-22.9,11.5-22.9c6,0,11.5,10.3,11.5,22.9S263,170.7,256.3,170.7z M142.3,125.5c-6,0-11.5-4.8-11.5-11.5\n\tc0-6.6,4.8-11.5,11.5-11.5c6.6,0,11.5,4.8,11.5,11.5C153.8,120.6,149,125.5,142.3,125.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n\t<path fill="#181A93" d="M17.3,0h478.4v342H17.3V0z"/>\n\t<path fill="#FFA44A" d="M0,0h513v114H0V0z"/>\n\t<path fill="#1A9F0B" d="M0,228h513v114H0V228z"/>\n\t<path fill="#FFFFFF" d="M0,114h513v114H0V114z"/>\n\t<ellipse fill="#FFFFFF" cx="256.5" cy="171" rx="34.2" ry="34.2"/>\n\t<path fill="#181A93" d="M256.5,216.6c-25.1,0-45.6-20.5-45.6-45.6s20.5-45.6,45.6-45.6s45.6,20.5,45.6,45.6S281.6,216.6,256.5,216.6z M256.5,205.2\n\t\tc18.2,0,34.2-16,34.2-34.2s-15.9-34.2-34.2-34.2s-34.2,16-34.2,34.2S238.3,205.2,256.5,205.2z"/>\n\t<ellipse fill="#181A93" cx="256.5" cy="171" rx="22.8" ry="22.8"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<path fill="#FFFFFF" d="M0-0.3h513V342H0V-0.3z"/>\n<path fill="#0052B4" d="M462.9,198.1c-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12\n\tc-9,0-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12c-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9\n\tc-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12v22l19,10c11,6,21,12,31.1,12s21-6,32.1-12\n\tc6-4,16-10,20-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-10,21-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12\n\tc7-4,16-10,20-10s14,6,21,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10s14,6,20,10c11,6,22,12,32.1,12s20-6,31.1-12l19-10\n\tv-22c-10,0-20,6-30.1,12C475.9,193.1,466.9,198.1,462.9,198.1z M0,31.7l19,10c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-10,20-10\n\ts13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-10,21-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10\n\ts14,6,21,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10s14,6,20,10c11,6,22,12,32.1,12s20-6,31.1-12l19-10v-22\n\tc-10,1-20,6-30.1,12c-7,4-16,9-20,9s-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12\n\ts-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12s-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12\n\ts-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-11-30.1-12V31.7z M462.9,86.9c-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12c-9,0-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12\n\tc-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12\n\tv22l19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9\n\tc11,6,22,12,32.1,12s20-6,31.1-12l19-9v-22c-10,0-20,6-30.1,12C475.9,81.8,466.9,86.9,462.9,86.9z M513,120.9c-10,1-20,6-30.1,12\n\tc-7,4-16,10-20,10s-14-6-21-10c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,10-20,10s-14-6-20-10c-11-6-22-12-32.1-12s-20,6-31.1,12\n\tc-7,4-16,10-20,10s-13-6-20-10c-11-6-22-12-31.1-12s-21,6-32.1,12c-6,4-16,10-20,10s-13-6-20-10c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-17,10-21,10s-13-6-20-10c-10-6-20-11-30.1-12v23c4,1,13,5,19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9c11,6,22,12,32.1,12s20-6,31.1-12c6-4,15-8,19-9V120.9z M462.9,254.2\n\tc-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12c-9,0-20,6-31.1,12\n\tc-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12c-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12v22l19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9c11,6,22,12,32.1,12s20-6,31.1-12l19-9v-22c-10,0-20,6-30.1,12\n\tC475.9,249.2,466.9,254.2,462.9,254.2z M513,288.2c-10,1-20,6-30.1,12c-7,4-16,10-20,10s-14-6-21-10c-11-6-21-12-31.1-12\n\ts-20,6-31.1,12c-7,4-16,10-20,10s-14-6-20-10c-11-6-22-12-32.1-12s-20,6-31.1,12c-7,4-16,10-20,10s-13-6-20-10c-11-6-22-12-31.1-12\n\ts-21,6-32.1,12c-6,4-16,10-20,10s-13-6-20-10c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,10-21,10s-13-6-20-10c-10-6-20-11-30.1-12\n\tv23c4,0,13,5,19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9\n\ts13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9\n\tc11,6,22,12,32.1,12s20-6,31.1-12c6-4,15-9,19-9V288.2z"/>\n<path fill="#FFFFFF" d="M0-0.3h256v171H0V-0.3z"/>\n<path fill="#496E2D" d="M278,170.7"/>\n<g fill="#A2001D">\n<path d="M389.8,119.9H408v78.8h-18.3L389.8,119.9L389.8,119.9z M389.8,237.7H408v75.1h-18.3L389.8,237.7L389.8,237.7z"\n\t/>\n<path d="M0-85.3"/>\n<path d="M0-85.3"/>\n</g>\n<g fill="#D80027">\n\t<path d="M144-0.3h-32v70H0v32h112v69h32v-69h112v-32H144V-0.3z"/>\n\t<path d="M0-0.3v15l57,39h23L0-0.3z"/>\n\t<path d="M256-0.3v15l-57,39h-23L256-0.3z"/>\n\t<path d="M0-0.3v15l57,39h23L0-0.3z"/>\n\t<path d="M256-0.3v15l-57,39h-23L256-0.3z"/>\n\t<path d="M0,170.7v-15l57-38h23L0,170.7z"/>\n\t<path d="M256,170.7v-15l-57-38h-23L256,170.7z"/>\n</g>\n<g fill="#2E52B2">\n\t<path d="M0,22.7v31h46L0,22.7z M96-0.3v49l-73-49C23-0.3,96-0.3,96-0.3z"/>\n\t<path d="M256,22.7v31h-46L256,22.7z M160-0.3v49l73-49C233-0.3,160-0.3,160-0.3z"/>\n\t<path d="M0,22.7v31h46L0,22.7z M96-0.3v49l-73-49C23-0.3,96-0.3,96-0.3z"/>\n\t<path d="M256,22.7v31h-46L256,22.7z M160-0.3v49l73-49C233-0.3,160-0.3,160-0.3z"/>\n\t<path d="M0,147.7v-30h46L0,147.7z M96,170.7v-49l-73,49H96z"/>\n\t<path d="M256,147.7v-30h-46L256,147.7z M160,170.7v-49l73,49H160z"/>\n</g>\n<path fill="#5DA51E" stroke="#45602C" stroke-width="4" stroke-miterlimit="10" d="M462.8,91.5h-29.1l25.7-25.7c4.5-4.4,4.5-11.4,0-15.8l-3.4-3.4c-4.4-4.4-11.4-4.4-15.8,0l-25.9,25.9V37.4\n\tc0-6.2-5.1-11.3-11.3-11.3h-4.7c-6.2,0-11.3,5.1-11.3,11.3v31.7l-23.5-23.8c-4.7-4.7-12.2-4.7-16.9,0l-3.6,3.6\n\tc-4.7,4.7-4.7,12.4,0,17.2l25,25.4h-30.6c-6,0-10.9,4.9-10.9,10.9v4.6c0,6,4.9,10.9,10.9,10.9H369l-20.7,20.7\n\tc-4.4,4.4-4.4,11.4,0,15.8l3.4,3.4c4.4,4.4,11.4,4.4,15.8,0l19.6-19.6V167c0,6.1,5.1,11.1,11.3,11.3h4.7c6.2,0,11.3-5.1,11.3-11.3\n\tv-28.3l22.2,22.6c4.7,4.7,12.4,4.7,17.1,0l3.6-3.6c4.7-4.7,4.7-12.4,0-17.2L435.2,118h27.6c5.9,0,10.7-4.9,10.9-10.9v-4.6\n\tC473.7,96.4,468.8,91.5,462.8,91.5z"/>\n<path fill="#5DA51E" d="M0,0"/>\n<path fill="#E2DD24" stroke="#525625" stroke-width="4" stroke-miterlimit="10" d="M439.2,249.1h-79.8c0,0-0.9-13.4-6-21.8c-6.2-10.4-13.9-28.1-1.4-36.7c15.9-10.9,33.7,0.8,48.2,0.8\n\tc11.8,0.1,26.9-14,45-0.8c12.2,8.9,3.9,28.2-1.3,36.7C436.9,238.8,439.2,249.1,439.2,249.1z"/>\n</svg>',"./assets/country-flag-icons/3x2/IQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#CE1126" width="513" height="114"/>\n<rect y="228" width="513" height="114"/>\n<g fill="#547C31">\n\t<path d="M219.2,160.7c-0.1,0-0.2,0-0.2,0l0,0h-29.1c1.5-5.7,6.6-9.9,12.8-9.9v-19.9c-18.3,0-33.1,14.9-33.1,33.1v16.2\n\t\tv0.3H219c0.1,0,0.2,0,0.2,0c1.8,0,3.3,1.5,3.3,3.3v6.6h-66.2v19.9h86.1v-26.5C242.4,171.1,232,160.7,219.2,160.7z"/>\n\t<polygon points="268.8,190.5 268.8,130.9 249,130.9 249,210.4 282.1,210.4 282.1,190.5 \t"/>\n\t<polygon points="335,190.5 335,130.9 315.2,130.9 315.2,190.5 308.6,190.5 308.6,170.7 288.7,170.7 288.7,210.4\n\t\t348.3,210.4 348.3,190.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="512" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="114"/>\n<g fill="#D80027">\n\t<rect y="227.9" width="513" height="114"/>\n\t<path d="M278.8,134.8c0.1,2,8.7,26.2,4.4,39.4c-6.6,20.3-15.8,21.8-19.8,24.5v-64.7l-6.9-4.2l-6.9,4.2v64.7\n\t\tc-4-2.7-12.4-2.4-19.8-24.5c-4.3-12.7,5.7-37.3,5.8-39.2c0,0-9.5,8.1-15.8,24c-5.9,14.8,1.9,49.6,29.5,54.8\n\t\tc2.3,0.4,4.7,5.6,7.2,5.6c2.1,0,4.1-5.2,6-5.5c28.4-4.6,35-41.7,29.9-55.6C287,143.7,278.8,134.8,278.8,134.8z"/>\n</g>\n<g fill="#FFFFFF" opacity="0.5">\n\t<rect x="44.6" y="98.9" width="22.3" height="24.4"/>\n\t<rect y="98.9" width="22.3" height="24.4"/>\n\t<rect x="89.2" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="133.8" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="178.4" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="223" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="267.7" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="312.3" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="356.9" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="401.5" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="446.1" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="490.7" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="44.6" y="216.9" width="22.3" height="25.5"/>\n\t<rect y="216.9" width="22.3" height="25.5"/>\n\t<rect x="89.2" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="133.8" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="178.4" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="223" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="267.7" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="312.3" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="356.9" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="401.5" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="446.1" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="490.7" y="216.9" width="22.3" height="25.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#D80027" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/IT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#FFFFFF" points="341.334,85.33 170.666,85.33 0,85.33 0,426.662 170.666,426.662 341.334,426.662 512,426.662 512,85.33 "/>\n<rect y="85.333" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.333" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/JE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<polygon fill="#D80027" points="301.8,171 513,30.2 513,0 467.7,0 256.5,140.8 45.3,0 0,0 0,30.2 211.2,171 0,311.8 0,342 45.3,342\n\t256.5,201.2 467.7,342 513,342 513,311.8 "/>\n<polygon fill="#FFDA44" points="233.7,44.6 256,50.2 278.3,44.6 282.3,23.7 267.4,30.2 256,14.8 244.6,30.2 229.7,23.7 "/>\n<path fill="#D80027" d="M233.7,44.6c0,0-4,12.9-4,29.9c0,27.9,26.3,41.3,26.3,41.3s26.3-15.5,26.3-41.3c0-15.4-4-29.9-4-29.9\n\ts-8.1-5-22.3-5S233.7,44.6,233.7,44.6z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/JM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<polygon points="215.864,256.006 0,399.911 0,112.089 "/>\n<polygon points="512,112.089 512,399.911 296.136,256.006 "/>\n<polygon fill="#0052B4" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>\n<polygon fill="#FFDA44" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/JO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.339" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.339" width="512" height="113.775"/>\n<rect y="312.89" fill="#6DA544" width="512" height="113.775"/>\n<polygon fill="#D80027" points="256,256.006 0,426.669 0,85.331 "/>\n<polygon fill="#FFFFFF" points="77.913,224.802 85.789,241.271 103.575,237.161 95.61,253.587 109.913,264.93 92.105,268.944 92.154,287.199 77.913,275.778 63.672,287.199 63.722,268.944 45.913,264.93 60.216,253.587 52.251,237.161 70.037,241.271 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/JP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<circle fill="#D80027" cx="256" cy="255.994" r="96"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" width="512" height="90.579"/>\n<rect y="336.089" fill="#496E2D" width="512" height="90.568"/>\n<rect y="198.606" fill="#A2001D" width="512" height="114.799"/>\n<g>\n\t<polygon fill="#FFFFFF" points="323.265,139.803 297.682,127.994 256,222.376 214.318,127.994 188.735,139.803 240.484,255.994 188.735,372.186 214.318,383.994 256,289.613 297.682,383.994 323.265,372.186 271.516,255.994 "/>\n\t<path fill="#FFFFFF" d="M273.376,150.931C263.472,140.115,256,133.898,256,133.898s-7.472,6.216-17.376,17.032v210.127 C248.528,371.873,256,378.091,256,378.091s7.472-6.216,17.376-17.033V150.931z"/>\n</g>\n<g>\n\t<path fill="#A2001D" d="M209.04,191.226v129.535c10.465,18.542,23.274,33.742,32.872,43.818V147.408 C232.313,157.484,219.504,172.683,209.04,191.226z"/>\n\t<path fill="#A2001D" d="M302.96,191.226c-10.465-18.543-23.274-33.742-32.872-43.818V364.58 c9.599-10.077,22.407-25.276,32.872-43.818V191.226z"/>\n</g>\n<path d="M302.96,191.226v129.535c10.594-18.774,18.784-40.973,18.784-64.767S313.554,210.001,302.96,191.226z"/>\n<path d="M209.04,191.226v129.535c-10.594-18.774-18.784-40.973-18.784-64.767S198.446,210.001,209.04,191.226z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 342">\n<g fill="#D80027">\n\t<rect y="0" width="513" height="342"/>\n\t<circle cx="256" cy="170.7" r="170.7"/>\n</g>\n<polygon fill="#FFDA44" points="382.4,170.7 330.8,195 358.3,245 302.2,234.3 295.1,290.9 256,249.2 216.9,290.9 209.8,234.3\n\t153.7,245 181.2,195 129.6,170.7 181.2,146.4 153.7,96.3 209.8,107.1 216.9,50.4 256,92.1 295.1,50.4 302.2,107.1 358.3,96.3\n\t330.8,146.4 "/>\n<circle fill="#D80027" cx="257.4" cy="170.7" r="71.6"/>\n<g fill="#FFDA44">\n\t<path d="M214.2,170.7c-2.1,0-4.1,0.1-6.2,0.3c0.1,12,4.4,22.9,11.6,31.5c3.8-10.3,9.5-19.6,16.7-27.7\n\t\tC229.4,172.1,222,170.7,214.2,170.7z"/>\n\t<path d="M240.8,217.2c5.2,1.9,10.8,2.9,16.6,2.9c5.8,0,11.4-1,16.6-2.9c-2.8-11.1-8.7-21-16.6-28.8\n\t\tC249.5,196.2,243.6,206.1,240.8,217.2z"/>\n\t<path d="M300.2,146c-8.5-14.8-24.5-24.7-42.8-24.7c-18.3,0-34.2,9.9-42.8,24.7c15.6,0.1,30.2,4.3,42.8,11.6\n\t\tC270,150.3,284.6,146,300.2,146z"/>\n\t<path d="M278.5,174.8c7.2,8,12.9,17.4,16.7,27.7c7.2-8.5,11.5-19.5,11.6-31.5c-2-0.2-4.1-0.3-6.2-0.3\n\t\tC292.9,170.7,285.4,172.1,278.5,174.8z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#0052B4" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</g>\n<polygon fill="#FFFFFF" points="303.49,281.971 303.49,264.162 291.617,264.162 291.617,240.417 279.745,228.545 267.873,240.417 267.873,216.673 256,204.8 244.127,216.673 244.127,240.417 232.255,228.545 220.383,240.417 220.383,264.162 208.51,264.162 208.51,281.971 196.638,281.971 196.638,299.779 315.362,299.779 315.362,281.971 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<path fill="#CE1126" d="M0,0h450v300H0V0z"/>\n<g fill="#FCD116">\n\t<circle cx="227.6" cy="161.2" r="56.2"/>\n\t<polygon points="254.1,73.4 230.4,99.4 259,105.9 \t"/>\n\t<polygon points="202.6,73.6 197.8,106.7 226.3,98.7 \t"/>\n\t<polygon points="296.9,100.3 262.2,108.8 282.3,132.5 \t"/>\n\t<polygon points="158.6,98.5 174.1,131.2 194.3,108.5 \t"/>\n\t<polygon points="317.6,143.8 283.2,133.9 288.8,163.4 \t"/>\n\t<polygon points="135.6,141.2 167.5,161 172.7,133.3 \t"/>\n</g>\n<path fill="#003F87" d="M0,175h450v125H0V175z"/>\n<path fill="#FFFFFF" d="M0,267c15,0,30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13\n\ts30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13\n\ts-30-13-45-13s-30,13-45,13s-30-13-45-13V267z M0,224c15,0,30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13\n\ts30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13\n\ts-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13V224z M0,181c15,0,30,13,45,13s30-13,45-13\n\ts30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13\n\ts-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13V181z"/>\n<path fill-rule="evenodd" clip-rule="evenodd" fill="#FCD116" d="M183.2,48.3l-1.1-5.3l22.4-3.7c0,0-30.1-7.1-40-10.7c-14.3-5.1-16.3-12.1-16.3-12.1s44.7,11,64.8,11\n\tc4.3,0,12.8,10.7,12.8,10.7s14.8-14.9,21.9-15.4c32.1-2.3,66.6-6.4,66.6-6.4s-10,6.7-16,8.5c-16.2,4.9-50.6,11.7-50.6,11.7l-4.8,7.5\n\tH277l-14.4,4.3l7.4,6.9c0,0-7.8-4.1-18.1-2.1c-7.1,1.3-15.4,6-22.9,8c-18.7,4.8-29.9-12.8-29.9-12.8S183.2,48.3,183.2,48.3z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="85.337"/>\n<rect y="170.663" fill="#FFFFFF" width="512" height="85.337"/>\n<rect y="256" fill="#D80027" width="512" height="85.337"/>\n<polygon fill="#6DA544" points="256,256.006 0,426.668 0,85.331 "/>\n<g>\n\t<path fill="#FFFFFF" d="M68.638,256c0-24.865,17.476-45.638,40.812-50.734c-3.587-0.784-7.308-1.208-11.13-1.208 c-28.688,0-51.942,23.255-51.942,51.942s23.255,51.942,51.942,51.942c3.822,0,7.543-0.425,11.13-1.208 C86.113,301.638,68.638,280.865,68.638,256z"/>\n\t<polygon fill="#FFFFFF" points="108.877,211.478 111.639,219.981 120.579,219.981 113.347,225.237 116.109,233.739 108.877,228.484 101.643,233.739 104.407,225.237 97.173,219.981 106.113,219.981 "/>\n\t<polygon fill="#FFFFFF" points="108.877,233.739 111.639,242.242 120.579,242.242 113.347,247.497 116.109,256 108.877,250.745 101.643,256 104.407,247.497 97.173,242.242 106.113,242.242 "/>\n\t<polygon fill="#FFFFFF" points="108.877,256 111.639,264.503 120.579,264.503 113.347,269.758 116.109,278.261 108.877,273.006 101.643,278.261 104.407,269.758 97.173,264.503 106.113,264.503 "/>\n\t<polygon fill="#FFFFFF" points="108.877,278.261 111.639,286.763 120.579,286.763 113.347,292.019 116.109,300.522 108.877,295.267 101.643,300.522 104.407,292.019 97.173,286.763 106.113,286.763 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<polyline fill="#6DA544" points="512,0 0,0 0,342 "/>\n<polygon fill="#FFDA44" points="307.7,0 0,194.5 0,342 206.9,342 513,148.5 513,0 "/>\n<polygon fill="#000000" points="513,0 385.2,0 0,249.4 0,341 126.2,342 513,91.6 "/>\n<g fill="#FFFFFF">\n\t<polygon points="141.1,187 172.3,211 204.6,188.8 191.5,225.8 222.6,249.7 183.4,248.6 170.2,285.6 159.1,248\n\t\t119.9,246.9 152.2,224.7 \t"/>\n\t<polygon points="310.6,70.8 341.8,94.7 374.1,72.5 361,109.5 392.1,133.4 352.9,132.3 339.7,169.3 328.6,131.7\n\t\t289.4,130.6 321.8,108.4 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#91DC5A" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#0052B4" width="512" height="57.188"/>\n\t<rect y="369.48" fill="#0052B4" width="512" height="57.177"/>\n</g>\n<rect y="165.215" fill="#D80027" width="512" height="181.582"/>\n<circle fill="#FFFFFF" cx="190.33" cy="255.994" r="65.668"/>\n<polygon fill="#D80027" points="190.332,190.332 205.066,235.678 252.823,235.678 214.173,263.706 229.022,309.187 190.332,281.027 151.701,309.134 166.491,263.706 127.875,235.678 175.597,235.678 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<rect fill="#FFFFFF" width="900" height="600"/>\n<g transform="rotate(-56.3099325)">\n\t<g stroke="#000000" stroke-width="25">\n\t\t<path d="M-75,228.3H75 M-75,265.8l150,0 M-75,303.3H75"/>\n\t\t<path d="M-75,778.3H75 M-75,815.8H75 M-75,853.3H75"/>\n\t</g>\n\t<path stroke="#FFFFFF" stroke-width="12.5" d="M0,753.3l0,125"/>\n\t<circle fill="#ca163a" cx="0" cy="540.8" r="150"/>\n\t<path fill="#0e4896" d="M0,390.8c-41.4,0-75,33.6-75,75s33.6,75,75,75s75,33.6,75,75c0,41.4-33.6,75-75,75c-82.8,0-150-67.2-150-150\n\t\tS-82.8,390.8,0,390.8z"/>\n</g>\n<g transform="rotate(-123.6900675)">\n\t<g stroke="#000000" stroke-width="25">\n\t\t<path d="M-574.2-104.5l150,0 M-574.2-67l150,0 M-574.2-29.5l150,0"/>\n\t\t<path d="M-574.2,445.5h150 M-574.2,483h150 M-574.2,520.5h150"/>\n\t</g>\n\t<path stroke="#FFFFFF" stroke-width="12.5" d="M-499.2-85.7v37.5 M-499.2,420.5v43.8 M-499.2,501.8l0,37.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<polygon points="166.957,312.889 0,426.663 0,85.337 166.957,199.111 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<circle fill="#6DA544" cx="384" cy="181.79" r="29.682"/>\n<rect x="332.054" y="174.377" fill="#D80027" width="103.88" height="44.522"/>\n<path fill="#496E2D" d="M435.942,255.997v-0.001V255.997z"/>\n<path fill="#FFDA44" d="M332.058,285.678v29.682h15.616c9.364,9.176,22.18,14.84,36.326,14.84 c14.147,0,26.962-5.664,36.326-14.84h0.776h14.84v-29.682H332.058z"/>\n<path fill="#338AF3" d="M332.058,211.475v44.522c0,39.759,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942v-44.522 H332.058z"/>\n<g>\n\t<path fill="#F3F3F3" d="M383.997,235.256c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,247.128,396.984,235.256,383.997,235.256z"/>\n\t<path fill="#F3F3F3" d="M383.997,193.666c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,205.539,396.984,193.666,383.997,193.666z"/>\n</g>\n<polygon fill="#FFFFFF" points="256,85.334 256,107.951 209.931,138.66 256,138.66 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>\n<g>\n\t<polygon fill="#D80027" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>\n\t<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n\t<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n\t<path fill="#36B6CC" d="M0,0h513v342H0V0z"/>\n\t<circle fill="#FFD400" cx="256.5" cy="170.9" r="68.4"/>\n\t<path fill="#FFD400" d="M256.5,251.5l-27.9,41.7l-7.1-49.7L178.3,269l15.2-47.8l-50,4.2l34.4-36.5L131,170.9l46.8-18l-34.4-36.5\n\t\tl50,4.2l-15.2-47.8l43.2,25.4l7.1-49.7l27.9,41.7l27.9-41.7l7.1,49.7l43.2-25.4l-15.2,47.8l50-4.2L335.1,153l46.8,17.9l-46.8,18\n\t\tl34.4,36.5l-50-4.2l15.2,47.8l-43.2-25.4l-7.1,49.7C284.4,293.2,256.5,251.5,256.5,251.5z M256.5,250.7c44.1,0,79.9-35.8,79.9-79.9\n\t\tS300.6,91,256.5,91s-79.9,35.8-79.9,79.9S212.4,250.7,256.5,250.7z M22.8,28.3c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7\n\t\tv11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,39.7,22.8,28.3,22.8,28.3z\n\t\t M22.8,74c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V74z M22.8,119.6c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3\n\t\tc0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,130.9,22.8,119.6,22.8,119.6z\n\t\t M22.8,165.2c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,176.5,22.8,165.2,22.8,165.2z M22.8,210.9c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V210.9z\n\t\t M22.8,256.5c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V256.5z M22.8,302.1c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3\n\t\tc0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V302.1z M45.6,279.3\n\t\tc0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6\n\t\tc0,0,0-0.1,0-0.1V279.3z M45.6,233.7c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7V245c0.1,3.1-2.4,5.7-5.6,5.7\n\t\tc-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V233.7z M45.6,188c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V188z\n\t\t M45.6,142.4c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C45.6,153.7,45.6,142.4,45.6,142.4z M45.6,96.8c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1\n\t\tC45.6,108.1,45.6,96.8,45.6,96.8z M45.6,51.2c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7\n\t\tc-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V51.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0.1" width="513" height="90.7"/>\n\t<rect x="0" y="251.3" width="513" height="90.7"/>\n</g>\n<circle fill="#FFFFFF" cx="256.5" cy="171" r="65.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0.2" width="513" height="90.7"/>\n\t<rect x="0.5" y="251.3" width="512.5" height="90.7"/>\n</g>\n<polygon fill="#6DA544" points="290.3,193.5 256,130.7 221.7,193.5 247.4,193.5 247.4,210.7 264.6,210.7 264.6,193.5 "/>\n\t<path fill="#14AF5A" d="M241.3,213.1c4.4-4.4,4.4-11.6-0.1-16c0,0,0,0,0,0l4.7,4.7c-5.2-4.7-12.2-6.6-19.1-5.3l-23.5,5.9\n\t\tc-6.1,1.5-6.8-0.4-1.8-4.2l27.1-20.3c5.1-3.8,4.2-6.9-2.3-6.9h-11c-6.4,0-7-2.3-1.5-5.1l25.3-12.7c5.6-2.8,5.1-5.1-1.5-5.1h-11\n\t\tc-6.4,0-7.4-3.1-2.3-6.9l27.1-20.3c5.6-3.8,12.9-3.8,18.5,0l27.1,20.3c5.1,3.8,4.2,6.9-2.3,6.9h-11c-6.4,0-7,2.3-1.5,5.1l25.3,12.7\n\t\tc5.6,2.8,5.1,5.1-1.5,5.1h-11c-6.4,0-7.4,3.1-2.3,6.9l27.1,20.3c5.1,3.8,4.4,5.7-1.8,4.2l-23.5-5.9c-6.8-1.3-13.9,0.6-19.1,5.3\n\t\tl4.7-4.7c-4.4,4.4-4.5,11.5-0.1,16c0,0,0,0,0,0l6.8,6.8c4.4,4.4,3.1,8-3.3,8h-45.8c-6.2,0-7.7-3.6-3.3-8\n\t\tC234.5,220,241.3,213.1,241.3,213.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#55B2FF" width="513" height="342"/>\n<polygon fill="#F3F3F3" points="148.5,298.1 364.5,298.1 256.5,43.9 "/>\n<polygon fill="#333333" points="186,272.7 256.5,112.4 327,272.7 "/>\n<polygon fill="#FFDA44" points="148.5,298.1 364.5,298.1 256.5,196.4 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/LI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="513" height="171"/>\n<path fill="#FFDA44" d="M149.3,98.1c0-14-11.3-25.3-25.3-25.3c-6.5,0-12.4,2.4-16.9,6.4V64.4h8.4V47.5h-8.4v-8.4H90.3v8.4h-8.4v16.9\n\th8.4v14.9c-4.5-4-10.4-6.4-16.9-6.4c-14,0-25.3,11.3-25.3,25.3c0,7.5,3.3,14.2,8.4,18.8v14.9h84.3v-14.9\n\tC146.1,112.3,149.3,105.5,149.3,98.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<path fill="#FFDA44" d="M0,85.329v341.337h512V85.329H0z M489.739,404.405h-267.13V107.59h267.13V404.405z"/>\n<rect x="222.609" y="107.595" fill="#A2001D" width="267.13" height="296.815"/>\n<rect x="22.261" y="107.595" fill="#D80027" width="200.348" height="296.815"/>\n<rect x="200.348" y="85.334" fill="#FFDA44" width="22.261" height="341.337"/>\n<rect x="22.261" y="107.595" fill="#6DA544" width="89.043" height="296.815"/>\n<rect x="111.304" y="107.595" fill="#FF9811" width="89.043" height="296.815"/>\n<g>\n\t<path fill="#FFDA44" d="M358.675,250.438v-44.522c0-7.424-11.13-14.848-11.13-14.848s-11.13,7.424-11.13,14.848h-44.522 v44.522h22.261v22.261c0,4.875,0.979,9.539,2.76,13.768l-10.184,8.493h-29.674V157.677c-12.299,0-22.261,9.973-22.261,22.261 v96.467c0,6.589,2.861,12.511,7.413,16.584v35.361h14.848v-18.554h66.783v29.685H328.99v14.837h29.685v-29.685l13.601-14.837 h44.288v29.685h-14.848v14.837h29.685v-29.685l13.601-14.837l12.552-40.259l-11.038-19.1h-38.945 C393.402,250.315,366.934,250.527,358.675,250.438z"/>\n\t<polygon fill="#FFDA44" points="370.551,211.844 370.551,237.073 442.064,237.073 442.064,250.438 446.516,250.438 446.516,232.621 375.003,232.621 375.003,216.296 450.968,216.296 450.968,211.844 "/>\n\t<rect x="222.609" y="107.595" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="467.478" y="107.595" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="222.609" y="382.138" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="467.478" y="382.138" fill="#FFDA44" width="22.261" height="22.261"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/LR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="91.476" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="91.476" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="153.539" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="215.603" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="277.666" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="339.729" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="401.793" fill="#D80027" width="512" height="31.031"/>\n</g>\n<rect y="79.177" fill="#0052B4" width="256" height="167.457"/>\n<polygon fill="#FFFFFF" points="127.999,118.382 139.049,152.392 174.813,152.392 145.881,173.413 156.931,207.425 127.999,186.404 99.066,207.425 110.119,173.413 81.187,152.392 116.949,152.392 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/LS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="513" height="114"/>\n<rect y="227.6" fill="#6DA544" width="513" height="114"/>\n<path fill="#000000" d="M245.2,171l7.7-23.1c2-5.9,5.1-6,7.1,0l7.7,23.1l19.4,29.1c1.7,2.6,1.3,6.3-1.2,8c0,0-6.9,8-29.5,8\n\ts-29.5-8-29.5-8c-2.4-2-2.9-5.4-1.2-8L245.2,171z"/>\n<path fill="#000000" d="M256.5,171c-12.5,0-22.6-10.1-22.6-22.6c0-12.5,10.1-22.6,22.6-22.6s22.6,10.1,22.6,22.6C279.1,160.9,268.9,171,256.5,171z\n\t M256.5,171c6.2,0,11.3-16.3,11.3-22.6c0-6.2-5.1-11.3-11.3-11.3c-6.2,0-11.3,5.1-11.3,11.3C245.2,154.7,250.2,171,256.5,171z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#A2001D">\n\t<rect y="0" class="st1" width="513" height="127.6"/>\n\t<rect x="0" y="214.4" class="st1" width="513" height="127.6"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/LY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#496E2D" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#FFFFFF" points="281.424,236.026 290.386,248.376 304.899,243.67 295.924,256.009 304.885,268.358 290.376,263.634 281.4,275.974 281.41,260.716 266.9,255.991 281.414,251.285 "/>\n\t<path fill="#FFFFFF" d="M256.965,286.868c-17.048,0-30.868-13.821-30.868-30.868s13.821-30.868,30.868-30.868 c5.316,0,10.317,1.345,14.684,3.71c-6.851-6.698-16.218-10.833-26.556-10.833c-20.982,0-37.992,17.01-37.992,37.992 s17.01,37.992,37.992,37.992c10.338,0,19.706-4.135,26.556-10.833C267.283,285.525,262.281,286.868,256.965,286.868z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#D80027" points="0,85.337 0,256 0,426.663 512,426.663 512,256 512,85.337 "/>\n<path fill="#20661b" d="M352,226.484h-73.337L256,156.738l-22.663,69.748H160l59.331,43.107l-22.663,69.749L256,296.232 l59.332,43.107l-22.663-69.749L352,226.484z M235.937,264.195l7.663-23.585h24.8l7.663,23.585l0,0v0.001L256,278.772 L235.937,264.195L235.937,264.195L235.937,264.195z M263.81,226.484h-15.619L256,202.447L263.81,226.484z M288.079,255.466 l-4.827-14.856h25.274L288.079,255.466z M228.748,240.61l-4.827,14.856l-20.447-14.856H228.748z M223.537,302.358l7.81-24.036 l12.636,9.181L223.537,302.358z M268.016,287.502l12.636-9.181l7.81,24.036L268.016,287.502z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.34" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,85.334 512,252.024 0,256.175 0,85.334 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFDA44" width="513" height="342"/>\n<rect x="342" y="0" fill="#D80027" width="171" height="342"/>\n<rect y="0" fill="#0052B4" width="171" height="342"/>\n<path fill="#AF7F59" d="M206.2,129.1h33.2L256,79.3l16.6,49.8h33.2v99.6L256,262l-49.8-33.2V129.1z M239.4,162.4v49.8h33.2v-49.8H239.4\n\tz"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ME.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#E6BE53" width="513" height="342"/>\n<rect x="20" y="20" fill="#E01D24" width="473" height="302"/>\n\t<path fill="#E6BE53" d="M248.5,112.9c4.4,4.4,11.6,4.4,16,0l-4.7,4.7l22.7-22.7c4.9-4.5,12.1-5.6,18.2-2.8l2.1,1\n\t\tc5.7,2.9,6.7,8.7,2.3,13.1l4.7-4.7L287,124.3c-4.5,4.9-5.6,12.1-2.8,18.2l1,2.1c2.9,5.7,5.1,15.4,5.1,21.6v-11.3\n\t\tc0,6.2,4.4,9.1,10.2,6.2l2.1-1c5.7-2.9,6.7-8.7,2.3-13.1l4.7,4.7c-4.4-4.4-4.4-11.6,0-16c0,0,0,0,0,0l-4.7,4.7\n\t\tc5.2-5.5,9.6-11.6,13.1-18.2l1-2.1c2.9-5.7,6.3-15.1,7.9-21.2l5.8-23.3c1.5-6,5.9-6.8,9.6-1.8l20.2,26.9c3.8,5.1,6.9,14,6.9,20.6\n\t\tv22.4c0,6.3-2.2,15.8-5.1,21.7l-1,2.1c-3.5,6.6-7.9,12.7-13.1,18.2l-6.8,6.8c-5.4,5.2-11.5,9.6-18.2,13.1l-2.1,1\n\t\tc-5.7,2.9-15.5,5.1-21.6,5.1c-6.2,0-6.9,2.2-1.1,5.1l2.1,1c5.7,2.9,13.8,8.7,18.2,13.1l-4.7-4.7c4.4,4.4,11.6,4.4,16,0l-4.7,4.7\n\t\tc4.4-4.4,11.6-4.4,16,0c0,0,0,0,0,0L339,226c4.6,4.9,5.7,12.1,2.9,18.2l-1,2.1c-2.9,5.7-10.4,10.2-16.4,10.2\n\t\tc-7.5-0.3-14.8-2-21.6-5.1l-2.1-1c-6.5-3.6-11.8-8.9-15.4-15.4l-1-2.1c-2.9-5.7-8.7-6.7-13.1-2.3l4.7-4.7\n\t\tc-4.4,4.7-5.2,11.8-1.8,17.3l10.3,15.4c3.4,5.1,2,12.1-3.1,15.5l-15.4,10.3c-5.7,3.4-12.8,3.4-18.6,0l-15.4-10.3\n\t\tc-5.1-3.4-6.5-10.3-3.1-15.5l10.3-15.4c3.4-5.5,2.6-12.6-1.8-17.3l4.7,4.7c-4.4-4.4-10.2-3.6-13.1,2.3l-1,2.1\n\t\tc-2.9,5.7-9.5,12.4-15.4,15.4l-2.1,1c-5.7,2.9-15.5,5.1-21.6,5.1c-6.9-0.3-13.1-4.2-16.4-10.2l-1-2.1c-2.8-6.1-1.6-13.3,2.9-18.2\n\t\tl-4.7,4.7c4.4-4.4,11.6-4.4,16,0c0,0,0,0,0,0l-4.7-4.7c4.4,4.4,11.6,4.4,16,0l-4.7,4.7c5.5-5.2,11.6-9.6,18.2-13.1l2.1-1\n\t\tc5.7-2.9,5-5.1-1.1-5.1c-7.5-0.3-14.8-2-21.6-5.1l-2.1-1c-6.6-3.5-12.7-7.9-18.2-13.1l-6.8-6.8c-5.2-5.4-9.6-11.5-13.1-18.2l-1-2.1\n\t\tc-3.1-6.8-4.9-14.2-5.1-21.7V121c0-6.3,3.1-15.6,6.9-20.6l20.2-26.9c3.8-5.1,8.1-4.3,9.6,1.8l5.8,23.3c2,7.3,4.6,14.4,7.9,21.2\n\t\tl1,2.1c2.9,5.7,8.7,13.8,13.1,18.2l-4.7-4.7c4.4,4.4,4.4,11.6,0,16c0,0,0,0,0,0l4.7-4.7c-4.4,4.4-3.6,10.2,2.3,13.1l2.1,1\n\t\tc5.7,2.9,10.2,0,10.2-6.2v11.3c0-6.2,2.2-15.7,5.1-21.6l1-2.1c2.8-6.1,1.7-13.2-2.8-18.2l-22.7-22.7l4.7,4.7\n\t\tc-4.4-4.4-3.6-10.2,2.3-13.1l2.1-1c6.1-2.8,13.2-1.7,18.2,2.8l22.7,22.7L248.5,112.9z M230.5,72.2c-4.4-4.4-3.2-9.5,2.8-11.5\n\t\tl12.4-4.2c6-2,15.5-2,21.5,0l12.4,4.2c6,2,7.2,7.1,2.8,11.5l-6.8,6.8c-5.3,4.7-12.1,7.5-19.2,7.9c-6.2,0-14.8-3.5-19.2-7.9\n\t\tC237.3,79,230.5,72.2,230.5,72.2z"/>\n\t<path fill="#215F90" d="M233.9,200.2c0,6.2,1.7,6.4,4.2,0.5c0,0,7.1-23.2,18.4-23.2c11.3,0,18.6,23.6,18.6,23.6c2.2,5.7,4,5.3,4-1.1\n\t\tv-11.2c0-18.7-10.1-33.9-22.6-33.9c-12.5,0-22.6,15.2-22.6,33.9V200.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MF.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 108 72">\n<path d="M0,0H108V72H0z" fill="#003787"/>\n<path d="M0,0H108L60,48V72H48V48z" fill="#fff"/>\n<circle cx="54" cy="30" r="8" fill="#f9d90f"/>\n<path d="M44,30H64L54,48z" fill="#fff"/>\n<path d="M54,48 38,33H70z" fill="#cf142b"/>\n</svg>',"./assets/country-flag-icons/3x2/MG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<path fill="#6DA544" d="M512,426.666V85.329c-238.65,0-512,0-512,0v341.337L512,426.666L512,426.666z"/>\n<path fill="#D80027" d="M512,85.331H0v170.666c0,0,273.35,0,512,0V85.331z"/>\n<rect y="85.334" fill="#FFFFFF" width="181.793" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#1E509C" width="513" height="342"/>\n<path fill="#FFFFFF" d="M513,176.1V81.3L0,342L513,176.1z"/>\n<path fill="#F18D36" d="M513,0v81.3L0,342L513,0z"/>\n<polygon fill="#FFFFFF" points="126.7,99.3 118.9,45.2 111.2,99.3 90.4,75.6 101.1,107.2 69.6,96.5 93.2,117.3 39.1,125 93.2,132.7\n\t69.6,153.5 101.1,142.8 90.4,174.4 111.2,150.7 118.9,204.8 126.7,150.7 147.4,174.4 136.8,142.8 168.3,153.5 144.7,132.7\n\t198.7,125 144.7,117.3 168.3,96.5 136.8,107.2 147.4,75.6 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#FFDA44" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#D80027" points="383.875,426.662 256,252.286 282.827,426.662 "/>\n\t<polygon fill="#D80027" points="133.565,85.33 256,252.286 230.314,85.33 "/>\n\t<polygon fill="#D80027" points="229.171,426.662 256,252.286 128.124,426.662 "/>\n\t<polygon fill="#D80027" points="0,85.33 0,212.9 256,252.286 28.333,85.33 "/>\n\t<polygon fill="#D80027" points="0,426.662 18.212,426.662 256,252.286 0,291.67 "/>\n\t<polygon fill="#D80027" points="256,252.286 512,212.9 512,85.33 483.669,85.33 "/>\n\t<polygon fill="#D80027" points="281.686,85.33 256,252.286 378.434,85.33 "/>\n\t<polygon fill="#D80027" points="512,426.662 512,291.671 256,252.286 493.787,426.662 "/>\n\t<circle fill="#D80027" cx="256" cy="252.29" r="59.359"/>\n</g>\n<circle fill="#FFDA44" cx="256" cy="252.29" r="44.522"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ML.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<path fill="#FFFFFF" d="M384,227.261h-97.783L256,134.265l-30.217,92.997H128l79.108,57.475l-30.217,92.998L256,320.925 l79.108,56.81l-30.217-92.998L384,227.261z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#095FAD" width="513" height="342"/>\n<g>\n\t<rect x="342" y="0" fill="#BE1229" width="171" height="342"/>\n\t<rect y="0" fill="#BE1229" width="171" height="342"/>\n</g>\n<g fill="#FFDA44">\n\t<rect x="108.3" y="166.3" width="14.8" height="74.2"/>\n\t<rect x="48.9" y="166.3" width="14.8" height="74.2"/>\n\t<circle cx="86" cy="203.4" r="14.8"/>\n\t<rect x="71.2" y="225.7" width="29.7" height="14.8"/>\n\t<rect x="71.2" y="166.3" width="29.7" height="14.8"/>\n\t<circle cx="86" cy="144" r="14.8"/>\n\t<polygon points="76.3,123.9 95.8,123.9 86,108.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#00745a" width="512" height="341.337"/>\n<path fill="#FFFFFF" d="M285.682,248.878c-4.19,0-8.166,0.836-11.861,2.164c2.023-4.509,3.379-9.527,3.379-14.885 c0-21.201-21.201-37.101-21.201-37.101s-21.201,15.901-21.201,37.101c0,5.357,1.356,10.375,3.379,14.885 c-3.693-1.328-7.671-2.164-11.861-2.164c-21.201,0-37.101,21.201-37.101,21.201s15.901,21.201,37.101,21.201 c12.429,0,23.031-7.286,29.682-13.315c6.65,6.03,17.251,13.315,29.682,13.315c21.201,0,37.101-21.201,37.101-21.201 S306.882,248.878,285.682,248.878z"/>\n<g>\n\t<polygon fill="#FFDA44" points="256,152.111 260.38,165.587 274.551,165.587 263.087,173.919 267.463,187.395 256,179.065 244.537,187.395 248.913,173.919 237.449,165.587 251.62,165.587 "/>\n\t<polygon fill="#FFDA44" points="202.112,175.683 210.537,183.268 220.355,177.601 215.745,187.956 224.168,195.544 212.894,194.359 208.283,204.714 205.925,193.626 194.65,192.441 204.468,186.772 "/>\n\t<polygon fill="#FFDA44" points="162.662,215.132 173.752,217.49 179.42,207.672 180.606,218.946 191.695,221.304 181.338,225.914 182.524,237.188 174.937,228.765 164.58,233.375 170.249,223.557 "/>\n\t<polygon fill="#FFDA44" points="309.889,175.683 301.464,183.268 291.646,177.601 296.257,187.956 287.832,195.544 299.107,194.359 303.717,204.714 306.076,193.626 317.351,192.441 307.533,186.772 "/>\n\t<polygon fill="#FFDA44" points="349.338,215.132 338.249,217.49 332.58,207.672 331.394,218.946 320.306,221.304 330.663,225.914 329.478,237.188 337.064,228.765 347.421,233.375 341.752,223.557 "/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M256,350.642c16.84,0,32.363-5.619,44.816-15.073h-89.63 C223.637,345.023,239.16,350.642,256,350.642z"/>\n\t<path fill="#FFFFFF" d="M187.977,306.12c2.355,5.39,5.341,10.44,8.85,15.073h118.345c3.508-4.632,6.495-9.682,8.85-15.073 H187.977z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MP.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 500">\n\t<path fill="#0071BC" d="M0 0h750v500H0V0z"/>\n\t<g fill="#FFF" stroke="#000" stroke-width="1.9">\n\t\t<circle cx="375" cy="245" r="225" stroke="#000000" fill="#ffffff"/>\n\t\t<circle cx="375" cy="245" r="165" stroke="#000000" fill="#0071BC"/>\n\t</g>\n\t<g stroke="#000">\n\t\t<path fill="#8C8A8C" stroke-width="1.9" d="M444.7,450c0.7,11-7.8,20-18.8,20H323.6c-11,0-19.5-9-19-20L321.3,125c0.6-11,10-20,21-20h61.4\n\t\t\tc11,0,20.5,9,21.2,20L444.7,450z"/>\n\t\t<path fill="#FFF" stroke-width="2" stroke-linejoin="round" d="M373 114l30 93h97l-78 56 29 92-78-56-78 57 30-93-79-57h97l30-92z"/>\n\t</g>\n</svg>',"./assets/country-flag-icons/3x2/MQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<g fill="#ffffff">\n<polygon points="512,148.4 512,192.9 278.3,192.9 278.3,341.3 233.7,341.3 233.7,192.9 0,192.9 0,148.4 233.7,148.4\n\t233.7,0 278.3,0 278.3,148.4 "/>\n<path d="M101,36.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL101,36.1L101,36.1z"/>\n<path d="M385,36.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL385,36.1L385,36.1z"/>\n<path d="M379.6,235.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8\n\tc-1.3,1,0.7-0.2-7.4,4.4c-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2\n\tc0.4,0.2-0.3-1-0.1-1.7c-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6\n\tc18.2,2.4,34.1-3.6,35.7-18.4c1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3\n\tc-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2c0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1\n\tc4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7c-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9\n\tc15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2c-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3\n\tc-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7c4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4\n\tc-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7s3.4,6.5,7,6.3L379.6,235.1L379.6,235.1z"/>\n<path d="M101,235.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8s4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL101,235.1L101,235.1z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<g>\n\t<path fill="#FFDA44" d="M256,298.851c-45.956,0-84.348-32.298-93.767-75.429c-1.448,6.63-2.233,13.507-2.233,20.572 c0,53.02,42.979,96,96,96s96-42.98,96-96c0-7.066-0.785-13.942-2.233-20.572C340.348,266.553,301.956,298.851,256,298.851z"/>\n\t<polygon fill="#FFDA44" points="255.999,171.994 264.934,199.496 293.852,199.496 270.458,216.492 279.394,243.995 255.999,226.997 232.605,243.995 241.542,216.492 218.148,199.496 247.063,199.496 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#1B4991" width="513" height="342"/>\n<path fill="#00A2B8" stroke="#FFFFFF" stroke-width="3" d="M318.2,106.7v106.5c0,51.9,67.8,67.8,67.8,67.8s67.8-15.9,67.8-67.8V106.7H318.2z"/>\n<path fill="#A35023" d="M319.7,212.7c0,50.8,66.3,66.3,66.3,66.3s66.3-15.6,66.3-66.3H319.7L319.7,212.7z"/>\n<polygon points="415.1,155.1 395.7,155.1 395.7,135.7 376.3,135.7 376.3,155.1 357,155.1 357,174.5 376.3,174.5 376.3,232.6\n\t395.7,232.6 395.7,174.5 415.1,174.5 "/>\n<polygon fill="#FFFFFF" points="256,0 256,30.6 210.8,55.7 256,55.7 256,115 196.9,115 256,147.8 256,170.7 229.3,170.7 155.8,129.8\n\t155.8,170.7 100.2,170.7 100.2,122.1 12.7,170.7 0,170.7 0,140.1 45.2,115 0,115 0,55.7 59.1,55.7 0,22.8 0,0 26.7,0 100.2,40.8\n\t100.2,0 155.8,0 155.8,48.6 243.3,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t144,69.3 "/>\n<polygon fill="#0052B4" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#FFFFFF" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#D80027" points="155.8,115 256,170.7 256,154.9 184.2,115 \t"/>\n<polygon fill="#D80027" points="71.8,115 0,154.9 0,170.7 0,170.7 100.2,115 \t"/>\n<polygon fill="#0052B4" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#FFFFFF" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#D80027" points="100.2,55.6 0,0 0,15.7 71.8,55.6 \t"/>\n<polygon fill="#D80027" points="184.2,55.6 256,15.7 256,0 256,0 155.8,55.6 \t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect x="256" y="0" fill="#C31B28" width="256.5" height="342"/>\n<polygon fill="#ACABB1" stroke="#C31B28" stroke-width="2" points="101.2,68.2 101.2,33 66,33 66,68.2 30.8,68.2 30.8,103.4 66,103.4 66,138.6 101.2,138.6 101.2,103.4\n\t136.4,103.4 136.4,68.2 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#f7ce00" width="512" height="341.326"/>\n<rect y="85.331" fill="#e32737" width="512" height="85.337"/>\n<rect y="170.657" fill="#191f6a" width="512" height="85.337"/>\n<rect y="341.331" fill="#00a04e" width="512" height="85.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MV.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#d01920" width="512" height="341.333"/>\n<rect x="144.696" y="174.375" fill="#017c3b" width="222.609" height="163.25"/>\n<path fill="#FFFFFF" d="M283.484,304.226c-26.637,0-48.232-21.594-48.232-48.232s21.594-48.232,48.232-48.232 c8.306,0,16.12,2.1,22.943,5.797c-10.703-10.467-25.341-16.927-41.494-16.927c-32.784,0-59.362,26.577-59.362,59.362 s26.578,59.362,59.362,59.362c16.154,0,30.791-6.461,41.494-16.927C299.605,302.127,291.791,304.226,283.484,304.226z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 342">\n<rect y="0" fill="#272727" width="512" height="114"/>\n<rect y="114" fill="#e40112" width="512" height="114"/>\n<rect y="228" fill="#07893f" width="512" height="114"/>\n<circle fill="#e40112" cx="256" cy="125" r="95"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<polygon fill="#dc2339" points="342,0 171,0 0,0 0,341.3 171,341.3 342,341.3 513,341.3 513,0 "/>\n<rect y="0" fill="#11865d" width="171" height="342"/>\n<rect x="171" y="0" fill="#FFFFFF" width="171" height="342"/>\n<path fill="#8C9157" d="M195.8,171.2c0,21.6,11.5,41.7,30.3,52.5c5.8,3.4,13.2,1.4,16.6-4.4c3.4-5.8,1.4-13.2-4.4-16.6\n\tc-11.3-6.5-18.2-18.5-18.2-31.5c0-6.7-5.4-12.1-12.1-12.1C201.3,159.1,195.8,164.5,195.8,171.2z M289.2,222.3\n\tc17.5-11.1,28-30.4,28-51.1c0-6.7-5.4-12.1-12.1-12.1s-12.1,5.4-12.1,12.1c0,12.4-6.3,24-16.8,30.7c-5.7,3.5-7.5,10.9-4.1,16.7\n\ts10.9,7.5,16.7,4.1C288.8,222.5,289,222.4,289.2,222.3z"/>\n<ellipse fill="#C59262" cx="256.5" cy="159.1" rx="24.3" ry="36.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="42.7" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="128" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="213.3" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="298.7" fill="#D80027" width="512" height="42.7"/>\n</g>\n<rect y="0" fill="#0052B4" width="256" height="170.7"/>\n<g>\n\t<path fill="#FFDA44" d="M141.1,134.8c-28,0-45.9-24.8-45.9-49.5c0-24.8,17.9-49.5,45.9-49.5c8.7,0,18.1,1,25.3,4.9\n\t\tc-11.2-11-26.6-17.8-43.6-17.8c-34.4,0-62.4,27.9-62.4,62.4s27.9,62.4,62.4,62.4c17,0,32.3-6.8,43.6-17.8\n\t\tC159.3,133.8,149.9,134.8,141.1,134.8z"/>\n\t<polygon fill="#FFDA44" points="171,49.7 180,68.5 200.3,63.8 191.2,82.6 207.6,95.5 187.2,100.1 187.3,121 171,107.9 154.8,121\n\t\t154.8,100.1 134.5,95.5 150.8,82.6 141.7,63.8 162,68.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 513 342">\n<rect y="85.333" fill="#FFFFFF" width="513" height="342"/>\n<rect y="323.333" fill="#f4d900" width="513" height="104"/>\n<rect y="85.333" fill="#006d66" width="513" height="104"/>\n<rect y="204.333" fill="#000000" width="513" height="104"/>\n<polygon fill="#cb0f31" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#f4d900" points="83.477,195.132 98.584,241.63 147.478,241.63 107.924,270.369 123.031,316.868 83.477,288.13 43.922,316.868 59.032,270.369 19.478,241.63 68.37,241.63 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<polyline fill="#0052B4" points="0,426.663 0,85.337 512,85.337 "/>\n<polygon fill="#FFFFFF" points="512,152.222 512,85.337 411.67,85.337 0,359.778 0,426.663 100.33,426.663 "/>\n<polygon fill="#A2001D" points="512,85.337 512,125.462 60.193,426.663 0,426.663 0,386.538 451.807,85.337 "/>\n<polygon fill="#FFDA44" points="187.737,189.212 164.996,199.908 177.106,221.932 152.413,217.208 149.284,242.153 132.085,223.806 114.885,242.153 111.756,217.208 87.063,221.931 99.172,199.908 76.433,189.212 99.173,178.515 87.063,156.493 111.756,161.215 114.886,136.271 132.085,154.618 149.285,136.271 152.413,161.215 177.106,156.493 164.998,178.517 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NC.svg":'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 426.7">\n<path fill="#009543" d="M0,293h640v133.7H0V293z"/>\n<path fill="#ED4135" d="M0,132h640v161.3H0V132z"/>\n<path fill="#0035AD" d="M0,0h640v133.3H0V0z"/>\n<circle fill="#FAE600" stroke="#000000" stroke-width="5.3" cx="240" cy="213.3" r="157.3"/>\n<path d="M307.9,354.5l-31.8,12l-36.1,4.2l-37.8-2.4l-35.9-15.5c0,0,28.6-29.3,40.7-33.5c8.6-3,22.4-3.7,22.4-3.7V122l-0.3-66H246\n\tl-0.5,67.5v191.7c0,0,15.3,1.2,22.1,4.1C278.9,324.2,307.9,354.5,307.9,354.5z"/>\n<rect x="213" y="91" transform="matrix(0.8949 -0.4462 0.4462 0.8949 -18.4912 115.9796)" width="48" height="12.5"/>\n<ellipse cx="237.8" cy="280.5" rx="16.8" ry="26.5"/>\n<circle cx="237.4" cy="143.4" r="20.9"/>\n<ellipse cx="238.4" cy="211.1" rx="19.9" ry="12.1"/>\n<rect x="213.8" y="177" width="47" height="10"/>\n<rect x="213.8" y="234" width="47" height="10"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#FF9811" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<circle fill="#FF9811" cx="256" cy="256" r="32"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NF.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<polygon fill="#6DA544" points="304,311.995 256,159.994 208,311.995 244,311.995 244,351.994 268,351.994 268,311.995 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#338AF3" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</g>\n<path fill="#FFDA44" d="M256,214.447c-22.949,0-41.553,18.603-41.553,41.553S233.05,297.553,256,297.553 c22.949,0,41.553-18.603,41.553-41.553S278.949,214.447,256,214.447z M256,279.745c-13.114,0-23.745-10.631-23.745-23.745 s10.631-23.745,23.745-23.745c13.114,0,23.745,10.631,23.745,23.745C279.745,269.114,269.114,279.745,256,279.745z"/>\n<polygon fill="#0052B4" points="276.563,261.936 256,256 235.437,261.936 228.582,273.809 283.418,273.809 "/>\n<polygon fill="#338AF3" points="256,226.32 242.291,250.064 256,256 269.709,250.064 "/>\n<polygon fill="#6DA544" points="235.437,261.936 276.563,261.936 269.709,250.064 242.291,250.064 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#A2001D" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#2E52B2" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#0052B4" points="0,426.663 0,85.337 280.419,260.087 87.61,260.087 271.186,426.663 "/>\n<polygon fill="#D80027" points="244.769,249.888 10.199,103.71 10.199,249.888 10.199,416.464 244.769,416.464 61.193,249.888 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="98.003,324.433 83.414,317.57 91.184,303.44 75.34,306.47 73.332,290.465 62.297,302.237 51.261,290.465 49.253,306.47 33.41,303.439 41.18,317.57 26.589,324.433 41.18,331.295 33.41,345.425 49.254,342.396 51.261,358.4 62.297,346.628 73.332,358.4 75.34,342.396 91.183,345.426 83.414,331.296 "/>\n\t<polygon fill="#FFFFFF" points="88.268,191.662 77.656,186.671 83.307,176.393 71.784,178.598 70.323,166.957 62.297,175.518 54.271,166.957 52.811,178.598 41.286,176.393 46.938,186.671 36.325,191.662 62.297,196.856 "/>\n\t<path fill="#FFFFFF" d="M93.462,191.662c0,17.212-13.953,31.165-31.165,31.165s-31.165-13.953-31.165-31.165"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<rect y="239.994" fill="#FFDA44" width="512" height="32"/>\n<polygon fill="#FFFFFF" points="174.802,341.329 155.678,350.325 165.862,368.846 145.095,364.873 142.464,385.851 128,370.422 113.535,385.851 110.905,364.873 90.138,368.846 100.321,350.325 81.198,341.329 100.322,332.334 90.138,313.814 110.904,317.785 113.536,296.807 128,312.236 142.465,296.807 145.095,317.785 165.862,313.814 155.679,332.335 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.334" fill="#FFFFFF" width="256" height="170.663"/>\n<g>\n\t<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n</g>\n<g>\n\t<polygon fill="#2E52B2" points="0,107.951 0,138.663 46.069,138.663 "/>\n\t<polygon fill="#2E52B2" points="96,85.331 96,134.244 22.628,85.331 "/>\n</g>\n<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n\t<polygon fill="#2E52B2" points="160,85.331 160,134.244 233.372,85.331 "/>\n</g>\n<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="0,107.951 0,138.663 46.069,138.663 "/>\n\t<polygon fill="#2E52B2" points="96,85.331 96,134.244 22.628,85.331 "/>\n</g>\n<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n\t<polygon fill="#2E52B2" points="160,85.331 160,134.244 233.372,85.331 "/>\n</g>\n<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="0,233.376 0,202.663 46.069,202.663 "/>\n\t<polygon fill="#2E52B2" points="96,255.994 96,207.082 22.628,255.994 "/>\n</g>\n<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,233.376 256,202.663 209.931,202.663 "/>\n\t<polygon fill="#2E52B2" points="160,255.994 160,207.082 233.372,255.994 "/>\n\t<circle fill="#2E52B2" cx="128" cy="170.66" r="22.627"/>\n</g>\n<g>\n\t<polygon fill="#FFDA44" points="128,154.663 131.97,166.885 144.824,166.885 134.426,174.441 138.397,186.663 128,179.109 117.602,186.663 121.574,174.441 111.176,166.885 124.029,166.885 "/>\n\t<polygon fill="#FFDA44" points="128,219.803 130.364,227.081 138.017,227.081 131.827,231.579 134.191,238.857 128,234.359 121.809,238.857 124.173,231.579 117.983,227.081 125.635,227.081 "/>\n\t<polygon fill="#FFDA44" points="128,102.469 130.364,109.747 138.017,109.747 131.827,114.245 134.191,121.523 128,117.025 121.809,121.523 124.173,114.245 117.983,109.747 125.635,109.747 "/>\n\t<polygon fill="#FFDA44" points="197.931,161.136 200.296,168.413 207.949,168.413 201.757,172.912 204.122,180.191 197.931,175.693 191.74,180.191 194.105,172.912 187.914,168.413 195.566,168.413 "/>\n\t<polygon fill="#FFDA44" points="58.069,161.136 60.433,168.413 68.086,168.413 61.895,172.912 64.259,180.191 58.069,175.693 51.878,180.191 54.243,172.912 48.051,168.413 55.704,168.413 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#D80027" points="425.301,233.745 428.689,244.173 439.652,244.173 430.782,250.617 434.17,261.044 425.301,254.6 416.43,261.044 419.818,250.617 410.948,244.173 421.911,244.173 "/>\n\t<polygon fill="#D80027" points="386.107,308.817 391.19,324.459 407.635,324.459 394.33,334.126 399.412,349.766 386.107,340.099 372.802,349.766 377.885,334.126 364.58,324.459 381.025,324.459 "/>\n\t<polygon fill="#D80027" points="387.588,185.971 391.824,199.007 405.528,199.007 394.44,207.061 398.675,220.095 387.588,212.039 376.5,220.095 380.735,207.061 369.648,199.007 383.352,199.007 "/>\n\t<polygon fill="#D80027" points="349.876,233.291 354.958,248.932 371.404,248.932 358.098,258.598 363.182,274.239 349.876,264.573 336.571,274.239 341.653,258.598 328.348,248.932 344.793,248.932 "/>\n</g>\n<polygon fill="#FFFFFF" points="256.003,85.329 256.003,115.893 210.825,140.981 256.003,140.981 256.003,200.34 196.89,200.34 256.003,233.186 256.003,255.992 229.313,255.992 155.829,215.166 155.829,255.992 100.177,255.992 100.177,207.419 12.748,255.992 0.003,255.992 0.003,225.439 45.171,200.34 0.003,200.34 0.003,140.981 59.106,140.981 0.003,108.147 0.003,85.329 26.683,85.329 100.177,126.167 100.177,85.329 155.829,85.329 155.829,133.902 243.259,85.329 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.664 0,154.664 0,186.664 112,186.664 112,255.998 144,255.998 144,186.664 256,186.664 256,154.664 144,154.664 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.998 0,255.998 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n<polygon fill="#FFFFFF" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n\t<polygon fill="#D80027" points="184.154,140.983 256,101.068 256,85.33 256,85.33 155.826,140.983 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/OM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.331" fill="#D80027" width="512" height="341.326"/>\n\t<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n</g>\n<g>\n\t<polygon fill="#FFFFFF" points="189.746,160.439 174.007,144.698 163.513,155.192 153.02,144.698 137.279,160.439 147.773,170.932 137.278,181.426 153.018,197.167 163.512,186.673 174.007,197.167 189.746,181.426 179.252,170.932 "/>\n\t<rect x="211.478" y="85.331" fill="#FFFFFF" width="300.522" height="111.315"/>\n</g>\n<rect x="211.478" y="315.353" fill="#6DA544" width="300.522" height="111.304"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<path fill="#0052B4" d="M256,256c0,0,0,85.304,0,170.663H0V256h85.337C166.934,256,256,256,256,256z"/>\n<path fill="#D80027" d="M512,85.337V256h-85.337C336.184,256,256,256,256,256s0-90.323,0-170.663H512z"/>\n<polygon fill="#0052B4" points="128,123.034 139.824,159.423 178.087,159.423 147.132,181.914 158.955,218.303 128,195.813 97.045,218.303 108.868,181.914 77.913,159.423 116.176,159.423 "/>\n<polygon fill="#D80027" points="384,293.697 395.824,330.086 434.087,330.086 403.132,352.577 414.955,388.966 384,366.476 353.045,388.966 364.868,352.577 333.913,330.086 372.176,330.086 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PF.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</g>\n<path fill="#FFDA44" d="M293.991,256c0,20.982-17.01,33.243-37.992,33.243S218.008,276.982,218.008,256 s17.01-37.992,37.992-37.992S293.991,235.018,293.991,256z"/>\n<path fill="#0052B4" d="M293.991,256c0,20.982-17.01,37.992-37.992,37.992s-37.992-17.01-37.992-37.992"/>\n<g>\n\t<rect x="232.259" y="246.506" fill="#D80027" width="9.498" height="19"/>\n\t<rect x="270.247" y="246.506" fill="#D80027" width="9.498" height="19"/>\n\t<rect x="251.247" y="232.259" fill="#D80027" width="9.498" height="33.243"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" width="512" height="341.337"/>\n<polyline fill="#A2001D" points="0,85.33 512,85.33 512,426.662 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="204.631,326.488 207.393,334.992 216.334,334.992 209.101,340.247 211.864,348.749 204.631,343.495 197.398,348.749 200.16,340.247 192.927,334.992 201.867,334.992 "/>\n\t<polygon fill="#FFFFFF" points="181.797,244.866 186.402,259.038 201.303,259.038 189.247,267.795 193.852,281.967 181.797,273.208 169.742,281.967 174.348,267.795 162.292,259.038 177.193,259.038 "/>\n\t<polygon fill="#FFFFFF" points="181.797,348.749 186.401,362.922 201.303,362.922 189.246,371.679 193.852,385.852 181.797,377.093 169.742,385.852 174.346,371.679 162.292,362.922 177.191,362.922 "/>\n\t<polygon fill="#FFFFFF" points="225.363,281.967 229.969,296.139 244.87,296.139 232.814,304.897 237.419,319.069 225.363,310.31 213.309,319.069 217.915,304.897 205.859,296.139 220.76,296.139 "/>\n\t<polygon fill="#FFFFFF" points="138.23,281.967 142.836,296.139 157.735,296.139 145.681,304.897 150.284,319.069 138.23,310.31 126.175,319.069 130.78,304.897 118.725,296.139 133.625,296.139 "/>\n</g>\n<path fill="#FFDA44" d="M376.526,204.163c-7.628-7.628-17.538-12.133-28.189-12.908l31.88-24.795 c-12.698-12.698-29.714-18.431-46.319-17.218c-1.988-7.145-5.778-13.892-11.396-19.511l-12.593,25.186 c-0.826-1.506-1.872-2.923-3.148-4.197c-7.245-7.245-18.991-7.244-26.234,0s-7.245,18.99,0,26.234 c1.276,1.276,2.692,2.322,4.197,3.148l-25.186,12.593c5.62,5.62,12.371,9.412,19.519,11.399 c-1.217,16.606,4.511,33.619,17.209,46.317l27.854-35.811c2.096-2.064,4.862-3.202,7.807-3.202c2.973,0,5.768,1.158,7.87,3.26 c2.103,2.103,3.26,4.897,3.26,7.87c0,2.974-1.158,5.768-3.26,7.87l10.494,10.494c4.905-4.905,7.607-11.428,7.607-18.364 c0-5.675-1.81-11.071-5.153-15.534c4.871,1.3,9.474,3.849,13.288,7.662c11.573,11.572,11.573,30.403,0,41.975l10.494,10.494 c8.409-8.409,13.039-19.59,13.039-31.481C389.565,223.752,384.934,212.572,376.526,204.163z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n</g>\n<polygon fill="#0052B4" points="512,85.337 512,256 256,256 0,85.337 "/>\n<polygon fill="#D80027" points="512,256 512,426.663 0,426.663 256,256 "/>\n<g>\n\t<polygon fill="#FFDA44" points="161.908,256 134.62,243.165 149.152,216.737 119.52,222.405 115.765,192.472 95.125,214.487 74.486,192.472 70.731,222.405 41.1,216.736 55.631,243.164 28.343,256 55.631,268.835 41.1,295.263 70.733,289.595 74.486,319.528 95.125,297.513 115.765,319.528 119.52,289.595 149.151,295.264 134.619,268.837 "/>\n\t<polygon fill="#FFDA44" points="21.789,117.607 30.87,130.303 45.749,125.589 36.481,138.149 45.562,150.843 30.753,145.911 21.485,158.47 21.602,142.862 6.793,137.928 21.673,133.216 "/>\n\t<polygon fill="#FFDA44" points="21.789,353.53 30.87,366.226 45.749,361.512 36.481,374.072 45.562,386.767 30.753,381.834 21.485,394.392 21.602,378.785 6.793,373.851 21.673,369.139 "/>\n\t<polygon fill="#FFDA44" points="210.395,235.569 201.314,248.264 186.435,243.551 195.703,256.11 186.622,268.806 201.431,263.873 210.699,276.431 210.582,260.824 225.391,255.89 210.511,251.177 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<polygon fill="#FFFFFF" points="393.508,170.516 411.02,189.391 434.383,178.57 421.842,201.057 439.355,219.933 414.092,214.955 401.553,237.443 398.48,211.879 373.217,206.901 396.58,196.081 "/>\n\t<rect y="85.343" fill="#FFFFFF" width="512" height="341.326"/>\n</g>\n<rect x="128" y="85.331" fill="#496E2D" width="384" height="341.337"/>\n<g>\n\t<path fill="#FFFFFF" d="M361.909,298.793c-31.037,22.426-74.378,15.446-96.804-15.592 c-22.427-31.038-15.446-74.379,15.593-96.804c9.677-6.992,20.55-11.125,31.613-12.563c-21.283-3.183-43.777,1.613-62.598,15.211 c-38.2,27.602-46.792,80.944-19.191,119.145c27.601,38.199,80.944,46.792,119.145,19.189c18.82-13.598,30.436-33.448,34.096-54.655 C378.924,282.774,371.587,291.8,361.909,298.793z"/>\n\t<polygon fill="#FFFFFF" points="360.58,172.889 378.064,191.731 401.386,180.929 388.867,203.376 406.35,222.22 381.131,217.252 368.612,239.702 365.545,214.181 340.325,209.212 363.648,198.41 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="170.663"/>\n</g>\n<rect y="256" fill="#D80027" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PM.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 26.666 640 426.666">\n <g fill-rule="evenodd" stroke-width="1pt">\n <path fill="#fff" d="M0 0h640v480H0z"/>\n <path fill="#00267f" d="M0 0h213.3v480H0z"/>\n <path fill="#f31830" d="M426.7 0H640v480H426.7z"/>\n </g>\n</svg>\n',"./assets/country-flag-icons/3x2/PN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#ACABB1" points="400.696,219.822 384,225.387 367.304,219.822 361.739,205.909 367.304,191.996 400.696,191.996 395.13,205.909 "/>\n<path fill="#338AF3" d="M345.043,219.822v61.217c0,29.821,38.957,38.957,38.957,38.957s38.957-9.137,38.957-38.957v-61.217 H345.043z"/>\n<path fill="#6DA544" d="M348.555,295.541C358.131,313.927,384,319.996,384,319.996s25.869-6.069,35.445-24.455L384,236.518 L348.555,295.541z"/>\n<path fill="#FFDA44" d="M422.957,280.421L384,219.822l-38.957,60.599v0.618c0,5.518,1.337,10.328,3.512,14.503L384,240.405 l35.445,55.137c2.175-4.175,3.512-8.983,3.512-14.503V280.421z"/>\n<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.158 100.174,85.333 155.826,85.333 155.826,133.905 243.256,85.333 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#D80027" width="512" height="68.263"/>\n\t<rect y="221.863" fill="#D80027" width="512" height="68.263"/>\n\t<rect y="358.4" fill="#D80027" width="512" height="68.263"/>\n</g>\n<polygon fill="#0052B4" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#FFFFFF" points="83.477,195.132 98.584,241.63 147.478,241.63 107.924,270.369 123.031,316.868 83.477,288.13 43.922,316.868 59.032,270.369 19.478,241.63 68.37,241.63 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<polygon fill="#D80027" points="256,256.006 0,426.668 0,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#6DA544" points="196.641,85.337 196.641,261.565 196.641,426.663 0,426.663 0,85.337 "/>\n<circle fill="#FFDA44" cx="196.641" cy="256" r="64"/>\n<path fill="#D80027" d="M160.638,224v40.001c0,19.882,16.118,36,36,36s36-16.118,36-36V224H160.638z"/>\n<path fill="#FFFFFF" d="M196.638,276c-6.617,0-12-5.383-12-12v-16h24.001v16C208.638,270.616,203.254,276,196.638,276z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<circle fill="#FFDA44" cx="218.902" cy="255.994" r="74.207"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n<path fill="#6DA544" d="M289.579,216.738l-12.592,12.592c5.37,5.372,8.693,12.792,8.693,20.988 c0,16.392-13.289,29.68-29.68,29.68c-16.392,0-29.68-13.289-29.68-29.68c0-8.195,3.322-15.616,8.693-20.988l-12.592-12.592 c-8.594,8.594-13.91,20.466-13.91,33.579c0,26.228,21.261,47.489,47.489,47.489s47.489-21.261,47.489-47.489 C303.489,237.205,298.173,225.332,289.579,216.738z"/>\n<polygon fill="#FFDA44" points="256,232.51 260.421,246.115 274.725,246.115 263.152,254.523 267.573,268.127 256,259.719 244.427,268.127 248.848,254.523 237.275,246.115 251.579,246.115 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/QA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect x="2.216" y="86.076" fill="#751A46" width="509.784" height="339.848"/>\n<polygon fill="#FFFFFF" points="209.455,154.969 159.219,180.236 209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/RE.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 26.666 640 426.666">\n <g fill-rule="evenodd" stroke-width="1pt">\n <path fill="#fff" d="M0 0h640v480H0z"/>\n <path fill="#00267f" d="M0 0h213.3v480H0z"/>\n <path fill="#f31830" d="M426.7 0H640v480H426.7z"/>\n </g>\n</svg>\n',"./assets/country-flag-icons/3x2/RO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#0052B4" width="512" height="341.337"/>\n<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.882" fill="#FFFFFF" width="512" height="113.775"/>\n<path fill="#D80027" d="M129.468,181.793v85.136c0,48.429,63.267,63.267,63.267,63.267S256,315.356,256,266.929v-85.136 H129.468z"/>\n<g>\n\t<polygon fill="#FFDA44" points="155.634,196.634 229.835,196.634 229.835,166.953 214.994,174.373 192.733,152.113 170.474,174.373 155.634,166.953 "/>\n\t<polygon fill="#FFDA44" points="241.16,278.782 192.929,230.551 144.698,278.782 160.439,294.522 192.929,262.032 225.419,294.522 "/>\n</g>\n<path fill="#FFFFFF" d="M241.16,233.734h-22.504c1.266-2.184,2.001-4.713,2.001-7.418c0-8.196-6.645-14.84-14.84-14.84 c-5.663,0-10.581,3.172-13.083,7.836c-2.502-4.663-7.421-7.836-13.083-7.836c-8.195,0-14.84,6.644-14.84,14.84 c0,2.706,0.736,5.235,2.001,7.418h-22.114c0,8.196,7.139,14.84,15.334,14.84h-0.494c0,8.196,6.644,14.84,14.84,14.84 c0,7.257,5.211,13.286,12.094,14.576l-11.694,26.401c5.603,2.278,11.727,3.544,18.149,3.544c6.422,0,12.545-1.266,18.149-3.544 l-11.694-26.401c6.883-1.29,12.094-7.319,12.094-14.576c8.196,0,14.84-6.644,14.84-14.84h-0.494 C234.021,248.574,241.16,241.93,241.16,233.734z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#FFFFFF" points="0,85.33 0,199.107 0,312.885 0,426.662 512,426.662 512,312.885 512,199.107 512,85.33 "/>\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<rect y="85.333" fill="#FFFFFF" width="512" height="113.775"/>\n<rect y="312.884" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<rect y="255.994" fill="#FFDA44" width="512" height="81.619"/>\n<rect y="337.614" fill="#496E2D" width="512" height="89.043"/>\n<polygon fill="#FFDA44" points="278.261,185.209 299.105,195.013 288.006,215.199 310.638,210.869 313.506,233.734 329.271,216.918 345.037,233.734 347.904,210.869 370.537,215.199 359.438,195.013 380.281,185.209 359.437,175.404 370.537,155.219 347.904,159.548 345.036,136.684 329.271,153.5 313.505,136.684 310.638,159.548 288.004,155.219 299.104,175.406 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#055e1c" width="512" height="341.333"/>\n<g fill="#FFFFFF">\n\t<path d="M183.548,289.386c0,12.295,9.731,22.261,21.736,22.261h65.208c0,10.244,8.11,18.551,18.114,18.551 h21.736c10.004,0,18.114-8.306,18.114-18.551v-22.261H183.548z"/>\n\t<path d="M330.264,181.791v51.942c0,8.183-6.5,14.84-14.491,14.84v22.261 c19.976,0,36.226-16.643,36.226-37.101v-51.942L330.264,181.791L330.264,181.791z"/>\n\t<path d="M174.491,233.734c0,8.183-6.5,14.84-14.491,14.84v22.261c19.976,0,36.226-16.643,36.226-37.101 v-51.942h-21.736V233.734z"/>\n\t<rect x="297.661" y="181.788" width="21.736" height="51.942"/>\n\t<path d="M265.057,211.473c0,2.046-1.625,3.71-3.623,3.71c-1.998,0-3.623-1.664-3.623-3.71v-29.682h-21.736 v29.682c0,2.046-1.625,3.71-3.623,3.71s-3.623-1.664-3.623-3.71v-29.682h-21.736v29.682c0,14.32,11.376,25.971,25.358,25.971 c5.385,0,10.38-1.733,14.491-4.677c4.11,2.944,9.106,4.677,14.491,4.677c1.084,0,2.15-0.078,3.2-0.215 c-1.54,6.499-7.255,11.345-14.068,11.345v22.261c19.976,0,36.226-16.643,36.226-37.101v-22.261v-29.682h-21.736L265.057,211.473 L265.057,211.473z"/>\n\t<rect x="207.093" y="248.57" width="32.601" height="22.261"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SB.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#496E2D" width="512" height="341.337"/>\n<polyline fill="#0052B4" points="0,426.663 0,85.329 512,85.329 "/>\n<polygon fill="#FFDA44" points="0,396.494 0,426.663 45.255,426.663 512,115.499 512,85.329 466.745,85.329 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="85.688,108.787 90.808,124.543 107.374,124.543 93.971,134.28 99.091,150.037 85.688,140.299 72.283,150.037 77.403,134.28 64,124.543 80.567,124.543 "/>\n\t<polygon fill="#FFFFFF" points="170.312,108.787 175.433,124.543 192,124.543 178.597,134.28 183.717,150.037 170.312,140.299 156.909,150.037 162.029,134.28 148.626,124.543 165.192,124.543 "/>\n\t<polygon fill="#FFFFFF" points="85.688,191.289 90.808,207.045 107.374,207.045 93.971,216.783 99.091,232.54 85.688,222.801 72.283,232.54 77.403,216.783 64,207.045 80.567,207.045 "/>\n\t<polygon fill="#FFFFFF" points="170.312,191.289 175.433,207.045 192,207.045 178.597,216.783 183.717,232.54 170.312,222.801 156.909,232.54 162.029,216.783 148.626,207.045 165.192,207.045 "/>\n\t<polygon fill="#FFFFFF" points="128,150.037 133.12,165.793 149.688,165.793 136.283,175.531 141.403,191.289 128,181.55 114.597,191.289 119.717,175.531 106.312,165.793 122.88,165.793 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#FFDA44" points="235.454,85.337 0,426.663 427.345,85.337 "/>\n<polygon fill="#6DA544" points="512,329.393 0,426.663 512,426.663 "/>\n<polygon fill="#D80027" points="512,85.337 427.345,85.337 0,426.663 512,222.151 "/>\n<polygon fill="#0052B4" points="0,85.337 0,426.663 235.454,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" width="512" height="113.775"/>\n<polygon fill="#496E2D" points="0,426.668 0,85.331 256,256.006 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFDA44" points="192,85.33 128,85.33 128,223.996 0,223.996 0,287.996 128,287.996 128,426.662 192,426.662 192,287.996 512,287.996 512,223.996 192,223.996 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="170.663"/>\n<g>\n\t<path fill="#FFFFFF" d="M83.478,170.666c0-24.865,17.476-45.637,40.812-50.734c-3.587-0.784-7.308-1.208-11.13-1.208 c-28.688,0-51.942,23.254-51.942,51.941s23.255,51.942,51.942,51.942c3.822,0,7.543-0.425,11.13-1.208 C100.954,216.304,83.478,195.532,83.478,170.666z"/>\n\t<polygon fill="#FFFFFF" points="150.261,122.435 153.945,133.772 165.866,133.772 156.221,140.779 159.905,152.116 150.261,145.11 140.616,152.116 144.301,140.779 134.656,133.772 146.577,133.772 "/>\n\t<polygon fill="#FFFFFF" points="121.344,144.696 125.027,156.033 136.948,156.033 127.303,163.04 130.987,174.377 121.344,167.371 111.699,174.377 115.384,163.04 105.739,156.033 117.66,156.033 "/>\n\t<polygon fill="#FFFFFF" points="179.178,144.696 182.862,156.033 194.783,156.033 185.138,163.04 188.822,174.377 179.178,167.371 169.534,174.377 173.219,163.04 163.574,156.033 175.495,156.033 "/>\n\t<polygon fill="#FFFFFF" points="168.047,178.087 171.731,189.424 183.652,189.424 174.008,196.431 177.692,207.768 168.047,200.762 158.404,207.768 162.088,196.431 152.444,189.424 164.364,189.424 "/>\n\t<polygon fill="#FFFFFF" points="132.474,178.087 136.157,189.424 148.078,189.424 138.434,196.431 142.118,207.768 132.474,200.762 122.83,207.768 126.514,196.431 116.87,189.424 128.79,189.424 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\n\t viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.4 80,117.4 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.4 176,117.4 \t"/>\n</g>\n<g>\n\t<path fill="#29DBFF" d="M449,139.7c-0.1,44.4-7.2,92.1-65,114.9c-57.8-22.8-64.9-70.5-65-114.9L449,139.7L449,139.7z"/>\n\t<path fill="#ffda44" d="M449,139.7c0-16.7-0.9-32.9-0.5-47.1C426.9,83,398.4,81,383.9,81s-42.9,2-64.6,11.6\n\t\tc0.4,14.2-0.5,30.4-0.5,47.1H449z"/>\n\t<path fill="#BF521B" d="M369.5,204.5l0.3,10.3L357,215l4.9,13.2l-17.3,0c-18-20.2-23.4-42.4-24.9-68.1l9.1-9.7l8.3,14.3l10.8-12.8\n\t\tl7,7.8l0.8,15.7L369.5,204.5z"/>\n</g>\n<polygon fill="#474747" points="436.6,192.5 428,210.8 381,210.8 351.8,191.3 377.5,201.8 402.6,201.8 406.3,195.3 413.5,195.5\n\t415.5,192.5 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="199.112" fill="#0052B4" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<path fill="#FFFFFF" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l-0.145-44.188l89.043-0.266L233.606,196.639z"/>\n<path fill="#0052B4" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l-0.145-44.188l89.043-0.266L233.606,196.639z"/>\n<path fill="#FFFFFF" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l14.848,14.837l29.674-22.261l29.685,22.261L233.606,196.639z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#2E52B2" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="196.641" fill="#0052B4" width="512" height="118.717"/>\n<rect y="315.359" fill="#D80027" width="512" height="111.304"/>\n<path fill="#FFFFFF" d="M129.468,181.799v85.136c0,48.429,63.267,63.267,63.267,63.267S256,315.362,256,266.935v-85.136 H129.468z"/>\n<path fill="#D80027" d="M146.126,184.294v81.941c0,5.472,1.215,10.64,3.623,15.485c23.89,0,59.599,0,85.97,0 c2.408-4.844,3.623-10.012,3.623-15.485v-81.941H146.126z"/>\n<polygon fill="#FFFFFF" points="221.301,241.427 199.876,241.427 199.876,227.144 214.16,227.144 214.16,212.861 199.876,212.861 199.876,198.577 185.593,198.577 185.593,212.861 171.311,212.861 171.311,227.144 185.593,227.144 185.593,241.427 164.167,241.427 164.167,255.711 185.593,255.711 185.593,269.994 199.876,269.994 199.876,255.711 221.301,255.711 "/>\n<path fill="#0052B4" d="M169.232,301.658c9.204,5.783,18.66,9.143,23.502,10.636c4.842-1.494,14.298-4.852,23.502-10.636 c9.282-5.833,15.79-12.506,19.484-19.939c-4.075-2.883-9.047-4.583-14.418-4.583c-1.956,0-3.856,0.232-5.682,0.657 c-3.871-8.796-12.658-14.94-22.884-14.94c-10.227,0-19.013,6.144-22.884,14.94c-1.827-0.425-3.728-0.657-5.682-0.657 c-5.372,0-10.344,1.701-14.418,4.583C153.443,289.152,159.95,295.825,169.232,301.658z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.34" fill="#338AF3" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="512,85.334 512,252.024 0,256.175 0,85.334 "/>\n<path fill="#6DA544" d="M323.744,203.099L256,270.843l-67.744-67.744c-8.76,13.005-13.879,28.658-13.879,45.483v22.261 c0,35.744,23.097,66.193,55.148,77.213c-4.277,8.385-3.556,18.848,2.712,26.671c8.326-6.673,16.945-13.58,24.258-19.439 c7.313,5.859,15.932,12.767,24.258,19.439c6.342-7.915,7.011-18.534,2.564-26.968c31.614-11.261,54.308-41.485,54.308-76.916 v-22.261C337.623,231.756,332.504,216.105,323.744,203.099z"/>\n<path fill="#FFDA44" d="M256,330.206c-32.732,0-59.362-26.63-59.362-59.362v-22.261c0-32.733,26.63-59.363,59.362-59.363 s59.362,26.63,59.362,59.362v22.261C315.362,303.576,288.732,330.206,256,330.206z"/>\n<path fill="#338AF3" d="M293.101,270.843v-22.261c0-20.458-16.643-37.101-37.101-37.101s-37.101,16.643-37.101,37.101v22.261 L256,278.264L293.101,270.843z"/>\n<path fill="#6DA544" d="M218.899,270.843L218.899,270.843c0,20.458,16.643,37.101,37.101,37.101 c20.458,0,37.101-16.643,37.101-37.101l0,0H218.899L218.899,270.843z"/>\n<path fill="#FFDA44" d="M300.522,189.22c0-12.295-9.966-22.261-22.261-22.261c-5.703,0-10.901,2.146-14.84,5.672v-13.093 h7.421v-14.84h-7.421v-7.421h-14.84v7.421h-7.421v14.84h7.421v13.093c-3.94-3.526-9.138-5.672-14.841-5.672 c-12.295,0-22.261,9.966-22.261,22.261c0,6.591,2.867,12.512,7.421,16.589v13.093h74.203v-13.093 C297.655,201.732,300.522,195.812,300.522,189.22z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect x="330.207" y="85.331" fill="#D80027" width="181.793" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#496E2D" width="181.793" height="341.337"/>\n\t<polygon fill="#496E2D" points="255.999,196.632 270.732,241.979 318.417,241.979 279.841,270.008 294.575,315.356 255.999,287.33 217.422,315.356 232.159,270.008 193.583,241.979 241.264,241.979 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="256,157.273 278.663,227.021 352,227.021 292.668,270.127 315.332,339.876 256,296.769 196.668,339.876 219.332,270.127 160,227.021 233.337,227.021 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="196.636" fill="#A2001D" width="512" height="118.728"/>\n<g>\n\t<rect y="352.462" fill="#6DA544" width="512" height="74.207"/>\n\t<rect y="85.331" fill="#6DA544" width="512" height="74.207"/>\n</g>\n<polygon fill="#FFDA44" points="256.742,218.003 266.172,247.024 296.69,247.024 272,264.963 281.431,293.986 256.742,276.049 232.053,293.986 241.484,264.963 216.794,247.024 247.312,247.024 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="322.783" fill="#496E2D" width="512" height="103.88"/>\n<rect y="85.337" width="512" height="104.515"/>\n<rect y="210.877" fill="#A2001D" width="512" height="89.656"/>\n<polygon fill="#0052B4" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#FFDA44" points="73.178,209.188 94.009,238.255 128.093,227.425 106.886,256.22 127.716,285.289 93.777,274.018 72.569,302.812 72.803,267.05 38.863,255.777 72.946,244.947 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/ST.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</g>\n<polygon fill="#D80027" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon points="302.049,226.318 309.417,248.992 333.259,248.992 313.971,263.008 321.337,285.682 302.049,271.667 282.762,285.682 290.128,263.008 270.84,248.992 294.682,248.992 "/>\n<polygon points="376.252,226.318 383.619,248.992 407.461,248.992 388.173,263.008 395.54,285.682 376.252,271.667 356.964,285.682 364.331,263.008 345.043,248.992 368.885,248.992 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SV.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#0052B4" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</g>\n<polygon fill="#FFDA44" points="228.582,261.936 256,214.447 283.418,261.936 "/>\n<polygon fill="#6DA544" points="291.616,277.616 256,295.425 220.384,277.616 220.384,253.872 291.616,253.872 "/>\n<path fill="#FFDA44" d="M289.579,216.485l-12.592,12.592c5.37,5.372,8.693,12.791,8.693,20.988 c0,16.392-13.289,29.68-29.68,29.68c-16.392,0-29.68-13.289-29.68-29.68c0-8.195,3.322-15.616,8.693-20.988l-12.592-12.592 c-8.594,8.594-13.91,20.466-13.91,33.579c0,26.228,21.261,47.489,47.489,47.489s47.489-21.261,47.489-47.489 C303.489,236.95,298.173,225.077,289.579,216.485z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SX.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,85.331 512,252.021 0,256.173 0,85.331 "/>\n<polygon fill="#FFFFFF" points="256,256.006 0,426.668 0,85.331 "/>\n<g>\n\t<path fill="#FFDA44" d="M59.621,256c-0.116,1.509-0.193,3.031-0.193,4.57c0,32.821,26.607,59.429,59.429,59.429 s59.429-26.607,59.429-59.429c0-1.539-0.078-3.061-0.193-4.57L59.621,256L59.621,256z"/>\n\t<circle fill="#FFDA44" cx="118.862" cy="210.287" r="18.286"/>\n</g>\n<path fill="#D80027" d="M77.715,205.714v59.429c0,31.494,41.144,41.143,41.144,41.143s41.144-9.649,41.144-41.143v-59.429 H77.715z"/>\n<path fill="#338AF3" d="M118.877,287.148c-7.632-2.746-22.876-9.767-22.876-22.006v-41.144h45.715v41.144 C141.715,277.422,126.472,284.425,118.877,287.148z"/>\n<polygon fill="#F3F3F3" points="128.001,246.856 128.001,237.714 118.857,233.143 109.715,237.714 109.715,246.856 105.144,251.429 105.144,269.714 132.572,269.714 132.572,251.429 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.882" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#6DA544" points="187.31,215.184 196.518,243.525 226.32,243.525 202.21,261.043 211.419,289.385 187.31,271.869 163.2,289.385 172.409,261.043 148.3,243.525 178.101,243.525 "/>\n\t<polygon fill="#6DA544" points="324.69,215.184 333.899,243.525 363.7,243.525 339.591,261.043 348.8,289.385 324.69,271.869 300.581,289.385 309.79,261.043 285.68,243.525 315.482,243.525 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<path fill="#2B5DEA" d="M0,0h900v600H0V0z"/>\n<path fill="#FFDF29" d="M0,100h900v400H0V100z"/>\n<path fill="#D70000" d="M0,150h900v300H0V150z"/>\n<path fill="#FFFFFF" d="M450,171.4v257.2c114.3,0,171.4-85.7,214.3-128.6C621.4,257.1,564.3,171.4,450,171.4z"/>\n<path d="M450,171.4c-100,0-171.4,85.7-214.3,128.6C278.6,342.9,350,428.6,450,428.6V171.4z"/>\n<rect x="346.3" y="254.3" fill="#FFFFFF" width="21" height="91.3"/>\n<rect x="398.2" y="254.3" fill="#FFFFFF" width="21" height="91.3"/>\n<rect x="477.8" y="254.3" width="21" height="91.3"/>\n<rect x="529.7" y="254.3" width="21" height="91.3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.4 80,117.4 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.4 176,117.4 \t"/>\n</g>\n<g>\n\t<path fill="#29DBFF" d="M448.9,169.5c0,9.6-0.3,29.6-1.4,39.2c-4.1,34.9-23.5,68.8-62.1,85.9c-45.3-17.9-60.8-51-64.9-85.9\n\t\tc-1.1-9.6-1.5-19.4-1.5-29l0.3-47.1h129.2L448.9,169.5z"/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M447.5,208.7c-0.2,1.6-0.4,3.3-0.6,4.9c-4.8,33.1-22.9,65.4-61.5,81c-43.2-17-59.4-47.9-64.2-81\n\t\tc-0.2-1.6-0.4-3.2-0.6-4.9"/>\n</g>\n<polygon fill="#29DBFF" points="385.4,251.7 362.5,208.7 408.3,208.7 "/>\n<polygon fill="#FFFFFF" points="385.4,165.8 362.5,208.7 408.3,208.7 "/>\n<ellipse fill="#FFBE57" cx="474.8" cy="236.8" rx="16.8" ry="43.3"/>\n<ellipse fill="#FFBE57" cx="295.3" cy="236.8" rx="16.8" ry="43.3"/>\n<polygon fill="#FFFFFF" points="385.4,31.5 352,75.5 420.5,75.5 "/>\n<path fill="#FFFFFF" d="M315.5,280c0,0,33.8,29.5,69.9,29.5s67.1-29.5,67.1-29.5l8.5,14.6c0,0-21.8,31.4-75.6,31.4S307,294.6,307,294.6\n\tL315.5,280z"/>\n<ellipse fill="#A5A5A5" cx="386.3" cy="104.3" rx="34.3" ry="23.3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<path fill="#FFDA44" d="M332.058,191.996v78.221c0,38.103,51.942,49.779,51.942,49.779s51.942-11.675,51.942-49.779v-78.221 H332.058z"/>\n<path fill="#FF9811" d="M376.579,220.44c0,7.855-6.644,28.445-14.84,28.445s-14.84-20.589-14.84-28.445 c0-7.856,14.84-14.222,14.84-14.222S376.579,212.585,376.579,220.44z"/>\n<path fill="#A2001D" d="M415.961,235.93c2.394-5.6,4.257-13.785,4.257-17.86c0-6.546-8.904-11.852-8.904-11.852 s-8.904,5.306-8.904,11.852c0,4.075,1.862,12.26,4.257,17.86l-5.141,11.123c3.022,1.178,6.324,1.831,9.788,1.831 c3.463,0,6.766-0.654,9.788-1.831L415.961,235.93z"/>\n<path fill="#6DA544" d="M372.87,270.217c0,0-7.421,14.222-7.421,28.445c0,0,22.261,0,37.101,0 c0-14.222-7.421-28.445-7.421-28.445l-11.13-7.111L372.87,270.217z"/>\n<path fill="#D80027" d="M395.13,270.217v-3.555c0-5.891-4.983-10.666-11.13-10.666c-6.147,0-11.13,4.776-11.13,10.666v3.555 H395.13L395.13,270.217z"/>\n<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.158 100.174,85.333 155.826,85.333 155.826,133.905 243.256,85.333 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n\t<path fill="#FFFFFF" d="M0,0h21v15H0V0z"/>\n\t<path fill="#073AB6" d="M0,0h22.5v15H0V0z"/>\n\t<path fill="#FFFFFF" d="M0,0h11.3v7.5H0V0z"/>\n\t<path fill="#F44653" d="M7.1,0h3.6v7H7.1V0z"/>\n\t<path fill="#1035BB" d="M0,0h3.6v7H0V0z"/>\n\t<path fill="#FFFFFF" d="M3.6,0h3.6v7H3.6V0z"/>\n\t<path fill="#FFFFFF" d="M14.5,6h5L19,7h-1.5v0.5h1l-0.5,1h-0.5V10h-1V7H15L14.5,6z M18.5,8.5l1,1.5h-2L18.5,8.5z M15.5,8.5l1,1.5h-2\n\t\tL15.5,8.5z M17,11.5L16,10h2L17,11.5z M20,8c-0.3,0-0.5-0.2-0.5-0.5S19.7,7,20,7s0.5,0.2,0.5,0.5S20.3,8,20,8z M14,8\n\t\tc-0.3,0-0.5-0.2-0.5-0.5S13.7,7,14,7s0.5,0.2,0.5,0.5S14.3,8,14,8z M15,12c-0.3,0-0.5-0.2-0.5-0.5S14.7,11,15,11s0.5,0.2,0.5,0.5\n\t\tS15.3,12,15,12z M19,12c-0.3,0-0.5-0.2-0.5-0.5S18.7,11,19,11s0.5,0.2,0.5,0.5S19.3,12,19,12z M17,13c-0.3,0-0.5-0.2-0.5-0.5\n\t\tS16.7,12,17,12s0.5,0.2,0.5,0.5S17.3,13,17,13z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#496E2D" width="512" height="68.263"/>\n\t<rect y="358.4" fill="#496E2D" width="512" height="68.263"/>\n\t<rect y="221.863" fill="#496E2D" width="512" height="68.263"/>\n</g>\n<rect y="85.337" fill="#D80027" width="204.054" height="204.054"/>\n<polygon fill="#FFFFFF" points="102.026,133.938 115.286,174.75 158.202,174.75 123.484,199.976 136.744,240.79 102.026,215.566 67.307,240.79 80.57,199.976 45.852,174.75 88.765,174.75 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="194.056" fill="#0052B4" width="512" height="123.882"/>\n<g>\n\t<rect y="85.334" fill="#D80027" width="512" height="54.522"/>\n\t<rect y="372.143" fill="#D80027" width="512" height="54.522"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#FFDA44" points="226.318,300.522 285.682,300.522 285.682,275.292 273.809,281.229 256,263.421 238.191,281.229 226.318,275.292 "/>\n\t<polygon fill="#FFDA44" points="192.355,270.84 195.118,279.344 204.058,279.344 196.825,284.599 199.588,293.101 192.355,287.846 185.121,293.101 187.884,284.599 180.651,279.344 189.591,279.344 "/>\n\t<polygon fill="#FFDA44" points="200.921,241.16 203.684,249.662 212.624,249.662 205.391,254.917 208.154,263.421 200.921,258.165 193.687,263.421 196.45,254.917 189.217,249.662 198.157,249.662 "/>\n\t<polygon fill="#FFDA44" points="225.409,218.899 228.172,227.401 237.112,227.401 229.879,232.656 232.642,241.16 225.409,235.904 218.175,241.16 220.938,232.656 213.705,227.401 222.645,227.401 "/>\n\t<polygon fill="#FFDA44" points="319.645,270.84 316.882,279.344 307.942,279.344 315.175,284.599 312.412,293.101 319.645,287.846 326.879,293.101 324.116,284.599 331.349,279.344 322.409,279.344 "/>\n\t<polygon fill="#FFDA44" points="311.079,241.16 308.316,249.662 299.376,249.662 306.609,254.917 303.846,263.421 311.079,258.165 318.313,263.421 315.55,254.917 322.783,249.662 313.843,249.662 "/>\n\t<polygon fill="#FFDA44" points="286.591,218.899 283.828,227.401 274.888,227.401 282.121,232.656 279.358,241.16 286.591,235.904 293.825,241.16 291.062,232.656 298.295,227.401 289.355,227.401 "/>\n\t<polygon fill="#FFDA44" points="256,207.767 258.763,216.27 267.704,216.27 260.47,221.526 263.233,230.028 256,224.774 248.767,230.028 251.53,221.526 244.296,216.27 253.237,216.27 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<g>\n\t<polygon fill="#FFFFFF" points="210.715,174.377 214.399,185.715 226.318,185.715 216.675,192.721 220.359,204.058 210.715,197.051 201.071,204.058 204.755,192.721 195.11,185.715 207.031,185.715 "/>\n\t<polygon fill="#FFFFFF" points="116.816,281.971 121.421,296.143 136.321,296.143 124.266,304.9 128.872,319.073 116.816,310.313 104.761,319.073 109.365,304.9 97.311,296.143 112.21,296.143 "/>\n\t<polygon fill="#FFFFFF" points="144.696,119.679 149.3,133.851 164.201,133.851 152.145,142.609 156.751,156.78 144.696,148.021 132.64,156.78 137.246,142.609 125.191,133.851 140.091,133.851 "/>\n\t<polygon fill="#FFFFFF" points="69.539,175.331 74.143,189.503 89.043,189.503 76.988,198.261 81.594,212.432 69.539,203.674 57.483,212.432 62.089,198.261 50.034,189.503 64.934,189.503 "/>\n</g>\n<g>\n\t<path fill="#FFDA44" d="M483.386,354.503H117.801c0,0,109.234-88.562,310.593-220.938 C428.395,133.565,339.951,262.5,483.386,354.503z"/>\n\t<path fill="#FFDA44" d="M117.801,366.089c-11.177,0-11.195,17.37,0,17.37h365.585c11.177,0,11.195-17.37,0-17.37H117.801z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFDA44" points="256,256 0,90.691 0,134.933 155.826,256 0,377.067 0,421.309 "/>\n<polygon points="0,90.691 0,421.309 189.217,256 "/>\n<polygon fill="#FFFFFF" points="44.184,213.36 69.096,236.937 99.217,220.527 84.494,251.507 109.405,275.082 75.393,270.652 60.67,301.63 54.374,267.914 20.362,263.484 50.481,247.076 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<g>\n\t<path fill="#FFFFFF" d="M357.208,183.679c8.397-23.404-1.036-48.858-21.281-61.536c3.641,0.474,7.287,1.331,10.884,2.621 c27.002,9.688,41.038,39.428,31.35,66.431s-39.428,41.038-66.431,31.35c-3.597-1.291-6.957-2.947-10.069-4.895 C325.347,220.734,348.811,207.084,357.208,183.679z"/>\n\t<polygon fill="#FFFFFF" points="310.637,115.729 303.34,125.156 292.12,121.13 298.832,130.982 291.536,140.409 302.979,137.071 309.691,146.923 310.052,135.009 321.496,131.67 310.275,127.645 "/>\n\t<polygon fill="#FFFFFF" points="330.338,146.448 323.042,155.875 311.821,151.849 318.533,161.701 311.237,171.128 322.68,167.789 329.392,177.642 329.752,165.727 341.197,162.387 329.976,158.363 "/>\n\t<polygon fill="#FFFFFF" points="275.9,126.916 268.604,136.343 257.385,132.319 264.096,142.17 256.8,151.596 268.243,148.258 274.955,158.11 275.316,146.195 286.76,142.858 275.539,138.831 "/>\n\t<polygon fill="#FFFFFF" points="275.101,162.105 267.805,171.532 256.584,167.506 263.296,177.358 256,186.785 267.444,183.447 274.155,193.299 274.517,181.384 285.96,178.046 274.74,174.02 "/>\n\t<polygon fill="#FFFFFF" points="308.585,174.118 301.289,183.545 290.069,179.519 296.781,189.372 289.484,198.798 300.928,195.46 307.64,205.312 308,193.397 319.443,190.059 308.224,186.034 "/>\n</g>\n<rect x="83.478" y="85.337" fill="#D80027" width="89.043" height="341.326"/>\n<polygon fill="#FFFFFF" points="117.458,175.191 102.55,164.086 102.55,148.381 117.458,137.276 138.542,137.276 153.45,148.381 153.45,164.086 138.542,175.191 "/>\n<g>\n\t<polygon fill="#FF9811" points="128,137.276 117.458,137.276 102.55,148.381 102.55,156.059 128,156.059 "/>\n\t<polygon fill="#FF9811" points="128,175.191 138.542,175.191 153.45,164.086 153.45,156.074 128,156.074 "/>\n</g>\n<polygon fill="#FFFFFF" points="117.458,374.725 102.55,363.619 102.55,347.915 117.458,336.81 138.542,336.81 153.45,347.915 153.45,363.619 138.542,374.725 "/>\n<g>\n\t<polygon fill="#FF9811" points="128,336.81 117.458,336.81 102.55,347.915 102.55,355.593 128,355.593 "/>\n\t<polygon fill="#FF9811" points="128,374.725 138.542,374.725 153.45,363.619 153.45,355.608 128,355.608 "/>\n</g>\n<g>\n\t<polygon fill="#496E2D" points="117.458,274.957 102.55,263.852 102.55,248.149 117.458,237.043 138.542,237.043 153.45,248.149 153.45,263.852 138.542,274.957 "/>\n\t<polygon fill="#496E2D" points="153.971,299.391 147.478,299.391 147.478,292.898 136.067,292.898 127.999,284.83 119.932,292.898 108.522,292.898 108.522,299.391 102.029,299.391 102.029,312.377 108.522,312.377 108.522,318.869 119.932,318.869 128,326.938 136.068,318.869 147.478,318.869 147.478,312.377 153.971,312.377 "/>\n\t<polygon fill="#496E2D" points="153.971,199.623 147.478,199.623 147.478,193.131 136.067,193.131 127.999,185.062 119.932,193.131 108.522,193.131 108.522,199.623 102.029,199.623 102.029,212.609 108.522,212.609 108.522,219.101 119.932,219.101 128,227.171 136.068,219.101 147.478,219.101 147.478,212.609 153.971,212.609 "/>\n</g>\n<g>\n\t<rect x="120.576" y="248.576" fill="#D80027" width="14.84" height="14.84"/>\n\t<circle fill="#D80027" cx="128" cy="206.113" r="7.421"/>\n\t<circle fill="#D80027" cx="128" cy="305.887" r="7.421"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<circle fill="#FFFFFF" cx="256" cy="255.994" r="96"/>\n<g>\n\t<polygon fill="#D80027" points="267.826,219.291 284.296,241.986 310.969,233.337 294.473,256.013 310.941,278.708 284.277,270.027 267.782,292.703 267.799,264.663 241.135,255.981 267.809,247.333 "/>\n\t<path fill="#D80027" d="M277.818,312.724c-31.33,0-56.727-25.397-56.727-56.727s25.397-56.727,56.727-56.727 c9.769,0,18.96,2.47,26.985,6.819c-12.589-12.31-29.804-19.909-48.803-19.909c-38.558,0-69.818,31.259-69.818,69.818 s31.26,69.818,69.818,69.818c18.999,0,36.215-7.599,48.803-19.909C296.777,310.254,287.587,312.724,277.818,312.724z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFFFFF" width="256" height="170.663"/>\n<polygon fill="#D80027" points="141.357,157.303 141.357,130.59 114.643,130.59 114.643,157.303 87.93,157.303 87.93,184.016 114.643,184.016 114.643,210.729 141.357,210.729 141.357,184.016 168.07,184.016 168.07,157.303 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<path fill="#d80027" d="M0,150V0h225h225v150v150H225H0V150z"/>\n<polygon fill="#FFFFFF" points="247.3,118.3 282.5,124.1 307.4,99 312.5,131.8 344,150 312.5,168.2 307.6,201.7 282.5,175.8\n\t247.3,181.6 263,150 "/>\n<path fill="#FFFFFF" d="M240.6,228.6c-43.3,0-78.3-35.1-78.3-78.3S197.4,72,240.6,72c8.1,0,15.8,1.2,23.2,3.5c-17.3-15-39.8-24-64.5-24\n\tc-54.4,0-98.6,44.1-98.6,98.6s44.1,98.6,98.6,98.6c24.2,0,46.3-8.7,63.4-23.1C255.7,227.5,248.3,228.6,240.6,228.6z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="6.066,85.337 214.027,297.973 345.611,426.663 505.934,426.663 297.973,214.027 166.389,85.337 "/>\n<polygon points="43.364,85.337 384.69,426.663 468.636,426.663 127.31,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<rect fill="#0052B4" width="900" height="600"/>\n<path fill="#00B2EE" d="M0,300h450V0h450v600H0V300z"/>\n<path fill="#FFDA44" d="M345.3,480.9l29.4,90.6l-77.1-56H393l-77.1,56L345.3,480.9z"/>\n<path fill="#FFDA44" d="M706.4,340l29.4,90.6l-77.1-56h95.3l-77.1,56L706.4,340z"/>\n<path fill="#FFDA44" d="M812.8,261.5l29.4,90.6l-77.1-56h95.3l-77.1,56L812.8,261.5z"/>\n<path fill="#FFDA44" d="M812.8,37.4l29.4,90.6l-77.1-56h95.3l-77.1,56L812.8,37.4z"/>\n<polygon fill="#FFFFFF" points="449.9,0 449.9,206.3 368.9,206.3 449.9,260.3 449.9,300 410.2,300 281.2,214.1 281.2,300 168.7,300 168.7,214.1 39.7,300 0,300 0,260.3 81,206.3 0,206.3 0,93.8 81,93.8 0,39.9 0,0 39.7,0 168.7,85.9 168.7,0 281.2,0 281.2,85.9 410.2,0 "/>\n<polygon fill="#D80027" points="253.1,0 196.8,0 196.8,122 0,122 0,178.2 196.8,178.2 196.8,300 253.1,300 253.1,178.2 449.9,178.2 449.9,122 253.1,122 \t"/>\n<polygon fill="#2E52B2" points="449.9,39.9 449.9,93.8 368.9,93.8 "/>\n<polygon fill="#D80027" points="0,300 0,280.7 109.9,206.3 149.6,206.3 12.8,300 \t"/>\n<polygon fill="#D80027" points="12.8,0.1 149.6,93.8 109.9,93.8 0,19.4 0,0.1 "/>\n<polygon fill="#D80027" points="449.9,0.2 449.9,19.5 340,93.8 300.3,93.8 437.1,0.2 "/>\n<polygon fill="#D80027" points="437.1,300 300.3,206.3 340,206.3 449.9,280.7 449.9,300 "/>\n<path fill="#FFDA44" d="M719.9,131.6l29.4,90.6l-77.1-56h95.3l-77.1,56L719.9,131.6z"/>\n<path fill="#FFDA44" d="M584,187.7l29.4,90.6l-77.1-56h95.3l-77.1,56L584,187.7z"/>\n<path fill="#FFDA44" d="M614,430.6l29.4,90.6l-77.1-56h95.3l-77.1,56L614,430.6z"/>\n<path fill="#FFDA44" d="M488,332l29.4,90.6l-77.1-56h95.3l-77.1,56L488,332z"/>\n<path fill="#FFDA44" d="M488,464l29.4,90.6l-77.1-56h95.3l-77.1,56L488,464z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect y="85.337" fill="#0052B4" width="256" height="170.663"/>\n<polygon fill="#FFFFFF" points="186.435,170.669 162.558,181.9 175.272,205.025 149.345,200.064 146.059,226.256 128,206.993 109.94,226.256 106.655,200.064 80.728,205.024 93.442,181.899 69.565,170.669 93.442,159.438 80.728,136.313 106.655,141.273 109.941,115.081 128,134.344 146.06,115.081 149.345,141.273 175.273,136.313 162.558,159.438 "/>\n<circle fill="#0052B4" cx="128" cy="170.674" r="29.006"/>\n<path fill="#FFFFFF" d="M128,190.06c-10.692,0-19.391-8.7-19.391-19.391c0-10.692,8.7-19.391,19.391-19.391 c10.692,0,19.391,8.7,19.391,19.391C147.391,181.36,138.692,190.06,128,190.06z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#338AF3" width="512" height="341.326"/>\n<polyline fill="#6DA544" points="0,426.663 0,85.337 512,85.337 "/>\n<polygon fill="#FFDA44" points="512,152.222 512,85.337 411.67,85.337 0,359.778 0,426.663 100.33,426.663 "/>\n<polygon points="512,85.337 512,125.462 60.193,426.663 0,426.663 0,386.538 451.807,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/UA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#338AF3" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/UG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#232323" width="512" height="341.3"/>\n<rect y="56.9" fill="#FFDA44" width="512" height="56.9"/>\n<rect y="113.8" fill="#D32300" width="512" height="56.9"/>\n<rect y="227.6" fill="#FFDA44" width="512" height="56.9"/>\n<rect y="284.4" fill="#D32300" width="512" height="56.9"/>\n<circle fill="#FFFFFF" cx="256" cy="170.7" r="80.7"/>\n<path fill="#000000" d="M234.5,127.5c0.9-1.4-19.6-2-19.6-2c1.7-2.5,18.4-10.5,18.4-10.5s-0.9-6,2.7-9.8l-4.5-9.8c0,0,7-3.4,18.4-3.4\n\ts19.9,7,21,13.1l-6.4,3.4c-0.1,4.7,1.7,11.6-4.3,17.3c-5.9,5.7-8.3,6.9-8.5,18.8c0,3.9,2.3,8.2,8.8,11.7\n\tc17.4,9.3,38.6,28.2,44.6,33.9c6.1,5.7,5.1,19.2,2.6,25.2s-12.1,14.3-14.3,13.6c-2.2-0.6,1.2-9.2-3.5-11.6c0,0-8.9-7.6-16.8,0.6\n\ts-0.2,25.2,3.9,28c4.1,2.8,1.7,5-1.9,5h-28.1c-3.8,0-5.4-2.3-1.9-5c7.6-3.8,12.4-15.3,7.4-20.3c-4.9-4.9-18.3,1.5-21.5,6.3\n\tc-2.8,2.8-8.8,3.6-12.9-1.4s-4.1-10.4-1.1-12.5c7-4.8,0,0,0.1-0.1c0,0,11.9-8.6,29.9-9c3.9,0,4.8-2.2,2.2-4.8\n\tc0,0-30.9-27.4-28.1-44.2C224.1,141.7,241.1,133.7,234.5,127.5C233.2,125.7,234.5,127.5,234.5,127.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/US.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0" width="513" height="38"/>\n\t<rect y="76" width="513" height="38"/>\n\t<rect y="152" width="513" height="38"/>\n\t<rect y="228" width="513" height="38"/>\n\t<rect y="304" width="513" height="38"/>\n</g>\n<rect y="0" fill="#2E52B2" width="256.5" height="190"/>\n<g fill="#FFFFFF">\n\t<polygon points="47.8,141.9 43.8,129.1 39.5,141.9 26.3,141.9 37,149.6 33,162.4 43.8,154.5 54.5,162.4 50.3,149.6\n\t\t61.2,141.9 \t"/>\n\t<polygon points="104.2,141.9 100.1,129.1 95.9,141.9 82.7,141.9 93.4,149.6 89.3,162.4 100.1,154.5 110.8,162.4\n\t\t106.8,149.6 117.6,141.9 \t"/>\n\t<polygon points="160.6,141.9 156.4,129.1 152.4,141.9 138.9,141.9 149.8,149.6 145.6,162.4 156.4,154.5 167.3,162.4\n\t\t163.1,149.6 173.9,141.9 \t"/>\n\t<polygon points="216.9,141.9 212.8,129.1 208.6,141.9 195.4,141.9 206.1,149.6 202.1,162.4 212.8,154.5 223.6,162.4\n\t\t219.4,149.6 230.3,141.9 \t"/>\n\t<polygon points="100.1,78.3 95.9,91.1 82.7,91.1 93.4,99 89.3,111.6 100.1,103.8 110.8,111.6 106.8,99 117.6,91.1\n\t\t104.2,91.1 \t"/>\n\t<polygon points="43.8,78.3 39.5,91.1 26.3,91.1 37,99 33,111.6 43.8,103.8 54.5,111.6 50.3,99 61.2,91.1 47.8,91.1\n\t\t"/>\n\t<polygon points="156.4,78.3 152.4,91.1 138.9,91.1 149.8,99 145.6,111.6 156.4,103.8 167.3,111.6 163.1,99 173.9,91.1\n\t\t160.6,91.1 \t"/>\n\t<polygon points="212.8,78.3 208.6,91.1 195.4,91.1 206.1,99 202.1,111.6 212.8,103.8 223.6,111.6 219.4,99 230.3,91.1\n\t\t216.9,91.1 \t"/>\n\t<polygon points="43.8,27.7 39.5,40.3 26.3,40.3 37,48.2 33,60.9 43.8,53 54.5,60.9 50.3,48.2 61.2,40.3 47.8,40.3 \t"/>\n\t<polygon points="100.1,27.7 95.9,40.3 82.7,40.3 93.4,48.2 89.3,60.9 100.1,53 110.8,60.9 106.8,48.2 117.6,40.3\n\t\t104.2,40.3 \t"/>\n\t<polygon points="156.4,27.7 152.4,40.3 138.9,40.3 149.8,48.2 145.6,60.9 156.4,53 167.3,60.9 163.1,48.2 173.9,40.3\n\t\t160.6,40.3 \t"/>\n\t<polygon points="212.8,27.7 208.6,40.3 195.4,40.3 206.1,48.2 202.1,60.9 212.8,53 223.6,60.9 219.4,48.2 230.3,40.3\n\t\t216.9,40.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/UY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#338AF3">\n\t<rect y="38" width="513" height="38"/>\n\t<rect y="114" width="513" height="38"/>\n\t<rect y="190" width="513" height="38"/>\n\t<rect y="266" width="513" height="38"/>\n</g>\n<rect y="0" fill="#FFFFFF" width="256.5" height="190"/>\n<polygon fill="#FFDA44" points="192,95 165.8,107.3 179.8,132.6 151.4,127.2 147.8,155.9 128,134.8 108.2,155.9 104.6,127.2\n\t76.2,132.6 90.2,107.3 64,95 90.2,82.7 76.2,57.4 104.6,62.8 108.2,34.1 128,55.2 147.8,34.1 151.4,62.8 179.8,57.4 165.8,82.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/UZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect y="322.783" fill="#6DA544" width="512" height="103.88"/>\n<rect id="SVGCleanerId_0" y="85.337" fill="#338AF3" width="512" height="104.515"/>\n<rect y="210.877" fill="#FFFFFF" width="512" height="89.656"/>\n<g>\n\t<rect id="SVGCleanerId_0_1_" y="85.337" fill="#338AF3" width="512" height="104.515"/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M188.688,137.589c0-15.984,11.234-29.339,26.236-32.614c-2.306-0.503-4.698-0.777-7.155-0.777 c-18.442,0-33.391,14.949-33.391,33.391s14.949,33.391,33.391,33.391c2.458,0,4.85-0.273,7.155-0.777 C199.922,166.928,188.688,153.573,188.688,137.589z"/>\n\t<polygon fill="#FFFFFF" points="234.658,152.766 236.919,159.723 244.234,159.723 238.316,164.024 240.577,170.98 234.658,166.68 228.74,170.98 231.001,164.024 225.083,159.723 232.398,159.723 "/>\n\t<polygon fill="#FFFFFF" points="258.006,152.766 260.266,159.723 267.581,159.723 261.663,164.024 263.924,170.98 258.006,166.68 252.088,170.98 254.348,164.024 248.431,159.723 255.745,159.723 "/>\n\t<polygon fill="#FFFFFF" points="281.353,152.766 283.613,159.723 290.928,159.723 285.011,164.024 287.271,170.98 281.353,166.68 275.435,170.98 277.695,164.024 271.777,159.723 279.092,159.723 "/>\n\t<polygon fill="#FFFFFF" points="304.7,152.766 306.962,159.723 314.277,159.723 308.358,164.024 310.619,170.98 304.7,166.68 298.782,170.98 301.044,164.024 295.125,159.723 302.439,159.723 "/>\n\t<polygon fill="#FFFFFF" points="328.048,152.766 330.308,159.723 337.623,159.723 331.705,164.024 333.966,170.98 328.048,166.68 322.13,170.98 324.39,164.024 318.473,159.723 325.787,159.723 "/>\n\t<polygon fill="#FFFFFF" points="258.006,128.482 260.266,135.438 267.581,135.438 261.663,139.738 263.924,146.695 258.006,142.396 252.088,146.695 254.348,139.738 248.431,135.438 255.745,135.438 "/>\n\t<polygon fill="#FFFFFF" points="281.353,128.482 283.613,135.438 290.928,135.438 285.011,139.738 287.271,146.695 281.353,142.396 275.435,146.695 277.695,139.738 271.777,135.438 279.092,135.438 "/>\n\t<polygon fill="#FFFFFF" points="304.7,128.482 306.962,135.438 314.277,135.438 308.358,139.738 310.619,146.695 304.7,142.396 298.782,146.695 301.044,139.738 295.125,135.438 302.439,135.438 "/>\n\t<polygon fill="#FFFFFF" points="328.048,128.482 330.308,135.438 337.623,135.438 331.705,139.738 333.966,146.695 328.048,142.396 322.13,146.695 324.39,139.738 318.473,135.438 325.787,135.438 "/>\n\t<polygon fill="#FFFFFF" points="281.353,104.198 283.613,111.154 290.928,111.154 285.011,115.454 287.271,122.411 281.353,118.111 275.435,122.411 277.695,115.454 271.777,111.154 279.092,111.154 "/>\n\t<polygon fill="#FFFFFF" points="304.7,104.198 306.962,111.154 314.277,111.154 308.358,115.454 310.619,122.411 304.7,118.111 298.782,122.411 301.044,115.454 295.125,111.154 302.439,111.154 "/>\n\t<polygon fill="#FFFFFF" points="328.048,104.198 330.308,111.154 337.623,111.154 331.705,115.454 333.966,122.411 328.048,118.111 322.13,122.411 324.39,115.454 318.473,111.154 325.787,111.154 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect x="256" y="85.331" fill="#FFFFFF" width="256" height="341.337"/>\n<path fill="#ACABB1" d="M321.353,233.837l32.073,42.43c-5.053,7.651-5.026,17.961,0.817,25.692 c7.414,9.807,21.374,11.748,31.182,4.335c9.807-7.414,11.748-21.374,4.334-31.182c-5.843-7.731-15.756-10.568-24.495-7.795 l-49.988-66.129l-11.838,8.949l-17.759,13.424l17.899,23.677L321.353,233.837z M367.528,282.617 c3.27-2.472,7.923-1.824,10.395,1.445c2.471,3.269,1.824,7.923-1.445,10.395c-3.269,2.47-7.923,1.824-10.394-1.446 C363.613,289.743,364.259,285.088,367.528,282.617z"/>\n<path fill="#FFDA44" d="M376.367,247.24l17.899-23.677l-17.759-13.424l-11.838-8.949l-49.988,66.129 c-8.74-2.775-18.651,0.063-24.495,7.795c-7.414,9.808-5.473,23.768,4.334,31.182c9.808,7.414,23.768,5.473,31.182-4.335 c5.845-7.731,5.871-18.041,0.817-25.692l32.073-42.43L376.367,247.24z M313.863,293.011c-2.471,3.27-7.125,3.916-10.394,1.446 c-3.27-2.472-3.916-7.126-1.445-10.395c2.471-3.268,7.125-3.916,10.395-1.445C315.687,285.088,316.334,289.743,313.863,293.011z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/VC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#338AF3" width="170.663" height="341.337"/>\n<g>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<polygon fill="#6DA544" points="214.261,283.82 180.868,233.734 214.26,183.647 247.652,233.734 "/>\n\t<polygon fill="#6DA544" points="297.739,283.82 264.348,233.734 297.739,183.647 331.132,233.734 "/>\n\t<polygon fill="#6DA544" points="256,350.603 222.609,300.516 256,250.429 289.391,300.516 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n<rect fill="#FFCE00" width="22.5" height="5"/>\n<rect y="5" fill="#203899" width="22.5" height="5"/>\n<rect y="10" fill="#D82B2B" width="22.5" height="5"/>\n<polygon fill="#FFFFFF" points="12.13,5.38 12.27,5.84 12.72,5.98 12.33,6.25 12.34,6.73 11.96,6.44 11.51,6.59 11.66,6.15 11.38,5.77\n\t11.85,5.77 "/>\n<polygon fill="#FFFFFF" points="10.36,5.38 10.63,5.77 11.1,5.77 10.82,6.15 10.97,6.6 10.52,6.44 10.14,6.72 10.15,6.25 9.76,5.97\n\t10.21,5.84 "/>\n<polygon fill="#FFFFFF" points="13.8,5.94 13.79,6.42 14.18,6.69 13.72,6.83 13.58,7.28 13.31,6.9 12.83,6.9 13.12,6.52 12.97,6.07\n\t13.42,6.23 "/>\n<polygon fill="#FFFFFF" points="8.69,5.96 9.09,6.23 9.53,6.05 9.4,6.51 9.7,6.87 9.23,6.89 8.97,7.29 8.81,6.85 8.35,6.73 8.72,6.43\n\t"/>\n<polygon fill="#FFFFFF" points="15.24,7.13 15.04,7.57 15.29,7.97 14.82,7.92 14.51,8.28 14.41,7.82 13.98,7.64 14.39,7.4 14.42,6.93\n\t14.77,7.24 "/>\n<polygon fill="#FFFFFF" points="15.43,8.25 15.64,8.68 16.11,8.75 15.77,9.08 15.85,9.54 15.43,9.32 15.01,9.54 15.09,9.08 14.75,8.75\n\t15.22,8.68 "/>\n<polygon fill="#FFFFFF" points="7,8.2 7.21,8.63 7.68,8.69 7.34,9.02 7.42,9.49 7,9.27 6.58,9.49 6.66,9.02 6.32,8.69 6.79,8.63 "/>\n<polygon fill="#FFFFFF" points="7.31,7.05 7.76,7.19 8.14,6.9 8.14,7.38 8.53,7.64 8.08,7.79 7.95,8.25 7.67,7.87 7.2,7.88 7.47,7.5\n\t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/VG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="256,85.334 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>\n<g>\n\t<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n</g>\n<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n<g>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n</g>\n<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n<g>\n\t<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n\t<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n</g>\n<path fill="#FFDA44" d="M384,259.706l-46.129,46.129c8.645,16.675,26.051,28.074,46.129,28.074 c20.078,0,37.484-11.4,46.129-28.074L384,259.706z"/>\n<path fill="#6DA544" d="M332.058,178.084v81.623v0.001l0,0C332.059,299.467,384,311.649,384,311.649 s51.941-12.182,51.942-51.942l0,0v-0.001v-81.622H332.058z"/>\n<rect x="372.87" y="215.181" fill="#FFFFFF" width="22.261" height="59.359"/>\n<circle fill="#A2001D" cx="384" cy="215.181" r="11.13"/>\n<g>\n\t<rect x="346.902" y="192.92" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="346.902" y="226.312" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="346.902" y="259.703" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="192.92" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="226.312" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="259.703" fill="#FFDA44" width="14.84" height="14.84"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<path fill="#1583C4" d="M397.7,166.3L346.7,264c-1.1,2-0.3,4.5,1.8,5.6c2,1.1,4.5,0.3,5.6-1.8l51-97.7c1-2.1,0.1-4.6-2-5.5\n\tC401.1,163.7,398.8,164.4,397.7,166.3L397.7,166.3z"/>\n<path fill="#1583C4" d="M404.9,188l-57.8,75.4c-1.3,1.9-0.8,4.5,1.1,5.8c1.7,1.2,4.1,0.9,5.5-0.7l57.8-75.4c1.4-1.8,1.1-4.4-0.8-5.8\n\tC408.9,185.8,406.3,186.2,404.9,188L404.9,188z"/>\n<path fill="#1583C4" d="M379,181.3l-32.5,83.1c-0.8,2.1,0.2,4.6,2.4,5.4c2.1,0.8,4.6-0.2,5.4-2.4l32.5-83.1c0.7-2.2-0.4-4.5-2.6-5.3\n\tC382.1,178.4,379.9,179.4,379,181.3z"/>\n<path fill="#409347" d="M122.1,171.9c0.4,1.7,1.2,4.7,2.2,8.5c1.7,6.4,3.6,12.8,5.6,18.7c2.3,6.9,14.7,31.4,20.2,39.1\n\tc6.9,9.7,14.1,19.3,21.5,28.6c1.6,1.9,4.5,2.1,6.4,0.5c1.8-1.6,2.1-4.3,0.7-6.2c-7.3-9.2-14.4-18.6-21.2-28.2\n\tc-4.2-5.8-17.2-31.1-19-36.7c-2.9-8.7-5.4-17.6-7.6-26.5c-0.5-2.4-2.9-4-5.3-3.5c-2.4,0.5-4,2.9-3.5,5.3\n\tC122,171.7,122.1,171.8,122.1,171.9L122.1,171.9z"/>\n<g>\n\t<path fill="#FFD836" stroke="#231F20" stroke-miterlimit="10" d="M297.1,114.9c0,0-17.6-72.1-36.1-72.1c-6.9,0-11.9-0.6-15.4,6.4c-0.9,1.7-20.7-1.6-19.1,20.8\n\t\tc0.5,6.9,1.1-9.8,14.9-3.4c6.3,3-16.4,48.2-16.4,48.2H297.1z"/>\n\t<path fill="#FFD836" stroke="#231F20" stroke-miterlimit="10" d="M466.1,48.4l-90.9,22c-75.3,18.3-42.1,44.4-42.1,44.4l-72.1,12l-72.1-12c0,0,33.2-26.1-42.1-44.4l-90.9-22\n\t\tC43.1,45.3,38.1,51.8,45.3,63c0,0,106.6,104,126.8,112c20.2,8.1,40.8,0,40.8,0s-14.9,8.7-24,24c-9.2,15.3-4.6,34.7-38.9,40.2\n\t\tc-5.5,6.6-5,14,2.9,19.9c7.9,5.8,72.1-48.1,72.1-48.1s-24,24.4-24,36.1c0,5.1,44.1,53.8,60.1,53.8s60.1-48.7,60.1-53.8\n\t\tc0-11.7-24-36.1-24-36.1s64.2,53.9,72.1,48.1s11.4-19.3,2.8-19.9c-28-1.8-29.7-24.9-38.9-40.2c-9.2-15.3-24-24-24-24\n\t\ts20.6,8.1,40.8,0S476.7,63,476.7,63C483.9,51.8,479,45.3,466.1,48.4z"/>\n</g>\n<path fill="#FFFFFF" stroke="#231F20" stroke-miterlimit="10" d="M201.3,111.8v80.3c0,45.7,59.7,59.7,59.7,59.7s59.7-14,59.7-59.7v-80.3H201.3L201.3,111.8z"/>\n<g>\n\t<path fill="#D80027" d="M225.2,137.7v97.3c8.2,6,17,10.2,23.9,12.9V137.7H225.2L225.2,137.7z"/>\n\t<path fill="#D80027" d="M296.8,137.7v97.3c-8.2,6-17,10.2-23.9,12.9V137.7H296.8L296.8,137.7z"/>\n</g>\n<rect x="201.3" y="111.8" fill="#0052B4" width="119.4" height="37.9"/>\n<polygon fill="#1583C4" points="60.1,210.5 38.2,152.4 15.7,152.4 47.5,233.2 72.7,233.2 104.2,152.4 81.7,152.4 "/>\n<rect x="451.5" y="151.9" fill="#1583C4" width="18.9" height="81.7"/>\n</svg>',"./assets/country-flag-icons/3x2/VN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#D80027" points="196.641,85.337 0,85.337 0,426.663 196.641,426.663 512,426.663 512,85.337 "/>\n<polygon fill="#FFDA44" points="256,157.279 278.663,227.026 352,227.026 292.668,270.132 315.332,339.881 256,296.774 196.668,339.881 219.332,270.132 160,227.026 233.337,227.026 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/VU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" width="512" height="341.326"/>\n<polygon fill="#6DA544" points="512,256 512,426.663 0,426.663 215.185,256 "/>\n<polygon fill="#D80027" points="512,85.337 512,256 215.185,256 0,85.337 "/>\n<polygon points="221.001,239.304 26.868,85.337 8.956,85.337 217.124,250.435 512,250.435 512,239.304 "/>\n<polygon points="8.956,426.663 26.868,426.663 221.001,272.696 512,272.696 512,261.565 217.124,261.565 "/>\n<polygon points="0,92.44 0,106.646 188.317,256 0,405.354 0,419.559 206.229,256 "/>\n<g>\n\t<polygon fill="#FFDA44" points="8.956,85.337 0,85.337 0,92.44 206.229,256 0,419.559 0,426.663 8.956,426.663 217.124,261.565 512,261.565 512,250.435 217.124,250.435 "/>\n\t<path fill="#FFDA44" d="M63.718,292.382v-14.295c14.265,0,25.87-11.606,25.87-25.869c0-10.092-8.211-18.303-18.304-18.303 c-6.875,0-12.469,5.593-12.469,12.469c0,4.397,3.577,7.974,7.974,7.974c2.485,0,4.508-2.023,4.508-4.508h14.295 c0,10.368-8.435,18.804-18.802,18.804c-12.279-0.002-22.269-9.993-22.269-22.271c0-14.758,12.006-26.764,26.764-26.764 c17.975,0,32.599,14.623,32.599,32.599C103.884,274.363,85.866,292.382,63.718,292.382z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/WF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 100">\n<rect fill="#ED2939" width="150" height="100"/>\n<rect fill="#002395" width="20" height="44.33"/>\n<rect x="20" fill="#FFFFFF" width="20" height="44.33"/>\n<path fill="none" stroke="#FFFFFF" stroke-width="3" d="M0,44.33h62.75V0"/>\n<path fill="#FFFFFF" d="M108.08,43.29L87.96,23.17h40.25L108.08,43.29z M101.38,50L81.25,29.88v40.25L101.38,50z M108.08,56.71\n\tL87.96,76.83h40.25L108.08,56.71z M114.79,50l20.13-20.13v40.25L114.79,50z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/WORLD.svg":'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 513 342" enable-background="new 0 0 513 342" xml:space="preserve">\n<path d="M256.7,1.1c-93.4,0-169.3,76-169.3,169.3s76,169.3,169.3,169.3S426,263.8,426,170.4S350,1.1,256.7,1.1z M382.6,250.6\n\tc-17-8.1-38.4-14.3-62.5-18.2c2.6-16.4,4.2-33.9,4.6-51.9h81C403.9,206.1,395.7,230.1,382.6,250.6z M256.7,315.2\n\tc-10.7,0-22.6-14.5-31.7-38.8c-3.1-8.2-5.8-17.2-8-26.9c12.8-1.3,26.1-2,39.7-2s26.9,0.7,39.7,2c-2.2,9.7-4.9,18.7-8,26.9\n\tC279.2,300.7,267.4,315.2,256.7,315.2z M256.7,227.5c-15,0-29.6,0.8-43.6,2.2c-2.5-15.5-4-32.1-4.4-49.3h95.9\n\tc-0.4,17.2-1.9,33.8-4.4,49.3C286.3,228.2,271.7,227.5,256.7,227.5z M107.7,180.5h81c0.4,18,2,35.5,4.6,51.9\n\tc-24.1,3.9-45.5,10.1-62.5,18.2C117.6,230.1,109.4,206.1,107.7,180.5z M130.7,90.3c17,8.1,38.4,14.3,62.5,18.2\n\tc-2.6,16.4-4.2,33.9-4.6,51.9h-81C109.4,134.7,117.6,110.8,130.7,90.3z M256.7,25.7c10.7,0,22.6,14.5,31.7,38.8\n\tc3.1,8.2,5.8,17.2,8,26.9c-12.8,1.3-26.1,2-39.7,2s-26.9-0.7-39.7-2c2.2-9.7,4.9-18.7,8-26.9C234.1,40.2,245.9,25.7,256.7,25.7z\n\t M256.7,113.4c15,0,29.6-0.8,43.6-2.2c2.5,15.5,4,32.1,4.4,49.3h-95.9c0.4-17.2,1.9-33.8,4.4-49.3\n\tC227,112.7,241.7,113.4,256.7,113.4z M324.7,160.4c-0.4-18-2-35.5-4.6-51.9c24.1-3.9,45.5-10.1,62.5-18.2\n\tc13.1,20.5,21.3,44.5,23,70.1H324.7z M370.4,73.8c-14.8,6.5-33.3,11.6-54.1,14.9c-2.5-11.2-5.6-21.8-9.2-31.3\n\tc-5-13.4-10.9-24.3-17.4-32.7C321.7,32.1,349.8,49.6,370.4,73.8z M223.6,24.8c-6.5,8.3-12.4,19.3-17.4,32.7\n\tc-3.6,9.5-6.7,20.1-9.2,31.3c-20.7-3.4-39.3-8.4-54.1-14.9C163.5,49.6,191.6,32.1,223.6,24.8z M142.9,267.1\n\tc14.8-6.5,33.3-11.6,54.1-14.9c2.5,11.2,5.6,21.8,9.2,31.3c5,13.4,10.9,24.3,17.4,32.7C191.6,308.8,163.5,291.2,142.9,267.1z\n\t M289.7,316.1c6.5-8.3,12.4-19.3,17.4-32.7c3.6-9.5,6.7-20.1,9.2-31.3c20.7,3.4,39.3,8.4,54.1,14.9\n\tC349.8,291.2,321.7,308.8,289.7,316.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/WS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="256" height="170.663"/>\n<g>\n\t<polygon fill="#FFFFFF" points="165.483,181.79 168.247,190.294 177.186,190.294 169.954,195.548 172.717,204.051 165.483,198.796 158.25,204.051 161.013,195.548 153.78,190.294 162.72,190.294 "/>\n\t<polygon fill="#FFFFFF" points="120.579,115.007 125.185,129.18 140.085,129.18 128.03,137.937 132.635,152.108 120.579,143.35 108.525,152.108 113.13,137.937 101.074,129.18 115.975,129.18 "/>\n\t<polygon fill="#FFFFFF" points="165.101,129.848 169.707,144.02 184.607,144.02 172.552,152.777 177.156,166.95 165.101,158.19 153.047,166.95 157.651,152.777 145.596,144.02 160.496,144.02 "/>\n\t<polygon fill="#FFFFFF" points="129.909,189.211 134.515,203.383 149.415,203.383 137.36,212.141 141.964,226.312 129.909,217.553 117.855,226.312 122.459,212.141 110.404,203.383 125.304,203.383 "/>\n\t<polygon fill="#FFFFFF" points="90.899,152.108 95.504,166.281 110.404,166.281 98.349,175.038 102.953,189.211 90.899,180.451 78.844,189.211 83.448,175.038 71.393,166.281 86.293,166.281 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/XK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#0052B4" width="512" height="341.34"/>\n<g>\n\t<polygon fill="#FFFFFF" points="220.72,42.63 228.67,58.74 246.44,61.32 233.58,73.86 236.62,91.56 220.72,83.2 204.82,91.56\n\t\t207.85,73.86 194.99,61.32 212.77,58.74 \t"/>\n\t<polygon fill="#FFFFFF" points="291.28,42.57 299.23,58.67 317.01,61.26 304.15,73.79 307.18,91.5 291.28,83.14 275.38,91.5\n\t\t278.42,73.79 265.56,61.26 283.33,58.67 \t"/>\n\t<polygon fill="#FFFFFF" points="353.36,53.93 361.31,70.04 379.08,72.62 366.22,85.16 369.26,102.86 353.36,94.51 337.46,102.86\n\t\t340.5,85.16 327.63,72.62 345.41,70.04 \t"/>\n\t<polygon fill="#FFFFFF" points="416.37,72.23 424.32,88.34 442.09,90.93 429.23,103.46 432.27,121.17 416.37,112.81 400.47,121.17\n\t\t403.5,103.46 390.64,90.93 408.42,88.34 \t"/>\n\t<polygon fill="#FFFFFF" points="158.64,53.93 166.59,70.04 184.37,72.62 171.5,85.16 174.54,102.86 158.64,94.51 142.74,102.86\n\t\t145.78,85.16 132.92,72.62 150.69,70.04 \t"/>\n\t<polygon fill="#FFFFFF" points="95.63,72.23 103.58,88.34 121.36,90.93 108.5,103.46 111.53,121.17 95.63,112.81 79.73,121.17\n\t\t82.77,103.46 69.91,90.93 87.68,88.34 \t"/>\n</g>\n<path fill="#FFDA44" d="M217.53,259.33l-27.22-13.61l-27.22-54.43h27.22l27.22-27.22l13.61-27.22l27.22-13.61l13.61,13.61l27.22,13.61\n\tv13.61l13.61,13.61l40.83,27.22L340,245.73l-40.83,40.83l-13.61-27.22l-40.83,27.22v27.22l-13.61-13.61L217.53,259.33z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/YE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/YT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<rect fill="#FFFFFF" width="90" height="60"/>\n<path stroke="#7f7f7f" stroke-width="0.25" fill="#ABABAB" d="M12.8,38.5c0,0,4,1.6,1.2-0.5C11.6,36.3,9,40.4,9,43.1s1.2,7,7.5,7c7.6,0,11.4-5.7,11.4-11.4\n\tc0-4.8-3.7-13.5-6.5-14.6c-3.1-1.2-6.7-3.5-6.8-5c0-0.5,1.4-0.1,3.3,0.9c3.1,1.7,6.6,2.5,6.6,1.4c0-1.1-2.9-3.1-4-4.6\n\tc-1.2-1.6-0.9-5.5-3-5.5c-7.6,0-9.9,7.7-7,11.7c1.9,2.6-4.3,1-4.3,1s0,5.3,3.2,7.3c3,1.8,4.8,3.9,4.8,3.9s-0.2-4.6,0.5-3.9\n\tc0.6,0.7,11.1,4.5,10.3,12c-0.3,3-4.5,5.4-8.5,5.2c-4-0.2-6.8-2.4-6.4-5.4C10.3,38.9,12.8,38.5,12.8,38.5z"/>\n<path stroke="#7f7f7f" stroke-width="0.25" fill="#ABABAB" d="M77.2,38.5c0,0-4,1.6-1.2-0.5c2.4-1.8,5.1,2.3,5.1,5.1s-1.2,7-7.5,7c-7.6,0-11.4-5.7-11.4-11.4\n\tc0-4.8,3.7-13.5,6.5-14.6c3.1-1.2,6.7-3.5,6.8-5c0-0.5-1.4-0.1-3.3,0.9c-3.1,1.7-6.6,2.5-6.6,1.4c0-1.1,2.9-3.1,4-4.6\n\tc1.2-1.6,0.9-5.5,3-5.5c7.6,0,9.9,7.7,7,11.7c-1.9,2.6,4.3,1,4.3,1s0,5.3-3.2,7.3c-3,1.8-4.8,3.9-4.8,3.9s0.2-4.6-0.5-3.9\n\tc-0.6,0.7-11.1,4.5-10.3,12c0.3,3,4.5,5.4,8.5,5.2c4-0.2,6.8-2.4,6.4-5.4C79.7,38.9,77.2,38.5,77.2,38.5z"/>\n<g>\n\t<path fill="#DE393A" d="M31,28.8c0,0,0,12.1,0,14s2.1,1.6,2.1,1.6s8.2,0,9.3,0c1.2,0,2.6,2.3,2.6,2.3s1.4-2.3,2.5-2.3s9.6,0,9.6,0\n\t\ts2,0.2,2-1.8s0-13.9,0-13.9H31z"/>\n\t<rect x="31" y="13.1" fill="#3951A3" width="28" height="15.7"/>\n</g>\n<path fill="#FFFFFF" d="M50.1,16.5c-0.4,2.4-2.5,4.2-5.1,4.2c-2.5,0-4.6-1.8-5.1-4.2c-0.5,0.9-0.8,1.9-0.8,3c0,3.3,2.6,5.9,5.9,5.9\n\tc3.3,0,5.9-2.6,5.9-5.9C50.9,18.4,50.6,17.4,50.1,16.5z"/>\n<circle fill="#FEE05F" cx="39.1" cy="36.5" r="3"/>\n<circle fill="#FEE05F" cx="50.9" cy="36.5" r="3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon points="114.024,256.001 0,141.926 0,370.096 "/>\n<polygon fill="#FFDA44" points="161.192,256 0,94.7 0,141.926 114.024,256.001 0,370.096 0,417.234 "/>\n<path fill="#6DA544" d="M509.833,289.391L509.833,289.391c0.058-0.44,0.804-0.878,2.167-1.318V256v-33.391h-2.167H222.602 L85.33,85.337H0V94.7L161.192,256L0,417.234v9.429h85.33l137.272-137.272H509.833z"/>\n<polygon fill="#0052B4" points="503.181,322.783 236.433,322.783 132.552,426.663 512,426.663 512,322.783 "/>\n<polygon fill="#D80027" points="503.181,189.217 512,189.217 512,85.337 132.552,85.337 236.433,189.217 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<path fill="#FF9811" d="M490.668,195.476h-48c0-8.836-7.164-16-16-16s-16,7.164-16,16h-48c0,8.836,7.697,16,16.533,16h-0.533 c0,8.836,7.162,16,16,16c0,8.836,7.162,16,16,16h32c8.836,0,16-7.164,16-16c8.836,0,16-7.164,16-16h-0.533 C482.972,211.476,490.668,204.312,490.668,195.476z"/>\n<rect x="341.337" y="255.994" fill="#D80027" width="56.888" height="170.663"/>\n<rect x="455.112" y="255.994" fill="#FF9811" width="56.888" height="170.663"/>\n<rect x="398.225" y="255.994" width="56.888" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" width="512" height="341.337"/>\n<g>\n\t<rect y="134.196" fill="#FFDA44" width="512" height="48.868"/>\n\t<rect y="329.668" fill="#FFDA44" width="512" height="48.868"/>\n</g>\n<rect y="85.333" fill="#6DA544" width="512" height="48.868"/>\n<g>\n\t<rect y="183.069" fill="#D80027" width="512" height="48.868"/>\n\t<rect y="280.806" fill="#D80027" width="512" height="48.868"/>\n</g>\n<rect y="378.542" fill="#6DA544" width="512" height="48.128"/>\n<polygon fill="#FFFFFF" points="276.992,255.996 106.329,426.659 0,426.659 0,85.333 106.329,85.333 "/>\n<polygon points="256,255.996 85.334,426.662 106.321,426.662 276.988,255.996 106.321,85.33 85.334,85.33 "/>\n<polygon fill="#D80027" points="102.465,202.57 115.724,243.382 158.641,243.382 123.923,268.608 137.183,309.422 102.465,284.198 67.745,309.422 81.007,268.608 46.289,243.382 89.204,243.382 "/>\n<path fill="#FFDA44" d="M138.94,259.335l-34.559-12.243c0,0-2.553-23.955-2.708-24.766 c-1.173-6.18-6.603-10.851-13.123-10.851c-7.376,0-13.357,5.98-13.357,13.357c0,1.223,0.178,2.402,0.486,3.528l-9.689,9.755 c0,0,11.509,0,17.229,0c0,17.882-13.344,17.882-13.344,35.691l7.402,17.809h44.522l7.422-17.809h-0.004 c0.744-1.709,1.194-3.47,1.381-5.231C136.995,265.986,138.94,259.335,138.94,259.335z"/>\n</svg>\n'}),BS={};Object.keys(LS).forEach(e=>{const t=e.replace("./assets/country-flag-icons/3x2/",""),n=LS[e];BS[t]={name:`Flag${t.replace(".svg","")}`,render(){const e=document.createElement("div");e.innerHTML=n;const t=e.firstElementChild;if(t&&"SVG"===t.tagName){const e={};Array.from(t.attributes).forEach(t=>{e[t.name]=t.value});const n=t.innerHTML;return Ao("svg",{...e,innerHTML:n})}return Ao("div",{innerHTML:n})}}});const DS={class:"eid-widget-option"},xS={class:"eid-widget-optionText"};const NS=oc({name:"CountrySelectOption",props:{option:{type:Object,required:!0}},computed:{dynamicIcon(){return BS[`${this.option.value}.svg`]}}},[["render",function(e,t,n,i,a,o){return Na(),Oa("div",DS,[(Na(),Pa(hi(o.dynamicIcon),{class:"flag-icon-holder"})),Ka("div",xS,J(n.option.label),1)])}],["__scopeId","data-v-767db77a"]]),zS=oc({__name:"CountrySelect",props:{optionSelected:Function,availableCountries:Array,selectedCountry:String},setup(e){const t=e,n=Vf();function i(e){return"WORLD"===e?n.t("other-countries"):NM.getName(e,n.locale.value,{select:"official"})||NM.getName(e,"en",{select:"official"})}const a=wo(()=>{const{selectedCountry:e}=t;return e}),o=wo(()=>t.availableCountries.map(e=>({label:i(e),value:e})).sort((e,t)=>"WORLD"===e.value?-1:"WORLD"===t.value?1:e.label.localeCompare(t.label)));return(t,n)=>(Na(),Oa("div",null,[Za(It(ES),{class:"eid-widget-countrySelect",isClearable:!1,"model-value":a.value,options:o.value,classes:{menuContainer:"eid-widget-menu"},onOptionSelected:e.optionSelected},{value:gn(({option:e})=>[Za(NS,{option:e},null,8,["option"])]),option:gn(({option:e})=>[Za(NS,{option:e},null,8,["option"])]),_:1},8,["model-value","options","onOptionSelected"])]))}},[["__scopeId","data-v-875f4bd2"]]),VS={headerRow:"_headerRow_1v6gx_2",left:"_left_1v6gx_10",right:"_right_1v6gx_15",regionTitle:"_regionTitle_1v6gx_21"},RS=oc({__name:"HeaderContentCountry",setup(e){const t=Hi("useAppStore")(),{countryCode:n,availableCountries:i}=ts(t);return(e,a)=>(Na(),Oa("div",{class:K(e.$style.headerRow)},[Ka("div",{class:K([e.$style.left,e.$style.regionTitle])},J(e.$t("country")),3),Ka("div",{class:K(e.$style.right)},[Za(zS,{"selected-country":It(n),"available-countries":It(i),"option-selected":e=>function(e){try{window.localStorage.setItem("eideasySelectedCountry",e)}catch(j_){console.error(j_)}t.changeCountry(e)}(e.value)},null,8,["selected-country","available-countries","option-selected"])],2)],2))}},[["__cssModules",{$style:VS}]]);const OS=oc({name:"FlashMessages",components:{AppAlert:rc},props:{messages:Array},inject:["eidEasyFormatFlashMessage"],computed:{flashMessages(){const e=this.$t.bind(this),t=this.eidEasyFormatFlashMessage;return this.messages.map(function(n){return n.translationKey&&(n.text=e(n.translationKey)),"function"==typeof t?t(n):n})}}},[["render",function(e,t,n,i,a,o){const r=Ci("AppAlert");return Na(),Oa("div",null,[(Na(!0),Oa(Ta,null,mi(o.flashMessages,e=>(Na(),Pa(r,{key:e.text,scheme:e.scheme},{default:gn(()=>[Wa(J(e.text),1)]),_:2},1032,["scheme"]))),128))])}]]),PS={button:"_button_100ma_2",text:"_text_100ma_17",backIcon:"_backIcon_100ma_23",backCaret:"_backCaret_100ma_33",disabled:"_disabled_100ma_46"},US=oc({__name:"BackButton",props:{onClick:Function,disabled:Boolean},setup(e){const t=Vf(),n=e;function i(e){!n.disabled&&n.onClick&&n.onClick(e)}return(n,a)=>(Na(),Oa("a",{class:K([n.$style.button,{[n.$style.disabled]:e.disabled}]),href:"#",onClick:kr(i,["prevent"])},[Ka("div",{class:K(n.$style.backIcon)},[Ka("div",{class:K(n.$style.backCaret)},null,2)],2),Ka("div",{class:K(n.$style.text)},J(It(t).t("back")),3)],2))}},[["__cssModules",{$style:PS}]]),GS={headerRow:"_headerRow_tafxb_2",right:"_right_tafxb_9",titleGroup:"_titleGroup_tafxb_13",viewTitleNormalCase:"_viewTitleNormalCase_tafxb_19",viewTitle:"_viewTitle_tafxb_19",flagIcon:"_flagIcon_tafxb_33"},jS=["aria-label"],HS=oc({__name:"HeaderContentSubView",setup(e){const t=Hi("useAppStore")(),{countryCode:n,currentViewTitleKey:i,userActionsEnabled:a,showBackButton:o}=ts(t),r=Vf(),s=wo(()=>BS[`${n.value}.svg`]),l=wo(()=>NM.getName(n.value,r.locale.value,{select:"official"}));return(e,n)=>{var c,d,u;return Na(),Oa("div",{class:K(e.$style.headerRow)},[Ka("div",{class:K(e.$style.left)},[It(o)?(Na(),Pa(US,{key:0,"on-click":()=>{return e=It(cs).MethodSelection,void t.changeView(e);var e},disabled:!It(a)},null,8,["on-click","disabled"])):Qa("",!0)],2),Ka("div",{class:K(e.$style.right)},[Ka("div",{class:K(e.$style.titleGroup)},[Ka("div",{class:K(!1===(null==(d=null==(c=It(i))?void 0:c.titleOptions)?void 0:d.isCaseTransformed)?e.$style.viewTitleNormalCase:e.$style.viewTitle)},J(It(r).t(null==(u=It(i))?void 0:u.title)),3),Ka("div",{class:K(e.$style.flagIcon),"aria-label":It(r).t("country")+": "+l.value},[(Na(),Pa(hi(s.value)))],10,jS)],2)],2)],2)}}},[["__cssModules",{$style:GS}]]);const KS=oc({name:"LoadingOverlay",components:{AppSpinner:pp}},[["render",function(e,t,n,i,a,o){const r=Ci("AppSpinner");return Na(),Oa("div",{class:K(e.$style.loadingOverlay)},[Ka("div",{class:K(e.$style.spinnerHolder)},[Za(r)],2)],2)}],["__cssModules",{$style:{loadingOverlay:"_loadingOverlay_1hbmt_2",spinnerHolder:"_spinnerHolder_1hbmt_13"}}]]),ZS={mt2:"_mt2_z08ui_2",layout:"_layout_z08ui_6",main:"_main_z08ui_12",eidEasyLink:"_eidEasyLink_z08ui_27"},qS=oc({__name:"AppLayout",setup(e){const t=Hi("eidEasyClient"),n=Hi("useAppStore")(),{currentView:i,flashMessages:a,isLoading:o,showCountrySelect:r,showSignaturePolicyLink:s,showPoweredByEidEasyLink:l}=ts(n),c=wo(()=>kM[i.value]||null);function d(){!function(e,t,n){const i=new Blob([e],{type:n}),a=document.createElement("a"),o=URL.createObjectURL(i);a.href=o,a.download=t,document.body.appendChild(a),a.click(),setTimeout(function(){document.body.removeChild(a),window.URL.revokeObjectURL(o)},0)}(t.getLogs(),"diagnostics.json","application/json")}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.layout)},["MethodSelection"!==It(i)?(Na(),Pa(IM,{key:0},{default:gn(()=>[Za(HS)]),_:1})):It(r)?(Na(),Pa(IM,{key:1},{default:gn(()=>[Za(RS)]),_:1})):Qa("",!0),Ka("div",{class:K(e.$style.main)},[Za(OS,{messages:It(a)},null,8,["messages"]),Za(Vo,{name:"fade"},{default:gn(()=>[fn(Za(KS,null,null,512),[[Yo,It(o)]])]),_:1}),(Na(),Pa(hi(c.value)))],2),Za(sc,null,{default:gn(()=>[fn(Ka("a",{href:"https://eideasy.com",class:K(e.$style.eidEasyLink),target:"_blank"},J(e.$t("powered-by-eideasy")),3),[[Yo,It(l)]]),fn(Ka("span",null,[t[0]||(t[0]=Wa(" — ")),Ka("a",{href:"https://eideasy.com/practice-statement",class:K(e.$style.eidEasyLink),target:"_blank"},J(e.$t("signature-policy")),3)],512),[[Yo,It(s)]]),Ka("div",{class:K(e.$style.mt2)},[Ka("a",{href:"#",class:K(e.$style.eidEasyLink),onClick:kr(d,["prevent"])},J(e.$t("Diagnostic Info")),3)],2)]),_:1})],2))}},[["__cssModules",{$style:ZS}]]);const WS="start-at-method-selection";const JS={app:"_app_6ddy9_2"},QS={key:0},YS={__name:"App",props:["uiTheme","language","otpPhone","otpEmail","isOtpSent","otpFlow","enabledMethods","inputValues","translations","allowMethodChange","selectedMethod","countryCode"],setup(e){const t=Vf(),n=e,{uiTheme:i}=n,a=function(e){const t=ac({methodsConfigFilter:e.methodsConfigFilter});return{eidEasyClient:ls(e),eidEasyOnSuccess:t=>{if(e.onSuccess&&"function"==typeof e.onSuccess)return e.onSuccess(t)},eidEasyOnFail:t=>{if(e.onFail&&"function"==typeof e.onFail)return e.onFail(t)},eidEasyBeforeMethodSelection:t=>{if(e.beforeMethodSelection&&"function"==typeof e.beforeMethodSelection)return e.beforeMethodSelection(t)},eidEasyFormatFlashMessage:t=>e.formatFlashMessage&&"function"==typeof e.formatFlashMessage?e.formatFlashMessage(t):t,eidEasyMethodsConfig:t}}(n);ji("eidEasyClient",a.eidEasyClient),ji("eidEasyOnSuccess",a.eidEasyOnSuccess),ji("eidEasyOnFail",a.eidEasyOnFail),ji("eidEasyBeforeMethodSelection",a.eidEasyBeforeMethodSelection),ji("eidEasyFormatFlashMessage",a.eidEasyFormatFlashMessage),ji("eidEasyMethodsConfig",a.eidEasyMethodsConfig);const o=ps({methodsConfig:a.eidEasyMethodsConfig}),r=function(){const e=te(!0),t=e.run(()=>bt({}));let n=[],i=[];const a=Mt({install(e){zr(a),a._a=e,e.provide(Vr,a),e.config.globalProperties.$pinia=a,i.forEach(e=>n.push(e)),i=[]},use(e){return this._a?n.push(e):i.push(e),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return a}();zr(r);const s=o();ji("useAppStore",o);const{countryCode:l}=ts(s),c=ut([]),d=function(){const e=oo();return e&&e.ce||null}(),u=bt(),C=wo(()=>(n.otpPhone||n.otpEmail)&&n.isOtpSent&&n.otpFlow!==WS);return ga(()=>n.language,e=>{t.locale.value=n.language||"en",a.eidEasyClient.setLanguage(e)},{immediate:!0}),ga(l,e=>{a.eidEasyClient.setCountryCode(e)},{immediate:!0}),ti(()=>{if(function(e,t){Object.entries({colorPrimary:"--primary-color",colorSecondary:"--secondary-color",buttonTextColor:"--button-text-color",buttonColor:"--button-color",buttonColorHover:"--button-color-hover",inputLabelColor:"--input-label-color",fontFamily:"--font-family-default",fontSize:"--font-size-base",fontWeight:"--font-weight-default"}).forEach(([n,i])=>{const a=t[n];if(a&&"object"!=typeof a)try{e.style.setProperty(i,a)}catch(o){console.log("Failed to register CSS property",[i,o.toString()])}})}(d,i),s.init(n),s.changeMethods(n.enabledMethods),n.translations&&Object.keys(n.translations).forEach(e=>{const i=t.getLocaleMessage(e)||{};t.setLocaleMessage(e,{...i,...n.translations[e]})}),!n.allowMethodChange){if(!n.selectedMethod||!n.countryCode)throw c.push({text:"If allowMethodChange is set to false, then the following Widget parameters are required: selectedMethod, countryCode"}),new Error("If allowMethodChange is set to false, then the following Widget parameters are required: selectedMethod, countryCode");s.updateShowBackButton(!1),s.updateShowCountrySelect(!1),s.changeMethods({signature:[n.selectedMethod],identification:[n.selectedMethod]})}}),ni(()=>{let e,t=l.value.toUpperCase();var i;if(n.selectedMethod?(i=n.selectedMethod,Object.keys(a.eidEasyMethodsConfig.methodsByActionType).includes(i)?e=n.selectedMethod:console.warn(`Provided selectedMethod value: "${n.selectedMethod}" is not valid, the widget will ignore it.`)):C.value&&(e=ss.methodActionTypes.OTP_EMAIL),e||(t=function(){let e=null;try{e=window.localStorage.getItem("eideasySelectedCountry")}catch(j_){console.error(j_)}return e}()||t),e){s.selectMethod(e);const{supportedCountries:n}=a.eidEasyMethodsConfig.methodsByActionType[e];Array.isArray(n)&&!n.includes(t)&&(t=n[0].toUpperCase())}else C.value&&s.selectMethod(ss.methodActionTypes.OTP_EMAIL);s.changeCountry(t)}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.app),ref_key:"appRef",ref:u},[c.length?(Na(),Oa("div",QS,[(Na(!0),Oa(Ta,null,mi(c,e=>(Na(),Pa(rc,{key:e.text,scheme:"danger"},{default:gn(()=>[Wa(J(e.text),1)]),_:2},1024))),128))])):(Na(),Pa(qS,{key:1}))],2))}},XS={$style:JS},$S=oc(YS,[["__cssModules",XS]]),ew="osobní identifikační kód",tw="Stát",nw="Zaregistrovat se",iw="Uživatel nechtěl pokračovat a zrušil akci",aw="Zrušit",ow="Zpět",rw="nebo",sw="Varmennekortti",lw="potvrdit",cw="Název",dw="tady",uw="Přeposlat",Cw="Finalizing",pw="refresh",hw={"no-ee-id-card":"Občanský průkaz se nepodařilo nalézt. Zkontrolujte, zda je karta zasunutá ve čtečce, a restartujte prohlížeč. Software lze nainstalovat ze stránky www.id.ee.",yes:"Ano",no:"Ne","phone-number":"telefonní číslo",idcode:ew,country:tw,Sign:nw,USER_REFUSED:iw,"mobile-id":"ID mobilního telefonu","id-card":"Průkaz totožnosti","smart-id":"Smart-ID","no-lv-id-card":"Nebyl nalezen žádný lotyšský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software ze stránky https://www.eparaksts.lv/en/Downloads. V případě, že chcete soubory podepsat, tak se prosím ujistěte, že je nainstalován a aktivován plugin eParaksts pro prohlížeč.","no-lt-id-card":"Nebyl nalezen žádný litevský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software ze stránky http://www.nsc.vrm.lt/downloads.htm. Pro podpisy je také potřeba plugin prohlížeče z https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Nebyl nalezen portugalský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software z https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Nebyl nalezen srbský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software z http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Nebyl nalezen finský průkaz totožnosti. Podívejte se prosím na pokyny k instalaci softwaru na: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nebyl nalezen belgický průkaz totožnosti. Ujistěte se, že máte vloženoý průkaz a nainstalovaný software z https://eid.belgium.be.","confirm-doc-check-and-sign":"Rozumíte obsahu dokumentu a jste připraveni finalizovat podpis?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Od společnosti eIDEasy","log-in":"Přihlásit se","this-field-is-required":"Toto pole je povinné","your-verification-code":"Váš ověřovací kód:",cancel:aw,"no-response-error":"Něco se pokazilo. Ujistěte se, že máte připojení k internetu, a zkuste to znovu.",back:ow,"no-matching-countries":"Žádný odpovídající stát","id-card-read-timeout":"Čtení identifikační karty trvalo příliš dlouhou dobu. Zavřete prosím všechna otevřená okna prohlížeče a zkuste to znovu.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Schvalte žádost o identifikaci v aplikaci FREJA eID.","try-again":"Zkusit znovu","pre-sign-confirmation":'Poté, co kliknete na tlačítko "Podepsat", vás identifikujeme pomocí {method} a vytvoříme právně závazný podpis.',"login-method":"Způsob přihlášení:","finnish-online-bank":"Finská online banka","online-bank":"Online banka",or:rw,"transaction-id":"ID transakce","sign-in-evrotrust-app":"Podepište tento dokument v aplikaci Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:sw,"other-countries":"Ostatní země","email-sms":"E-mail/SMS","email-code-sent":"E-mail s kódem byl zaslán na adresu","sms-code-sent":"SMS s kódem byla zaslána na adresu","your-code":"Váš kód","signature-method":"Metoda podpisu","username-or-email":"Uživatelské jméno nebo email","cell-phone":"mobilní telefon","including-calling-code":"s kódem země včetně „+“, příklad +35112345678","enter-temp-security-code":"Zadejte dočasný bezpečnostní kód","mobile-key-signing-info":"Další informace o procesu podepisování mobilního klíče naleznete na https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Tato akce je definitivní a nevratná.","you-have-5-minutes-to-enter-the-code":"Máte 5 minut na zadání kódu, než vyprší jeho platnost.",confirm:lw,"after-confirmation-following-docs-will-be-signed":"Po potvrzení budou podepsány následující dokumenty:","code-by-sms":"Kód SMS zprávou","confirmation-code-will-be-sent-to":"Potvrzovací kód bude zaslán:",continue:"Pokračovat",name:cw,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitální podpis pin","approve-sign-request-on-freja-app":"Schvalte žádost o podpis v aplikaci FREJA eID","no-required-software":"K dokončení této akce nemáte nainstalovaný potřebný software. Postupujte podle pokynů na adrese https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Podepište s mou bankou","card-number":"číslo karty","your-sms-otp-code":"Váš sms otp kód","sign-in-halcom-app":"Podepište prosím tento dokument ve své aplikaci Halcom.","sign-in-swiss-id-app":"Podepište prosím tento dokument ve své aplikaci SwissID.","sign-in-app":"Podepište prosím tento dokument ve své aplikaci {name.}","be-id-card-signature-cancel-and-help":"Akce byla zrušena.\nZrušili jste, protože nefunguje belgické podepisování průkazu totožnosti?\nUjistěte se, že k vašemu zařízení nejsou připojeny žádné jiné USB tokeny nebo čipové karty kromě samotné belgické ID karty.\nPoté se podívejte do následujícího průvodce, abyste se ujistili, že máte nainstalovaný veškerý potřebný software: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Chybí požadovaný software. Podívejte se na následující průvodce, jak nainstalovat požadované softwarové komponenty: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"Společnost {websiteName} {companyName} žádá o přístup k vašemu jménu a osobním ID. Chcete-li povolit eID Easy, klepněte na tlačítko níže.","method-setup-info":"{method} informace o nastavení na {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token nenašel. Zkontrolujte, zda je ve čtecím a restartujte prohlížeč. Software je možné nainstalovat ze stránky https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akce byla zrušena.\nZrušili jste, protože podepisování tokenu CertSign USB nefunguje?\nUjistěte se, že k vašemu zařízení nejsou připojeny žádné další tokeny USB nebo čipové karty kromě samotné správné USB tokenové karty.\nPoté se podívejte do následujícího průvodce, abyste se ujistili, že máte nainstalovaný veškerý potřebný software: https://www.certsign.ro/en/cd/","no-id-card":"Občanský průkaz se nepodařilo nalézt. Zkontrolujte, zda je karta zasunutá ve čtečce, a restartujte prohlížeč. Software lze nainstalovat ze stránky https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} informace o nastavení na",here:dw,"no-fr-cert-europe-usb-token":"USB Token nenašel. Zkontrolujte, zda je ve čtecím a restartujte prohlížeč. Software je možné nainstalovat ze stránky https://support.certeurope.fr/telechargements/.","draw-signature":"Nakreslete podpis","Didnt receive a code?":"Neobdrželi jste kód?",Resend:uw,"signature-policy":"Podpisová politika","signer-held":"Signer held",finalizing:Cw,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:pw,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostické informace","approve-in-evrotrust-app":"Schválit v aplikaci Evrotrust"},gw=Object.freeze(Object.defineProperty({__proto__:null,Resend:uw,Sign:nw,USER_REFUSED:iw,back:ow,cancel:aw,confirm:lw,country:tw,default:hw,finalizing:Cw,here:dw,idcode:ew,name:cw,no:"Ne",or:rw,refresh:pw,varmennekortti:sw,yes:"Ano"},Symbol.toStringTag,{value:"Module"})),fw="personlig identitetskode",mw="Land",vw="Underskriv",yw="Brugeren ønskede ikke at fortsætte og annullerede handlingen",Mw="Annuller",Sw="Tilbage",ww="eller",Aw="Varmennekortti",bw="Bekræft",Fw="Navn",_w="Send igen",kw="Færdiggører",Iw="opdater",Tw={"no-ee-id-card":"ID-kort ikke fundet. Tjek venligst om kortet er i læseren og genstart browseren. Softwaren kan installeres fra siden www.id.ee.",yes:"Ja",no:"Nej","phone-number":"telefonnummer",idcode:fw,country:mw,Sign:vw,USER_REFUSED:yw,"mobile-id":"Mobil-ID","id-card":"ID-kort","smart-id":"Smart-ID","no-lv-id-card":"Intet lettisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://www.eparaksts.lv/en/Downloads. For underskrifter bedes du venligst sørge for, at eParaksts-pluginnet til browseren er installeret og aktiveret.","no-lt-id-card":"Intet litauisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra http://www.nsc.vrm.lt/downloads.htm. For underskrifter har du også brug for browserpluginnet fra https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Intet portugisisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Intet serbisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Intet finsk ID-kort fundet. Se venligst softwareinstallationsinstruktionerne fra: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Intet belgisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://eid.belgium.be. Genstart venligst browseren hvis fejlen består.","confirm-doc-check-and-sign":"Forstod du dokumentindholdet og er du klar til at færdiggøre underskriften?","eparaksts-mobile":"eParaksts-mobil","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log ind","this-field-is-required":"Dette felt er påkrævet","your-verification-code":"Din verifikationskode:",cancel:Mw,"no-response-error":"Noget gik galt. Sørg for at du har forbindelse til internettet og prøv så igen.",back:Sw,"no-matching-countries":"Ingen matchende lande","id-card-read-timeout":"Det tog for lang tid at læse ID-kortet. Luk venligst alle åbne browservinduer, og prøv igen.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Godkend identifikationsanmodningen på din FREJA eID app","try-again":"Prøv igen","pre-sign-confirmation":'Efter du har klikket på \\"Underskriv\\" identificerer vi dig ved brug af {method} og skaber en juridisk bindende underskrift.\\n',"login-method":"Login-metode:","finnish-online-bank":"Finsk onlinebank","online-bank":"Onlinebank",or:ww,"transaction-id":"Transaktions-ID","sign-in-evrotrust-app":"Underskriv venligst dette dokument i din Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:Aw,"other-countries":"Andre lande","email-sms":"Email/SMS","email-code-sent":"En e-mail med koden er blevet sendt til","sms-code-sent":"En SMS med koden er blevet sendt til","your-code":"Din kode","signature-method":"Underskriftsmetode","username-or-email":"Brugernavn eller e-mail","cell-phone":"Mobiltelefon","including-calling-code":'med landekode inklusive \\"+"\\, eksempel +35112345678',"enter-temp-security-code":"Indtast midlertidig sikkerhedskode","mobile-key-signing-info":"Du kan finde mere information om mobilnøgleunderskriftsprocessen på https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Denne handling er endelig og kan ikke fortrydes.","you-have-5-minutes-to-enter-the-code":"Du har 5 minutter til at indtaste koden, før den udløber.",confirm:bw,"after-confirmation-following-docs-will-be-signed":"Efter bekræftelse vil følgende dokumenter blive underskrevet:","code-by-sms":"Kode via SMS","confirmation-code-will-be-sent-to":"En bekræftelseskode vil blive sendt til:",continue:"Fortsæt",name:Fw,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital underskrifts-PIN","approve-sign-request-on-freja-app":"Godkend underskriftsanmodningen i din FREJA eID-app","no-required-software":"Du har ikke den nødvendige software installeret til at fuldføre denne handling. Følg instruktionerne på https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"\\u0020 eParaksts smart card","sign-with-my-bank":"Underskriv med min bank","card-number":"kortnummer","your-sms-otp-code":"Din sms-otp-kode","sign-in-halcom-app":"Underskriv venligst dette dokument i din Halcom-app.","sign-in-swiss-id-app":"Underskriv venligst dette dokument i din SwissID-app.","sign-in-app":"Underskriv venligst dette dokument i din {name-app.}","be-id-card-signature-cancel-and-help":"Handlingen blev annulleret.\nAnnullerede du fordi underskrivningen af det belgiske ID-kort ikke virker?\nSørg for at der ikke er andre USB-tokens eller smartkort tilsluttet din enhed udover det belgiske ID-kort.\nSe derefter følgende vejledning for at sikre at du har den nødvendige software installeret: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Nødvendig software mangler. Se følgende vejledning for at installere de nødvendige softwarekomponenter: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} anmoder om adgang til dit navn og personlige ID-data. For at give eID Easy tilladelse til at viderebringe disse data, klik venligst på knappen nedenfor.","method-setup-info":"Du kan finde mere info om hvordan man kommer i gang med {method} her:","i-accept-and-approve-this-doc":"Jeg accepterer og godkender indholdet af dette dokument.","sign-with-mitid":"Underskriv med MitID","log-on-with-mitid":"Log ind med MitID","sign-with-verimi":"Underskriv med Verimi","no-ro-usb-token":"USB-token blev ikke fundet. Tjek om det er i læseren og genstart browseren. Softwaren kan installeres fra siden https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Handlingen blev annulleret.\nAnnullerede du fordi CertSign USB-token underskrift ikke virker?\nSørg for at der ikke er andre USB-tokens eller smartkort tilsluttet din enhed udover det korrekte USB-tokenkort.\nSe derefter følgende vejledning for at sikre at du har den nødvendige software installeret: https://www.certsign.ro/en/cd/","no-id-card":"ID-kort blev ikke fundet. Tjek om kortet er i læseren og genstart browseren. Softwaren kan installeres fra siden https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Du kan finde mere info om hvordan man kommer i gang med {method}",here:"her","no-fr-cert-europe-usb-token":"USB-token blev ikke fundet. Tjek om det er i læseren og genstart browseren. Softwaren kan installeres fra siden https://support.certeurope.fr/telechargements/.","draw-signature":"Tegn underskrift","Didnt receive a code?":"Modtog du ikke en kode?",Resend:_w,"signature-policy":"Underskriftspolitik","signer-held":"Underskriver tilbageholdt",finalizing:kw,"local-certificate":"Lokalt certifikat","Please enter your pin2 in the Smart-ID app.":"Indtast venligst din pin2 i Smart-ID app'en.","Please enter your pin1 in the Smart-ID app.":"Indtast venligst din pin1 i Smart-ID app'en.","Click the button below if the process does not finish automatically.":"Klik på knappen nedenfor hvis processen ikke afsluttes automatisk.",refresh:Iw,"Please wait before trying again":"Vent venligst før du prøver igen","Web-eID extension is not available":"Web-eID udvidelse er ikke tilgængelig","User cancelled":"Bruger annullerede","Diagnostic Info":"Diagnostiske oplysninger","approve-in-evrotrust-app":"Godkend i Evrotrust-appen"},Ew=Object.freeze(Object.defineProperty({__proto__:null,Resend:_w,Sign:vw,USER_REFUSED:yw,back:Sw,cancel:Mw,confirm:bw,country:mw,default:Tw,finalizing:kw,here:"her",idcode:fw,name:Fw,no:"Nej",or:ww,refresh:Iw,varmennekortti:Aw,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),Lw="Nein",Bw="persönlicher Identitätscode",Dw="Land",xw="Signieren",Nw="Der Benutzer wollte nicht fortfahren und hat die Aktion abgebrochen",zw="Stornieren",Vw="Zurück ",Rw="oder",Ow="Varmennekortti",Pw="bestätigen Sie",Uw="Name",Gw="hier",jw="Erneut senden",Hw="Finalizing",Kw="refresh",Zw={"no-ee-id-card":"Ausweis nicht gefunden. Bitte überprüfen Sie, ob sich die Karte im Lesegerät befindet und starten Sie den Browser neu. Die Software kann von der Seite www.id.ee installiert werden.",yes:"Ja",no:Lw,"phone-number":"Telefonnummer",idcode:Bw,country:Dw,Sign:xw,USER_REFUSED:Nw,"mobile-id":"Handy-ID","id-card":"Ausweis","smart-id":"Smart-ID","no-lv-id-card":"Kein lettischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://www.eparaksts.lv/en/Downloads installiert haben. Für Signaturen stellen Sie bitte sicher, dass das eParaksts-Plugin für Browser installiert und aktiviert ist.","no-lt-id-card":"Kein litauischer Personalausweis gefunden. Bitte stellen Sie sicher, dass die Karte eingelegt und die Software von http://www.nsc.vrm.lt/downloads.htm installiert ist. Für Signaturen wird auch ein Browser-Plugin von https://github.com/open-eid/chrome-token-signing/releases benötigt","no-pt-id-card":"Kein portugiesischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://www.autenticacao.gov.pt/cc-aplicacao installiert ist","no-rs-id-card":"Kein serbischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von http://ca.mup.gov.rs/download-lat.html installiert haben","no-fi-id-card":"Kein finnischer Personalausweis gefunden. Bitte beachten Sie die Anweisungen zur Softwareinstallation von: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Kein belgischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://eid.belgium.be installiert haben. Für Signaturen wird auch ein Browser-Plugin von https://github.com/open-eid/chrome-token-signing/releases benötigt","confirm-doc-check-and-sign":"Haben Sie den Inhalt des Dokuments verstanden und sind bereit, die Signatur abzuschließen?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Unterstützt von eIDEasy","log-in":"Einloggen","this-field-is-required":"Dieses Feld wird benötigt","your-verification-code":"Ihr Bestätigungscode:",cancel:zw,"no-response-error":"Etwas ist schief gelaufen. Stellen Sie sicher, dass Sie mit dem Internet verbunden sind, und versuchen Sie es dann erneut.",back:Vw,"no-matching-countries":"Keine passenden Länder","id-card-read-timeout":"Das Auslesen des Ausweises hat zu lange gedauert. Bitte schließen Sie alle geöffneten Browserfenster und versuchen Sie es erneut.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Genehmigen Sie die Identifizierungsanfrage in Ihrer FREJA eID-App","try-again":"Versuchen Sie es noch Einmal","pre-sign-confirmation":'Nach dem Klick auf "Signieren" identifizieren wir Sie Ihre {method} und erstellen eine rechtsverbindliche Unterschrift.',"login-method":"Login-Methode:","finnish-online-bank":"Finnische Online-Bank","online-bank":"Online-Bank",or:Rw,"transaction-id":"Transaktions-ID","sign-in-evrotrust-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer Evrotrust-App.","eparaksts-eid":"eParaksts eID",varmennekortti:Ow,"other-countries":"Andere Länder","email-sms":"E-Mail/SMS","email-code-sent":"Eine E-Mail mit dem Code wurde gesendet an","sms-code-sent":"Eine SMS mit dem Code wurde gesendet an","your-code":"Dein Code","signature-method":"Signaturmethode","username-or-email":"Nutzername oder E-Mail","cell-phone":"Mobiltelefon","including-calling-code":'mit Ländervorwahl inklusive "+", Beispiel +35112345678',"enter-temp-security-code":"Geben Sie den temporären Sicherheitscode ein","mobile-key-signing-info":"Weitere Informationen zum Signaturprozess für mobile Schlüssel finden Sie unter https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Diese Aktion ist endgültig und unumkehrbar.","you-have-5-minutes-to-enter-the-code":"Sie haben 5 Minuten Zeit, um den Code einzugeben, bevor er abläuft.",confirm:Pw,"after-confirmation-following-docs-will-be-signed":"Nach der Bestätigung werden die folgenden Dokumente unterzeichnet:","code-by-sms":"Code über SMS","confirmation-code-will-be-sent-to":"Ein Bestätigungscode wird gesendet an:",continue:"Fortsetzen",name:Uw,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin für digitale Signatur","approve-sign-request-on-freja-app":"Die Unterschreibungsanfrage auf Ihrer FREJA eID-App genehmigen","no-required-software":"Sie haben nicht die erforderliche Software installiert, um diese Aktion auszuführen. Bitte folgen Sie den Anweisungen auf https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Unterschreiben Sie bei meiner Bank","card-number":"Kartennummer","your-sms-otp-code":"Ihr SMS-OTP-Code","sign-in-halcom-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer Halcom App.","sign-in-swiss-id-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer SwissID App.","sign-in-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer {name} App.","be-id-card-signature-cancel-and-help":"Die Aktion wurde abgebrochen.\nHaben Sie gekündigt, weil die Unterzeichnung des belgischen Personalausweises nicht funktioniert?\nStellen Sie sicher, dass außer dem belgischen Personalausweis selbst keine anderen USB-Token oder Smartcards an Ihr Gerät angeschlossen sind.\nSehen Sie sich dann die folgende Anleitung an, um sicherzustellen, dass Sie die gesamte erforderliche Software installiert haben: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Erforderliche Software fehlt. Siehe folgende Anleitung zur Installation der erforderlichen Softwarekomponenten: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{siteName} {companyName} fordert den Zugriff auf Ihren Namen und Ihre persönlichen ID-Daten. Um eID Einfach zu senden, klicken Sie bitte auf die Schaltfläche unten.","method-setup-info":"{method} setup Informationen unter {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Unterschreiben mit Verimi","no-ro-usb-token":"USB-Token nicht gefunden. Bitte prüfen Sie, ob es im Reader vorhanden ist und starten Sie den Browser neu. Die Software kann von der Seite https://www.certsign.ro/en/cd/ installiert werden.","ro-usb-token-signature-cancel-and-help":"Die Aktion wurde abgebrochen.\nHaben Sie den Vorgang abgebrochen, weil die USB-Token-Signatur von CertSign nicht funktioniert?\nStellen Sie sicher, dass außer der richtigen USB-Token-Karte selbst keine anderen USB-Tokens oder Smartcards an Ihr Gerät angeschlossen sind.\nSehen Sie sich dann die folgende Anleitung an, um sicherzustellen, dass Sie die gesamte erforderliche Software installiert haben: https://www.certsign.ro/en/cd/","no-id-card":"Ausweis nicht gefunden. Bitte überprüfen Sie, ob sich die Karte im Lesegerät befindet und starten Sie den Browser neu. Die Software kann von der Seite https://eideasy.com/web-eid-installation-guide installiert werden","method-setup-info-2":"{method} setup Informationen unter",here:Gw,"no-fr-cert-europe-usb-token":"USB-Token nicht gefunden. Bitte prüfen Sie, ob es im Reader vorhanden ist und starten Sie den Browser neu. Die Software kann von der Seite https://support.certeurope.fr/telechargements/ installiert werden.","draw-signature":"Unterschrift zeichnen","Didnt receive a code?":"Sie haben keinen Code erhalten?",Resend:jw,"signature-policy":"Signaturrichtlinie","signer-held":"Signer held",finalizing:Hw,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:Kw,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnoseinformationen","approve-in-evrotrust-app":"In der Evrotrust-App genehmigen"},qw=Object.freeze(Object.defineProperty({__proto__:null,Resend:jw,Sign:xw,USER_REFUSED:Nw,back:Vw,cancel:zw,confirm:Pw,country:Dw,default:Zw,finalizing:Hw,here:Gw,idcode:Bw,name:Uw,no:Lw,or:Rw,refresh:Kw,varmennekortti:Ow,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),Ww="personal identity code",Jw="Country",Qw="Sign",Yw="User did not wish to proceed and canceled the action",Xw="Cancel",$w="Back",eA="Varmennekortti",tA="Confirm",nA="Name",iA="here",aA="Resend",oA="Finalizing",rA="refresh",sA={"no-ee-id-card":"ID card not found. Please check if the card is in the reader and restart the browser. The software can be installed from the page www.id.ee.",yes:"Yes",no:"No","phone-number":"phone number",idcode:Ww,country:Jw,Sign:Qw,USER_REFUSED:Yw,"mobile-id":"Mobile ID","id-card":"ID card","smart-id":"Smart-ID","no-lv-id-card":"No Latvian ID card found. Please make sure you have card inserted and software installed from https://www.eparaksts.lv/en/Downloads. For signatures please make sure the eParaksts plugin for browser is installed and activated.","no-lt-id-card":"No Lithuanian ID card found. Please make sure you have card inserted and software installed from http://www.nsc.vrm.lt/downloads.htm. For signatures is also needed browser plugin from https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"No Portugal ID card found. Please make sure you have card inserted and software installed from https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"No Serbian ID card found. Please make sure you have card inserted and software installed from http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"No Finnish ID card found. Please see software installation instructions from: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"No Belgium ID card found. Please make sure you have card inserted and software installed from https://eid.belgium.be. Please restart the browser if the error persists.","confirm-doc-check-and-sign":"Did you understand the document contents and are ready to finalize the signature?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log In","this-field-is-required":"This field is required","your-verification-code":"Your verification code:",cancel:Xw,"no-response-error":"Something went wrong. Make sure you're connected to the Internet, then try again.",back:$w,"no-matching-countries":"No matching countries","id-card-read-timeout":"Reading the ID card took too long. Please close all the open browser windows and then try again.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Approve the identification request on your FREJA eID app","try-again":"Try Again","pre-sign-confirmation":'After clicking "Sign" we will identify you using {method} and create a legally binding signature.\n',"login-method":"Login method:","finnish-online-bank":"Finnish Online Bank","online-bank":"Online Bank",or:"or","transaction-id":"Transaction ID","sign-in-evrotrust-app":"Please sign this document in your Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:eA,"other-countries":"Other countries","email-sms":"Email/SMS","email-code-sent":"An email with the code has been sent to","sms-code-sent":"An SMS with the code has been sent to","your-code":"Your code","signature-method":"Signature method","username-or-email":"Username or email","cell-phone":"Cell phone","including-calling-code":'with country code including "+", example +35112345678',"enter-temp-security-code":"Enter temporary security code","mobile-key-signing-info":"You can find more information about the mobile key signing process at https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"This action is definitive and irreversible.","you-have-5-minutes-to-enter-the-code":"You have 5 minutes to enter the code before it expires.",confirm:tA,"after-confirmation-following-docs-will-be-signed":"After confirmation, the following documents will be signed:","code-by-sms":"Code by SMS","confirmation-code-will-be-sent-to":"A confirmation code will be sent to:",continue:"Continue",name:nA,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital signature pin","approve-sign-request-on-freja-app":"Approve the signing request on your FREJA eID app","no-required-software":"You do not have the necessary software installed to complete this action. Please follow the instructions at https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Sign with my bank","card-number":"card number","your-sms-otp-code":"Your sms otp code","sign-in-halcom-app":"Please sign this document in your Halcom app.","sign-in-swiss-id-app":"Please sign this document in your SwissID app.","sign-in-app":"Please sign this document in your {name} app.","be-id-card-signature-cancel-and-help":"The action was canceled.\nDid you cancel because the Belgian ID card signing is not working?\nMake sure that there are no other USB tokens or smart cards connected to your device except for the Belgian ID card itself.\nThen see the following guide to make sure that you have all the necessary software installed: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Required software is missing. See the following guide on how to install the required software components: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} is requesting to access your name and personal ID data. To authorize eID Easy forward this data please click the button below.","method-setup-info":"You can find more info on how to get started with {method} here:","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token not found. Please check if it is in the reader and restart the browser. The software can be installed from the page https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"The action was canceled.\nDid you cancel because the CertSign USB token signing is not working?\nMake sure that there are no other USB tokens or smart cards connected to your device except for the correct USB token card itself.\nThen see the following guide to make sure that you have all the necessary software installed: https://www.certsign.ro/en/cd/","no-id-card":"ID card not found. Please check if the card is in the reader and restart the browser. The software can be installed from the page https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"You can find more info on how to get started with {method}",here:iA,"no-fr-cert-europe-usb-token":"USB Token not found. Please check if it is in the reader and restart the browser. The software can be installed from the page https://support.certeurope.fr/telechargements/.","draw-signature":"Draw signature","Didnt receive a code?":"Didn't receive a code?",Resend:aA,"signature-policy":"Signature Policy","signer-held":"Signer held",finalizing:oA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:rA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostic Info","approve-in-evrotrust-app":"Approve in Evrotrust app"},lA=Object.freeze(Object.defineProperty({__proto__:null,Resend:aA,Sign:Qw,USER_REFUSED:Yw,back:$w,cancel:Xw,confirm:tA,country:Jw,default:sA,finalizing:oA,here:iA,idcode:Ww,name:nA,no:"No",or:"or",refresh:rA,varmennekortti:eA,yes:"Yes"},Symbol.toStringTag,{value:"Module"})),cA="código de identidad personal",dA="País",uA="Firmar",CA="El usuario no quiso continuar y canceló la acción",pA="Cancelar",hA="Volver",gA="Varmennekortti",fA="Confirmar",mA="Nombre",vA="aquí",yA="Reenviar",MA="Finalizing",SA="refresh",wA={"no-ee-id-card":"No se ha encontrado la tarjeta de identificación. Por favor, compruebe que la tarjeta está insertada en el lector y reinicie el navegador. El software se puede instalar a través de la página www.id.ee.",yes:"Sí",no:"No","phone-number":"número de teléfono",idcode:cA,country:dA,Sign:uA,USER_REFUSED:CA,"mobile-id":"Mobile ID","id-card":"Tarjeta de identificación","smart-id":"Smart-ID","no-lv-id-card":"No se ha encontrado ninguna tarjeta de identificación letona. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de https://www.eparaksts.lv/en/Downloads. Para las firmas, por favor asegúrese de que el plugin eParaksts para el navegador está instalado y activado.","no-lt-id-card":"No se ha encontrado ninguna tarjeta de identificación lituana. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de http://www.nsc.vrm.lt/downloads.htm. Para las firmas también es necesario el plugin del navegador de https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"No se ha encontrado ninguna tarjeta de identificación portuguesa. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado desde https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"No se ha encontrado ninguna tarjeta de identificación serbia. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"No se ha encontrado ninguna tarjeta de de identidad finlandesa. Por favor, consulte las instrucciones de instalación del software en: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"No se ha encontrado ninguna tarjeta de identificación belga. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de https://eid.belgium.be. Para las firmas también es necesario el plugin del navegador de https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"¿Ha entendido el contenido del documento y está dispuesto a firmarlo?","eparaksts-mobile":"eParaksts Mobile","powered-by-eideasy":"Con tecnología eIDEasy","log-in":"Acceder","this-field-is-required":"Este campo es obligatorio","your-verification-code":"Su código de verificación:",cancel:pA,"no-response-error":"Algo ha ido mal. Asegúrese de que está conectado a internet e inténtelo de nuevo.",back:hA,"no-matching-countries":"No hay países coincidentes","id-card-read-timeout":"La lectura de la tarjeta de identificación tardó demasiado. Por favor, cierre todas las ventanas abiertas del navegador e inténtelo de nuevo.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Apruebe la petición de identificación en su app FREJA eID","try-again":"Inténtelo de nuevo","pre-sign-confirmation":'Tras hacer clic en "Acceder" le identificaremos utilizando {method} y crearemos una firma vinculante legalmente.',"login-method":"Método de acceso:","finnish-online-bank":"Banco online finlandés","online-bank":"Banco online",or:"o","transaction-id":"ID de la transacción","sign-in-evrotrust-app":"Por favor, firme este documento en su app Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:gA,"other-countries":"Otros países","email-sms":"Email/SMS","email-code-sent":"Se ha enviado un email con el código a","sms-code-sent":"Se ha enviado un SMS con el código a","your-code":"Su código","signature-method":"Método de firma","username-or-email":"Nombre de usuario o correo electrónico","cell-phone":"Teléfono móvil","including-calling-code":'con código de país que incluye "+", ejemplo +35112345678',"enter-temp-security-code":"Ingrese el código de seguridad temporal","mobile-key-signing-info":"Puede encontrar más información sobre el proceso de firma de claves móviles en https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Esta acción es definitiva e irreversible.","you-have-5-minutes-to-enter-the-code":"Tienes 5 minutos para ingresar el código antes de que caduque.",confirm:fA,"after-confirmation-following-docs-will-be-signed":"Después de la confirmación, se firmarán los siguientes documentos:","code-by-sms":"Código via SMS","confirmation-code-will-be-sent-to":"Un código de confirmación fue enviado a:",continue:"Continuar",name:mA,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin de firma digital","approve-sign-request-on-freja-app":"Apruebe la solicitud de firma en su app FREJA eID","no-required-software":"No tiene instalado el software necesario para completar esta acción. Siga las instrucciones en https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Firmar con mi banco","card-number":"número de tarjeta","your-sms-otp-code":"Su código otp sms","sign-in-halcom-app":"Firme este documento en su aplicación Halcom.","sign-in-swiss-id-app":"Firme este documento en su aplicación SwissID.","sign-in-app":"Firme este documento en su aplicación {name.}","be-id-card-signature-cancel-and-help":"La acción fue cancelada.\n¿Canceló porque la firma de la tarjeta de identificación belga no funciona?\nAsegúrese de que no haya otros tokens USB o tarjetas inteligentes conectados a su dispositivo, excepto la propia tarjeta de identificación belga.\nLuego, consulte la siguiente guía para asegurarse de que tiene todo el software necesario instalado: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Falta el software necesario. Consulte la siguiente guía sobre cómo instalar los componentes de software necesarios: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} solicita acceder a su nombre y datos de identificación personal. Para autorizar eID Easy reenviar estos datos, haga clic en el botón a continuación.","method-setup-info":"{method} información de configuración en {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB no encontrado. Compruebe si está en el lector y reinicie el navegador. El software se puede instalar desde la página https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"La acción fue cancelada.\n¿Canceló porque la firma del token USB de CertSign no funciona?\nAsegúrese de que no haya otros tokens USB o tarjetas inteligentes conectados a su dispositivo, excepto la propia tarjeta de token USB correcta.\nLuego, consulte la siguiente guía para asegurarse de que tiene todo el software necesario instalado: https://www.certsign.ro/en/cd/","no-id-card":"No se ha encontrado la tarjeta de identificación. Por favor, compruebe que la tarjeta está insertada en el lector y reinicie el navegador. El software se puede instalar a través de la página https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} información de configuración en",here:vA,"no-fr-cert-europe-usb-token":"Token USB no encontrado. Compruebe si está en el lector y reinicie el navegador. El software se puede instalar desde la página https://support.certeurope.fr/telechargements/.","draw-signature":"Dibujar firma","Didnt receive a code?":"¿No recibiste un código?",Resend:yA,"signature-policy":"Política de firma","signer-held":"Signer held",finalizing:MA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:SA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Información de diagnóstico","approve-in-evrotrust-app":"Aprobar en la aplicación Evrotrust"},AA=Object.freeze(Object.defineProperty({__proto__:null,Resend:yA,Sign:uA,USER_REFUSED:CA,back:hA,cancel:pA,confirm:fA,country:dA,default:wA,finalizing:MA,here:vA,idcode:cA,name:mA,no:"No",or:"o",refresh:SA,varmennekortti:gA,yes:"Sí"},Symbol.toStringTag,{value:"Module"})),bA="isikukood",FA="Riik",_A="Allkirjasta",kA="Kasutaja ei soovinud jätkata ja tühistas tegevuse.",IA="Tühista",TA="Tagasi",EA="Soome Varmennekortti",LA="kinnita",BA="Nimi",DA="siin",xA="Saada uuesti",NA="Lõpetamine",zA="värskenda",VA={"no-ee-id-card":"ID kaarti ei leitud. Palun kontrolli kas kaart on korralikult lugejas ja taaskäivita oma browser. Tarkvara saab installida www.id.ee lehelt.",yes:"Jah",no:"Ei","phone-number":"mobiili number",idcode:bA,country:FA,Sign:_A,USER_REFUSED:kA,"mobile-id":"Mobiil-ID","id-card":"ID kaart","smart-id":"Smart-ID","no-lv-id-card":"Läti ID kaarti ei leitud. Palun vaata, et ID kaart oleks lugejas ja tarkvara installitud aadressilt https://www.eparaksts.lv/en/Downloads","no-lt-id-card":"Leedu ID kaarti ei leitud. Palun vaata, et ID kaart oleks lugejas ja tarkvara installitud aadressilt http://www.nsc.vrm.lt/downloads.htm","no-pt-id-card":"Portugali ID kaarti ei leitud. Palun vaata, et kaart oleks lugejas ja tarkvara installitud aadressilt https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbia ID kaarti ei leitud. Palun vaata, et kaart oleks lugejas ja tarkvara installitud aadressilt http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Soome ID kaarti ei leitud. Palun kontrolli, et kaart oleks lugejas ja leia tarkvara seadistamise juhised aadressilt: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Belgia ID kaarti ei leitud. Palun kontrolli, et kaart oleks lugejas ja tarkvara installitud aadressilt https://eid.belgium.be","confirm-doc-check-and-sign":"Kas dokumendi sisu on arusaadav ja soovid allkirjastamisega jätkata?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Logi sisse","this-field-is-required":"See on kohustuslik väli","your-verification-code":"Kontrollkood:",cancel:IA,"no-response-error":"Toiming ebaõnnestus. Palun kontrolli kas internetiühendus on olemas, sulge kõik brauseriaknad ja proovi seejärel uuesti",back:TA,"no-matching-countries":"Sobivat riiki ei leitud","id-card-read-timeout":"ID kaardi lugemine võttis liiga kaua aega. Palun sulge kõik brauseri aknad ja proovi uuesti.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Järgiga oma FREJA EID rakenduse juhiseid","try-again":"Proovi uuesti","pre-sign-confirmation":'Pärast klikkimist nupul "Allkirjasta" identifitseeritakse teid meetodiga {method} ning seejärel luuakse õiguslikult siduv allkiri.',"login-method":"Sisselogimismeetod:","finnish-online-bank":"Soome Internetipank","online-bank":"Internetipank",or:"või","transaction-id":"Tehingu ID","sign-in-evrotrust-app":"Palun allkirjasta käesolev dokument oma Evrotrusti rakenduses.","eparaksts-eid":"Läti eParaksts",varmennekortti:EA,"other-countries":"Ülejäänud riigid","email-sms":"E-Mail / SMS","email-code-sent":"E-mail koodiga on saadetud aadressile","sms-code-sent":"SMS koodiga on saadetud numbrile","your-code":"Kood","signature-method":"Allkirjastamise meetod","username-or-email":"Kasutajanimi või email","cell-phone":"mobiiltelefon","including-calling-code":'riigikoodiga, mis sisaldab "+", näiteks +35112345678',"enter-temp-security-code":"Sisestage ajutine turvakood","mobile-key-signing-info":"Lisateavet mobiilivõtme allkirjastamise protsessi kohta leiate aadressilt https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"See toiming on lõplik ja pöördumatu.","you-have-5-minutes-to-enter-the-code":"Teil on 5 minutit aega koodi sisestamiseks, enne kui see aegub.",confirm:LA,"after-confirmation-following-docs-will-be-signed":"Pärast kinnitamist allkirjastatakse järgmised dokumendid:","code-by-sms":"Kood SMSiga","confirmation-code-will-be-sent-to":"Kinnituskood saadetakse:",continue:"Edasi",name:BA,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitaalallkirja pin","approve-sign-request-on-freja-app":"Kinnitage allkirjastamine FREJA eID rakenduses","no-required-software":"Teil pole selle toimingu tegemiseks tarkvara installitud. Järgige juhiseid aadressil https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"eParaksts kiipkaart","sign-with-my-bank":"Allkirjasta minu pangaga","card-number":"kaardi number","your-sms-otp-code":"Teie SMS-i OTP-kood","sign-in-halcom-app":"Palun allkirjastage see dokument oma Halcomi rakenduses.","sign-in-swiss-id-app":"Palun allkirjastage see dokument oma SwissID rakenduses.","sign-in-app":"Palun allkirjastage see dokument oma {name} rakenduses.","be-id-card-signature-cancel-and-help":"Toiming katkestati. Kas katkestasite sest Teie Belgia ID kaardiga allkirjastamine ei toiminud? Palun veenduge, et arvutisse ei oleks ühendatud teisi digiallkirjastamise vahendeid.","be-id-signature-no-implementation":"Vajalik tarkvara puudub. Palun leidke installeerimise õpetus siit: https://eideasy.com/belgian-id-software-inst","client-request-data-confirmation":"{websiteName} {companyName} taotleb juurdepääsu Teie nimele ja isikukoodi andmetele. Selleks, et anda eID Easy-le õigus antud andmed edastada, palun klõpsake allolevale nupule.","method-setup-info":"{method} seadistusinfo {link}","i-accept-and-approve-this-doc":"Nõustun ja kinnitan selle dokumendi sisu.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Allkiri Verimiga","no-ro-usb-token":"USB Token ei leidnud. Palun kontrollige, kas see on lugejas ja käivitage brauser. Tarkvara saab installeerida lehelt https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Toiming tühistati.\nKas tühistasite, kuna CertSign USB-märgi allkirjastamine ei tööta?\nVeenduge, et teie seadmega pole ühendatud muid USB-märke ega kiipkaarte, välja arvatud õige USB tokenkaart.\nSeejärel vaadake järgmist juhendit veendumaks, et teil on installitud kogu vajalik tarkvara: https://www.certsign.ro/en/cd/","no-id-card":"ID kaarti ei leitud. Palun kontrolli kas kaart on korralikult lugejas ja taaskäivita oma browser. Tarkvara saab installida https://eideasy.com/web-eid-installation-guide lehelt","method-setup-info-2":"{method} seadistusinfo",here:DA,"no-fr-cert-europe-usb-token":"USB Token ei leidnud. Palun kontrollige, kas see on lugejas ja käivitage brauser. Tarkvara saab installeerida lehelt https://support.certeurope.fr/telechargements/.","draw-signature":"Joonista allkiri","Didnt receive a code?":"Kas te ei saanud koodi?",Resend:xA,"signature-policy":"Allkirjapoliitika","signer-held":"Allkirjastaja käes",finalizing:NA,"local-certificate":"Kohalik sertifikaat","Please enter your pin2 in the Smart-ID app.":"Palun sisestage PIN2-kood Smart-ID mobiilirakenduses.","Please enter your pin1 in the Smart-ID app.":"Palun sisestage PIN1-kood Smart-ID mobiilirakenduses.","Click the button below if the process does not finish automatically.":"Kui laadimine ei lõpe automaatselt, siis klõpsake alloleval nupul.",refresh:zA,"Please wait before trying again":"Palun oodake enne uuesti proovimist","Web-eID extension is not available":"Web-eID laiendus pole saadaval","User cancelled":"Kasutaja tühistas","Diagnostic Info":"Diagnostiline teave","approve-in-evrotrust-app":"Kinnita Evrotrusti rakenduses"},RA=Object.freeze(Object.defineProperty({__proto__:null,Resend:xA,Sign:_A,USER_REFUSED:kA,back:TA,cancel:IA,confirm:LA,country:FA,default:VA,finalizing:NA,here:DA,idcode:bA,name:BA,no:"Ei",or:"või",refresh:zA,varmennekortti:EA,yes:"Jah"},Symbol.toStringTag,{value:"Module"})),OA="Kyllä",PA="henkilötunnus",UA="Allekirjoita",GA="Käyttäjä ei halunnut jatkaa ja peruutti toiminnon.",jA="Peruuta",HA="Takaisin",KA="tai\n",ZA="Varmennekortti",qA="vahvistaa",WA="Nimi",JA="tässä",QA="Uudelleen lähettää",YA="Finalizing",XA="refresh",$A={"no-ee-id-card":"Henkilökorttia ei löydy. Tarkista, että kortti on lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta www.id.ee.",yes:OA,no:"Ei","phone-number":"puhelinnumero",idcode:PA,country:"Maa",Sign:UA,USER_REFUSED:GA,"mobile-id":"Mobiilitunnus","id-card":"Henkilökortti","smart-id":"Smart-ID","no-lv-id-card":"Latvian henkilökorttia ei löydetty. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://www.eparaksts.lv/en/Downloads. Varmista allekirjoituksia varten, että selaimen eParaksts-lisäosa on asennettu ja aktivoitu.","no-lt-id-card":"Liettualaista henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta http://www.nsc.vrm.lt/downloads.htm. Allekirjoituksia varten tarvitaan myös selainlaajennus osoitteesta https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Portugalin henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Serbialaista henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Suomalaista henkilökorttia ei löytynyt. Katso ohjelmiston asennusohjeet osoitteesta: https://dvv.fi/kansalaisvarmenne-kortinlukijaohjelmisto","no-be-id-card":"Belgian henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://eid.belgium.be.","confirm-doc-check-and-sign":"Ymmärsitkö asiakirjan sisällön ja oletko valmis viimeistelemään allekirjoituksen?","eparaksts-mobile":"eParaksts mobiili","powered-by-eideasy":"eIDEasyn palvelu","log-in":"Kirjaudu sisään","this-field-is-required":"Tämä kenttä on pakollinen","your-verification-code":"Vahvistuskoodisi:",cancel:jA,"no-response-error":"Jokin meni pieleen. Varmista, että olet yhteydessä Internetiin, ja yritä sitten uudelleen.",back:HA,"no-matching-countries":"Ei vastaavaa maata","id-card-read-timeout":"Henkilökortin lukeminen kesti liian kauan. Sulje kaikki avoimet selainikkunat ja yritä sitten uudelleen.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Hyväksy tunnistuspyyntö FREJA eID -sovelluksessa.","try-again":"Yritä uudelleen","pre-sign-confirmation":'Kun olet klikannut "Allekirjoita", tunnistamme sinut valitsemaasi metodia käyttäen ( {method} ) ja luomme oikeudellisesti sitovan allekirjoituksen.',"login-method":"Kirjautumismenetelmä:","finnish-online-bank":"Suomalainen verkkopankki tai mobiilivarmenne","online-bank":"Verkkopankki",or:KA,"transaction-id":"Tapahtuman tunnus","sign-in-evrotrust-app":"Allekirjoita tämä asiakirja Evrotrust -sovelluksessasi.\n","eparaksts-eid":"eParaksts eID",varmennekortti:ZA,"other-countries":"Muut maat","email-sms":"Sähköposti/SMS","email-code-sent":"Koodin sisältävä sähköposti on lähetetty osoitteeseen","sms-code-sent":"Tekstiviesti koodilla on lähetetty osoitteeseen","your-code":"Koodisi","signature-method":"Allekirjoitustapa","username-or-email":"Käyttäjätunnus tai sähköpostiosoite","cell-phone":"kännykkä","including-calling-code":'maakoodilla, joka sisältää "+", esimerkiksi +35112345678',"enter-temp-security-code":"Syötä väliaikainen suojakoodi","mobile-key-signing-info":"Lisätietoja mobiiliavaimen allekirjoitusprosessista on osoitteessa https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Tämä toimenpide on lopullinen ja peruuttamaton.","you-have-5-minutes-to-enter-the-code":"Sinulla on 5 minuuttia aikaa syöttää koodi ennen kuin se vanhenee.",confirm:qA,"after-confirmation-following-docs-will-be-signed":"Vahvistuksen jälkeen allekirjoitetaan seuraavat asiakirjat:","code-by-sms":"SMS-koodi","confirmation-code-will-be-sent-to":"Vahvistuskoodi lähetetetään tälle vastaanottajalle:",continue:"Jatka",name:WA,"chave-movel":"Chave Móvel","digital-signature-pin":"Sähköisen allekirjoituksen PIN-koodi","approve-sign-request-on-freja-app":"Hyväksy allekirjoituspyyntö Freja eID-sovelluksessasi","no-required-software":"Sinulla ei ole asennettuna ohjelmistoa tämän toiminnon suorittamiseen. Seuraa ohjeita osoitteessa https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Allekirjoita pankissani","card-number":"kortin numero","your-sms-otp-code":"SMS OTP-koodisi","sign-in-halcom-app":"Allekirjoita tämä asiakirja Halcom-sovelluksessasi.","sign-in-swiss-id-app":"Vänligen underteckna detta dokument i din SwissID-app.","sign-in-app":"Allekirjoita tämä asiakirja {name-sovelluksessasi.}","be-id-card-signature-cancel-and-help":"Toiminta peruttiin.\nPeruutitko, koska Belgian henkilökortin allekirjoitus ei toimi?\nVarmista, että laitteeseen ei ole liitetty muita USB-tunnuksia tai älykortteja, paitsi itse belgialainen henkilökortti.\nKatso sitten seuraava opas varmistaaksesi, että sinulla on kaikki tarvittavat ohjelmistot asennettuna: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Vaadittu ohjelmisto puuttuu. Katso seuraava opas tarvittavien ohjelmistokomponenttien asentamisesta: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} pyytää pääsyä nimesi ja tunnustietoihisi. Voit valtuuttaa eID Easyn välittämään nämä tiedot napsauttamalla alla olevaa painiketta.","method-setup-info":"{method} asetustiedot osoitteessa {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB-tunnusta ei löydy. Tarkista, onko se lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Toiminta peruttiin.\nPeruutitko, koska CertSign USB -tunnuksen allekirjoitus ei toimi?\nVarmista, että laitteeseen ei ole liitetty muita USB-tunnuksia tai älykortteja, paitsi itse oikea USB-tunnuskortti.\nKatso sitten seuraava opas varmistaaksesi, että sinulla on kaikki tarvittavat ohjelmistot asennettuna: https://www.certsign.ro/en/cd/","no-id-card":"Henkilökorttia ei löydy. Tarkista, että kortti on lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} asetustiedot osoitteessa",here:JA,"no-fr-cert-europe-usb-token":"USB-tunnusta ei löydy. Tarkista, onko se lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://support.certeurope.fr/telechargements/.","draw-signature":"Piirrä allekirjoitus","Didnt receive a code?":"Etkö saanut koodia?",Resend:QA,"signature-policy":"Allekirjoituskäytäntö","signer-held":"Signer held",finalizing:YA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Syötä PIN2-koodisi Smart-ID-sovellukseen.","Please enter your pin1 in the Smart-ID app.":"Kirjoita PIN1-koodisi Smart-ID-sovellukseen.","Click the button below if the process does not finish automatically.":"Napsauta alla olevaa painiketta, jos prosessi ei lopu automaattisesti.",refresh:XA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostiset tiedot","approve-in-evrotrust-app":"Hyväksy Evrotrust-sovelluksessa"},eb=Object.freeze(Object.defineProperty({__proto__:null,Resend:QA,Sign:UA,USER_REFUSED:GA,back:HA,cancel:jA,confirm:qA,country:"Maa",default:$A,finalizing:YA,here:JA,idcode:PA,name:WA,no:"Ei",or:KA,refresh:XA,varmennekortti:ZA,yes:OA},Symbol.toStringTag,{value:"Module"})),tb="code d'identité personnel",nb="Pays",ib="Signer",ab="L'utilisateur n'a pas souhaité continuer et a annulé l'action",ob="Annuler",rb="Retour",sb="Varmennekortti",lb="confirmer",cb="Renvoyer",db="Finalizing",ub="refresh",Cb={"no-ee-id-card":"Carte d'identité introuvable. Veuillez vérifier si la carte est dans le lecteur et redémarrer le navigateur. Le logiciel peut être installé depuis la page www.id.ee.",yes:"Oui",no:"Non","phone-number":"numéro de téléphone",idcode:tb,country:nb,Sign:ib,USER_REFUSED:ab,"mobile-id":"Mobile ID","id-card":"Carte d'identité","smart-id":"Smart-ID","no-lv-id-card":"Aucune carte d'identité lettone n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site https://www.eparaksts.lv/en/Downloads est installé. Pour les signatures, assurez-vous que le plugin eParaksts pour navigateur est installé et activé.","no-lt-id-card":"Aucune carte d'identité lituanienne n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site http://www.nsc.vrm.lt/downloads.htm est installé. Pour les signatures, il est également nécessaire d'installer le plugin de navigateur trouvable ici https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Aucune carte d'identité portugaise n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site https://www.autenticacao.gov.pt/cc-aplicacao est installé.","no-rs-id-card":"Aucune carte d'identité serbe n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site http://ca.mup.gov.rs/download-lat.html est installé.","no-fi-id-card":"Aucune carte d'identité finlandaise n'a été trouvée. Veuillez consulter les instructions d'installation logicielle sur : https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Aucune carte d'identité belge trouvée. Assurez-vous d'avoir inséré la carte et installé le logiciel depuis https://eid.belgium.be. Veuillez redémarrer le navigateur si l'erreur persiste.","confirm-doc-check-and-sign":"Avez-vous compris le contenu du document et êtes-vous prêt à finaliser la signature ?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Alimenté par eIDEasy","log-in":"Se connecter","this-field-is-required":"Ce champ est obligatoire","your-verification-code":"Votre code de vérification :",cancel:ob,"no-response-error":"Quelque chose a dysfonctionné. Assurez-vous d'être connecté à Internet, puis réessayez.",back:rb,"no-matching-countries":"Aucun pays correspondant","id-card-read-timeout":"La lecture de la carte d'identité a pris trop de temps. Veuillez fermer toutes les fenêtres ouvertes du navigateur, puis réessayer.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Validez la demande d'identification sur votre application FREJA eID","try-again":"Veuillez réessayer","pre-sign-confirmation":'Après avoir cliqué sur "Signer", nous vous identifierons à l\'aide de {method} et créerons une signature juridiquement contraignante.',"login-method":"Méthode de connexion :","finnish-online-bank":"Banque en ligne finlandaise","online-bank":"Banque en ligne",or:"ou","transaction-id":"ID de transaction","sign-in-evrotrust-app":"Veuillez signer ce document dans votre application Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:sb,"other-countries":"Autres pays","email-sms":"E-mail / SMS","email-code-sent":"Un e-mail avec le code a été envoyé à","sms-code-sent":"Un SMS avec le code a été envoyé à","your-code":"Votre code","signature-method":"Méthode de signature","username-or-email":"Nom d'utilisateur ou email","cell-phone":"téléphone portable","including-calling-code":'avec code pays incluant "+", exemple +35112345678',"enter-temp-security-code":"Entrez le code de sécurité temporaire","mobile-key-signing-info":"Vous pouvez trouver plus d'informations sur le processus de signature de clé mobile sur https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Cette action est définitive et irréversible.","you-have-5-minutes-to-enter-the-code":"Vous avez 5 minutes pour entrer le code avant qu'il n'expire.",confirm:lb,"after-confirmation-following-docs-will-be-signed":"Après confirmation, les documents suivants seront signés :","code-by-sms":"Code par SMS","confirmation-code-will-be-sent-to":"Un code de confirmation sera envoyé à:",continue:"Continuer",name:"Nom","chave-movel":"Chave Móvel","digital-signature-pin":"Broche de signature numérique","approve-sign-request-on-freja-app":"Approuver la demande de signature sur votre application FREJA eID","no-required-software":"Vous n'avez pas installé le logiciel nécessaire pour effectuer cette action. Veuillez suivre les instructions sur https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Signer avec ma banque","card-number":"numéro de carte","your-sms-otp-code":"Votre code sms otp","sign-in-halcom-app":"Veuillez signer ce document dans votre application Halcom.","sign-in-swiss-id-app":"Veuillez signer ce document dans votre application SwissID.","sign-in-app":"Veuillez signer ce document dans votre application {name.}","be-id-card-signature-cancel-and-help":"L'action a été annulée.\nVous avez annulé parce que la signature de la carte d'identité belge ne fonctionne pas ?\nAssurez-vous qu'aucun autre jeton USB ou carte à puce n'est connecté à votre appareil, à l'exception de la carte d'identité belge elle-même.\nConsultez ensuite le guide suivant pour vous assurer que tous les logiciels nécessaires sont installés {} https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Le logiciel requis est manquant. Consultez le guide suivant pour savoir comment installer les composants logiciels requis {} https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} demande l'accès à vos données de nom et d'identité personnelle. Pour autoriser l'identification électronique à transférer facilement ces données, veuillez cliquer sur le bouton ci-dessous.","method-setup-info":"Des informations de configuration de la {method} à l'adresse {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Jeton USB introuvable. Veuillez vérifier s'il se trouve dans le lecteur et redémarrez le navigateur. Le logiciel peut être installé à partir de la page https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"L'action a été annulée.\nAvez-vous annulé car la signature du jeton USB CertSign ne fonctionne pas ?\nAssurez-vous qu'aucun autre jeton USB ou carte à puce n'est connecté à votre appareil, à l'exception de la bonne carte à jeton USB elle-même.\nConsultez ensuite le guide suivant pour vous assurer que tous les logiciels nécessaires sont installés : https://www.certsign.ro/en/cd/","no-id-card":"Carte d'identité introuvable. Veuillez vérifier si la carte est dans le lecteur et redémarrer le navigateur. Le logiciel peut être installé depuis la page https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Des informations de configuration de la {method} à l'adresse",here:"ici","no-fr-cert-europe-usb-token":"Jeton USB introuvable. Veuillez vérifier s'il se trouve dans le lecteur et redémarrez le navigateur. Le logiciel peut être installé à partir de la page https://support.certeurope.fr/telechargements/.","draw-signature":"Dessiner une signature","Didnt receive a code?":"Vous n'avez pas reçu de code?",Resend:cb,"signature-policy":"Politique de signature","signer-held":"Signer held",finalizing:db,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:ub,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informations de diagnostic","approve-in-evrotrust-app":"Approuver dans l'application Evrotrust"},pb=Object.freeze(Object.defineProperty({__proto__:null,Resend:cb,Sign:ib,USER_REFUSED:ab,back:rb,cancel:ob,confirm:lb,country:nb,default:Cb,finalizing:db,here:"ici",idcode:tb,name:"Nom",no:"Non",or:"ou",refresh:ub,varmennekortti:sb,yes:"Oui"},Symbol.toStringTag,{value:"Module"})),hb="codice di identità personale",gb="Nazione",fb="Firma",mb="L'utente non ha voluto procedere e ha annullato l'azione",vb="Annulla",yb="Indietro",Mb="oppure",Sb="Varmennekortti",wb="Confermare",Ab="Nome",bb="Invia nuovamente",Fb="Finalizing",_b="refresh",kb={"no-ee-id-card":"Carta d'identità non trovata. Si prega di verificare se la carta è nel lettore e riavviare il browser. Il software può essere installato dalla pagina www.id.ee.",yes:"Sì",no:"No","phone-number":"numero di telefono",idcode:hb,country:gb,Sign:fb,USER_REFUSED:mb,"mobile-id":"Mobile ID","id-card":"Carta d'identità","smart-id":"Smart-ID","no-lv-id-card":"Nessuna carta d'identità lettone trovata. Assicurati di avere la scheda inserita e il software installato da https://www.eparaksts.lv/en/Downloads. Per le firme, assicurati che il plug-in eParaksts per il browser sia installato e attivato.","no-lt-id-card":"Nessuna carta d'identità lituana trovata. Assicurati di avere la scheda inserita e il software installato da http://www.nsc.vrm.lt/downloads.htm. Per le firme è necessario anche il plug-in del browser da https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nessuna carta d'identità portoghese trovata. Assicurati di avere la scheda inserita e il software installato da https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Nessuna carta d'identità serba trovata. Assicurati di avere la scheda inserita e il software installato da http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Non è stata trovata alcuna carta d'identità finlandese. Consulta le istruzioni per l'installazione del software su: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Non è stata trovata alcuna carta d'identità belga. Assicurati di aver inserito la carta e di aver installato il software da https://eid.belgium.be. Se l'errore persiste, riavvia il browser.","confirm-doc-check-and-sign":"Comprendi i contenuti del documento e sei pronto a finalizzare la firma?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log In","this-field-is-required":"Questo campo è richiesto","your-verification-code":"Il tuo codice di verifica:",cancel:vb,"no-response-error":"Qualcosa è andato storto. Assicurati di essere connesso ad Internet, quindi prova ancora.",back:yb,"no-matching-countries":"Nessun paese corrispondente","id-card-read-timeout":"La lettura della carta di identità ha richiesto troppo. Ti preghiamo di chiudere tutte le finestre aperte del browser e riprovare.","zeal-id":"ZealiD","freja-eid":"eID Freja","approve-id-request-on-freja-app":"Approva la richiesta di identificazione sulla tua app FREJA eID","try-again":"Prova ancora","pre-sign-confirmation":'Dopo aver cliccato "Firma" ti identificheremo usando {method} e creeremo una firma legalmente vincolante.',"login-method":"Metodo di login:","finnish-online-bank":"Banca Online finlandese","online-bank":"Banca Online",or:Mb,"transaction-id":"ID Transazione","sign-in-evrotrust-app":"Per piacere firma questo documento nella tua app Evrotrust.","eparaksts-eid":"eID eParaksts",varmennekortti:Sb,"other-countries":"Altri paesi","email-sms":"E-mail/SMS","email-code-sent":"Una email con il codice è stata inviata a","sms-code-sent":"Un SMS con il codice è stato inviato a","your-code":"Il tuo codice","signature-method":"Metodo di firma","username-or-email":"Nome utente o email","cell-phone":"cellulare","including-calling-code":'con prefisso internazionale comprensivo di "+", esempio +35112345678',"enter-temp-security-code":"Inserisci il codice di sicurezza temporaneo","mobile-key-signing-info":"Puoi trovare maggiori informazioni sul processo di firma della chiave mobile su https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Questa azione è definitiva e irreversibile.\n","you-have-5-minutes-to-enter-the-code":"Hai 5 minuti per inserire il codice prima che scada.\n",confirm:wb,"after-confirmation-following-docs-will-be-signed":"Dopo la conferma, verranno firmati i seguenti documenti:","code-by-sms":"Codice per SMS","confirmation-code-will-be-sent-to":"Un codice di conferma verrà inviato a:",continue:"Continua\n",name:Ab,"chave-movel":"Chave Móvel","digital-signature-pin":"Spilla per firma digitale","approve-sign-request-on-freja-app":"Approva la richiesta di firma sulla tua applicazione FREJA eID","no-required-software":"Non hai installato il software necessario per completare questa azione. Segui le istruzioni di https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Firma con la mia banca","card-number":"numero di carta","your-sms-otp-code":"Il tuo codice sms otp","sign-in-halcom-app":"Firma questo documento nella tua app Halcom.","sign-in-swiss-id-app":"Firma questo documento nella tua app SwissID.","sign-in-app":"Firma questo documento nella tua app {name.}","be-id-card-signature-cancel-and-help":"L'azione è stata annullata.\nHai annullato perché la firma della carta d'identità belga non funziona?\nAssicurati che non ci siano altri token USB o smart card collegati al tuo dispositivo ad eccezione della stessa carta d'identità belga.\nQuindi consulta la seguente guida per assicurarti di aver installato tutto il software necessario: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Manca il software richiesto. Consulta la seguente guida su come installare i componenti software richiesti: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} richiede di accedere al tuo nome e ai dati personali. Per autorizzare eID Facile inoltrare questi dati, fare clic sul pulsante qui sotto.","method-setup-info":"{method} setup informazioni su {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB non trovato. Controlla se è nel lettore e riavvia il browser. Il software può essere installato dalla pagina https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"L'azione è stata annullata.\nHai annullato perché la firma del token USB CertSign non funziona?\nAssicurati che non ci siano altri token USB o smart card collegati al tuo dispositivo ad eccezione della stessa token card USB corretta.\nQuindi consultare la seguente guida per assicurarsi di avere installato tutto il software necessario: https://www.certsign.ro/en/cd/","no-id-card":"Carta d'identità non trovata. Si prega di verificare se la carta è nel lettore e riavviare il browser. Il software può essere installato dalla pagina https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informazioni su",here:"qui","no-fr-cert-europe-usb-token":"Token USB non trovato. Controlla se è nel lettore e riavvia il browser. Il software può essere installato dalla pagina https://support.certeurope.fr/telechargements/.","draw-signature":"Disegna la firma","Didnt receive a code?":"Non hai ricevuto un codice?",Resend:bb,"signature-policy":"Politica di firma","signer-held":"Signer held",finalizing:Fb,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:_b,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informazioni diagnostiche","approve-in-evrotrust-app":"Approva nell'app Evrotrust"},Ib=Object.freeze(Object.defineProperty({__proto__:null,Resend:bb,Sign:fb,USER_REFUSED:mb,back:yb,cancel:vb,confirm:wb,country:gb,default:kb,finalizing:Fb,here:"qui",idcode:hb,name:Ab,no:"No",or:Mb,refresh:_b,varmennekortti:Sb,yes:"Sì"},Symbol.toStringTag,{value:"Module"})),Tb="Taip",Eb="asmens kodas",Lb="Šalis",Bb="Pasirašyti",Db="Vartotojas šį veiksmą nutraukė.",xb="Atšaukti",Nb="Atgal",zb="arba",Vb="Varmennekortti",Rb="patvirtinti",Ob="Vardas",Pb="Persiūsti",Ub="Finalizing",Gb="atnaujinti",jb={"no-ee-id-card":"Nepavyko rasti prijungtos asmens tapatybės kortelės. Įsitikinkite, kad kortelė tinkamai prijungta prie skaitytuvo, o šis – prie kompiuterio ir iš naujo paleiskite naršyklę. Programinę įrangą galite rasti www.id.ee",yes:Tb,no:"Ne","phone-number":"telefono numeris",idcode:Eb,country:Lb,Sign:Bb,USER_REFUSED:Db,"mobile-id":"M. parašas","id-card":"Asmens tapatybės kortelė","smart-id":"Smart-ID","no-lv-id-card":'Latvijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://www.eparaksts.lv/en/Downloads. Norėdami pasirašyti, įsitikinkite, kad naršyklės įskiepis "eParaksts" yra įdiegtas ir aktyvuotas.',"no-lt-id-card":"Nerasta asmens tapatybės kortelė. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš http://www.nsc.vrm.lt/downloads.htm","no-pt-id-card":"Portugalijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Suomijos asmens tapatybės kortelės nerasta. Žiūrėkite programinės įrangos diegimo instrukcijas iš: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Belgijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://eid.belgium.be. Parašams taip pat reikalingas naršyklės įskiepis iš https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Ar supratote dokumento turinį ir esate pasirengę pasirašyti?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Prisijungti","this-field-is-required":"Šį lauką būtina užpildyti","your-verification-code":"Jūsų patvirtinimo kodas:",cancel:xb,"no-response-error":"Kažkas ne taip. Įsitikinkite, kad esate prisijungę prie interneto, tada bandykite dar kartą.",back:Nb,"no-matching-countries":"Nėra atitinkamų šalių","id-card-read-timeout":"Perskaityti asmens tapatybės kortelę užtruko per ilgai. Uždarykite visus atidarytus naršyklės langus ir bandykite dar kartą.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Patvirtinkite identifikavimo prašymą savo FREJA eID programėlėje","try-again":"Bandykite dar kartą","pre-sign-confirmation":"Spustelėję „Pasirašyti“ mes identifikuosime jus naudodami: {method} ir sukursime teisiškai privalomą parašą.","login-method":"Prisijungimo būdas:","finnish-online-bank":"Suomijos interneto bankas","online-bank":"Interneto bankas",or:zb,"transaction-id":"Sandorio ID","sign-in-evrotrust-app":"Pasirašykite šį dokumentą savo „Evrotrust“ programėlėje.","eparaksts-eid":"eParaksts eID",varmennekortti:Vb,"other-countries":"Kitos šalys","email-sms":"El. paštas/SMS žinutė","email-code-sent":"El. laiškas su kodu išsiųstas ","sms-code-sent":"Buvo išsiųsta SMS žinutė su kodu","your-code":"Jūsų kodas","signature-method":"Pasirašymo būdas","username-or-email":"Vartotojo vardas arba el. pašto adresas","cell-phone":"Mobilusis telefonas","including-calling-code":"su šalies kodu, įskaitant „+“, pavyzdžiui, +35112345678","enter-temp-security-code":"Įveskite laikiną apsaugos kodą","mobile-key-signing-info":"Daugiau informacijos apie mobiliojo rakto pasirašymo procesą galite rasti adresu https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Šis veiksmas yra galutinis ir negrįžtamas.","you-have-5-minutes-to-enter-the-code":"Turite 5 minutes įvesti kodą, kol jis pasibaigs.",confirm:Rb,"after-confirmation-following-docs-will-be-signed":"Po patvirtinimo bus pasirašyti šie dokumentai:","code-by-sms":"SMS kodas","confirmation-code-will-be-sent-to":"Patvirtinimo kodas bus išsiųstas:",continue:"Tęsti",name:Ob,"chave-movel":"Chave Móvel","digital-signature-pin":"Skaitmeninio parašo PIN kodas","approve-sign-request-on-freja-app":"Patvirtinkite pasirašymo prašymą savo FREJA eID programėlėje","no-required-software":"Neturite įdiegtos programinės įrangos, reikalingos šiam veiksmui atlikti. Vykdykite instrukcijas adresu https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Pasirašykite su mano banku","card-number":"kortelės numeris","your-sms-otp-code":"Jūsų sms otp kodas","sign-in-halcom-app":"Pasirašykite šį dokumentą savo „Halcom“ programėlėje.","sign-in-swiss-id-app":"Pasirašykite šį dokumentą savo SwissID programėlėje.","sign-in-app":"Pasirašykite šį dokumentą savo {name} programėlėje.","be-id-card-signature-cancel-and-help":"Akcija buvo atšaukta.\nAr atšaukėte, nes neveikia Belgijos asmens tapatybės kortelės pasirašymas?\nĮsitikinkite, kad prie jūsų įrenginio nėra prijungtų kitų USB žetonų ar intelektualiųjų kortelių, išskyrus pačią Belgijos asmens tapatybės kortelę.\nTada peržiūrėkite šį vadovą, kad įsitikintumėte, jog įdiegta visa reikalinga programinė įranga: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Trūksta reikiamos programinės įrangos. Žr. šį vadovą, kaip įdiegti reikiamus programinės įrangos komponentus: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} prašo prieigos prie jūsų vardo ir asmens ID duomenų. Norėdami įgalioti „eID Easy“ persiųsti šiuos duomenis, spustelėkite toliau esantį mygtuką.","method-setup-info":"{method} nustatymo informacija adresu {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB prieigos raktas nerastas. Patikrinkite, ar jis yra skaitytuve, ir iš naujo paleiskite naršyklę. Programinę įrangą galima įdiegti iš puslapio https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcija buvo atšaukta.\nAr atšaukėte, nes neveikia CertSign USB prieigos rakto pasirašymas?\nĮsitikinkite, kad prie jūsų įrenginio nėra prijungtų kitų USB prieigos raktų ar intelektualiųjų kortelių, išskyrus pačią teisingą USB prieigos rakto kortelę.\nTada peržiūrėkite šį vadovą, kad įsitikintumėte, jog įdiegta visa reikalinga programinė įranga: https://www.certsign.ro/en/cd/","no-id-card":"Nepavyko rasti prijungtos asmens tapatybės kortelės. Įsitikinkite, kad kortelė tinkamai prijungta prie skaitytuvo, o šis – prie kompiuterio ir iš naujo paleiskite naršyklę. Programinę įrangą galite rasti https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} nustatymo informacija adresu",here:"čia","no-fr-cert-europe-usb-token":"USB prieigos raktas nerastas. Patikrinkite, ar jis yra skaitytuve, ir iš naujo paleiskite naršyklę. Programinę įrangą galima įdiegti iš puslapio https://support.certeurope.fr/telechargements/.","draw-signature":"Nupiešti parašą","Didnt receive a code?":"Negavote kodo?",Resend:Pb,"signature-policy":"Parašo politika","signer-held":"Signer held",finalizing:Ub,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"„Smart-ID“ programėlėje įveskite PIN2 kodą.","Please enter your pin1 in the Smart-ID app.":"„Smart-ID“ programėlėje įveskite PIN1 kodą.","Click the button below if the process does not finish automatically.":"Spustelėkite toliau esantį mygtuką, jei procesas nesibaigia automatiškai.",refresh:Gb,"Please wait before trying again":"Palaukite prieš bandydami dar kartą","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostinė informacija","approve-in-evrotrust-app":"Patvirtinti „Evrotrust“ programėlėje"},Hb=Object.freeze(Object.defineProperty({__proto__:null,Resend:Pb,Sign:Bb,USER_REFUSED:Db,back:Nb,cancel:xb,confirm:Rb,country:Lb,default:jb,finalizing:Ub,here:"čia",idcode:Eb,name:Ob,no:"Ne",or:zb,refresh:Gb,varmennekortti:Vb,yes:Tb},Symbol.toStringTag,{value:"Module"})),Kb="personas kods",Zb="Valsts",qb="Parakstīties",Wb="Lietotājs nevēlējās turpināt un atcēla darbību",Jb="Atcelt",Qb="Atpakaļ",Yb="Varmennekortti",Xb="Apstiprināt",$b="Vārds",eF="šeit",tF="Atkārtoti nosūtīt",nF="Finalizing",iF="atsvaidzināt",aF={"no-ee-id-card":"ID karte nav atrasta. Lūdzu, pārbaudiet, vai karte ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no vietnes www.id.ee.",yes:"Jā",no:"Nē","phone-number":"telefona numurs",idcode:Kb,country:Zb,Sign:qb,USER_REFUSED:Wb,"mobile-id":"Mobilais ID","id-card":"ID karte","smart-id":"Smart-ID","no-lv-id-card":"Latvijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://www.eparaksts.lv/lv/lejupielades. Parakstiem, lūdzu, pārliecinieties, vai ir instalēts un aktivizēts eParaksts pārlūka spraudnis.","no-lt-id-card":"Lietuvas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes http://www.nsc.vrm.lt/downloads.htm. Parakstiem ir nepieciešams arī pārlūkprogrammas spraudnis no https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Portugāles ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Somijas ID karte nav atrasta. Lūdzu, sk. programmatūras instalēšanas instrukciju: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Beļģijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://eid.belgium.be. Parakstiem ir nepieciešams arī pārlūkprogrammas spraudnis no vietnes https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Vai sapratāt dokumenta saturu un esat gatavs pabeigt parakstu?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Nodrošina eIDEasy","log-in":"Pieslēgties","this-field-is-required":"Šis lauks ir obligāts","your-verification-code":"Jūsu verifikācijas kods:",cancel:Jb,"no-response-error":"Kaut kas nogāja greizi. Pārliecinieties, vai ir izveidots savienojums ar internetu, un tad mēģiniet vēlreiz.",back:Qb,"no-matching-countries":"Nav atbilstošu valstu","id-card-read-timeout":"ID kartes lasīšana aizņēma pārāk ilgu laiku. Lūdzu, aizveriet visus atvērtos pārlūkprogrammas logus un pēc tam mēģiniet vēlreiz.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Apstipriniet identifikācijas pieprasījumu savā FREJA eID lietotnē","try-again":"Mēģiniet vēlreiz","pre-sign-confirmation":'Pēc noklikšķināšanas uz "Parakstīt" mēs identificēsim jūs, izmantojot: {method,} un izveidosim juridiski saistošu parakstu.',"login-method":"Pieslēgšanās metode:","finnish-online-bank":"Somijas internetbanka","online-bank":"Internetbanka",or:"vai","transaction-id":"Darījuma ID","sign-in-evrotrust-app":"Lūdzu, parakstiet šo dokumentu savā Evrotrust lietotnē.","eparaksts-eid":"eParaksts eID",varmennekortti:Yb,"other-countries":"Citas valstis","email-sms":"E-pasts/ SMS","email-code-sent":"E-pasts ar kodu ir nosūtīts uz","sms-code-sent":"SMS ar kodu ir nosūtīta uz","your-code":"Jūsu kods","signature-method":"Parakstīšanās metode","username-or-email":"Lietotājvārds vai e-pasts","cell-phone":"Mobilais telefons","including-calling-code":'ar valsts kodu, tostarp "+", piemēram, +35112345678',"enter-temp-security-code":"Ievadiet pagaidu drošības kodu","mobile-key-signing-info":"Plašāku informāciju par mobilās atslēgas parakstīšanas procesu varat atrast vietnē https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Šī darbība ir galīga un neatgriezeniska.","you-have-5-minutes-to-enter-the-code":"Jums ir 5 minūtes, lai ievadītu kodu, pirms tas beidzas.",confirm:Xb,"after-confirmation-following-docs-will-be-signed":"Pēc apstiprināšanas tiks parakstīti šādi dokumenti:","code-by-sms":"Kods pa SMS","confirmation-code-will-be-sent-to":"Apstiprināšanas kods tiks nosūtīts uz:",continue:"Turpināt",name:$b,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitālā paraksta pin","approve-sign-request-on-freja-app":"Apstipriniet parakstīšanas lūgumu jūsu FREJA eID aplikācijā","no-required-software":"Jums nav instalēta nepieciešamā programmatūra, lai pabeigtu šo darbību. Lūdzu, izpildiet norādījumus vietnē https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts karte","sign-with-my-bank":"Parakstīties ar manu banku","card-number":"kartes numurs","your-sms-otp-code":"Jūsu SMS OTP kods","sign-in-halcom-app":"Lūdzu, parakstiet šo dokumentu savā Halcom lietotnē.","sign-in-swiss-id-app":"Lūdzu, parakstiet šo dokumentu savā SwissID lietotnē.","sign-in-app":"Lūdzu, parakstiet šo dokumentu savā {name} lietotnē.","be-id-card-signature-cancel-and-help":"Akcija tika atcelta.\nVai atcēlāt, jo Beļģijas ID kartes parakstīšana nedarbojas?\nPārliecinieties, vai ierīcei nav pievienoti citi USB marķieri vai viedkartes, izņemot pašu Beļģijas ID karti.\nPēc tam skatiet šo rokasgrāmatu, lai pārliecinātos, ka jums ir instalēta visa nepieciešamā programmatūra: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Trūkst vajadzīgās programmatūras. Skatiet šo rokasgrāmatu par nepieciešamo programmatūras komponentu instalēšanu: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} pieprasa piekļuvi jūsu vārdam un personas ID datiem. Lai autorizētu eID Easy pārsūtīt šos datus, lūdzu, noklikšķiniet uz tālāk esošās pogas.","method-setup-info":"{method} iestatīšanas informācija vietnē {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB marķieris nav atrasts. Lūdzu, pārbaudiet, vai tas ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no lapas https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcija tika atcelta.\nVai atcēlāt, jo CertSign USB pilnvaras parakstīšana nedarbojas?\nPārliecinieties, vai jūsu ierīcei nav pievienoti citi USB marķieri vai viedkartes, izņemot pašu pareizo USB pilnvaru karti.\nPēc tam skatiet šo rokasgrāmatu, lai pārliecinātos, ka jums ir instalēta visa nepieciešamā programmatūra: https://www.certsign.ro/en/cd/","no-id-card":"ID karte nav atrasta. Lūdzu, pārbaudiet, vai karte ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no vietnes https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} iestatīšanas informācija vietnē",here:eF,"no-fr-cert-europe-usb-token":"USB marķieris nav atrasts. Lūdzu, pārbaudiet, vai tas ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no lapas https://support.certeurope.fr/telechargements/.","draw-signature":"Zīmēt parakstu","Didnt receive a code?":"Vai nesaņēmāt kodu?",Resend:tF,"signature-policy":"Paraksta politika","signer-held":"Signer held",finalizing:nF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Lūdzu, ievadiet savu PIN2 lietotnē Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Lūdzu, ievadiet savu PIN1 lietotnē Smart-ID.","Click the button below if the process does not finish automatically.":"Noklikšķiniet uz tālāk esošās pogas, ja process netiek pabeigts automātiski.",refresh:iF,"Please wait before trying again":"Lūdzu, uzgaidiet, pirms mēģināt vēlreiz","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostikas informācija","approve-in-evrotrust-app":"Apstiprināt Evrotrust lietotnē"},oF=Object.freeze(Object.defineProperty({__proto__:null,Resend:tF,Sign:qb,USER_REFUSED:Wb,back:Qb,cancel:Jb,confirm:Xb,country:Zb,default:aF,finalizing:nF,here:eF,idcode:Kb,name:$b,no:"Nē",or:"vai",refresh:iF,varmennekortti:Yb,yes:"Jā"},Symbol.toStringTag,{value:"Module"})),rF="persoonlijke identiteitscode",sF="Land",lF="Ondertekenen",cF="Gebruiker wilde niet doorgaan en heeft de actie geannuleerd",dF="Annuleren",uF="Terug",CF="Varmennekortti",pF="Bevestig",hF="Naam",gF="hier",fF="Opnieuw versturen",mF="Finalizing",vF="refresh",yF={"no-ee-id-card":"ID-kaart niet gevonden. Controleer of de kaart in de lezer zit en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina www.id.ee.",yes:"Ja",no:"Nee","phone-number":"telefoonnummer",idcode:rF,country:sF,Sign:lF,USER_REFUSED:cF,"mobile-id":"Mobiel ID","id-card":"ID-kaart","smart-id":"Smart-ID","no-lv-id-card":"Geen Letse ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software van https://www.eparaksts.lv/en/Downloads is geïnstalleerd. Controleer voor handtekeningen of de eParaksts-plugin voor de browser is geïnstalleerd en geactiveerd.","no-lt-id-card":"Geen Litouwse ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software van http://www.nsc.vrm.lt/downloads.htm is geïnstalleerd. Voor handtekeningen is ook de browser plugin van https://github.com/open-eid/chrome-token-signing/releases nodig.","no-pt-id-card":"Geen Portugese ID-kaart gevonden. Zorg ervoor dat uw kaart is ingebracht en dat de software is geïnstalleerd vanaf https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Geen Servische ID-kaart gevonden. Zorg ervoor dat uw kaart is ingevoerd en dat de software is geïnstalleerd vanaf http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Geen Finse ID-kaart gevonden. Zie de software-installatie-instructies van: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Geen Belgische ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software is geïnstalleerd vanaf https://eid.belgium.be. Herstart de browser als de fout zich blijft voordoen.","confirm-doc-check-and-sign":"Hebt u de inhoud van het document begrepen en bent u klaar om de ondertekening af te ronden?","eparaksts-mobile":"eParaksts mobiel","powered-by-eideasy":"Aangedreven door eIDEasy","log-in":"Inloggen","this-field-is-required":"Dit veld is verplicht","your-verification-code":"Uw verificatiecode:",cancel:dF,"no-response-error":"Er is iets fout gegaan. Controleer of u verbinding hebt met het internet en probeer het opnieuw.",back:uF,"no-matching-countries":"Geen overeenkomende landen","id-card-read-timeout":"Het lezen van de ID-kaart duurde te lang. Sluit alle open browservensters en probeer het opnieuw.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Keur het identificatieverzoek goed op uw FREJA eID app","try-again":"Opnieuw proberen","pre-sign-confirmation":'Nadat u op "Ondertekenen" hebt geklikt, identificeren wij u met {method} en maken wij een wettelijk bindende handtekening.',"login-method":",","finnish-online-bank":"Finse online bank","online-bank":"Online Bank",or:"of","transaction-id":"Transactie ID","sign-in-evrotrust-app":"Gelieve dit document te ondertekenen in uw Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:CF,"other-countries":"Andere landen","email-sms":"E-mail/SMS","email-code-sent":"Een e-mail met de code is verstuurd naar","sms-code-sent":"Een SMS met de code is verstuurd naar","your-code":"Uw code","signature-method":"Handtekening methode","username-or-email":"Gebruikersnaam of e-mail","cell-phone":"Mobiele telefoon","including-calling-code":'met landcode inclusief "+", bijvoorbeeld +35112345678',"enter-temp-security-code":"Tijdelijke beveiligingscode invoeren","mobile-key-signing-info":"Meer informatie over het ondertekenen van mobiele sleutels vindt u op https://www.autenticacao.gov.pt/cmd-assinatura.","signature-confirmation-irreversible-note":"Deze actie is definitief en onomkeerbaar.","you-have-5-minutes-to-enter-the-code":"U hebt 5 minuten om de code in te voeren voordat deze vervalt.",confirm:pF,"after-confirmation-following-docs-will-be-signed":"Na bevestiging worden de volgende documenten ondertekend:","code-by-sms":"Code per SMS","confirmation-code-will-be-sent-to":"Er wordt een bevestigingscode verzonden naar:",continue:"Ga verder",name:hF,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin voor digitale handtekening","approve-sign-request-on-freja-app":"De ondertekeningsaanvraag goedkeuren op uw FREJA eID app","no-required-software":"U hebt niet de nodige software geïnstalleerd om deze actie uit te voeren. Volg de instructies op https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smartcard","sign-with-my-bank":"Ondertekenen met mijn bank","card-number":"kaartnummer","your-sms-otp-code":"Uw sms otp-code","sign-in-halcom-app":"Onderteken dit document in uw Halcom-app.","sign-in-swiss-id-app":"Onderteken dit document in uw SwissID-app.","sign-in-app":"Onderteken dit document in uw {name} app.","be-id-card-signature-cancel-and-help":"De actie is geannuleerd.\nHeb je opgezegd omdat de ondertekening van de Belgische identiteitskaart niet werkt?\nZorg ervoor dat er geen andere USB-tokens of smartcards op uw toestel zijn aangesloten dan de Belgische identiteitskaart zelf.\nRaadpleeg dan de volgende gids om er zeker van te zijn dat u alle benodigde software hebt geïnstalleerd: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Vereiste software ontbreekt. Raadpleeg de volgende gids voor het installeren van de vereiste softwarecomponenten: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} vraagt om inzage in je naam en persoonlijke ID’s. Om eID Easy door te geautoriseerd, klik op de onderstaande knop.","method-setup-info":"{method} setup informatie op {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token niet gevonden. Controleer of het in de lezer staat en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"De actie is geannuleerd.\nHeeft u geannuleerd omdat de CertSign USB-tokenondertekening niet werkt?\nZorg ervoor dat er geen andere USB-tokens of smartcards op uw apparaat zijn aangesloten, behalve de juiste USB-tokenkaart zelf.\nRaadpleeg dan de volgende gids om ervoor te zorgen dat u alle benodigde software hebt geïnstalleerd: https://www.certsign.ro/en/cd/","no-id-card":"ID-kaart niet gevonden. Controleer of de kaart in de lezer zit en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informatie op",here:gF,"no-fr-cert-europe-usb-token":"USB Token niet gevonden. Controleer of het in de lezer staat en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://support.certeurope.fr/telechargements/.","draw-signature":"Teken handtekening","Didnt receive a code?":"Geen code ontvangen?",Resend:fF,"signature-policy":"Handtekeningsbeleid","signer-held":"Signer held",finalizing:mF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:vF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostische informatie","approve-in-evrotrust-app":"Goedkeuren in de Evrotrust-app"},MF=Object.freeze(Object.defineProperty({__proto__:null,Resend:fF,Sign:lF,USER_REFUSED:cF,back:uF,cancel:dF,confirm:pF,country:sF,default:yF,finalizing:mF,here:gF,idcode:rF,name:hF,no:"Nee",or:"of",refresh:vF,varmennekortti:CF,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),SF="osobisty kod identyfikacyjny",wF="Kraj",AF="Podpisz",bF="Akcja została anulowana po stronie użytkownika",FF="Anuluj",_F="Powrót",kF="Varmennekortti",IF="Potwierdź",TF="Imię",EF="tutaj",LF="Wysłać ponownie",BF="Finalizing",DF="refresh",xF={"no-ee-id-card":"Nie znaleziono dowodu osobistego. Upewnij się, że jest on w czytniku i zrestartuj przeglądarkę. Oprogramowanie może zostać zainstalowane z www.id.ee.",yes:"Tak",no:"Nie","phone-number":"numer telefonu",idcode:SF,country:wF,Sign:AF,USER_REFUSED:bF,"mobile-id":"Mobile ID","id-card":"Dowód osobisty","smart-id":"Smart-ID","no-lv-id-card":"Nie znaleziono łotewskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z https://www.eparaksts.lv/en/Downloads zostało zainstalowane. Do podpisów wymagana jest również instalacja oraz aktywacja pluginu eParaksts dla przeglądarek.","no-lt-id-card":"Nie znaleziono litewskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z http://www.nsc.vrm.lt/downloads.htm zostało zainstalowane. Dla podpisów wymagany jest również plugin do przeglądarki dostępny na https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nie znaleziono portugalskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z https://www.autenticacao.gov.pt/cc-aplicacao zostało zainstalowane.","no-rs-id-card":"Nie znaleziono serbskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z ttp://ca.mup.gov.rs/download-lat.html zostało zainstalowane.","no-fi-id-card":"Nie znaleziono fińskiego dowodu osobistego. Sprawdź instrukcję instalacji oprogramowania na https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nie znaleziono belgijskiego dowodu osobistego. Upewnij się, że dowód został włożony, a oprogramowanie z https://eid.belgium.be zostało zainstalowane. Zrestartuj przeglądarkę, jeśli błąd wciąż występuje.","confirm-doc-check-and-sign":"Czy zawartość dokumentu jest dla Ciebie zrozumiała i chcesz sfinalizować podpis?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Zasilane przez eIDEasy","log-in":"Zaloguj się","this-field-is-required":"Te pole jest wymagane","your-verification-code":"Twój kod weryfikacyjny:",cancel:FF,"no-response-error":"Coś poszło nie tak. Upewnij się, że masz dostęp do internetu i spróbuj ponownie.",back:_F,"no-matching-countries":"Brak pasujących krajów","id-card-read-timeout":"Odczytywanie Twojego dowodu osobistego zajęło zbyt długo. Zamknij pozostałe otwarte karty przeglądarki i spróbuj ponownie.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Zatwierdź prośbę o identyfikację w Twojej aplikacji FREJA eID","try-again":"Spróbuj ponownie","pre-sign-confirmation":'Po kliknięciu "podpisz" dokonamy identyfikacji za pomocą {method} i utworzymy na tej podstawie prawnie wiążący podpis.',"login-method":"Metoda logowania:","finnish-online-bank":"Fiński Bank Online","online-bank":"Bank Online",or:"lub","transaction-id":"ID transakcji","sign-in-evrotrust-app":"Podpisz ten dokument w Twojej aplikacji Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:kF,"other-countries":"Inne kraje","email-sms":"E-mail/SMS","email-code-sent":"E-mail z kodem został wysłany na","sms-code-sent":"SMS z kodem został wysłany na","your-code":"Twój kod","signature-method":"Sposób podpisania","username-or-email":"Nazwa użytkownika lub e-mail","cell-phone":"Telefon komórkowy","including-calling-code":'z kodem kraju wraz z "+", na przykład +35112345678',"enter-temp-security-code":"Wprowadź tymczasowy klucz bezpieczeństwa","mobile-key-signing-info":"Możesz dowiedzieć się więcej o podpisywaniu za pomocą klucza mobilnego na https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Ta akcja jest definitywna i nieodwracalna.","you-have-5-minutes-to-enter-the-code":"Masz 5 minut na wprowadzenie kodu zanim ulegnie on przedawnieniu.",confirm:IF,"after-confirmation-following-docs-will-be-signed":"Po potwierdzeniu, podpisane zostaną następujące dokumenty:","code-by-sms":"Kod przez SMS","confirmation-code-will-be-sent-to":"Kod potwierdzający zostanie wysłany na:",continue:"Kontynuuj",name:TF,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN podpisu elektronicznego","approve-sign-request-on-freja-app":"Zaakceptuj prośbę o podpis w Twojej aplikacji FREJA eID","no-required-software":"Nie posiadasz oprogramowania wymaganego do ukończenia tej akcji. Podążaj zgodnie z instrukcjami dostępnymi na https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"Karta inteligentna eParaksts","sign-with-my-bank":"Podpisz za pomocą mojego banku","card-number":"numer karty","your-sms-otp-code":"Twój kod otp sms","sign-in-halcom-app":"Podpisz ten dokument w Twojej aplikacji Halcom.","sign-in-swiss-id-app":"Podpisz ten dokument w Twojej aplikacji SwissID.","sign-in-app":"Podpisz ten dokument w Twojej {name} app.","be-id-card-signature-cancel-and-help":"Akcja została anulowana.\nCzy anulowano ją ze względu na niedziałającą funkcję podpisywania za pomocą belgijskiego dowodu osobistego?\nUpewnij się, że do Twojego urządzenia nie podłączono innych tokenów USB lub kart inteligentnych poza belgijskim dowodem osobistym.\nAby upewnić się o instalacji wszystkich wymaganych programów, zapoznaj się z poradnikiem: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Brak wymaganego oprogramowania. Zapoznaj się z poradnikiem opisującym instalację wymaganych komponentów: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} prosi o dostęp do Twojego imienia i dowodu osobistego. Aby dokonać autoryzacji eID Easy, kliknij poniższy przycisk.","method-setup-info":"Informacje o konfiguracji {method} setup w {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Nie znaleziono tokena USB. Sprawdź, czy jest w czytniku i uruchom ponownie przeglądarkę. Oprogramowanie można zainstalować ze strony https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcja została anulowana.\nCzy anulowałeś, ponieważ podpisywanie tokena USB CertSign nie działa?\nUpewnij się, że do urządzenia nie są podłączone żadne inne tokeny USB ani karty inteligentne oprócz właściwej karty z tokenem USB.\nNastępnie zapoznaj się z poniższym przewodnikiem, aby upewnić się, że masz zainstalowane całe niezbędne oprogramowanie: https://www.certsign.ro/en/cd/","no-id-card":"Nie znaleziono dowodu osobistego. Upewnij się, że jest on w czytniku i zrestartuj przeglądarkę. Oprogramowanie może zostać zainstalowane z https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Informacje o konfiguracji {method} setup w",here:EF,"no-fr-cert-europe-usb-token":"Nie znaleziono tokena USB. Sprawdź, czy jest w czytniku i uruchom ponownie przeglądarkę. Oprogramowanie można zainstalować ze strony https://support.certeurope.fr/telechargements/.","draw-signature":"Narysuj podpis","Didnt receive a code?":"Nie otrzymałeś kodu?",Resend:LF,"signature-policy":"Polityka podpisów","signer-held":"Signer held",finalizing:BF,"local-certificate":"Certyfikat lokalny","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:DF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informacje diagnostyczne","approve-in-evrotrust-app":"Zatwierdź w aplikacji Evrotrust"},NF=Object.freeze(Object.defineProperty({__proto__:null,Resend:LF,Sign:AF,USER_REFUSED:bF,back:_F,cancel:FF,confirm:IF,country:wF,default:xF,finalizing:BF,here:EF,idcode:SF,name:TF,no:"Nie",or:"lub",refresh:DF,varmennekortti:kF,yes:"Tak"},Symbol.toStringTag,{value:"Module"})),zF="Código de identificação pessoal",VF="Pais",RF="Assinar",OF="O usuário não deseja continuar e cancelou a ação",PF="Cancelar",UF="Voltar",GF="Varmennekortti",jF="confirme",HF="Nome",KF="aqui",ZF="Reenviar",qF="Finalizing",WF="refresh",JF={"no-ee-id-card":"Cartão de identificação não encontrado. Verifique se o cartão está no leitor e reinicie o navegador. O software pode ser instalado a partir da página www.id.ee.",yes:"Sim",no:"Não","phone-number":"número de telefone",idcode:zF,country:VF,Sign:RF,USER_REFUSED:OF,"mobile-id":"Mobile ID","id-card":"Cartão de Cidadão","smart-id":"Smart-ID","no-lv-id-card":"Nenhum cartão de identificação letão encontrado. Certifique-se de inserir o cartão e instalar o software em https://www.eparaksts.lv/en/Downloads. Para assinaturas, certifique-se de que o plugin eParaksts para o navegador esteja instalado e ativado.","no-lt-id-card":"Nenhum cartão de identificação lituano encontrado. Certifique-se de inserir o cartão e instalar o software em http://www.nsc.vrm.lt/downloads.htm. Para assinaturas também é necessário o plug-in do navegador em https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nenhum cartão de identidade de Portugal encontrado. Certifique-se de que inseriu o cartão e instalou o software a partir de https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Nenhum cartão de identificação sérvio encontrado. Certifique-se de ter o cartão inserido e o software instalado de http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Nenhum cartão de identificação finlandês encontrado. Consulte as instruções de instalação do software em: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nenhum cartão de identificação da Bélgica encontrado. Certifique-se de inserir o cartão e instalar o software em https://eid.belgium.be. Para assinaturas também é necessário o plug-in do navegador em https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Você entendeu o conteúdo do documento e está pronto para finalizar a assinatura?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Distribuído por eIDEasy","log-in":"Entrar","this-field-is-required":"Campo obrigatório","your-verification-code":"O seu código de verificação",cancel:PF,"no-response-error":"Ocorreu um erro. Certifique-se de que você esteja conectado à Internet e tente novamente.",back:UF,"no-matching-countries":"Não existem países","id-card-read-timeout":"A leitura do Cartão demorou demasiado tempo. Por favor feche o browser e tente de novo","zeal-id":"ZealID","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Aprovar o pedido de identificação no sua aplicação FREJA eID","try-again":"Tente novamente","pre-sign-confirmation":'Depois de clicar em "Assinar", iremos identificá-lo usando o {method} e criaremos uma assinatura juridicamente vinculativa.',"login-method":"Método de login:","finnish-online-bank":"Banco online finlandês","online-bank":"Banco Online",or:"ou","transaction-id":"id de transação","sign-in-evrotrust-app":"Assine este documento em seu aplicativo Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:GF,"other-countries":"Outros países","email-sms":"Email/SMS","email-code-sent":"Um e-mail com o código foi enviado para","sms-code-sent":"Um SMS com o código foi enviado para","your-code":"O seu código","signature-method":"Método de assinatura","username-or-email":"Nome de usuário ou email","cell-phone":"Telemóvel","including-calling-code":'com código do país incluindo "+", exemplo +35112345678',"enter-temp-security-code":"Inserir código de segurança temporário","mobile-key-signing-info":"Pode encontrar mais informação sobre o processo de assinatura com a chave móvel em https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Esta ação é definitiva e irreversível.","you-have-5-minutes-to-enter-the-code":"Tem 5 minutos para introduzir o código antes que expire",confirm:jF,"after-confirmation-following-docs-will-be-signed":"Após a confirmação, os seguintes documentos serão assinados:","code-by-sms":"Código por SMS","confirmation-code-will-be-sent-to":"Um código de confirmação será enviado para:",continue:"Continue",name:HF,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN de assinatura da CMD","approve-sign-request-on-freja-app":"Aprove a solicitação de assinatura na sua aplicação FREJA eID","no-required-software":"Você não tem o software necessário instalado para concluir esta ação. Siga as instruções em https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Assine com meu banco","card-number":"número do cartão","your-sms-otp-code":"Seu código sms otp","sign-in-halcom-app":"Assine este documento em seu aplicativo Halcom.","sign-in-swiss-id-app":"Por favor, assine este documento em seu aplicativo SwissID.","sign-in-app":"Por favor, assine este documento em seu aplicativo {name.}","be-id-card-signature-cancel-and-help":"A ação foi cancelada.\nVocê cancelou porque a assinatura da carteira de identidade belga não está funcionando?\nCertifique-se de que não há outros tokens USB ou cartões inteligentes conectados ao seu dispositivo, exceto o próprio cartão de identificação belga.\nEm seguida, consulte o guia a seguir para garantir que você tenha todo o software necessário instalado: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"O software necessário está ausente. Consulte o seguinte guia sobre como instalar os componentes de software necessários: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} está solicitando o acesso ao seu nome e dados de identificação pessoal. Para autorizar o eID Fácil encaminhar esses dados, clique no botão abaixo.","method-setup-info":"{method} setup informação em {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB não encontrado. Verifique se está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"A ação foi cancelada.\nVocê cancelou porque a assinatura do token USB CertSign não está funcionando?\nCertifique-se de que não haja outros tokens USB ou cartões inteligentes conectados ao seu dispositivo, exceto o próprio cartão de token USB correto.\nEm seguida, consulte o guia a seguir para garantir que você tenha todo o software necessário instalado: https://www.certsign.ro/en/cd/","no-id-card":"Cartão de identificação não encontrado. Verifique se o cartão está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informação em {link}",here:KF,"no-fr-cert-europe-usb-token":"Token USB não encontrado. Verifique se está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://support.certeurope.fr/telechargements/.","draw-signature":"Desenhar assinatura","Didnt receive a code?":"Não recebeu um código?",Resend:ZF,"signature-policy":"Política de Assinatura","signer-held":"Signer held",finalizing:qF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:WF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informações de diagnóstico","approve-in-evrotrust-app":"Aprovar no aplicativo Evrotrust"},QF=Object.freeze(Object.defineProperty({__proto__:null,Resend:ZF,Sign:RF,USER_REFUSED:OF,back:UF,cancel:PF,confirm:jF,country:VF,default:JF,finalizing:qF,here:KF,idcode:zF,name:HF,no:"Não",or:"ou",refresh:WF,varmennekortti:GF,yes:"Sim"},Symbol.toStringTag,{value:"Module"})),YF="персональный код",XF="Страна",$F="Подпись",e_="Пользователь отменил действие",t_="Отмена",n_="Назад",i_="Varmennekortti",a_="подтверждать",o_="здесь",r_="Отправить",s_="Завершение, подождите",l_="Обновить",c_={"no-ee-id-card":"ID-картa не найдена. Пожалуйста, проверьте, есть ли карта в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы www.id.ee.",yes:"Да",no:"Нет","phone-number":"номер телефона",idcode:YF,country:XF,Sign:$F,USER_REFUSED:e_,"mobile-id":"Мобильный ID","id-card":"ID-карта","smart-id":"Smart-ID","no-lv-id-card":"Не найдена Латвийская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://www.eparaksts.lv/en/Downloads. Для подписей убедитесь, что плагин eParaksts для браузера установлен и активирован.","no-lt-id-card":"Не найдена Литовская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с http://www.nsc.vrm.lt/downloads.htm. Для подписей также необходим плагин браузера с https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Не найдена Португальская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Не найдена Сербская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Не найдена Финская ID-карта. См. инструкции по установке программного обеспечения здесь: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Не найдена Бельгийская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://eid.belgium.be. Для подписей также необходим плагин браузера с https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Поняли ли вы содержание документа и готовы ли завершить подписание?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Создано eIDEasy","log-in":"Войти","this-field-is-required":"Это поле обязательно к заполнению","your-verification-code":"Ваш проверочный код:",cancel:t_,"no-response-error":"Что-то пошло не так. Убедитесь, что вы подключены к Интернету, затем повторите попытку.",back:n_,"no-matching-countries":"Нет подходящих стран","id-card-read-timeout":"Чтение удостоверения личности заняло слишком много времени. Закройте все открытые окна браузера и повторите попытку.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Одобрить запрос на идентификацию в вашем приложении FREJA eID","try-again":"Повторите попытку","pre-sign-confirmation":"После нажатия кнопки «Подписать» мы идентифицируем вас с помощью {method} и создадим юридически обязательную подпись.","login-method":"Способ входа:","finnish-online-bank":"Финский интернет-банк","online-bank":"Интернет-банк",or:"или","transaction-id":"ID транзакции","sign-in-evrotrust-app":"Пожалуйста, подпишите этот документ в своем приложении Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:i_,"other-countries":"Другие страны","email-sms":"Электронная почта/SMS","email-code-sent":"Письмо с кодом было отправлено на адрес","sms-code-sent":"SMS с кодом отправлено на","your-code":"Ваш код","signature-method":"Метод подписи","username-or-email":"Имя пользователя или адрес электронной почты","cell-phone":"сотовый телефон","including-calling-code":'с кодом страны, включая "+", пример +35112345678',"enter-temp-security-code":"Введите временный защитный код","mobile-key-signing-info":"Дополнительную информацию о процессе подписания мобильного ключа можно найти на странице https://www.autenticacao.gov.pt/cmd-assinatura.","signature-confirmation-irreversible-note":"Это действие является окончательным и необратимым.","you-have-5-minutes-to-enter-the-code":"У вас есть 5 минут, чтобы ввести код до истечения срока его действия.",confirm:a_,"after-confirmation-following-docs-will-be-signed":"После подтверждения будут подписаны следующие документы:","code-by-sms":"Код по СМС","confirmation-code-will-be-sent-to":"Код подтверждения будет отправлен:",continue:"Продолжить",name:"Имя","chave-movel":"Чаве Мовель","digital-signature-pin":"Пин-код цифровой подписи","approve-sign-request-on-freja-app":"Подтвердите запрос на подпись в приложении FREJA eID.","no-required-software":"У вас не установлено необходимое программное обеспечение для выполнения этого действия. Следуйте инструкциям по адресу: https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Подписать с моим банком","card-number":"номер карты","your-sms-otp-code":"Ваш смс код отп","sign-in-halcom-app":"Подпишите этот документ в приложении Halcom.","sign-in-swiss-id-app":"Подпишите этот документ в приложении SwissID.","sign-in-app":"Пожалуйста, подпишите этот документ в вашем приложении {name.}","be-id-card-signature-cancel-and-help":"Действие было отменено.\nВы отменили подписку, потому что бельгийское удостоверение личности не работает?\nУбедитесь, что к вашему устройству не подключены другие USB-токены или смарт-карты, кроме самого бельгийского удостоверения личности.\nЗатем см. следующее руководство, чтобы убедиться, что у вас установлено все необходимое программное обеспечение: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Необходимое программное обеспечение отсутствует. См. следующее руководство по установке необходимых программных компонентов: https://eideasy.com/belgian-id-software-installation/","client-request-data-confirmation":"{websiteName} {companyName} запрашивает доступ к вашему имени и персональные данные. Чтобы авторизовать eID Easy вперед эти данные, пожалуйста, нажмите кнопку ниже.","method-setup-info":"{method} инструкция к использованию {link}","i-accept-and-approve-this-doc":"Я принимаю и одобряю содержание этого документа.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Подписать с Verimi","no-ro-usb-token":"USB-токен не найден. Проверьте, есть ли он в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Действие было отменено.\nВы отменили подписание из-за того, что USB-токен CertSign не работает?\nУбедитесь, что к вашему устройству не подключены другие USB-токены или смарт-карты, кроме самой правильной карты USB-токена.\nЗатем см. следующее руководство, чтобы убедиться, что у вас установлено все необходимое программное обеспечение: https://www.certsign.ro/en/cd/","no-id-card":"ID-картa не найдена. Пожалуйста, проверьте, есть ли карта в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Инструкция к использованию {method}",here:o_,"no-fr-cert-europe-usb-token":"USB-токен не найден. Проверьте, есть ли он в ридере, и перезапустите браузер. Программное обеспечение можно установить со страницы https://support.certeurope.fr/telechargements/.","draw-signature":"Нарисовать подпись","Didnt receive a code?":"Не получили код?",Resend:r_,"signature-policy":"Политика подписи","signer-held":"Сертификат, удерживаемый подписчиком",finalizing:s_,"local-certificate":"Сертификат на устройстве","Please enter your pin2 in the Smart-ID app.":"Введите свой PIN2 в приложении Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Введите свой PIN1 в приложении Smart-ID.","Click the button below if the process does not finish automatically.":"Нажмите кнопку ниже, если процесс не завершился автоматически.",refresh:l_,"Please wait before trying again":"Пожалуйста, подождите, прежде чем повторить попытку.","Web-eID extension is not available":"Расширение Web-eID недоступно","User cancelled":"Действие прервано пользователем","Diagnostic Info":"Диагностическая информация","approve-in-evrotrust-app":"Одобрить в приложении Evrotrust"},d_=Object.freeze(Object.defineProperty({__proto__:null,Resend:r_,Sign:$F,USER_REFUSED:e_,back:n_,cancel:t_,confirm:a_,country:XF,default:c_,finalizing:s_,here:o_,idcode:YF,name:"Имя",no:"Нет",or:"или",refresh:l_,varmennekortti:i_,yes:"Да"},Symbol.toStringTag,{value:"Module"})),u_="kod för personlig identitet",C_="Land",p_="Underteckna",h_="Användaren ville inte fortsätta och avbröt åtgärden.",g_="Avbryt",f_="Tillbaka",m_="eller\n",v_="Certifikatkort",y_="bekräfta",M_="Namn",S_="Skicka igen",w_="Finalizing",A_="refresh",b_={"no-ee-id-card":"ID-kortet har inte hittats. Kontrollera om kortet finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan www.id.ee.",yes:"Ja",no:"Nej","phone-number":"telefonnummer",idcode:u_,country:C_,Sign:p_,USER_REFUSED:h_,"mobile-id":"Mobil-ID\n","id-card":"ID-kort","smart-id":"Smart-ID","no-lv-id-card":"Inget lettiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://www.eparaksts.lv/en/Downloads. För underteckningar ska du se till att eParaksts insticksprogram för webbläsaren är installerat och aktiverat.","no-lt-id-card":"Inget litauiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från http://www.nsc.vrm.lt/downloads.htm. För underteckningar behövs också en webbläsarplugin från https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Inget portugisiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Inget serbiskt ID-kort hittades. Kontrollera att du har kortet insatt och programvaran installerad från http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Inget finskt ID-kort hittades. Se instruktionerna för installation av programvaran från: https://dvv.fi/sv/medborgarcertifikat-kortlasarprogram","no-be-id-card":"Inget belgiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://eid.belgium.be. För underteckningar behövs också en webbläsarplugin från https://github.com/open-eid/chrome-token-signing/releases.","confirm-doc-check-and-sign":"Har du förstått dokumentets innehåll och är redo att underteckna det?","eparaksts-mobile":"eParaksts mobil","powered-by-eideasy":"Drivs av eIDEasy","log-in":"Logga in\n","this-field-is-required":"Detta fält är obligatoriskt","your-verification-code":"Din verifieringskod:",cancel:g_,"no-response-error":"Något gick fel. Kontrollera att du är ansluten till Internet och försök sedan igen.",back:f_,"no-matching-countries":"Inga matchande länder","id-card-read-timeout":"Det tog för lång tid att läsa ID-kortet. Stäng alla öppna webbläsarfönster och försök igen.","zeal-id":"ZealiD\n","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Godkänn begäran om identifiering i din FREJA eID-app.","try-again":"Försök igen\n","pre-sign-confirmation":'När du har klickat på " Underteckna " kommer vi att identifiera dig med hjälp av {method} och skapa en juridiskt bindande namnunderskrift.',"login-method":"Inloggningsmetod:\n","finnish-online-bank":"Finska nätbanken\n","online-bank":"Online-bank\n",or:m_,"transaction-id":"Transaktions ID\n","sign-in-evrotrust-app":"Underteckna det här dokumentet i din Evrotrust-app.","eparaksts-eid":"eParaksts eID",varmennekortti:v_,"other-countries":"Andra länder\n","email-sms":"E-post/SMS","email-code-sent":"Ett mejl med koden har skickats till\n","sms-code-sent":"Ett SMS med koden har skickats till\n","your-code":"Din kod\n","signature-method":"Underteckningsmetod","username-or-email":"Användarnamn eller e-mail","cell-phone":"mobiltelefon","including-calling-code":'med landskod inklusive "+", exempel +35112345678',"enter-temp-security-code":"Ange tillfällig säkerhetskod","mobile-key-signing-info":"Du kan hitta mer information om processen för mobilnyckelsignering på https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Denna åtgärd är definitiv och oåterkallelig.","you-have-5-minutes-to-enter-the-code":"Du har 5 minuter på dig att ange koden innan den löper ut.",confirm:y_,"after-confirmation-following-docs-will-be-signed":"Efter bekräftelse kommer följande dokument att undertecknas:","code-by-sms":"Kod via SMS","confirmation-code-will-be-sent-to":"Bekräftelsekod sänds till:",continue:"Fortsätt",name:M_,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital signaturstift","approve-sign-request-on-freja-app":"Godkänn signeringsförfrågan i din Freja eID app","no-required-software":"Du har inte den nödvändiga programvaran installerad för att slutföra denna åtgärd. Vänligen följ instruktionerna på https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Signera med min bank","card-number":"kortnummer","your-sms-otp-code":"Din sms otp-kod","sign-in-halcom-app":"Vänligen signera detta dokument i din Halcom-app.","sign-in-swiss-id-app":"Vänligen underteckna detta dokument i din SwissID-app.","sign-in-app":"Vänligen underteckna detta dokument i din {name} app.","be-id-card-signature-cancel-and-help":"Åtgärden avbröts.\nAvbröt du för att signeringen av det belgiska ID-kortet inte fungerar?\nSe till att det inte finns några andra USB-tokens eller smartkort anslutna till din enhet förutom själva det belgiska ID-kortet.\nSe sedan följande guide för att se till att du har all nödvändig programvara installerad: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Nödvändig programvara saknas. Se följande guide om hur du installerar de nödvändiga programvarukomponenterna: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} begär åtkomst till ditt namn och personlig information. Klicka på knappen nedan för att godkänna eID Easy vidarebefordran av denna data.","method-setup-info":"{method} inställningsinformation på {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB-token hittades inte. Kontrollera om det finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Åtgärden avbröts.\nAvbröt du för att CertSign USB-tokensigneringen inte fungerar?\nSe till att det inte finns några andra USB-tokens eller smartkort anslutna till din enhet förutom det korrekta USB tokenkortet.\nSe sedan följande guide för att se till att du har all nödvändig programvara installerad: https://www.certsign.ro/en/cd/","no-id-card":"ID-kortet har inte hittats. Kontrollera om kortet finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} inställningsinformation på",here:"här","no-fr-cert-europe-usb-token":"USB-token hittades inte. Kontrollera om det finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://support.certeurope.fr/telechargements/.","draw-signature":"Rita signatur","Didnt receive a code?":"Fick du ingen kod?",Resend:S_,"signature-policy":"Signaturpolicy","signer-held":"Signer held",finalizing:w_,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:A_,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostisk information","approve-in-evrotrust-app":"Aprobar en la aplicación Evrotrust"},F_=Object.freeze(Object.defineProperty({__proto__:null,Resend:S_,Sign:p_,USER_REFUSED:h_,back:f_,cancel:g_,confirm:y_,country:C_,default:b_,finalizing:w_,here:"här",idcode:u_,name:M_,no:"Nej",or:m_,refresh:A_,varmennekortti:v_,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),__="персональний ідентифікаційний код",k_="Країна",I_="Знак",T_="Користувач не бажав продовжувати та скасував дію",E_="Скасувати",L_="Назад",B_="Varmennekortti",D_="Підтвердити",x_="Ім'я",N_="Надіслати повторно",z_="Фіналізація",V_="освіжити",R_={"no-ee-id-card":"Посвідчення особи не знайдено. Будь ласка, перевірте, чи картка вставлена у зчитувач, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки www.id.ee.",yes:"Так",no:"Ні","phone-number":"номер телефону",idcode:__,country:k_,Sign:I_,USER_REFUSED:T_,"mobile-id":"Мобільний ідентифікатор","id-card":"Посвідчення особи","smart-id":"Smart-ID","no-lv-id-card":"Латвійського посвідчення особи не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з https://www.eparaksts.lv/en/Downloads. Для підписів переконайтеся, що плагін eParaksts для браузера встановлено та активовано.","no-lt-id-card":"Литовське посвідчення особи не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з http://www.nsc.vrm.lt/downloads.htm. Для підписів також потрібен плагін для браузера з https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Посвідчення особи Португалії не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Сербського посвідчення особи не знайдено. Переконайтеся, що ви вставили картку та встановили програмне забезпечення з http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Фінське посвідчення особи не знайдено. Будь ласка, дивіться інструкції з встановлення програмного забезпечення за адресою: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Бельгійське посвідчення особи не знайдено. Переконайтеся, що ви вставили картку та встановили програмне забезпечення з https://eid.belgium.be. Перезапустіть браузер, якщо помилка не зникає.","confirm-doc-check-and-sign":"Ви зрозуміли зміст документа та готові завершити підписання?","eparaksts-mobile":"Мобільні eParaksts","powered-by-eideasy":"Працює на платформі eIDEasy","log-in":"Увійти","this-field-is-required":"Це поле обов'язкове","your-verification-code":"Ваш код підтвердження:",cancel:E_,"no-response-error":"Щось пішло не так. Переконайтеся, що ви підключені до Інтернету, а потім спробуйте ще раз.",back:L_,"no-matching-countries":"Немає відповідних країн","id-card-read-timeout":"Зчитування посвідчення особи зайняло забагато часу. Будь ласка, закрийте всі відкриті вікна браузера та спробуйте ще раз.","zeal-id":"ZealiD","freja-eid":"FREJA eID","approve-id-request-on-freja-app":"Підтвердьте запит на ідентифікацію у вашому застосунку FREJA eID","try-again":"Спробуйте ще раз","pre-sign-confirmation":"Після натискання кнопки «Підписати» ми ідентифікуємо вас за допомогою {method} та створимо юридично обов’язковий підпис.","login-method":"Спосіб входу:","finnish-online-bank":"Фінський онлайн-банк","online-bank":"Онлайн-банк",or:"або","transaction-id":"Ідентифікатор транзакції","sign-in-evrotrust-app":"Будь ласка, підпишіть цей документ у вашому застосунку Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:B_,"other-countries":"Інші країни","email-sms":"Електронна пошта/SMS","email-code-sent":"Лист із кодом надіслано на адресу","sms-code-sent":"SMS-повідомлення з кодом було надіслано на","your-code":"Ваш код","signature-method":"Метод підпису","username-or-email":"Ім'я користувача або електронна адреса","cell-phone":"Мобільний телефон","including-calling-code":'з кодом країни, що містить "+", наприклад +35112345678',"enter-temp-security-code":"Введіть тимчасовий код безпеки","mobile-key-signing-info":"Більше інформації про процес підписання мобільного ключа можна знайти за адресою https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Ця дія є остаточною та незворотною.","you-have-5-minutes-to-enter-the-code":"У вас є 5 хвилин, щоб ввести код, перш ніж він закінчиться.",confirm:D_,"after-confirmation-following-docs-will-be-signed":"Після підтвердження будуть підписані такі документи:","code-by-sms":"Код через SMS","confirmation-code-will-be-sent-to":"Код підтвердження буде надіслано на адресу:",continue:"Продовжити",name:x_,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN-код для цифрового підпису","approve-sign-request-on-freja-app":"Схваліть запит на підпис у вашому застосунку FREJA eID","no-required-software":"У вас не встановлено необхідне програмне забезпечення для виконання цієї дії. Будь ласка, дотримуйтесь інструкцій за адресою https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"Смарт-картка eParaksts","sign-with-my-bank":"Підписати в моєму банку","card-number":"номер картки","your-sms-otp-code":"Ваш SMS-код OTP","sign-in-halcom-app":"Будь ласка, підпишіть цей документ у вашому застосунку Halcom.","sign-in-swiss-id-app":"Будь ласка, підпишіть цей документ у вашому застосунку SwissID.","sign-in-app":"Будь ласка, підпишіть цей документ у вашому застосунку {name.}","be-id-card-signature-cancel-and-help":"Дію скасовано.\nВи скасували підпис, бо підпис бельгійського посвідчення особи не працює? Переконайтеся, що до вашого пристрою не підключено жодних інших USB-токенів або смарт-карт, окрім самого бельгійського посвідчення особи.\nПотім перегляньте наступний посібник, щоб переконатися, що у вас встановлено все необхідне програмне забезпечення: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Відсутнє необхідне програмне забезпечення. Див. наступний посібник щодо встановлення необхідних програмних компонентів: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} запитує доступ до вашого імені та персональних ідентифікаційних даних. Щоб авторизувати пересилання цих даних за допомогою eID, натисніть кнопку нижче.","method-setup-info":"Більше інформації про те, як розпочати роботу з {method,} можна знайти тут:","i-accept-and-approve-this-doc":"Я приймаю та схвалюю зміст цього документа.","sign-with-mitid":"Підписати за допомогою MitID","log-on-with-mitid":"Увійдіть за допомогою MitID","sign-with-verimi":"Підпишіть з Verimi","no-ro-usb-token":"USB-токен не знайдено. Перевірте, чи він є у зчитувачі, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Дію скасовано.\nВи скасували підпис, бо підпис USB-токена CertSign не працює? Переконайтеся, що до вашого пристрою не підключено жодних інших USB-токенів або смарт-карт, окрім самої правильної картки USB-токена. Потім перегляньте наступний посібник, щоб переконатися, що у вас встановлено все необхідне програмне забезпечення: https://www.certsign.ro/en/cd/","no-id-card":"Посвідчення особи не знайдено. Перевірте, чи картка вставлена у зчитувач, і перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Ви можете знайти більше інформації про те, як розпочати роботу з {method}",here:"тут","no-fr-cert-europe-usb-token":"USB-токен не знайдено. Перевірте, чи він є у зчитувачі, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://support.certeurope.fr/telechargements/.","draw-signature":"Намалюйте підпис","Didnt receive a code?":"Не отримали код?",Resend:N_,"signature-policy":"Політика підпису","signer-held":"Підписувач утримував",finalizing:z_,"local-certificate":"Місцевий сертифікат","Please enter your pin2 in the Smart-ID app.":"Будь ласка, введіть свій PIN2-код у застосунку Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Будь ласка, введіть свій PIN1 у застосунку Smart-ID.","Click the button below if the process does not finish automatically.":"Натисніть кнопку нижче, якщо процес не завершиться автоматично.",refresh:V_,"Please wait before trying again":"Будь ласка, зачекайте, перш ніж спробувати ще раз","Web-eID extension is not available":"Розширення Web-eID недоступне","User cancelled":"Користувач скасував","Diagnostic Info":"Діагностична інформація","approve-in-evrotrust-app":"Схвалити в застосунку Evrotrust"},O_=Object.freeze(Object.defineProperty({__proto__:null,Resend:N_,Sign:I_,USER_REFUSED:T_,back:L_,cancel:E_,confirm:D_,country:k_,default:R_,finalizing:z_,here:"тут",idcode:__,name:x_,no:"Ні",or:"або",refresh:V_,varmennekortti:B_,yes:"Так"},Symbol.toStringTag,{value:"Module"}));function P_(){const e={},t=Object.assign({"./locales/cs.json":gw,"./locales/da.json":Ew,"./locales/de.json":qw,"./locales/en.json":lA,"./locales/es.json":AA,"./locales/et.json":RA,"./locales/fi.json":eb,"./locales/fr.json":pb,"./locales/it.json":Ib,"./locales/lt.json":Hb,"./locales/lv.json":oF,"./locales/nl.json":MF,"./locales/pl.json":NF,"./locales/pt.json":QF,"./locales/ru.json":d_,"./locales/sv.json":F_,"./locales/uk.json":O_});for(const n in t){const i=n.match(/([A-Za-z0-9-_]+)\.json$/i);if(i&&i[1]){e[i[1]]=t[n].default}}return e}const U_=zf({legacy:!1,globalInjection:!0,locale:"en",fallbackLocale:"en",messages:P_(),silentTranslationWarn:!0}),G_=mr($S,{shadowRoot:!1,props:{language:{type:String,default:"en"},countryCode:{type:String,default:"EE"},clientId:{type:String,required:!0},docId:{type:String},redirectUri:{type:String,required:!1},sandbox:Boolean,translations:{type:Object,default:()=>({})},enabledMethods:{type:[Object,String,Number],default:()=>({}),required:!0},enabledCountries:{type:[Array,String],default:()=>"all"},selectedMethod:{type:String},inputValues:{default:{},type:Object},clientInfo:{type:Object},modifyRequestSettings:{type:Function},formatFlashMessage:{type:Function},beforeMethodSelection:{type:Function,default:()=>{}},onSuccess:{type:Function,default:()=>{}},onFail:{type:Function,default:()=>{}},apiEndpoints:{type:Object,required:!0},otpEmail:{type:String},otpPhone:{type:String},isOtpSent:{type:Boolean,default:!1},emailToken:{type:String},redirect:{type:Function},debug:{type:Boolean,default:!1},remoteMonitoringEnabled:{type:Boolean,default:!1},methodsConfigFilter:{type:Function},modifyEndpointUrl:{type:Function},oauthParamState:{type:String},showBackButton:{type:Boolean,default:!0},showCountrySelect:{type:Boolean,default:!0},mode:{type:String,default:null},requireHandwrittenSignature:{type:Boolean,default:!1},otpFlow:{type:String,default:null},fieldAutocomplete:{type:Boolean,default:!1},allowMethodChange:{type:Boolean,default:!0},waitForChallengeCode:{type:Boolean,default:!1},showSignaturePolicyLink:{type:Boolean,default:!0},showPoweredByEidEasyLink:{type:Boolean,default:!0},signingCertificate:{type:String},showSignatureLevel:{type:Boolean},uiTheme:{type:Object,default:()=>({fontFamily:"Arial, sans-serif",fontSize:"16px",fontWeight:"normal",colorPrimary:"#003168",colorSecondary:"#34A853",buttonTextColor:"#f7fbff",buttonColor:"#6683A4",buttonColorHover:"#547193",inputLabelColor:"#3A3A3A"})}},configureApp(e){e.provide(Nf,U_),e.use(U_)}});customElements.define("eideasy-widget",G_)});
|
|
23
|
+
var Mm=class{constructor(e,n,i,a){if(t(this,"x"),t(this,"y"),t(this,"pressure"),t(this,"time"),isNaN(e)||isNaN(n))throw new Error(`Point is invalid: (${e}, ${n})`);this.x=+e,this.y=+n,this.pressure=i||0,this.time=a||Date.now()}distanceTo(e){return Math.sqrt(Math.pow(this.x-e.x,2)+Math.pow(this.y-e.y,2))}equals(e){return this.x===e.x&&this.y===e.y&&this.pressure===e.pressure&&this.time===e.time}velocityFrom(e){return this.time!==e.time?this.distanceTo(e)/(this.time-e.time):0}},Sm=class e{constructor(e,t,n,i,a,o){this.startPoint=e,this.control2=t,this.control1=n,this.endPoint=i,this.startWidth=a,this.endWidth=o}static fromPoints(t,n){const i=this.calculateControlPoints(t[0],t[1],t[2]).c2,a=this.calculateControlPoints(t[1],t[2],t[3]).c1;return new e(t[1],i,a,t[2],n.start,n.end)}static calculateControlPoints(e,t,n){const i=e.x-t.x,a=e.y-t.y,o=t.x-n.x,r=t.y-n.y,s=(e.x+t.x)/2,l=(e.y+t.y)/2,c=(t.x+n.x)/2,d=(t.y+n.y)/2,u=Math.sqrt(i*i+a*a),C=Math.sqrt(o*o+r*r),p=u+C==0?0:C/(u+C),h=c+(s-c)*p,g=d+(l-d)*p,f=t.x-h,m=t.y-g;return{c1:new Mm(s+f,l+m),c2:new Mm(c+f,d+m)}}length(){let e,t,n=0;for(let i=0;i<=10;i+=1){const a=i/10,o=this.point(a,this.startPoint.x,this.control1.x,this.control2.x,this.endPoint.x),r=this.point(a,this.startPoint.y,this.control1.y,this.control2.y,this.endPoint.y);if(i>0){const i=o-e,a=r-t;n+=Math.sqrt(i*i+a*a)}e=o,t=r}return n}point(e,t,n,i,a){return t*(1-e)*(1-e)*(1-e)+3*n*(1-e)*(1-e)*e+3*i*(1-e)*e*e+a*e*e*e}},wm=class{constructor(){t(this,"_et");try{this._et=new EventTarget}catch{this._et=document}}addEventListener(e,t,n){this._et.addEventListener(e,t,n)}dispatchEvent(e){return this._et.dispatchEvent(e)}removeEventListener(e,t,n){this._et.removeEventListener(e,t,n)}};var Am=class e extends wm{constructor(n,i={}){super(),t(this,"dotSize"),t(this,"minWidth"),t(this,"maxWidth"),t(this,"penColor"),t(this,"minDistance"),t(this,"velocityFilterWeight"),t(this,"compositeOperation"),t(this,"backgroundColor"),t(this,"throttle"),t(this,"canvasContextOptions"),t(this,"_ctx"),t(this,"_drawingStroke",!1),t(this,"_isEmpty",!0),t(this,"_dataUrl"),t(this,"_dataUrlOptions"),t(this,"_lastPoints",[]),t(this,"_data",[]),t(this,"_lastVelocity",0),t(this,"_lastWidth",0),t(this,"_strokeMoveUpdate"),t(this,"_strokePointerId"),this.canvas=n,this.velocityFilterWeight=i.velocityFilterWeight||.7,this.minWidth=i.minWidth||.5,this.maxWidth=i.maxWidth||2.5,this.throttle=i.throttle??16,this.minDistance=i.minDistance??5,this.dotSize=i.dotSize||0,this.penColor=i.penColor||"black",this.backgroundColor=i.backgroundColor||"rgba(0,0,0,0)",this.compositeOperation=i.compositeOperation||"source-over",this.canvasContextOptions=i.canvasContextOptions??{},this._strokeMoveUpdate=this.throttle?function(e,t=250){let n,i,a,o=0,r=null;const s=()=>{o=Date.now(),r=null,n=e.apply(i,a),r||(i=null,a=[])};return function(...l){const c=Date.now(),d=t-(c-o);return i=this,a=l,d<=0||d>t?(r&&(clearTimeout(r),r=null),o=c,n=e.apply(i,a),r||(i=null,a=[])):r||(r=window.setTimeout(s,d)),n}}(e.prototype._strokeUpdate,this.throttle):e.prototype._strokeUpdate,this._handleMouseDown=this._handleMouseDown.bind(this),this._handleMouseMove=this._handleMouseMove.bind(this),this._handleMouseUp=this._handleMouseUp.bind(this),this._handleTouchStart=this._handleTouchStart.bind(this),this._handleTouchMove=this._handleTouchMove.bind(this),this._handleTouchEnd=this._handleTouchEnd.bind(this),this._handlePointerDown=this._handlePointerDown.bind(this),this._handlePointerMove=this._handlePointerMove.bind(this),this._handlePointerUp=this._handlePointerUp.bind(this),this._ctx=n.getContext("2d",this.canvasContextOptions),this.clear(),this.on()}clear(){const{_ctx:e,canvas:t}=this;e.fillStyle=this.backgroundColor,e.clearRect(0,0,t.width,t.height),e.fillRect(0,0,t.width,t.height),this._data=[],this._reset(this._getPointGroupOptions()),this._isEmpty=!0,this._dataUrl=void 0,this._dataUrlOptions=void 0,this._strokePointerId=void 0}redraw(){const e=this._data,t=this._dataUrl,n=this._dataUrlOptions;this.clear(),t&&this.fromDataURL(t,n),this.fromData(e,{clear:!1})}fromDataURL(e,t={}){return new Promise((n,i)=>{const a=new Image,o=t.ratio||window.devicePixelRatio||1,r=t.width||this.canvas.width/o,s=t.height||this.canvas.height/o,l=t.xOffset||0,c=t.yOffset||0;this._reset(this._getPointGroupOptions()),a.onload=()=>{this._ctx.drawImage(a,l,c,r,s),n()},a.onerror=e=>{i(e)},a.crossOrigin="anonymous",a.src=e,this._isEmpty=!1,this._dataUrl=e,this._dataUrlOptions={...t}})}toDataURL(e="image/png",t){return"image/svg+xml"===e?("object"!=typeof t&&(t=void 0),`data:image/svg+xml;base64,${btoa(this.toSVG(t))}`):("number"!=typeof t&&(t=void 0),this.canvas.toDataURL(e,t))}on(){this.canvas.style.touchAction="none",this.canvas.style.msTouchAction="none",this.canvas.style.userSelect="none";const e=/Macintosh/.test(navigator.userAgent)&&"ontouchstart"in document;window.PointerEvent&&!e?this._handlePointerEvents():(this._handleMouseEvents(),"ontouchstart"in window&&this._handleTouchEvents())}off(){this.canvas.style.touchAction="auto",this.canvas.style.msTouchAction="auto",this.canvas.style.userSelect="auto",this.canvas.removeEventListener("pointerdown",this._handlePointerDown),this.canvas.removeEventListener("mousedown",this._handleMouseDown),this.canvas.removeEventListener("touchstart",this._handleTouchStart),this._removeMoveUpEventListeners()}_getListenerFunctions(){const e=window.document===this.canvas.ownerDocument?window:this.canvas.ownerDocument.defaultView??this.canvas.ownerDocument;return{addEventListener:e.addEventListener.bind(e),removeEventListener:e.removeEventListener.bind(e)}}_removeMoveUpEventListeners(){const{removeEventListener:e}=this._getListenerFunctions();e("pointermove",this._handlePointerMove),e("pointerup",this._handlePointerUp),e("mousemove",this._handleMouseMove),e("mouseup",this._handleMouseUp),e("touchmove",this._handleTouchMove),e("touchend",this._handleTouchEnd)}isEmpty(){return this._isEmpty}fromData(e,{clear:t=!0}={}){t&&this.clear(),this._fromData(e,this._drawCurve.bind(this),this._drawDot.bind(this)),this._data=this._data.concat(e)}toData(){return this._data}_isLeftButtonPressed(e,t){return t?1===e.buttons:!(1&~e.buttons)}_pointerEventToSignatureEvent(e){return{event:e,type:e.type,x:e.clientX,y:e.clientY,pressure:"pressure"in e?e.pressure:0}}_touchEventToSignatureEvent(e){const t=e.changedTouches[0];return{event:e,type:e.type,x:t.clientX,y:t.clientY,pressure:t.force}}_handleMouseDown(e){this._isLeftButtonPressed(e,!0)&&!this._drawingStroke&&this._strokeBegin(this._pointerEventToSignatureEvent(e))}_handleMouseMove(e){this._isLeftButtonPressed(e,!0)&&this._drawingStroke?this._strokeMoveUpdate(this._pointerEventToSignatureEvent(e)):this._strokeEnd(this._pointerEventToSignatureEvent(e),!1)}_handleMouseUp(e){this._isLeftButtonPressed(e)||this._strokeEnd(this._pointerEventToSignatureEvent(e))}_handleTouchStart(e){1!==e.targetTouches.length||this._drawingStroke||(e.cancelable&&e.preventDefault(),this._strokeBegin(this._touchEventToSignatureEvent(e)))}_handleTouchMove(e){1===e.targetTouches.length&&(e.cancelable&&e.preventDefault(),this._drawingStroke?this._strokeMoveUpdate(this._touchEventToSignatureEvent(e)):this._strokeEnd(this._touchEventToSignatureEvent(e),!1))}_handleTouchEnd(e){0===e.targetTouches.length&&(e.cancelable&&e.preventDefault(),this._strokeEnd(this._touchEventToSignatureEvent(e)))}_getPointerId(e){return e.persistentDeviceId||e.pointerId}_allowPointerId(e,t=!1){return void 0===this._strokePointerId?t:this._getPointerId(e)===this._strokePointerId}_handlePointerDown(e){!this._drawingStroke&&this._isLeftButtonPressed(e)&&this._allowPointerId(e,!0)&&(this._strokePointerId=this._getPointerId(e),e.preventDefault(),this._strokeBegin(this._pointerEventToSignatureEvent(e)))}_handlePointerMove(e){this._allowPointerId(e)&&(this._isLeftButtonPressed(e,!0)&&this._drawingStroke?(e.preventDefault(),this._strokeMoveUpdate(this._pointerEventToSignatureEvent(e))):this._strokeEnd(this._pointerEventToSignatureEvent(e),!1))}_handlePointerUp(e){!this._isLeftButtonPressed(e)&&this._allowPointerId(e)&&(e.preventDefault(),this._strokeEnd(this._pointerEventToSignatureEvent(e)))}_getPointGroupOptions(e){return{penColor:e&&"penColor"in e?e.penColor:this.penColor,dotSize:e&&"dotSize"in e?e.dotSize:this.dotSize,minWidth:e&&"minWidth"in e?e.minWidth:this.minWidth,maxWidth:e&&"maxWidth"in e?e.maxWidth:this.maxWidth,velocityFilterWeight:e&&"velocityFilterWeight"in e?e.velocityFilterWeight:this.velocityFilterWeight,compositeOperation:e&&"compositeOperation"in e?e.compositeOperation:this.compositeOperation}}_strokeBegin(e){if(!this.dispatchEvent(new CustomEvent("beginStroke",{detail:e,cancelable:!0})))return;const{addEventListener:t}=this._getListenerFunctions();switch(e.event.type){case"mousedown":t("mousemove",this._handleMouseMove,{passive:!1}),t("mouseup",this._handleMouseUp,{passive:!1});break;case"touchstart":t("touchmove",this._handleTouchMove,{passive:!1}),t("touchend",this._handleTouchEnd,{passive:!1});break;case"pointerdown":t("pointermove",this._handlePointerMove,{passive:!1}),t("pointerup",this._handlePointerUp,{passive:!1})}this._drawingStroke=!0;const n=this._getPointGroupOptions(),i={...n,points:[]};this._data.push(i),this._reset(n),this._strokeUpdate(e)}_strokeUpdate(e){if(!this._drawingStroke)return;if(0===this._data.length)return void this._strokeBegin(e);this.dispatchEvent(new CustomEvent("beforeUpdateStroke",{detail:e}));const t=this._createPoint(e.x,e.y,e.pressure),n=this._data[this._data.length-1],i=n.points,a=i.length>0&&i[i.length-1],o=!!a&&t.distanceTo(a)<=this.minDistance,r=this._getPointGroupOptions(n);if(!a||!a||!o){const e=this._addPoint(t,r);a?e&&this._drawCurve(e,r):this._drawDot(t,r),i.push({time:t.time,x:t.x,y:t.y,pressure:t.pressure})}this.dispatchEvent(new CustomEvent("afterUpdateStroke",{detail:e}))}_strokeEnd(e,t=!0){this._removeMoveUpEventListeners(),this._drawingStroke&&(t&&this._strokeUpdate(e),this._drawingStroke=!1,this._strokePointerId=void 0,this.dispatchEvent(new CustomEvent("endStroke",{detail:e})))}_handlePointerEvents(){this._drawingStroke=!1,this.canvas.addEventListener("pointerdown",this._handlePointerDown,{passive:!1})}_handleMouseEvents(){this._drawingStroke=!1,this.canvas.addEventListener("mousedown",this._handleMouseDown,{passive:!1})}_handleTouchEvents(){this.canvas.addEventListener("touchstart",this._handleTouchStart,{passive:!1})}_reset(e){this._lastPoints=[],this._lastVelocity=0,this._lastWidth=(e.minWidth+e.maxWidth)/2,this._ctx.fillStyle=e.penColor,this._ctx.globalCompositeOperation=e.compositeOperation}_createPoint(e,t,n){const i=this.canvas.getBoundingClientRect();return new Mm(e-i.left,t-i.top,n,(new Date).getTime())}_addPoint(e,t){const{_lastPoints:n}=this;if(n.push(e),n.length>2){3===n.length&&n.unshift(n[0]);const e=this._calculateCurveWidths(n[1],n[2],t),i=Sm.fromPoints(n,e);return n.shift(),i}return null}_calculateCurveWidths(e,t,n){const i=n.velocityFilterWeight*t.velocityFrom(e)+(1-n.velocityFilterWeight)*this._lastVelocity,a=this._strokeWidth(i,n),o={end:a,start:this._lastWidth};return this._lastVelocity=i,this._lastWidth=a,o}_strokeWidth(e,t){return Math.max(t.maxWidth/(e+1),t.minWidth)}_drawCurveSegment(e,t,n){const i=this._ctx;i.moveTo(e,t),i.arc(e,t,n,0,2*Math.PI,!1),this._isEmpty=!1}_drawCurve(e,t){const n=this._ctx,i=e.endWidth-e.startWidth,a=2*Math.ceil(e.length());n.beginPath(),n.fillStyle=t.penColor;for(let o=0;o<a;o+=1){const n=o/a,r=n*n,s=r*n,l=1-n,c=l*l,d=c*l;let u=d*e.startPoint.x;u+=3*c*n*e.control1.x,u+=3*l*r*e.control2.x,u+=s*e.endPoint.x;let C=d*e.startPoint.y;C+=3*c*n*e.control1.y,C+=3*l*r*e.control2.y,C+=s*e.endPoint.y;const p=Math.min(e.startWidth+s*i,t.maxWidth);this._drawCurveSegment(u,C,p)}n.closePath(),n.fill()}_drawDot(e,t){const n=this._ctx,i=t.dotSize>0?t.dotSize:(t.minWidth+t.maxWidth)/2;n.beginPath(),this._drawCurveSegment(e.x,e.y,i),n.closePath(),n.fillStyle=t.penColor,n.fill()}_fromData(e,t,n){for(const i of e){const{points:e}=i,a=this._getPointGroupOptions(i);if(e.length>1)for(let n=0;n<e.length;n+=1){const i=e[n],o=new Mm(i.x,i.y,i.pressure,i.time);0===n&&this._reset(a);const r=this._addPoint(o,a);r&&t(r,a)}else this._reset(a),n(e[0],a)}}toSVG({includeBackgroundColor:e=!1,includeDataUrl:t=!1}={}){var n,i,a,o,r;const s=this._data,l=Math.max(window.devicePixelRatio||1,1),c=this.canvas.width/l,d=this.canvas.height/l,u=document.createElementNS("http://www.w3.org/2000/svg","svg");if(u.setAttribute("xmlns","http://www.w3.org/2000/svg"),u.setAttribute("xmlns:xlink","http://www.w3.org/1999/xlink"),u.setAttribute("viewBox",`0 0 ${c} ${d}`),u.setAttribute("width",c.toString()),u.setAttribute("height",d.toString()),e&&this.backgroundColor){const e=document.createElement("rect");e.setAttribute("width","100%"),e.setAttribute("height","100%"),e.setAttribute("fill",this.backgroundColor),u.appendChild(e)}if(t&&this._dataUrl){const e=(null==(n=this._dataUrlOptions)?void 0:n.ratio)||window.devicePixelRatio||1,t=(null==(i=this._dataUrlOptions)?void 0:i.width)||this.canvas.width/e,s=(null==(a=this._dataUrlOptions)?void 0:a.height)||this.canvas.height/e,l=(null==(o=this._dataUrlOptions)?void 0:o.xOffset)||0,c=(null==(r=this._dataUrlOptions)?void 0:r.yOffset)||0,d=document.createElement("image");d.setAttribute("x",l.toString()),d.setAttribute("y",c.toString()),d.setAttribute("width",t.toString()),d.setAttribute("height",s.toString()),d.setAttribute("preserveAspectRatio","none"),d.setAttribute("href",this._dataUrl),u.appendChild(d)}return this._fromData(s,(e,{penColor:t})=>{const n=document.createElement("path");if(!(isNaN(e.control1.x)||isNaN(e.control1.y)||isNaN(e.control2.x)||isNaN(e.control2.y))){const i=`M ${e.startPoint.x.toFixed(3)},${e.startPoint.y.toFixed(3)} C ${e.control1.x.toFixed(3)},${e.control1.y.toFixed(3)} ${e.control2.x.toFixed(3)},${e.control2.y.toFixed(3)} ${e.endPoint.x.toFixed(3)},${e.endPoint.y.toFixed(3)}`;n.setAttribute("d",i),n.setAttribute("stroke-width",(2.25*e.endWidth).toFixed(3)),n.setAttribute("stroke",t),n.setAttribute("fill","none"),n.setAttribute("stroke-linecap","round"),u.appendChild(n)}},(e,{penColor:t,dotSize:n,minWidth:i,maxWidth:a})=>{const o=document.createElement("circle"),r=n>0?n:(i+a)/2;o.setAttribute("r",r.toString()),o.setAttribute("cx",e.x.toString()),o.setAttribute("cy",e.y.toString()),o.setAttribute("fill",t),u.appendChild(o)}),u.outerHTML}};const bm={container:"_container_1rllt_2",canvasWrap:"_canvasWrap_1rllt_7",canvas:"_canvas_1rllt_7",clearButton:"_clearButton_1rllt_24",validationContainer:"_validationContainer_1rllt_28",validationMessage:"_validationMessage_1rllt_36",error:"_error_1rllt_50"};const Fm=oc({name:"SignaturePad",components:{AppButton:HC,FormFieldLabel:XC},data:()=>({signaturePad:null,errors:[]}),computed:{hasErrors(){return this.errors.length>0}},mounted(){this.initSignaturePad(),window.addEventListener("resize",this.resizeCanvas),this.resizeCanvas()},unmounted(){window.removeEventListener("resize",this.resizeCanvas)},methods:{initSignaturePad(){this.signaturePad=new Am(this.$refs.canvas,{backgroundColor:"rgb(255, 255, 255)"})},resizeCanvas(){const e=this.$refs.canvas,t=Math.max(window.devicePixelRatio||1,1);e.width=e.offsetWidth*t,e.height=e.offsetHeight*t,e.getContext("2d").scale(t,t),this.signaturePad.fromData(this.signaturePad.toData())},clear(){this.signaturePad.clear()},toDataURL(e){return this.signaturePad.toDataURL(e)},toData(){return this.signaturePad.toData()},isEmpty(){return this.signaturePad.isEmpty()},validate(){return this.errors=[],!this.signaturePad.isEmpty()||(this.errors.push(this.$t("this-field-is-required")),!1)}}},[["render",function(e,t,n,i,a,o){const r=Ci("FormFieldLabel"),s=Ci("AppButton");return Na(),Oa("div",{class:K(e.$style.signaturePad)},[Za(r,null,{default:gn(()=>[Wa(J(e.$t("Draw signature")),1)]),_:1}),Ka("div",{class:K(e.$style.canvasWrap)},[Ka("canvas",{ref:"canvas",class:K([e.$style.canvas,{[e.$style.error]:o.hasErrors}]),onClick:t[0]||(t[0]=(...e)=>o.validate&&o.validate(...e))},null,2)],2),o.hasErrors?(Na(),Oa("ul",{key:0,class:K(e.$style.validationContainer)},[(Na(!0),Oa(Ta,null,mi(a.errors,t=>(Na(),Oa("li",{key:t,class:K(e.$style.validationMessage)},J(t),3))),128))],2)):Qa("",!0),Ka("div",{class:K(e.$style.container)},[Za(s,{scheme:"secondary",class:K(e.$style.clearButton),"on-click":o.clear},{default:gn(()=>[Wa(J(e.$t("clear")),1)]),_:1},8,["class","on-click"])],2)],2)}],["__cssModules",{$style:bm}]]),_m={container:"_container_erqxk_2",line:"_line_erqxk_7",mb4:"_mb4_erqxk_11",mt4:"_mt4_erqxk_15",resendLink:"_resendLink_erqxk_19"},km={key:0},Im={class:"container"},Tm={key:1,class:"container"},Em={key:2,class:"container"},Lm={key:3},Bm={key:0},Dm="STEP_REQUEST_CODE",xm="STEP_ENTER_CODE",Nm="STEP_CONFIRM",zm=oc({__name:"SignatureOtp",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,endSignatureProcessing:s,loadingStart:l,loadingEnd:c,addFlashMessage:d,clearFlashMessages:u}=o,{inputValues:C,otpEmail:p,otpPhone:h,emailToken:g,isOtpSent:f,additionalMethodConfig:m,requireHandwrittenSignature:v}=ts(o),y=bt({}),M=bt({}),S=bt(null),w=bt(null),A=bt(null),b=bt(null),F=bt(null),_=bt(null);function k(){I(f.value?xm:Dm)}function I(e){w.value=S.value,S.value=e}const T=wo(()=>{const e=[];return h.value&&e.push(h.value),p.value&&e.push(p.value),[{type:"textSection",text:t.t("confirmation-code-will-be-sent-to")+" "+e.join(" & ")},{type:"submit",label:t.t("continue")}]}),E=wo(()=>{const e=[];return p.value&&e.push({type:g.value?"hidden":"text",name:"email_token",instructions:t.t("email-code-sent")+" "+p.value,label:t.t("your-code"),validation:["required"]}),h.value&&e.push({type:"text",name:"sms_token",instructions:t.t("sms-code-sent")+" "+h.value,label:t.t("your-code"),validation:["required"]}),e.length&&e.push({type:"submit",label:t.t("Sign")}),e}),L=wo({get:()=>({email_token:C.value.email_token,sms_token:C.value.sms_token}),set(e){r(e)}});function B(){if(v.value){if(!_.value.validate())return;b.value=_.value.toData(),A.value=_.value.toDataURL()}I(Nm)}function D(){I(Dm)}function x(){I(w.value)}function N(){z()}function z(){l(),u(),y.value={};const e=m.value||{};M.value=n.signature.otpSignature.start({emailToken:L.value.email_token,smsToken:L.value.sms_token,handwrittenSignatureData:b.value,handwrittenSignatureDataUrl:A.value,started:e=>{e.data&&e.data.token&&(c(),I(xm))},confirmationCodeRequest:(e,t)=>{F.value=t},fail:e=>{e.isCancel||(d(e),r({sms_token:"",email_token:""})),y.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{k(),s(),c()},...e})}return ni(()=>{k()}),oi(()=>{!function(){const{cancel:e}=M.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",null,[It(h)||It(p)?S.value===Nm?(Na(),Oa("div",Tm,[Za(ym,{"on-approve-confirm":N,"on-reject-confirm":x})])):S.value===Dm?(Na(),Oa("div",Em,[Za(up,{id:"requestCodeForm",schema:T.value,"on-submit":z,errors:y.value},null,8,["schema","errors"])])):(Na(),Oa("div",Lm,[Ka("div",{class:K(e.$style.container)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.mb4)},"Phone: "+J(It(h)),3)):Qa("",!0),It(p)?(Na(),Oa("div",{key:1,class:K(e.$style.mb4)},[t[2]||(t[2]=Wa(" Email: ")),Ka("b",null,J(It(p)),1)],2)):Qa("",!0)],2),E.value.length?(Na(),Oa("div",Bm,[It(v)?(Na(),Pa(Fm,{key:0,ref_key:"signaturePad",ref:_},null,512)):Qa("",!0),Ka("div",{class:K(e.$style.container)},[Za(up,{id:"otpSignatureForm",modelValue:L.value,"onUpdate:modelValue":t[0]||(t[0]=e=>L.value=e),schema:E.value,"on-submit":B,errors:y.value},null,8,["modelValue","schema","errors"]),Ka("div",{class:K(e.$style.mt4)},[Wa(J(e.$t("Didnt receive a code?"))+" ",1),Ka("a",{href:"#",class:K(e.$style.resendLink),onClick:kr(D,["prevent"])},J(e.$t("Resend")),3)],2)],2)])):Qa("",!0)])):(Na(),Oa("div",km,[Ka("div",Im,[Za(rc,{scheme:"danger"},{default:gn(()=>t[1]||(t[1]=[Wa(" Missing otpEmail or otpPhone ")])),_:1,__:[1]})])]))]))}},[["__cssModules",{$style:_m}]]),Vm={fill:"#000000",version:"1.1",id:"info-icon_svg__Capa_1",xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 416.979 416.979","xml:space":"preserve"};const Rm={render:function(e,t){return Na(),Oa("svg",Vm,t[0]||(t[0]=[Ka("g",null,[Ka("path",{d:"M356.004,61.156c-81.37-81.47-213.377-81.551-294.848-0.182c-81.47,81.371-81.552,213.379-0.181,294.85\n\t\tc81.369,81.47,213.378,81.551,294.849,0.181C437.293,274.636,437.375,142.626,356.004,61.156z M237.6,340.786\n\t\tc0,3.217-2.607,5.822-5.822,5.822h-46.576c-3.215,0-5.822-2.605-5.822-5.822V167.885c0-3.217,2.607-5.822,5.822-5.822h46.576\n\t\tc3.215,0,5.822,2.604,5.822,5.822V340.786z M208.49,137.901c-18.618,0-33.766-15.146-33.766-33.765\n\t\tc0-18.617,15.147-33.766,33.766-33.766c18.619,0,33.766,15.148,33.766,33.766C242.256,122.755,227.107,137.901,208.49,137.901z"})],-1)]))}},Om={mt4:"_mt4_10krr_2",formContainer:"_formContainer_10krr_6",label:"_label_10krr_11",highlight:"_highlight_10krr_16",infoIcon:"_infoIcon_10krr_21",infoSection:"_infoSection_10krr_27",iconWrap:"_iconWrap_10krr_34",infoLink:"_infoLink_10krr_40"},Pm={key:1},Um={__name:"SignatureEvrotrust",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(null),y=bt({});function M(){const{refresh:e}=y.value;e&&e()}const S=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:h.value+"00000000"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function A(){s(),d(),m.value={};const e={...w.value};e.phone=e.phone||"";const t=g.value||{};y.value=n.signature.evroTrustSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.transaction_id&&(v.value=e.data.transaction_id,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&A()}),oi(()=>{!function(){const{cancel:e}=y.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1}),Ka("div",{class:K(e.$style.mt4)},[Za(mp,{"on-click":M})],2)],2)):(Na(),Oa("div",Pm,[Za(up,{id:"smartIdSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":A,errors:m.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},Gm={$style:Om},jm=oc(Um,[["__cssModules",Gm]]),Hm={mt4:"_mt4_10krr_2",formContainer:"_formContainer_10krr_6",label:"_label_10krr_11",highlight:"_highlight_10krr_16",infoIcon:"_infoIcon_10krr_21",infoSection:"_infoSection_10krr_27",iconWrap:"_iconWrap_10krr_34",infoLink:"_infoLink_10krr_40"},Km={key:1},Zm={__name:"SignatureEvrotrustGeda",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(null),y=bt({});function M(){const{refresh:e}=y.value;e&&e()}const S=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:h.value+"00000000"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function A(){s(),d(),m.value={};const e={...w.value};e.phone=e.phone||"";const t=g.value||{};y.value=n.signature.evroTrustGedaSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.transaction_id&&(v.value=e.data.transaction_id,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&A()}),oi(()=>{!function(){const{cancel:e}=y.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1}),Ka("div",{class:K(e.$style.mt4)},[Za(mp,{"on-click":M})],2)],2)):(Na(),Oa("div",Km,[Za(up,{id:"evrotrustGedaSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":A,errors:m.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},qm={$style:Hm},Wm=oc(Zm,[["__cssModules",qm]]),Jm={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},Qm={key:1},Ym={__name:"SignatureDTrustSignMe",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username-or-email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.dTrustSignMeSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm)],2)):(Na(),Oa("div",Qm,[Za(up,{id:"dTrustSignMeSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info-2",{method:"D-trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://cloud.sign-me.de/signature/start",target:"_blank",rel:"noopener noreferrer"},J(e.$t("here")),3)])],2)],2))}},Xm={$style:Jm},$m=oc(Ym,[["__cssModules",Xm]]),ev={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},tv={key:1},nv={__name:"SignatureDTrustSignMeAdv",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username-or-email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.dTrustSignMeAdvSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm)],2)):(Na(),Oa("div",tv,[Za(up,{id:"dTrustSignMeAdvSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info-2",{method:"D-trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://cloud.sign-me.de/signature/start",target:"_blank",rel:"noopener noreferrer"},J(e.$t("here")),3)])],2)],2))}},iv={$style:ev},av=oc(nv,[["__cssModules",iv]]),ov={formContainer:"_formContainer_b77pi_2"},rv={key:0,class:"challenge"},sv={key:1},lv={key:2},cv="STEP_START",dv="STEP_CONFIRM",uv={__name:"SignatureChaveMovel",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt([]),v=bt(null),y=bt(null);v.value=cv;const M=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number")+", "+t.t("including-calling-code"),validation:["required"]},{type:"password",name:"signingPin",label:t.t("digital-signature-pin"),validation:["required"]},{type:"textSection",text:t.t("mobile-key-signing-info")},{type:"submit",label:t.t("Sign")}]),S=wo(()=>[{type:"password",name:"confirmationCode",label:t.t("enter-temp-security-code"),validation:["required"]},{type:"textSection",text:t.t("you-have-5-minutes-to-enter-the-code")},{type:"textSection",text:t.t("after-confirmation-following-docs-will-be-signed")+" "+m.value.map(e=>e.fileName).join(", ")+". "+t.t("signature-confirmation-irreversible-note")},{type:"textSection",text:t.t("mobile-key-signing-info")},{type:"submit",label:t.t("confirm")}]),w=wo({get:()=>({phone:C.value.phone,signingPin:C.value.signingPin}),set(e){r(e)}}),A=wo({get:()=>({confirmationCode:C.value.confirmationCode}),set(e){r(e)}});function b(){s(),d(),g.value={};const e={...w.value},t=h.value||{};f.value=n.signature.chaveMovelSignature.start({...e,started:e=>{e.data&&e.data.token&&(l(),m.value=e.data.files,v.value=dv)},confirmationCodeRequest:(e,t)=>{y.value=t},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=cv,r({confirmationCode:""}),u(),l()},...t})}function F(){s(),y.value(A.value.confirmationCode)}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",rv,[Za(pm)])):v.value===cv?(Na(),Oa("div",sv,[Za(up,{id:"chaveMovelUserCredentialsForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:M.value,"on-submit":b,errors:g.value},null,8,["modelValue","schema","errors"])])):v.value===dv?(Na(),Oa("div",lv,[Za(up,{id:"chaveMovelConfirmationForm",modelValue:A.value,"onUpdate:modelValue":t[1]||(t[1]=e=>A.value=e),schema:S.value,"on-submit":F,errors:g.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},Cv={$style:ov},pv=oc(uv,[["__cssModules",Cv]]),hv={formContainer:"_formContainer_b77pi_2"},gv={key:0,class:"challenge"},fv={key:1},mv={__name:"SignatureECertChile",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode,email:p.value.email}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.eCertChileSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",gv,[Za(pm)])):(Na(),Oa("div",fv,[Za(up,{id:"eCertChileSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},vv={$style:hv},yv=oc(mv,[["__cssModules",vv]]),Mv={formContainer:"_formContainer_b77pi_2"},Sv={key:0,class:"challenge"},wv={key:1},Av={__name:"SignatureNoBankId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"name",validation:["required"],label:t.t("name")},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({name:p.value.name}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.noBankIdAdvSignature.start({...e,started:()=>{u()},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",Sv,[Za(pm)])):(Na(),Oa("div",wv,[Za(up,{id:"noBankIdSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},bv={$style:Mv},Fv=oc(Av,[["__cssModules",bv]]),_v={formContainer:"_formContainer_b77pi_2"},kv={key:0,class:"challenge"},Iv={key:1},Tv={__name:"SignatureSpidQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,signatureIsProcessing:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"text",name:"phone",label:t.t("phone-number")+", "+t.t("including-calling-code"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({email:p.value.email,phone:p.value.phone}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=g.value||{};m.value=n.signature.spidQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(h)?(Na(),Oa("div",kv,[Za(pm)])):(Na(),Oa("div",Iv,[Za(up,{id:"spidQesSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},Ev={$style:_v},Lv=oc(Tv,[["__cssModules",Ev]]),Bv={formContainer:"_formContainer_b77pi_2"},Dv={key:0,class:"userInstructions"},xv={key:1},Nv=oc({__name:"SignatureFrejaId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(),m=bt({});const v=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({email:p.value.email}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},o=h.value||{};m.value=n.signature.frejaSimpleSignature.start({...e,started:()=>{f.value=t.t("approve-sign-request-on-freja-app"),u(),l()},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...o})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Dv,[Za(gp,{"user-instructions":f.value},null,8,["user-instructions"])])):(Na(),Oa("div",xv,[Za(up,{id:"frejaSignatureIdForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:Bv}]]),zv={formContainer:"_formContainer_b77pi_2"},Vv={key:0,class:"challenge"},Rv={key:1},Ov=oc({__name:"SignatureAudkenni",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={},m.value=n.signature.audkenniQesSignature.start({...y.value,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...h})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Vv,[Za(gp,{challenge:f.value},null,8,["challenge"])])):(Na(),Oa("div",Rv,[Za(up,{id:"audkenniSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:zv}]]),Pv={formContainer:"_formContainer_b77pi_2"},Uv={key:0,class:"challenge"},Gv={key:1},jv={key:2},Hv="STEP_START",Kv="STEP_CONFIRM",Zv=oc({__name:"SignatureUanatacaQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt(null),v=bt(null);m.value=Hv;const y=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"password",label:t.t("password"),validation:["required"]},{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),M=wo({get:()=>({username:C.value.username??"",password:C.value.password??"",pin:C.value.pin??""}),set(e){r(e)}}),S=wo(()=>[{type:"password",name:"confirmationCode",label:t.t("your-sms-otp-code"),validation:["required"]},{type:"submit",label:t.t("confirm")}]),w=wo({get:()=>({confirmationCode:C.value.confirmationCode}),set(e){r(e)}});function A(){s(),d(),g.value={};const e={...M.value},t=h.value||{};f.value=n.signature.uanatacaQesSignature.start({...e,started:e=>{e.data&&e.data.token&&(l(),m.value=Kv)},confirmationCodeRequest:(e,t)=>{v.value=t},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=Hv,r({confirmationCode:""}),u(),l()},...t})}function b(){s(),v.value(w.value.confirmationCode)}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Uv,[Za(pm)])):m.value===Hv?(Na(),Oa("div",Gv,[Za(up,{id:"uanatacaQesSignatureForm",modelValue:M.value,"onUpdate:modelValue":t[0]||(t[0]=e=>M.value=e),schema:y.value,"on-submit":A,errors:g.value},null,8,["modelValue","schema","errors"])])):m.value===Kv?(Na(),Oa("div",jv,[Za(up,{id:"uanatacaQesSignatureConfirmationForm",modelValue:w.value,"onUpdate:modelValue":t[1]||(t[1]=e=>w.value=e),schema:S.value,"on-submit":b,errors:g.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},[["__cssModules",{$style:Pv}]]),qv={formContainer:"_formContainer_mv0un_2",label:"_label_mv0un_7"},Wv={key:0,class:"challenge"},Jv={key:1},Qv={key:2},Yv={class:"formContainer"},Xv="STEP_START",$v="STEP_CONFIRM",ey=oc({__name:"SignatureInfoCertQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,endSignatureProcessing:u}=o,{inputValues:C,signatureIsProcessing:p,additionalMethodConfig:h,mode:g}=ts(o),f=bt({}),m=bt({}),v=bt("STEP_START"),y=bt(null),M=bt(null);const S=wo(()=>[{type:"text",name:"userId",label:t.t("User ID"),validation:["required"],placeholder:"MA123456"},{type:"submit",label:t.t("Sign")}]),w=wo({get:()=>({userId:C.value.userId??"",password:C.value.password??"",pin:C.value.pin??""}),set(e){r(e)}}),A=wo(()=>[{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"text",name:"otp",label:t.t("otp"),validation:["required"]},{type:"submit",label:t.t("confirm")}]),b=wo({get:()=>({pin:C.value.pin,otp:C.value.otp}),set(e){r(e)}});function F(){s(),d(),f.value={};const e={...w.value},t=h.value||{};m.value=n.signature.infoCertQesSignature.start({...e,action:g.value,started:e=>{e.data&&e.data.token&&(l(),v.value=$v,y.value=e.data.message)},otpCodeRequest:(e,t)=>{M.value=t},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=Xv,r({confirmationCode:""}),u(),l()},...t})}function _(){s(),M.value(b.value)}return ni(()=>{v.value=Xv,"cscApiSign"===g.value&&(F(),v.value=$v)}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Wv,[Za(pm)])):v.value===Xv?(Na(),Oa("div",Jv,[Za(up,{id:"infoCertQesSignatureForm",modelValue:w.value,"onUpdate:modelValue":t[0]||(t[0]=e=>w.value=e),schema:S.value,"on-submit":F,errors:f.value},null,8,["modelValue","schema","errors"])])):v.value===$v?(Na(),Oa("div",Qv,[Ka("div",Yv,[Za(rc,{scheme:"success"},{default:gn(()=>[Wa(J(y.value),1)]),_:1})]),Za(up,{id:"infoCertQesSignatureOtpCodeForm",modelValue:b.value,"onUpdate:modelValue":t[1]||(t[1]=e=>b.value=e),schema:A.value,"on-submit":_,errors:f.value},null,8,["modelValue","schema","errors"])])):Qa("",!0)],2))}},[["__cssModules",{$style:qv}]]),ty={formContainer:"_formContainer_1mokl_2",label:"_label_1mokl_7",highlight:"_highlight_1mokl_12"},ny={key:1},iy=oc({__name:"SignatureHalcomQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCodeForCurrentCountry:h,additionalMethodConfig:g,mode:f}=ts(o),m=bt({}),v=bt(),y=bt({});const M=wo(()=>[{type:"text",name:"username",label:t.t("username")},{type:"sectionSpacer",text:t.t("or")+":"},{type:"tel",name:"phoneWithoutCallingCode",label:t.t("phone-number"),callingCode:h.value},{type:"sectionSpacer",text:t.t("or")+":"},{type:"email",name:"email",label:t.t("email")},{type:"submit",label:t.t("Sign")}]),S=wo({get:()=>({username:p.value.username,email:p.value.email,phoneWithoutCallingCode:p.value.phoneWithoutCallingCode}),set(e){r(e)}});function w(){s(),d(),m.value={};const e={...S.value};e.phone=e.phoneWithoutCallingCode?h.value+e.phoneWithoutCallingCode:"";const t=g.value||{};y.value=n.signature.halcomQesSignature.start({...e,action:f.value,started:e=>{e.data&&e.data.challenge&&(v.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),m.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{v.value=void 0,C(),l()},...t})}return ni(()=>{"cscApiSign"===f.value&&w()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[v.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-halcom-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(v.value),3)]),_:1})],2)):(Na(),Oa("div",ny,[Za(up,{id:"halcomSignatureForm",modelValue:S.value,"onUpdate:modelValue":t[0]||(t[0]=e=>S.value=e),schema:M.value,"on-submit":w,errors:m.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ty}]]),ay={formContainer:"_formContainer_b77pi_2"},oy={key:0,class:"challenge"},ry={key:1},sy=oc({__name:"SignatureSwissIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,callingCode:h,additionalMethodConfig:g}=ts(o),f=bt({}),m=bt(null),v=bt({});const y=wo(()=>[{type:"email",name:"email",label:t.t("email")},{type:"submit",label:t.t("Sign")}]),M=wo({get:()=>({email:p.value.email}),set(e){r(e)}});function S(){s(),d(),f.value={};const e={...M.value};e.phone=e.phone?h.value+e.phone:"";const t=g.value||{};v.value=n.signature.swissIdQesSignature.start({...e,started:e=>{e.data&&e.data.token&&(m.value=e.data.token,l(),u())},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[m.value?(Na(),Oa("div",oy,[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-swiss-id-app")),1)]),_:1})])):(Na(),Oa("div",ry,[Za(up,{id:"swissIdSignatureForm",modelValue:M.value,"onUpdate:modelValue":t[0]||(t[0]=e=>M.value=e),schema:y.value,"on-submit":S,errors:f.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ay}]]),ly={formContainer:"_formContainer_nh7n0_2",label:"_label_nh7n0_7",highlight:"_highlight_nh7n0_12",infoSection:"_infoSection_nh7n0_17",infoIcon:"_infoIcon_nh7n0_24",infoLink:"_infoLink_nh7n0_30",iconWrap:"_iconWrap_nh7n0_34"},cy={key:1},dy=oc({__name:"SignatureSwissComQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(null),m=bt({});const v=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({phone:p.value.phone}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.swissComQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-app",{name:"Swisscom"})),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(f.value),3)]),_:1})],2)):(Na(),Oa("div",cy,[Za(up,{id:"swissComSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Swisscom"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.eideasy.com/help/get-started-swisscom",target:"_blank",rel:"noopener noreferrer"}," https://www.eideasy.com/help/get-started-swisscom ",2)])],2)],2))}},[["__cssModules",{$style:ly}]]),uy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},Cy={key:0,class:"challenge"},py={key:1},hy=oc({__name:"SignatureMitIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.mitIdAdvancedSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",Cy,[Za(pm)])):(Na(),Oa("div",py,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("MitID")})),3),t[1]||(t[1]=Ka("br",null,null,-1)),Za(up,{id:"mitIdAdvancedSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:uy}]]),gy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},fy={key:0,class:"challenge"},my={key:1},vy=oc({__name:"SignatureMitIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.mitIdQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[It(p)?(Na(),Oa("div",fy,[Za(pm)])):(Na(),Oa("div",my,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("MitID")})),3),t[1]||(t[1]=Ka("br",null,null,-1)),Za(up,{id:"mitIdQesSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:gy}]]),yy={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},My={key:0,class:"challenge"},Sy={key:1},wy=oc({__name:"SignatureSeBankIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.seBankIdAdvancedSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>It(p)?(Na(),Oa("div",My,[Za(pm)])):(Na(),Oa("div",Sy,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("BankID")})),3),Ka("div",{class:K(e.$style.formContainer)},[Za(up,{id:"seBankIdAdvancedSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])],2)]))}},[["__cssModules",{$style:yy}]]),Ay={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},by={key:0,class:"challenge"},Fy={key:1},_y=oc({__name:"SignatureSeBankIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{signatureIsProcessing:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.seBankIdQesSignature.start({...e,started:e=>{e.data&&e.data.transaction_id&&(l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>It(p)?(Na(),Oa("div",by,[Za(pm)])):(Na(),Oa("div",Fy,[Ka("div",{class:K(e.$style.note)},J(e.$t("pre-sign-confirmation",{method:e.$t("BankID")})),3),Ka("div",{class:K(e.$style.formContainer)},[Za(up,{id:"seBankIdQesSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])],2)]))}},[["__cssModules",{$style:Ay}]]),ky={formContainer:"_formContainer_b77pi_2"},Iy={key:0,class:"userInstructions"},Ty={key:1},Ey=oc({__name:"SignatureFrejaIdAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{inputValues:C,additionalMethodConfig:p}=ts(o),h=bt({}),g=bt(),f=bt({});const m=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"textSection",text:t.t("pre-sign-confirmation",{method:t.t("FREJA EID")})},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({email:C.value.email}),set(e){r(e)}});function y(){c(),h.value={};const e={...v.value},o=p.value||{};g.value=t.t("approve-sign-request-on-freja-app"),f.value=n.signature.frejaAdvancedSignature.start({...e,started:()=>{d()},fail:e=>{g.value=void 0,e.isCancel||l(e),h.value=OC(e),a(e)},success:e=>{g.value=void 0,i(e)},finished:()=>{g.value=void 0,u(),s()},...o})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[g.value?(Na(),Oa("div",Iy,[Za(gp,{"user-instructions":g.value},null,8,["user-instructions"])])):(Na(),Oa("div",Ty,[Za(up,{id:"frejaSignatureIdForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:h.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:ky}]]),Ly={formContainer:"_formContainer_b77pi_2"},By={key:0,class:"userInstructions"},Dy={key:1},xy=oc({__name:"SignatureFrejaIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{inputValues:C,additionalMethodConfig:p}=ts(o),h=bt({}),g=bt(),f=bt({});const m=wo(()=>[{type:"email",name:"email",label:t.t("email"),validation:["required"]},{type:"textSection",text:t.t("pre-sign-confirmation",{method:t.t("FREJA EID")})},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({email:C.value.email}),set(e){r(e)}});function y(){c(),h.value={};const e={...v.value},o=p.value||{};g.value=t.t("approve-sign-request-on-freja-app"),f.value=n.signature.frejaQesSignature.start({...e,started:()=>{d()},fail:e=>{g.value=void 0,e.isCancel||l(e),h.value=OC(e),a(e)},success:e=>{g.value=void 0,i(e)},finished:()=>{g.value=void 0,u(),s()},...o})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[g.value?(Na(),Oa("div",By,[Za(gp,{"user-instructions":g.value},null,8,["user-instructions"])])):(Na(),Oa("div",Dy,[Za(up,{id:"frejaSignatureIdForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:h.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:Ly}]]),Ny={formContainer:"_formContainer_19mgg_2",note:"_note_19mgg_7"},zy=oc({__name:"IdentificationMitId",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{loadingStart:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c}=o,{clientInfo:d,additionalMethodConfig:u,mode:C}=ts(o),p=bt({}),h=bt({});const g=wo(()=>[{type:"submit",label:t.t("log-in")}]);function f(){r(),c(),p.value={};const e=u.value||{};h.value=n.identification.mitId.start({action:C.value,fail:e=>{e.isCancel||l(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{s()},...e})}return oi(()=>{!function(){const{cancel:e}=h.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",{class:K(e.$style.note)},J(e.$t("client-request-data-confirmation",{websiteName:It(d).websiteName,companyName:`(${It(d).companyName})`})),3),t[0]||(t[0]=Ka("br",null,null,-1)),Za(up,{id:"mitIdForm",class:"formContainer",schema:g.value,"on-submit":f,errors:p.value},null,8,["schema","errors"])],2))}},[["__cssModules",{$style:Ny}]]),Vy={formContainer:"_formContainer_psfc2_2",mt4:"_mt4_psfc2_7",mb4:"_mb4_psfc2_11",infoIcon:"_infoIcon_psfc2_15",infoSection:"_infoSection_psfc2_21",iconWrap:"_iconWrap_psfc2_28",infoLink:"_infoLink_psfc2_34"},Ry=oc({__name:"SignatureItsmeQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,changeView:u}=o,{additionalMethodConfig:C}=ts(o),p=bt({}),h=bt({});const g=wo(()=>[{type:"submit",label:t.t("Sign")}]),f=wo({get:()=>({}),set(e){r(e)}});function m(){const{cancel:e}=h.value;e&&e(),u(cs.MethodSelection)}function v(){s(),d(),p.value={};const e=C.value||{};h.value=n.signature.itsmeQesSignature.start({confirmedBySigner:!0,fail:e=>{e.isCancel||c(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{l()},...e})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",{class:K(e.$style.mb4)},J(e.$t("i-accept-and-approve-this-doc")),3),Za(up,{id:"itsmeQesSignatureForm",modelValue:f.value,"onUpdate:modelValue":t[0]||(t[0]=e=>f.value=e),schema:g.value,"on-submit":v,errors:p.value},null,8,["modelValue","schema","errors"]),Ka("div",{class:K(e.$style.mt4)},[Za(HC,{scheme:"secondary","on-click":m},{default:gn(()=>[Wa(J(e.$t("cancel")),1)]),_:1})],2),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Itsme"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.itsme-id.com/get-started",target:"_blank",rel:"noopener noreferrer"}," https://www.itsme-id.com/get-started ",2)])],2)],2))}},[["__cssModules",{$style:Vy}]]),Oy={formContainer:"_formContainer_b77pi_2"},Py=oc({__name:"SignatureHandwritten",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{loadingStart:r,loadingEnd:s,addFlashMessage:l,clearFlashMessages:c,startSignatureProcessing:d,endSignatureProcessing:u}=o,{additionalMethodConfig:C,mode:p}=ts(o),h=bt({}),g=bt(null),f=bt(null),m=bt(null),v=wo(()=>[{type:"submit",label:t.t("Sign")}]);function y(){m.value.validate()&&(f.value=m.value.toData(),g.value=m.value.toDataURL(),function(){r(),c();const e=C.value||{};h.value=n.signature.handwrittenSignature.start({handwrittenSignatureData:f.value,handwrittenSignatureDataUrl:g.value,action:p.value,started:()=>{s(),d()},fail:e=>{e.isCancel||l(e),a(e)},success:e=>{i(e)},finished:()=>{u(),s()},...e})}())}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Za(Fm,{ref_key:"signaturePad",ref:m},null,512),Za(up,{id:"handwrittenSignatureForm",schema:v.value,"on-submit":y},null,8,["schema"])],2))}},[["__cssModules",{$style:Oy}]]),Uy={formContainer:"_formContainer_b77pi_2"},Gy=oc({__name:"SignatureHaricaQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({});const m=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"password",label:t.t("password"),validation:["required"]},{type:"password",name:"otpCode",label:t.t("enter-temp-security-code"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),v=wo({get:()=>({username:p.value.username,password:p.value.password,otpCode:p.value.otpCode}),set(e){r(e)}});function y(){s(),d(),g.value={};const e={...v.value},t=h.value||{};f.value=n.signature.haricaQesSignature.start({...e,started:()=>{u()},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",null,[Za(up,{id:"haricaSignatureForm",modelValue:v.value,"onUpdate:modelValue":t[0]||(t[0]=e=>v.value=e),schema:m.value,"on-submit":y,errors:g.value},null,8,["modelValue","schema","errors"])])],2))}},[["__cssModules",{$style:Uy}]]),jy={formContainer:"_formContainer_b77pi_2"},Hy={key:0,class:"challenge"},Ky={key:1},Zy=oc({__name:"SignatureLtIdQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(void 0),m=bt({});const v=wo(()=>[{type:"text",name:"idcode",label:t.t("idcode"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.ltIdQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",Hy,[Za(gp,{challenge:f.value},null,8,["challenge"])])):(Na(),Oa("div",Ky,[Za(up,{id:"ltIdQesSignatureIdForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])]))],2))}},[["__cssModules",{$style:jy}]]),qy={formContainer:"_formContainer_9m4rx_2",iframeHolder:"_iframeHolder_9m4rx_6",stepHidden:"_stepHidden_9m4rx_11",buttonHolder:"_buttonHolder_9m4rx_15"},Wy="startButton",Jy="signing",Qy="success",Yy=oc({__name:"SignatureIframe",setup(e){const t=Vf(),n=function(e="$style"){{const t=oo();if(!t)return i;const n=t.type.__cssModules;if(!n)return i;return n[e]||i}}(),a=Hi("eidEasyClient"),o=Hi("eidEasyOnSuccess"),r=Hi("eidEasyOnFail"),s=Hi("eidEasyMethodsConfig"),l=Hi("useAppStore")(),{addFlashMessage:c,clearFlashMessages:d}=l,{additionalMethodConfig:u,currentMethod:C,mode:p,signingCertificate:h}=ts(l),g=bt({}),f=bt(null),m=bt(null),v=wo(()=>s.methodsByActionType),y=wo(()=>t.t("finalizing")+"..."),M=wo(()=>[{type:"submit",label:t.t("Sign")}]);function S(){f.value=Jy,d();const e=u.value||{},t=v.value[C.value.actionType];g.value=a.signature[t.handlingModule].start({action:p.value,iframeHolder:m.value,signingCertificate:h.value,fail:e=>{e.isCancel||c(e),f.value=Wy,r(e)},success:e=>{f.value=Qy,m.value.innerHTML="",o(e)},finished:()=>{},...e})}function w(e){return e===f.value?[]:[n.stepHidden]}return ni(()=>{f.value=Jy,on(()=>{S()})}),oi(()=>{!function(){const{cancel:e}=g.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(It(n).formContainer)},[Ka("div",{ref_key:"iframeHolder",ref:m,class:K([It(n).iframeHolder,{[It(n).stepHidden]:f.value===Qy}])},null,2),Ka("div",{class:K(w(Wy))},[Ka("div",{class:K(It(n).buttonHolder)},[Za(up,{id:"iframeSignatureForm",schema:M.value,"on-submit":S},null,8,["schema"])],2)],2),Ka("div",{class:K(w(Qy))},[Za(gp,{"user-instructions":y.value},null,8,["user-instructions"])],2)],2))}},[["__cssModules",{$style:qy}]]),Xy={formContainer:"_formContainer_b77pi_2"},$y=oc({__name:"SignatureEsLleidaAdvanced",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h,mode:g}=ts(o),f=bt({}),m=bt({});const v=wo(()=>[{type:"text",name:"username",label:t.t("username"),validation:["required"]},{type:"password",name:"pin",label:t.t("pin"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({username:p.value.username,pin:p.value.pin}),set(e){r(e)}});function M(){s(),d(),f.value={};const e={...y.value},t=h.value||{};m.value=n.signature.esLleidaAdvSignature.start({...e,action:g.value,started:()=>{u()},fail:e=>{e.isCancel||c(e),f.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{C(),l()},...t})}return ni(()=>{"cscApiSign"===g.value&&M()}),oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Ka("div",null,[Za(up,{id:"esLleidaSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:f.value},null,8,["modelValue","schema","errors"])])],2))}},[["__cssModules",{$style:Xy}]]),eM={formContainer:"_formContainer_4fee0_2",infoIcon:"_infoIcon_4fee0_7",contentCenter:"_contentCenter_4fee0_13",infoSection:"_infoSection_4fee0_17",iconWrap:"_iconWrap_4fee0_24",infoLink:"_infoLink_4fee0_30",space:"_space_4fee0_34",buttonSpace:"_buttonSpace_4fee0_38"},tM={key:0},nM={key:1},iM=["href"],aM=["src"],oM=oc({__name:"SignatureDiia",setup(e){const t=Hi("eidEasyClient"),n=Hi("eidEasyOnSuccess"),i=Hi("eidEasyOnFail"),a=Hi("useAppStore")(),{loadingStart:o,loadingEnd:r,addFlashMessage:s,clearFlashMessages:l}=a,c=bt(null),d=bt(null),u=bt(null),C=bt(null),p=bt({}),h=bt(!1),g=wo(()=>{const e=Math.floor(c.value/60),t=c.value%60;return`${e}:${t<10?"0":""}${t}`});function f(){const{cancel:e}=p.value;e&&(m(),e())}function m(){d.value=null,u.value=null,c.value=null,h.value=!0,clearInterval(C.value)}function v(){h.value=!1,o(),l(),p.value=t.signature.diiaQesSignature.start({countryCode:"UA",started:e=>{e.data&&e.data.qr_code&&(d.value=e.data.qr_code,u.value=e.data.redirect_uri,c.value=180,C.value=setInterval(()=>{c.value>0?c.value--:(clearInterval(C.value),f())},1e3),r())},onTryComplete:e=>{s(e)},fail:e=>{e.isCancel||s(e),i(e)},success:e=>{n(e)},finished:()=>{m(),r()}})}return ni(()=>{v()}),oi(()=>{null!==d.value&&f()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[h.value?(Na(),Oa("div",tM,[Za(tp,{text:e.$t("The signing session was cancelled or got expired")},null,8,["text"]),Za(HC,{class:K(e.$style.buttonSpace),"on-click":v},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1},8,["class"])])):Qa("",!0),d.value?(Na(),Oa("div",nM,[Za(tp,{text:e.$t("Open the QR scanner in your Diia app, point it at the QR code below, and follow instructions. If you've opened this page on a smartphone with Diia app installed, just tap the QR code.")},null,8,["text"]),Ka("div",{class:K(e.$style.contentCenter)},[Ka("a",{href:u.value,target:"_blank"},[Ka("img",{src:d.value,alt:"QR code"},null,8,aM)],8,iM),Za(tp,{text:e.$t("Time left")+": "+g.value},null,8,["text"]),Za(HC,{class:K(e.$style.buttonSpace),"on-click":f},{default:gn(()=>[Wa(J(e.$t("Cancel")),1)]),_:1},8,["class"]),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Diia.Signature"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=e3K-qT5hQlQ",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=e3K-qT5hQlQ ",2)])],2)],2)])):Qa("",!0)],2))}},[["__cssModules",{$style:eM}]]),rM={formContainer:"_formContainer_b77pi_2"},sM=oc({__name:"SignatureDigilogix",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt({}),m=bt();const v=wo(()=>[{type:"text",name:"idcode",label:t.t("CUIL number"),validation:["required"]},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({idcode:p.value.idcode}),set(e){r(e)}});function M(){s(),d(),g.value={};const e=h.value||{};f.value=n.signature.digilogixQesSignature.start({...y.value,started:e=>{e.data&&e.data.challenge&&(m.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{m.value=void 0,C(),l()},...e})}return oi(()=>{!function(){const{cancel:e}=f.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[Za(up,{id:"digilogixSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])],2))}},[["__cssModules",{$style:rM}]]),lM={formContainer:"_formContainer_1qio5_2",iframeHolder:"_iframeHolder_1qio5_7",hidden:"_hidden_1qio5_12"},cM=oc({__name:"WebEidLogin",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{addFlashMessage:r,clearFlashMessages:s}=o,{countryCode:l}=ts(o),c=bt({}),d=bt(!1),u=bt(!1),C=bt(null);function p(){d.value=!1,s(),c.value=n.identification.webEid.start({countryCode:l.value,iframeHolder:C.value,fail:e=>{e.isCancel||(e.translationKey=t.t(e.message),r(e)),d.value=!0,C.value.innerHTML="",a(e)},success:e=>{u.value=!0,i(e)}})}return ni(()=>{p()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[d.value?(Na(),Pa(HC,{key:0,"on-click":p},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1})):Qa("",!0),Ka("div",{ref_key:"webEidIframeHolder",ref:C,class:K([e.$style.iframeHolder,{[e.$style.hidden]:d.value||u.value}])},null,2)],2))}},[["__cssModules",{$style:lM}]]),dM={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},uM={key:1},CM=oc({__name:"SignatureBTrustQes",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d,startSignatureProcessing:u,endSignatureProcessing:C}=o,{inputValues:p,additionalMethodConfig:h}=ts(o),g=bt({}),f=bt(null),m=bt({});const v=wo(()=>[{type:"text",name:"profileId",label:t.t("Profile ID"),validation:["required"],placeholder:"1234-12345"},{type:"submit",label:t.t("Sign")}]),y=wo({get:()=>({profileId:p.value.profileId}),set(e){r(e)}});function M(){s(),d(),g.value={};const e={...y.value},t=h.value||{};m.value=n.signature.bTrustQesSignature.start({...e,started:e=>{e.data&&e.data.challenge&&(f.value=e.data.challenge,l(),u())},fail:e=>{e.isCancel||c(e),g.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{f.value=void 0,C(),l()},...t})}return oi(()=>{!function(){const{cancel:e}=m.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[f.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("sign-in-app",{name:"B-Trust"})),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(f.value),3)]),_:1})],2)):(Na(),Oa("div",uM,[Za(up,{id:"bTrustQesSignatureForm",modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=e=>y.value=e),schema:v.value,"on-submit":M,errors:g.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,J(e.$t("Profile ID can be found from B-Trust application. Navigate to MQES and look for a number next to your name.")),1)],2),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"B-Trust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.b-trust.org/en/",target:"_blank",rel:"noopener noreferrer"}," https://www.b-trust.org/en/ ",2)])],2)],2))}},[["__cssModules",{$style:dM}]]),pM={radioBtn:"_radioBtn_1llks_2",selected:"_selected_1llks_19",disabled:"_disabled_1llks_22"};const hM=oc({name:"RadioButton",props:{value:{type:String,required:!0},modelValue:{type:String,required:!0},disabled:{type:Boolean,default:!1},onClick:Function},computed:{className(){return this.modelValue===this.value?"selected":this.disabled?"disabled":""}},methods:{handleClick(e){this.isSelected||!this.onClick||this.disabled||this.onClick(this.value,e)}}},[["render",function(e,t,n,i,a,o){return Na(),Oa("button",{class:K([e.$style.radioBtn,e.$style[o.className]]),type:"button",onClick:t[0]||(t[0]=(...e)=>o.handleClick&&o.handleClick(...e))},[vi(e.$slots,"default")],2)}],["__cssModules",{$style:pM}]]),gM={formContainer:"_formContainer_11bbh_2",iframeHolder:"_iframeHolder_11bbh_7",hidden:"_hidden_11bbh_12","text-center":"_text-center_11bbh_16"},fM={key:1},mM={class:"text-center"},vM=oc({__name:"IdentificationGoogleWallet",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{addFlashMessage:r,clearFlashMessages:s}=o,{countryCode:l}=ts(o),c=bt({}),d=bt(!1),u=bt("mDL"),C=bt(!0),p=bt(!1),h=bt();function g(e){u.value=e}function f(){d.value=!1,C.value=!0,s(),c.value=n.identification.googleWallet.start({countryCode:l.value,documentType:u.value,iframeHolder:h.value,fail:e=>{e.isCancel||(e.translationKey=t.t(e.message),r(e)),d.value=!0,h.value&&(h.value.innerHTML=""),a(e)},success:e=>{p.value=!0,i(e)}})}return ni(()=>{f()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[d.value?(Na(),Pa(HC,{key:0,"on-click":f},{default:gn(()=>[Wa(J(e.$t("Retry")),1)]),_:1})):Qa("",!0),C.value?Qa("",!0):(Na(),Oa("div",fM,[Ka("p",mM,J(e.$t("Choose your document type")),1),Za(hM,{value:"mDL","model-value":u.value,"on-click":()=>g("mDL")},{default:gn(()=>[Wa(J(e.$t("Mobile Driver License")),1)]),_:1},8,["model-value","on-click"]),Za(hM,{value:"pid","model-value":u.value,disabled:!1,"on-click":()=>g("pid")},{default:gn(()=>[Wa(J(e.$t("Personal Identity Document")),1)]),_:1},8,["model-value","on-click"]),d.value?Qa("",!0):(Na(),Pa(HC,{key:0,"on-click":f},{default:gn(()=>[Wa(J(e.$t("Continue")),1)]),_:1}))])),Ka("div",{ref_key:"googleWalletIframeHolder",ref:h,class:K([e.$style.iframeHolder,{[e.$style.hidden]:d.value||p.value}])},null,2)],2))}},[["__cssModules",{$style:gM}]]),yM={formContainer:"_formContainer_5ku1b_2",label:"_label_5ku1b_7",highlight:"_highlight_5ku1b_12",infoIcon:"_infoIcon_5ku1b_17",infoSection:"_infoSection_5ku1b_23",iconWrap:"_iconWrap_5ku1b_30",infoLink:"_infoLink_5ku1b_36"},MM={key:1},SM=oc({__name:"IdentificationEvrotrust",setup(e){const t=Vf(),n=Hi("eidEasyClient"),i=Hi("eidEasyOnSuccess"),a=Hi("eidEasyOnFail"),o=Hi("useAppStore")(),{updateInputValues:r,loadingStart:s,loadingEnd:l,addFlashMessage:c,clearFlashMessages:d}=o,{inputValues:u,additionalMethodConfig:C}=ts(o),p=bt({}),h=bt(),g=bt({});const f=wo(()=>[{type:"tel",name:"phone",label:t.t("phone-number"),validation:["required"],placeholder:"+37200000000"},{type:"submit",label:t.t("log-in")}]),m=wo({get:()=>({phone:u.value.phone}),set(e){r(e)}});function v(){s(),d(),p.value={};const e={...m.value},t=C.value||{};g.value=n.identification.evrotrust.start({...e,started:e=>{e.data&&e.data.challenge&&(h.value=e.data.challenge,l())},fail:e=>{e.isCancel||c(e),p.value=OC(e),a(e)},success:e=>{i(e)},finished:()=>{h.value=void 0,l()},...t})}return oi(()=>{!function(){const{cancel:e}=g.value;e&&e()}()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[h.value?(Na(),Oa("div",{key:0,class:K(e.$style.challenge)},[Za(pm,null,{default:gn(()=>[Ka("div",null,J(e.$t("approve-in-evrotrust-app")),1),Ka("div",{class:K(e.$style.label)},J(e.$t("transaction-id")),3),Ka("div",{class:K(e.$style.highlight)},J(h.value),3)]),_:1})],2)):(Na(),Oa("div",MM,[Za(up,{id:"evrotrustForm",modelValue:m.value,"onUpdate:modelValue":t[0]||(t[0]=e=>m.value=e),schema:f.value,"on-submit":v,errors:p.value},null,8,["modelValue","schema","errors"])])),Ka("div",{class:K(e.$style.infoSection)},[Ka("div",{class:K(e.$style.iconWrap)},[Za(It(Rm),{class:K(e.$style.infoIcon)},null,8,["class"])],2),Ka("small",null,[Wa(J(e.$t("method-setup-info",{method:"Evrotrust"}))+" ",1),Ka("a",{class:K(e.$style.infoLink),href:"https://www.youtube.com/watch?v=DZAIyxuQu88",target:"_blank",rel:"noopener noreferrer"}," https://www.youtube.com/watch?v=DZAIyxuQu88 ",2)])],2)],2))}},[["__cssModules",{$style:yM}]]),wM={formContainer:"_formContainer_1rpdl_2",contentCenter:"_contentCenter_1rpdl_7",space:"_space_1rpdl_11",buttonSpace:"_buttonSpace_1rpdl_15"},AM={key:0},bM=["href"],FM=["src"],_M=oc({__name:"IdentificationAtValeraWallet",setup(e){const t=Hi("eidEasyClient"),n=Hi("eidEasyOnSuccess"),i=Hi("eidEasyOnFail"),a=Hi("useAppStore")(),{loadingEnd:o,addFlashMessage:r,clearFlashMessages:s}=a,{additionalMethodConfig:l,isLoading:c}=ts(a),d=bt({}),u=bt(null),C=bt(null),p=bt(null);function h(){const{cancel:e}=d.value;C.value=null,p.value=null,e&&e()}return ni(()=>{!function(){u.value=null,s();const e=l.value||{};d.value=t.identification.eudiWallet.start({...e,documentType:"PID",started:e=>{e.data&&e.data.qrCode&&(C.value=e.data.qrCode,p.value=e.data.deepLink,o())},fail:e=>{e.isCancel||r(e),u.value=e,i(e)},success:e=>{C.value=null,n(e)},finished:()=>{o()}})}()}),oi(()=>{h()}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.formContainer)},[C.value?(Na(),Oa("div",AM,[Za(tp,{text:e.$t("Scan this QR code with your Valera wallet application or click it if you are viewing from the phone.")},null,8,["text"]),Ka("div",{class:K(e.$style.contentCenter)},[Ka("a",{href:p.value,target:"_blank"},[Ka("img",{src:C.value,alt:"QR code"},null,8,FM)],8,bM),Za(HC,{class:"buttonSpace","on-click":h},{default:gn(()=>[Wa(J(e.$t("Cancel")),1)]),_:1})],2)])):Qa("",!0),!C.value&&It(c)?(Na(),Oa("div",{key:1,class:K(e.$style.space)},null,2)):Qa("",!0)],2))}},[["__cssModules",{$style:wM}]]),kM=Object.freeze({MethodSelection:RC,SmartIdAuth:Hf,WebEidLogin:cM,MobileIdAuth:Wf,IdentificationFrejaId:Xf,IdentificationZealId:tm,IdentificationMitId:zy,IdentificationGoogleWallet:vM,IdentificationEvrotrust:SM,SignatureSmartId:rm,SignatureMobileId:dm,SignatureFtn:Cm,SignatureOtp:zm,SignatureEvrotrust:jm,SignatureEvrotrustGeda:Wm,SignatureDTrustSignMe:$m,SignatureDTrustSignMeAdv:av,SignatureChaveMovel:pv,SignatureECertChile:yv,SignatureFtnAdvancedFull:vm,SignatureNoBankId:Fv,SignatureSpidQes:Lv,SignatureFrejaId:Nv,SignatureAudkenni:Ov,SignatureUanatacaQes:Zv,SignatureInfoCertQes:ey,SignatureHalcomQes:iy,SignatureSwissIdQes:sy,SignatureSwissComQes:dy,SignatureMitIdAdvanced:hy,SignatureMitIdQes:vy,SignatureSeBankIdAdvanced:wy,SignatureSeBankIdQes:_y,SignatureFrejaIdAdvanced:Ey,SignatureFrejaIdQes:xy,SignatureItsmeQes:Ry,SignatureHandwritten:Py,SignatureHaricaQes:Gy,SignatureLtIdQes:Zy,SignatureIframe:Yy,SignatureEsLleidaAdvanced:$y,SignatureDiia:oM,SignatureDigilogix:sM,SignatureBTrustQes:CM,IdentificationAtValeraWallet:_M});const IM=oc({name:"AppHeader"},[["render",function(e,t,n,i,a,o){return Na(),Oa("div",{class:K(e.$style.header)},[vi(e.$slots,"default")],2)}],["__cssModules",{$style:{header:"_header_1eumk_2"}}]]);var TM={};const EM=JSON.parse('[["AF","AFG","004","ISO 3166-2:AF"],["AL","ALB","008","ISO 3166-2:AL"],["DZ","DZA","012","ISO 3166-2:DZ"],["AS","ASM","016","ISO 3166-2:AS"],["AD","AND","020","ISO 3166-2:AD"],["AO","AGO","024","ISO 3166-2:AO"],["AI","AIA","660","ISO 3166-2:AI"],["AQ","ATA","010","ISO 3166-2:AQ"],["AG","ATG","028","ISO 3166-2:AG"],["AR","ARG","032","ISO 3166-2:AR"],["AM","ARM","051","ISO 3166-2:AM"],["AW","ABW","533","ISO 3166-2:AW"],["AU","AUS","036","ISO 3166-2:AU"],["AT","AUT","040","ISO 3166-2:AT"],["AZ","AZE","031","ISO 3166-2:AZ"],["BS","BHS","044","ISO 3166-2:BS"],["BH","BHR","048","ISO 3166-2:BH"],["BD","BGD","050","ISO 3166-2:BD"],["BB","BRB","052","ISO 3166-2:BB"],["BY","BLR","112","ISO 3166-2:BY"],["BE","BEL","056","ISO 3166-2:BE"],["BZ","BLZ","084","ISO 3166-2:BZ"],["BJ","BEN","204","ISO 3166-2:BJ"],["BM","BMU","060","ISO 3166-2:BM"],["BT","BTN","064","ISO 3166-2:BT"],["BO","BOL","068","ISO 3166-2:BO"],["BA","BIH","070","ISO 3166-2:BA"],["BW","BWA","072","ISO 3166-2:BW"],["BV","BVT","074","ISO 3166-2:BV"],["BR","BRA","076","ISO 3166-2:BR"],["IO","IOT","086","ISO 3166-2:IO"],["BN","BRN","096","ISO 3166-2:BN"],["BG","BGR","100","ISO 3166-2:BG"],["BF","BFA","854","ISO 3166-2:BF"],["BI","BDI","108","ISO 3166-2:BI"],["KH","KHM","116","ISO 3166-2:KH"],["CM","CMR","120","ISO 3166-2:CM"],["CA","CAN","124","ISO 3166-2:CA"],["CV","CPV","132","ISO 3166-2:CV"],["KY","CYM","136","ISO 3166-2:KY"],["CF","CAF","140","ISO 3166-2:CF"],["TD","TCD","148","ISO 3166-2:TD"],["CL","CHL","152","ISO 3166-2:CL"],["CN","CHN","156","ISO 3166-2:CN"],["CX","CXR","162","ISO 3166-2:CX"],["CC","CCK","166","ISO 3166-2:CC"],["CO","COL","170","ISO 3166-2:CO"],["KM","COM","174","ISO 3166-2:KM"],["CG","COG","178","ISO 3166-2:CG"],["CD","COD","180","ISO 3166-2:CD"],["CK","COK","184","ISO 3166-2:CK"],["CR","CRI","188","ISO 3166-2:CR"],["CI","CIV","384","ISO 3166-2:CI"],["HR","HRV","191","ISO 3166-2:HR"],["CU","CUB","192","ISO 3166-2:CU"],["CY","CYP","196","ISO 3166-2:CY"],["CZ","CZE","203","ISO 3166-2:CZ"],["DK","DNK","208","ISO 3166-2:DK"],["DJ","DJI","262","ISO 3166-2:DJ"],["DM","DMA","212","ISO 3166-2:DM"],["DO","DOM","214","ISO 3166-2:DO"],["EC","ECU","218","ISO 3166-2:EC"],["EG","EGY","818","ISO 3166-2:EG"],["SV","SLV","222","ISO 3166-2:SV"],["GQ","GNQ","226","ISO 3166-2:GQ"],["ER","ERI","232","ISO 3166-2:ER"],["EE","EST","233","ISO 3166-2:EE"],["ET","ETH","231","ISO 3166-2:ET"],["FK","FLK","238","ISO 3166-2:FK"],["FO","FRO","234","ISO 3166-2:FO"],["FJ","FJI","242","ISO 3166-2:FJ"],["FI","FIN","246","ISO 3166-2:FI"],["FR","FRA","250","ISO 3166-2:FR"],["GF","GUF","254","ISO 3166-2:GF"],["PF","PYF","258","ISO 3166-2:PF"],["TF","ATF","260","ISO 3166-2:TF"],["GA","GAB","266","ISO 3166-2:GA"],["GM","GMB","270","ISO 3166-2:GM"],["GE","GEO","268","ISO 3166-2:GE"],["DE","DEU","276","ISO 3166-2:DE"],["GH","GHA","288","ISO 3166-2:GH"],["GI","GIB","292","ISO 3166-2:GI"],["GR","GRC","300","ISO 3166-2:GR"],["GL","GRL","304","ISO 3166-2:GL"],["GD","GRD","308","ISO 3166-2:GD"],["GP","GLP","312","ISO 3166-2:GP"],["GU","GUM","316","ISO 3166-2:GU"],["GT","GTM","320","ISO 3166-2:GT"],["GN","GIN","324","ISO 3166-2:GN"],["GW","GNB","624","ISO 3166-2:GW"],["GY","GUY","328","ISO 3166-2:GY"],["HT","HTI","332","ISO 3166-2:HT"],["HM","HMD","334","ISO 3166-2:HM"],["VA","VAT","336","ISO 3166-2:VA"],["HN","HND","340","ISO 3166-2:HN"],["HK","HKG","344","ISO 3166-2:HK"],["HU","HUN","348","ISO 3166-2:HU"],["IS","ISL","352","ISO 3166-2:IS"],["IN","IND","356","ISO 3166-2:IN"],["ID","IDN","360","ISO 3166-2:ID"],["IR","IRN","364","ISO 3166-2:IR"],["IQ","IRQ","368","ISO 3166-2:IQ"],["IE","IRL","372","ISO 3166-2:IE"],["IL","ISR","376","ISO 3166-2:IL"],["IT","ITA","380","ISO 3166-2:IT"],["JM","JAM","388","ISO 3166-2:JM"],["JP","JPN","392","ISO 3166-2:JP"],["JO","JOR","400","ISO 3166-2:JO"],["KZ","KAZ","398","ISO 3166-2:KZ"],["KE","KEN","404","ISO 3166-2:KE"],["KI","KIR","296","ISO 3166-2:KI"],["KP","PRK","408","ISO 3166-2:KP"],["KR","KOR","410","ISO 3166-2:KR"],["KW","KWT","414","ISO 3166-2:KW"],["KG","KGZ","417","ISO 3166-2:KG"],["LA","LAO","418","ISO 3166-2:LA"],["LV","LVA","428","ISO 3166-2:LV"],["LB","LBN","422","ISO 3166-2:LB"],["LS","LSO","426","ISO 3166-2:LS"],["LR","LBR","430","ISO 3166-2:LR"],["LY","LBY","434","ISO 3166-2:LY"],["LI","LIE","438","ISO 3166-2:LI"],["LT","LTU","440","ISO 3166-2:LT"],["LU","LUX","442","ISO 3166-2:LU"],["MO","MAC","446","ISO 3166-2:MO"],["MG","MDG","450","ISO 3166-2:MG"],["MW","MWI","454","ISO 3166-2:MW"],["MY","MYS","458","ISO 3166-2:MY"],["MV","MDV","462","ISO 3166-2:MV"],["ML","MLI","466","ISO 3166-2:ML"],["MT","MLT","470","ISO 3166-2:MT"],["MH","MHL","584","ISO 3166-2:MH"],["MQ","MTQ","474","ISO 3166-2:MQ"],["MR","MRT","478","ISO 3166-2:MR"],["MU","MUS","480","ISO 3166-2:MU"],["YT","MYT","175","ISO 3166-2:YT"],["MX","MEX","484","ISO 3166-2:MX"],["FM","FSM","583","ISO 3166-2:FM"],["MD","MDA","498","ISO 3166-2:MD"],["MC","MCO","492","ISO 3166-2:MC"],["MN","MNG","496","ISO 3166-2:MN"],["MS","MSR","500","ISO 3166-2:MS"],["MA","MAR","504","ISO 3166-2:MA"],["MZ","MOZ","508","ISO 3166-2:MZ"],["MM","MMR","104","ISO 3166-2:MM"],["NA","NAM","516","ISO 3166-2:NA"],["NR","NRU","520","ISO 3166-2:NR"],["NP","NPL","524","ISO 3166-2:NP"],["NL","NLD","528","ISO 3166-2:NL"],["NC","NCL","540","ISO 3166-2:NC"],["NZ","NZL","554","ISO 3166-2:NZ"],["NI","NIC","558","ISO 3166-2:NI"],["NE","NER","562","ISO 3166-2:NE"],["NG","NGA","566","ISO 3166-2:NG"],["NU","NIU","570","ISO 3166-2:NU"],["NF","NFK","574","ISO 3166-2:NF"],["MP","MNP","580","ISO 3166-2:MP"],["MK","MKD","807","ISO 3166-2:MK"],["NO","NOR","578","ISO 3166-2:NO"],["OM","OMN","512","ISO 3166-2:OM"],["PK","PAK","586","ISO 3166-2:PK"],["PW","PLW","585","ISO 3166-2:PW"],["PS","PSE","275","ISO 3166-2:PS"],["PA","PAN","591","ISO 3166-2:PA"],["PG","PNG","598","ISO 3166-2:PG"],["PY","PRY","600","ISO 3166-2:PY"],["PE","PER","604","ISO 3166-2:PE"],["PH","PHL","608","ISO 3166-2:PH"],["PN","PCN","612","ISO 3166-2:PN"],["PL","POL","616","ISO 3166-2:PL"],["PT","PRT","620","ISO 3166-2:PT"],["PR","PRI","630","ISO 3166-2:PR"],["QA","QAT","634","ISO 3166-2:QA"],["RE","REU","638","ISO 3166-2:RE"],["RO","ROU","642","ISO 3166-2:RO"],["RU","RUS","643","ISO 3166-2:RU"],["RW","RWA","646","ISO 3166-2:RW"],["SH","SHN","654","ISO 3166-2:SH"],["KN","KNA","659","ISO 3166-2:KN"],["LC","LCA","662","ISO 3166-2:LC"],["PM","SPM","666","ISO 3166-2:PM"],["VC","VCT","670","ISO 3166-2:VC"],["WS","WSM","882","ISO 3166-2:WS"],["SM","SMR","674","ISO 3166-2:SM"],["ST","STP","678","ISO 3166-2:ST"],["SA","SAU","682","ISO 3166-2:SA"],["SN","SEN","686","ISO 3166-2:SN"],["SC","SYC","690","ISO 3166-2:SC"],["SL","SLE","694","ISO 3166-2:SL"],["SG","SGP","702","ISO 3166-2:SG"],["SK","SVK","703","ISO 3166-2:SK"],["SI","SVN","705","ISO 3166-2:SI"],["SB","SLB","090","ISO 3166-2:SB"],["SO","SOM","706","ISO 3166-2:SO"],["ZA","ZAF","710","ISO 3166-2:ZA"],["GS","SGS","239","ISO 3166-2:GS"],["ES","ESP","724","ISO 3166-2:ES"],["LK","LKA","144","ISO 3166-2:LK"],["SD","SDN","729","ISO 3166-2:SD"],["SR","SUR","740","ISO 3166-2:SR"],["SJ","SJM","744","ISO 3166-2:SJ"],["SZ","SWZ","748","ISO 3166-2:SZ"],["SE","SWE","752","ISO 3166-2:SE"],["CH","CHE","756","ISO 3166-2:CH"],["SY","SYR","760","ISO 3166-2:SY"],["TW","TWN","158","ISO 3166-2:TW"],["TJ","TJK","762","ISO 3166-2:TJ"],["TZ","TZA","834","ISO 3166-2:TZ"],["TH","THA","764","ISO 3166-2:TH"],["TL","TLS","626","ISO 3166-2:TL"],["TG","TGO","768","ISO 3166-2:TG"],["TK","TKL","772","ISO 3166-2:TK"],["TO","TON","776","ISO 3166-2:TO"],["TT","TTO","780","ISO 3166-2:TT"],["TN","TUN","788","ISO 3166-2:TN"],["TR","TUR","792","ISO 3166-2:TR"],["TM","TKM","795","ISO 3166-2:TM"],["TC","TCA","796","ISO 3166-2:TC"],["TV","TUV","798","ISO 3166-2:TV"],["UG","UGA","800","ISO 3166-2:UG"],["UA","UKR","804","ISO 3166-2:UA"],["AE","ARE","784","ISO 3166-2:AE"],["GB","GBR","826","ISO 3166-2:GB"],["US","USA","840","ISO 3166-2:US"],["UM","UMI","581","ISO 3166-2:UM"],["UY","URY","858","ISO 3166-2:UY"],["UZ","UZB","860","ISO 3166-2:UZ"],["VU","VUT","548","ISO 3166-2:VU"],["VE","VEN","862","ISO 3166-2:VE"],["VN","VNM","704","ISO 3166-2:VN"],["VG","VGB","092","ISO 3166-2:VG"],["VI","VIR","850","ISO 3166-2:VI"],["WF","WLF","876","ISO 3166-2:WF"],["EH","ESH","732","ISO 3166-2:EH"],["YE","YEM","887","ISO 3166-2:YE"],["ZM","ZMB","894","ISO 3166-2:ZM"],["ZW","ZWE","716","ISO 3166-2:ZW"],["AX","ALA","248","ISO 3166-2:AX"],["BQ","BES","535","ISO 3166-2:BQ"],["CW","CUW","531","ISO 3166-2:CW"],["GG","GGY","831","ISO 3166-2:GG"],["IM","IMN","833","ISO 3166-2:IM"],["JE","JEY","832","ISO 3166-2:JE"],["ME","MNE","499","ISO 3166-2:ME"],["BL","BLM","652","ISO 3166-2:BL"],["MF","MAF","663","ISO 3166-2:MF"],["RS","SRB","688","ISO 3166-2:RS"],["SX","SXM","534","ISO 3166-2:SX"],["SS","SSD","728","ISO 3166-2:SS"],["XK","XKK","983","ISO 3166-2:XK"]]'),LM=["br","cy","dv","sw","eu","af","am","ha","ku","ml","mt","no","ps","sd","so","sq","ta","tg","tt","ug","ur","vi","ar","az","be","bg","bn","bs","ca","cs","da","de","el","en","es","et","fa","fi","fr","ga","gl","he","hi","hr","hu","hy","id","is","it","ja","ka","kk","km","ko","ky","lt","lv","mk","mn","mr","ms","nb","nl","nn","pl","pt","ro","ru","sk","sl","sr","sv","th","tk","tr","uk","uz","zh"];var BM,DM,xM={};const NM=is((DM||(DM=1,function(e){const t=EM,n=LM,i=function(){if(BM)return xM;BM=1,xM.remove=function(e){return e.replace(/[^\u0000-\u007e]/g,function(e){return t[e]||e})};for(var e=[{base:" ",chars:" "},{base:"0",chars:"߀"},{base:"A",chars:"ⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",chars:"Ꜳ"},{base:"AE",chars:"ÆǼǢ"},{base:"AO",chars:"Ꜵ"},{base:"AU",chars:"Ꜷ"},{base:"AV",chars:"ꜸꜺ"},{base:"AY",chars:"Ꜽ"},{base:"B",chars:"ⒷBḂḄḆɃƁ"},{base:"C",chars:"ⒸCꜾḈĆCĈĊČÇƇȻ"},{base:"D",chars:"ⒹDḊĎḌḐḒḎĐƊƉᴅꝹ"},{base:"Dh",chars:"Ð"},{base:"DZ",chars:"DZDŽ"},{base:"Dz",chars:"DzDž"},{base:"E",chars:"ɛⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎᴇ"},{base:"F",chars:"ꝼⒻFḞƑꝻ"},{base:"G",chars:"ⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾɢ"},{base:"H",chars:"ⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",chars:"ⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",chars:"ⒿJĴɈȷ"},{base:"K",chars:"ⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",chars:"ⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",chars:"LJ"},{base:"Lj",chars:"Lj"},{base:"M",chars:"ⓂMḾṀṂⱮƜϻ"},{base:"N",chars:"ꞤȠⓃNǸŃÑṄŇṆŅṊṈƝꞐᴎ"},{base:"NJ",chars:"NJ"},{base:"Nj",chars:"Nj"},{base:"O",chars:"ⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OE",chars:"Œ"},{base:"OI",chars:"Ƣ"},{base:"OO",chars:"Ꝏ"},{base:"OU",chars:"Ȣ"},{base:"P",chars:"ⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",chars:"ⓆQꝖꝘɊ"},{base:"R",chars:"ⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",chars:"ⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",chars:"ⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"Th",chars:"Þ"},{base:"TZ",chars:"Ꜩ"},{base:"U",chars:"ⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",chars:"ⓋVṼṾƲꝞɅ"},{base:"VY",chars:"Ꝡ"},{base:"W",chars:"ⓌWẀẂŴẆẄẈⱲ"},{base:"X",chars:"ⓍXẊẌ"},{base:"Y",chars:"ⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",chars:"ⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",chars:"ⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐɑ"},{base:"aa",chars:"ꜳ"},{base:"ae",chars:"æǽǣ"},{base:"ao",chars:"ꜵ"},{base:"au",chars:"ꜷ"},{base:"av",chars:"ꜹꜻ"},{base:"ay",chars:"ꜽ"},{base:"b",chars:"ⓑbḃḅḇƀƃɓƂ"},{base:"c",chars:"cⓒćĉċčçḉƈȼꜿↄ"},{base:"d",chars:"ⓓdḋďḍḑḓḏđƌɖɗƋᏧԁꞪ"},{base:"dh",chars:"ð"},{base:"dz",chars:"dzdž"},{base:"e",chars:"ⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇǝ"},{base:"f",chars:"ⓕfḟƒ"},{base:"ff",chars:"ff"},{base:"fi",chars:"fi"},{base:"fl",chars:"fl"},{base:"ffi",chars:"ffi"},{base:"ffl",chars:"ffl"},{base:"g",chars:"ⓖgǵĝḡğġǧģǥɠꞡꝿᵹ"},{base:"h",chars:"ⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",chars:"ƕ"},{base:"i",chars:"ⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",chars:"ⓙjĵǰɉ"},{base:"k",chars:"ⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",chars:"ⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇɭ"},{base:"lj",chars:"lj"},{base:"m",chars:"ⓜmḿṁṃɱɯ"},{base:"n",chars:"ⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥлԉ"},{base:"nj",chars:"nj"},{base:"o",chars:"ⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿꝋꝍɵɔᴑ"},{base:"oe",chars:"œ"},{base:"oi",chars:"ƣ"},{base:"oo",chars:"ꝏ"},{base:"ou",chars:"ȣ"},{base:"p",chars:"ⓟpṕṗƥᵽꝑꝓꝕρ"},{base:"q",chars:"ⓠqɋꝗꝙ"},{base:"r",chars:"ⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",chars:"ⓢsśṥŝṡšṧṣṩșşȿꞩꞅẛʂ"},{base:"ss",chars:"ß"},{base:"t",chars:"ⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"th",chars:"þ"},{base:"tz",chars:"ꜩ"},{base:"u",chars:"ⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",chars:"ⓥvṽṿʋꝟʌ"},{base:"vy",chars:"ꝡ"},{base:"w",chars:"ⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",chars:"ⓧxẋẍ"},{base:"y",chars:"ⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",chars:"ⓩzźẑżžẓẕƶȥɀⱬꝣ"}],t={},n=0;n<e.length;n+=1)for(var i=e[n].chars,a=0;a<i.length;a+=1)t[i[a]]=e[n].base;return xM.replacementList=e,xM.diacriticsMap=t,xM}().remove,a={},o={},r={},s={},l={};function c(e){return String("000"+(e||"")).slice(-3)}function d(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function u(e,t){switch(e){case"official":return Array.isArray(t)?t[0]:t;case"all":return"string"==typeof t?[t]:t;case"alias":return Array.isArray(t)?t[1]||t[0]:t;default:throw new TypeError("LocaleNameType must be one of these: all, official, alias!")}}function C(e){return r[e]}function p(e){return o[e]}function h(e){const t=c(e);return p(s[t])}function g(e){const t=c(e);return s[t]}function f(e){if("string"==typeof e){if(/^[0-9]*$/.test(e))return g(e);if(2===e.length)return e.toUpperCase();if(3===e.length)return C(e.toUpperCase())}if("number"==typeof e)return g(e)}t.forEach(function(e){const t=e;o[t[0]]=t[1],r[t[1]]=t[0],s[t[2]]=t[0],l[t[0]]=t[2]}),e.registerLocale=function(e){if(!e.locale)throw new TypeError("Missing localeData.locale");if(!e.countries)throw new TypeError("Missing localeData.countries");a[e.locale]=e.countries},e.alpha3ToAlpha2=C,e.alpha2ToAlpha3=p,e.alpha3ToNumeric=function(e){return l[C(e)]},e.alpha2ToNumeric=function(e){return l[e]},e.numericToAlpha3=h,e.numericToAlpha2=g,e.toAlpha3=function(e){if("string"==typeof e){if(/^[0-9]*$/.test(e))return h(e);if(2===e.length)return p(e.toUpperCase());if(3===e.length)return e.toUpperCase()}if("number"==typeof e)return h(e)},e.toAlpha2=f,e.getName=function(e,t,n={}){"select"in n||(n.select="official");try{const i=a[t.toLowerCase()][f(e)];return u(n.select,i)}catch(i){return}},e.getNames=function(e,t={}){"select"in t||(t.select="official");const n=a[e.toLowerCase()];return void 0===n?{}:function(e,t){return Object.keys(e).reduce(function(n,i){const a=e[i];return n[i]=t(a,i),n},{})}(n,function(e){return u(t.select,e)})},e.getAlpha2Code=function(e,t){const n=e=>e.toLowerCase(),i=(e,t)=>n(e)===n(t);try{const n=a[t.toLowerCase()];for(const t in n)if(d(n,t)){if("string"==typeof n[t]&&i(n[t],e))return t;if(Array.isArray(n[t]))for(const a of n[t])if(i(a,e))return t}return}catch(o){return}},e.getSimpleAlpha2Code=function(e,t){const n=e=>i(e.toLowerCase()),o=(e,t)=>n(e)===n(t);try{const n=a[t.toLowerCase()];for(const t in n)if(d(n,t)){if("string"==typeof n[t]&&o(n[t],e))return t;if(Array.isArray(n[t]))for(const i of n[t])if(o(i,e))return t}return}catch(r){return}},e.getAlpha2Codes=function(){return o},e.getAlpha3Code=function(t,n){const i=e.getAlpha2Code(t,n);return i?e.toAlpha3(i):void 0},e.getSimpleAlpha3Code=function(t,n){const i=e.getSimpleAlpha2Code(t,n);return i?e.toAlpha3(i):void 0},e.getAlpha3Codes=function(){return r},e.getNumericCodes=function(){return s},e.langs=function(){return Object.keys(a)},e.getSupportedLanguages=function(){return n},e.isValid=function(e){if(!e)return!1;const t=e.toString().toUpperCase();return d(r,t)||d(o,t)||d(s,t)}}(TM)),TM)),zM={locale:"de",countries:{AF:"Afghanistan",EG:"Ägypten",AX:"Åland",AL:"Albanien",DZ:"Algerien",AS:"Amerikanisch-Samoa",VI:"Amerikanische Jungferninseln",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua und Barbuda",GQ:"Äquatorialguinea",AR:"Argentinien",AM:"Armenien",AW:"Aruba",AZ:"Aserbaidschan",ET:"Äthiopien",AU:"Australien",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesch",BB:"Barbados",BY:"Belarus",BE:"Belgien",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivien",BQ:"Bonaire",BA:"Bosnien und Herzegowina",BW:"Botswana",BV:"Bouvetinsel",BR:"Brasilien",VG:"Britische Jungferninseln",IO:"Britisches Territorium im Indischen Ozean",BN:"Brunei Darussalam",BG:"Bulgarien",BF:"Burkina Faso",BI:"Burundi",CL:"Chile",CN:"China",CK:"Cookinseln",CR:"Costa Rica",CI:"Elfenbeinküste",CW:"Curaçao",DK:"Dänemark",DE:"Deutschland",DM:"Dominica",DO:"Dominikanische Republik",DJ:"Dschibuti",EC:"Ecuador",SV:"El Salvador",ER:"Eritrea",EE:"Estland",FK:"Falklandinseln",FO:"Färöer",FJ:"Fidschi",FI:"Finnland",FR:"Frankreich",GF:"Französisch-Guayana",PF:"Französisch-Polynesien",TF:"Französische Süd- und Antarktisgebiete",GA:"Gabun",GM:"Gambia",GE:"Georgien",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GR:"Griechenland",GL:"Grönland",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard und McDonaldinseln",HN:"Honduras",HK:["Hongkong","Hong Kong"],IN:"Indien",ID:"Indonesien",IM:"Insel Man",IQ:"Irak",IR:"Iran",IE:"Irland",IS:"Island",IL:"Israel",IT:"Italien",JM:"Jamaika",JP:"Japan",YE:"Jemen",JE:"Jersey",JO:"Jordanien",KY:"Kaimaninseln",KH:"Kambodscha",CM:"Kamerun",CA:"Kanada",CV:"Kap Verde",KZ:"Kasachstan",QA:"Katar",KE:"Kenia",KG:"Kirgisistan",KI:"Kiribati",CC:"Kokosinseln",CO:"Kolumbien",KM:"Komoren",CD:"Kongo",KP:"Nordkorea",KR:"Südkorea",HR:"Kroatien",CU:"Kuba",KW:"Kuwait",LA:"Laos",LS:"Lesotho",LV:"Lettland",LB:"Libanon",LR:"Liberia",LY:"Libyen",LI:"Liechtenstein",LT:"Litauen",LU:"Luxemburg",MO:"Macao",MG:"Madagaskar",MW:"Malawi",MY:"Malaysia",MV:"Malediven",ML:"Mali",MT:"Malta",MA:"Marokko",MH:"Marshallinseln",MQ:"Martinique",MR:"Mauretanien",MU:"Mauritius",YT:"Mayotte",MX:"Mexiko",FM:"Mikronesien",MD:"Moldawien",MC:"Monaco",MN:"Mongolei",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NC:"Neukaledonien",NZ:"Neuseeland",NI:"Nicaragua",NL:"Niederlande",NE:"Niger",NG:"Nigeria",NU:"Niue",MK:"Nordmazedonien",MP:"Nördliche Marianen",NF:"Norfolkinsel",NO:"Norwegen",OM:"Oman",AT:"Österreich",TL:"Osttimor",PK:"Pakistan",PS:"Staat Palästina",PW:"Palau",PA:"Panama",PG:"Papua-Neuguinea",PY:"Paraguay",PE:"Peru",PH:"Philippinen",PN:"Pitcairninseln",PL:"Polen",PT:"Portugal",PR:"Puerto Rico",TW:"Taiwan",CG:"Republik Kongo",RE:"Réunion",RW:"Ruanda",RO:"Rumänien",RU:["Russische Föderation","Russland"],BL:"Saint-Barthélemy",MF:"Saint-Martin",SB:"Salomonen",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé und Príncipe",SA:"Saudi-Arabien",SE:"Schweden",CH:"Schweiz",SN:"Senegal",RS:"Serbien",SC:"Seychellen",SL:"Sierra Leone",ZW:"Simbabwe",SG:"Singapur",SX:"Sint Maarten",SK:"Slowakei",SI:"Slowenien",SO:"Somalia",ES:"Spanien",LK:"Sri Lanka",SH:"St. Helena",KN:"St. Kitts und Nevis",LC:"St. Lucia",PM:"Saint-Pierre und Miquelon",VC:"St. Vincent und die Grenadinen",ZA:"Südafrika",SD:"Sudan",GS:"Südgeorgien und die Südlichen Sandwichinseln",SS:"Südsudan",SR:"Suriname",SJ:"Svalbard und Jan Mayen",SZ:"Eswatini",SY:"Syrien, Arabische Republik",TJ:"Tadschikistan",TZ:["Tansania, Vereinigte Republik","Tansania"],TH:"Thailand",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad und Tobago",TD:"Tschad",CZ:["Tschechische Republik","Tschechien"],TN:"Tunesien",TR:"Türkei",TM:"Turkmenistan",TC:"Turks- und Caicosinseln",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",HU:"Ungarn",UM:"United States Minor Outlying Islands",UY:"Uruguay",UZ:"Usbekistan",VU:"Vanuatu",VA:"Vatikanstadt",VE:"Venezuela",AE:"Vereinigte Arabische Emirate",US:["Vereinigte Staaten von Amerika","Vereinigte Staaten","USA"],GB:["Vereinigtes Königreich","Großbritannien"],VN:"Vietnam",WF:"Wallis und Futuna",CX:"Weihnachtsinsel",EH:"Westsahara",CF:"Zentralafrikanische Republik",CY:"Zypern",XK:"Kosovo"}},VM={locale:"en",countries:{AF:"Afghanistan",AL:"Albania",DZ:"Algeria",AS:"American Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarctica",AG:"Antigua and Barbuda",AR:"Argentina",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbaijan",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BY:"Belarus",BE:"Belgium",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BA:"Bosnia and Herzegovina",BW:"Botswana",BV:"Bouvet Island",BR:"Brazil",IO:"British Indian Ocean Territory",BN:"Brunei Darussalam",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodia",CM:"Cameroon",CA:"Canada",CV:"Cape Verde",KY:"Cayman Islands",CF:"Central African Republic",TD:"Chad",CL:"Chile",CN:["People's Republic of China","China"],CX:"Christmas Island",CC:"Cocos (Keeling) Islands",CO:"Colombia",KM:"Comoros",CG:["Republic of the Congo","Congo"],CD:["Democratic Republic of the Congo","Congo"],CK:"Cook Islands",CR:"Costa Rica",CI:["Cote d'Ivoire","Côte d'Ivoire","Ivory Coast"],HR:"Croatia",CU:"Cuba",CY:"Cyprus",CZ:["Czech Republic","Czechia"],DK:"Denmark",DJ:"Djibouti",DM:"Dominica",DO:"Dominican Republic",EC:"Ecuador",EG:"Egypt",SV:"El Salvador",GQ:"Equatorial Guinea",ER:"Eritrea",EE:"Estonia",ET:"Ethiopia",FK:"Falkland Islands (Malvinas)",FO:"Faroe Islands",FJ:"Fiji",FI:"Finland",FR:"France",GF:"French Guiana",PF:"French Polynesia",TF:"French Southern Territories",GA:"Gabon",GM:["Republic of The Gambia","The Gambia","Gambia"],GE:"Georgia",DE:"Germany",GH:"Ghana",GI:"Gibraltar",GR:"Greece",GL:"Greenland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard Island and McDonald Islands",VA:"Holy See (Vatican City State)",HN:"Honduras",HK:"Hong Kong",HU:"Hungary",IS:"Iceland",IN:"India",ID:"Indonesia",IR:["Islamic Republic of Iran","Iran"],IQ:"Iraq",IE:"Ireland",IL:"Israel",IT:"Italy",JM:"Jamaica",JP:"Japan",JO:"Jordan",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"North Korea",KR:["South Korea","Korea, Republic of","Republic of Korea"],KW:"Kuwait",KG:"Kyrgyzstan",LA:"Lao People's Democratic Republic",LV:"Latvia",LB:"Lebanon",LS:"Lesotho",LR:"Liberia",LY:"Libya",LI:"Liechtenstein",LT:"Lithuania",LU:"Luxembourg",MO:"Macao",MG:"Madagascar",MW:"Malawi",MY:"Malaysia",MV:"Maldives",ML:"Mali",MT:"Malta",MH:"Marshall Islands",MQ:"Martinique",MR:"Mauritania",MU:"Mauritius",YT:"Mayotte",MX:"Mexico",FM:"Micronesia, Federated States of",MD:"Moldova, Republic of",MC:"Monaco",MN:"Mongolia",MS:"Montserrat",MA:"Morocco",MZ:"Mozambique",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:["Netherlands","The Netherlands","Netherlands (Kingdom of the)"],NC:"New Caledonia",NZ:"New Zealand",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk Island",MK:["The Republic of North Macedonia","North Macedonia"],MP:"Northern Mariana Islands",NO:"Norway",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:["State of Palestine","Palestine"],PA:"Panama",PG:"Papua New Guinea",PY:"Paraguay",PE:"Peru",PH:"Philippines",PN:["Pitcairn","Pitcairn Islands"],PL:"Poland",PT:"Portugal",PR:"Puerto Rico",QA:"Qatar",RE:"Reunion",RO:"Romania",RU:["Russian Federation","Russia"],RW:"Rwanda",SH:"Saint Helena",KN:"Saint Kitts and Nevis",LC:"Saint Lucia",PM:"Saint Pierre and Miquelon",VC:"Saint Vincent and the Grenadines",WS:"Samoa",SM:"San Marino",ST:"Sao Tome and Principe",SA:"Saudi Arabia",SN:"Senegal",SC:"Seychelles",SL:"Sierra Leone",SG:"Singapore",SK:"Slovakia",SI:"Slovenia",SB:"Solomon Islands",SO:"Somalia",ZA:"South Africa",GS:"South Georgia and the South Sandwich Islands",ES:"Spain",LK:"Sri Lanka",SD:"Sudan",SR:"Suriname",SJ:"Svalbard and Jan Mayen",SZ:"Eswatini",SE:"Sweden",CH:"Switzerland",SY:"Syrian Arab Republic",TW:["Taiwan, Province of China","Taiwan"],TJ:"Tajikistan",TZ:["United Republic of Tanzania","Tanzania"],TH:"Thailand",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad and Tobago",TN:"Tunisia",TR:["Türkiye","Turkey"],TM:"Turkmenistan",TC:"Turks and Caicos Islands",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",AE:["United Arab Emirates","UAE"],GB:["United Kingdom","UK","Great Britain"],US:["United States of America","United States","USA","U.S.A.","US","U.S."],UM:"United States Minor Outlying Islands",UY:"Uruguay",UZ:"Uzbekistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Virgin Islands, British",VI:"Virgin Islands, U.S.",WF:"Wallis and Futuna",EH:"Western Sahara",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabwe",AX:["Åland Islands","Aland Islands"],BQ:"Bonaire, Sint Eustatius and Saba",CW:"Curaçao",GG:"Guernsey",IM:"Isle of Man",JE:"Jersey",ME:"Montenegro",BL:"Saint Barthélemy",MF:"Saint Martin (French part)",RS:"Serbia",SX:"Sint Maarten (Dutch part)",SS:"South Sudan",XK:"Kosovo"}},RM={locale:"et",countries:{AF:"Afganistan",AX:"Ahvenamaa",AL:"Albaania",DZ:"Alžeeria",AS:"Ameerika Samoa",US:"Ameerika Ühendriigid",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua ja Barbuda",MO:"Aomen - Hiina erihalduspiirkond",AE:"Araabia Ühendemiraadid",AR:"Argentina",AM:"Armeenia",AW:"Aruba",AZ:"Aserbaidžaan",AU:"Austraalia",AT:"Austria",BS:"Bahama",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",PW:"Belau",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Boliivia",BA:"Bosnia ja Hertsegoviina",BW:"Botswana",BV:"Bouvet’i saar",BR:"Brasiilia",BQ:"Bonaire, Sint Eustatius ja Saba",IO:"Briti India ookeani ala",VG:"Briti Neitsisaared",BN:"Brunei",BG:"Bulgaaria",BF:"Burkina Faso",BI:"Burundi",CO:"Colombia",CK:"Cooki saared",CR:"Costa Rica",CI:"Côte d'Ivoire",CW:"Curaçao",DJ:"Djibouti",DM:"Dominica",DO:"Dominikaani Vabariik",EC:"Ecuador",EE:"Eesti",EG:"Egiptus",GQ:"Ekvatoriaal-Guinea",SV:"El Salvador",ER:"Eritrea",ET:"Etioopia",FK:"Falklandi saared",FJ:"Fidži",PH:"Filipiinid",FO:"Fääri saared",GA:"Gabon",GM:"Gambia",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GE:"Gruusia",GL:"Gröönimaa",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard ja McDonald saared",CN:"Hiina",ES:"Hispaania",NL:"Holland",HN:"Honduras",HK:"Hongkong - Hiina erihalduspiirkond",HR:"Horvaatia",TL:"Ida-Timor",IE:"Iirimaa",IL:"Iisrael",IN:"India",ID:"Indoneesia",IQ:"Iraak",IR:"Iraan",IS:"Island",IT:"Itaalia",JP:"Jaapan",JM:"Jamaica",YE:"Jeemen",JE:"Jersey",JO:"Jordaania",CX:"Jõulusaar",KY:"Kaimanisaared",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",KZ:"Kasahstan",QA:"Katar",KE:"Kenya",CF:"Kesk-Aafrika Vabariik",KI:"Kiribati",KM:"Komoorid",CD:"Kongo DV",CG:"Kongo-Brazzaville",CC:"Kookossaared",GR:"Kreeka",CU:"Kuuba",KW:"Kuveit",KG:"Kõrgõzstan",CY:"Küpros",LA:"Laos",LT:"Leedu",LS:"Lesotho",LR:"Libeeria",LI:"Liechtenstein",LB:"Liibanon",LY:"Liibüa",LU:"Luksemburg",ZA:"Lõuna-Aafrika Vabariik",GS:"Lõuna-Georgia ja Lõuna-Sandwichi saared",KR:"Lõuna-Korea",LV:"Läti",EH:"Lääne-Sahara",MG:"Madagaskar",MY:"Malaisia",MW:"Malawi",MV:"Maldiivid",ML:"Mali",MT:"Malta",IM:"Mani saar",MA:"Maroko",MH:"Marshalli saared",MQ:"Martinique",MR:"Mauritaania",MU:"Mauritius",YT:"Mayotte",MX:"Mehhiko",FM:"Mikroneesia Liiduriigid",MD:"Moldova",MC:"Monaco",MN:"Mongoolia",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambiik",MM:"Myanmar",NA:"Namiibia",NR:"Nauru",NP:"Nepal",NI:"Nicaragua",NG:"Nigeeria",NE:"Niger",NU:"Niue",NF:"Norfolk",NO:"Norra",OM:"Omaan",PG:"Paapua Uus-Guinea",PK:"Pakistan",PS:"Palestiina ala",PA:"Panama",PY:"Paraguay",PE:"Peruu",PN:"Pitcairn",PL:"Poola",PT:"Portugal",GF:"Prantsuse Guajaana",TF:"Prantsuse Lõunaalad",PF:"Prantsuse Polüneesia",FR:"Prantsusmaa",PR:"Puerto Rico",KP:"Põhja-Korea",MK:"Põhja-Makedoonia",MP:"Põhja-Mariaanid",RE:"Réunion",CV:"Roheneemesaared",SE:"Rootsi",SX:"Sint Maarten",RO:"Rumeenia",RW:"Rwanda",SB:"Saalomoni Saared",BL:"Saint Barthélemy",SH:"Saint Helena",KN:"Saint Kitts ja Nevis",LC:"Saint Lucia",MF:"Saint Martin",PM:"Saint Pierre ja Miquelon",VC:"Saint Vincent ja Grenadiinid",DE:"Saksamaa",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé ja Príncipe",SA:"Saudi Araabia",SC:"Seišellid",SN:"Senegal",RS:"Serbia",SL:"Sierra Leone",SG:"Singapur",SK:"Slovakkia",SI:"Sloveenia",SO:"Somaalia",FI:"Soome",LK:"Sri Lanka",SD:"Sudaan",SS:"Lõuna-Sudaan",SR:"Suriname",GB:"Suurbritannia",SZ:"Svaasimaa",SJ:"Svalbard ja Jan Mayen",SY:"Süüria",CH:"Šveits",ZW:"Zimbabwe",DK:"Taani",TJ:"Tadžikistan",TH:"Tai",TW:"Taiwan",TZ:"Tansaania",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad ja Tobago",TD:"Tšaad",CZ:"Tšehhi",CL:"Tšiili",TN:"Tuneesia",TC:"Turks ja Caicos",TV:"Tuvalu",TR:"Türgi",TM:"Türkmenistan",UG:"Uganda",UA:"Ukraina",HU:"Ungari",UY:"Uruguay",VI:"USA Neitsisaared",UZ:"Usbekistan",NC:"Uus-Kaledoonia",NZ:"Uus-Meremaa",BY:"Valgevene",WF:"Wallis ja Futuna",VU:"Vanuatu",VA:"Vatikan",RU:"Venemaa",VE:"Venezuela",VN:"Vietnam",UM:"Ühendriikide hajasaared",XK:"Kosovo"}},OM={locale:"lv",countries:{AD:"Andora",AE:"Apvienotie Arābu Emirāti",AF:"Afganistāna",AG:"Antigva un Barbuda",AI:"Angilja",AL:"Albānija",AM:"Armēnija",AO:"Angola",AQ:"Antarktika",AR:"Argentīna",AS:"ASV Samoa",AT:"Austrija",AU:"Austrālija",AW:"Aruba",AX:"Olandes salas",AZ:"Azerbaidžāna",BA:"Bosnija un Hercegovina",BB:"Barbadosa",BD:"Bangladeša",BE:"Beļģija",BF:"Burkinafaso",BG:"Bulgārija",BH:"Bahreina",BI:"Burundija",BJ:"Benina",BL:"Senbartelmī",BM:"Bermudu salas",BN:"Bruneja",BO:"Bolīvija",BQ:"Nīderlandes Karību salas",BR:"Brazīlija",BS:"Bahamu salas",BT:"Butāna",BV:"Buvē sala",BW:"Botsvāna",BY:"Baltkrievija",BZ:"Beliza",CA:"Kanāda",CC:"Kokosu (Kīlinga) salas",CD:"Kongo (Kinšasa)",CF:"Centrālāfrikas Republika",CG:"Kongo (Brazavila)",CH:"Šveice",CI:"Kotdivuāra",CK:"Kuka salas",CL:"Čīle",CM:"Kamerūna",CN:"Ķīna",CO:"Kolumbija",CR:"Kostarika",CU:"Kuba",CV:"Kaboverde",CW:"Kirasao",CX:"Ziemsvētku sala",CY:"Kipra",CZ:"Čehija",DE:"Vācija",DJ:"Džibutija",DK:"Dānija",DM:"Dominika",DO:"Dominikāna",DZ:"Alžīrija",EC:"Ekvadora",EE:"Igaunija",EG:"Ēģipte",EH:"Rietumsahāra",ER:"Eritreja",ES:"Spānija",ET:"Etiopija",FI:"Somija",FJ:"Fidži",FK:"Folklenda salas",FM:"Mikronēzija",FO:"Fēru salas",FR:"Francija",GA:"Gabona",GB:"Lielbritānija",GD:"Grenāda",GE:"Gruzija",GF:"Francijas Gviāna",GG:"Gērnsija",GH:"Gana",GI:"Gibraltārs",GL:"Grenlande",GM:"Gambija",GN:"Gvineja",GP:"Gvadelupa",GQ:"Ekvatoriālā Gvineja",GR:"Grieķija",GS:"Dienviddžordžija un Dienvidsendviču salas",GT:"Gvatemala",GU:"Guama",GW:"Gvineja-Bisava",GY:"Gajāna",HK:"Ķīnas īpašās pārvaldes apgabals Honkonga",HM:"Hērda sala un Makdonalda salas",HN:"Hondurasa",HR:"Horvātija",HT:"Haiti",HU:"Ungārija",ID:"Indonēzija",IE:"Īrija",IL:"Izraēla",IM:"Mena",IN:"Indija",IO:"Indijas okeāna Britu teritorija",IQ:"Irāka",IR:"Irāna",IS:"Islande",IT:"Itālija",JE:"Džērsija",JM:"Jamaika",JO:"Jordānija",JP:"Japāna",KE:"Kenija",KG:"Kirgizstāna",KH:"Kambodža",KI:"Kiribati",KM:"Komoru salas",KN:"Sentkitsa un Nevisa",KP:"Ziemeļkoreja",KR:"Dienvidkoreja",KW:"Kuveita",KY:"Kaimanu salas",KZ:"Kazahstāna",LA:"Laosa",LB:"Libāna",LC:"Sentlūsija",LI:"Lihtenšteina",LK:"Šrilanka",LR:"Libērija",LS:"Lesoto",LT:"Lietuva",LU:"Luksemburga",LV:"Latvija",LY:"Lībija",MA:"Maroka",MC:"Monako",MD:"Moldova",ME:"Melnkalne",MF:"Senmartēna",MG:"Madagaskara",MH:"Māršala salas",MK:"Ziemeļmaķedonija",ML:"Mali",MM:"Mjanma (Birma)",MN:"Mongolija",MO:"Ķīnas īpašās pārvaldes apgabals Makao",MP:"Ziemeļu Marianas salas",MQ:"Martinika",MR:"Mauritānija",MS:"Montserrata",MT:"Malta",MU:"Maurīcija",MV:"Maldīvija",MW:"Malāvija",MX:"Meksika",MY:"Malaizija",MZ:"Mozambika",NA:"Namībija",NC:"Jaunkaledonija",NE:"Nigēra",NF:"Norfolkas sala",NG:"Nigērija",NI:"Nikaragva",NL:"Nīderlande",NO:"Norvēģija",NP:"Nepāla",NR:"Nauru",NU:"Niue",NZ:"Jaunzēlande",OM:"Omāna",PA:"Panama",PE:"Peru",PF:"Francijas Polinēzija",PG:"Papua-Jaungvineja",PH:"Filipīnas",PK:"Pakistāna",PL:"Polija",PM:"Senpjēra un Mikelona",PN:"Pitkērnas salas",PR:"Puertoriko",PS:"Palestīna",PT:"Portugāle",PW:"Palau",PY:"Paragvaja",QA:"Katara",RE:"Reinjona",RO:"Rumānija",RS:"Serbija",RU:"Krievija",RW:"Ruanda",SA:"Saūda Arābija",SB:"Zālamana salas",SC:"Seišelu salas",SD:"Sudāna",SE:"Zviedrija",SG:"Singapūra",SH:"Sv.Helēnas sala",SI:"Slovēnija",SJ:"Svalbāra un Jana Majena sala",SK:"Slovākija",SL:"Sjerraleone",SM:"Sanmarīno",SN:"Senegāla",SO:"Somālija",SR:"Surinama",SS:"Dienvidsudāna",ST:"Santome un Prinsipi",SV:"Salvadora",SX:"Sintmārtena",SY:"Sīrija",SZ:"Svazilenda",TC:"Tērksas un Kaikosas salas",TD:"Čada",TF:"Francijas Dienvidjūru teritorija",TG:"Togo",TH:"Taizeme",TJ:"Tadžikistāna",TK:"Tokelau",TL:"Austrumtimora",TM:"Turkmenistāna",TN:"Tunisija",TO:"Tonga",TR:"Turcija",TT:"Trinidāda un Tobāgo",TV:"Tuvalu",TW:"Taivāna",TZ:"Tanzānija",UA:"Ukraina",UG:"Uganda",UM:"ASV Mazās Aizjūras salas",US:"Amerikas Savienotās Valstis",UY:"Urugvaja",UZ:"Uzbekistāna",VA:"Vatikāns",VC:"Sentvinsenta un Grenadīnas",VE:"Venecuēla",VG:"Britu Virdžīnas",VI:"ASV Virdžīnas",VN:"Vjetnama",VU:"Vanuatu",WF:"Volisa un Futunas salas",WS:"Samoa",XK:"Kosova",YE:"Jemena",YT:"Majota",ZA:"Dienvidāfrikas Republika",ZM:"Zambija",ZW:"Zimbabve"}},PM={locale:"lt",countries:{AD:"Andora",AE:"Jungtiniai Arabų Emyratai",AF:"Afganistanas",AG:"Antigva ir Barbuda",AI:"Angilija",AL:"Albanija",AM:"Armėnija",AO:"Angola",AQ:"Antarktida",AR:"Argentina",AS:"Amerikos Samoa",AT:"Austrija",AU:"Australija",AW:"Aruba",AX:"Alandų Salos",AZ:"Azerbaidžanas",BA:"Bosnija ir Hercegovina",BB:"Barbadosas",BD:"Bangladešas",BE:"Belgija",BF:"Burkina Fasas",BG:"Bulgarija",BH:"Bahreinas",BI:"Burundis",BJ:"Beninas",BL:"Sen Bartelemi",BM:"Bermuda",BN:"Brunėjus",BO:"Bolivija",BQ:"Karibų Nyderlandai",BR:"Brazilija",BS:"Bahamos",BT:"Butanas",BV:"Buvė Sala",BW:"Botsvana",BY:"Baltarusija",BZ:"Belizas",CA:"Kanada",CC:"Kokosų (Kilingo) Salos",CD:"Kongas-Kinšasa",CF:"Centrinės Afrikos Respublika",CG:"Kongas-Brazavilis",CH:"Šveicarija",CI:"Dramblio Kaulo Krantas",CK:"Kuko Salos",CL:"Čilė",CM:"Kamerūnas",CN:"Kinija",CO:"Kolumbija",CR:"Kosta Rika",CU:"Kuba",CV:"Žaliasis Kyšulys",CW:"Kiurasao",CX:"Kalėdų Sala",CY:"Kipras",CZ:"Čekija",DE:"Vokietija",DJ:"Džibutis",DK:"Danija",DM:"Dominika",DO:"Dominikos Respublika",DZ:"Alžyras",EC:"Ekvadoras",EE:"Estija",EG:"Egiptas",EH:"Vakarų Sachara",ER:"Eritrėja",ES:"Ispanija",ET:"Etiopija",FI:"Suomija",FJ:"Fidžis",FK:"Folklando Salos",FM:"Mikronezija",FO:"Farerų Salos",FR:"Prancūzija",GA:"Gabonas",GB:"Jungtinė Karalystė",GD:"Grenada",GE:["Sakartvelas","Gruzija"],GF:"Prancūzijos Gviana",GG:"Gernsis",GH:"Gana",GI:"Gibraltaras",GL:"Grenlandija",GM:"Gambija",GN:"Gvinėja",GP:"Gvadelupa",GQ:"Pusiaujo Gvinėja",GR:"Graikija",GS:"Pietų Džordžija ir Pietų Sandvičo salos",GT:"Gvatemala",GU:"Guamas",GW:"Bisau Gvinėja",GY:"Gajana",HK:"Honkongas",HM:"Herdo ir Makdonaldo Salos",HN:"Hondūras",HR:"Kroatija",HT:"Haitis",HU:"Vengrija",ID:"Indonezija",IE:"Airija",IL:"Izraelis",IM:"Meno Sala",IN:"Indija",IO:"Indijos Vandenyno Britų Sritis",IQ:"Irakas",IR:"Iranas",IS:"Islandija",IT:"Italija",JE:"Džersis",JM:"Jamaika",JO:"Jordanija",JP:"Japonija",KE:"Kenija",KG:"Kirgizija",KH:"Kambodža",KI:"Kiribatis",KM:"Komorai",KN:"Sent Kitsas ir Nevis",KP:"Šiaurės Korėja",KR:"Pietų Korėja",KW:"Kuveitas",KY:"Kaimanų Salos",KZ:"Kazachstanas",LA:"Laosas",LB:"Libanas",LC:"Sent Lusija",LI:"Lichtenšteinas",LK:"Šri Lanka",LR:"Liberija",LS:"Lesotas",LT:"Lietuva",LU:"Liuksemburgas",LV:"Latvija",LY:"Libija",MA:"Marokas",MC:"Monakas",MD:"Moldova",ME:"Juodkalnija",MF:"Sen Martenas",MG:"Madagaskaras",MH:"Maršalo Salos",MK:"Šiaurės Makedonija",ML:"Malis",MM:"Mianmaras (Birma)",MN:"Mongolija",MO:"Makao",MP:"Marianos Šiaurinės Salos",MQ:"Martinika",MR:"Mauritanija",MS:"Montseratas",MT:"Malta",MU:"Mauricijus",MV:"Maldyvai",MW:"Malavis",MX:"Meksika",MY:"Malaizija",MZ:"Mozambikas",NA:"Namibija",NC:"Naujoji Kaledonija",NE:"Nigeris",NF:"Norfolko sala",NG:"Nigerija",NI:"Nikaragva",NL:"Nyderlandai",NO:"Norvegija",NP:"Nepalas",NR:"Nauru",NU:"Niujė",NZ:"Naujoji Zelandija",OM:"Omanas",PA:"Panama",PE:"Peru",PF:"Prancūzijos Polinezija",PG:"Papua Naujoji Gvinėja",PH:"Filipinai",PK:"Pakistanas",PL:"Lenkija",PM:"Sen Pjeras ir Mikelonas",PN:"Pitkerno salos",PR:"Puerto Rikas",PS:"Palestinos teritorija",PT:"Portugalija",PW:"Palau",PY:"Paragvajus",QA:"Kataras",RE:"Reunjonas",RO:"Rumunija",RS:"Serbija",RU:"Rusija",RW:"Ruanda",SA:"Saudo Arabija",SB:"Saliamono Salos",SC:"Seišeliai",SD:"Sudanas",SE:"Švedija",SG:"Singapūras",SH:"Šv. Elenos Sala",SI:"Slovėnija",SJ:"Svalbardas ir Janas Majenas",SK:"Slovakija",SL:"Siera Leonė",SM:"San Marinas",SN:"Senegalas",SO:"Somalis",SR:"Surinamas",SS:"Pietų Sudanas",ST:"San Tomė ir Prinsipė",SV:"Salvadoras",SX:"Sint Martenas",SY:"Sirija",SZ:"Svazilandas",TC:"Terkso ir Kaikoso Salos",TD:"Čadas",TF:"Prancūzijos Pietų sritys",TG:"Togas",TH:"Tailandas",TJ:"Tadžikija",TK:"Tokelau",TL:"Rytų Timoras",TM:"Turkmėnistanas",TN:"Tunisas",TO:"Tonga",TR:"Turkija",TT:"Trinidadas ir Tobagas",TV:"Tuvalu",TW:"Taivanas",TZ:"Tanzanija",UA:"Ukraina",UG:"Uganda",UM:"Jungtinių Valstijų Mažosios Tolimosios Salos",US:"Jungtinės Valstijos",UY:"Urugvajus",UZ:"Uzbekistanas",VA:"Vatikano Miesto Valstybė",VC:"Šventasis Vincentas ir Grenadinai",VE:"Venesuela",VG:"Didžiosios Britanijos Mergelių Salos",VI:"Jungtinių Valstijų Mergelių Salos",VN:"Vietnamas",VU:"Vanuatu",WF:"Volisas ir Futūna",WS:"Samoa",XK:"Kosovas",YE:"Jemenas",YT:"Majotas",ZA:"Pietų Afrika",ZM:"Zambija",ZW:"Zimbabvė"}},UM={locale:"ru",countries:{AU:"Австралия",AT:"Австрия",AZ:"Азербайджан",AX:"Аландские острова",AL:"Албания",DZ:"Алжир",VI:"Виргинские Острова (США)",AS:"Американское Самоа",AI:"Ангилья",AO:"Ангола",AD:"Андорра",AQ:"Антарктида",AG:"Антигуа и Барбуда",AR:"Аргентина",AM:"Армения",AW:"Аруба",AF:"Афганистан",BS:"Багамы",BD:"Бангладеш",BB:"Барбадос",BH:"Бахрейн",BZ:"Белиз",BY:"Беларусь",BE:"Бельгия",BJ:"Бенин",BM:"Бермуды",BG:"Болгария",BO:"Боливия",BQ:"Бонэйр, Синт-Эстатиус и Саба",BA:"Босния и Герцеговина",BW:"Ботсвана",BR:"Бразилия",IO:"Британская территория в Индийском океане",VG:"Виргинские Острова (Великобритания)",BN:"Бруней",BF:"Буркина-Фасо",BI:"Бурунди",BT:"Бутан",VU:"Вануату",VA:"Ватикан",GB:"Великобритания",HU:"Венгрия",VE:"Венесуэла",UM:"Внешние малые острова (США)",TL:"Восточный Тимор",VN:"Вьетнам",GA:"Габон",HT:"Гаити",GY:"Гайана",GM:"Гамбия",GH:"Гана",GP:"Гваделупа",GT:"Гватемала",GF:"Гвиана",GN:"Гвинея",GW:"Гвинея-Бисау",DE:"Германия",GG:"Гернси",GI:"Гибралтар",HN:"Гондурас",HK:"Гонконг",GD:"Гренада",GL:"Гренландия",GR:"Греция",GE:"Грузия",GU:"Гуам",DK:"Дания",JE:"Джерси",DJ:"Джибути",DM:"Доминика",DO:"Доминиканская Республика",CD:"Демократическая Республика Конго",EG:"Египет",ZM:"Замбия",EH:"САДР",ZW:"Зимбабве",IL:"Израиль",IN:"Индия",ID:"Индонезия",JO:"Иордания",IQ:"Ирак",IR:"Иран",IE:"Ирландия",IS:"Исландия",ES:"Испания",IT:"Италия",YE:"Йемен",CV:"Кабо-Верде",KZ:"Казахстан",KY:"Острова Кайман",KH:"Камбоджа",CM:"Камерун",CA:"Канада",QA:"Катар",KE:"Кения",CY:"Кипр",KG:"Киргизия",KI:"Кирибати",TW:["Тайвань","Китайская Республика"],KP:"КНДР (Корейская Народно-Демократическая Республика)",CN:"КНР (Китайская Народная Республика)",CC:"Кокосовые острова",CO:"Колумбия",KM:"Коморы",CR:"Коста-Рика",CI:"Кот-д’Ивуар",CU:"Куба",KW:"Кувейт",CW:"Кюрасао",LA:"Лаос",LV:"Латвия",LS:"Лесото",LR:"Либерия",LB:"Ливан",LY:"Ливия",LT:"Литва",LI:"Лихтенштейн",LU:"Люксембург",MU:"Маврикий",MR:"Мавритания",MG:"Мадагаскар",YT:"Майотта",MO:"Макао",MW:"Малави",MY:"Малайзия",ML:"Мали",MV:"Мальдивы",MT:"Мальта",MA:"Марокко",MQ:"Мартиника",MH:"Маршалловы Острова",MX:"Мексика",FM:"Микронезия",MZ:"Мозамбик",MD:"Молдавия",MC:"Монако",MN:"Монголия",MS:"Монтсеррат",MM:"Мьянма",NA:"Намибия",NR:"Науру",NP:"Непал",NE:"Нигер",NG:"Нигерия",NL:"Нидерланды",NI:"Никарагуа",NU:"Ниуэ",NZ:"Новая Зеландия",NC:"Новая Каледония",NO:"Норвегия",AE:"ОАЭ",OM:"Оман",BV:"Остров Буве",IM:"Остров Мэн",CK:"Острова Кука",NF:"Остров Норфолк",CX:"Остров Рождества",PN:"Острова Питкэрн",SH:"Острова Святой Елены, Вознесения и Тристан-да-Кунья",PK:"Пакистан",PW:"Палау",PS:"Государство Палестина",PA:"Панама",PG:"Папуа — Новая Гвинея",PY:"Парагвай",PE:"Перу",PL:"Польша",PT:"Португалия",PR:"Пуэрто-Рико",CG:"Республика Конго",KR:"Республика Корея",RE:"Реюньон",RU:["Российская Федерация","Россия"],RW:"Руанда",RO:"Румыния",SV:"Сальвадор",WS:"Самоа",SM:"Сан-Марино",ST:"Сан-Томе и Принсипи",SA:"Саудовская Аравия",SZ:"Эсватини",MK:"Северная Македония",MP:"Северные Марианские Острова",SC:"Сейшельские Острова",BL:"Сен-Бартелеми",MF:"Сен-Мартен",PM:"Сен-Пьер и Микелон",SN:"Сенегал",VC:"Сент-Винсент и Гренадины",KN:"Сент-Китс и Невис",LC:"Сент-Люсия",RS:"Сербия",SG:"Сингапур",SX:"Синт-Мартен",SY:"Сирия",SK:"Словакия",SI:"Словения",SB:"Соломоновы Острова",SO:"Сомали",SD:"Судан",SR:"Суринам",US:"США",SL:"Сьерра-Леоне",TJ:"Таджикистан",TH:"Таиланд",TZ:"Танзания",TC:"Теркс и Кайкос",TG:"Того",TK:"Токелау",TO:"Тонга",TT:"Тринидад и Тобаго",TV:"Тувалу",TN:"Тунис",TM:"Туркмения",TR:"Турция",UG:"Уганда",UZ:"Узбекистан",UA:"Украина",WF:"Уоллис и Футуна",UY:"Уругвай",FO:"Фареры",FJ:"Фиджи",PH:"Филиппины",FI:"Финляндия",FK:"Фолклендские острова",FR:"Франция",PF:"Французская Полинезия",TF:"Французские Южные и Антарктические Территории",HM:"Херд и Макдональд",HR:"Хорватия",CF:"ЦАР",TD:"Чад",ME:"Черногория",CZ:"Чехия",CL:"Чили",CH:"Швейцария",SE:"Швеция",SJ:"Шпицберген и Ян-Майен",LK:"Шри-Ланка",EC:"Эквадор",GQ:"Экваториальная Гвинея",ER:"Эритрея",EE:"Эстония",ET:"Эфиопия",ZA:"ЮАР",GS:"Южная Георгия и Южные Сандвичевы Острова",SS:"Южный Судан",JM:"Ямайка",JP:"Япония",XK:"Косово"}},GM={locale:"es",countries:{AF:"Afganistán",AL:"Albania",DZ:"Argelia",AS:"Samoa Americana",AD:"Andorra",AO:"Angola",AI:"Anguila",AQ:"Antártida",AG:"Antigua y Barbuda",AR:"Argentina",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbaiyán",BS:"Bahamas",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",BY:"Bielorrusia",BE:"Bélgica",BZ:"Belice",BJ:"Benin",BM:"Bermudas",BT:"Bután",BO:"Bolivia",BA:"Bosnia y Herzegovina",BW:"Botswana",BV:"Isla Bouvet",BR:"Brasil",IO:"Territorio Británico del Océano Índico",BN:"Brunei Darussalam",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Camboya",CM:"Camerún",CA:"Canadá",CV:"Cabo Verde",KY:"Islas Caimán",CF:"República Centroafricana",TD:"Chad",CL:"Chile",CN:"China",CX:"Isla de Navidad",CC:"Islas Cocos (Keeling)",CO:"Colombia",KM:"Comoras",CG:"Congo",CD:"Congo (República Democrática del)",CK:"Islas Cook",CR:"Costa Rica",CI:"Costa de Marfil",HR:"Croacia",CU:"Cuba",CY:"Chipre",CZ:"República Checa",DK:"Dinamarca",DJ:"Yibuti",DM:"Dominica",DO:"República Dominicana",EC:"Ecuador",EG:"Egipto",SV:"El Salvador",GQ:"Guinea Ecuatorial",ER:"Eritrea",EE:"Estonia",ET:"Etiopía",FK:"Islas Malvinas",FO:"Islas Feroe",FJ:"Fiji",FI:"Finlandia",FR:"Francia",GF:"Guayana Francesa",PF:"Polinesia Francesa",TF:"Tierras Australes Francesas",GA:"Gabón",GM:"Gambia",GE:"Georgia",DE:"Alemania",GH:"Ghana",GI:"Gibraltar",GR:"Grecia",GL:"Groenlandia",GD:"Granada",GP:"Guadalupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea Bissau",GY:"Guyana",HT:"Haití",HM:"Heard e Islas McDonald",VA:"Santa Sede",HN:"Honduras",HK:"Hong Kong",HU:"Hungría",IS:"Islandia",IN:"India",ID:"Indonesia",IR:["Irán","República Islámica de Irán"],IQ:"Iraq",IE:"Irlanda",IL:"Israel",IT:"Italia",JM:"Jamaica",JP:"Japón",JO:"Jordania",KZ:"Kazajistán",KE:"Kenia",KI:"Kiribati",KP:"República Popular Democrática de Corea",KR:"República de Corea",KW:"Kuwait",KG:"Kirguistán",LA:"República Democrática Popular de Lao",LV:"Letonia",LB:"Líbano",LS:"Lesoto",LR:"Liberia",LY:"Libia",LI:"Liechtenstein",LT:"Lituania",LU:"Luxemburgo",MO:"Macao",MK:"Macedonia del Norte",MG:"Madagascar",MW:"Malaui",MY:"Malasia",MV:"Maldivas",ML:"Malí",MT:"Malta",MH:"Islas Marshall",MQ:"Martinica",MR:"Mauritania",MU:"Mauricio",YT:"Mayotte",MX:"México",FM:"Micronesia",MD:"Moldavia",MC:"Mónaco",MN:"Mongolia",MS:"Montserrat",MA:"Marruecos",MZ:"Mozambique",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Países Bajos",NC:"Nueva Caledonia",NZ:"Nueva Zelanda",NI:"Nicaragua",NE:"Níger",NG:"Nigeria",NU:"Niue",NF:"Isla Norfolk",MP:"Islas Marianas del Norte",NO:"Noruega",OM:"Omán",PK:"Pakistán",PW:"Palau",PS:"Palestina",PA:"Panamá",PG:"Papua Nueva Guinea",PY:"Paraguay",PE:"Perú",PH:"Filipinas",PN:"Pitcairn",PL:"Polonia",PT:"Portugal",PR:"Puerto Rico",QA:"Catar",RE:"Reunión",RO:"Rumanía",RU:"Rusia",RW:"Ruanda",SH:"Santa Helena, Ascensión y Tristán de Acuña",KN:"Saint Kitts y Nevis",LC:"Santa Lucía",PM:"San Pedro y Miquelón",VC:"San Vicente y las Granadinas",WS:"Samoa",SM:"San Marino",ST:"Santo Tomé y Príncipe",SA:"Arabia Saudita",SN:"Senegal",SC:"Seychelles",SL:"Sierra Leona",SG:"Singapur",SK:"Eslovaquia",SI:"Eslovenia",SB:"Islas Salomón",SO:"Somalia",ZA:"Sudáfrica",GS:"Georgia del Sur y las Islas Sandwich del Sur",ES:"España",LK:"Sri Lanka",SD:"Sudán",SR:"Suriname",SJ:"Svalbard y Jan Mayen",SZ:"Esuatini",SE:"Suecia",CH:"Suiza",SY:"República Árabe Siria",TW:"Taiwán",TJ:"Tayikistán",TZ:"Tanzania",TH:"Tailandia",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad y Tobago",TN:"Túnez",TR:"Turquía",TM:"Turkmenistán",TC:"Islas Turcas y Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ucrania",AE:"Emiratos Árabes Unidos",GB:"Reino Unido",US:"Estados Unidos",UM:"Islas Ultramarinas Menores de los Estados Unidos",UY:"Uruguay",UZ:"Uzbekistán",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Islas Vírgenes británicas",VI:"Islas Vírgenes de los Estados Unidos",WF:"Wallis y Futuna",EH:"Sahara Occidental",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabue",AX:"Islas Åland",BQ:"Bonaire, San Eustaquio y Saba",CW:"Curaçao",GG:"Guernsey",IM:"Isla de Man",JE:"Jersey",ME:"Montenegro",BL:"Saint Barthélemy",MF:"Saint Martin (francesa)",RS:"Serbia",SX:"Sint Maarten (neerlandesa)",SS:"Sudán del Sur",XK:"Kosovo"}},jM={locale:"fi",countries:{AF:"Afganistan",AX:"Ahvenanmaa",NL:"Alankomaat",AL:"Albania",DZ:"Algeria",AS:"Amerikan Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua ja Barbuda",AE:"Arabiemiirikunnat",AR:"Argentiina",AM:"Armenia",AW:"Aruba",AU:"Australia",AZ:"Azerbaidžan",BS:"Bahama",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BQ:"Bonaire, Sint Eustatius ja Saba",BA:"Bosnia ja Hertsegovina",BW:"Botswana",BV:"Bouvet’nsaari",BR:"Brasilia",IO:"Brittiläinen Intian valtameren alue",VG:"Brittiläiset Neitsytsaaret",BN:"Brunei",BG:"Bulgaria",BF:"Burkina Faso",BI:"Burundi",KY:"Caymansaaret",CL:"Chile",CK:"Cookinsaaret",CR:"Costa Rica",CW:"Curaçao",DJ:"Djibouti",DM:"Dominica",DO:"Dominikaaninen tasavalta",EC:"Ecuador",EG:"Egypti",SV:"El Salvador",ER:"Eritrea",ES:"Espanja",ET:"Etiopia",ZA:"Etelä-Afrikka",GS:"Etelä-Georgia ja Eteläiset Sandwichsaaret",SS:"Etelä-Sudan",FK:"Falklandinsaaret",FO:"Färsaaret",FJ:"Fidži",PH:"Filippiinit",GA:"Gabon",GM:"Gambia",GE:"Georgia",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GL:"Grönlanti",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard ja McDonaldinsaaret",HN:"Honduras",HK:"Hongkong",ID:"Indonesia",IN:"Intia",IQ:"Irak",IR:"Iran",IE:"Irlanti",IS:"Islanti",IL:"Israel",IT:"Italia",TL:"Itä-Timor",AT:"Itävalta",JM:"Jamaika",JP:"Japani",YE:"Jemen",JE:"Jersey",JO:"Jordania",CX:"Joulusaari",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",CV:"Kap Verde",KZ:"Kazakstan",KE:"Kenia",CF:"Keski-Afrikan tasavalta",CN:"Kiina",KG:"Kirgisia",KI:"Kiribati",CO:"Kolumbia",KM:"Komorit",CD:"Kongon demokraattinen tasavalta",CG:"Kongon tasavalta",CC:"Kookossaaret",KP:"Korean demokraattinen kansantasavalta",KR:"Korean tasavalta",GR:"Kreikka",HR:"Kroatia",CU:"Kuuba",KW:"Kuwait",CY:"Kypros",LA:"Laos",LV:"Latvia",LS:"Lesotho",LB:"Libanon",LR:"Liberia",LY:"Libya",LI:"Liechtenstein",LT:"Liettua",LU:"Luxemburg",EH:"Länsi-Sahara",MO:"Macao",MG:"Madagaskar",MW:"Malawi",MV:"Malediivit",MY:"Malesia",ML:"Mali",MT:"Malta",IM:"Mansaari",MA:"Marokko",MH:"Marshallinsaaret",MQ:"Martinique",MR:"Mauritania",MU:"Mauritius",YT:"Mayotte",MX:"Meksiko",FM:"Mikronesian liittovaltio",MD:"Moldova",MC:"Monaco",MN:"Mongolia",ME:"Montenegro",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibia",NR:"Nauru",NP:"Nepal",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolkinsaari",NO:"Norja",CI:"Norsunluurannikko",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palestiina",PA:"Panama",PG:"Papua-Uusi-Guinea",PY:"Paraguay",PE:"Peru",MK:"Pohjois-Makedonia",MP:"Pohjois-Mariaanit",PN:"Pitcairn",PT:"Portugali",PR:"Puerto Rico",PL:"Puola",GQ:"Päiväntasaajan Guinea",QA:"Qatar",FR:"Ranska",TF:"Ranskan eteläiset alueet",GF:"Ranskan Guayana",PF:"Ranskan Polynesia",RE:"Réunion",RO:"Romania",RW:"Ruanda",SE:"Ruotsi",BL:"Saint-Barthélemy",SH:"Saint Helena",KN:"Saint Kitts ja Nevis",LC:"Saint Lucia",MF:"Saint-Martin",PM:"Saint-Pierre ja Miquelon",VC:"Saint Vincent ja Grenadiinit",DE:"Saksa",SB:"Salomonsaaret",ZM:"Sambia",WS:"Samoa",SM:"San Marino",ST:"São Tomé ja Príncipe",SA:"Saudi-Arabia",SN:"Senegal",RS:"Serbia",SC:"Seychellit",SL:"Sierra Leone",SG:"Singapore",SX:"Sint Maarten",SK:"Slovakia",SI:"Slovenia",SO:"Somalia",LK:"Sri Lanka",SD:"Sudan",FI:"Suomi",SR:"Suriname",SJ:"Svalbard ja Jan Mayen",SZ:"Swazimaa",CH:"Sveitsi",SY:"Syyria",TJ:"Tadžikistan",TW:"Taiwan",TZ:"Tansania",DK:"Tanska",TH:"Thaimaa",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad ja Tobago",TD:"Tšad",CZ:"Tšekki",TN:"Tunisia",TR:"Turkki",TM:"Turkmenistan",TC:"Turks- ja Caicossaaret",TV:"Tuvalu",UG:"Uganda",UA:"Ukraina",HU:"Unkari",UY:"Uruguay",NC:"Uusi-Kaledonia",NZ:"Uusi-Seelanti",UZ:"Uzbekistan",BY:"Valko-Venäjä",VU:"Vanuatu",VA:"Vatikaanivaltio",VE:"Venezuela",RU:"Venäjä",VN:"Vietnam",EE:"Viro",WF:"Wallis ja Futunasaaret",GB:"Yhdistynyt kuningaskunta",US:"Yhdysvallat",VI:"Yhdysvaltain Neitsytsaaret",UM:"Yhdysvaltain pienet erillissaaret",ZW:"Zimbabwe",XK:"Kosovo"}},HM={locale:"fr",countries:{AF:"Afghanistan",AL:"Albanie",DZ:"Algérie",AS:"Samoa américaines",AD:"Andorre",AO:"Angola",AI:"Anguilla",AQ:"Antarctique",AG:"Antigua-et-Barbuda",AR:"Argentine",AM:"Arménie",AW:"Aruba",AU:"Australie",AT:"Autriche",AZ:"Azerbaïdjan",BS:"Bahamas",BH:"Bahreïn",BD:"Bangladesh",BB:"Barbade",BY:"Biélorussie",BE:"Belgique",BZ:"Belize",BJ:"Bénin",BM:"Bermudes",BT:"Bhoutan",BO:"Bolivie",BA:"Bosnie-Herzégovine",BW:"Botswana",BV:"Île Bouvet",BR:"Brésil",IO:"Océan Indien Britannique",BN:"Brunei Darussalam",BG:"Bulgarie",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodge",CM:"Cameroun",CA:"Canada",CV:"Cap-Vert",KY:"Îles Caïmans",CF:"République Centrafricaine",TD:"Tchad",CL:"Chili",CN:"Chine",CX:"Île Christmas",CC:"Îles Cocos",CO:"Colombie",KM:"Comores",CG:"République du Congo",CD:"République démocratique du Congo",CK:"Îles Cook",CR:"Costa Rica",CI:"Côte-d'Ivoire",HR:"Croatie",CU:"Cuba",CY:"Chypre",CZ:"République Tchèque",DK:"Danemark",DJ:"Djibouti",DM:"Dominique",DO:"République Dominicaine",EC:"Équateur",EG:"Égypte",SV:"El Salvador",GQ:"Guinée équatoriale",ER:"Érythrée",EE:"Estonie",ET:"Éthiopie",FK:"Îles Malouines",FO:"Îles Féroé",FJ:"Fidji",FI:"Finlande",FR:"France",GF:"Guyane française",PF:"Polynésie française",TF:"Terres australes françaises",GA:"Gabon",GM:"Gambie",GE:"Géorgie",DE:"Allemagne",GH:"Ghana",GI:"Gibraltar",GR:"Grèce",GL:"Groenland",GD:"Grenade",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinée",GW:"Guinée-Bissau",GY:"Guyana",HT:"Haïti",HM:"Îles Heard-et-MacDonald",VA:"Saint-Siège (Vatican)",HN:"Honduras",HK:"Hong Kong",HU:"Hongrie",IS:"Islande",IN:"Inde",ID:"Indonésie",IR:"Iran",IQ:"Irak",IE:"Irlande",IL:"Israël",IT:"Italie",JM:"Jamaïque",JP:"Japon",JO:"Jordanie",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"Corée du Nord",KR:"Corée du Sud",KW:"Koweït",KG:"Kirghizistan",LA:"Laos",LV:"Lettonie",LB:"Liban",LS:"Lesotho",LR:"Libéria",LY:"Libye",LI:"Liechtenstein",LT:"Lituanie",LU:"Luxembourg",MO:"Macao",MK:"Macédoine du Nord",MG:"Madagascar",MW:"Malawi",MY:"Malaisie",MV:"Maldives",ML:"Mali",MT:"Malte",MH:"Îles Marshall",MQ:"Martinique",MR:"Mauritanie",MU:"Maurice",YT:"Mayotte",MX:"Mexique",FM:"Micronésie",MD:"Moldavie",MC:"Monaco",MN:"Mongolie",MS:"Montserrat",MA:"Maroc",MZ:"Mozambique",MM:"Myanmar",NA:"Namibie",NR:"Nauru",NP:"Népal",NL:"Pays-Bas",NC:"Nouvelle-Calédonie",NZ:"Nouvelle-Zélande",NI:"Nicaragua",NE:"Niger",NG:"Nigéria",NU:"Niué",NF:"Île Norfolk",MP:"Îles Mariannes du Nord",NO:"Norvège",OM:"Oman",PK:"Pakistan",PW:"Palaos",PS:"Palestine",PA:"Panama",PG:"Papouasie-Nouvelle-Guinée",PY:"Paraguay",PE:"Pérou",PH:"Philippines",PN:"Îles Pitcairn",PL:"Pologne",PT:"Portugal",PR:"Porto Rico",QA:"Qatar",RE:"Réunion",RO:"Roumanie",RU:"Russie",RW:"Rwanda",SH:"Sainte-Hélène",KN:"Saint-Christophe-et-Niévès",LC:"Sainte-Lucie",PM:"Saint-Pierre-et-Miquelon",VC:"Saint-Vincent-et-les-Grenadines",WS:"Samoa",SM:"Saint-Marin",ST:"São Tomé-et-Principe",SA:"Arabie Saoudite",SN:"Sénégal",SC:"Seychelles",SL:"Sierra Leone",SG:"Singapour",SK:"Slovaquie",SI:"Slovénie",SB:"Îles Salomon",SO:"Somalie",ZA:"Afrique du Sud",GS:"Géorgie du Sud-et-les Îles Sandwich du Sud",ES:"Espagne",LK:"Sri Lanka",SD:"Soudan",SR:"Suriname",SJ:"Svalbard et Île Jan Mayen",SZ:"Royaume d'Eswatini",SE:"Suède",CH:"Suisse",SY:"Syrie",TW:"Taïwan",TJ:"Tadjikistan",TZ:"République unie de Tanzanie",TH:"Thaïlande",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinité-et-Tobago",TN:"Tunisie",TR:"Turquie",TM:"Turkménistan",TC:"Îles Turques-et-Caïques",TV:"Tuvalu",UG:"Ouganda",UA:"Ukraine",AE:"Émirats Arabes Unis",GB:"Royaume-Uni",US:"États-Unis d'Amérique",UM:"Îles mineures éloignées des États-Unis",UY:"Uruguay",UZ:"Ouzbékistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Îles vierges britanniques",VI:"Îles vierges américaines",WF:"Wallis-et-Futuna",EH:"Sahara occidental",YE:"Yémen",ZM:"Zambie",ZW:"Zimbabwe",AX:"Åland",BQ:"Bonaire, Saint-Eustache et Saba",CW:"Curaçao",GG:"Guernesey",IM:"Île de Man",JE:"Jersey",ME:"Monténégro",BL:"Saint-Barthélemy",MF:"Saint-Martin (partie française)",RS:"Serbie",SX:"Saint-Martin (partie néerlandaise)",SS:"Soudan du Sud",XK:"Kosovo"}},KM={locale:"pl",countries:{AF:"Afganistan",AL:"Albania",DZ:"Algieria",AS:"Samoa Amerykańskie",AD:"Andora",AO:"Angola",AI:"Anguilla",AQ:"Antarktyka",AG:"Antigua i Barbuda",AR:"Argentyna",AM:"Armenia",AW:"Aruba",AU:"Australia",AT:"Austria",AZ:"Azerbejdżan",BS:"Bahamy",BH:"Bahrajn",BD:"Bangladesz",BB:"Barbados",BY:"Białoruś",BE:"Belgia",BZ:"Belize",BJ:"Benin",BM:"Bermudy",BT:"Bhutan",BO:"Boliwia",BA:"Bośnia i Hercegowina",BW:"Botswana",BV:"Wyspa Bouveta",BR:"Brazylia",IO:"Brytyjskie Terytorium Oceanu Indyjskiego",BN:"Brunei",BG:"Bułgaria",BF:"Burkina Faso",BI:"Burundi",KH:"Kambodża",CM:"Kamerun",CA:"Kanada",CV:"Republika Zielonego Przylądka",KY:"Kajmany",CF:"Republika Środkowoafrykańska",TD:"Czad",CL:"Chile",CN:"Chiny",CX:"Wyspa Bożego Narodzenia",CC:"Wyspy Kokosowe",CO:"Kolumbia",KM:"Komory",CG:"Kongo",CD:"Demokratyczna Republika Konga",CK:"Wyspy Cooka",CR:"Kostaryka",CI:"Wybrzeże Kości Słoniowej",HR:"Chorwacja",CU:"Kuba",CY:"Cypr",CZ:"Czechy",DK:"Dania",DJ:"Dżibuti",DM:"Dominika",DO:"Dominikana",EC:"Ekwador",EG:"Egipt",SV:"Salwador",GQ:"Gwinea Równikowa",ER:"Erytrea",EE:"Estonia",ET:"Etiopia",FK:"Falklandy",FO:"Wyspy Owcze",FJ:"Fidżi",FI:"Finlandia",FR:"Francja",GF:"Gujana Francuska",PF:"Polinezja Francuska",TF:"Francuskie Terytoria Południowe i Antarktyczne",GA:"Gabon",GM:"Gambia",GE:"Gruzja",DE:"Niemcy",GH:"Ghana",GI:"Gibraltar",GR:"Grecja",GL:"Grenlandia",GD:"Grenada",GP:"Gwadelupa",GU:"Guam",GT:"Gwatemala",GN:"Gwinea",GW:"Gwinea Bissau",GY:"Gujana",HT:"Haiti",HM:"Wyspy Heard i McDonalda",VA:"Watykan",HN:"Honduras",HK:"Hongkong",HU:"Węgry",IS:"Islandia",IN:"Indie",ID:"Indonezja",IR:"Iran",IQ:"Irak",IE:"Irlandia",IL:"Izrael",IT:"Włochy",JM:"Jamajka",JP:"Japonia",JO:"Jordania",KZ:"Kazachstan",KE:"Kenia",KI:"Kiribati",KP:"Korea Północna",KR:"Korea Południowa",KW:"Kuwejt",KG:"Kirgistan",LA:"Laos",LV:"Łotwa",LB:"Liban",LS:"Lesotho",LR:"Liberia",LY:"Libia",LI:"Liechtenstein",LT:"Litwa",LU:"Luksemburg",MO:"Makau",MK:"Macedonia Północna",MG:"Madagaskar",MW:"Malawi",MY:"Malezja",MV:"Malediwy",ML:"Mali",MT:"Malta",MH:"Wyspy Marshalla",MQ:"Martynika",MR:"Mauretania",MU:"Mauritius",YT:"Majotta",MX:"Meksyk",FM:"Mikronezja",MD:"Mołdawia",MC:"Monako",MN:"Mongolia",MS:"Montserrat",MA:"Maroko",MZ:"Mozambik",MM:"Mjanma",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Holandia",NC:"Nowa Kaledonia",NZ:"Nowa Zelandia",NI:"Nikaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk",MP:"Mariany Północne",NO:"Norwegia",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palestyna",PA:"Panama",PG:"Papua-Nowa Gwinea",PY:"Paragwaj",PE:"Peru",PH:"Filipiny",PN:"Pitcairn",PL:"Polska",PT:"Portugalia",PR:"Portoryko",QA:"Katar",RE:"Reunion",RO:"Rumunia",RU:"Rosja",RW:"Rwanda",SH:"Wyspa Świętej Heleny, Wyspa Wniebowstąpienia i Tristan da Cunha",KN:"Saint Kitts i Nevis",LC:"Saint Lucia",PM:"Saint-Pierre i Miquelon",VC:"Saint Vincent i Grenadyny",WS:"Samoa",SM:"San Marino",ST:"Wyspy Świętego Tomasza i Książęca",SA:"Arabia Saudyjska",SN:"Senegal",SC:"Seszele",SL:"Sierra Leone",SG:"Singapur",SK:"Słowacja",SI:"Słowenia",SB:"Wyspy Salomona",SO:"Somalia",ZA:"Południowa Afryka",GS:"Georgia Południowa i Sandwich Południowy",ES:"Hiszpania",LK:"Sri Lanka",SD:"Sudan",SR:"Surinam",SJ:"Svalbard i Jan Mayen",SZ:"Eswatini",SE:"Szwecja",CH:"Szwajcaria",SY:"Syria",TW:"Tajwan",TJ:"Tadżykistan",TZ:"Tanzania",TH:"Tajlandia",TL:"Timor Wschodni",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trynidad i Tobago",TN:"Tunezja",TR:"Turcja",TM:"Turkmenistan",TC:"Turks i Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ukraina",AE:"Zjednoczone Emiraty Arabskie",GB:"Wielka Brytania",US:"Stany Zjednoczone",UM:"Dalekie Wyspy Mniejsze Stanów Zjednoczonych",UY:"Urugwaj",UZ:"Uzbekistan",VU:"Vanuatu",VE:"Wenezuela",VN:"Wietnam",VG:"Brytyjskie Wyspy Dziewicze",VI:"Wyspy Dziewicze Stanów Zjednoczonych",WF:"Wallis i Futuna",EH:"Sahara Zachodnia",YE:"Jemen",ZM:"Zambia",ZW:"Zimbabwe",AX:"Wyspy Alandzkie",BQ:"Bonaire, Sint Eustatius i Saba",CW:"Curaçao",GG:"Guernsey",IM:"Wyspa Man",JE:"Jersey",ME:"Czarnogóra",BL:"Saint-Barthélemy",MF:"Saint-Martin",RS:"Serbia",SX:"Sint Maarten",SS:"Sudan Południowy",XK:"Kosowo"}},ZM={locale:"pt",countries:{AF:"Afeganistão",ZA:"África do Sul",AL:"Albânia",DE:"Alemanha",AD:"Andorra",AO:"Angola",AI:"Anguila",AQ:"Antártida",AG:"Antígua e Barbuda",SA:"Arábia Saudita",DZ:"Argélia",AR:"Argentina",AM:"Arménia",AW:"Aruba",AU:"Austrália",AT:"Áustria",AZ:"Azerbaijão",BS:"Bahamas",BH:"Bahrein",BD:"Bangladesh",BB:"Barbados",BE:"Bélgica",BZ:"Belize",BJ:"Benim",BM:"Bermudas",BY:"Bielorrússia",BO:"Bolívia",BA:"Bósnia-Herzegovina",BW:"Botsuana",BR:"Brasil",BN:"Brunei",BG:"Bulgária",BF:"Burkina Faso",BI:"Burundi",BT:"Butão",CV:"Cabo Verde",KH:"Camboja",CA:"Canadá",QA:"Qatar",KZ:"Cazaquistão",TD:"Chade",CL:"Chile",CN:"China",CY:"Chipre",VA:"Santa Sé",SG:"Singapura",CO:"Colômbia",KM:"Comores",CG:"República Democrática do Congo",CD:"República Popular do Congo",KP:"Coreia do Norte",KR:"Coreia do Sul",CI:"Costa do Marfim",CR:"Costa Rica",HR:"Croácia",CU:"Cuba",CW:"Curaçao",DK:"Dinamarca",DJ:"Djibouti",DM:"Dominica",EG:"Egito",SV:"El Salvador",AE:"Emirados Árabes Unidos",EC:"Equador",ER:"Eritreia",SK:"Eslováquia",SI:"Eslovénia",ES:"Espanha",US:["Estados Unidos","Estados Unidos da América"],EE:"Estónia",ET:"Etiópia",FJ:"Fiji",PH:"Filipinas",FI:"Finlândia",FR:"França",GA:"Gabão",GM:"Gâmbia",GH:"Gana",GE:"Geórgia",GS:"Geórgia do Sul e Ilhas Sandwich do Sul",GI:"Gibraltar",GD:"Granada",GR:"Grécia",GL:"Gronelândia",GP:"Guadalupe",GU:"Guam",GT:"Guatemala",GG:"Guernsey",GY:"Guiana",GF:"Guiana Francesa",GN:"Guiné",GW:"Guiné-Bissau",GQ:"Guiné Equatorial",HT:"Haiti",NL:"Países Baixos",HN:"Honduras",HK:"Hong Kong",HU:"Hungria",YE:"Iémen",BV:"Ilha Bouvet",CX:"Ilha de Natal",IM:"Ilha de Man",NF:"Ilha Norfolk",AX:"Ilhas Åland",KY:"Ilhas Caimão",CC:"Ilhas Cocos (Keeling)",CK:"Ilhas Cook",UM:"Ilhas Distantes dos EUA",HM:"Ilha Heard e Ilhas McDonald",FO:"Ilhas Faroé",FK:"Ilhas Malvinas",MP:"Ilhas Marianas do Norte",MH:"Ilhas Marshall",PN:"Ilhas Pitcairn",SB:"Ilhas Salomão",TC:"Ilhas Turcas e Caicos",VG:"Ilhas Virgens Britânicas",VI:"Ilhas Virgens Americanas",IN:"Índia",ID:"Indonésia",IR:"Irão",IQ:"Iraque",IE:"Irlanda",IS:"Islândia",IL:"Israel",IT:"Itália",JM:"Jamaica",JP:"Japão",JE:"Jersey",JO:"Jordânia",KW:"Koweit",LA:"Laos",LS:"Lesoto",LV:"Letónia",LB:"Líbano",LR:"Libéria",LY:"Líbia",LI:"Liechtenstein",LT:"Lituânia",LU:"Luxemburgo",MO:"Macau",MK:"Macedónia do Norte",MG:"Madagáscar",MY:"Malásia",MW:"Maláui",MV:"Maldivas",ML:"Mali",MT:"Malta",MA:"Marrocos",MQ:"Martinica",MU:"Maurícia",MR:"Mauritânia",YT:"Mayotte",MX:"México",MM:"Mianmar (Birmânia)",FM:"Micronésia",MZ:"Moçambique",MD:"Moldávia",MC:"Mónaco",MN:"Mongólia",ME:"Montenegro",MS:"Monserrate",NA:"Namíbia",NR:"Nauru",NP:"Nepal",NI:"Nicarágua",NE:"Níger",NG:"Nigéria",NU:"Niue",NO:"Noruega",NC:"Nova Caledónia",NZ:"Nova Zelândia",OM:"Omã",BQ:"Países Baixos Caribenhos",PW:"Palau",PA:"Panamá",PG:"Papua-Nova Guiné",PK:"Paquistão",PY:"Paraguai",PE:"Peru",PF:"Polinésia Francesa",PL:"Polónia",PR:"Porto Rico",PT:"Portugal",KE:"Quénia",KG:"Quirguistão",KI:"Quiribati",GB:"Reino Unido",CF:"República Centro-Africana",DO:"República Dominicana",CM:"Camarões",CZ:"Chéquia",RE:"Reunião",RO:"Roménia",RW:"Ruanda",RU:"Rússia",EH:"Saara Ocidental",PM:"Saint Pierre e Miquelon",WS:"Samoa",AS:"Samoa Americana",SM:"San Marino",SH:"Santa Helena",LC:"Santa Lúcia",BL:"São Bartolomeu",KN:"São Cristóvão e Neves",MF:"São Martinho",ST:"São Tomé e Príncipe",VC:"São Vicente e Granadinas",SN:"Senegal",SL:"Serra Leoa",RS:"Sérvia",SC:"Seychelles",SX:"São Martinho",SY:"Síria",SO:"Somália",LK:"Sri Lanka",SZ:"Essuatíni",SD:"Sudão",SS:"Sudão do Sul",SE:"Suécia",CH:"Suíça",SR:"Suriname",SJ:"Svalbard e Jan Mayen",TH:"Tailândia",TW:"Taiwan",TJ:"Tajiquistão",TZ:"Tanzânia",IO:"Território Britânico do Oceano Índico",TF:"Terras Austrais e Antárticas Francesas",PS:"Territórios palestinos",TL:"Timor-Leste",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trindade e Tobago",TN:"Tunísia",TM:"Turquemenistão",TR:"Turquia",TV:"Tuvalu",UA:"Ucrânia",UG:"Uganda",UY:"Uruguai",UZ:"Uzbequistão",VU:"Vanuatu",VE:"Venezuela",VN:"Vietname",WF:"Wallis e Futuna",ZM:"Zâmbia",ZW:"Zimbábue",XK:"Kosovo"}},qM={locale:"sv",countries:{AD:"Andorra",AE:"Förenade Arabemiraten",AF:"Afghanistan",AG:"Antigua och Barbuda",AI:"Anguilla",AL:"Albanien",AM:"Armenien",AO:"Angola",AQ:"Antarktis",AR:"Argentina",AS:"Amerikanska Samoa",AT:"Österrike",AU:"Australien",AW:"Aruba",AX:"Åland",AZ:"Azerbajdzjan",BA:"Bosnien och Hercegovina",BB:"Barbados",BD:"Bangladesh",BE:"Belgien",BF:"Burkina Faso",BG:"Bulgarien",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BL:"Saint-Barthélemy",BM:"Bermuda",BN:"Brunei",BO:"Bolivia",BQ:"Bonaire, Saint Eustatius och Saba",BR:"Brasilien",BS:"Bahamas",BT:"Bhutan",BV:"Bouvetön",BW:"Botswana",BY:"Belarus",BZ:"Belize",CA:"Kanada",CC:"Kokosöarna",CD:"Demokratiska republiken Kongo",CF:"Centralafrikanska republiken",CG:"Kongo-Brazzaville",CH:"Schweiz",CI:"Elfenbenskusten",CK:"Cooköarna",CL:"Chile",CM:"Kamerun",CN:"Kina",CO:"Colombia",CR:"Costa Rica",CU:"Kuba",CV:"Kap Verde",CW:"Curacao",CX:"Julön",CY:"Cypern",CZ:"Tjeckien",DE:"Tyskland",DJ:"Djibouti",DK:"Danmark",DM:"Dominica",DO:"Dominikanska republiken",DZ:"Algeriet",EC:"Ecuador",EE:"Estland",EG:"Egypten",EH:"Västsahara",ER:"Eritrea",ES:"Spanien",ET:"Etiopien",FI:"Finland",FJ:"Fiji",FK:"Falklandsöarna",FM:"Mikronesiska federationen",FO:"Färöarna",FR:"Frankrike",GA:"Gabon",GB:"Storbritannien",GD:"Grenada",GE:"Georgien",GF:"Franska Guyana",GG:"Guernsey",GH:"Ghana",GI:"Gibraltar",GL:"Grönland",GM:"Gambia",GN:"Guinea",GP:"Guadeloupe",GQ:"Ekvatorialguinea",GR:"Grekland",GS:"Sydgeorgien och Sydsandwichöarna",GT:"Guatemala",GU:"Guam",GW:"Guinea Bissau",GY:"Guyana",HK:"Hongkong",HM:"Heard- och McDonaldsöarna",HN:"Honduras",HR:"Kroatien",HT:"Haiti",HU:"Ungern",ID:"Indonesien",IE:"Irland",IL:"Israel",IM:"Isle of Man",IN:"Indien",IO:"Brittiska territoriet i Indiska Oceanen",IQ:"Irak",IR:"Iran",IS:"Island",IT:"Italien",JE:"Jersey",JM:"Jamaica",JO:"Jordanien",JP:"Japan",KE:"Kenya",KG:"Kirgizistan",KH:"Kambodja",KI:"Kiribati",KM:"Komorerna",KN:"Saint Kitts och Nevis",KP:"Nordkorea",KR:"Sydkorea",KW:"Kuwait",KY:"Caymanöarna",KZ:"Kazakstan",LA:"Laos",LB:"Libanon",LC:"Saint Lucia",LI:"Liechtenstein",LK:"Sri Lanka",LR:"Liberia",LS:"Lesotho",LT:"Litauen",LU:"Luxemburg",LV:"Lettland",LY:"Libyen",MA:"Marocko",MC:"Monaco",MD:"Moldavien",ME:"Montenegro",MF:"Saint Martin (franska delen)",MG:"Madagaskar",MH:"Marshallöarna",MK:"Nordmakedonien",ML:"Mali",MM:"Burma",MN:"Mongoliet",MO:"Macau",MP:"Nordmarianerna",MQ:"Martinique",MR:"Mauretanien",MS:"Montserrat",MT:"Malta",MU:"Mauritius",MV:"Maldiverna",MW:"Malawi",MX:"Mexiko",MY:"Malaysia",MZ:"Moçambique",NA:"Namibia",NC:"Nya Kaledonien",NE:"Niger",NF:"Norfolkön",NG:"Nigeria",NI:"Nicaragua",NL:"Nederländerna",NO:"Norge",NP:"Nepal",NR:"Nauru",NU:"Niue",NZ:"Nya Zeeland",OM:"Oman",PA:"Panama",PE:"Peru",PF:"Franska Polynesien",PG:"Papua Nya Guinea",PH:"Filippinerna",PK:"Pakistan",PL:"Polen",PM:"Saint-Pierre och Miquelon",PN:"Pitcairnöarna",PR:"Puerto Rico",PS:"Palestinska territoriet, ockuperade",PT:"Portugal",PW:"Palau",PY:"Paraguay",QA:"Qatar",RE:"Réunion",RO:"Rumänien",RS:"Serbien",RU:"Ryssland",RW:"Rwanda",SA:"Saudiarabien",SB:"Salomonöarna",SC:"Seychellerna",SD:"Sudan",SE:"Sverige",SG:"Singapore",SH:"Sankta Helena",SI:"Slovenien",SJ:"Svalbard och Jan Mayen",SK:"Slovakien",SL:"Sierra Leone",SM:"San Marino",SN:"Senegal",SO:"Somalia",SR:"Surinam",SS:"Sydsudan",ST:"São Tomé och Príncipe",SV:"El Salvador",SX:"Sint Maarten (nederländska delen)",SY:"Syrien",SZ:"Eswatini",TC:"Turks- och Caicosöarna",TD:"Tchad",TF:"Franska södra territorierna",TG:"Togo",TH:"Thailand",TJ:"Tadzjikistan",TK:"Tokelauöarna",TL:"Östtimor",TM:"Turkmenistan",TN:"Tunisien",TO:"Tonga",TR:"Turkiet",TT:"Trinidad och Tobago",TV:"Tuvalu",TW:"Taiwan",TZ:"Tanzania",UA:"Ukraina",UG:"Uganda",UM:"USA:s yttre öar",US:"USA",UY:"Uruguay",UZ:"Uzbekistan",VA:"Vatikanstaten",VC:"Saint Vincent och Grenadinerna",VE:"Venezuela",VG:"Brittiska Jungfruöarna",VI:"Amerikanska Jungfruöarna",VN:"Vietnam",VU:"Vanuatu",WF:"Wallis- och Futunaöarna",WS:"Samoa",YE:"Jemen",YT:"Mayotte",ZA:"Sydafrika",ZM:"Zambia",ZW:"Zimbabwe",XK:"Kosovo"}},WM={locale:"cs",countries:{AF:"Afghánistán",AX:"Ålandy",AL:"Albánie",DZ:"Alžírsko",AS:"Americká Samoa",VI:"Americké Panenské ostrovy",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktida",AG:"Antigua a Barbuda",AR:"Argentina",AM:"Arménie",AW:"Aruba",AU:"Austrálie",AZ:"Ázerbájdžán",BS:"Bahamy",BH:"Bahrajn",BD:"Bangladéš",BB:"Barbados",BE:"Belgie",BZ:"Belize",BY:"Bělorusko",BJ:"Benin",BM:"Bermudy",BT:"Bhútán",BO:"Bolívie",BQ:"Bonaire, Svatý Eustach a Saba",BA:"Bosna a Hercegovina",BW:"Botswana",BV:"Bouvetův ostrov",BR:"Brazílie",IO:"Britské indickooceánské území",VG:"Britské Panenské ostrovy",BN:"Brunej",BG:"Bulharsko",BF:"Burkina Faso",BI:"Burundi",CK:"Cookovy ostrovy",CW:"Curaçao",TD:"Čad",ME:"Černá Hora",CZ:"Česká republika",CN:"Čína",DK:"Dánsko",CD:"Demokratická republika Kongo",DM:"Dominika",DO:"Dominikánská republika",DJ:"Džibutsko",EG:"Egypt",EC:"Ekvádor",ER:"Eritrea",EE:"Estonsko",ET:"Etiopie",FO:"Faerské ostrovy",FK:"Falklandy (Malvíny)",FJ:"Fidži",PH:"Filipíny",FI:"Finsko",FR:"Francie",GF:"Francouzská Guyana",TF:"Francouzská jižní a antarktická území",PF:"Francouzská Polynésie",GA:"Gabon",GM:"Gambie",GH:"Ghana",GI:"Gibraltar",GD:"Grenada",GL:"Grónsko",GE:"Gruzie",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GG:"Guernsey",GY:"Guyana",HT:"Haiti",HM:"Heardův ostrov a McDonaldovy ostrovy",HN:"Honduras",HK:"Hongkong",CL:"Chile",HR:"Chorvatsko",IN:"Indie",ID:"Indonésie",IQ:"Irák",IR:"Írán",IE:"Irsko",IS:"Island",IT:"Itálie",IL:"Izrael",JM:"Jamajka",JP:"Japonsko",YE:"Jemen",JE:"Jersey",ZA:"Jihoafrická republika",GS:"Jižní Georgie a Jižní Sandwichovy ostrovy",KR:"Jižní Korea",SS:"Jižní Súdán",JO:"Jordánsko",KY:"Kajmanské ostrovy",KH:"Kambodža",CM:"Kamerun",CA:"Kanada",CV:"Kapverdy",QA:"Katar",KZ:"Kazachstán",KE:"Keňa",KI:"Kiribati",CC:"Kokosové ostrovy",CO:"Kolumbie",KM:"Komory",CG:"Kongo",CR:"Kostarika",CU:"Kuba",KW:"Kuvajt",CY:"Kypr",KG:"Kyrgyzstán",LA:"Laos",LS:"Lesotho",LB:"Libanon",LR:"Libérie",LY:"Libye",LI:"Lichtenštejnsko",LT:"Litva",LV:"Lotyšsko",LU:"Lucembursko",MO:"Macao",MG:"Madagaskar",HU:"Maďarsko",MY:"Malajsie",MW:"Malawi",MV:"Maledivy",ML:"Mali",MT:"Malta",IM:"Ostrov Man",MA:"Maroko",MH:"Marshallovy ostrovy",MQ:"Martinik",MU:"Mauricius",MR:"Mauritánie",YT:"Mayotte",UM:"Menší odlehlé ostrovy USA",MX:"Mexiko",FM:"Mikronésie",MD:"Moldavsko",MC:"Monako",MN:"Mongolsko",MS:"Montserrat",MZ:"Mosambik",MM:"Myanmar",NA:"Namibie",NR:"Nauru",DE:"Německo",NP:"Nepál",NE:"Niger",NG:"Nigérie",NI:"Nikaragua",NU:"Niue",NL:"Nizozemsko",NF:"Norfolk",NO:"Norsko",NC:"Nová Kaledonie",NZ:"Nový Zéland",OM:"Omán",PK:"Pákistán",PW:"Palau",PS:"Palestinská autonomie",PA:"Panama",PG:"Papua-Nová Guinea",PY:"Paraguay",PE:"Peru",PN:"Pitcairnovy ostrovy",CI:"Pobřeží slonoviny",PL:"Polsko",PR:"Portoriko",PT:"Portugalsko",AT:"Rakousko",RE:"Réunion",GQ:"Rovníková Guinea",RO:"Rumunsko",RU:"Rusko",RW:"Rwanda",GR:"Řecko",PM:"Saint-Pierre a Miquelon",SV:"Salvador",WS:"Samoa",SM:"San Marino",SA:"Saúdská Arábie",SN:"Senegal",KP:"Severní Korea",MK:"Severní Makedonie",MP:"Severní Mariany",SC:"Seychely",SL:"Sierra Leone",SG:"Singapur",SK:"Slovensko",SI:"Slovinsko",SO:"Somálsko",AE:"Spojené arabské emiráty",GB:"Spojené království",US:"Spojené státy americké",RS:"Srbsko",CF:"Středoafrická republika",SD:"Súdán",SR:"Surinam",SH:"Svatá Helena, Ascension a Tristan da Cunha",LC:"Svatá Lucie",BL:"Svatý Bartoloměj",KN:"Svatý Kryštof a Nevis",MF:"Svatý Martin (francouzská část)",SX:"Svatý Martin (nizozemská část)",ST:"Svatý Tomáš a Princův ostrov",VC:"Svatý Vincenc a Grenadiny",SZ:"Svazijsko",SY:"Sýrie",SB:"Šalamounovy ostrovy",ES:"Španělsko",SJ:"Špicberky a Jan Mayen",LK:"Šrí Lanka",SE:"Švédsko",CH:"Švýcarsko",TJ:"Tádžikistán",TZ:"Tanzanie",TH:"Thajsko",TW:"Tchaj-wan",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad a Tobago",TN:"Tunisko",TR:"Turecko",TM:"Turkmenistán",TC:"Turks a Caicos",TV:"Tuvalu",UG:"Uganda",UA:"Ukrajina",UY:"Uruguay",UZ:"Uzbekistán",CX:"Vánoční ostrov",VU:"Vanuatu",VA:"Vatikán",VE:"Venezuela",VN:"Vietnam",TL:"Východní Timor",WF:"Wallis a Futuna",ZM:"Zambie",EH:"Západní Sahara",ZW:"Zimbabwe",XK:"Kosovo"}},JM={locale:"it",countries:{AD:"Andorra",AE:"Emirati Arabi Uniti",AF:"Afghanistan",AG:"Antigua e Barbuda",AI:"Anguilla",AL:"Albania",AM:"Armenia",AO:"Angola",AQ:"Antartide",AR:"Argentina",AS:"Samoa Americane",AT:"Austria",AU:"Australia",AW:"Aruba",AX:"Isole Åland",AZ:"Azerbaigian",BA:"Bosnia ed Erzegovina",BB:"Barbados",BD:"Bangladesh",BE:"Belgio",BF:"Burkina Faso",BG:"Bulgaria",BH:"Bahrain",BI:"Burundi",BJ:"Benin",BL:"Saint-Barthélemy",BM:"Bermuda",BN:"Brunei",BO:"Bolivia",BQ:"Isole BES",BR:"Brasile",BS:"Bahamas",BT:"Bhutan",BV:"Isola Bouvet",BW:"Botswana",BY:"Bielorussia",BZ:"Belize",CA:"Canada",CC:"Isole Cocos e Keeling",CD:"Repubblica Democratica del Congo",CF:"Repubblica Centrafricana",CG:"Repubblica del Congo",CH:"Svizzera",CI:"Costa d'Avorio",CK:"Isole Cook",CL:"Cile",CM:"Camerun",CN:"Cina",CO:"Colombia",CR:"Costa Rica",CU:"Cuba",CV:"Capo Verde",CW:"Curaçao",CX:"Isola del Natale",CY:"Cipro",CZ:"Repubblica Ceca",DE:"Germania",DJ:"Gibuti",DK:"Danimarca",DM:"Dominica",DO:"Repubblica Dominicana",DZ:"Algeria",EC:"Ecuador",EE:"Estonia",EG:"Egitto",EH:"Sahara Occidentale",ER:"Eritrea",ES:"Spagna",ET:"Etiopia",FI:"Finlandia",FJ:"Figi",FK:"Isole Falkland",FM:"Stati Federati di Micronesia",FO:"Isole Fær Øer",FR:"Francia",GA:"Gabon",GB:"Regno Unito",GD:"Grenada",GE:"Georgia",GF:"Guyana Francese",GG:"Guernsey",GH:"Ghana",GI:"Gibilterra",GL:"Groenlandia",GM:"Gambia",GN:"Guinea",GP:"Guadalupa",GQ:"Guinea Equatoriale",GR:"Grecia",GS:"Georgia del Sud e isole Sandwich meridionali",GT:"Guatemala",GU:"Guam",GW:"Guinea-Bissau",GY:"Guyana",HK:"Hong Kong",HM:"Isole Heard e McDonald",HN:"Honduras",HR:"Croazia",HT:"Haiti",HU:"Ungheria",ID:"Indonesia",IE:"Irlanda",IL:"Israele",IM:"Isola di Man",IN:"India",IO:"Territori Britannici dell'Oceano Indiano",IQ:"Iraq",IR:"Iran",IS:"Islanda",IT:"Italia",JE:"Jersey",JM:"Giamaica",JO:"Giordania",JP:"Giappone",KE:"Kenya",KG:"Kirghizistan",KH:"Cambogia",KI:"Kiribati",KM:"Comore",KN:"Saint Kitts e Nevis",KP:"Corea del Nord",KR:"Corea del Sud",KW:"Kuwait",KY:"Isole Cayman",KZ:"Kazakistan",LA:"Laos",LB:"Libano",LC:"Santa Lucia",LI:"Liechtenstein",LK:"Sri Lanka",LR:"Liberia",LS:"Lesotho",LT:"Lituania",LU:"Lussemburgo",LV:"Lettonia",LY:"Libia",MA:"Marocco",MC:"Monaco",MD:"Moldavia",ME:"Montenegro",MF:"Saint-Martin",MG:"Madagascar",MH:"Isole Marshall",MK:"Macedonia del Nord",ML:"Mali",MM:"Birmania Myanmar",MN:"Mongolia",MO:"Macao",MP:"Isole Marianne Settentrionali",MQ:"Martinica",MR:"Mauritania",MS:"Montserrat",MT:"Malta",MU:"Mauritius",MV:"Maldive",MW:"Malawi",MX:"Messico",MY:"Malesia",MZ:"Mozambico",NA:"Namibia",NC:"Nuova Caledonia",NE:"Niger",NF:"Isola Norfolk",NG:"Nigeria",NI:"Nicaragua",NL:"Paesi Bassi",NO:"Norvegia",NP:"Nepal",NR:"Nauru",NU:"Niue",NZ:"Nuova Zelanda",OM:"Oman",PA:"Panamá",PE:"Perù",PF:"Polinesia Francese",PG:"Papua Nuova Guinea",PH:"Filippine",PK:"Pakistan",PL:"Polonia",PM:"Saint Pierre e Miquelon",PN:"Isole Pitcairn",PR:"Porto Rico",PS:"Stato di Palestina",PT:"Portogallo",PW:"Palau",PY:"Paraguay",QA:"Qatar",RE:"Réunion",RO:"Romania",RS:"Serbia",RU:"Russia",RW:"Ruanda",SA:"Arabia Saudita",SB:"Isole Salomone",SC:"Seychelles",SD:"Sudan",SE:"Svezia",SG:"Singapore",SH:"Sant'Elena, Isola di Ascensione e Tristan da Cunha",SI:"Slovenia",SJ:"Svalbard e Jan Mayen",SK:"Slovacchia",SL:"Sierra Leone",SM:"San Marino",SN:"Senegal",SO:"Somalia",SR:"Suriname",SS:"Sudan del Sud",ST:"São Tomé e Príncipe",SV:"El Salvador",SX:"Sint Maarten",SY:"Siria",SZ:"Eswatini",TC:"Isole Turks e Caicos",TD:"Ciad",TF:"Territori Francesi del Sud",TG:"Togo",TH:"Thailandia",TJ:"Tagikistan",TK:"Tokelau",TL:"Timor Est",TM:"Turkmenistan",TN:"Tunisia",TO:"Tonga",TR:"Turchia",TT:"Trinidad e Tobago",TV:"Tuvalu",TW:["Repubblica di Cina","Taiwan"],TZ:"Tanzania",UA:"Ucraina",UG:"Uganda",UM:"Isole minori esterne degli Stati Uniti",US:"Stati Uniti d'America",UY:"Uruguay",UZ:"Uzbekistan",VA:"Città del Vaticano",VC:"Saint Vincent e Grenadine",VE:"Venezuela",VG:"Isole Vergini Britanniche",VI:"Isole Vergini Americane",VN:"Vietnam",VU:"Vanuatu",WF:"Wallis e Futuna",WS:"Samoa",YE:"Yemen",YT:"Mayotte",ZA:"Sudafrica",ZM:"Zambia",ZW:"Zimbabwe",XK:"Kosovo"}},QM={locale:"nl",countries:{AF:["Islamitisch Emiraat Afghanistan","Afghanistan"],AL:["Republiek Albanië","Albanië"],DZ:["Democratische Volksrepubliek Algerije","Algerije"],AS:"Amerikaans-Samoa",AD:["Vorstendom Andorra","Andorra"],AO:["Republiek Angola","Angola"],AI:"Anguilla",AQ:"Antarctica",AG:"Antigua en Barbuda",AR:["Argentijnse Republiek","Argentinië"],AM:["Republiek Armenië","Armenië"],AW:"Aruba",AU:["Gemenebest van Australië","Australië"],AT:["Republiek Oostenrijk","Oostenrijk"],AZ:["Republiek Azerbeidzjan","Azerbeidzjan"],BS:["Gemenebest van de Bahama's","Bahama's"],BH:["Koninkrijk Bahrein","Bahrein"],BD:["Volksrepubliek Bangladesh","Bangladesh"],BB:["Barbados","Barbados"],BY:["Republiek Wit-Rusland","Wit-Rusland"],BE:["Koninkrijk België","België"],BZ:["Belize","Belize"],BJ:["Republiek Benin","Benin"],BM:"Bermuda",BT:["Koninkrijk Bhutan","Bhutan"],BO:["Plurinationale Staat Bolivia","Bolivië"],BA:["Bosnië en Herzegovina","Bosnië-Herzegovina"],BW:["Republiek Botswana","Botswana"],BV:"Bouvet Eiland",BR:["Federale Republiek Brazilië","Brazilië"],IO:"Brits Indische oceaan",BN:["Brunei Darussalam","Brunei"],BG:["Republiek Bulgarije","Bulgarije"],BF:["Burkina Faso","Burkina Faso"],BI:["Republiek Burundi","Burundi"],KH:["Koninkrijk Cambodja","Cambodja"],CM:["Republiek Kameroen","Kameroen"],CA:"Canada",CV:["Republiek Kaapverdië","Kaapverdië"],KY:"Kaaimaneilanden",CF:"Centraal-Afrikaanse Republiek",TD:["Republiek Tsjaad","Tsjaad"],CL:["Republiek Chili","Chili"],CN:["Volksrepubliek China","China"],CX:["Christmaseiland","Kersteiland"],CC:"Cocoseilanden",CO:["Republiek Colombia","Colombia"],KM:["Unie der Comoren","Comoren"],CG:["Republiek Congo","Congo-Brazzaville"],CD:["Democratische Republiek Congo","Congo-Kinshasa"],CK:"Cookeilanden",CR:["Republiek Costa Rica","Costa Rica"],CI:["Republiek Ivoorkust","Ivoorkust"],HR:["Republiek Kroatië","Kroatië"],CU:["Republiek Cuba","Cuba"],CY:["Republiek Cyprus","Cyprus"],CZ:["Tsjechische Republiek","Tsjechië"],DK:["Koninkrijk Denemarken","Denemarken"],DJ:["Republiek Djibouti","Djibouti"],DM:["Gemenebest Dominica","Dominica"],DO:"Dominicaanse Republiek",EC:["Republiek Ecuador","Ecuador"],EG:["Arabische Republiek Egypte","Egypte"],SV:["Republiek El Salvador","El Salvador"],GQ:["Republiek Equatoriaal-Guinea","Equatoriaal-Guinea"],ER:["Staat Eritrea","Eritrea"],EE:["Republiek Estland","Estland"],ET:["Federale Democratische Republiek Ethiopië","Ethiopië"],FK:"Falklandeilanden",FO:"Faeröer",FJ:["Republiek Fiji","Fiji"],FI:["Republiek Finland","Finland"],FR:["Franse Republiek","Frankrijk"],GF:"Frans-Guyana",PF:"Frans-Polynesië",TF:"Franse Zuidelijke Gebieden",GA:["Republiek Gabon","Gabon"],GM:["Republiek Gambia","Gambia"],GE:["Georgië","Georgië"],DE:["Bondsrepubliek Duitsland","Duitsland"],GH:["Republiek Ghana","Ghana"],GI:"Gibraltar",GR:["Helleense Republiek","Griekenland"],GL:"Groenland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:["Republiek Guatemala","Guatemala"],GN:["Republiek Guinee","Guinea"],GW:["Republiek Guinee-Bissau","Guinee-Bissau"],GY:["Coöperatieve Republiek Guyana","Guyana"],HT:["Republiek Haïti","Haïti"],HM:"Heard en McDonaldeilanden",VA:["Vaticaanstad","Vaticaanstad"],HN:["Republiek Honduras","Honduras"],HK:"Hong Kong",HU:["Hongaarse Republiek","Hongarije"],IS:["IJslandse Republiek","IJsland"],IN:["Republiek India","India"],ID:["Republiek Indonesië","Indonesië"],IR:["Islamitische Republiek Iran","Iran"],IQ:["Republiek Irak","Irak"],IE:["Ierse Republiek","Ierland"],IL:["Staat Israël","Israël"],IT:["Italiaanse Republiek","Italië"],JM:"Jamaica",JP:"Japan",JO:["Hasjemitisch Koninkrijk Jordanië","Jordanië"],KZ:["Republiek Kazachstan","Kazachstan"],KE:["Republiek Kenia","Kenia"],KI:["Republiek Kiribati","Kiribati"],KP:["Democratische Volksrepubliek Korea","Noord-Korea"],KR:["Republiek Korea","Zuid-Korea"],KW:["Staat Koeweit","Koeweit"],KG:["Kirgizische Republiek","Kirgizië"],LA:["Lao Democratische Volksrepubliek","Laos"],LV:["Republiek Letland","Letland"],LB:["Libanese Republiek","Libanon"],LS:["Koninkrijk Lesotho","Lesotho"],LR:["Republiek Liberia","Liberia"],LY:["Staat Libië","Libië"],LI:["Vorstendom Liechtenstein","Liechtenstein"],LT:["Republiek Litouwen","Litouwen"],LU:["Groothertogdom Luxemburg","Luxemburg"],MO:"Macao",MG:["Republiek Madagaskar","Madagaskar"],MW:["Republiek Malawi","Malawi"],MY:["Maleisië","Maleisië"],MV:["Republiek der Maldiven","Maldiven"],ML:["Republiek Mali","Mali"],MT:["Republiek Malta","Malta"],MH:["Republiek der Marshalleilanden","Marshalleilanden"],MQ:"Martinique",MR:["Islamitische Republiek Mauritanië","Mauritanië"],MU:["Republiek Mauritius","Mauritius"],YT:"Mayotte",MX:["Verenigde Mexicaanse Staten","Mexico"],FM:["Federale Staten van Micronesië","Micronesië"],MD:["Republiek Moldavië","Moldavië"],MC:["Vorstendom Monaco","Monaco"],MN:["Mongolië","Mongolië"],MS:"Montserrat",MA:["Koninkrijk Marokko","Marokko"],MZ:["Republiek Mozambique","Mozambique"],MM:["Republiek van de Unie van Myanmar","Myanmar"],NA:["Republiek Namibië","Namibië"],NR:["Republiek Nauru","Nauru"],NP:["Federale Democratische Republiek Nepal","Nepal"],NL:["Koninkrijk der Nederlanden","Nederland"],NC:["Nieuw-Caledonië","Nieuw-Caledonië"],NZ:["Nieuw-Zeeland","Nieuw-Zeeland"],NI:["Republiek Nicaragua","Nicaragua"],NE:["Republiek Niger","Niger"],NG:["Federale Republiek Nigeria","Nigeria"],NU:"Niue",NF:"Norfolk",MP:"Noordelijke Marianen",MK:["Republiek Noord-Macedonië","Noord-Macedonië"],NO:["Koninkrijk Noorwegen","Noorwegen"],OM:["Sultanaat Oman","Oman"],PK:["Islamitische Republiek Pakistan","Pakistan"],PW:["Republiek Palau","Palau"],PS:["Staat Palestina","Palestina"],PA:["Republiek Panama","Panama"],PG:["Onafhankelijke Staat Papoea-Nieuw-Guinea","Papoea-Nieuw-Guinea"],PY:["Republiek Paraguay","Paraguay"],PE:["Republiek Peru","Peru"],PH:["Republiek der Filipijnen","Filipijnen"],PN:"Pitcairn",PL:["Republiek Polen","Polen"],PT:["Portugese Republiek","Portugal"],PR:"Puerto Rico",QA:["Staat Qatar","Qatar"],RE:"Réunion",RO:["Roemeense Republiek","Roemenië"],RU:["Russische Federatie","Rusland"],RW:["Republiek Rwanda","Rwanda"],SH:"Sint-Helena",KN:["Federatie Saint Kitts en Nevis","Saint Kitts en Nevis"],LC:["Saint Lucia","Saint Lucia"],PM:["Saint-Pierre en Miquelon","Saint-Pierre en Miquelon"],VC:["Saint Vincent en de Grenadines","Saint Vincent en de Grenadines"],WS:["Onafhankelijke Staat Samoa","Samoa"],SM:["Republiek San Marino","San Marino"],ST:["Democratische Republiek São Tomé en Principe","São Tomé en Principe"],SA:["Koninkrijk Saudi-Arabië","Saudi-Arabië"],SN:["Republiek Senegal","Senegal"],SC:["Republiek der Seychellen","Seychellen"],SL:["Republiek Sierra Leone","Sierra Leone"],SG:["Republiek Singapore","Singapore"],SK:["Slowaakse Republiek","Slowakije"],SI:["Republiek Slovenië","Slovenië"],SB:["Salomonseilanden","Salomonseilanden"],SO:["Federale Republiek Somalië","Somalië"],ZA:["Republiek Zuid-Afrika","Zuid-Afrika"],GS:"Zuid-Georgia en de Zuidelijke Sandwicheilanden",ES:["Koninkrijk Spanje","Spanje"],LK:["Democratische Socialistische Republiek Sri Lanka","Sri Lanka"],SD:["Republiek Soedan","Soedan"],SR:["Republiek Suriname","Suriname"],SJ:"Spitsbergen en Jan Mayen",SZ:["Koninkrijk Eswatini","Eswatini","Swaziland"],SE:["Koninkrijk Zweden","Zweden"],CH:["Zwitserse Bondsstaat","Zwitserland"],SY:["Syrische Arabische Republiek","Syrië"],TW:["Taiwan","Taiwan"],TJ:["Republiek Tadzjikistan","Tadzjikistan"],TZ:["Verenigde Republiek Tanzania","Tanzania"],TH:["Koninkrijk Thailand","Thailand"],TL:["Democratische Republiek Timor-Leste","Timor Leste"],TG:["Togolese Republiek","Togo"],TK:"Tokelau",TO:["Koninkrijk Tonga","Tonga"],TT:["Republiek Trinidad en Tobago","Trinidad en Tobago"],TN:["Republiek Tunesië","Tunesië"],TR:["Republiek Turkije","Turkije"],TM:["Turkmeense Republiek","Turkmenistan"],TC:"Turks- en Caicoseilanden",TV:["Tuvalu","Tuvalu"],UG:["Republiek Oeganda","Oeganda"],UA:["Oekraïne","Oekraïne"],AE:["Verenigde Arabische Emiraten","Verenigde Arabische Emiraten"],GB:["Verenigd Koninkrijk van Groot-Brittannië en Noord-Ierland","Verenigd Koninkrijk"],US:["Verenigde Staten van Amerika","Verenigde Staten"],UM:"Amerikaanse Kleinere Afgelegen Eilanden",UY:["Oostelijke Republiek Uruguay","Uruguay"],UZ:["Republiek Oezbekistan","Oezbekistan"],VU:["Republiek Vanuatu","Vanuatu"],VE:["Bolivariaanse Republiek Venezuela","Venezuela"],VN:["Socialistische Republiek Vietnam","Vietnam"],VG:"Britse Maagdeneilanden",VI:"Amerikaanse Maagdeneilanden",WF:"Wallis en Futuna",EH:"Westelijke Sahara",YE:["Republiek Jemen","Jemen"],ZM:["Republiek Zambia","Zambia"],ZW:["Republiek Zimbabwe","Zimbabwe"],AX:"Åland",BQ:"Bonaire, Sint Eustatius en Saba",CW:"Curaçao",GG:"Guernsey",IM:"Man Eiland",JE:"Jersey",ME:["Montenegro","Montenegro"],BL:"Saint Barthélemy",MF:["Sint-Maarten (Frans deel)","Sint-Maarten (Franse Antillen)","Collectiviteit van Sint-Maarten"],RS:["Republiek Servië","Servië"],SX:["Sint Maarten","Sint-Maarten","Sint Maarten (Nederlands deel)","Land Sint Maarten"],SS:["Republiek Zuid-Soedan","Zuid-Soedan"],XK:["Republiek Kosovo","Kosovo"]}},YM={locale:"da",countries:{AF:"Afghanistan",AL:"Albanien",DZ:"Algeriet",AS:"Amerikansk Samoa",AD:"Andorra",AO:"Angola",AI:"Anguilla",AQ:"Antarktis",AG:"Antigua og Barbuda",AR:"Argentina",AM:"Armenien",AW:"Aruba",AU:"Australien",AT:"Østrig",AZ:"Aserbajdsjan",BS:"Bahamas",BH:"Bahrain",BD:"Bangladesh",BB:"Barbados",BY:"Hviderusland",BE:"Belgien",BZ:"Belize",BJ:"Benin",BM:"Bermuda",BT:"Bhutan",BO:"Bolivia",BA:"Bosnien-Hercegovina",BW:"Botswana",BV:"Bouvet Island",BR:"Brasilien",IO:"British Indian Ocean Territory",BN:"Brunei Darussalam",BG:"Bulgarien",BF:"Burkina Faso",BI:"Burundi",KH:"Cambodja",CM:"Cameroun",CA:"Canada",CV:"Kap Verde",KY:"Caymanøerne",CF:"Den Centralafrikanske Republik",TD:"Tchad",CL:"Chile",CN:"Kina",CX:"Juløen",CC:"Cocosøerne",CO:"Colombia",KM:"Comorerne",CG:"Congo",CD:"Demokratiske Republik Congo",CK:"Cookøerne",CR:"Costa Rica",CI:"Elfenbenskysten",HR:"Kroatien",CU:"Cuba",CY:"Cypern",CZ:"Tjekkiet",DK:"Danmark",DJ:"Djibouti",DM:"Dominica",DO:"Dominikanske Republik",EC:"Ecuador",EG:"Egypten",SV:"El Salvador",GQ:"Ækvatorialguinea",ER:"Eritrea",EE:"Estland",ET:"Etiopien",FK:"Falklandsøerne",FO:"Færøerne",FJ:"Fiji",FI:"Finland",FR:"Frankrig",GF:"Fransk Guiana",PF:"Fransk Polynesien",TF:"Franske Sydterritorier",GA:"Gabon",GM:"Gambia",GE:"Georgien",DE:"Tyskland",GH:"Ghana",GI:"Gibraltar",GR:"Grækenland",GL:"Grønland",GD:"Grenada",GP:"Guadeloupe",GU:"Guam",GT:"Guatemala",GN:"Guinea",GW:"Guinea-Bissau",GY:"Guyana",HT:"Haiti",HM:"Heard-øen og McDonald-øerne",VA:"Vatikanstaten",HN:"Honduras",HK:"Hong Kong",HU:"Ungarn",IS:"Island",IN:"Indien",ID:"Indonesien",IR:"Iran",IQ:"Irak",IE:"Irland",IL:"Israel",IT:"Italien",JM:"Jamaica",JP:"Japan",JO:"Jordan",KZ:"Kazakhstan",KE:"Kenya",KI:"Kiribati",KP:"Nordkorea",KR:"Sydkorea",KW:"Kuwait",KG:"Kirgisistan",LA:"Laos",LV:"Letland",LB:"Libanon",LS:"Lesotho",LR:"Liberia",LY:"Libyen",LI:"Liechtenstein",LT:"Litauen",LU:"Luxembourg",MO:"Macao",MK:"Nordmakedonien",MG:"Madagaskar",MW:"Malawi",MY:"Malaysia",MV:"Maldiverne",ML:"Mali",MT:"Malta",MH:"Marshalløerne",MQ:"Martinique",MR:"Mauretanien",MU:"Mauritius",YT:"Mayotte",MX:"Mexico",FM:"Mikronesien",MD:"Moldova",MC:"Monaco",MN:"Mongoliet",MS:"Montserrat",MA:"Marokko",MZ:"Mozambique",MM:"Myanmar (Burma)",NA:"Namibia",NR:"Nauru",NP:"Nepal",NL:"Holland",NC:"Ny Kaledonien",NZ:"New Zealand",NI:"Nicaragua",NE:"Niger",NG:"Nigeria",NU:"Niue",NF:"Norfolk Island",MP:"Nordmarianerne",NO:"Norge",OM:"Oman",PK:"Pakistan",PW:"Palau",PS:"Palæstina",PA:"Panama",PG:"Papua Ny Guinea",PY:"Paraguay",PE:"Peru",PH:"Filippinerne",PN:"Pitcairn",PL:"Polen",PT:"Portugal",PR:"Puerto Rico",QA:"Qatar",RE:"Réunion",RO:"Rumænien",RU:"Rusland",RW:"Rwanda",SH:"Sankt Helena",KN:"Saint Kitts og Nevis",LC:"Saint Lucia",PM:"Saint-Pierre og Miquelon",VC:"Saint Vincent og Grenadinerne",WS:"Samoa",SM:"San Marino",ST:"São Tomé og Príncipe",SA:"Saudi-Arabien",SN:"Senegal",SC:"Seychellerne",SL:"Sierra Leone",SG:"Singapore",SK:"Slovakiet",SI:"Slovenien",SB:"Salomonøerne",SO:"Somalia",ZA:"Sydafrika",GS:"South Georgia og South Sandwich Islands",ES:"Spanien",LK:"Sri Lanka",SD:"Sudan",SR:"Surinam",SJ:"Norge Svalbard og Jan Mayen",SZ:"Eswatini",SE:"Sverige",CH:"Schweiz",SY:"Syrien",TW:"Republikken Kina Taiwan",TJ:"Tadsjikistan",TZ:"Tanzania",TH:"Thailand",TL:"Østtimor",TG:"Togo",TK:"Tokelau",TO:"Tonga",TT:"Trinidad og Tobago",TN:"Tunesien",TR:"Tyrkiet",TM:"Turkmenistan",TC:"Turks- og Caicosøerne",TV:"Tuvalu",UG:"Uganda",UA:"Ukraine",AE:"Forenede Arabiske Emirater",GB:"Storbritannien",US:"USA",UM:"USA's ydre småøer",UY:"Uruguay",UZ:"Usbekistan",VU:"Vanuatu",VE:"Venezuela",VN:"Vietnam",VG:"Britiske Jomfruøer",VI:"Amerikanske Jomfruøer",WF:"Wallis og Futuna",EH:"Vestsahara",YE:"Yemen",ZM:"Zambia",ZW:"Zimbabwe",AX:"Ålandsøerne",BQ:"Nederlandske Antiller",CW:"Curaçao",GG:"Guernsey",IM:"Isle of Man",JE:"Jersey",ME:"Montenegro",BL:"Saint-Barthélemy",MF:"Saint Martin (fransk side)",RS:"Serbien",SX:"Saint Martin (hollandsk side)",SS:"Sydsudan",XK:"Kosovo"}},XM={locale:"uk",countries:{AU:"Австралія",AT:"Австрія",AZ:"Азербайджан",AX:"Аландські Острови",AL:"Албанія",DZ:"Алжир",AS:"Американське Самоа",AI:"Ангілья",AO:"Ангола",AD:"Андорра",AQ:"Антарктика",AG:"Антигуа і Барбуда",MO:"Макао",AR:"Аргентина",AM:"Вірменія",AW:"Аруба",AF:"Афганістан",BS:"Багамські Острови",BD:"Бангладеш",BB:"Барбадос",BH:"Бахрейн",BZ:"Беліз",BE:"Бельгія",BJ:"Бенін",BM:"Бермудські Острови",BY:"Білорусь",BG:"Болгарія",BO:"Болівія",BA:"Боснія і Герцеговина",BW:"Ботсвана",BR:"Бразилія",IO:"Британська Територія в Індійському Океані",VG:"Британські Віргінські Острови",BN:"Бруней-Даруссалам",BF:"Буркіна-Фасо",BI:"Бурунді",BT:"Бутан",VU:"Вануату",VA:"Ватикан",GB:"Великобританія",VE:"Венесуела",VI:"Віргінські Острови (США)",WF:"Волліс і Футуна",VN:"В'єтнам",UM:"Зовнішні Віддалені Острови (США)",GA:"Габон",HT:"Гаїті",GY:"Гаяна",GM:"Гамбія",GH:"Гана",GP:"Гваделупа",GT:"Гватемала",GF:"Гвіана",GN:"Гвінея",GW:"Гвінея-Бісау",GG:"Гернсі",GI:"Гібралтар",HN:"Гондурас",HK:"Гонконг",GD:"Гренада",GR:"Греція",GE:"Грузія",GU:"Гуам",GL:"Гренландія",DK:"Данія",JE:"Джерсі",DJ:"Джибуті",DM:"Домініка",DO:"Домініканська Республіка",CD:"Демократична Республіка Конго",EC:"Еквадор",GQ:"Екваторіальна Гвінея",ER:"Еритрея",EE:"Естонія",ET:"Ефіопія",EG:"Єгипет",YE:"Ємен",ZM:"Замбія",ZW:"Зімбабве",IL:"Ізраїль",IN:"Індія",ID:"Індонезія",IQ:"Ірак",IR:"Іран",IE:"Ірландія",IS:"Ісландія",ES:"Іспанія",IT:"Італія",JO:"Йорданія",CV:"Кабо-Верде",KZ:"Казахстан",KY:"Кайманові Острови",KH:"Камбоджа",CM:"Камерун",CA:"Канада",BQ:"Карибські Нідерланди",QA:"Катар",KE:"Кенія",CY:"Кіпр",KI:"Кірибаті",KG:"Киргизстан",TW:"Тайвань, Провінція Китаю",KP:"Корейська Народно-Демократична Республіка",CN:"Китай",CC:"Кокосові Острови",CO:"Колумбія",KM:"Комори",XK:"Косово",CR:"Коста-Рика",CI:"Кот-Д'Івуар",CU:"Куба",KW:"Кувейт",CW:"Кюрасао",LA:"Лаос",LV:"Латвія",LS:"Лесото",LR:"Ліберія",LB:"Ліван",LY:"Лівія",LT:"Литва",LI:"Ліхтенштейн",LU:"Люксембург",MU:"Маврикій",MR:"Мавританія",MG:"Мадагаскар",YT:"Майотта",MW:"Малаві",MY:"Малайзія",ML:"Малі",MV:"Мальдіви",MT:"Мальта",MA:"Марокко",MQ:"Мартиніка",MH:"Маршаллові Острови",MX:"Мексика",FM:"Мікронезія",MZ:"Мозамбік",MD:"Молдова",MC:"Монако",MN:"Монголія",MS:"Монтсеррат",MM:"М'янма",NA:"Намібія",NR:"Науру",NP:"Непал",NE:"Нігер",NG:"Нігерія",NL:"Нідерланди",NI:"Нікарагуа",DE:"Німеччина",NU:"Ніуе",NZ:"Нова Зеландія",NC:"Нова Каледонія",NO:"Норвегія",AE:"Об'єднані Арабські Емірати",OM:"Оман",BV:"Острів Буве",HM:"Острів Герд і Острови Макдоналд",IM:"Острів Мен",NF:"Острів Норфолк",CX:"Острів Різдва",CK:"Острови Кука",SH:"Острів Святої Єлени",TC:"Острови Теркс і Кайкос",PK:"Пакистан",PW:"Палау",PS:"Палестина",PA:"Панама",PG:"Папуа-Нова Гвінея",ZA:"Південна Африка",PY:"Парагвай",PE:"Перу",GS:"Південна Джорджія та Південні Сандвічеві Острови",KR:"Республіка Корея",SS:"Південний Судан",MK:"Північна Македонія",MP:"Північні Маріанські Острови",PN:"Піткерн",PL:"Польща",PT:"Португалія",PR:"Пуерто-Рико",CG:"Конго",RE:"Реюньйон",RU:"Росія",RW:"Руанда",RO:"Румунія",EH:"Західна Сахара",SV:"Сальвадор",WS:"Самоа",SM:"Сан-Марино",ST:"Сан-Томе і Принсіпі",SA:"Саудівська Аравія",SZ:"Есватіні",SJ:"Острови Шпіцберген та Ян-Маєн",SC:"Сейшельські Острови",BL:"Сен-Бартелемі",MF:"Сен-Мартен",PM:"Сен-П'єр і Мікелон",SN:"Сенегал",VC:"Сент-Вінсент і Гренадіни",KN:"Сент-Кітс і Невіс",LC:"Сент-Люсія",RS:"Сербія",SG:"Сингапур",SX:"Сінт-Мартен",SY:"Сирія",SK:"Словаччина",SI:"Словенія",SB:"Соломонові Острови",SO:"Сомалі",SD:"Судан",SR:"Суринам",TL:"Тимор-Лешті",US:"США",SL:"Сьєрра-Леоне",TJ:"Таджикистан",TH:"Таїланд",TZ:"Танзанія",TG:"Того",TK:"Токелау",TO:"Тонга",TT:"Тринідад і Тобаго",TV:"Тувалу",TN:"Туніс",TM:"Туркменистан",TR:"Туреччина",UG:"Уганда",HU:"Угорщина",UZ:"Узбекистан",UA:"Україна",UY:"Уругвай",FO:"Фарерські Острови",FJ:"Фіджі",PH:"Філіппіни",FI:"Фінляндія",FK:"Фолклендські Острови",FR:"Франція",PF:"Французька Полінезія",TF:"Французькі Південні і Антарктичні Території",HR:"Хорватія",CF:"Центральноафриканська Республіка",TD:"Чад",ME:"Чорногорія",CZ:"Чехія",CL:"Чилі",CH:"Швейцарія",SE:"Швеція",LK:"Шри-Ланка",JM:"Ямайка",JP:"Японія"}};NM.registerLocale(zM),NM.registerLocale(VM),NM.registerLocale(RM),NM.registerLocale(OM),NM.registerLocale(PM),NM.registerLocale(UM),NM.registerLocale(GM),NM.registerLocale(jM),NM.registerLocale(HM),NM.registerLocale(KM),NM.registerLocale(ZM),NM.registerLocale(qM),NM.registerLocale(WM),NM.registerLocale(JM),NM.registerLocale(QM),NM.registerLocale(YM),NM.registerLocale(XM),function(){try{if(typeof document<"u"){var e=document.createElement("style");e.appendChild(document.createTextNode('@keyframes spinner-circle-animation-ed866313{0%,39%,to{opacity:0}40%{opacity:1}}.spinner[data-v-ed866313]{position:relative;width:var(--vs-spinner-size);height:var(--vs-spinner-size);margin:0;padding:0}.spinner-circle[data-v-ed866313]{width:100%;height:100%;position:absolute;left:0;top:0}.spinner-circle[data-v-ed866313]:before{content:"";display:block;margin:0 auto;width:15%;height:15%;background-color:var(--vs-spinner-color);border-radius:100%;-webkit-animation:spinner-circle-animation-ed866313 1.2s infinite ease-in-out both;animation:spinner-circle-animation-ed866313 1.2s infinite ease-in-out both}.spinner-circle[data-v-ed866313]:nth-child(2){transform:rotate(30deg)}.spinner-circle[data-v-ed866313]:nth-child(3){transform:rotate(60deg)}.spinner-circle[data-v-ed866313]:nth-child(4){transform:rotate(90deg)}.spinner-circle[data-v-ed866313]:nth-child(5){transform:rotate(120deg)}.spinner-circle[data-v-ed866313]:nth-child(6){transform:rotate(150deg)}.spinner-circle[data-v-ed866313]:nth-child(7){transform:rotate(180deg)}.spinner-circle[data-v-ed866313]:nth-child(8){transform:rotate(210deg)}.spinner-circle[data-v-ed866313]:nth-child(9){transform:rotate(240deg)}.spinner-circle[data-v-ed866313]:nth-child(10){transform:rotate(270deg)}.spinner-circle[data-v-ed866313]:nth-child(11){transform:rotate(300deg)}.spinner-circle[data-v-ed866313]:nth-child(12){transform:rotate(330deg)}.spinner-circle[data-v-ed866313]:nth-child(2):before{animation-delay:-1.1s}.spinner-circle[data-v-ed866313]:nth-child(3):before{animation-delay:-1s}.spinner-circle[data-v-ed866313]:nth-child(4):before{animation-delay:-.9s}.spinner-circle[data-v-ed866313]:nth-child(5):before{animation-delay:-.8s}.spinner-circle[data-v-ed866313]:nth-child(6):before{animation-delay:-.7s}.spinner-circle[data-v-ed866313]:nth-child(7):before{animation-delay:-.6s}.spinner-circle[data-v-ed866313]:nth-child(8):before{animation-delay:-.5s}.spinner-circle[data-v-ed866313]:nth-child(9):before{animation-delay:-.4s}.spinner-circle[data-v-ed866313]:nth-child(10):before{animation-delay:-.3s}.spinner-circle[data-v-ed866313]:nth-child(11):before{animation-delay:-.2s}.spinner-circle[data-v-ed866313]:nth-child(12):before{animation-delay:-.1s}.indicators-container[data-v-f0250ade]{display:flex;align-items:center;align-self:stretch;flex-shrink:0;gap:var(--vs-indicators-gap);padding:var(--vs-padding)}.clear-button[data-v-f0250ade]{appearance:none;display:inline-block;padding:0;margin:0;border:0;width:var(--vs-indicator-icon-size);height:var(--vs-indicator-icon-size);color:var(--vs-indicator-icon-color);background:none;outline:none;cursor:var(--vs-indicator-icon-cursor)}.dropdown-icon[data-v-f0250ade]{appearance:none;display:inline-block;padding:0;margin:0;border:0;width:var(--vs-indicator-icon-size);height:var(--vs-indicator-icon-size);color:var(--vs-indicator-icon-color);background:none;outline:none;cursor:var(--vs-indicator-icon-cursor);transition:var(--vs-indicator-dropdown-icon-transition)}.dropdown-icon.active[data-v-f0250ade]{transform:rotate(180deg)}[data-v-4c5f8027]{box-sizing:border-box}.menu-option[data-v-4c5f8027]{display:flex;width:var(--vs-option-width);border:0;margin:0;padding:var(--vs-option-padding);font-size:var(--vs-option-font-size);font-weight:var(--vs-option-font-weight);font-family:var(--vs-font-family);color:var(--vs-option-text-color);white-space:break-spaces;background-color:var(--vs-option-background-color);text-align:var(--vs-option-text-align);cursor:var(--vs-option-cursor)}.menu-option[data-v-4c5f8027]:hover{background-color:var(--vs-option-hover-background-color);color:var(--vs-option-hover-text-color)}.menu-option.focused[data-v-4c5f8027]{background-color:var(--vs-option-focused-background-color);color:var(--vs-option-focused-text-color)}.menu-option.selected[data-v-4c5f8027]{background-color:var(--vs-option-selected-background-color);color:var(--vs-option-selected-text-color)}.menu-option.disabled[data-v-4c5f8027]{background-color:var(--vs-option-disabled-background-color);color:var(--vs-option-disabled-text-color)}[data-v-5c36e7d3]{box-sizing:border-box}.menu[data-v-5c36e7d3]{position:absolute;margin-top:var(--vs-menu-offset-top);max-height:var(--vs-menu-height);overflow-y:auto;border:var(--vs-menu-border);border-radius:var(--vs-border-radius);box-shadow:var(--vs-menu-box-shadow);background-color:var(--vs-menu-background-color);z-index:var(--vs-menu-z-index)}.no-results[data-v-5c36e7d3]{padding:var(--vs-option-padding);font-size:var(--vs-font-size);font-family:var(--vs-font-family);color:var(--vs-text-color)}.taggable-no-options[data-v-5c36e7d3]{padding:var(--vs-option-padding);font-size:var(--vs-font-size);font-family:var(--vs-font-family);color:var(--vs-text-color);cursor:pointer}.multi-value[data-v-dfb6ab09]{display:flex;min-width:0px;margin:var(--vs-multi-value-margin);border-radius:var(--vs-multi-value-border-radius);background:var(--vs-multi-value-background-color)}.multi-value-label[data-v-dfb6ab09]{padding:var(--vs-multi-value-label-padding);border:var(--vs-multi-value-border);border-radius:var(--vs-multi-value-border-radius);overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:var(--vs-multi-value-label-font-size);font-weight:var(--vs-multi-value-label-font-weight);line-height:var(--vs-multi-value-label-line-height);color:var(--vs-multi-value-label-text-color)}.multi-value-remove[data-v-dfb6ab09]{border-radius:var(--vs-multi-value-border-radius);appearance:none;display:flex;align-items:center;padding:var(--vs-multi-value-delete-padding);border:none;outline:none;cursor:var(--vs-multi-value-xmark-cursor);background-color:var(--vs-multi-value-background-color)}.multi-value-remove[data-v-dfb6ab09]:hover{background-color:var(--vs-multi-value-delete-hover-background-color)}.multi-value-remove svg[data-v-dfb6ab09]{width:var(--vs-multi-value-xmark-size);height:var(--vs-multi-value-xmark-size);fill:var(--vs-multi-value-xmark-color)}.multi-value-remove:hover svg[data-v-dfb6ab09]{fill:var(--vs-multi-value-xmark-hover-color)}.input-placeholder[data-v-d650edcf]{grid-area:1 / 1 / 2 / 3;color:var(--vs-placeholder-color)}:root{--vs-width: 100%;--vs-min-height: 38px;--vs-padding: 4px 8px;--vs-border: 1px solid #e4e4e7;--vs-border-radius: 4px;--vs-font-size: 16px;--vs-font-weight: 400;--vs-font-family: inherit;--vs-text-color: #18181b;--vs-line-height: 1.5;--vs-placeholder-color: #52525b;--vs-background-color: #fff;--vs-disabled-background-color: #f4f4f5;--vs-outline-width: 1px;--vs-outline-color: #3b82f6;--vs-menu-offset-top: 8px;--vs-menu-height: 200px;--vs-menu-border: var(--vs-border);--vs-menu-background-color: var(--vs-background-color);--vs-menu-box-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);--vs-menu-z-index: 2;--vs-option-width: 100%;--vs-option-padding: 8px 12px;--vs-option-cursor: pointer;--vs-option-font-size: var(--vs-font-size);--vs-option-font-weight: var(--vs-font-weight);--vs-option-text-align: -webkit-auto;--vs-option-text-color: var(--vs-text-color);--vs-option-hover-text-color: var(--vs-text-color);--vs-option-focused-text-color: var(--vs-text-color);--vs-option-selected-text-color: var(--vs-text-color);--vs-option-disabled-text-color: #52525b;--vs-option-background-color: var(--vs-menu-background);--vs-option-hover-background-color: #dbeafe;--vs-option-focused-background-color: var(--vs-option-hover-background-color);--vs-option-selected-background-color: #93c5fd;--vs-option-disabled-background-color: #f4f4f5;--vs-option-opacity-menu-open: .4;--vs-multi-value-margin: 2px;--vs-multi-value-border: 0px;--vs-multi-value-border-radius: 2px;--vs-multi-value-background-color: #f4f4f5;--vs-multi-value-label-padding: 4px 4px 4px 8px;--vs-multi-value-label-font-size: 12px;--vs-multi-value-label-font-weight: 400;--vs-multi-value-label-line-height: 1;--vs-multi-value-label-text-color: #3f3f46;--vs-multi-value-delete-padding: 0 3px;--vs-multi-value-delete-hover-background-color: #FF6467;--vs-multi-value-xmark-size: 16px;--vs-multi-value-xmark-cursor: pointer;--vs-multi-value-xmark-color: var(--vs-multi-value-label-text-color);--vs-multi-value-xmark-hover-color: #fff;--vs-indicators-gap: 0px;--vs-indicator-icon-size: 20px;--vs-indicator-icon-color: var(--vs-text-color);--vs-indicator-icon-cursor: pointer;--vs-indicator-dropdown-icon-transition: transform .2s ease-out;--vs-spinner-color: var(--vs-text-color);--vs-spinner-size: 16px}[data-v-c5806535]{box-sizing:border-box}.vue-select[data-v-c5806535]{position:relative;box-sizing:border-box;width:var(--vs-width)}.control[data-v-c5806535]{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;min-height:var(--vs-min-height);border:var(--vs-border);border-radius:var(--vs-border-radius);background-color:var(--vs-background-color)}.control.focused[data-v-c5806535]{box-shadow:0 0 0 var(--vs-outline-width) var(--vs-outline-color);border-color:var(--vs-outline-color)}.control.disabled[data-v-c5806535]{background-color:var(--vs-disabled-background-color)}.value-container[data-v-c5806535]{position:relative;overflow:hidden;display:grid;align-items:center;flex:1 1 0%;padding:var(--vs-padding)}.value-container.multi.has-value[data-v-c5806535]{display:flex;flex-wrap:wrap}.single-value[data-v-c5806535]{display:block;grid-area:1 / 1 / 2 / 3;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:var(--vs-font-size);font-weight:var(--vs-font-weight);font-family:var(--vs-font-family);line-height:var(--vs-line-height);color:var(--vs-text-color)}.vue-select[data-state=open] .single-value[data-v-c5806535]{opacity:var(--vs-option-opacity-menu-open)}.vue-select.typing .single-value[data-v-c5806535]{opacity:0}.input-container[data-v-c5806535]{visibility:visible;display:inline-grid;grid-area:1 / 1 / 2 / 3;grid-template-columns:0px min-content}.input-container.typing[data-v-c5806535]{transform:translateZ(0)}.input-container.typing[data-v-c5806535]:after{content:attr(data-value) " ";visibility:hidden;white-space:pre;grid-area:1 / 2;min-width:2px;padding:0;margin:0;border:0}.search-input[data-v-c5806535]{margin:0;padding:0;border:0;min-width:2px;width:100%;grid-area:1 / 2;background:0px center;font-size:var(--vs-font-size);font-family:var(--vs-font-family);line-height:var(--vs-line-height);color:var(--vs-text-color);opacity:1;outline:none}')),document.head.appendChild(e)}}catch(j_){console.error("vite-plugin-css-injected-by-js",j_)}}();const $M=(e,t)=>{const n=e.__vccOpts||e;for(const[i,a]of t)n[i]=a;return n},eS={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"};const tS=$M({},[["render",function(e,t){return Na(),Oa("svg",eS,t[0]||(t[0]=[Ka("path",{"fill-rule":"evenodd",d:"M5.22 8.22a.75.75 0 0 1 1.06 0L10 11.94l3.72-3.72a.75.75 0 1 1 1.06 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L5.22 9.28a.75.75 0 0 1 0-1.06Z","clip-rule":"evenodd"},null,-1)]))}]]),nS={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor"};const iS=$M({},[["render",function(e,t){return Na(),Oa("svg",nS,t[0]||(t[0]=[Ka("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"},null,-1)]))}]]),aS={className:"spinner"};const oS=$M({},[["render",function(e,t){return Na(),Oa("div",aS,[(Na(),Oa(Ta,null,mi(12,e=>Ka("div",{key:e,class:"spinner-circle"})),64))])}],["__scopeId","data-v-ed866313"]]),rS={ref:"container",class:"indicators-container"},sS=["disabled"],lS=["disabled"],cS=$M(jn({__name:"Indicators",props:{hasSelectedOption:{type:Boolean},isMenuOpen:{type:Boolean},isClearable:{type:Boolean},isLoading:{type:Boolean},isDisabled:{type:Boolean},slots:{}},emits:["clear","toggle"],setup(e,{expose:t,emit:n}){const i=e,a=n;return t({containerRef:Kn("container"),clearButtonRef:Kn("clearButton"),dropdownButtonRef:Kn("dropdownButton")}),(e,t)=>(Na(),Oa("div",rS,[e.hasSelectedOption&&e.isClearable&&!e.isLoading?(Na(),Oa("button",{key:0,ref:"clearButton",type:"button",class:"clear-button",tabindex:"-1",disabled:e.isDisabled,onClick:t[0]||(t[0]=kr(e=>a("clear"),["stop"]))},[i.slots.clear?(Na(),Pa(hi(i.slots.clear),{key:0})):(Na(),Pa(iS,{key:1}))],8,sS)):Qa("",!0),e.isLoading?Qa("",!0):(Na(),Oa("button",{key:1,ref:"dropdownButton",type:"button",class:K(["dropdown-icon",{active:e.isMenuOpen}]),tabindex:"-1",disabled:e.isDisabled,onClick:t[1]||(t[1]=kr(e=>a("toggle"),["stop"]))},[i.slots.dropdown?(Na(),Pa(hi(i.slots.dropdown),{key:0})):(Na(),Pa(tS,{key:1}))],10,lS)),i.slots.loading?(Na(),Pa(hi(i.slots.loading),{key:2})):(Na(),Oa(Ta,{key:3},[e.isLoading?(Na(),Pa(oS,{key:0})):Qa("",!0)],64))],512))}}),[["__scopeId","data-v-f0250ade"]]),dS=Symbol("props"),uS=Symbol("data");let CS=0;const pS=["aria-disabled","aria-selected"],hS=jn({__name:"MenuOption",props:{menu:{},index:{},isFocused:{type:Boolean},isSelected:{type:Boolean},isDisabled:{type:Boolean}},emits:["select"],setup(e,{emit:t}){const n=e,i=t,a=bt(null);return ga(()=>n.isFocused,()=>{if(n.isFocused&&n.menu){const e=n.menu.children[n.index],t=e.offsetTop,i=t+e.clientHeight,a=n.menu.scrollTop,o=n.menu.clientHeight;t<a?n.menu.scrollTop=t:i>a+o&&(n.menu.scrollTop=i-o)}}),(e,t)=>(Na(),Oa("div",{ref_key:"option",ref:a,class:K(["menu-option",{focused:e.isFocused,selected:e.isSelected,disabled:e.isDisabled}]),tabindex:"-1",role:"option","aria-disabled":e.isDisabled,"aria-selected":e.isSelected,onClick:t[0]||(t[0]=e=>i("select")),onKeydown:t[1]||(t[1]=Tr(e=>i("select"),["enter"]))},[vi(e.$slots,"default",{},void 0,!0)],42,pS))}}),gS=$M(hS,[["__scopeId","data-v-4c5f8027"]]),fS=["id","aria-label","aria-multiselectable"],mS=jn({__name:"Menu",props:_i({slots:{}},{modelValue:{required:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(e){const t=e,n=ya(e,"modelValue"),i=Hi(dS),a=Hi(uS),o=Kn("menu"),r=()=>{if(a.containerRef.value){const e=a.containerRef.value.getBoundingClientRect();return{left:`${e.x}px`,top:`${e.y+e.height}px`}}return console.warn("Unable to calculate dynamic menu position because of missing internal DOM reference."),{top:"0px",left:"0px"}},s=e=>{if(a.menuOpen.value){const t=a.focusedOption.value;if("ArrowDown"===e.key){e.preventDefault();const n=a.availableOptions.value.findIndex((e,n)=>!e.disabled&&n>t),i=a.availableOptions.value.findIndex(e=>!e.disabled);a.focusedOption.value=-1===n?i:n}if("ArrowUp"===e.key){e.preventDefault();const n=a.availableOptions.value.reduce((e,n,i)=>!n.disabled&&i<t?i:e,-1),i=a.availableOptions.value.reduce((e,t,n)=>t.disabled?e:n,-1);a.focusedOption.value=-1===n?i:n}if("Enter"===e.key){const n=a.availableOptions.value[t];e.preventDefault(),n?a.setOption(n):i.isTaggable&&a.search.value&&a.createOption()}if("Space"===e.code&&0===a.search.value.length){const n=a.availableOptions.value[t];e.preventDefault(),n&&a.setOption(n)}"Escape"===e.key&&(e.preventDefault(),a.closeMenu());const o=i.isMulti&&Array.isArray(n.value)?n.value.length>0:!!n.value;"Backspace"===e.key&&0===a.search.value.length&&o&&(e.preventDefault(),i.isMulti&&Array.isArray(n.value)?n.value=n.value.slice(0,-1):n.value=void 0)}},l=e=>{const t=e.target,n=a.containerRef.value&&a.containerRef.value.contains(t),i=o.value&&o.value.contains(t);!n&&!i&&a.closeMenu()};return ni(()=>{document.addEventListener("keydown",s),document.addEventListener("click",l)}),oi(()=>{document.removeEventListener("keydown",s),document.removeEventListener("click",l)}),(e,s)=>{var l,c,d,u,C,p;return Na(),Oa("div",{id:`vue-select-${It(i).uid}-listbox`,ref:"menu",class:K(["menu",null==(l=It(i).classes)?void 0:l.menuContainer]),role:"listbox","aria-label":null==(c=It(i).aria)?void 0:c.labelledby,"aria-multiselectable":It(i).isMulti,style:P({width:It(i).teleport?`${null==(u=null==(d=It(a).containerRef)?void 0:d.value)?void 0:u.getBoundingClientRect().width}px`:"100%",top:It(i).teleport?r().top:"unset",left:It(i).teleport?r().left:"unset"})},[(Na(!0),Oa(Ta,null,mi(It(a).availableOptions.value,(e,r)=>{var s;return Na(),Pa(gS,{key:r,type:"button",menu:o.value,index:r,"is-focused":It(a).focusedOption.value===r,"is-selected":Array.isArray(n.value)?n.value.includes(e.value):e.value===n.value,"is-disabled":e.disabled||!1,class:K(null==(s=It(i).classes)?void 0:s.menuOption),onSelect:t=>It(a).setOption(e)},{default:gn(()=>[(Na(),Pa(hi(t.slots["menu-header"]))),t.slots.option?(Na(),Pa(hi(t.slots.option),{key:0,option:e,index:r,"is-focused":It(a).focusedOption.value===r,"is-selected":Array.isArray(n.value)?n.value.includes(e.value):e.value===n.value,"is-disabled":e.disabled||!1},null,8,["option","index","is-focused","is-selected","is-disabled"])):It(i).getOptionLabel?(Na(),Oa(Ta,{key:1},[Wa(J(It(i).getOptionLabel(e)),1)],64)):(Na(),Oa(Ta,{key:2},[Wa(J(e.label),1)],64))]),_:2},1032,["menu","index","is-focused","is-selected","is-disabled","class","onSelect"])}),128)),It(i).isTaggable||0!==It(a).availableOptions.value.length?Qa("",!0):(Na(),Oa("div",{key:0,class:K(["no-results",null==(C=It(i).classes)?void 0:C.noResults])},[t.slots["no-options"]?(Na(),Pa(hi(t.slots["no-options"]),{key:0})):(Na(),Oa(Ta,{key:1},[Wa(" No results found ")],64))],2)),It(i).isTaggable&&It(a).search.value?(Na(),Oa("div",{key:1,class:K(["taggable-no-options",null==(p=It(i).classes)?void 0:p.taggableNoOptions]),onClick:s[0]||(s[0]=(...e)=>It(a).createOption&&It(a).createOption(...e))},[t.slots["taggable-no-options"]?(Na(),Pa(hi(t.slots["taggable-no-options"]),{key:0,option:It(a).search.value},null,8,["option"])):(Na(),Oa(Ta,{key:1},[Wa(" Press enter to add "+J(It(a).search.value)+" option ",1)],64))],2)):Qa("",!0)],14,fS)}}}),vS=$M(mS,[["__scopeId","data-v-5c36e7d3"]]),yS=["aria-label"],MS=jn({__name:"MultiValue",props:{label:{},classes:{}},emits:["remove"],setup(e,{emit:t}){const n=e,i=t;return(e,t)=>{var a,o,r;return Na(),Oa("div",{class:K(["multi-value",null==(a=n.classes)?void 0:a.multiValue])},[Ka("div",{class:K(["multi-value-label",null==(o=n.classes)?void 0:o.multiValueLabel])},J(n.label),3),Ka("button",{type:"button",class:K(["multi-value-remove",null==(r=n.classes)?void 0:r.multiValueRemove]),"aria-label":`Remove ${n.label}`,onClick:t[0]||(t[0]=kr(e=>i("remove"),["stop"]))},[Za(iS)],10,yS)],2)}}}),SS=$M(MS,[["__scopeId","data-v-dfb6ab09"]]),wS={class:"input-placeholder"},AS=jn({__name:"Placeholder",props:{text:{},placeholderSlot:{type:Function}},setup:e=>(e,t)=>(Na(),Oa("div",wS,[e.placeholderSlot?(Na(),Pa(hi(e.placeholderSlot),{key:0})):(Na(),Oa(Ta,{key:1},[Wa(J(e.text),1)],64))]))}),bS=$M(AS,[["__scopeId","data-v-d650edcf"]]),FS=["data-state"],_S=["id","aria-expanded","aria-describedby","aria-description","aria-labelledby","aria-label","aria-required","aria-owns","aria-controls"],kS=["data-value"],IS=["id","aria-labelledby","disabled"],TS=jn({__name:"Select",props:_i({options:{},displayedOptions:{},placeholder:{default:"Select an option"},isClearable:{type:Boolean,default:!0},isDisabled:{type:Boolean,default:!1},isSearchable:{type:Boolean,default:!0},isMulti:{type:Boolean,default:!1},isTaggable:{type:Boolean,default:!1},isLoading:{type:Boolean,default:!1},isMenuOpen:{type:Boolean,default:void 0},hideSelectedOptions:{type:Boolean,default:!0},shouldAutofocusOption:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},teleport:{default:void 0},inputId:{default:void 0},classes:{default:void 0},uid:{default:++CS},aria:{default:void 0},disableInvalidVModelWarn:{type:Boolean,default:!1},filterBy:{type:Function,default:(e,t,n)=>t.toLowerCase().includes(n.toLowerCase())},getOptionValue:{type:Function,default:e=>e.value},getOptionLabel:{type:Function,default:e=>e.label}},{modelValue:{required:!0},modelModifiers:{}}),emits:_i(["optionSelected","optionDeselected","optionCreated","menuOpened","menuClosed","search"],["update:modelValue"]),setup(e,{emit:t}){const n=e,i=t,a=bi(),o=ya(e,"modelValue"),r=Kn("container"),s=Kn("input"),l=Kn("indicators"),c=bt(""),d=bt(!1),u=bt(-1),C=wo(()=>{const e=n.displayedOptions||n.options;(null==e?void 0:e.length)||console.warn("[vue3-select-component warn]: No options or displayedOptions were provided to the component.");const t=e.map(e=>({...e,label:n.getOptionLabel(e),value:n.getOptionValue(e)})),i=e=>e.filter(e=>!n.hideSelectedOptions||!Array.isArray(o.value)||!o.value.includes(e.value));if(n.isSearchable&&c.value){const e=t.filter(e=>n.filterBy(e,n.getOptionLabel(e),c.value));return n.isMulti?i(e):e}return n.isMulti?i(t):t}),p=wo(()=>{if(n.isMulti)return Array.isArray(o.value)?o.value.map(e=>n.options.find(t=>n.getOptionValue(t)===e)).filter(e=>void 0!==e):(n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}`),[]);const e=n.options.find(e=>n.getOptionValue(e)===o.value);return e?[e]:[]});function h(){n.isDisabled||(d.value=!0,n.shouldAutofocusOption&&(u.value=n.options.findIndex(e=>!e.disabled)),s.value&&s.value.focus(),i("menuOpened"))}function g(){d.value=!1,c.value="",i("search",""),i("menuClosed")}function f(){d.value?g():h()}function m(e){var t;(null==(t=l.value)?void 0:t.containerRef)&&!l.value.containerRef.contains(e.target)&&h()}const v=e=>{n.isMulti&&!n.isDisabled&&(Array.isArray(o.value)?(o.value=o.value.filter(t=>t!==e.value),i("optionDeselected",e)):n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}`))},y=()=>{n.isMulti?(o.value=[],i("optionDeselected",null)):(o.value=void 0,i("optionDeselected",p.value[0])),d.value&&g(),s.value&&s.value.blur()},M=e=>{"Tab"===e.key?g():"Space"===e.code&&!d.value&&0===c.value.length&&(e.preventDefault(),e.stopImmediatePropagation(),h())};return ji(dS,n),ji(uS,{vmodel:o,availableOptions:C,selectedOptions:p,menuOpen:d,focusedOption:u,containerRef:r,search:c,openMenu:h,closeMenu:g,toggleMenu:f,handleControlClick:m,setOption:e=>{e.disabled||(n.isMulti?Array.isArray(o.value)?o.value.find(t=>t===e.value)?o.value=o.value.filter(t=>t!==e.value):o.value=[...o.value,e.value]:(o.value=[e.value],n.disableInvalidVModelWarn||console.warn(`[vue3-select-component warn]: The v-model provided should be an array when using \`isMulti\` prop, instead it was: ${o.value}. Since an option has been selected, the component automatically converted the v-model to an array.`)):o.value=e.value,i("optionSelected",e),c.value="",n.closeOnSelect&&g(),s.value&&s.value.blur())},removeOption:v,createOption:()=>{i("optionCreated",c.value),c.value="",g()}}),ga(()=>c.value,()=>{c.value&&(i("search",c.value),d.value||h())}),ga(()=>n.isMenuOpen,(e,t)=>{void 0===t&&void 0===e||(e?h():g())},{immediate:!0}),(e,t)=>{var i,r,s,l,u,C,g,S,w;return Na(),Oa("div",{ref:"container",dir:"auto",class:K(["vue-select",[{open:d.value,typing:d.value&&c.value.length>0,disabled:e.isDisabled},null==(i=n.classes)?void 0:i.container]]),"data-state":d.value?"open":"closed"},[Ka("div",{class:K(["control",[{focused:d.value,disabled:n.isDisabled},null==(r=n.classes)?void 0:r.control]]),onClick:t[3]||(t[3]=e=>m(e))},[Ka("div",{id:`vue-select-${e.uid}-combobox`,class:K(["value-container",[{multi:e.isMulti,"has-value":p.value.length>0},null==(s=n.classes)?void 0:s.valueContainer]]),role:"combobox","aria-expanded":d.value,"aria-describedby":e.placeholder,"aria-description":e.placeholder,"aria-labelledby":null==(l=e.aria)?void 0:l.labelledby,"aria-label":p.value.length?p.value.map(e.getOptionLabel).join(", "):"","aria-required":null==(u=e.aria)?void 0:u.required,"aria-owns":`vue-select-${e.uid}-listbox`,"aria-controls":`vue-select-${e.uid}-listbox`,"aria-haspopup":"true"},[p.value[0]||c.value.length?!n.isMulti&&p.value[0]?(Na(),Oa("div",{key:1,class:K(["single-value",[null==(g=n.classes)?void 0:g.singleValue]]),onClick:t[0]||(t[0]=e=>h())},[a.value?(Na(),Pa(hi(a.value),{key:0,option:p.value[0]},null,8,["option"])):(Na(),Oa(Ta,{key:1},[Wa(J(e.getOptionLabel(p.value[0])),1)],64))],2)):n.isMulti&&p.value.length?(Na(!0),Oa(Ta,{key:2},mi(p.value,t=>{var i,o,r;return Na(),Oa(Ta,{key:t.value},[a.tag?(Na(),Pa(hi(a.tag),{key:0,option:t,"remove-option":()=>v(t)},null,8,["option","remove-option"])):(Na(),Pa(SS,{key:1,label:e.getOptionLabel(t),classes:{multiValue:null==(i=n.classes)?void 0:i.multiValue,multiValueLabel:null==(o=n.classes)?void 0:o.multiValueLabel,multiValueRemove:null==(r=n.classes)?void 0:r.multiValueRemove},onRemove:e=>v(t)},null,8,["label","classes","onRemove"]))],64)}),128)):Qa("",!0):(Na(),Pa(bS,{key:0,text:e.placeholder,"placeholder-slot":a.placeholder,class:K(null==(C=n.classes)?void 0:C.placeholder)},null,8,["text","placeholder-slot","class"])),Ka("div",{class:K(["input-container",[{typing:d.value&&c.value.length>0},null==(S=n.classes)?void 0:S.inputContainer]]),"data-value":c.value},[fn(Ka("input",{id:e.inputId,ref:"input","onUpdate:modelValue":t[1]||(t[1]=e=>c.value=e),class:K(["search-input",null==(w=n.classes)?void 0:w.searchInput]),autocapitalize:"none",autocomplete:"off",autocorrect:"off",spellcheck:"false",tabindex:"0",type:"text","aria-autocomplete":"list","aria-labelledby":`vue-select-${e.uid}-combobox`,disabled:e.isDisabled,placeholder:"",onMousedown:t[2]||(t[2]=e=>h()),onKeydown:M},null,42,IS),[[br,c.value]])],10,kS)],10,_S),Za(cS,{ref:"indicators","has-selected-option":p.value.length>0,"is-menu-open":d.value,"is-clearable":e.isClearable,"is-loading":e.isLoading,"is-disabled":e.isDisabled,slots:{clear:a.clear,dropdown:a.dropdown,loading:a.loading},onClear:y,onToggle:f},null,8,["has-selected-option","is-menu-open","is-clearable","is-loading","is-disabled","slots"])],2),(Na(),Pa(kn,{to:e.teleport,disabled:!e.teleport,defer:!0},[d.value?(Na(),Pa(vS,{key:0,modelValue:o.value,"onUpdate:modelValue":t[4]||(t[4]=e=>o.value=e),slots:{option:a.option,"menu-header":a["menu-header"],"no-options":a["no-options"],"taggable-no-options":a["taggable-no-options"]}},null,8,["modelValue","slots"])):Qa("",!0)],8,["to","disabled"]))],10,FS)}}}),ES=$M(TS,[["__scopeId","data-v-c5806535"]]),LS=Object.assign({"./assets/country-flag-icons/3x2/AC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<g>\n\t<path fill="#FFFFFF" d="M440.1,181.1c-0.1,39.2-6.4,81.4-57.4,101.5c-51.1-20.1-57.3-62.3-57.4-101.5L440.1,181.1L440.1,181.1z"/>\n\t<path fill="#29DBFF" d="M439.6,197.7c-2.8,34.9-12.4,67.4-57,85c-44.4-17.6-54.5-51.2-56.9-84.9"/>\n\t<path fill="#FFFFFF" d="M437.8,214.1c-3.2,24.3-16.7,53.5-55.1,68.6c-38.4-15.1-50.5-42.5-55.1-68.4"/>\n\t<path fill="#29DBFF" d="M434.2,230.3c-5.7,17.7-19.3,39.4-51.3,52.8c-32-12.6-45.2-33.8-51.4-53"/>\n\t<path fill="#FFFFFF" d="M426.7,246.9c-6.5,11.3-17.7,25.4-44,35.9c-27.5-11.5-37.4-25.3-44-36.1"/>\n\t<path fill="#29DBFF" d="M412.4,265.1c-8.1,7.2-12,11.2-29.6,17.9c-20.1-7.9-22.6-11.6-29.2-17.5"/>\n\t<path fill="#5CC85C" d="M383.3,231.6c-0.2-0.2-27.9,35.7-27.9,35.7c-1.8-1.3-10-9.5-13.3-15l41.3-50.1l40.2,49.7\n\t\tc-3.9,6.5-11.4,13.6-13.2,15"/>\n</g>\n<polygon fill="#5CC85C" points="382.6,85.3 356.1,130.3 409.1,130.3 409.1,130.3 "/>\n<ellipse transform="matrix(0.134 -0.991 0.991 0.134 28.7247 484.2523)" fill="#F7A226" cx="291.4" cy="225.7" rx="48.7" ry="15.7"/>\n<ellipse transform="matrix(0.373 -0.9278 0.9278 0.373 37.247 384.4472)" fill="#DDC7AB" cx="303.1" cy="164.7" rx="11.7" ry="7.2"/>\n<ellipse transform="matrix(0.1437 -0.9896 0.9896 0.1437 -19.091 521.3171)" fill="#DDC7AB" cx="291.7" cy="271.7" rx="11.4" ry="3.3"/>\n<ellipse transform="matrix(0.9986 -5.352928e-02 5.352928e-02 0.9986 -13.9925 16.4237)" fill="#DDC7AB" cx="299.6" cy="269.4" rx="3.3" ry="11"/>\n<ellipse transform="matrix(0.9303 -0.3668 0.3668 0.9303 -51.8254 129.3871)" fill="#DDC7AB" cx="314.5" cy="201.1" rx="4.1" ry="13.7"/>\n<ellipse transform="matrix(0.9303 -0.3668 0.3668 0.9303 -43.1881 128.875)" fill="#DDC7AB" cx="317.5" cy="178.1" rx="13.7" ry="4.1"/>\n<ellipse transform="matrix(0.991 -0.134 0.134 0.991 -26.0008 65.5194)" fill="#F7A226" cx="473.6" cy="225.9" rx="15.7" ry="48.7"/>\n<ellipse transform="matrix(0.9278 -0.373 0.373 0.9278 -28.1478 184.2457)" fill="#DDC7AB" cx="462" cy="164.9" rx="7.2" ry="11.7"/>\n<ellipse transform="matrix(0.9896 -0.1437 0.1437 0.9896 -34.1512 70.8368)" fill="#DDC7AB" cx="473.4" cy="271.9" rx="3.3" ry="11.4"/>\n<ellipse transform="matrix(5.352928e-02 -0.9986 0.9986 5.352928e-02 171.3404 719.9983)" fill="#DDC7AB" cx="465.5" cy="269.6" rx="11" ry="3.3"/>\n<ellipse transform="matrix(0.3668 -0.9303 0.9303 0.3668 98.0689 546.5782)" fill="#DDC7AB" cx="450.6" cy="201.2" rx="13.7" ry="4.1"/>\n<ellipse transform="matrix(0.3668 -0.9303 0.9303 0.3668 117.5679 529.2617)" fill="#DDC7AB" cx="447.6" cy="178.3" rx="4.1" ry="13.7"/>\n<polygon fill="#B0C6CC" points="373.3,130.3 356.1,155 373.9,181.1 396,181.1 400.7,155.7 395.3,130.3 "/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t144,69.4 "/>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t"/>\n</g>\n<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 "/>\n<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 "/>\n<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFDA44" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="171" height="342"/>\n<rect x="342" y="0" fill="#D80027" width="171" height="342"/>\n<rect x="198.92" y="113.58" fill="#D80027" width="57.08" height="64.8"/>\n<polygon fill="#D80027" points="309.16,228.68 256,243.18 256,178.38 313.08,178.38 "/>\n<path fill="#BC8B00" d="M182.24,95.92v92.2c0,34.32,27.26,54.17,48.63,64.46c-0.8,1.37,25.13,8.26,25.13,8.26s25.93-6.9,25.13-8.26\n\tc21.38-10.29,48.63-30.14,48.63-64.46v-92.2L182.24,95.92z M312.1,188.12c0,16.88-10,29.43-32.76,43.9\n\tc-8.62,5.48-17.54,9.03-23.34,11.01c-5.8-1.98-14.72-5.53-23.34-11.01C209.9,217.55,199.9,204,199.9,188.12v-74.54h112.2\n\tL312.1,188.12z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="114"/>\n<rect y="228" width="513" height="114"/>\n<rect y="0" fill="#dd0d12" width="171" height="342"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#DB3E00" width="513" height="342"/>\n<rect x="331" y="0" fill="#479900" width="182" height="342"/>\n<rect y="0" width="181.8" height="342"/>\n<path fill="#FFFFFF" d="M256,126.7c-19.4,0-35.2,15.8-35.2,35.2v52.8h70.4v-52.8C291.2,142.4,275.4,126.7,256,126.7z"/>\n<path fill="#FFFFFF" d="M256,84.3c-47.7,0-86.4,38.7-86.4,86.4S208.3,257,256,257c47.7,0,86.4-38.7,86.4-86.4S303.7,84.3,256,84.3z\n\t M256,242c-39.4,0-71.4-32-71.4-71.4c0-39.4,32-71.4,71.4-71.4c39.4,0,71.4,32,71.4,71.4C327.4,210.1,295.4,242,256,242z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" width="513" height="342"/>\n<path fill="#186DD2" d="M88.8,136.5c-2.2,12.9-3.4,26.2-3.4,39.8c0,13.6,1.2,27,3.4,39.8L256,228.3l167.2-12.1\n\tc2.2-12.9,3.4-26.2,3.4-39.8s-1.2-27-3.4-39.8"/>\n<path fill="#FFFFFF" d="M423.2,219H88.8c15.8,69.8,84.7,122.3,167.2,122.3S407.4,288.8,423.2,219z"/>\n<polygon fill="#FFDA44" points="365.9,136.5 146.1,136.5 191,115.4 167.1,71.9 215.9,81.3 222,32 256,68.2 290,32 296.1,81.3\n\t344.9,71.9 321,115.4 "/>\n<g>\n\t<polygon fill="#C32500" points="256.5,342 0,0 0,342 \t"/>\n\t<polygon fill="#C32500" points="513,342 513,0 256,342 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<path fill="#FFFFFF" d="M454.8,265.38c7.94-10.93,13.24-24.27,13.24-40.42V104.89c-10.04,7.54-22.5,12.01-36.02,12.01\n\tc-19.64,0-37.07-9.43-48.03-24.01c-10.95,14.58-28.39,24.01-48.03,24.01c-13.52,0-25.99-4.47-36.02-12v120.06\n\tc0,16.16,5.3,29.5,13.24,40.42L454.8,265.38L454.8,265.38z"/>\n<path fill="#8DCCFF" d="M310.23,260.98C332.65,296.96,384,309,384,309s51.35-12.04,73.77-48.02H310.23L310.23,260.98z"/>\n<path fill="#D87B00" d="M396.66,172.21c0.32,1.42,8.72,10.17,17.56,20.15c1.39,1.57-8.74,12.63-6.91,12.59\n\tc4.75-0.12,19.27-17.26,19.34,6.65c0.05,15.94-30,27.51-30,27.51h17.47l0.65,14.96c0,0,4.97-13.34,7.59-16.57\n\tc8.1-9.97,20.18-30.07,34.59-27.1c14.41,2.97-13.66-13.92-13.66-13.92s-5.2-15.19-16.63-16.97c-10.06-1.57-14.29-2.51-26.64-7.3\n\tC398.34,171.56,396.14,169.89,396.66,172.21z"/>\n<path fill="#D87B00" d="M359.69,198.69c1.07-0.99,4.46-12.63,8.69-25.28c0.67-1.99,15.31,1.27,14.35-0.3\n\tc-2.47-4.06-24.58-8.08-3.9-20.08c13.79-8,38.82,12.27,38.82,12.27l-8.72-15.14l12.64-8.03c0,0-14.05,2.35-18.14,1.69\n\tc-12.68-2.04-36.13-2.48-40.75-16.45c-4.62-13.97-5.25,18.79-5.25,18.79s-10.56,12.08-6.4,22.88c3.66,9.5,4.96,13.64,6.97,26.73\n\tC358.29,197.56,357.94,200.3,359.69,198.69z"/>\n<path fill="#D87B00" d="M395.67,219.87c-1.39-0.43-13.16,2.49-26.22,5.18c-2.06,0.42-6.59-13.88-7.47-12.26\n\tc-2.27,4.17,5.36,25.31-15.41,13.45c-13.84-7.91-8.89-39.73-8.89-39.73l-8.71,15.14l-13.29-6.9c0,0,9.09,10.96,10.57,14.84\n\tc4.6,11.99,16,32.49,6.24,43.49c-9.76,11.01,18.88-4.9,18.88-4.9s15.76,3.07,23-5.96c6.38-7.94,9.3-11.14,19.61-19.45\n\tC395.41,221.65,397.95,220.58,395.67,219.87z"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256.5,0 233.4,0 160,48.9 160,0 96,0 96,48.9 22.6,0 0,0 0,22.7 46.1,53.4 0,53.4 0,117.4 46.1,117.4\n\t\t0,148.1 0,171 22.6,171 96,121.8 96,171 160,171 160,121.8 233.4,171 256.5,171 256.5,148.1 209.9,117.4 256.5,117.4\n\t\t256.5,53.4 209.9,53.4 256.5,22.7 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,171 144,171 144,101.4 256.5,101.4 256.5,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,171 0,159.7 62.5,117.4 85.1,117.4 7.3,171 \t"/>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256.5,0.1 256.5,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,171 170.9,117.4 193.5,117.4 256.5,159.7 256.5,171 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<rect x="0" fill="#ED2024" width="90" height="60"/>\n<polygon fill="#212121" points="32.5,12.2 32.5,28.2 39.6,30.7 34.6,35.6 37,38.6 42.3,33.1 43.5,35.4 40.5,40.3 44.1,45.9 42.3,48.5\n\t45.1,52.1 47.8,48.4 46.3,45.8 49.3,40 46.6,35.4 47.8,33.1 53,38.6 55.5,35.7 50.3,30.6 57.5,28 57.5,12.2 52.3,14.1 52.2,17.9\n\t48.9,18.2 48.9,15.6 50.6,13.3 56.2,11.1 53.9,10.7 55.3,9.5 56.2,9.9 55.4,8.5 54,9 53,7.9 47.5,9 48.9,10.1 45.1,15 41.3,10.2\n\t42.6,9.1 37.6,7.9 36.2,9 34.7,8.6 33.9,10 34.8,9.4 36.4,10.5 34.1,11 39.6,13 41.2,15.3 41.2,18.2 37.9,17.9 37.9,14.3 "/>\n<g>\n\t<rect x="26.2" y="25" fill="#212121" width="6.4" height="2.5"/>\n\t<rect x="26.2" y="20.9" fill="#212121" width="6.4" height="2.7"/>\n\t<rect x="26.2" y="16.7" fill="#212121" width="6.4" height="2.6"/>\n\t<rect x="26.2" y="12.7" fill="#212121" width="6.4" height="2.5"/>\n</g>\n<g>\n\t<rect x="57.4" y="25" fill="#212121" width="6.4" height="2.5"/>\n\t<rect x="57.4" y="20.9" fill="#212121" width="6.4" height="2.7"/>\n\t<rect x="57.4" y="16.7" fill="#212121" width="6.4" height="2.6"/>\n\t<rect x="57.4" y="12.7" fill="#212121" width="6.4" height="2.5"/>\n</g>\n<rect x="53.4" y="36.1" fill="#212121" width="6.4" height="1.9"/>\n<rect x="30.2" y="36.1" fill="#212121" width="6.4" height="1.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<rect y="0" fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#FF9811" width="513" height="114"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="171" width="513" height="171"/>\n<rect y="0" fill="#D80027" width="513" height="171"/>\n<g>\n\t<path fill="#FFDA44" d="M197.01,139.81c-9.32,12.37-9,27.81,3.37,37.12c0,0,162.62,122.13,164.64,123.93c2.02,1.8,6.3,2.38,11-3.27\n\t\tc4.46-5.36,3.31-9.78,1.04-11.63S197.01,139.81,197.01,139.81z"/>\n\t<polygon fill="#FFDA44" points="264.42,79.12 276.14,103.15 302.59,107.11 283.36,125.69 287.76,152.07 264.15,139.52 240.42,151.85\n\t\t245.06,125.52 226,106.77 252.47,103.04 \t"/>\n\t<path fill="#FFDA44" d="M268.67,39.2l-3.2,22.04c51.81,3.9,92.64,47.18,92.64,99.99c0,55.38-44.9,100.28-100.28,100.28\n\t\tc-40.82,0-75.94-24.39-91.59-59.4l-18.4,13.11c19.96,40.59,61.71,68.52,110,68.52c67.66,0,122.51-54.85,122.51-122.51\n\t\tC380.34,97.22,331.25,44.69,268.67,39.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 744 496">\n\t<path fill="#3A7DCE" d="M0,0h744v496H0V0z"/>\n\t<polygon fill="#ffffff" points="120,125 210,188 264,174 287,93 348,57 440,71 545,126 551,216 585,228 585,320 520,435 442,459\n\t\t370,442 388,412 380,380 370,389 208,364 159,279 179,233 130,171 "/>\n</svg>',"./assets/country-flag-icons/3x2/AR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="512" height="342"/>\n<rect y="0" fill="#338AF3" width="512" height="114"/>\n<rect y="228" fill="#338AF3" width="512" height="114"/>\n<circle fill="#FFDA44" stroke="#d6ab00" stroke-width="5" cx="256.5" cy="171" r="40"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<polygon fill="#D80027" points="513,33 95.3,171 513,310.76 513,341.33 0,171 513,0 "/>\n<polyline fill="#FFFFFF" points="513,287.18 513,311.76 81.72,171 513,30 513,54.16 "/>\n<path fill="#A2001D" d="M476.98,140.21l-21.89,10.68l-3.18-15.32l31.19-29.77c0,0-9.42-40.65-13.75-44.98l-112.32,55.82l-6.84,36.76\n\tl-31.9,28.59l-0.4,34.2l34.29-22.76l67.23-2.66l-1.51,38.11h22.23l11.9-44.64l31.55-24.61L476.98,140.21z"/>\n<polygon fill="#EFC100" stroke="#231F20" stroke-miterlimit="10" points="317.89,238.41 295.65,227.3 317.89,216.19 462.35,216.19 462.35,238.41 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="114" fill="#FFFFFF" width="513" height="114"/>\n<rect y="0" fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#D80027" width="513" height="114"/>\n</svg>\n',"./assets/country-flag-icons/3x2/AU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<g fill="#FFFFFF">\n\t<path d="M222.2,170.7c0.3-0.3,0.5-0.6,0.8-0.9C222.8,170.1,222.5,170.4,222.2,170.7L222.2,170.7z"/>\n\t<polygon points="188,212.6 199,235.5 223.7,229.8 212.7,252.6 232.6,268.4 207.8,274 207.9,299.4 188,283.5\n\t\t168.2,299.4 168.3,274 143.5,268.4 163.4,252.6 152.3,229.8 177.1,235.5 \t"/>\n\t<polygon points="385.9,241.1 391.1,252 402.9,249.3 397.6,260.2 407.1,267.7 395.3,270.3 395.3,282.5 385.9,274.9\n\t\t376.4,282.5 376.5,270.3 364.7,267.7 374.2,260.2 368.9,249.3 380.7,252 \t"/>\n\t<polygon points="337.3,125.1 342.5,136 354.3,133.3 349,144.2 358.5,151.7 346.7,154.4 346.7,166.5 337.3,158.9\n\t\t327.8,166.5 327.9,154.4 316,151.7 325.5,144.2 320.2,133.3 332,136 \t"/>\n\t<polygon points="385.9,58.9 391.1,69.8 402.9,67.1 397.6,78 407.1,85.5 395.3,88.2 395.3,100.3 385.9,92.7\n\t\t376.4,100.3 376.5,88.2 364.7,85.5 374.2,78 368.9,67.1 380.7,69.8 \t"/>\n\t<polygon points="428.4,108.6 433.6,119.5 445.4,116.8 440.1,127.7 449.6,135.2 437.8,137.8 437.8,150 428.4,142.4\n\t\t418.9,150 418.9,137.8 407.1,135.2 416.6,127.7 411.3,116.8 423.1,119.5 \t"/>\n\t<polygon points="398,166.5 402.1,179.2 415.4,179.2 404.6,187 408.8,199.7 398,191.8 387.2,199.7 391.3,187\n\t\t380.6,179.2 393.9,179.2 \t"/>\n\t<polygon points="254.8,0 254.8,30.6 209.7,55.7 254.8,55.7 254.8,115 195.7,115 254.8,147.8 254.8,170.7 228.1,170.7\n\t\t154.6,129.8 154.6,170.7 99,170.7 99,122.1 11.6,170.7 -1.2,170.7 -1.2,140.1 44,115 -1.2,115 -1.2,55.7 57.9,55.7 -1.2,22.8\n\t\t-1.2,0 25.5,0 99,40.8 99,0 154.6,0 154.6,48.6 242.1,0 \t"/>\n</g>\n<polygon fill="#D80027" points="142.8,0 110.8,0 110.8,69.3 -1.2,69.3 -1.2,101.3 110.8,101.3 110.8,170.7 142.8,170.7 142.8,101.3\n\t254.8,101.3 254.8,69.3 142.8,69.3 "/>\n<polygon fill="#0052B4" points="154.6,115 254.8,170.7 254.8,154.9 183,115 "/>\n<polygon fill="#FFFFFF" points="154.6,115 254.8,170.7 254.8,154.9 183,115 "/>\n<g fill="#D80027">\n\t<polygon points="154.6,115 254.8,170.7 254.8,154.9 183,115 \t"/>\n\t<polygon points="70.7,115 -1.2,154.9 -1.2,170.7 -1.2,170.7 99,115 \t"/>\n</g>\n<polygon fill="#0052B4" points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 "/>\n<polygon fill="#FFFFFF" points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 "/>\n<g fill="#D80027">\n\t<polygon points="99,55.7 -1.2,0 -1.2,15.7 70.7,55.7 \t"/>\n\t<polygon points="183,55.7 254.8,15.7 254.8,0 254.8,0 154.6,55.7 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AW.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 363 242">\n<rect fill="#338AF3" width="363" height="242"/>\n<g>\n\t<polygon fill="#FFFFFF" points="57,96.9 14.7,78.2 57,59.6 75.6,17.4 94.2,59.6 136.5,78.2 94.2,96.9 75.6,139.1 \t"/>\n\t<polygon fill="#D80027" points="75.6,40.6 87.1,66.7 113.2,78.2 87.1,89.7 75.6,115.8 64.1,89.7 38,78.2 64.1,66.7 \t"/>\n</g>\n<g fill="#FFDA44">\n\t<rect y="152.2" width="363" height="15.7"/>\n\t<rect y="183.6" width="363" height="15.7"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/AX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#0052B4" width="513" height="342"/>\n<polygon fill="#FFDA44" points="513,210.9 202.2,210.9 202.2,342 122.4,342 122.4,210.9 0,210.9 0,192.3 0,149.7 0,131.1 122.4,131.1\n\t122.4,0 202.2,0 202.2,131.1 513,131.1 513,149.7 513,192.3 "/>\n<polygon fill="#D80027" points="513,149.7 513,192.3 183.7,192.3 183.7,342 141,342 141,192.3 0,192.3 0,149.7 141,149.7 141,0\n\t183.7,0 183.7,149.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/AZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<rect fill="#338AF3" width="513" height="114"/>\n<rect y="228" fill="#6DA544" width="513" height="114"/>\n<g fill="#FFFFFF">\n\t<path d="M265.6,212.6c-23,0-41.6-18.6-41.6-41.6s18.6-41.6,41.6-41.6c7.2,0,13.9,1.8,19.8,5\n\t\tc-9.2-9-21.9-14.6-35.8-14.6c-28.3,0-51.2,22.9-51.2,51.2s22.9,51.2,51.2,51.2c13.9,0,26.6-5.6,35.8-14.6\n\t\tC279.5,210.8,272.8,212.6,265.6,212.6z"/>\n\t<polygon points="297.6,142.2 303.1,157.7 318,150.6 310.9,165.5 326.4,171 310.9,176.5 318,191.4 303.1,184.3\n\t\t297.6,199.8 292.1,184.3 277.2,191.4 284.3,176.5 268.8,171 284.3,165.5 277.2,150.6 292.1,157.7 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polyline fill="#FFDA44" points="99.905,85.329 441.238,85.329 441.238,426.663 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="36.561,100.645 51.404,89.838 66.271,100.632 61.292,85.33 41.525,85.33 "/>\n\t<polygon fill="#FFFFFF" points="88.332,103.632 82.649,86.16 76.977,103.632 58.612,103.644 73.479,114.44 67.818,131.901 82.661,121.095 97.527,131.89 91.843,114.416 106.697,103.621 "/>\n\t<polygon fill="#FFFFFF" points="119.59,134.89 113.906,117.416 108.233,134.89 89.868,134.901 104.735,145.696 99.074,163.158 113.918,152.351 128.784,163.147 123.099,145.673 137.955,134.879 "/>\n\t<polygon fill="#FFFFFF" points="150.846,166.146 145.163,148.673 139.49,166.146 121.126,166.157 135.992,176.953 130.331,194.414 145.174,183.608 160.04,194.403 154.357,176.929 169.212,166.135 "/>\n\t<polygon fill="#FFFFFF" points="182.103,197.403 176.42,179.929 170.748,197.403 152.382,197.414 167.248,208.209 161.588,225.671 176.431,214.864 191.297,225.66 185.613,208.187 200.468,197.392 "/>\n\t<polygon fill="#FFFFFF" points="213.359,228.659 207.676,211.187 202.004,228.659 183.639,228.671 198.505,239.466 192.845,256.928 207.687,246.122 222.553,256.916 216.87,239.443 231.725,228.648 "/>\n\t<polygon fill="#FFFFFF" points="244.616,259.916 238.933,242.443 233.261,259.916 214.895,259.928 229.762,270.723 224.101,288.185 238.945,277.378 253.811,288.172 248.126,270.7 262.981,259.906 "/>\n\t<polygon fill="#FFFFFF" points="275.872,291.173 270.19,273.7 264.517,291.173 246.152,291.184 261.019,301.98 255.358,319.441 270.201,308.635 285.067,319.43 279.384,301.956 294.237,291.162 "/>\n\t<polygon fill="#FFFFFF" points="307.13,322.43 301.447,304.956 295.773,322.43 277.409,322.441 292.275,333.236 286.614,350.698 301.458,339.891 316.324,350.687 310.64,333.213 325.495,322.419 "/>\n\t<polygon fill="#FFFFFF" points="338.386,353.686 332.703,336.214 327.031,353.686 308.666,353.698 323.532,364.493 317.871,381.955 332.714,371.148 347.58,381.943 341.897,364.471 356.752,353.675 "/>\n\t<polygon fill="#FFFFFF" points="369.643,384.943 363.96,367.47 358.288,384.943 339.922,384.955 354.788,395.749 349.128,413.212 363.971,402.405 378.837,413.2 373.153,395.727 388.008,384.932 "/>\n\t<polygon fill="#FFFFFF" points="395.216,398.727 389.544,416.199 371.179,416.211 385.573,426.664 404.851,426.664 419.265,416.188 400.899,416.199 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#FFDA44" width="512" height="341.34"/>\n<g>\n\t<rect y="0" fill="#0052B4" width="170.66" height="341.34"/>\n\t<rect x="341.34" y="0" fill="#0052B4" width="170.66" height="341.34"/>\n</g>\n<path d="M325.74,101.02l-31.97,12.4c-0.68,1.35-5.79,7.54-8.18,53.06h-17.05v-60.42l-12.54-27.38l-12.54,27v60.8H226.4\n\tc-2.39-45.53-7.8-52.48-8.47-53.84l-31.68-11.63c0.15,0.31,15.4,31.34,15.4,78.01v12.54h41.81v71.07h25.08v-71.07h41.81v-12.54\n\tc0-24.13,4.17-44.02,7.68-56.46c3.82-13.57,7.7-21.49,7.74-21.57L325.74,101.02z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<circle fill="#F40B32" cx="218.902" cy="255.994" r="115"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.331" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<rect y="0" fill="#D80027" width="512" height="170.7"/>\n<polygon fill="#FFDA44" points="256,66.9 281.8,146.2 365.1,146.2 297.7,195.2 323.4,274.5 256,225.5 188.6,274.5 214.3,195.2\n\t146.9,146.2 230.2,146.2 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFFFFF" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect x="2.216" y="86.076" fill="#D80027" width="509.784" height="339.848"/>\n<polygon fill="#FFFFFF" points="209.455,154.969 159.219,180.236 209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#6DA544" points="215.9,170.7 0,314.6 0,26.8 \t"/>\n\t<polygon fill="#6DA544" points="512,26.8 512,314.6 296.1,170.7 \t"/>\n</g>\n<polygon fill="#0052B4" points="512,26.8 296.1,170.7 512,314.6 512,341.3 471.9,341.3 256,197.4 40.1,341.3 0,341.3 0,314.6\n\t215.9,170.7 0,26.8 0,0 40.1,0 256,143.9 471.9,0 512,0 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="512,26.8 296.1,170.7 512,314.6 512,341.3 471.9,341.3 256,197.4 40.1,341.3 0,341.3 0,314.6\n\t\t215.9,170.7 0,26.8 0,0 40.1,0 256,143.9 471.9,0 512,0 \t"/>\n</g>\n<circle fill="#FFFFFF" cx="251.6" cy="170.7" r="100.2"/>\n<g>\n\t<polygon fill="#D80027" points="251.6,93.3 261.7,110.8 281.9,110.8 271.8,128.3 281.9,145.8 261.7,145.8 251.6,163.3 241.5,145.8\n\t\t221.3,145.8 231.4,128.3 221.3,110.8 241.5,110.8 \t"/>\n\t<polygon fill="#D80027" points="210.3,163.4 220.4,180.9 240.7,180.9 230.6,198.4 240.7,215.9 220.4,215.9 210.3,233.4 200.2,215.9\n\t\t180,215.9 190.1,198.4 180,180.9 200.2,180.9 \t"/>\n\t<polygon fill="#D80027" points="292.8,163.4 302.9,180.9 323.1,180.9 313,198.4 323.1,215.9 302.9,215.9 292.8,233.4 282.7,215.9\n\t\t262.5,215.9 272.6,198.4 262.5,180.9 282.7,180.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect x="196.641" y="85.337" fill="#FFDA44" width="315.359" height="170.663"/>\n<rect x="196.641" y="256" fill="#D80027" width="315.359" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect fill="#FFFFFF" width="512" height="341.33"/>\n<path fill="#FFFFFF" d="M0-75.85"/>\n<path fill="#E6BC00" d="M157.31,199.76c0,0-9.04,43.93-19.31,40.39c-10.62-3.54-17.53-18.76-17.53-18.76l-14.52,21.24\n\t\tc0,0,38.18,8.48,41.01,5.47c1.22-1.14,8.21-15.1,10.34-26.05V199.76z M101.18,260.33c0,0-2.48,20.18-1.06,22.66\n\t\tc1.24,2.3,39.48,11.33,39.48,11.33s-24.96,16.46-29.74,20.54L91.8,284.94l-0.71-24.61L101.18,260.33L101.18,260.33z"/>\n<path fill="#E6BC00" d="M0-75.85"/>\n<path fill="#E6BC00" d="M112.51,94.64c0,0,39.65,41.6,40.36,45.5c0.71,3.72-4.25,3.19-4.25,3.19s-44.79-37.53-49.92-41.07\n\tC93.39,98.71,112.51,94.64,112.51,94.64L112.51,94.64z"/>\n<path fill="#ADADAD" d="M99.41,104.73c0,0,16.99-0.71,16.64-11.51C115.7,82.6,104.9,78.35,96.93,80.83\n\tc-7.97,2.3-23.01,13.45-13.63,35.05c9.38,21.42,23.37,29.39,26.2,47.8c0,0-5.46,9.86-19.12,0.35c-16.9-11.77-6.2-38.24-10.44-44.96\n\tc-4.25-7.08-40.95-38.92-40.95-38.92s-30.24,39.37-18,74.92c16.95,49.21,51.74,31.98,64.61,36.76c0,0-42.13,61.96-49.57,67.09\n\tc0,0,24.08,8.32,47.8-18.76c0,0,5.84,9.74,7.08,20.18h10.27c4.78-26.2,51.51-64.26,49.92-82.32\n\tC149.33,156.77,101.89,128.63,99.41,104.73z"/>\n<path fill="#E6BC00" d="M359.17,201.27c0,0,8.96,42.43,19.23,38.89c10.62-3.54,17.53-18.76,17.53-18.76l14.52,21.24\n\tc0,0-37,8.48-39.83,5.47c-1.21-1.14-9.32-13.79-11.52-24.66L359.17,201.27z M415.22,260.33c0,0,2.48,20.18,1.06,22.66\n\tc-1.24,2.3-39.48,11.33-39.48,11.33s24.96,16.46,29.74,20.54l18.06-29.92l0.71-24.61H415.22z"/>\n<path fill="#E6BC00" d="M403.89,94.64c0,0-39.65,41.6-40.36,45.5c-0.71,3.72,4.25,3.19,4.25,3.19s44.79-37.53,49.92-41.07\n\tC422.84,98.71,403.89,94.64,403.89,94.64L403.89,94.64z"/>\n<g transform="translate(6.5 5)">\n\t<g>\n\t\t<path id="b_1_" fill="#125ECC" d="M150.81,82.06h201.79v145.46c0,16.06-9.69,21.39-21.91,31.85l-45.92,39.41\n\t\t\tc-18.25,15.62-47.91,15.57-66.07,0l-46.01-39.43c-12.08-10.35-21.88-15.71-21.88-31.82V82.06z"/>\n\t</g>\n\t<path fill="#FFE600" d="M194.05,142.71c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\t\tS202.01,142.71,194.05,142.71z M251.7,139.71c-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41\n\t\ts14.41,6.45,14.41,14.41C266.11,133.26,259.66,139.71,251.7,139.71z M309.35,142.71c-7.96,0-14.41-6.45-14.41-14.41\n\t\ts6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41S317.31,142.71,309.35,142.71z M208.46,269.43c-7.96,0-14.41-6.45-14.41-14.41\n\t\tc0-7.96,6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41C222.88,262.98,216.42,269.43,208.46,269.43z M251.7,283.85\n\t\tc-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41C266.11,277.39,259.66,283.85,251.7,283.85z\n\t\t M294.94,269.43c-7.96,0-14.41-6.45-14.41-14.41c0-7.96,6.45-14.41,14.41-14.41c7.96,0,14.41,6.45,14.41,14.41\n\t\tC309.35,262.98,302.9,269.43,294.94,269.43z"/>\n\t<path fill="#D60537" d="M150.81,170.36h201.79v57.65H150.81V170.36z"/>\n</g>\n<path fill="#EACE00" d="M142.9,43.82c0,0,57.65-14.41,115.31-14.41s115.31,14.41,115.31,14.41l-14.41,57.65\n\tc0,0-50.45-14.41-100.89-14.41s-100.89,14.41-100.89,14.41L142.9,43.82z"/>\n<path fill="#7A6920" d="M258.2,72.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41c7.96,0,14.41,6.45,14.41,14.41\n\tS266.16,72.65,258.2,72.65z M315.85,77.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\tS323.81,77.65,315.85,77.65z M200.55,77.65c-7.96,0-14.41-6.45-14.41-14.41s6.45-14.41,14.41-14.41s14.41,6.45,14.41,14.41\n\tS208.51,77.65,200.55,77.65z"/>\n<path fill="#ADADAD" d="M365.08,178.02c-1.59,18.06,45.14,56.12,49.92,82.32h10.27c1.24-10.44,7.08-20.18,7.08-20.18\n\tc23.72,27.09,47.8,18.76,47.8,18.76c-7.44-5.13-49.57-67.09-49.57-67.09c12.88-4.78,47.67,12.45,64.61-36.76\n\tc12.24-35.55-18-74.92-18-74.92s-36.7,31.84-40.95,38.92c-4.25,6.73,6.46,33.2-10.44,44.96c-13.66,9.51-19.12-0.35-19.12-0.35\n\tc2.83-18.41,16.82-26.38,26.2-47.8c9.38-21.6-5.66-32.75-13.63-35.05c-7.97-2.48-18.76,1.77-19.12,12.39\n\tc-0.35,10.8,16.64,11.51,16.64,11.51C414.29,128.63,366.85,156.77,365.08,178.02z"/>\n<circle fill="#FFFFFF" cx="258.2" cy="204.19" r="16.93"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#D80027" width="512" height="341.34"/>\n<g>\n\t<rect y="0.1" fill="#0052B4" width="256" height="170.6"/>\n\t<polygon fill="#FFFFFF" points="256,0 233.4,0 160,48.9 160,0 96,0 96,48.9 22.6,0 0,0 0,22.7 46.1,53.4 0,53.4 0,117.4 46.1,117.4\n\t\t0,148.1 0,170.7 22.6,170.7 96,121.8 96,170.7 160,170.7 160,121.8 233.4,170.7 256,170.7 256,148.1 209.9,117.4 256,117.4\n\t\t256,53.4 209.9,53.4 256,22.7 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t"/>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 \t"/>\n</g>\n<g transform="translate(13 5)">\n\t<path fill="#ffffff" d="M303.9,94.94v99.69c0,59.81,79.75,99.69,79.75,99.69s79.75-39.88,79.75-99.69V94.94H303.9z"/>\n\t<path fill="#2F8F22" d="M436.37,254.44H330.93c23.13,25.08,52.72,39.88,52.72,39.88S413.24,279.52,436.37,254.44z"/>\n\t<circle fill="#65B5D2" cx="383.65" cy="214.56" r="39.88"/>\n\t<circle fill="#D80027" cx="343.77" cy="194.63" r="19.94"/>\n\t<circle fill="#D80027" cx="423.52" cy="194.63" r="19.94"/>\n\t<circle fill="#D80027" cx="383.65" cy="154.75" r="19.94"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#FFDA44" width="512" height="341.33"/>\n<polygon fill="#000000" points="0,193.74 512,320.93 512,214.26 0,97.08 "/>\n<polyline fill="#FFFFFF" points="512,234.26 512,147.59 0,20.41 0,107.08 "/>\n<g>\n\t<path fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" d="M306.4,134.01c3.87,7.14,6.07,15.33,6.07,24.02c0,21.55-13.51,39.94-32.52,47.19v-59.51\n\t\tc5.7-1.19,10-6.37,10-12.59c6.9,0,12.5-5.75,12.5-12.85h-0.42c6.9,0,12.91-5.75,12.91-12.85h-34.99V76.58l-14.99-27.71l-15,27.71\n\t\tv30.84h-34.99c0,7.1,6.01,12.85,12.91,12.85h-0.42c0,7.1,5.6,12.85,12.5,12.85c0,6.22,4.29,11.4,9.99,12.59v61.37\n\t\tc-22.09-5.39-38.48-25.3-38.48-49.05c0-8.7,2.2-16.88,6.07-24.02c-10.96,11.21-17.72,26.53-17.72,43.44\n\t\tc0,34.32,27.82,62.15,62.15,62.15s62.15-27.83,62.15-62.15C324.12,160.54,317.35,145.21,306.4,134.01z"/>\n\t<path fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" d="M198.46,226.81c0,0,20.69,27.71,66.5,27.71s66.5-27.71,66.5-27.71l13.47,28.37c0,0-21.03,27.71-79.97,27.71\n\t\ts-79.97-27.71-79.97-27.71L198.46,226.81z"/>\n\t<polygon fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" points="129.24,133.18 150.12,133.18 175.05,160.44 175.05,233.89 148.77,233.89 148.77,165.52 \t"/>\n\t<polygon fill="#D80027" stroke="#231F20" stroke-width="3" stroke-miterlimit="10" points="400,133.18 379.12,133.18 354.19,160.44 354.19,233.89 380.46,233.89 380.46,165.52 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#0052B4" points="0,341.3 512,341.3 512,0 512,0 "/>\n<polygon fill="#FFDA44" points="250.4,0 0,0 0,0 0,166.9 "/>\n<polygon fill="#D80027" points="140.4,118.3 152.6,139.5 177.1,139.5 164.8,160.6 177.1,181.8 152.6,181.8 140.4,203 128.2,181.8\n\t103.7,181.8 116,160.6 103.7,139.5 128.2,139.5 "/>\n<circle fill="none" stroke="#000000" stroke-width="9" stroke-miterlimit="10" cx="140.4" cy="160.6" r="57.7"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<polygon fill="#FFDA44" points="256,19.3 461.4,170.7 256,322 50.6,170.7 \t"/>\n<circle fill="#FFFFFF" cx="256" cy="170.7" r="86.5"/>\n<g>\n\t<path fill="#0052B4" d="M212.8,165.3c-15,0-29.5,2.3-43.2,6.5c0.6,47.2,39.1,85.3,86.4,85.3c29.3,0,55.2-14.6,70.8-36.9\n\t\tC300.1,186.8,258.9,165.3,212.8,165.3z"/>\n\t<path fill="#0052B4" d="M340.9,187.2c1-5.4,1.6-10.9,1.6-16.6c0-47.8-38.7-86.5-86.5-86.5c-35.6,0-66.2,21.6-79.5,52.3\n\t\tc11.7-2.4,23.8-3.7,36.2-3.7C263,132.8,308.4,153.7,340.9,187.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/BS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#338AF3" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</g>\n<polygon points="256,256.006 0,426.668 0,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/BT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#FF7415" width="512" height="341.3"/>\n<polyline fill="#FFDA44" points="512,0 0,0 0,341.3 "/>\n<path fill="none" stroke="#FFFFFF" stroke-width="42" stroke-miterlimit="10" d="M128.7,255.5c0,0,35,54,67.3,32.4c56.9-37.9-68.9-108.6-2.9-152.6c58.3-38.8,76.6,103.5,137.6,62.8\n\tc59-39.3-64.7-111.4-9.2-148.4c33.4-22.2,67.1,32.6,67.1,32.6"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BV.svg":'<?xml version="1.0" encoding="utf-8" standalone="no"?>\n<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"\n"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\n<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 33.333 1100 733.333">\n<rect width="1100" height="800" fill="#ef2b2d"/>\n<rect width="200" height="800" x="300" fill="#ffffff"/>\n<rect width="1100" height="200" y="300" fill="#ffffff"/>\n<rect width="100" height="800" x="350" fill="#002868"/>\n<rect width="1100" height="100" y="350" fill="#002868"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="322.783" fill="#338AF3" width="512" height="103.88"/>\n\t<rect y="85.337" fill="#338AF3" width="512" height="104.515"/>\n</g>\n<rect y="210.877" width="512" height="89.656"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect x="0.6" y="0.2" fill="#75AF2B" width="511.4" height="341"/>\n<polyline fill="#D32424" points="0,230 512,230 512,0.2 512,0.2 0,0.2 0,0.2 "/>\n<polygon fill="#FFFFFF" points="100.1,230 100.1,215.1 100.1,0.2 0,0.2 0,341.1 511.4,341.1 511.4,341.1 100.1,341.1 "/>\n<polygon fill="#D32424" points="51.6,218 13.6,170.3 51.6,123.4 89.6,170.3"/>\n<polygon fill="#D32424" points="51.6,113.4 13.6,65.7 51.6,18.8 89.6,65.7"/>\n<polygon fill="#D32424" points="51.6,322.6 13.6,274.9 51.6,228 89.6,274.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/BZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<circle fill="#FFFFFF" cx="260.9" cy="170.9" r="118.9"/>\n\t<circle fill="none" stroke="#6DA544" stroke-width="18" stroke-miterlimit="10" cx="261.9" cy="173.1" r="94.5"/>\n</g>\n<g stroke="#000000" stroke-width="1">\n\t<path fill="#0052B4" d="M261.9,151.5l-50.6,23.4v20c0,11.8,6.1,22.8,16.2,28.9l34.5,15.2l34.5-15.2c10-6.2,16.2-17.1,16.2-28.9v-20\n\t\tL261.9,151.5z"/>\n\t<rect x="211.3" y="128.1" fill="#FFDA44" width="101.3" height="46.7"/>\n</g>\n<g>\n\t<rect y="0" fill="#BC0029" width="512" height="35"/>\n\t<rect y="306" fill="#BC0029" width="512" height="35"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="0" fill="#D80027" width="142" height="341.3"/>\n\t<rect x="370" y="0" fill="#D80027" width="142" height="341.3"/>\n\t<polygon fill="#D80027" points="306.5,206 356.9,180.8 331.7,168.2 331.7,143 281.3,168.2 306.5,117.8 281.3,117.8 256.1,80\n\t\t230.9,117.8 205.7,117.8 230.9,168.2 180.5,143 180.5,168.2 155.3,180.8 205.7,206 193.1,231.2 243.5,231.2 243.5,269 268.7,269\n\t\t268.7,231.2 319.1,231.2 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<g fill="#FFDA44">\n\t<polygon points="422.7,252.4 428.9,265.2 442.7,262 436.5,274.8 447.7,283.6 433.8,286.8 433.8,301 422.7,292.1\n\t\t411.6,301 411.6,286.8 397.8,283.6 408.9,274.8 402.7,262 416.6,265.2 \t"/>\n\t<polygon points="376.1,116.1 382.3,129 396.1,125.8 389.9,138.6 401.1,147.4 387.2,150.5 387.2,164.8 376.1,155.9\n\t\t365,164.8 365.1,150.5 351.2,147.4 362.3,138.6 356.1,125.8 370,129 \t"/>\n\t<polygon points="413.1,38.3 419.3,51.1 433.1,47.9 426.9,60.7 438.1,69.6 424.2,72.7 424.2,86.9 413.1,78 402,86.9\n\t\t402.1,72.7 388.2,69.6 399.3,60.7 393.1,47.9 407,51.1 \t"/>\n\t<polygon points="464.9,96.7 471.1,109.5 485,106.3 478.7,119.1 489.9,128 476,131.1 476.1,145.3 464.9,136.4\n\t\t453.8,145.3 453.9,131.1 440,128 451.2,119.1 444.9,106.3 458.8,109.5 \t"/>\n\t<polygon points="436.9,164.8 441.8,179.6 457.4,179.6 444.8,188.8 449.6,203.7 436.9,194.5 424.3,203.7 429.1,188.8\n\t\t416.5,179.6 432.1,179.6 \t"/>\n</g>\n<path fill="#FFDA44" d="M306.8,254.7c-49.2,0-89.1-39.9-89.1-89.1s39.9-89.1,89.1-89.1c15.3,0,29.8,3.9,42.4,10.7\n\tC329.4,67.9,302.3,56,272.5,56c-60.5,0-109.6,49.1-109.6,109.6S212,275.3,272.5,275.3c29.8,0,56.9-11.9,76.6-31.3\n\tC336.5,250.8,322.1,254.7,306.8,254.7z"/>\n<g>\n\t<path fill="#FFDA44" d="M140.4,59.5C129.7,41,109.7,28.6,86.8,28.6S44,41,33.3,59.5H140.4z"/>\n\t<path fill="#FFDA44" d="M140.6,59.9l-53.8,53.8L33.1,59.9c-5.1,9-8.1,19.4-8.1,30.6c0,34.2,27.7,61.9,61.9,61.9s61.9-27.7,61.9-61.9\n\t\tC148.7,79.3,145.7,68.9,140.6,59.9z"/>\n\t<path fill="#A2001D" d="M71.4,98.2v52.2c4.9,1.3,10.1,1.9,15.5,1.9s10.5-0.7,15.5-1.9V98.2H71.4z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<polygon fill="#FFDA44" points="512,66.9 512,0 411.7,0 0,274.4 0,341.3 100.3,341.3 "/>\n<polygon fill="#D80027" points="512,0 512,40.1 60.2,341.3 0,341.3 0,301.2 451.8,0 "/>\n<polygon fill="#FFDA44" points="93.6,31.2 109.9,81.6 163,81.6 120.1,112.8 136.5,163.3 93.6,132.1 50.6,163.3 67,112.8 24.1,81.6\n\t77.2,81.6 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<rect y="170.7" fill="#6DA544" width="211.5" height="85.3"/>\n\t<rect x="300.5" y="170.7" fill="#6DA544" width="211.5" height="85.3"/>\n</g>\n<polygon fill="#0052B4" points="0,0 0,0 0,85.3 211.5,85.3 211.5,0 300.5,0 300.5,85.3 512,85.3 512,0 512,0 "/>\n<g>\n\t<rect x="300.5" y="85.3" fill="#FFFFFF" width="211.5" height="85.3"/>\n\t<rect y="85.3" fill="#FFFFFF" width="211.5" height="85.3"/>\n</g>\n<g>\n\t<polygon fill="#FFDA44" points="300.5,341.3 211.5,341.3 211.5,256 0,256 0,341.3 0,341.3 512,341.3 512,341.3 512,256 300.5,256 \t"/>\n\t<polygon fill="#FFDA44" points="105.7,8.6 114.3,34.8 141.8,34.8 119.5,51 128.1,77.2 105.7,61 83.4,77.2 91.9,51 69.6,34.8\n\t\t97.2,34.8 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#6DA544" points="443.726,85.331 102.4,426.657 0,426.657 0,85.331 "/>\n<polygon fill="#FFDA44" points="500.124,85.331 158.798,426.657 11.876,426.657 353.202,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="356.174,222.609 289.391,222.609 289.391,155.826 222.609,155.826 222.609,222.609 155.826,222.609 155.826,289.391 222.609,289.391 222.609,356.174 289.391,356.174 289.391,289.391 356.174,289.391 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect x="330.207" y="85.331" fill="#6DA544" width="181.793" height="341.337"/>\n<rect y="85.331" fill="#FF9811" width="181.793" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.332" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#FFFFFF" points="384,156.705 389.283,172.959 406.372,172.959 392.546,183.004 397.827,199.258 384,189.211 370.175,199.258 375.455,183.004 361.63,172.959 378.719,172.959 "/>\n\t<polygon fill="#FFFFFF" points="313.791,185.786 329.019,193.544 341.103,181.461 338.43,198.34 353.657,206.099 336.778,208.772 334.104,225.652 326.344,210.425 309.466,213.098 321.552,201.014 "/>\n\t<polygon fill="#FFFFFF" points="284.71,255.995 300.964,250.714 300.965,233.625 311.009,247.45 327.263,242.168 317.217,255.995 327.263,269.821 311.009,264.541 300.965,278.366 300.965,261.276 "/>\n\t<polygon fill="#FFFFFF" points="313.791,326.204 321.55,310.975 309.466,298.891 326.347,301.565 334.104,286.338 336.778,303.217 353.657,305.889 338.43,313.648 341.103,330.53 329.019,318.443 "/>\n\t<polygon fill="#FFFFFF" points="384,355.284 378.719,339.031 361.628,339.031 375.455,328.986 370.175,312.732 384,322.776 397.827,312.732 392.546,328.986 406.372,339.031 389.283,339.031 "/>\n\t<polygon fill="#FFFFFF" points="454.209,326.204 438.98,318.446 426.897,330.53 429.57,313.648 414.343,305.892 431.222,303.217 433.897,286.338 441.653,301.565 458.534,298.891 446.448,310.976 "/>\n\t<polygon fill="#FFFFFF" points="483.29,255.995 467.036,261.276 467.036,278.366 456.991,264.54 440.737,269.821 450.783,255.995 440.737,242.168 456.991,247.45 467.036,233.625 467.036,250.714 "/>\n\t<polygon fill="#FFFFFF" points="454.209,185.788 446.452,201.014 458.534,213.098 441.653,210.425 433.897,225.652 431.222,208.772 414.343,206.097 429.57,198.34 426.897,181.462 438.981,193.544 "/>\n\t<path fill="#FFFFFF" d="M0,186.665v16h46.069L0,233.377v7.539l57.377-38.252H80L0,255.998h112v-69.334H0z M96,255.996 H22.628L96,207.083V255.996z"/>\n\t<path fill="#FFFFFF" d="M176,138.665l80-53.334H144v69.334h112v-16h-46.069L256,107.951v-7.539l-57.377,38.251H176V138.665z M160,85.333h73.372L160,134.246V85.333z"/>\n\t<path fill="#FFFFFF" d="M144,255.998h112l-80-53.334h22.623L256,240.917v-7.539l-46.069-30.713H256v-16H144V255.998z M160,207.083l73.372,48.913H160V207.083z"/>\n\t<path fill="#FFFFFF" d="M112,85.331H0l80,53.334H57.377L0,100.413v7.539l46.069,30.712H0v16h112V85.331z M96,134.246 L22.628,85.333H96V134.246z"/>\n</g>\n<g>\n\t<polygon fill="#D80027" points="144,85.331 112,85.331 112,154.665 0,154.665 0,186.665 112,186.665 112,255.998 144,255.998 144,186.665 256,186.665 256,154.665 144,154.665 "/>\n\t<polygon fill="#D80027" points="80,138.665 0,85.331 0,100.413 57.377,138.665 "/>\n\t<polygon fill="#D80027" points="176,138.665 198.623,138.665 256,100.413 256,85.331 "/>\n\t<polygon fill="#D80027" points="57.377,202.665 0,240.917 0,255.998 80,202.665 "/>\n\t<polygon fill="#D80027" points="176,202.665 256,255.998 256,240.917 198.623,202.665 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect x="256" y="85.337" fill="#FFFFFF" width="256" height="170.663"/>\n<rect y="85.337" fill="#0052B4" width="256" height="170.663"/>\n<polygon fill="#FFFFFF" points="128,109.801 143.108,156.299 192,156.299 152.446,185.038 167.554,231.536 128,202.799 88.446,231.536 103.554,185.038 64,156.299 112.892,156.299 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<rect y="0" fill="#496E2D" width="170.7" height="341.3"/>\n<g>\n\t<rect x="341.3" y="0" fill="#FFDA44" width="170.7" height="341.3"/>\n\t<polygon fill="#FFDA44" points="256,102.2 273.2,155.2 329,155.2 283.9,188 301.1,241 256,208.3 210.9,241 228.1,188 183,155.2\n\t\t238.8,155.2 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#D80027" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFDA44" points="352.3,312.6 328,294.9 303.6,312.6 312.9,284 288.6,266.3 318.7,266.3 328,237.7 337.3,266.3\n\t\t367.4,266.3 343,284 \t"/>\n\t<polygon fill="#FFDA44" points="415.9,120.9 391.5,138.6 400.8,167.2 376.5,149.5 352.1,167.2 361.4,138.6 337.1,120.9 367.2,120.9\n\t\t376.5,92.3 385.8,120.9 \t"/>\n\t<polygon fill="#FFDA44" points="367.4,57.4 343,75 352.3,103.7 328,86 303.6,103.7 312.9,75 288.6,57.4 318.7,57.4 328,28.7\n\t\t337.3,57.4 \t"/>\n\t<polygon fill="#FFDA44" points="415.9,204.4 391.5,222 400.8,250.7 376.5,233 352.1,250.7 361.4,222 337.1,204.4 367.2,204.4\n\t\t376.5,175.7 385.8,204.4 \t"/>\n</g>\n<polygon fill="#FFDA44" points="167.6,64.4 193.6,144.7 278.1,144.7 209.8,194.3 235.9,274.7 167.6,225 99.2,274.7 125.3,194.3\n\t57,144.7 141.5,144.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="343.096" fill="#D80027" width="512" height="83.567"/>\n<rect y="256" fill="#0052B4" width="512" height="87.096"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="211.473" fill="#D80027" width="512" height="89.043"/>\n<g>\n\t<rect y="352.462" fill="#0052B4" width="512" height="74.207"/>\n\t<rect y="85.331" fill="#0052B4" width="512" height="74.207"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<polygon fill="#FF9811" points="0,-40.8 0,-40.8 0,382.1 0,382.1 0,170.7 "/>\n<rect fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect fill="#0052B4" width="512" height="68.3"/>\n\t<rect y="136.5" fill="#0052B4" width="512" height="68.3"/>\n\t<rect y="273.1" fill="#0052B4" width="512" height="68.3"/>\n</g>\n<polygon fill="#D80027" points="256,170.7 0,341.3 0,0 "/>\n<polygon fill="#FFFFFF" points="81.5,94.8 98.4,146.7 153,146.7 108.8,178.8 125.7,230.8 81.5,198.7 37.3,230.8 54.2,178.8 10,146.7\n\t64.6,146.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/CV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<rect y="182.2" fill="#D80027" width="512" height="41.4"/>\n\t<rect y="140.8" fill="#FFFFFF" width="512" height="41.4"/>\n\t<rect y="223.6" fill="#FFFFFF" width="512" height="41.4"/>\n</g>\n<g fill="#FFDA44" stroke="#000000" stroke-miterlimit="10">\n\t<polygon points="150.4,70 157.3,91.1 179.5,91.1 161.5,104.2 168.4,125.3 150.4,112.2 132.5,125.3 139.3,104.2\n\t\t121.4,91.1 143.6,91.1 \t"/>\n\t<polygon points="150.4,279.7 157.3,300.8 179.5,300.8 161.5,313.8 168.4,335 150.4,321.9 132.5,335 139.3,313.8\n\t\t121.4,300.8 143.6,300.8 \t"/>\n\t<polygon points="52.8,208.8 59.7,229.9 81.9,229.9 63.9,242.9 70.8,264.1 52.8,251 34.9,264.1 41.7,242.9 23.8,229.9\n\t\t46,229.9 \t"/>\n\t<polygon points="90.1,91 97,112.1 119.2,112.1 101.2,125.1 108.1,146.3 90.1,133.2 72.2,146.3 79,125.1 61,112.1\n\t\t83.3,112.1 \t"/>\n\t<polygon points="23.8,162 46,162 52.8,140.9 59.7,162 81.9,162 63.9,175.1 70.8,196.2 52.8,183.2 34.9,196.2\n\t\t41.7,175.1 \t"/>\n\t<polygon points="72.2,310.9 79,289.8 61,276.8 83.3,276.8 90.1,255.6 97,276.8 119.2,276.8 101.2,289.8 108.1,310.9\n\t\t90.1,297.9 \t"/>\n\t<polygon points="248,208.8 241.1,229.9 218.9,229.9 236.9,242.9 230,264.1 248,251 266,264.1 259.1,242.9 277.1,229.9\n\t\t254.9,229.9 \t"/>\n\t<polygon points="210.7,91 203.9,112.1 181.7,112.1 199.6,125.1 192.8,146.3 210.7,133.2 228.7,146.3 221.8,125.1\n\t\t239.8,112.1 217.6,112.1 \t"/>\n\t<polygon points="277.1,162 254.9,162 248,140.9 241.1,162 218.9,162 236.9,175.1 230,196.2 248,183.2 266,196.2\n\t\t259.1,175.1 \t"/>\n\t<polygon points="228.7,310.9 221.8,289.8 239.8,276.8 217.6,276.8 210.7,255.6 203.9,276.8 181.7,276.8 199.6,289.8\n\t\t192.8,310.9 210.7,297.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CW.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<rect y="233.5" fill="#FFDA44" width="512" height="51"/>\n<g>\n\t<polygon fill="#FFFFFF" points="168.7,86.5 181.6,126.3 223.4,126.3 189.6,150.8 202.5,190.5 168.7,166 134.9,190.5 147.8,150.8\n\t\t114,126.3 155.8,126.3 \t"/>\n\t<polygon fill="#FFFFFF" points="85.4,32.5 93.2,56.4 118.2,56.4 97.9,71.1 105.7,94.9 85.4,80.2 65.1,94.9 72.9,71.1 52.6,56.4\n\t\t77.7,56.4 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/CX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polyline fill="#6DA544" points="0,0 512,0 512,341.3 "/>\n<g fill="#FFFFFF">\n\t<polygon points="77.6,272 83.3,283.9 96.1,280.9 90.4,292.8 100.7,300.9 87.9,303.8 87.9,317 77.6,308.7 67.4,317\n\t\t67.4,303.8 54.6,300.9 64.9,292.8 59.1,280.9 72,283.9 \t"/>\n\t<polygon points="40.5,173.1 46.2,185 59,182 53.3,193.8 63.6,202 50.7,204.9 50.8,218.1 40.5,209.8 30.2,218.1\n\t\t30.3,204.9 17.4,202 27.8,193.8 22,182 34.8,185 \t"/>\n\t<polygon points="77.6,92.2 83.3,104 96.1,101.1 90.4,112.9 100.7,121.1 87.9,124 87.9,137.1 77.6,128.9 67.4,137.1\n\t\t67.4,124 54.6,121.1 64.9,112.9 59.1,101.1 72,104 \t"/>\n\t<polygon points="123.7,155.1 129.4,167 142.2,164 136.5,175.9 146.8,184 134,186.9 134,200.1 123.7,191.9 113.5,200.1\n\t\t113.5,186.9 100.7,184 111,175.9 105.3,164 118.1,167 \t"/>\n\t<polygon points="90.8,209.1 95.2,222.8 109.7,222.8 98,231.3 102.5,245 90.8,236.6 79.1,245 83.6,231.3 71.9,222.8\n\t\t86.3,222.8 \t"/>\n</g>\n<g>\n\t<circle fill="#FFDA44" cx="267.1" cy="170.7" r="74.5"/>\n\t<path fill="#6DA544" d="M267.1,220.3h24.8c0,0,10.8-19,0-37.2l24.8-24.8l-12.4-24.8h-12.4c0,0-6.2,18.6-31,18.6s-31-18.6-31-18.6\n\t\th-12.4l12.4,24.8l-12.4,24.8l12.4,12.4c0,0,12.4-24.8,37.2-12.4C267.1,183.1,277.6,198.6,267.1,220.3z"/>\n</g>\n<path fill="#FFDA44" d="M464.4,92.2c0.6-2.9-0.2-17.6-0.2-20.7c0-21.3-13.9-39.4-33.2-45.7c5.9,12,9.2,25.4,9.2,39.7\n\tc0,4.8-0.4,9.5-1.1,14.1c-2.9-4.7-6.6-8.9-11.2-12.6c-17.1-13.6-40.6-14-57.9-2.5c13.4,2.9,26.3,8.9,37.7,18\n\tc9,7.1,16.2,16.8,21.7,26.1c0,0-17.8,10.9-31,15.1s-42.3,7.9-42.3,7.9c72,12,132-36,132-36C481.6,82.2,472.3,91.6,464.4,92.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<path fill="#6DA544" d="M371.5,275.9l-11.1-15c-22.4,16.1-67.7,35.8-104.3,35.8c-35.8,0-79.6-17.1-104.3-35.8l-11.1,15\n\tc10,10.3,46.9,27,88.4,38.4c-3.9,6-1.6,6.1,2.6,10.8c8.5-6.6,17.4-1.5,24.9-7.3c7.5,5.8,16.3,0.7,24.9,7.3c5.4-5.6,5.4-5.6,2.5-11.1\n\tC325,302.3,361,286.4,371.5,275.9z"/>\n<path fill="#DB7D00" d="M113.7,168.7c0,0,0.2,79.9,89,77.8L208,263h10.6c0,0-8.9-49,71.7-49.4c0,0,0-32.9,32.9-32.9s49.4,0,49.4,0\n\tS294,119,442.8,40.1l2.2-15.6c0,0-154.8,84.6-237,68.1c0,0,12.7,50.7-12.9,50.7c-12.8,0-11.6-9.6-38.4-9.6\n\tc-22.3,0-20.6,23.5-31.3,23.2s-22.4-14.6-23.4-12.1S113.7,168.7,113.7,168.7z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/CZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,256 512,426.663 0,426.663 215.185,256 "/>\n<polygon fill="#FFFFFF" points="512,85.337 512,256 215.185,256 0,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" width="512" height="113.775"/>\n<rect y="312.882" fill="#FFDA44" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/DJ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#6DA544" width="512" height="341.3"/>\n<polygon fill="#338AF3" points="512,0 512,166.7 0,170.8 0,0 "/>\n<polygon fill="#FFFFFF" points="256,170.7 0,341.3 0,0 "/>\n<polygon fill="#D80027" points="89.8,92.5 106.8,144.9 162,144.9 117.4,177.4 134.4,229.8 89.8,197.4 45.2,229.8 62.2,177.4\n\t17.6,144.9 72.8,144.9 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<polygon fill="#FFFFFF" points="190,0 130,0 130,140 0,140 0,200 130,200 130,342 190,342 190,200 513,200 513,140\n\t190,140 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/DM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#496E2D" width="512" height="341.3"/>\n<polygon points="0,110.7 0,150.7 0,190.7 0,230.7 512,230.7 512,190.7 512,150.7 512,110.7 "/>\n<rect y="110.7" fill="#FFDA44" width="512" height="40"/>\n<rect y="190.7" fill="#FFFFFF" width="512" height="40"/>\n<rect x="196" y="0" width="120" height="341.3"/>\n<rect x="196" y="0" fill="#FFDA44" width="40" height="341.3"/>\n<rect x="274.7" y="0" fill="#FFFFFF" width="40" height="341.3"/>\n<g>\n\t<circle fill="#D80027" cx="256" cy="170.7" r="123.1"/>\n\t<g fill="#496E2D">\n\t\t<polygon points="256,58.6 260.6,72.8 275.6,72.8 263.5,81.7 268.1,95.9 256,87.1 243.9,95.9 248.5,81.7 236.4,72.8\n\t\t\t251.4,72.8 \t\t"/>\n\t\t<polygon points="190.1,80 202.3,88.8 214.4,80 209.8,94.3 221.9,103.1 206.9,103.1 202.3,117.3 197.6,103.1\n\t\t\t182.6,103.1 194.7,94.3 \t\t"/>\n\t\t<polygon points="149.4,136 164.4,136 169,121.8 173.7,136 188.7,136 176.5,144.8 181.2,159.1 169,150.3 156.9,159.1\n\t\t\t161.5,144.8 \t\t"/>\n\t\t<polygon points="149.4,205.3 161.5,196.5 156.9,182.2 169,191 181.2,182.2 176.5,196.5 188.7,205.3 173.7,205.3\n\t\t\t169,219.6 164.4,205.3 \t\t"/>\n\t\t<polygon points="190.1,261.4 194.7,247.1 182.6,238.3 197.6,238.3 202.3,224 206.9,238.3 221.9,238.3 209.8,247.1\n\t\t\t214.4,261.4 202.3,252.5 \t\t"/>\n\t\t<polygon points="256,282.8 251.4,268.5 236.4,268.5 248.5,259.7 243.9,245.4 256,254.2 268.1,245.4 263.5,259.7\n\t\t\t275.6,268.5 260.6,268.5 \t\t"/>\n\t\t<polygon points="321.9,261.4 309.7,252.5 297.6,261.4 302.2,247.1 290.1,238.3 305.1,238.3 309.7,224 314.4,238.3\n\t\t\t329.4,238.3 317.3,247.1 \t\t"/>\n\t\t<polygon points="362.6,205.3 347.6,205.3 343,219.6 338.3,205.3 323.3,205.3 335.5,196.5 330.8,182.2 343,191\n\t\t\t355.1,182.2 350.5,196.5 \t\t"/>\n\t\t<polygon points="362.6,136 350.5,144.8 355.1,159.1 343,150.3 330.8,159.1 335.5,144.8 323.3,136 338.3,136\n\t\t\t343,121.8 347.6,136 \t\t"/>\n\t\t<polygon points="321.9,80 317.3,94.3 329.4,103.1 314.4,103.1 309.7,117.3 305.1,103.1 290.1,103.1 302.2,94.3\n\t\t\t297.6,80 309.7,88.8 \t\t"/>\n\t</g>\n\t<path fill="#496E2D" d="M279.3,168.7c-11-21.1-14.5-25.1-14.5-25.1s0.4-9.7,0.4-15.6c0-8.8-7.4-15.8-16.5-15.8\n\t\tc-8.6,0-15.7,2.9-16.5,11c-4.2,0.9-8.6,4.1-8.6,10.7c0,4.8,1,7.3,5.2,9.3c2.1-4.6,4.3-4.8,9.3-6.4c0.8,0.6,1.7,3,2.6,3.4l0.3,1\n\t\tc0,0-13.3,6.6-13.3,30.9c0,29.5,22,45.4,22,45.4l-1.8,0.3l-1.9,7.1h22v-7.2l11,17.5C279.3,234.9,289.2,187.6,279.3,168.7z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/DO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="215.2" fill="#D80027" width="211.5" height="126.1"/>\n<rect y="0" fill="#0052B4" width="211.5" height="126.2"/>\n<rect x="300.5" y="0" fill="#D80027" width="211.5" height="126.2"/>\n<rect x="300.5" y="215.2" fill="#0052B4" width="211.5" height="126.1"/>\n<g stroke="#FFFFFF" stroke-width="5" stroke-miterlimit="10">\n\t<path fill="#0052B4" d="M256,130h-49.9v49.4c0,0,19.5,6,49.9,6V130z"/>\n\t<path fill="#D80027" d="M206.1,179.4v6c0,27.5,22.3,49.9,49.9,49.9v-49.9C225.6,185.4,206.1,179.4,206.1,179.4z"/>\n\t<path fill="#0052B4" d="M256,235.3c27.5,0,49.9-22.3,49.9-49.9v-6c0,0-19.5,6-49.9,6V235.3z"/>\n\t<path fill="#D80027" d="M256,130v55.4c30.4,0,49.9-6,49.9-6V130H256z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/DZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#41662E" width="512" height="341.3"/>\n<rect x="256" y="0" fill="#FFFFFF" width="256" height="341.3"/>\n<g>\n\t<polygon fill="#D80027" points="341.5,105.3 312.1,145.7 264.6,130.3 294,170.7 264.6,211.1 312.1,195.7 341.5,236.1 341.5,186.1\n\t\t389,170.6 341.5,155.2 \t"/>\n\t<path fill="#D80027" d="M309.9,276.7c-58.5,0-106-47.5-106-106s47.5-106,106-106c18.3,0,35.4,4.6,50.4,12.7\n\t\tc-23.5-23-55.7-37.2-91.2-37.2c-72,0-130.4,58.4-130.4,130.4s58.4,130.4,130.4,130.4c35.5,0,67.7-14.2,91.2-37.2\n\t\tC345.4,272,328.2,276.7,309.9,276.7z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/EC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFDA44" width="512" height="341.3"/>\n<rect y="170.7" fill="#0052B4" width="512" height="85.3"/>\n<rect y="256" fill="#D80027" width="512" height="85.3"/>\n<circle fill="#FFDA44" cx="256" cy="170.7" r="59.4"/>\n<path fill="#4C1F00" d="M369.2,79.9c0,0-27.2-13.8-33.9-16c-6.7-2.2-49.1-13.2-49.1-7c0,10.3-13.5,12-15.5,12s-2-5.3-14.8-5.3\n\ts-13.7,4.8-15.8,4.8c-2.2,0-14.5-1-14.5-11.5c0-5.2-42.9,4-49.1,7c-6.1,3.1-33.9,16-33.9,16s45.8,2.7,53.9,6.2s43.8,16.5,43.8,16.5\n\tl-2.8,13.3h37.8l-3.8-13.3c0,0,35.1-12.7,43.8-16.5S369.2,79.9,369.2,79.9z"/>\n<path fill="#57BA17" d="M217.7,171.7c0,21.1,17.2,38.3,38.3,38.3c21.1,0,38.3-17.2,38.3-38.3v-11.5h-76.5V171.7z"/>\n<path fill="#338AF3" d="M256,110.5c-21.1,0-38.3,17.2-38.3,38.3v11.5h76.5v-11.5C294.3,127.7,277.1,110.5,256,110.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#111111" width="512" height="341.326"/>\n<rect y="85.337" fill="#368FD8" width="512" height="113.775"/>\n<rect y="312.888" fill="#FFFFFF" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="0" fill="#D80027" width="512" height="113.8"/>\n<rect y="227.6" width="512" height="113.8"/>\n<path fill="#C09300" d="M220.3,204.4c0,0,0-58.4,4.5-64.7c3.1-4.3,16.8,5.2,22.7,4.5c0,0,4.2-7.5,4.5-12c0.3-4.6-1.1-7.6-4.9-6.2\n\tc0,0-1.2-2.1,0.5-3.3c1.6-1.2,5.6,0.1,5.6,0.1s-0.5-1,1.6-0.9c2.9,0.2,7.2,1.4,7.4,5.6c0.2,3.1,0.3,7.7,0.4,8.7\n\tc0.7,6.8,2.7,8.7,2.7,8.7s18.4-9.2,22-5.2c3.3,3.8,4.5,64.7,4.5,64.7l-18.1-16.8l12.1,29.5c0,0-14.4,2.4-28.9,2.4\n\tc-14.5,0-31.1-4.2-31.1-4.2l13.8-28.2L220.3,204.4z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/EH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<rect y="0" width="512" height="113.8"/>\n<rect y="227.6" fill="#428823" width="512" height="113.8"/>\n<g>\n\t<polygon fill="#D80027" points="256,170.7 0,341.3 0,0 \t"/>\n\t<path fill="#D80027" d="M309.1,170.7c0-22.9,13.1-42.1,34.6-46.8c-3.3-0.7-6.7-1.1-10.3-1.1c-26.4,0-47.9,21.4-47.9,47.9\n\t\ts21.4,47.9,47.9,47.9c3.5,0,7-0.4,10.3-1.1C322.2,212.7,309.1,193.6,309.1,170.7z"/>\n\t<polygon fill="#D80027" points="365,129.2 375.3,160.9 408.6,160.9 381.6,180.5 391.9,212.2 365,192.6 338,212.2 348.3,180.5\n\t\t321.3,160.9 354.7,160.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ER.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<rect y="0" fill="#56AF35" width="512" height="170.7"/>\n<path fill="#D80027" d="M0,341.3c0,0,512-170.7,512-170.7L0,0V341.3z"/>\n<g fill="#ffc945">\n\t<path d="M134.7,231.5c33.6,0,60.8-27.2,60.8-60.8s-27.2-60.8-60.8-60.8s-60.8,27.2-60.8,60.8S101.1,231.5,134.7,231.5z\n\t\t M134.7,255.8c-47,0-85.2-38.1-85.2-85.2s38.1-85.2,85.2-85.2s85.2,38.1,85.2,85.2S181.7,255.8,134.7,255.8z"/>\n\t<circle cx="119.5" cy="148.3" r="17.5"/>\n\t<circle cx="148.9" cy="158.5" r="17.5"/>\n\t<circle cx="134.7" cy="135.2" r="17.5"/>\n\t<circle cx="119.5" cy="172.7" r="17.5"/>\n\t<circle cx="149.9" cy="182.8" r="17.5"/>\n\t<circle cx="122.5" cy="198" r="17.5"/>\n\t<circle cx="145.9" cy="205.2" r="17.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ES.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n\t<rect y="312.882" fill="#D80027" width="512" height="113.775"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/ET.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n<g>\n\t<path fill="#20AA46" d="M0,0h22.5v5H0V0z"/>\n\t<path fill="#E92F3B" d="M0,10h22.5v5H0V10z"/>\n\t<path fill="#FADF50" d="M0,5h22.5v5H0V5z"/>\n\t<circle fill="#205CCA" cx="11.3" cy="7.5" r="5.2"/>\n\t<path fill="#FFDB3D" d="M11.2,9.2L8.8,11l0.9-2.9L7.3,6.3l3,0l1-2.8l1,2.9l3,0l-2.4,1.8l0.9,2.9L11.2,9.2z M11.2,8.2l0.9,0.6l-0.3-1.1\n\t\tl0.9-0.7l-1.1,0l-0.4-1.1l-0.4,1.1l-1.1,0l0.9,0.7l-0.3,1.1C10.3,8.9,11.2,8.2,11.2,8.2z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#2E52B2" points="512,129.3 512,212 203.7,212 203.7,341.3 121,341.3 121,212 0,212 0,129.3 121,129.3 121,0 203.7,0\n\t203.7,129.3 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/FJ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#2E52B2" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,22.6 209.9,53.3 256,53.3 256,117.3 209.9,117.3 256,148 256,170.7 233.4,170.7 160,121.7\n\t160,170.7 96,170.7 96,121.7 22.6,170.7 0,170.7 0,148 46.1,117.3 0,117.3 0,53.3 46.1,53.3 0,22.6 0,0 22.6,0 96,48.9 96,0 160,0\n\t160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t\t144,69.3 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.3 80,53.3 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.3 176,53.3 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.3 80,53.3 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.3 176,53.3 \t"/>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.3 80,117.3 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.3 176,117.3 \t"/>\n</g>\n<g>\n\t<path fill="#F3F3F3" d="M307.1,127.1v92c0,61.6,80.5,80.5,80.5,80.5S468,280.6,468,219v-92l-80.5-23L307.1,127.1z"/>\n\t<path fill="#D80027" d="M468,132.8V98.3H307.1v34.5h69v69h-69v23v0h69V296c6.9,2.5,11.5,3.5,11.5,3.5s4.6-1.1,11.5-3.5v-71.2h69v0v-23\n\t\th-69v-69H468z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,30.6 210.8,55.7 256,55.7 256,115 196.9,115 256,147.8 256,170.7 229.3,170.7 155.8,129.8\n\t155.8,170.7 100.2,170.7 100.2,122.1 12.7,170.7 0,170.7 0,140.1 45.2,115 0,115 0,55.7 59.1,55.7 0,22.8 0,0 26.7,0 100.2,40.8\n\t100.2,0 155.8,0 155.8,48.6 243.3,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t144,69.3 "/>\n<polygon fill="#0052B4" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#FFFFFF" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<g>\n\t<polygon fill="#D80027" points="155.8,115 256,170.7 256,154.9 184.2,115 \t"/>\n\t<polygon fill="#D80027" points="71.8,115 0,154.9 0,170.7 0,170.7 100.2,115 \t"/>\n</g>\n<polygon fill="#0052B4" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#FFFFFF" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<g>\n\t<polygon fill="#D80027" points="100.2,55.6 0,0 0,15.7 71.8,55.6 \t"/>\n\t<polygon fill="#D80027" points="184.2,55.6 256,15.7 256,0 256,0 155.8,55.6 \t"/>\n</g>\n<g transform="translate(13 4)">\n\t<path fill="#1F8BDE" d="M299.2,190.2v-90c0-8.5,6.5-15.3,15-15.3h120.5c8.3,0,15,6.8,15,15.3v90\n\t\t\tc0,75.2-75.2,105.3-75.2,105.3S299.2,265.4,299.2,190.2z"/>\n\t<path fill="#FFFFFF" d="M299.2,190.2v-90c0-8.5,6.5-15.3,15-15.3h120.5c8.3,0,15,6.8,15,15.3v90c0,75.2-75.2,105.3-75.2,105.3\n\t\tS299.2,265.4,299.2,190.2z M378.8,276.5c7.9-4.5,15.9-10,23.2-16.7c20.5-18.5,32.6-41.4,32.6-69.7v-90c0-0.3-120.4-0.3-120.4-0.3\n\t\tl0,90.3c0,28.3,12.1,51.2,32.6,69.7c8.3,7.5,17.6,13.9,27.6,19C375.8,278.2,377.2,277.4,378.8,276.5z"/>\n\t<path fill="#187536" d="M334.1,189.4c-2.6-7.9,1.7-14.3,10.1-14.3h60.5c8.2,0,12.8,6.3,10.1,14.3l-5.5,16.5c-2.6,7.9-8.9,9.2-15.8,4\n\t\tc0,0,2.6-4.8-19.1-4.8c-21.7,0-19.1,4.8-19.1,4.8c-6.1,5.7-13.1,4-15.8-4C339.6,206,334.1,189.4,334.1,189.4z"/>\n\n\t<path fill="#FFFFFF" d="M344.4,175.1c8.1,1.6,17.8-15,30.1-15c13.1,0,21.8,17.1,30.1,15c7.4-1.8,15-22.2,15-30.1\n\t\tc0-16.6-20.2-30.1-45.1-30.1c-24.9,0-45.1,13.5-45.1,30.1C329.3,153.5,336,173.5,344.4,175.1z"/>\n\n\t<path fill="#FFFFFF" d="M343,266.7c6.2,0.4,12.5-1.8,17.2-6.5l9-9c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c4.7,4.7,11,6.9,17.1,6.5\n\t\tc5.3-0.3,32.5-33.5,25.7-32.6c-4.6,0.6-9.1,2.8-12.7,6.3c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9\n\t\tc-8.7-8.8-22.9-8.8-31.7-0.1c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-3.5-3.5-7.8-5.6-12.3-6.3\n\t\tC311,233.1,337.8,266.4,343,266.7z M309.1,206c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c8.8,8.7,22.9,8.7,31.7,0l9-9\n\t\tc2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0l9,9c8.8,8.7,22.9,8.7,31.7,0l9-9c2.9-2.9,7.5-2.9,10.4,0c0,0,0,0,0,0c0,0,5.5-14.8,2.5-15.9\n\t\tc-7.9-2.9-17.2-1.2-23.5,5.2c0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-8.7-8.8-22.9-8.8-31.7-0.1\n\t\tc0,0,0,0-0.1,0.1l-9,9c-2.9,2.9-7.5,2.9-10.4,0c0,0,0,0,0,0l-9-9c-6.2-6.2-15.1-8-22.8-5.5C304.1,191,309.1,206,309.1,206z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#338AF3" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256,37.9 266.1,69.1 299,69.1 272.4,88.4 282.6,119.6 256,100.3 229.4,119.6 239.6,88.4 213,69.1\n\t\t245.9,69.1 \t"/>\n\t<polygon fill="#FFFFFF" points="123.2,170.7 154.4,160.5 154.4,127.7 173.7,154.3 204.9,144.1 185.6,170.7 204.9,197.2 173.7,187.1\n\t\t154.4,213.6 154.4,180.8 \t"/>\n\t<polygon fill="#FFFFFF" points="256,303.5 245.9,272.3 213,272.3 239.6,253 229.4,221.7 256,241 282.6,221.7 272.4,253 299,272.3\n\t\t266.1,272.3 \t"/>\n\t<polygon fill="#FFFFFF" points="388.8,170.7 357.6,180.8 357.6,213.6 338.3,187.1 307.1,197.2 326.4,170.7 307.1,144.1 338.3,154.3\n\t\t357.6,127.7 357.6,160.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/FO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<polygon fill="#0F61A5" points="512,214.5 206.2,214.5 206.2,341.3 183.7,341.3 141,341.3 118.4,341.3 118.4,214.5 0,214.5 0,192\n\t0,149.3 0,126.8 118.4,126.8 118.4,0 141,0 183.7,0 206.2,0 206.2,126.8 512,126.8 512,149.3 512,192 "/>\n<polygon fill="#E50E3D" points="512,149.3 512,192 183.7,192 183.7,341.3 141,341.3 141,192 0,192 0,149.3 141,149.3 141,0 183.7,0\n\t183.7,149.3 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/FR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GB.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#FFFFFF" width="512" height="341.337"/>\n<polygon fill="#D80027" points="288,85.33 224,85.33 224,223.996 0,223.996 0,287.996 224,287.996 224,426.662 288,426.662 288,287.996 512,287.996 512,223.996 288,223.996 "/>\n<g>\n\t<polygon fill="#0052B4" points="393.785,315.358 512,381.034 512,315.358 "/>\n\t<polygon fill="#0052B4" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n\t<polygon fill="#0052B4" points="458.634,426.662 311.652,344.998 311.652,426.662 "/>\n</g>\n<polygon fill="#FFFFFF" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n<polygon fill="#D80027" points="311.652,315.358 512,426.662 512,395.188 368.307,315.358 "/>\n<g>\n\t<polygon fill="#0052B4" points="90.341,315.356 0,365.546 0,315.356 "/>\n\t<polygon fill="#0052B4" points="200.348,329.51 200.348,426.661 25.491,426.661 "/>\n</g>\n<polygon fill="#D80027" points="143.693,315.358 0,395.188 0,426.662 0,426.662 200.348,315.358 "/>\n<g>\n\t<polygon fill="#0052B4" points="118.215,196.634 0,130.958 0,196.634 "/>\n\t<polygon fill="#0052B4" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n\t<polygon fill="#0052B4" points="53.366,85.33 200.348,166.994 200.348,85.33 "/>\n</g>\n<polygon fill="#FFFFFF" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n<polygon fill="#D80027" points="200.348,196.634 0,85.33 0,116.804 143.693,196.634 "/>\n<g>\n\t<polygon fill="#0052B4" points="421.659,196.636 512,146.446 512,196.636 "/>\n\t<polygon fill="#0052B4" points="311.652,182.482 311.652,85.331 486.509,85.331 "/>\n</g>\n<polygon fill="#D80027" points="368.307,196.634 512,116.804 512,85.33 512,85.33 311.652,196.634 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#c60a0a" width="512" height="341.3"/>\n<polygon fill="#3E8446" points="256,170.7 44.5,296.8 44.5,44.5 "/>\n<g>\n\t<polygon fill="#FFDA44" points="256,170.7 467.5,296.8 44.5,296.8 \t"/>\n\t<polygon fill="#FFDA44" points="467.5,44.5 256,170.7 44.5,44.5 \t"/>\n</g>\n<polygon fill="#3E8446" points="467.5,44.5 467.5,296.8 256,170.7 "/>\n<g fill="#FFDA44">\n\t<polygon points="256,10.4 259.3,20.6 270,20.6 261.4,26.9 264.7,37.1 256,30.8 247.3,37.1 250.6,26.9 242,20.6\n\t\t252.7,20.6 \t"/>\n\t<polygon points="170.1,10.4 173.4,20.6 184.1,20.6 175.5,26.9 178.8,37.1 170.1,30.8 161.4,37.1 164.7,26.9\n\t\t156.1,20.6 166.8,20.6 \t"/>\n\t<polygon points="341.9,10.4 345.2,20.6 356,20.6 347.3,26.9 350.6,37.1 341.9,30.8 333.2,37.1 336.5,26.9 327.9,20.6\n\t\t338.6,20.6 \t"/>\n\t<polygon points="256,304.2 259.3,314.4 270,314.4 261.4,320.7 264.7,330.9 256,324.6 247.3,330.9 250.6,320.7\n\t\t242,314.4 252.7,314.4 \t"/>\n\t<polygon points="170.1,304.2 173.4,314.4 184.1,314.4 175.5,320.7 178.8,330.9 170.1,324.6 161.4,330.9 164.7,320.7\n\t\t156.1,314.4 166.8,314.4 \t"/>\n\t<polygon points="341.9,304.2 345.2,314.4 356,314.4 347.3,320.7 350.6,330.9 341.9,324.6 333.2,330.9 336.5,320.7\n\t\t327.9,314.4 338.6,314.4 \t"/>\n</g>\n<g>\n\t<circle fill="#c60a0a" cx="244.5" cy="170.7" r="76.2"/>\n\t<polygon fill="#FFDA44" points="244.5,110.1 258.1,151.9 302.1,151.9 266.5,177.7 280.1,219.5 244.5,193.7 209,219.5 222.6,177.7\n\t\t187,151.9 231,151.9 \t"/>\n</g>\n<path fill="#FFDA44" d="M107.7,167.8c4.4,6.9,2.3,16.1-4.6,20.5s-16.1,2.3-20.5-4.6c-7.9-12.5-3.3-33-3.3-33S99.7,155.3,107.7,167.8z"\n\t/>\n<circle fill="#A2001D" cx="99.1" cy="182.1" r="7.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GE-AB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="0" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="97.5" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="195" fill="#6DA544" width="512" height="48.8"/>\n\t<rect y="292.6" fill="#6DA544" width="512" height="48.8"/>\n</g>\n<rect y="0" fill="#D80027" width="256" height="146.3"/>\n<polygon fill="#FFFFFF" points="116.9,114.4 109.4,99.6 109.4,69.9 128,59 146.6,69.9 146.6,92.2 154,84.8 158.2,87.8 154,99.6\n\t139.1,114.4 "/>\n<circle fill="#FFFFFF" cx="82" cy="82.8" r="5.4"/>\n<circle fill="#FFFFFF" cx="90.8" cy="61.7" r="5.4"/>\n<circle fill="#FFFFFF" cx="106.6" cy="46.2" r="5.4"/>\n<circle fill="#FFFFFF" cx="128" cy="40.8" r="5.4"/>\n<circle fill="#FFFFFF" cx="149.4" cy="46.2" r="5.4"/>\n<circle fill="#FFFFFF" cx="165.2" cy="61.7" r="5.4"/>\n<circle fill="#FFFFFF" cx="174" cy="82.8" r="5.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GE-OS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<rect width="450" height="300" fill="#FFFFFF"/>\n<rect width="450" height="200" y="100" fill="#FF0000"/>\n<rect width="450" height="100" y="200" fill="#FFDF00"/>\n</svg>',"./assets/country-flag-icons/3x2/GE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n\t<path fill="#FFFFFF" d="M0.8,0h21v15h-21V0z"/>\n\t<path fill="#eb000e" d="M9.8,6H0v3h9.8v6h3V9h9.8V6h-9.8V0h-3V6z"/>\n\t<path fill="#eb000e" d="M17.3,2.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1l-1.2-0.2l0.2,1.2h-1l0.2-1.2l-1.2,0.2v-1L17.3,2.7z M4.6,2.7L4.4,1.5\n\t\th1L5.2,2.7l1.2-0.2v1L5.2,3.3l0.2,1.2h-1l0.2-1.2L3.4,3.5v-1C3.4,2.5,4.6,2.7,4.6,2.7z M4.6,11.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1\n\t\tl-1.2-0.2l0.2,1.2h-1l0.2-1.2l-1.2,0.2v-1C3.4,11.5,4.6,11.7,4.6,11.7z M17.3,11.7l-0.2-1.2h1l-0.2,1.2l1.2-0.2v1l-1.2-0.2l0.2,1.2\n\t\th-1l0.2-1.2l-1.2,0.2v-1L17.3,11.7z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<polygon fill="#FDEB01" points="0,0 90,60 0,60 "/>\n<polygon fill="#58A846" points="90,0 90,60 0,0 "/>\n<polygon fill="#ED3D24" stroke="#A02021" stroke-miterlimit="10" points="54.1,35.3 68.8,24.6 50.6,24.6 45,7.3 39.4,24.6 21.2,24.6 35.9,35.3 30.3,52.7 45,42 59.7,52.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFFFFF" width="513" height="342"/>\n<polygon fill="#D80027" points="308,0 204,0 204,118.7 0,118.7 0,222.7 204,222.7 204,342 308,342 308,222.7 513,222.7 513,118.7 308,118.7 "/>\n<polygon fill="#FFDA44" points="368.6,188 394.6,205.3 394.6,136 368.6,153.3 273.3,153.3 273.3,58.1 290.6,32.1 221.4,32.1 238.7,58.1 238.7,153.3 143.4,153.3 117.4,136 117.4,205.3 143.4,188 238.7,188 238.7,283.2 221.4,309.2 290.6,309.2 273.3,283.2 273.3,188 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#496E2D" width="512" height="113.775"/>\n<polygon points="255.883,199.111 270.002,242.569 310.368,245.769 273.399,272.63 292.852,312.889 255.883,286.03 218.913,312.889 233.036,269.43 196.067,242.569 241.763,242.569 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="230" fill="#D80027" width="513" height="112"/>\n<polygon fill="#D80027" stroke="#000000" stroke-miterlimit="10" points="363.1,131.8 363.1,99.1 374,99.1 374,77.3 352.1,77.3 352.1,88.2 330.3,88.2 330.3,77.3 308.5,77.3\n\t308.5,99.1 319.4,99.1 319.4,131.8 297.6,131.8 297.6,55.5 308.5,55.5 308.5,33.7 286.7,33.7 286.7,44.6 275.8,44.6 275.8,33.7\n\t254,33.7 254,44.6 243.1,44.6 243.1,33.7 221.3,33.7 221.3,55.5 232.2,55.5 232.2,131.8 210.4,131.8 210.4,99.1 221.3,99.1\n\t221.3,77.3 199.5,77.3 199.5,88.2 177.7,88.2 177.7,77.3 155.9,77.3 155.9,99.1 166.8,99.1 166.8,131.8 145,131.8 145,219\n\t384.9,219 384.9,131.8 "/>\n<path fill="#FFDA44" stroke="#000000" stroke-miterlimit="10" d="M264.9,235.5l-24.2,18.2l19.1,14.3v31.3h-23.2v9l23,0l0,7.9l-23,0v9.3H270V268l19.1-14.3L264.9,235.5z\n\t M264.9,260.8l-10.1-7.1l10.1-7.1l10.1,7.1L264.9,260.8z"/>\n<path d="M239.6,209.7v-27.9c0,0,0.1-22.3,25-22.3c24.8,0,25.7,22,25.7,22v28.2H239.6z"/>\n<path d="M170.5,209.7v-24.3c0,0,0.1-18.7,19.6-18.7s20.2,18.4,20.2,18.4v24.5H170.5z"/>\n<path d="M169.1,209.7v-24.3c0,0,0.1-18.7,19.6-18.7s20.2,18.4,20.2,18.4v24.5H169.1z"/>\n<path d="M320.9,209.7v-24.3c0,0,0.1-18.7,19.6-18.7c19.5,0,20.2,18.4,20.2,18.4v24.5H320.9z"/>\n<path d="M329.3,132v-15.7c0,0,0.1-12.1,11.3-12.1c11.3,0,11.7,11.9,11.7,11.9V132H329.3z"/>\n<path d="M250.5,132v-23.7c0,0,0.1-18.3,14.3-18.3c14.2,0,14.7,18,14.7,18v24H250.5z"/>\n<path d="M177.5,132v-15.7c0,0,0.1-12.1,11.3-12.1s11.7,11.9,11.7,11.9V132H177.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="513" height="342"/>\n<polygon fill="#FFFFFF" points="513,0 513,171 0,171 0,0 "/>\n<circle fill="#FFFFFF" cx="185.8" cy="171.2" r="117.8"/>\n<path fill="#D80027" d="M68,171c0-65.1,52.8-117.8,117.8-117.8c65.1,0,117.8,52.8,117.8,117.8"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="322.783" fill="#1a7e25" width="512" height="103.88"/>\n<rect y="85.337" fill="#cf0d19" width="512" height="104.515"/>\n<rect y="210.877" fill="#0052B4" width="512" height="89.656"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFDA44" width="512" height="342"/>\n<rect x="342" fill="#6DA544" width="171" height="342"/>\n<rect fill="#D80027" width="171" height="342"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="113.8"/>\n<rect y="227.6" fill="#D80027" width="513" height="114.4"/>\n<polygon fill="#0070C8" points="126,170.7 0,341.3 0,0 "/>\n<path fill="none" stroke="#000000" stroke-miterlimit="10" d="M233.8,139.4v40.4c0,35.6,35.6,35.6,35.6,35.6s35.6,0,35.6-35.6v-40.4H233.8z"/>\n<polygon fill="#786145" points="264.5,179.8 274.3,179.8 278.3,205.6 260.5,205.6 "/>\n<path fill="#6DA544" d="M287.2,162c0-9.8-8-14.8-17.8-14.8s-17.8,5-17.8,14.8c-4.9,0-8.9,4-8.9,8.9s4,8.9,8.9,8.9c2.9,0,32.6,0,35.6,0\n\tc4.9,0,8.9-4,8.9-8.9S292.1,162,287.2,162z"/>\n<g fill="#FFDA00" stroke="#000000" stroke-miterlimit="10">\n\t<polygon points="230.7,120 232.6,123.3 236.4,123.3 234.5,126.6 236.4,129.8 232.6,129.8 230.7,133.1 228.8,129.8\n\t\t225,129.8 226.9,126.6 225,123.3 228.8,123.3 \t"/>\n\t<polygon points="246,120 247.9,123.3 251.6,123.3 249.7,126.6 251.6,129.8 247.9,129.8 246,133.1 244.1,129.8\n\t\t240.3,129.8 242.2,126.6 240.3,123.3 244.1,123.3 \t"/>\n\t<polygon points="261.3,120 263.2,123.3 266.9,123.3 265,126.6 266.9,129.8 263.2,129.8 261.3,133.1 259.4,129.8\n\t\t255.6,129.8 257.5,126.6 255.6,123.3 259.4,123.3 \t"/>\n\t<polygon points="277.1,120 279,123.3 282.8,123.3 280.9,126.6 282.8,129.8 279,129.8 277.1,133.1 275.2,129.8\n\t\t271.5,129.8 273.3,126.6 271.5,123.3 275.2,123.3 \t"/>\n\t<polygon points="293.1,120 295,123.3 298.8,123.3 296.9,126.6 298.8,129.8 295,129.8 293.1,133.1 291.2,129.8\n\t\t287.5,129.8 289.3,126.6 287.5,123.3 291.2,123.3 \t"/>\n\t<polygon points="308.1,120 310,123.3 313.7,123.3 311.8,126.6 313.7,129.8 310,129.8 308.1,133.1 306.2,129.8\n\t\t302.4,129.8 304.3,126.6 302.4,123.3 306.2,123.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 513 342">\n\t<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n\t<g fill="#1571CC">\n\t\t<rect y="0" width="513" height="38"/>\n\t\t<rect y="76" width="513" height="38"/>\n\t\t<rect y="152" width="513" height="38"/>\n\t\t<rect y="228" width="513" height="38"/>\n\t\t<rect y="304" width="513" height="38"/>\n\t</g>\n\t<rect y="0" fill="#1571CC" width="190" height="190"/>\n\t<g>\n\t\t<rect y="76" fill="#FFFFFF" width="190" height="38"/>\n\t\t<rect x="76" y="0" fill="#FFFFFF" width="38" height="190"/>\n\t</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<g>\n\t<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 \t"/>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 \t"/>\n\t<g>\n\t\t<polygon fill="#D80027" points="0,170.7 0,159.7 62.5,117.4 85.1,117.4 7.3,170.7 \t\t"/>\n\t</g>\n\t<polygon fill="#D80027" points="7.3,0.1 85.1,53.3 62.5,53.3 0,11.1 0,0.1 \t"/>\n\t<polygon fill="#D80027" points="256,0.1 256,11.1 193.5,53.4 170.9,53.4 248.7,0.1 \t"/>\n\t<polygon fill="#D80027" points="248.7,170.7 170.9,117.4 193.5,117.4 256,159.7 256,170.7 \t"/>\n</g>\n<g>\n\t<ellipse fill="#FFFFFF" cx="443.4" cy="233.6" rx="29" ry="43.5"/>\n\t<ellipse fill="#FFCE00" cx="406.9" cy="317.7" rx="22" ry="9.3"/>\n\t<ellipse fill="#FFCE00" cx="364" cy="317.7" rx="22" ry="9.3"/>\n\t<polygon fill="#39B200" points="342,190.1 385.4,277 428.9,190.1 \t"/>\n\t<ellipse fill="#9B9B9B" cx="327.5" cy="233.6" rx="29" ry="43.5"/>\n\t<path fill="#757575" d="M371,175.6l-14.5,14.5h57.9l-14.5-14.5l14.5-43.5c0,0-13-29-29-29s-29,29-29,29L371,175.6z"/>\n\t<circle fill="#C6B56F" cx="385.4" cy="67" r="29"/>\n\t<circle fill="#A54A00" cx="386" cy="88.7" r="29"/>\n\t<circle fill="#FFFFFF" cx="443.4" cy="117.7" r="29"/>\n\t<circle fill="#0049FF" cx="342.2" cy="146.7" r="29"/>\n\t<circle fill="#0041F9" cx="429.8" cy="146.7" r="29"/>\n\t<circle fill="#F7D71E" cx="386" cy="233.6" r="29"/>\n\t<circle fill="#CEC851" cx="457.9" cy="190.1" r="29"/>\n\t<circle fill="#FFFFFF" cx="385.4" cy="289.5" r="29"/>\n\t<path fill="#7C0B29" d="M371,135.7l14.5-3.5l14.5,3.5c0,7.5-14.5,11-14.5,11S371,143.2,371,135.7z"/>\n\t<circle fill="#FFFFFF" cx="327.5" cy="117.4" r="29"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/GT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g>\n\t<rect y="0" fill="#338AF3" width="171" height="342"/>\n\t<rect x="342" y="0" fill="#338AF3" width="171" height="342"/>\n</g>\n<circle fill="#DCC26D" cx="256" cy="155.8" r="25.5"/>\n<path fill="#628A40" d="M194.2,155.9c0,22.1,11.8,42.5,30.8,53.5c5.9,3.4,13.5,1.4,16.9-4.5c3.4-5.9,1.4-13.5-4.5-16.9\n\tc-11.5-6.6-18.5-18.9-18.5-32.1c0-6.8-5.5-12.4-12.4-12.4S194.2,149,194.2,155.9z M289.3,208c17.8-11.4,28.6-31,28.5-52.1\n\tc0-6.8-5.5-12.4-12.4-12.4c-6.8,0-12.4,5.5-12.4,12.4c0,12.7-6.5,24.5-17.1,31.3c-5.8,3.6-7.7,11.2-4.1,17c3.6,5.8,11.2,7.7,17,4.1\n\tC289,208.2,289.1,208.1,289.3,208z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GU.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#D80027" width="512" height="341.3"/>\n<rect x="11.1" y="11.1" fill="#0052B4" width="489.7" height="319.1"/>\n<path fill="#7DBEF1" d="M256,285.3c0,0,76.4-51.3,76.4-114.6S256,56,256,56s-76.4,51.3-76.4,114.6S256,285.3,256,285.3z"/>\n<polygon fill="#1C8AE6" points="179.8,180.7 332.4,180.7 303.1,245.6 207.9,245.6 "/>\n<path fill="#FFF042" d="M192.3,205.9c0,0,40.5,38.2,51,38.2c12.4,0,12.6-18.4,25.5-25.5c20.2-11.1,51-12.7,51-12.7l-22.8,42.8l-41,36.6\n\tl-46.8-39.7L192.3,205.9z"/>\n<path fill="#259C7B" d="M256,157.5l-22.5,15.6l7.9-26.2l-21.8-16.5l27.4-0.5l9-25.9l9,25.9l27.4,0.5L270.6,147l7.9,26.2L256,157.5z"/>\n<path fill="#8E5715" d="M249.7,144.6c-0.9,9.2-1.5,18.4-1.7,27.6c-0.3,11.9,0.3,20.7,2,26c2.2,6.6,7.2,12.9,14.2,18.9\n\tc5.3,4.6,10.6,8.1,14.2,10.1c3.1,1.7,7,0.6,8.7-2.4c1.7-3.1,0.6-7-2.4-8.7l0,0c-4.3-2.5-8.4-5.4-12.2-8.7\n\tc-5.4-4.6-9.1-9.2-10.4-13.3c-1.1-3.4-1.6-11.3-1.4-21.7c0.2-8.9,0.8-17.8,1.7-26.6c0.4-3.5-2.2-6.6-5.7-7\n\tC253.1,138.5,250,141.1,249.7,144.6z"/>\n<path fill="#FFFFFF" d="M217.8,170.7l25.5,38.2h-25.5V170.7z"/>\n<path fill="none" stroke="#D80027" stroke-width="12" stroke-miterlimit="10" d="M256,285.3c0,0,76.4-51.3,76.4-114.6S256,56,256,56s-76.4,51.3-76.4,114.6S256,285.3,256,285.3z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/GW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#6DA544" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFDA44" width="512" height="170.663"/>\n<rect y="85.331" fill="#D80027" width="181.793" height="341.337"/>\n<polygon points="98.32,195.127 113.427,241.624 162.321,241.624 122.766,270.364 137.874,316.862 98.32,288.125 58.764,316.862 73.875,270.364 34.321,241.624 83.212,241.624 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/GY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<path fill="#009E49" d="M0,0h900v600H0V0z"/>\n<path fill="#FFFFFF" d="M0,0l947,300L0,600V0z"/>\n<path fill="#FFD00D" d="M0,26.1L870,300L0,573.9V26.1z"/>\n<path fill="#2D2D2D" d="M0,0l450,300L0,600V0z"/>\n<path fill="#D3132F" d="M0,35l397.5,265L0,565V35z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/HK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<g fill="#FFFFFF">\n\t<path d="M274.2,119.8c-5.1,21.1-14.1,17.1-18.5,35.5c-26.1-6.3-42.1-32.5-35.9-58.6c6.3-26.1,32.5-42.1,58.5-35.9\n\t\tC269.6,97.7,278.8,100.9,274.2,119.8z"/>\n\t<path d="M206.6,135.4c18.5,11.3,11.9,18.7,28,28.6c-14,22.9-43.9,30-66.8,16c-22.9-14-30-43.9-16-66.8\n\t\tC184.1,133,190,125.3,206.6,135.4z"/>\n\t<path d="M200.6,204.6c16.5-14.1,21.4-5.5,35.8-17.8c17.4,20.4,15,51-5.4,68.4c-20.4,17.4-51,15-68.4-5.4\n\t\tC191.3,225.2,185.8,217.2,200.6,204.6z"/>\n\t<path d="M264.5,231.7c-8.3-20.1,1.4-22.1-5.9-39.6c24.8-10.3,53.2,1.5,63.4,26.3c10.3,24.8-1.5,53.2-26.3,63.4\n\t\tC281.2,246.8,271.9,249.6,264.5,231.7z"/>\n\t<path d="M310,179.3c-21.6,1.7-20.6-8.1-39.5-6.6c-2.1-26.7,17.9-50.1,44.6-52.2c26.7-2.1,50.1,17.9,52.2,44.6\n\t\tC329.6,168,329.4,177.8,310,179.3z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<path fill="#FFFFFF" d="M223.397,255.996c0.273-0.304,0.543-0.609,0.813-0.916c-0.27,0.308-0.546,0.61-0.82,0.916H223.397z"/>\n\t<polygon fill="#FFFFFF" points="189.217,297.923 200.175,320.836 224.922,315.118 213.839,337.971 233.739,353.752 208.963,359.337 209.032,384.735 189.217,368.845 169.403,384.735 169.472,359.337 144.696,353.752 164.596,337.971 153.513,315.118 178.259,320.836 "/>\n\t<polygon fill="#FFFFFF" points="387.076,326.387 392.303,337.316 404.106,334.588 398.82,345.488 408.312,353.016 396.494,355.679 396.526,367.793 387.076,360.215 377.626,367.793 377.658,355.679 365.841,353.016 375.332,345.488 370.047,334.588 381.85,337.316 "/>\n\t<polygon fill="#FFFFFF" points="338.453,210.448 343.68,221.378 355.483,218.649 350.197,229.55 359.688,237.078 347.871,239.741 347.903,251.856 338.453,244.276 329.002,251.856 329.035,239.741 317.217,237.078 326.708,229.55 321.424,218.649 333.226,221.378 "/>\n\t<polygon fill="#FFFFFF" points="387.076,144.198 392.303,155.128 404.106,152.398 398.82,163.3 408.311,170.827 396.494,173.491 396.526,185.605 387.076,178.025 377.626,185.605 377.658,173.491 365.841,170.827 375.332,163.3 370.047,152.398 381.85,155.128 "/>\n\t<polygon fill="#FFFFFF" points="429.547,193.886 434.774,204.815 446.576,202.087 441.292,212.987 450.783,220.514 438.965,223.178 438.998,235.292 429.547,227.714 420.097,235.292 420.129,223.178 408.312,220.514 417.803,212.987 412.517,202.087 424.32,204.815 "/>\n\t<polygon fill="#FFFFFF" points="399.179,251.856 403.289,264.508 416.593,264.508 405.83,272.328 409.942,284.98 399.179,277.161 388.414,284.98 392.526,272.328 381.763,264.508 395.067,264.508 "/>\n\t<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.443 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.16 100.174,85.333 155.826,85.333 155.826,133.906 243.256,85.333 "/>\n</g>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#338AF3">\n\t<rect y="0" width="513" height="114"/>\n\t<rect y="228" width="513" height="114"/>\n\t<polygon points="203.5,117.9 210.2,134.5 227.8,135.5 213.8,146.4 218.5,164.1 203.5,154.2 188.5,164.1 193.2,146.4\n\t\t179.2,135.5 196.8,134.5 \t"/>\n\t<polygon points="308.5,117.9 315.2,134.5 332.8,135.5 318.8,146.4 323.5,164.1 308.5,154.2 293.5,164.1 298.2,146.4\n\t\t284.2,135.5 301.8,134.5 \t"/>\n\t<polygon points="256,147.6 262.7,164.2 280.3,165.2 266.3,176.1 271,193.8 256,183.9 241,193.8 245.7,176.1\n\t\t231.7,165.2 249.3,164.2 \t"/>\n\t<polygon points="203.5,177.3 210.2,193.9 227.8,194.9 213.8,205.8 218.5,223.4 203.5,213.5 188.5,223.4 193.2,205.8\n\t\t179.2,194.9 196.8,193.9 \t"/>\n\t<polygon points="308.5,177.3 315.2,193.9 332.8,194.9 318.8,205.8 323.5,223.4 308.5,213.5 293.5,223.4 298.2,205.8\n\t\t284.2,194.9 301.8,193.9 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect fill="#FFFFFF" width="513" height="342"/>\n<rect fill="#D80027" width="513" height="114"/>\n<rect y="228" fill="#0052B4" width="513" height="114"/>\n<g fill="#338AF3">\n\t<polygon points="309.3,113.2 309.3,69.2 326.8,54.8 344.5,69.2 344.5,113.2 \t"/>\n\t<polygon points="203.7,113.2 203.7,69.2 186.4,54.8 168.5,69.2 168.5,113.2 \t"/>\n\t<polygon points="238.9,113.2 238.9,69.2 256.5,54.8 274.1,69.2 274.1,113.2 \t"/>\n</g>\n<g fill="#0052B4">\n\t<polygon points="309.3,113.2 274.1,113.2 274.1,69.2 291.6,54.8 309.3,69.2 "/>\n\t<polygon points="238.9,113.2 203.7,113.2 203.7,69.2 221.2,54.8 238.9,69.2 "/>\n</g>\n<path stroke="#D80027" stroke-width="1" fill="#FFFFFF" d="M168.5,113.2v101.9c0,24.3,14.4,46.2,35.4,59.4c21.3,13.4,42.1,14.7,52.6,14.7c10.5,0,31.4-1.7,52.6-14.8\n\tc21-13,35.4-35.1,35.4-59.3V113.2L168.5,113.2z"/>\n<g fill="#D80027">\n\t<rect x="168.5" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="238.9" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="309.3" y="113.2" width="35.2" height="35.2"/>\n\t<rect x="203.7" y="148.4" width="35.2" height="35.2"/>\n\t<rect x="274.1" y="148.4" width="35.2" height="35.2"/>\n\t<rect x="168.5" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="203.7" y="218.8" width="35.2" height="35.2"/>\n\t<rect x="238.9" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="309.3" y="183.6" width="35.2" height="35.2"/>\n\t<rect x="274.1" y="218.8" width="35.2" height="35.2"/>\n\t<path d="M309.3,274.3c8.6-5.4,16.2-12.3,22-20.3h-22V274.3z"/>\n\t<path d="M181.7,254c5.8,8,13.3,14.9,22,20.4V254H181.7z"/>\n\t<path d="M238.9,254v33.7c7.2,1.2,13.3,1.5,17.6,1.5c4.3,0,10.4-0.3,17.6-1.6V254H238.9z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/HT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#A2001D" width="513" height="172"/>\n<rect y="172" fill="#0052B4" width="513" height="172"/>\n<polygon fill="#FFFFFF" points="381.4,251.5 270.7,237.7 159.9,251.5 159.9,85.4 381.4,85.4 \t"/>\n<circle fill="#0052B4" cx="270.7" cy="182.3" r="55.4"/>\n<circle fill="#A2001D" cx="270.7" cy="182.3" r="27.7"/>\n<polygon fill="#6DA544" points="229.1,113.1 312.2,113.1 270.7,154.6 \t"/>\n<rect x="256.8" y="140.8" fill="#FFDA44" width="27.7" height="83"/>\n<polygon fill="#6DA544" points="314.9,215.5 226.4,215.5 159.9,251.5 381.4,251.5 \t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/HU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ID.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#A2001D" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#FF9811" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IL.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#2E52B2">\n\t<path d="M340.6,122.4h-56.1l-28-48.6l-28,48.6h-56.1l28,48.6l-28,48.6h56.1l28,48.6l28-48.6h56.1l-28-48.6L340.6,122.4\n\t\tz M293.2,171l-17.2,33.2h-38.9L219.8,171l17.2-33.2h38.9L293.2,171z M256.5,99.2l11.9,23.3h-23.9L256.5,99.2z M198.2,137.8h23.9\n\t\tl-10.8,21L198.2,137.8z M198.2,204.2l13-22.1l11.9,22.1H198.2z M256.5,241.7l-11.9-22.1h23.9L256.5,241.7z M315.9,204.2h-25\n\t\tl11.9-22.1L315.9,204.2z M289.8,137.8h26.1l-13,22.1L289.8,137.8z"/>\n\t<rect y="21.3" width="512" height="42.7"/>\n\t<rect y="277.3" width="512" height="42.7"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IM.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#E52D42" width="513" height="342"/>\n<path fill="#FFFFFF" d="M393.3,68.2h-45.8l-33.8,80.2l-34.4-22.9c0,0-24.7-59.1-34.4-68.2c-9.7-9.7-18.7-0.6-48.9,7.8\n\tc-29.6,8.4-30.8,18.7-42.2,18.7c-4.8,0-19.9-17.5-27.7-22.3c-12.1-7.8-16.9-4.2-13.9,7.2c1.2,4.8,10.9,10.9,16.9,19.9\n\tc7.8,11.5,12.7,25.9,12.7,25.9s10.9-10.3,16.9-12.1c9-2.4,19.3,1.8,31.4,0c15.1-2.4,31.4-10.9,31.4-10.9l4.2,43.4\n\tc0,0-54.3,50.7-49.5,70.6s56.1,44.6,68.2,62.7c12.1,17.5-7.2,24.1-7.2,32.6s-1.8,19.9,7.2,16.3c9-3.6,10.3-18.1,18.7-31.4\n\tc6-9,10.3-13.9,11.5-17.5c1.8-9-23.5-32-37.4-48.9c-6.6-7.8-19.9-18.7-19.9-18.7l39.2-29.6c0,0,67.6,27.7,82.6,18.7\n\tc15.1-9,19.3-98.3,19.3-98.3l47-11.5L393.3,68.2z"/>\n<path fill="#F8DD4E" d="M279.3,262.4c-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S285.3,262.4,279.3,262.4z\n\t M325.1,79.6c-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S331.1,79.6,325.1,79.6z M325.1,170.7\n\tc-6,0-11.5-4.8-11.5-11.5c0-6,4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5C336,165.9,331.1,170.7,325.1,170.7z M188.2,216.5\n\tc-6,0-11.5-4.8-11.5-11.5c0-6,4.8-11.5,11.5-11.5c6.6,0,11.5,4.8,11.5,11.5C199.7,211.7,194.2,216.5,188.2,216.5z M233.4,79.6\n\tc-6,0-11.5-4.8-11.5-11.5s4.8-11.5,11.5-11.5c6,0,11.5,4.8,11.5,11.5S240.1,79.6,233.4,79.6z M256.3,170.7c-6,0-11.5-10.3-11.5-22.9\n\ts4.8-22.9,11.5-22.9c6,0,11.5,10.3,11.5,22.9S263,170.7,256.3,170.7z M142.3,125.5c-6,0-11.5-4.8-11.5-11.5\n\tc0-6.6,4.8-11.5,11.5-11.5c6.6,0,11.5,4.8,11.5,11.5C153.8,120.6,149,125.5,142.3,125.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n\t<path fill="#181A93" d="M17.3,0h478.4v342H17.3V0z"/>\n\t<path fill="#FFA44A" d="M0,0h513v114H0V0z"/>\n\t<path fill="#1A9F0B" d="M0,228h513v114H0V228z"/>\n\t<path fill="#FFFFFF" d="M0,114h513v114H0V114z"/>\n\t<ellipse fill="#FFFFFF" cx="256.5" cy="171" rx="34.2" ry="34.2"/>\n\t<path fill="#181A93" d="M256.5,216.6c-25.1,0-45.6-20.5-45.6-45.6s20.5-45.6,45.6-45.6s45.6,20.5,45.6,45.6S281.6,216.6,256.5,216.6z M256.5,205.2\n\t\tc18.2,0,34.2-16,34.2-34.2s-15.9-34.2-34.2-34.2s-34.2,16-34.2,34.2S238.3,205.2,256.5,205.2z"/>\n\t<ellipse fill="#181A93" cx="256.5" cy="171" rx="22.8" ry="22.8"/>\n</svg>\n',"./assets/country-flag-icons/3x2/IO.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<path fill="#FFFFFF" d="M0-0.3h513V342H0V-0.3z"/>\n<path fill="#0052B4" d="M462.9,198.1c-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12\n\tc-9,0-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12c-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9\n\tc-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12v22l19,10c11,6,21,12,31.1,12s21-6,32.1-12\n\tc6-4,16-10,20-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-10,21-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12\n\tc7-4,16-10,20-10s14,6,21,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10s14,6,20,10c11,6,22,12,32.1,12s20-6,31.1-12l19-10\n\tv-22c-10,0-20,6-30.1,12C475.9,193.1,466.9,198.1,462.9,198.1z M0,31.7l19,10c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-10,20-10\n\ts13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-10,21-10s13,6,20,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10\n\ts14,6,21,10c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-10,20-10s14,6,20,10c11,6,22,12,32.1,12s20-6,31.1-12l19-10v-22\n\tc-10,1-20,6-30.1,12c-7,4-16,9-20,9s-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12\n\ts-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12s-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12\n\ts-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-11-30.1-12V31.7z M462.9,86.9c-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12c-9,0-20,6-31.1,12c-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12\n\tc-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12\n\tv22l19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9\n\tc11,6,22,12,32.1,12s20-6,31.1-12l19-9v-22c-10,0-20,6-30.1,12C475.9,81.8,466.9,86.9,462.9,86.9z M513,120.9c-10,1-20,6-30.1,12\n\tc-7,4-16,10-20,10s-14-6-21-10c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,10-20,10s-14-6-20-10c-11-6-22-12-32.1-12s-20,6-31.1,12\n\tc-7,4-16,10-20,10s-13-6-20-10c-11-6-22-12-31.1-12s-21,6-32.1,12c-6,4-16,10-20,10s-13-6-20-10c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-17,10-21,10s-13-6-20-10c-10-6-20-11-30.1-12v23c4,1,13,5,19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9c11,6,22,12,32.1,12s20-6,31.1-12c6-4,15-8,19-9V120.9z M462.9,254.2\n\tc-4,0-14-5-21-9c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-16,9-20,9s-14-5-20-9c-11-6-22-12-32.1-12c-9,0-20,6-31.1,12\n\tc-7,4-16,9-20,9s-13-5-20-9c-11-6-22-12-31.1-12c-10,0-21,6-32.1,12c-6,4-16,9-20,9s-13-5-20-9c-11-6-21-12-31.1-12s-20,6-31.1,12\n\tc-7,4-17,9-21,9s-13-5-20-9c-10-6-20-12-30.1-12v22l19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9\n\tc11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9c11,6,22,12,32.1,12s20-6,31.1-12l19-9v-22c-10,0-20,6-30.1,12\n\tC475.9,249.2,466.9,254.2,462.9,254.2z M513,288.2c-10,1-20,6-30.1,12c-7,4-16,10-20,10s-14-6-21-10c-11-6-21-12-31.1-12\n\ts-20,6-31.1,12c-7,4-16,10-20,10s-14-6-20-10c-11-6-22-12-32.1-12s-20,6-31.1,12c-7,4-16,10-20,10s-13-6-20-10c-11-6-22-12-31.1-12\n\ts-21,6-32.1,12c-6,4-16,10-20,10s-13-6-20-10c-11-6-21-12-31.1-12s-20,6-31.1,12c-7,4-17,10-21,10s-13-6-20-10c-10-6-20-11-30.1-12\n\tv23c4,0,13,5,19,9c11,6,21,12,31.1,12s21-6,32.1-12c6-4,16-9,20-9s13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,17-9,21-9\n\ts13,5,20,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,21,9c11,6,21,12,31.1,12s20-6,31.1-12c7-4,16-9,20-9s14,5,20,9\n\tc11,6,22,12,32.1,12s20-6,31.1-12c6-4,15-9,19-9V288.2z"/>\n<path fill="#FFFFFF" d="M0-0.3h256v171H0V-0.3z"/>\n<path fill="#496E2D" d="M278,170.7"/>\n<g fill="#A2001D">\n<path d="M389.8,119.9H408v78.8h-18.3L389.8,119.9L389.8,119.9z M389.8,237.7H408v75.1h-18.3L389.8,237.7L389.8,237.7z"\n\t/>\n<path d="M0-85.3"/>\n<path d="M0-85.3"/>\n</g>\n<g fill="#D80027">\n\t<path d="M144-0.3h-32v70H0v32h112v69h32v-69h112v-32H144V-0.3z"/>\n\t<path d="M0-0.3v15l57,39h23L0-0.3z"/>\n\t<path d="M256-0.3v15l-57,39h-23L256-0.3z"/>\n\t<path d="M0-0.3v15l57,39h23L0-0.3z"/>\n\t<path d="M256-0.3v15l-57,39h-23L256-0.3z"/>\n\t<path d="M0,170.7v-15l57-38h23L0,170.7z"/>\n\t<path d="M256,170.7v-15l-57-38h-23L256,170.7z"/>\n</g>\n<g fill="#2E52B2">\n\t<path d="M0,22.7v31h46L0,22.7z M96-0.3v49l-73-49C23-0.3,96-0.3,96-0.3z"/>\n\t<path d="M256,22.7v31h-46L256,22.7z M160-0.3v49l73-49C233-0.3,160-0.3,160-0.3z"/>\n\t<path d="M0,22.7v31h46L0,22.7z M96-0.3v49l-73-49C23-0.3,96-0.3,96-0.3z"/>\n\t<path d="M256,22.7v31h-46L256,22.7z M160-0.3v49l73-49C233-0.3,160-0.3,160-0.3z"/>\n\t<path d="M0,147.7v-30h46L0,147.7z M96,170.7v-49l-73,49H96z"/>\n\t<path d="M256,147.7v-30h-46L256,147.7z M160,170.7v-49l73,49H160z"/>\n</g>\n<path fill="#5DA51E" stroke="#45602C" stroke-width="4" stroke-miterlimit="10" d="M462.8,91.5h-29.1l25.7-25.7c4.5-4.4,4.5-11.4,0-15.8l-3.4-3.4c-4.4-4.4-11.4-4.4-15.8,0l-25.9,25.9V37.4\n\tc0-6.2-5.1-11.3-11.3-11.3h-4.7c-6.2,0-11.3,5.1-11.3,11.3v31.7l-23.5-23.8c-4.7-4.7-12.2-4.7-16.9,0l-3.6,3.6\n\tc-4.7,4.7-4.7,12.4,0,17.2l25,25.4h-30.6c-6,0-10.9,4.9-10.9,10.9v4.6c0,6,4.9,10.9,10.9,10.9H369l-20.7,20.7\n\tc-4.4,4.4-4.4,11.4,0,15.8l3.4,3.4c4.4,4.4,11.4,4.4,15.8,0l19.6-19.6V167c0,6.1,5.1,11.1,11.3,11.3h4.7c6.2,0,11.3-5.1,11.3-11.3\n\tv-28.3l22.2,22.6c4.7,4.7,12.4,4.7,17.1,0l3.6-3.6c4.7-4.7,4.7-12.4,0-17.2L435.2,118h27.6c5.9,0,10.7-4.9,10.9-10.9v-4.6\n\tC473.7,96.4,468.8,91.5,462.8,91.5z"/>\n<path fill="#5DA51E" d="M0,0"/>\n<path fill="#E2DD24" stroke="#525625" stroke-width="4" stroke-miterlimit="10" d="M439.2,249.1h-79.8c0,0-0.9-13.4-6-21.8c-6.2-10.4-13.9-28.1-1.4-36.7c15.9-10.9,33.7,0.8,48.2,0.8\n\tc11.8,0.1,26.9-14,45-0.8c12.2,8.9,3.9,28.2-1.3,36.7C436.9,238.8,439.2,249.1,439.2,249.1z"/>\n</svg>',"./assets/country-flag-icons/3x2/IQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#CE1126" width="513" height="114"/>\n<rect y="228" width="513" height="114"/>\n<g fill="#547C31">\n\t<path d="M219.2,160.7c-0.1,0-0.2,0-0.2,0l0,0h-29.1c1.5-5.7,6.6-9.9,12.8-9.9v-19.9c-18.3,0-33.1,14.9-33.1,33.1v16.2\n\t\tv0.3H219c0.1,0,0.2,0,0.2,0c1.8,0,3.3,1.5,3.3,3.3v6.6h-66.2v19.9h86.1v-26.5C242.4,171.1,232,160.7,219.2,160.7z"/>\n\t<polygon points="268.8,190.5 268.8,130.9 249,130.9 249,210.4 282.1,210.4 282.1,190.5 \t"/>\n\t<polygon points="335,190.5 335,130.9 315.2,130.9 315.2,190.5 308.6,190.5 308.6,170.7 288.7,170.7 288.7,210.4\n\t\t348.3,210.4 348.3,190.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="512" height="342"/>\n<rect y="0" fill="#6DA544" width="513" height="114"/>\n<g fill="#D80027">\n\t<rect y="227.9" width="513" height="114"/>\n\t<path d="M278.8,134.8c0.1,2,8.7,26.2,4.4,39.4c-6.6,20.3-15.8,21.8-19.8,24.5v-64.7l-6.9-4.2l-6.9,4.2v64.7\n\t\tc-4-2.7-12.4-2.4-19.8-24.5c-4.3-12.7,5.7-37.3,5.8-39.2c0,0-9.5,8.1-15.8,24c-5.9,14.8,1.9,49.6,29.5,54.8\n\t\tc2.3,0.4,4.7,5.6,7.2,5.6c2.1,0,4.1-5.2,6-5.5c28.4-4.6,35-41.7,29.9-55.6C287,143.7,278.8,134.8,278.8,134.8z"/>\n</g>\n<g fill="#FFFFFF" opacity="0.5">\n\t<rect x="44.6" y="98.9" width="22.3" height="24.4"/>\n\t<rect y="98.9" width="22.3" height="24.4"/>\n\t<rect x="89.2" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="133.8" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="178.4" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="223" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="267.7" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="312.3" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="356.9" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="401.5" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="446.1" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="490.7" y="98.9" width="22.3" height="24.4"/>\n\t<rect x="44.6" y="216.9" width="22.3" height="25.5"/>\n\t<rect y="216.9" width="22.3" height="25.5"/>\n\t<rect x="89.2" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="133.8" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="178.4" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="223" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="267.7" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="312.3" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="356.9" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="401.5" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="446.1" y="216.9" width="22.3" height="25.5"/>\n\t<rect x="490.7" y="216.9" width="22.3" height="25.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/IS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#D80027" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/IT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#FFFFFF" points="341.334,85.33 170.666,85.33 0,85.33 0,426.662 170.666,426.662 341.334,426.662 512,426.662 512,85.33 "/>\n<rect y="85.333" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.333" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/JE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<polygon fill="#D80027" points="301.8,171 513,30.2 513,0 467.7,0 256.5,140.8 45.3,0 0,0 0,30.2 211.2,171 0,311.8 0,342 45.3,342\n\t256.5,201.2 467.7,342 513,342 513,311.8 "/>\n<polygon fill="#FFDA44" points="233.7,44.6 256,50.2 278.3,44.6 282.3,23.7 267.4,30.2 256,14.8 244.6,30.2 229.7,23.7 "/>\n<path fill="#D80027" d="M233.7,44.6c0,0-4,12.9-4,29.9c0,27.9,26.3,41.3,26.3,41.3s26.3-15.5,26.3-41.3c0-15.4-4-29.9-4-29.9\n\ts-8.1-5-22.3-5S233.7,44.6,233.7,44.6z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/JM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<polygon points="215.864,256.006 0,399.911 0,112.089 "/>\n<polygon points="512,112.089 512,399.911 296.136,256.006 "/>\n<polygon fill="#0052B4" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>\n<polygon fill="#FFDA44" points="512,112.089 296.136,256.006 512,399.911 512,426.668 471.875,426.668 256,282.752 40.125,426.668 0,426.668 0,399.911 215.864,256.006 0,112.089 0,85.331 40.125,85.331 256,229.248 471.875,85.331 512,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/JO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.339" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.339" width="512" height="113.775"/>\n<rect y="312.89" fill="#6DA544" width="512" height="113.775"/>\n<polygon fill="#D80027" points="256,256.006 0,426.669 0,85.331 "/>\n<polygon fill="#FFFFFF" points="77.913,224.802 85.789,241.271 103.575,237.161 95.61,253.587 109.913,264.93 92.105,268.944 92.154,287.199 77.913,275.778 63.672,287.199 63.722,268.944 45.913,264.93 60.216,253.587 52.251,237.161 70.037,241.271 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/JP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<circle fill="#D80027" cx="256" cy="255.994" r="96"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" width="512" height="90.579"/>\n<rect y="336.089" fill="#496E2D" width="512" height="90.568"/>\n<rect y="198.606" fill="#A2001D" width="512" height="114.799"/>\n<g>\n\t<polygon fill="#FFFFFF" points="323.265,139.803 297.682,127.994 256,222.376 214.318,127.994 188.735,139.803 240.484,255.994 188.735,372.186 214.318,383.994 256,289.613 297.682,383.994 323.265,372.186 271.516,255.994 "/>\n\t<path fill="#FFFFFF" d="M273.376,150.931C263.472,140.115,256,133.898,256,133.898s-7.472,6.216-17.376,17.032v210.127 C248.528,371.873,256,378.091,256,378.091s7.472-6.216,17.376-17.033V150.931z"/>\n</g>\n<g>\n\t<path fill="#A2001D" d="M209.04,191.226v129.535c10.465,18.542,23.274,33.742,32.872,43.818V147.408 C232.313,157.484,219.504,172.683,209.04,191.226z"/>\n\t<path fill="#A2001D" d="M302.96,191.226c-10.465-18.543-23.274-33.742-32.872-43.818V364.58 c9.599-10.077,22.407-25.276,32.872-43.818V191.226z"/>\n</g>\n<path d="M302.96,191.226v129.535c10.594-18.774,18.784-40.973,18.784-64.767S313.554,210.001,302.96,191.226z"/>\n<path d="M209.04,191.226v129.535c-10.594-18.774-18.784-40.973-18.784-64.767S198.446,210.001,209.04,191.226z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 342">\n<g fill="#D80027">\n\t<rect y="0" width="513" height="342"/>\n\t<circle cx="256" cy="170.7" r="170.7"/>\n</g>\n<polygon fill="#FFDA44" points="382.4,170.7 330.8,195 358.3,245 302.2,234.3 295.1,290.9 256,249.2 216.9,290.9 209.8,234.3\n\t153.7,245 181.2,195 129.6,170.7 181.2,146.4 153.7,96.3 209.8,107.1 216.9,50.4 256,92.1 295.1,50.4 302.2,107.1 358.3,96.3\n\t330.8,146.4 "/>\n<circle fill="#D80027" cx="257.4" cy="170.7" r="71.6"/>\n<g fill="#FFDA44">\n\t<path d="M214.2,170.7c-2.1,0-4.1,0.1-6.2,0.3c0.1,12,4.4,22.9,11.6,31.5c3.8-10.3,9.5-19.6,16.7-27.7\n\t\tC229.4,172.1,222,170.7,214.2,170.7z"/>\n\t<path d="M240.8,217.2c5.2,1.9,10.8,2.9,16.6,2.9c5.8,0,11.4-1,16.6-2.9c-2.8-11.1-8.7-21-16.6-28.8\n\t\tC249.5,196.2,243.6,206.1,240.8,217.2z"/>\n\t<path d="M300.2,146c-8.5-14.8-24.5-24.7-42.8-24.7c-18.3,0-34.2,9.9-42.8,24.7c15.6,0.1,30.2,4.3,42.8,11.6\n\t\tC270,150.3,284.6,146,300.2,146z"/>\n\t<path d="M278.5,174.8c7.2,8,12.9,17.4,16.7,27.7c7.2-8.5,11.5-19.5,11.6-31.5c-2-0.2-4.1-0.3-6.2-0.3\n\t\tC292.9,170.7,285.4,172.1,278.5,174.8z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#0052B4" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</g>\n<polygon fill="#FFFFFF" points="303.49,281.971 303.49,264.162 291.617,264.162 291.617,240.417 279.745,228.545 267.873,240.417 267.873,216.673 256,204.8 244.127,216.673 244.127,240.417 232.255,228.545 220.383,240.417 220.383,264.162 208.51,264.162 208.51,281.971 196.638,281.971 196.638,299.779 315.362,299.779 315.362,281.971 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<path fill="#CE1126" d="M0,0h450v300H0V0z"/>\n<g fill="#FCD116">\n\t<circle cx="227.6" cy="161.2" r="56.2"/>\n\t<polygon points="254.1,73.4 230.4,99.4 259,105.9 \t"/>\n\t<polygon points="202.6,73.6 197.8,106.7 226.3,98.7 \t"/>\n\t<polygon points="296.9,100.3 262.2,108.8 282.3,132.5 \t"/>\n\t<polygon points="158.6,98.5 174.1,131.2 194.3,108.5 \t"/>\n\t<polygon points="317.6,143.8 283.2,133.9 288.8,163.4 \t"/>\n\t<polygon points="135.6,141.2 167.5,161 172.7,133.3 \t"/>\n</g>\n<path fill="#003F87" d="M0,175h450v125H0V175z"/>\n<path fill="#FFFFFF" d="M0,267c15,0,30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13\n\ts30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13\n\ts-30-13-45-13s-30,13-45,13s-30-13-45-13V267z M0,224c15,0,30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13\n\ts30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13\n\ts-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13V224z M0,181c15,0,30,13,45,13s30-13,45-13\n\ts30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13s30,13,45,13s30-13,45-13v-21c-15,0-30,13-45,13\n\ts-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13s-30,13-45,13s-30-13-45-13V181z"/>\n<path fill-rule="evenodd" clip-rule="evenodd" fill="#FCD116" d="M183.2,48.3l-1.1-5.3l22.4-3.7c0,0-30.1-7.1-40-10.7c-14.3-5.1-16.3-12.1-16.3-12.1s44.7,11,64.8,11\n\tc4.3,0,12.8,10.7,12.8,10.7s14.8-14.9,21.9-15.4c32.1-2.3,66.6-6.4,66.6-6.4s-10,6.7-16,8.5c-16.2,4.9-50.6,11.7-50.6,11.7l-4.8,7.5\n\tH277l-14.4,4.3l7.4,6.9c0,0-7.8-4.1-18.1-2.1c-7.1,1.3-15.4,6-22.9,8c-18.7,4.8-29.9-12.8-29.9-12.8S183.2,48.3,183.2,48.3z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/KM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="85.337"/>\n<rect y="170.663" fill="#FFFFFF" width="512" height="85.337"/>\n<rect y="256" fill="#D80027" width="512" height="85.337"/>\n<polygon fill="#6DA544" points="256,256.006 0,426.668 0,85.331 "/>\n<g>\n\t<path fill="#FFFFFF" d="M68.638,256c0-24.865,17.476-45.638,40.812-50.734c-3.587-0.784-7.308-1.208-11.13-1.208 c-28.688,0-51.942,23.255-51.942,51.942s23.255,51.942,51.942,51.942c3.822,0,7.543-0.425,11.13-1.208 C86.113,301.638,68.638,280.865,68.638,256z"/>\n\t<polygon fill="#FFFFFF" points="108.877,211.478 111.639,219.981 120.579,219.981 113.347,225.237 116.109,233.739 108.877,228.484 101.643,233.739 104.407,225.237 97.173,219.981 106.113,219.981 "/>\n\t<polygon fill="#FFFFFF" points="108.877,233.739 111.639,242.242 120.579,242.242 113.347,247.497 116.109,256 108.877,250.745 101.643,256 104.407,247.497 97.173,242.242 106.113,242.242 "/>\n\t<polygon fill="#FFFFFF" points="108.877,256 111.639,264.503 120.579,264.503 113.347,269.758 116.109,278.261 108.877,273.006 101.643,278.261 104.407,269.758 97.173,264.503 106.113,264.503 "/>\n\t<polygon fill="#FFFFFF" points="108.877,278.261 111.639,286.763 120.579,286.763 113.347,292.019 116.109,300.522 108.877,295.267 101.643,300.522 104.407,292.019 97.173,286.763 106.113,286.763 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<polyline fill="#6DA544" points="512,0 0,0 0,342 "/>\n<polygon fill="#FFDA44" points="307.7,0 0,194.5 0,342 206.9,342 513,148.5 513,0 "/>\n<polygon fill="#000000" points="513,0 385.2,0 0,249.4 0,341 126.2,342 513,91.6 "/>\n<g fill="#FFFFFF">\n\t<polygon points="141.1,187 172.3,211 204.6,188.8 191.5,225.8 222.6,249.7 183.4,248.6 170.2,285.6 159.1,248\n\t\t119.9,246.9 152.2,224.7 \t"/>\n\t<polygon points="310.6,70.8 341.8,94.7 374.1,72.5 361,109.5 392.1,133.4 352.9,132.3 339.7,169.3 328.6,131.7\n\t\t289.4,130.6 321.8,108.4 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#91DC5A" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#0052B4" width="512" height="57.188"/>\n\t<rect y="369.48" fill="#0052B4" width="512" height="57.177"/>\n</g>\n<rect y="165.215" fill="#D80027" width="512" height="181.582"/>\n<circle fill="#FFFFFF" cx="190.33" cy="255.994" r="65.668"/>\n<polygon fill="#D80027" points="190.332,190.332 205.066,235.678 252.823,235.678 214.173,263.706 229.022,309.187 190.332,281.027 151.701,309.134 166.491,263.706 127.875,235.678 175.597,235.678 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<rect fill="#FFFFFF" width="900" height="600"/>\n<g transform="rotate(-56.3099325)">\n\t<g stroke="#000000" stroke-width="25">\n\t\t<path d="M-75,228.3H75 M-75,265.8l150,0 M-75,303.3H75"/>\n\t\t<path d="M-75,778.3H75 M-75,815.8H75 M-75,853.3H75"/>\n\t</g>\n\t<path stroke="#FFFFFF" stroke-width="12.5" d="M0,753.3l0,125"/>\n\t<circle fill="#ca163a" cx="0" cy="540.8" r="150"/>\n\t<path fill="#0e4896" d="M0,390.8c-41.4,0-75,33.6-75,75s33.6,75,75,75s75,33.6,75,75c0,41.4-33.6,75-75,75c-82.8,0-150-67.2-150-150\n\t\tS-82.8,390.8,0,390.8z"/>\n</g>\n<g transform="rotate(-123.6900675)">\n\t<g stroke="#000000" stroke-width="25">\n\t\t<path d="M-574.2-104.5l150,0 M-574.2-67l150,0 M-574.2-29.5l150,0"/>\n\t\t<path d="M-574.2,445.5h150 M-574.2,483h150 M-574.2,520.5h150"/>\n\t</g>\n\t<path stroke="#FFFFFF" stroke-width="12.5" d="M-499.2-85.7v37.5 M-499.2,420.5v43.8 M-499.2,501.8l0,37.5"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<polygon points="166.957,312.889 0,426.663 0,85.337 166.957,199.111 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/KY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<circle fill="#6DA544" cx="384" cy="181.79" r="29.682"/>\n<rect x="332.054" y="174.377" fill="#D80027" width="103.88" height="44.522"/>\n<path fill="#496E2D" d="M435.942,255.997v-0.001V255.997z"/>\n<path fill="#FFDA44" d="M332.058,285.678v29.682h15.616c9.364,9.176,22.18,14.84,36.326,14.84 c14.147,0,26.962-5.664,36.326-14.84h0.776h14.84v-29.682H332.058z"/>\n<path fill="#338AF3" d="M332.058,211.475v44.522c0,39.759,51.942,51.942,51.942,51.942s51.942-12.182,51.942-51.942v-44.522 H332.058z"/>\n<g>\n\t<path fill="#F3F3F3" d="M383.997,235.256c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,247.128,396.984,235.256,383.997,235.256z"/>\n\t<path fill="#F3F3F3" d="M383.997,193.666c-12.985,0-12.985,11.873-25.97,11.873s-12.985-11.873-25.97-11.873v20.777 c12.985,0,12.985,11.873,25.97,11.873s12.985-11.873,25.97-11.873c12.986,0,12.986,11.873,25.973,11.873 c12.986,0,12.986-11.873,25.973-11.873v-20.777c-12.986,0-12.986,11.873-25.973,11.873 C396.984,205.539,396.984,193.666,383.997,193.666z"/>\n</g>\n<polygon fill="#FFFFFF" points="256,85.334 256,107.951 209.931,138.66 256,138.66 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>\n<g>\n\t<polygon fill="#D80027" points="144,85.329 112,85.329 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.411 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.411 198.623,138.663 176,138.663 "/>\n\t<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n\t<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/KZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n\t<path fill="#36B6CC" d="M0,0h513v342H0V0z"/>\n\t<circle fill="#FFD400" cx="256.5" cy="170.9" r="68.4"/>\n\t<path fill="#FFD400" d="M256.5,251.5l-27.9,41.7l-7.1-49.7L178.3,269l15.2-47.8l-50,4.2l34.4-36.5L131,170.9l46.8-18l-34.4-36.5\n\t\tl50,4.2l-15.2-47.8l43.2,25.4l7.1-49.7l27.9,41.7l27.9-41.7l7.1,49.7l43.2-25.4l-15.2,47.8l50-4.2L335.1,153l46.8,17.9l-46.8,18\n\t\tl34.4,36.5l-50-4.2l15.2,47.8l-43.2-25.4l-7.1,49.7C284.4,293.2,256.5,251.5,256.5,251.5z M256.5,250.7c44.1,0,79.9-35.8,79.9-79.9\n\t\tS300.6,91,256.5,91s-79.9,35.8-79.9,79.9S212.4,250.7,256.5,250.7z M22.8,28.3c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7\n\t\tv11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,39.7,22.8,28.3,22.8,28.3z\n\t\t M22.8,74c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V74z M22.8,119.6c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3\n\t\tc0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,130.9,22.8,119.6,22.8,119.6z\n\t\t M22.8,165.2c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C22.8,176.5,22.8,165.2,22.8,165.2z M22.8,210.9c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V210.9z\n\t\t M22.8,256.5c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V256.5z M22.8,302.1c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3\n\t\tc0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H28.5c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V302.1z M45.6,279.3\n\t\tc0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6\n\t\tc0,0,0-0.1,0-0.1V279.3z M45.6,233.7c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7V245c0.1,3.1-2.4,5.7-5.6,5.7\n\t\tc-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V233.7z M45.6,188c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V188z\n\t\t M45.6,142.4c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3\n\t\tc-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1C45.6,153.7,45.6,142.4,45.6,142.4z M45.6,96.8c0-3.2,2.4-5.7,5.7-5.7h11.3\n\t\tc3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7c-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1\n\t\tC45.6,108.1,45.6,96.8,45.6,96.8z M45.6,51.2c0-3.2,2.4-5.7,5.7-5.7h11.3c3.2,0,5.7,2.4,5.7,5.7v11.3c0.1,3.1-2.4,5.7-5.6,5.7\n\t\tc-0.1,0-0.1,0-0.2,0H51.3c-3.1,0-5.7-2.5-5.7-5.6c0,0,0-0.1,0-0.1V51.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0.1" width="513" height="90.7"/>\n\t<rect x="0" y="251.3" width="513" height="90.7"/>\n</g>\n<circle fill="#FFFFFF" cx="256.5" cy="171" r="65.9"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LB.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0.2" width="513" height="90.7"/>\n\t<rect x="0.5" y="251.3" width="512.5" height="90.7"/>\n</g>\n<polygon fill="#6DA544" points="290.3,193.5 256,130.7 221.7,193.5 247.4,193.5 247.4,210.7 264.6,210.7 264.6,193.5 "/>\n\t<path fill="#14AF5A" d="M241.3,213.1c4.4-4.4,4.4-11.6-0.1-16c0,0,0,0,0,0l4.7,4.7c-5.2-4.7-12.2-6.6-19.1-5.3l-23.5,5.9\n\t\tc-6.1,1.5-6.8-0.4-1.8-4.2l27.1-20.3c5.1-3.8,4.2-6.9-2.3-6.9h-11c-6.4,0-7-2.3-1.5-5.1l25.3-12.7c5.6-2.8,5.1-5.1-1.5-5.1h-11\n\t\tc-6.4,0-7.4-3.1-2.3-6.9l27.1-20.3c5.6-3.8,12.9-3.8,18.5,0l27.1,20.3c5.1,3.8,4.2,6.9-2.3,6.9h-11c-6.4,0-7,2.3-1.5,5.1l25.3,12.7\n\t\tc5.6,2.8,5.1,5.1-1.5,5.1h-11c-6.4,0-7.4,3.1-2.3,6.9l27.1,20.3c5.1,3.8,4.4,5.7-1.8,4.2l-23.5-5.9c-6.8-1.3-13.9,0.6-19.1,5.3\n\t\tl4.7-4.7c-4.4,4.4-4.5,11.5-0.1,16c0,0,0,0,0,0l6.8,6.8c4.4,4.4,3.1,8-3.3,8h-45.8c-6.2,0-7.7-3.6-3.3-8\n\t\tC234.5,220,241.3,213.1,241.3,213.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LC.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#55B2FF" width="513" height="342"/>\n<polygon fill="#F3F3F3" points="148.5,298.1 364.5,298.1 256.5,43.9 "/>\n<polygon fill="#333333" points="186,272.7 256.5,112.4 327,272.7 "/>\n<polygon fill="#FFDA44" points="148.5,298.1 364.5,298.1 256.5,196.4 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/LI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#D80027" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="513" height="171"/>\n<path fill="#FFDA44" d="M149.3,98.1c0-14-11.3-25.3-25.3-25.3c-6.5,0-12.4,2.4-16.9,6.4V64.4h8.4V47.5h-8.4v-8.4H90.3v8.4h-8.4v16.9\n\th8.4v14.9c-4.5-4-10.4-6.4-16.9-6.4c-14,0-25.3,11.3-25.3,25.3c0,7.5,3.3,14.2,8.4,18.8v14.9h84.3v-14.9\n\tC146.1,112.3,149.3,105.5,149.3,98.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<path fill="#FFDA44" d="M0,85.329v341.337h512V85.329H0z M489.739,404.405h-267.13V107.59h267.13V404.405z"/>\n<rect x="222.609" y="107.595" fill="#A2001D" width="267.13" height="296.815"/>\n<rect x="22.261" y="107.595" fill="#D80027" width="200.348" height="296.815"/>\n<rect x="200.348" y="85.334" fill="#FFDA44" width="22.261" height="341.337"/>\n<rect x="22.261" y="107.595" fill="#6DA544" width="89.043" height="296.815"/>\n<rect x="111.304" y="107.595" fill="#FF9811" width="89.043" height="296.815"/>\n<g>\n\t<path fill="#FFDA44" d="M358.675,250.438v-44.522c0-7.424-11.13-14.848-11.13-14.848s-11.13,7.424-11.13,14.848h-44.522 v44.522h22.261v22.261c0,4.875,0.979,9.539,2.76,13.768l-10.184,8.493h-29.674V157.677c-12.299,0-22.261,9.973-22.261,22.261 v96.467c0,6.589,2.861,12.511,7.413,16.584v35.361h14.848v-18.554h66.783v29.685H328.99v14.837h29.685v-29.685l13.601-14.837 h44.288v29.685h-14.848v14.837h29.685v-29.685l13.601-14.837l12.552-40.259l-11.038-19.1h-38.945 C393.402,250.315,366.934,250.527,358.675,250.438z"/>\n\t<polygon fill="#FFDA44" points="370.551,211.844 370.551,237.073 442.064,237.073 442.064,250.438 446.516,250.438 446.516,232.621 375.003,232.621 375.003,216.296 450.968,216.296 450.968,211.844 "/>\n\t<rect x="222.609" y="107.595" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="467.478" y="107.595" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="222.609" y="382.138" fill="#FFDA44" width="22.261" height="22.261"/>\n\t<rect x="467.478" y="382.138" fill="#FFDA44" width="22.261" height="22.261"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/LR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="91.476" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="91.476" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="153.539" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="215.603" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="277.666" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="339.729" fill="#D80027" width="512" height="31.031"/>\n\t<rect y="401.793" fill="#D80027" width="512" height="31.031"/>\n</g>\n<rect y="79.177" fill="#0052B4" width="256" height="167.457"/>\n<polygon fill="#FFFFFF" points="127.999,118.382 139.049,152.392 174.813,152.392 145.881,173.413 156.931,207.425 127.999,186.404 99.066,207.425 110.119,173.413 81.187,152.392 116.949,152.392 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/LS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect y="0" fill="#0052B4" width="513" height="114"/>\n<rect y="227.6" fill="#6DA544" width="513" height="114"/>\n<path fill="#000000" d="M245.2,171l7.7-23.1c2-5.9,5.1-6,7.1,0l7.7,23.1l19.4,29.1c1.7,2.6,1.3,6.3-1.2,8c0,0-6.9,8-29.5,8\n\ts-29.5-8-29.5-8c-2.4-2-2.9-5.4-1.2-8L245.2,171z"/>\n<path fill="#000000" d="M256.5,171c-12.5,0-22.6-10.1-22.6-22.6c0-12.5,10.1-22.6,22.6-22.6s22.6,10.1,22.6,22.6C279.1,160.9,268.9,171,256.5,171z\n\t M256.5,171c6.2,0,11.3-16.3,11.3-22.6c0-6.2-5.1-11.3-11.3-11.3c-6.2,0-11.3,5.1-11.3,11.3C245.2,154.7,250.2,171,256.5,171z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/LV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#A2001D">\n\t<rect y="0" class="st1" width="513" height="127.6"/>\n\t<rect x="0" y="214.4" class="st1" width="513" height="127.6"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/LY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#496E2D" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#FFFFFF" points="281.424,236.026 290.386,248.376 304.899,243.67 295.924,256.009 304.885,268.358 290.376,263.634 281.4,275.974 281.41,260.716 266.9,255.991 281.414,251.285 "/>\n\t<path fill="#FFFFFF" d="M256.965,286.868c-17.048,0-30.868-13.821-30.868-30.868s13.821-30.868,30.868-30.868 c5.316,0,10.317,1.345,14.684,3.71c-6.851-6.698-16.218-10.833-26.556-10.833c-20.982,0-37.992,17.01-37.992,37.992 s17.01,37.992,37.992,37.992c10.338,0,19.706-4.135,26.556-10.833C267.283,285.525,262.281,286.868,256.965,286.868z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#D80027" points="0,85.337 0,256 0,426.663 512,426.663 512,256 512,85.337 "/>\n<path fill="#20661b" d="M352,226.484h-73.337L256,156.738l-22.663,69.748H160l59.331,43.107l-22.663,69.749L256,296.232 l59.332,43.107l-22.663-69.749L352,226.484z M235.937,264.195l7.663-23.585h24.8l7.663,23.585l0,0v0.001L256,278.772 L235.937,264.195L235.937,264.195L235.937,264.195z M263.81,226.484h-15.619L256,202.447L263.81,226.484z M288.079,255.466 l-4.827-14.856h25.274L288.079,255.466z M228.748,240.61l-4.827,14.856l-20.447-14.856H228.748z M223.537,302.358l7.81-24.036 l12.636,9.181L223.537,302.358z M268.016,287.502l12.636-9.181l7.81,24.036L268.016,287.502z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.34" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,85.334 512,252.024 0,256.175 0,85.334 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MD.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFDA44" width="513" height="342"/>\n<rect x="342" y="0" fill="#D80027" width="171" height="342"/>\n<rect y="0" fill="#0052B4" width="171" height="342"/>\n<path fill="#AF7F59" d="M206.2,129.1h33.2L256,79.3l16.6,49.8h33.2v99.6L256,262l-49.8-33.2V129.1z M239.4,162.4v49.8h33.2v-49.8H239.4\n\tz"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ME.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#E6BE53" width="513" height="342"/>\n<rect x="20" y="20" fill="#E01D24" width="473" height="302"/>\n\t<path fill="#E6BE53" d="M248.5,112.9c4.4,4.4,11.6,4.4,16,0l-4.7,4.7l22.7-22.7c4.9-4.5,12.1-5.6,18.2-2.8l2.1,1\n\t\tc5.7,2.9,6.7,8.7,2.3,13.1l4.7-4.7L287,124.3c-4.5,4.9-5.6,12.1-2.8,18.2l1,2.1c2.9,5.7,5.1,15.4,5.1,21.6v-11.3\n\t\tc0,6.2,4.4,9.1,10.2,6.2l2.1-1c5.7-2.9,6.7-8.7,2.3-13.1l4.7,4.7c-4.4-4.4-4.4-11.6,0-16c0,0,0,0,0,0l-4.7,4.7\n\t\tc5.2-5.5,9.6-11.6,13.1-18.2l1-2.1c2.9-5.7,6.3-15.1,7.9-21.2l5.8-23.3c1.5-6,5.9-6.8,9.6-1.8l20.2,26.9c3.8,5.1,6.9,14,6.9,20.6\n\t\tv22.4c0,6.3-2.2,15.8-5.1,21.7l-1,2.1c-3.5,6.6-7.9,12.7-13.1,18.2l-6.8,6.8c-5.4,5.2-11.5,9.6-18.2,13.1l-2.1,1\n\t\tc-5.7,2.9-15.5,5.1-21.6,5.1c-6.2,0-6.9,2.2-1.1,5.1l2.1,1c5.7,2.9,13.8,8.7,18.2,13.1l-4.7-4.7c4.4,4.4,11.6,4.4,16,0l-4.7,4.7\n\t\tc4.4-4.4,11.6-4.4,16,0c0,0,0,0,0,0L339,226c4.6,4.9,5.7,12.1,2.9,18.2l-1,2.1c-2.9,5.7-10.4,10.2-16.4,10.2\n\t\tc-7.5-0.3-14.8-2-21.6-5.1l-2.1-1c-6.5-3.6-11.8-8.9-15.4-15.4l-1-2.1c-2.9-5.7-8.7-6.7-13.1-2.3l4.7-4.7\n\t\tc-4.4,4.7-5.2,11.8-1.8,17.3l10.3,15.4c3.4,5.1,2,12.1-3.1,15.5l-15.4,10.3c-5.7,3.4-12.8,3.4-18.6,0l-15.4-10.3\n\t\tc-5.1-3.4-6.5-10.3-3.1-15.5l10.3-15.4c3.4-5.5,2.6-12.6-1.8-17.3l4.7,4.7c-4.4-4.4-10.2-3.6-13.1,2.3l-1,2.1\n\t\tc-2.9,5.7-9.5,12.4-15.4,15.4l-2.1,1c-5.7,2.9-15.5,5.1-21.6,5.1c-6.9-0.3-13.1-4.2-16.4-10.2l-1-2.1c-2.8-6.1-1.6-13.3,2.9-18.2\n\t\tl-4.7,4.7c4.4-4.4,11.6-4.4,16,0c0,0,0,0,0,0l-4.7-4.7c4.4,4.4,11.6,4.4,16,0l-4.7,4.7c5.5-5.2,11.6-9.6,18.2-13.1l2.1-1\n\t\tc5.7-2.9,5-5.1-1.1-5.1c-7.5-0.3-14.8-2-21.6-5.1l-2.1-1c-6.6-3.5-12.7-7.9-18.2-13.1l-6.8-6.8c-5.2-5.4-9.6-11.5-13.1-18.2l-1-2.1\n\t\tc-3.1-6.8-4.9-14.2-5.1-21.7V121c0-6.3,3.1-15.6,6.9-20.6l20.2-26.9c3.8-5.1,8.1-4.3,9.6,1.8l5.8,23.3c2,7.3,4.6,14.4,7.9,21.2\n\t\tl1,2.1c2.9,5.7,8.7,13.8,13.1,18.2l-4.7-4.7c4.4,4.4,4.4,11.6,0,16c0,0,0,0,0,0l4.7-4.7c-4.4,4.4-3.6,10.2,2.3,13.1l2.1,1\n\t\tc5.7,2.9,10.2,0,10.2-6.2v11.3c0-6.2,2.2-15.7,5.1-21.6l1-2.1c2.8-6.1,1.7-13.2-2.8-18.2l-22.7-22.7l4.7,4.7\n\t\tc-4.4-4.4-3.6-10.2,2.3-13.1l2.1-1c6.1-2.8,13.2-1.7,18.2,2.8l22.7,22.7L248.5,112.9z M230.5,72.2c-4.4-4.4-3.2-9.5,2.8-11.5\n\t\tl12.4-4.2c6-2,15.5-2,21.5,0l12.4,4.2c6,2,7.2,7.1,2.8,11.5l-6.8,6.8c-5.3,4.7-12.1,7.5-19.2,7.9c-6.2,0-14.8-3.5-19.2-7.9\n\t\tC237.3,79,230.5,72.2,230.5,72.2z"/>\n\t<path fill="#215F90" d="M233.9,200.2c0,6.2,1.7,6.4,4.2,0.5c0,0,7.1-23.2,18.4-23.2c11.3,0,18.6,23.6,18.6,23.6c2.2,5.7,4,5.3,4-1.1\n\t\tv-11.2c0-18.7-10.1-33.9-22.6-33.9c-12.5,0-22.6,15.2-22.6,33.9V200.2z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MF.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 108 72">\n<path d="M0,0H108V72H0z" fill="#003787"/>\n<path d="M0,0H108L60,48V72H48V48z" fill="#fff"/>\n<circle cx="54" cy="30" r="8" fill="#f9d90f"/>\n<path d="M44,30H64L54,48z" fill="#fff"/>\n<path d="M54,48 38,33H70z" fill="#cf142b"/>\n</svg>',"./assets/country-flag-icons/3x2/MG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<path fill="#6DA544" d="M512,426.666V85.329c-238.65,0-512,0-512,0v341.337L512,426.666L512,426.666z"/>\n<path fill="#D80027" d="M512,85.331H0v170.666c0,0,273.35,0,512,0V85.331z"/>\n<rect y="85.334" fill="#FFFFFF" width="181.793" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#1E509C" width="513" height="342"/>\n<path fill="#FFFFFF" d="M513,176.1V81.3L0,342L513,176.1z"/>\n<path fill="#F18D36" d="M513,0v81.3L0,342L513,0z"/>\n<polygon fill="#FFFFFF" points="126.7,99.3 118.9,45.2 111.2,99.3 90.4,75.6 101.1,107.2 69.6,96.5 93.2,117.3 39.1,125 93.2,132.7\n\t69.6,153.5 101.1,142.8 90.4,174.4 111.2,150.7 118.9,204.8 126.7,150.7 147.4,174.4 136.8,142.8 168.3,153.5 144.7,132.7\n\t198.7,125 144.7,117.3 168.3,96.5 136.8,107.2 147.4,75.6 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#FFDA44" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#D80027" points="383.875,426.662 256,252.286 282.827,426.662 "/>\n\t<polygon fill="#D80027" points="133.565,85.33 256,252.286 230.314,85.33 "/>\n\t<polygon fill="#D80027" points="229.171,426.662 256,252.286 128.124,426.662 "/>\n\t<polygon fill="#D80027" points="0,85.33 0,212.9 256,252.286 28.333,85.33 "/>\n\t<polygon fill="#D80027" points="0,426.662 18.212,426.662 256,252.286 0,291.67 "/>\n\t<polygon fill="#D80027" points="256,252.286 512,212.9 512,85.33 483.669,85.33 "/>\n\t<polygon fill="#D80027" points="281.686,85.33 256,252.286 378.434,85.33 "/>\n\t<polygon fill="#D80027" points="512,426.662 512,291.671 256,252.286 493.787,426.662 "/>\n\t<circle fill="#D80027" cx="256" cy="252.29" r="59.359"/>\n</g>\n<circle fill="#FFDA44" cx="256" cy="252.29" r="44.522"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ML.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#6DA544" width="512" height="341.326"/>\n<rect y="85.337" fill="#FFDA44" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<path fill="#FFFFFF" d="M384,227.261h-97.783L256,134.265l-30.217,92.997H128l79.108,57.475l-30.217,92.998L256,320.925 l79.108,56.81l-30.217-92.998L384,227.261z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MN.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#095FAD" width="513" height="342"/>\n<g>\n\t<rect x="342" y="0" fill="#BE1229" width="171" height="342"/>\n\t<rect y="0" fill="#BE1229" width="171" height="342"/>\n</g>\n<g fill="#FFDA44">\n\t<rect x="108.3" y="166.3" width="14.8" height="74.2"/>\n\t<rect x="48.9" y="166.3" width="14.8" height="74.2"/>\n\t<circle cx="86" cy="203.4" r="14.8"/>\n\t<rect x="71.2" y="225.7" width="29.7" height="14.8"/>\n\t<rect x="71.2" y="166.3" width="29.7" height="14.8"/>\n\t<circle cx="86" cy="144" r="14.8"/>\n\t<polygon points="76.3,123.9 95.8,123.9 86,108.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#00745a" width="512" height="341.337"/>\n<path fill="#FFFFFF" d="M285.682,248.878c-4.19,0-8.166,0.836-11.861,2.164c2.023-4.509,3.379-9.527,3.379-14.885 c0-21.201-21.201-37.101-21.201-37.101s-21.201,15.901-21.201,37.101c0,5.357,1.356,10.375,3.379,14.885 c-3.693-1.328-7.671-2.164-11.861-2.164c-21.201,0-37.101,21.201-37.101,21.201s15.901,21.201,37.101,21.201 c12.429,0,23.031-7.286,29.682-13.315c6.65,6.03,17.251,13.315,29.682,13.315c21.201,0,37.101-21.201,37.101-21.201 S306.882,248.878,285.682,248.878z"/>\n<g>\n\t<polygon fill="#FFDA44" points="256,152.111 260.38,165.587 274.551,165.587 263.087,173.919 267.463,187.395 256,179.065 244.537,187.395 248.913,173.919 237.449,165.587 251.62,165.587 "/>\n\t<polygon fill="#FFDA44" points="202.112,175.683 210.537,183.268 220.355,177.601 215.745,187.956 224.168,195.544 212.894,194.359 208.283,204.714 205.925,193.626 194.65,192.441 204.468,186.772 "/>\n\t<polygon fill="#FFDA44" points="162.662,215.132 173.752,217.49 179.42,207.672 180.606,218.946 191.695,221.304 181.338,225.914 182.524,237.188 174.937,228.765 164.58,233.375 170.249,223.557 "/>\n\t<polygon fill="#FFDA44" points="309.889,175.683 301.464,183.268 291.646,177.601 296.257,187.956 287.832,195.544 299.107,194.359 303.717,204.714 306.076,193.626 317.351,192.441 307.533,186.772 "/>\n\t<polygon fill="#FFDA44" points="349.338,215.132 338.249,217.49 332.58,207.672 331.394,218.946 320.306,221.304 330.663,225.914 329.478,237.188 337.064,228.765 347.421,233.375 341.752,223.557 "/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M256,350.642c16.84,0,32.363-5.619,44.816-15.073h-89.63 C223.637,345.023,239.16,350.642,256,350.642z"/>\n\t<path fill="#FFFFFF" d="M187.977,306.12c2.355,5.39,5.341,10.44,8.85,15.073h118.345c3.508-4.632,6.495-9.682,8.85-15.073 H187.977z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MP.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 750 500">\n\t<path fill="#0071BC" d="M0 0h750v500H0V0z"/>\n\t<g fill="#FFF" stroke="#000" stroke-width="1.9">\n\t\t<circle cx="375" cy="245" r="225" stroke="#000000" fill="#ffffff"/>\n\t\t<circle cx="375" cy="245" r="165" stroke="#000000" fill="#0071BC"/>\n\t</g>\n\t<g stroke="#000">\n\t\t<path fill="#8C8A8C" stroke-width="1.9" d="M444.7,450c0.7,11-7.8,20-18.8,20H323.6c-11,0-19.5-9-19-20L321.3,125c0.6-11,10-20,21-20h61.4\n\t\t\tc11,0,20.5,9,21.2,20L444.7,450z"/>\n\t\t<path fill="#FFF" stroke-width="2" stroke-linejoin="round" d="M373 114l30 93h97l-78 56 29 92-78-56-78 57 30-93-79-57h97l30-92z"/>\n\t</g>\n</svg>',"./assets/country-flag-icons/3x2/MQ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#0052B4" width="513" height="342"/>\n<g fill="#ffffff">\n<polygon points="512,148.4 512,192.9 278.3,192.9 278.3,341.3 233.7,341.3 233.7,192.9 0,192.9 0,148.4 233.7,148.4\n\t233.7,0 278.3,0 278.3,148.4 "/>\n<path d="M101,36.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL101,36.1L101,36.1z"/>\n<path d="M385,36.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL385,36.1L385,36.1z"/>\n<path d="M379.6,235.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8\n\tc-1.3,1,0.7-0.2-7.4,4.4c-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2\n\tc0.4,0.2-0.3-1-0.1-1.7c-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6\n\tc18.2,2.4,34.1-3.6,35.7-18.4c1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3\n\tc-3.6,0.7-5.9,4.2-5.2,7.8c0.7,3.6,4.2,5.9,7.8,5.2c0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1\n\tc4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7c-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9\n\tc15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2c-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3\n\tc-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7c4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4\n\tc-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7s3.4,6.5,7,6.3L379.6,235.1L379.6,235.1z"/>\n<path d="M101,235.1c4.2-0.2,8.3-0.1,12.5,0.2c5.5,0.4,9.4,1.6,9.1,0.5c-0.5-1.8-0.1-2.2-0.8-1.8c-1.3,1,0.7-0.2-7.4,4.4\n\tc-11.8,6.7-16.9,11.8-14.3,21c2.3,8.1,8.2,10.3,22.3,12.5l1.9,0.3c5.6,0.9,8.1,1.4,9.8,2.2c0.4,0.2-0.3-1-0.1-1.7\n\tc-0.2,0.6-3.9,2.1-13.3,3.9l-4.7,0.9c-18.1,3.7-27.1,8.5-28.5,21c-1.5,13.7,12.7,23.3,30.6,25.6c18.2,2.4,34.1-3.6,35.7-18.4\n\tc1-9.4-5.5-15-15.9-17.1c-7-1.4-16.3-1.4-27.4-0.3c-12.4,1.3-24.7,3.4-36.9,6.3c-3.6,0.7-5.9,4.2-5.2,7.8s4.2,5.9,7.8,5.2\n\tc0.2,0,0.3-0.1,0.5-0.1c11.6-2.7,23.3-4.7,35.1-5.9c9.9-1,18-1,23.4,0.1c4.4,0.9,5.3,1.7,5.2,2.6c-0.5,5.1-8.9,8.2-20.7,6.7\n\tc-11.6-1.5-19.5-6.8-19.1-11c0.5-4.3,5.3-6.8,17.9-9.4l4.6-0.9c15.5-3,21.1-5.3,23.5-13.2c1.9-6.5-1.3-11.6-7.2-14.2\n\tc-3.2-1.4-6.3-2.1-13.2-3.1l-1.8-0.3c-8-1.3-11.4-2.6-11.5-3c-0.1-0.4,1.8-2.3,8.1-5.9l4.4-2.5c1.5-0.8,2.9-1.8,4.3-2.7\n\tc4.6-3.4,7.2-7.1,5.8-12.3c-1.9-7.3-9-9.5-20.9-10.4c-4.7-0.3-9.3-0.4-14-0.3l-2,0.1c-3.7,0.2-6.5,3.4-6.3,7c0.2,3.7,3.4,6.5,7,6.3\n\tL101,235.1L101,235.1z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<g>\n\t<path fill="#FFDA44" d="M256,298.851c-45.956,0-84.348-32.298-93.767-75.429c-1.448,6.63-2.233,13.507-2.233,20.572 c0,53.02,42.979,96,96,96s96-42.98,96-96c0-7.066-0.785-13.942-2.233-20.572C340.348,266.553,301.956,298.851,256,298.851z"/>\n\t<polygon fill="#FFDA44" points="255.999,171.994 264.934,199.496 293.852,199.496 270.458,216.492 279.394,243.995 255.999,226.997 232.605,243.995 241.542,216.492 218.148,199.496 247.063,199.496 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MS.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#1B4991" width="513" height="342"/>\n<path fill="#00A2B8" stroke="#FFFFFF" stroke-width="3" d="M318.2,106.7v106.5c0,51.9,67.8,67.8,67.8,67.8s67.8-15.9,67.8-67.8V106.7H318.2z"/>\n<path fill="#A35023" d="M319.7,212.7c0,50.8,66.3,66.3,66.3,66.3s66.3-15.6,66.3-66.3H319.7L319.7,212.7z"/>\n<polygon points="415.1,155.1 395.7,155.1 395.7,135.7 376.3,135.7 376.3,155.1 357,155.1 357,174.5 376.3,174.5 376.3,232.6\n\t395.7,232.6 395.7,174.5 415.1,174.5 "/>\n<polygon fill="#FFFFFF" points="256,0 256,30.6 210.8,55.7 256,55.7 256,115 196.9,115 256,147.8 256,170.7 229.3,170.7 155.8,129.8\n\t155.8,170.7 100.2,170.7 100.2,122.1 12.7,170.7 0,170.7 0,140.1 45.2,115 0,115 0,55.7 59.1,55.7 0,22.8 0,0 26.7,0 100.2,40.8\n\t100.2,0 155.8,0 155.8,48.6 243.3,0 "/>\n<polygon fill="#D80027" points="144,0 112,0 112,69.3 0,69.3 0,101.3 112,101.3 112,170.7 144,170.7 144,101.3 256,101.3 256,69.3\n\t144,69.3 "/>\n<polygon fill="#0052B4" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#FFFFFF" points="155.8,115 256,170.7 256,154.9 184.2,115 "/>\n<polygon fill="#D80027" points="155.8,115 256,170.7 256,154.9 184.2,115 \t"/>\n<polygon fill="#D80027" points="71.8,115 0,154.9 0,170.7 0,170.7 100.2,115 \t"/>\n<polygon fill="#0052B4" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#FFFFFF" points="100.2,55.6 0,0 0,15.7 71.8,55.6 "/>\n<polygon fill="#D80027" points="100.2,55.6 0,0 0,15.7 71.8,55.6 \t"/>\n<polygon fill="#D80027" points="184.2,55.6 256,15.7 256,0 256,0 155.8,55.6 \t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<rect x="256" y="0" fill="#C31B28" width="256.5" height="342"/>\n<polygon fill="#ACABB1" stroke="#C31B28" stroke-width="2" points="101.2,68.2 101.2,33 66,33 66,68.2 30.8,68.2 30.8,103.4 66,103.4 66,138.6 101.2,138.6 101.2,103.4\n\t136.4,103.4 136.4,68.2 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/MU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#f7ce00" width="512" height="341.326"/>\n<rect y="85.331" fill="#e32737" width="512" height="85.337"/>\n<rect y="170.657" fill="#191f6a" width="512" height="85.337"/>\n<rect y="341.331" fill="#00a04e" width="512" height="85.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MV.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#d01920" width="512" height="341.333"/>\n<rect x="144.696" y="174.375" fill="#017c3b" width="222.609" height="163.25"/>\n<path fill="#FFFFFF" d="M283.484,304.226c-26.637,0-48.232-21.594-48.232-48.232s21.594-48.232,48.232-48.232 c8.306,0,16.12,2.1,22.943,5.797c-10.703-10.467-25.341-16.927-41.494-16.927c-32.784,0-59.362,26.577-59.362,59.362 s26.578,59.362,59.362,59.362c16.154,0,30.791-6.461,41.494-16.927C299.605,302.127,291.791,304.226,283.484,304.226z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 342">\n<rect y="0" fill="#272727" width="512" height="114"/>\n<rect y="114" fill="#e40112" width="512" height="114"/>\n<rect y="228" fill="#07893f" width="512" height="114"/>\n<circle fill="#e40112" cx="256" cy="125" r="95"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MX.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<polygon fill="#dc2339" points="342,0 171,0 0,0 0,341.3 171,341.3 342,341.3 513,341.3 513,0 "/>\n<rect y="0" fill="#11865d" width="171" height="342"/>\n<rect x="171" y="0" fill="#FFFFFF" width="171" height="342"/>\n<path fill="#8C9157" d="M195.8,171.2c0,21.6,11.5,41.7,30.3,52.5c5.8,3.4,13.2,1.4,16.6-4.4c3.4-5.8,1.4-13.2-4.4-16.6\n\tc-11.3-6.5-18.2-18.5-18.2-31.5c0-6.7-5.4-12.1-12.1-12.1C201.3,159.1,195.8,164.5,195.8,171.2z M289.2,222.3\n\tc17.5-11.1,28-30.4,28-51.1c0-6.7-5.4-12.1-12.1-12.1s-12.1,5.4-12.1,12.1c0,12.4-6.3,24-16.8,30.7c-5.7,3.5-7.5,10.9-4.1,16.7\n\ts10.9,7.5,16.7,4.1C288.8,222.5,289,222.4,289.2,222.3z"/>\n<ellipse fill="#C59262" cx="256.5" cy="159.1" rx="24.3" ry="36.4"/>\n</svg>\n',"./assets/country-flag-icons/3x2/MY.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<g>\n\t<rect y="42.7" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="128" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="213.3" fill="#D80027" width="512" height="42.7"/>\n\t<rect y="298.7" fill="#D80027" width="512" height="42.7"/>\n</g>\n<rect y="0" fill="#0052B4" width="256" height="170.7"/>\n<g>\n\t<path fill="#FFDA44" d="M141.1,134.8c-28,0-45.9-24.8-45.9-49.5c0-24.8,17.9-49.5,45.9-49.5c8.7,0,18.1,1,25.3,4.9\n\t\tc-11.2-11-26.6-17.8-43.6-17.8c-34.4,0-62.4,27.9-62.4,62.4s27.9,62.4,62.4,62.4c17,0,32.3-6.8,43.6-17.8\n\t\tC159.3,133.8,149.9,134.8,141.1,134.8z"/>\n\t<polygon fill="#FFDA44" points="171,49.7 180,68.5 200.3,63.8 191.2,82.6 207.6,95.5 187.2,100.1 187.3,121 171,107.9 154.8,121\n\t\t154.8,100.1 134.5,95.5 150.8,82.6 141.7,63.8 162,68.5 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/MZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 513 342">\n<rect y="85.333" fill="#FFFFFF" width="513" height="342"/>\n<rect y="323.333" fill="#f4d900" width="513" height="104"/>\n<rect y="85.333" fill="#006d66" width="513" height="104"/>\n<rect y="204.333" fill="#000000" width="513" height="104"/>\n<polygon fill="#cb0f31" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#f4d900" points="83.477,195.132 98.584,241.63 147.478,241.63 107.924,270.369 123.031,316.868 83.477,288.13 43.922,316.868 59.032,270.369 19.478,241.63 68.37,241.63 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<polyline fill="#0052B4" points="0,426.663 0,85.337 512,85.337 "/>\n<polygon fill="#FFFFFF" points="512,152.222 512,85.337 411.67,85.337 0,359.778 0,426.663 100.33,426.663 "/>\n<polygon fill="#A2001D" points="512,85.337 512,125.462 60.193,426.663 0,426.663 0,386.538 451.807,85.337 "/>\n<polygon fill="#FFDA44" points="187.737,189.212 164.996,199.908 177.106,221.932 152.413,217.208 149.284,242.153 132.085,223.806 114.885,242.153 111.756,217.208 87.063,221.931 99.172,199.908 76.433,189.212 99.173,178.515 87.063,156.493 111.756,161.215 114.886,136.271 132.085,154.618 149.285,136.271 152.413,161.215 177.106,156.493 164.998,178.517 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NC.svg":'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 426.7">\n<path fill="#009543" d="M0,293h640v133.7H0V293z"/>\n<path fill="#ED4135" d="M0,132h640v161.3H0V132z"/>\n<path fill="#0035AD" d="M0,0h640v133.3H0V0z"/>\n<circle fill="#FAE600" stroke="#000000" stroke-width="5.3" cx="240" cy="213.3" r="157.3"/>\n<path d="M307.9,354.5l-31.8,12l-36.1,4.2l-37.8-2.4l-35.9-15.5c0,0,28.6-29.3,40.7-33.5c8.6-3,22.4-3.7,22.4-3.7V122l-0.3-66H246\n\tl-0.5,67.5v191.7c0,0,15.3,1.2,22.1,4.1C278.9,324.2,307.9,354.5,307.9,354.5z"/>\n<rect x="213" y="91" transform="matrix(0.8949 -0.4462 0.4462 0.8949 -18.4912 115.9796)" width="48" height="12.5"/>\n<ellipse cx="237.8" cy="280.5" rx="16.8" ry="26.5"/>\n<circle cx="237.4" cy="143.4" r="20.9"/>\n<ellipse cx="238.4" cy="211.1" rx="19.9" ry="12.1"/>\n<rect x="213.8" y="177" width="47" height="10"/>\n<rect x="213.8" y="234" width="47" height="10"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#FF9811" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<circle fill="#FF9811" cx="256" cy="256" r="32"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NF.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<polygon fill="#6DA544" points="304,311.995 256,159.994 208,311.995 244,311.995 244,351.994 268,351.994 268,311.995 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#338AF3" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</g>\n<path fill="#FFDA44" d="M256,214.447c-22.949,0-41.553,18.603-41.553,41.553S233.05,297.553,256,297.553 c22.949,0,41.553-18.603,41.553-41.553S278.949,214.447,256,214.447z M256,279.745c-13.114,0-23.745-10.631-23.745-23.745 s10.631-23.745,23.745-23.745c13.114,0,23.745,10.631,23.745,23.745C279.745,269.114,269.114,279.745,256,279.745z"/>\n<polygon fill="#0052B4" points="276.563,261.936 256,256 235.437,261.936 228.582,273.809 283.418,273.809 "/>\n<polygon fill="#338AF3" points="256,226.32 242.291,250.064 256,256 269.709,250.064 "/>\n<polygon fill="#6DA544" points="235.437,261.936 276.563,261.936 269.709,250.064 242.291,250.064 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#A2001D" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/NO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#2E52B2" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NP.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#0052B4" points="0,426.663 0,85.337 280.419,260.087 87.61,260.087 271.186,426.663 "/>\n<polygon fill="#D80027" points="244.769,249.888 10.199,103.71 10.199,249.888 10.199,416.464 244.769,416.464 61.193,249.888 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="98.003,324.433 83.414,317.57 91.184,303.44 75.34,306.47 73.332,290.465 62.297,302.237 51.261,290.465 49.253,306.47 33.41,303.439 41.18,317.57 26.589,324.433 41.18,331.295 33.41,345.425 49.254,342.396 51.261,358.4 62.297,346.628 73.332,358.4 75.34,342.396 91.183,345.426 83.414,331.296 "/>\n\t<polygon fill="#FFFFFF" points="88.268,191.662 77.656,186.671 83.307,176.393 71.784,178.598 70.323,166.957 62.297,175.518 54.271,166.957 52.811,178.598 41.286,176.393 46.938,186.671 36.325,191.662 62.297,196.856 "/>\n\t<path fill="#FFFFFF" d="M93.462,191.662c0,17.212-13.953,31.165-31.165,31.165s-31.165-13.953-31.165-31.165"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<rect y="239.994" fill="#FFDA44" width="512" height="32"/>\n<polygon fill="#FFFFFF" points="174.802,341.329 155.678,350.325 165.862,368.846 145.095,364.873 142.464,385.851 128,370.422 113.535,385.851 110.905,364.873 90.138,368.846 100.321,350.325 81.198,341.329 100.322,332.334 90.138,313.814 110.904,317.785 113.536,296.807 128,312.236 142.465,296.807 145.095,317.785 165.862,313.814 155.679,332.335 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/NU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.334" fill="#FFFFFF" width="256" height="170.663"/>\n<g>\n\t<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n</g>\n<g>\n\t<polygon fill="#2E52B2" points="0,107.951 0,138.663 46.069,138.663 "/>\n\t<polygon fill="#2E52B2" points="96,85.331 96,134.244 22.628,85.331 "/>\n</g>\n<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n\t<polygon fill="#2E52B2" points="160,85.331 160,134.244 233.372,85.331 "/>\n</g>\n<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="0,107.951 0,138.663 46.069,138.663 "/>\n\t<polygon fill="#2E52B2" points="96,85.331 96,134.244 22.628,85.331 "/>\n</g>\n<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n\t<polygon fill="#2E52B2" points="160,85.331 160,134.244 233.372,85.331 "/>\n</g>\n<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="0,233.376 0,202.663 46.069,202.663 "/>\n\t<polygon fill="#2E52B2" points="96,255.994 96,207.082 22.628,255.994 "/>\n</g>\n<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n<g>\n\t<polygon fill="#2E52B2" points="256,233.376 256,202.663 209.931,202.663 "/>\n\t<polygon fill="#2E52B2" points="160,255.994 160,207.082 233.372,255.994 "/>\n\t<circle fill="#2E52B2" cx="128" cy="170.66" r="22.627"/>\n</g>\n<g>\n\t<polygon fill="#FFDA44" points="128,154.663 131.97,166.885 144.824,166.885 134.426,174.441 138.397,186.663 128,179.109 117.602,186.663 121.574,174.441 111.176,166.885 124.029,166.885 "/>\n\t<polygon fill="#FFDA44" points="128,219.803 130.364,227.081 138.017,227.081 131.827,231.579 134.191,238.857 128,234.359 121.809,238.857 124.173,231.579 117.983,227.081 125.635,227.081 "/>\n\t<polygon fill="#FFDA44" points="128,102.469 130.364,109.747 138.017,109.747 131.827,114.245 134.191,121.523 128,117.025 121.809,121.523 124.173,114.245 117.983,109.747 125.635,109.747 "/>\n\t<polygon fill="#FFDA44" points="197.931,161.136 200.296,168.413 207.949,168.413 201.757,172.912 204.122,180.191 197.931,175.693 191.74,180.191 194.105,172.912 187.914,168.413 195.566,168.413 "/>\n\t<polygon fill="#FFDA44" points="58.069,161.136 60.433,168.413 68.086,168.413 61.895,172.912 64.259,180.191 58.069,175.693 51.878,180.191 54.243,172.912 48.051,168.413 55.704,168.413 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/NZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<g>\n\t<polygon fill="#D80027" points="425.301,233.745 428.689,244.173 439.652,244.173 430.782,250.617 434.17,261.044 425.301,254.6 416.43,261.044 419.818,250.617 410.948,244.173 421.911,244.173 "/>\n\t<polygon fill="#D80027" points="386.107,308.817 391.19,324.459 407.635,324.459 394.33,334.126 399.412,349.766 386.107,340.099 372.802,349.766 377.885,334.126 364.58,324.459 381.025,324.459 "/>\n\t<polygon fill="#D80027" points="387.588,185.971 391.824,199.007 405.528,199.007 394.44,207.061 398.675,220.095 387.588,212.039 376.5,220.095 380.735,207.061 369.648,199.007 383.352,199.007 "/>\n\t<polygon fill="#D80027" points="349.876,233.291 354.958,248.932 371.404,248.932 358.098,258.598 363.182,274.239 349.876,264.573 336.571,274.239 341.653,258.598 328.348,248.932 344.793,248.932 "/>\n</g>\n<polygon fill="#FFFFFF" points="256.003,85.329 256.003,115.893 210.825,140.981 256.003,140.981 256.003,200.34 196.89,200.34 256.003,233.186 256.003,255.992 229.313,255.992 155.829,215.166 155.829,255.992 100.177,255.992 100.177,207.419 12.748,255.992 0.003,255.992 0.003,225.439 45.171,200.34 0.003,200.34 0.003,140.981 59.106,140.981 0.003,108.147 0.003,85.329 26.683,85.329 100.177,126.167 100.177,85.329 155.829,85.329 155.829,133.902 243.259,85.329 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.664 0,154.664 0,186.664 112,186.664 112,255.998 144,255.998 144,186.664 256,186.664 256,154.664 144,154.664 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.998 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.998 0,255.998 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n<polygon fill="#FFFFFF" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.983 0,85.33 0,101.068 71.847,140.983 "/>\n\t<polygon fill="#D80027" points="184.154,140.983 256,101.068 256,85.33 256,85.33 155.826,140.983 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/OM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.331" fill="#D80027" width="512" height="341.326"/>\n\t<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n</g>\n<g>\n\t<polygon fill="#FFFFFF" points="189.746,160.439 174.007,144.698 163.513,155.192 153.02,144.698 137.279,160.439 147.773,170.932 137.278,181.426 153.018,197.167 163.512,186.673 174.007,197.167 189.746,181.426 179.252,170.932 "/>\n\t<rect x="211.478" y="85.331" fill="#FFFFFF" width="300.522" height="111.315"/>\n</g>\n<rect x="211.478" y="315.353" fill="#6DA544" width="300.522" height="111.304"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<path fill="#0052B4" d="M256,256c0,0,0,85.304,0,170.663H0V256h85.337C166.934,256,256,256,256,256z"/>\n<path fill="#D80027" d="M512,85.337V256h-85.337C336.184,256,256,256,256,256s0-90.323,0-170.663H512z"/>\n<polygon fill="#0052B4" points="128,123.034 139.824,159.423 178.087,159.423 147.132,181.914 158.955,218.303 128,195.813 97.045,218.303 108.868,181.914 77.913,159.423 116.176,159.423 "/>\n<polygon fill="#D80027" points="384,293.697 395.824,330.086 434.087,330.086 403.132,352.577 414.955,388.966 384,366.476 353.045,388.966 364.868,352.577 333.913,330.086 372.176,330.086 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n\t<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PF.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n</g>\n<path fill="#FFDA44" d="M293.991,256c0,20.982-17.01,33.243-37.992,33.243S218.008,276.982,218.008,256 s17.01-37.992,37.992-37.992S293.991,235.018,293.991,256z"/>\n<path fill="#0052B4" d="M293.991,256c0,20.982-17.01,37.992-37.992,37.992s-37.992-17.01-37.992-37.992"/>\n<g>\n\t<rect x="232.259" y="246.506" fill="#D80027" width="9.498" height="19"/>\n\t<rect x="270.247" y="246.506" fill="#D80027" width="9.498" height="19"/>\n\t<rect x="251.247" y="232.259" fill="#D80027" width="9.498" height="33.243"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" width="512" height="341.337"/>\n<polyline fill="#A2001D" points="0,85.33 512,85.33 512,426.662 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="204.631,326.488 207.393,334.992 216.334,334.992 209.101,340.247 211.864,348.749 204.631,343.495 197.398,348.749 200.16,340.247 192.927,334.992 201.867,334.992 "/>\n\t<polygon fill="#FFFFFF" points="181.797,244.866 186.402,259.038 201.303,259.038 189.247,267.795 193.852,281.967 181.797,273.208 169.742,281.967 174.348,267.795 162.292,259.038 177.193,259.038 "/>\n\t<polygon fill="#FFFFFF" points="181.797,348.749 186.401,362.922 201.303,362.922 189.246,371.679 193.852,385.852 181.797,377.093 169.742,385.852 174.346,371.679 162.292,362.922 177.191,362.922 "/>\n\t<polygon fill="#FFFFFF" points="225.363,281.967 229.969,296.139 244.87,296.139 232.814,304.897 237.419,319.069 225.363,310.31 213.309,319.069 217.915,304.897 205.859,296.139 220.76,296.139 "/>\n\t<polygon fill="#FFFFFF" points="138.23,281.967 142.836,296.139 157.735,296.139 145.681,304.897 150.284,319.069 138.23,310.31 126.175,319.069 130.78,304.897 118.725,296.139 133.625,296.139 "/>\n</g>\n<path fill="#FFDA44" d="M376.526,204.163c-7.628-7.628-17.538-12.133-28.189-12.908l31.88-24.795 c-12.698-12.698-29.714-18.431-46.319-17.218c-1.988-7.145-5.778-13.892-11.396-19.511l-12.593,25.186 c-0.826-1.506-1.872-2.923-3.148-4.197c-7.245-7.245-18.991-7.244-26.234,0s-7.245,18.99,0,26.234 c1.276,1.276,2.692,2.322,4.197,3.148l-25.186,12.593c5.62,5.62,12.371,9.412,19.519,11.399 c-1.217,16.606,4.511,33.619,17.209,46.317l27.854-35.811c2.096-2.064,4.862-3.202,7.807-3.202c2.973,0,5.768,1.158,7.87,3.26 c2.103,2.103,3.26,4.897,3.26,7.87c0,2.974-1.158,5.768-3.26,7.87l10.494,10.494c4.905-4.905,7.607-11.428,7.607-18.364 c0-5.675-1.81-11.071-5.153-15.534c4.871,1.3,9.474,3.849,13.288,7.662c11.573,11.572,11.573,30.403,0,41.975l10.494,10.494 c8.409-8.409,13.039-19.59,13.039-31.481C389.565,223.752,384.934,212.572,376.526,204.163z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n</g>\n<polygon fill="#0052B4" points="512,85.337 512,256 256,256 0,85.337 "/>\n<polygon fill="#D80027" points="512,256 512,426.663 0,426.663 256,256 "/>\n<g>\n\t<polygon fill="#FFDA44" points="161.908,256 134.62,243.165 149.152,216.737 119.52,222.405 115.765,192.472 95.125,214.487 74.486,192.472 70.731,222.405 41.1,216.736 55.631,243.164 28.343,256 55.631,268.835 41.1,295.263 70.733,289.595 74.486,319.528 95.125,297.513 115.765,319.528 119.52,289.595 149.151,295.264 134.619,268.837 "/>\n\t<polygon fill="#FFDA44" points="21.789,117.607 30.87,130.303 45.749,125.589 36.481,138.149 45.562,150.843 30.753,145.911 21.485,158.47 21.602,142.862 6.793,137.928 21.673,133.216 "/>\n\t<polygon fill="#FFDA44" points="21.789,353.53 30.87,366.226 45.749,361.512 36.481,374.072 45.562,386.767 30.753,381.834 21.485,394.392 21.602,378.785 6.793,373.851 21.673,369.139 "/>\n\t<polygon fill="#FFDA44" points="210.395,235.569 201.314,248.264 186.435,243.551 195.703,256.11 186.622,268.806 201.431,263.873 210.699,276.431 210.582,260.824 225.391,255.89 210.511,251.177 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<polygon fill="#FFFFFF" points="393.508,170.516 411.02,189.391 434.383,178.57 421.842,201.057 439.355,219.933 414.092,214.955 401.553,237.443 398.48,211.879 373.217,206.901 396.58,196.081 "/>\n\t<rect y="85.343" fill="#FFFFFF" width="512" height="341.326"/>\n</g>\n<rect x="128" y="85.331" fill="#496E2D" width="384" height="341.337"/>\n<g>\n\t<path fill="#FFFFFF" d="M361.909,298.793c-31.037,22.426-74.378,15.446-96.804-15.592 c-22.427-31.038-15.446-74.379,15.593-96.804c9.677-6.992,20.55-11.125,31.613-12.563c-21.283-3.183-43.777,1.613-62.598,15.211 c-38.2,27.602-46.792,80.944-19.191,119.145c27.601,38.199,80.944,46.792,119.145,19.189c18.82-13.598,30.436-33.448,34.096-54.655 C378.924,282.774,371.587,291.8,361.909,298.793z"/>\n\t<polygon fill="#FFFFFF" points="360.58,172.889 378.064,191.731 401.386,180.929 388.867,203.376 406.35,222.22 381.131,217.252 368.612,239.702 365.545,214.181 340.325,209.212 363.648,198.41 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<g>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n\t<rect y="85.337" fill="#FFFFFF" width="512" height="170.663"/>\n</g>\n<rect y="256" fill="#D80027" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PM.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 26.666 640 426.666">\n <g fill-rule="evenodd" stroke-width="1pt">\n <path fill="#fff" d="M0 0h640v480H0z"/>\n <path fill="#00267f" d="M0 0h213.3v480H0z"/>\n <path fill="#f31830" d="M426.7 0H640v480H426.7z"/>\n </g>\n</svg>\n',"./assets/country-flag-icons/3x2/PN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#ACABB1" points="400.696,219.822 384,225.387 367.304,219.822 361.739,205.909 367.304,191.996 400.696,191.996 395.13,205.909 "/>\n<path fill="#338AF3" d="M345.043,219.822v61.217c0,29.821,38.957,38.957,38.957,38.957s38.957-9.137,38.957-38.957v-61.217 H345.043z"/>\n<path fill="#6DA544" d="M348.555,295.541C358.131,313.927,384,319.996,384,319.996s25.869-6.069,35.445-24.455L384,236.518 L348.555,295.541z"/>\n<path fill="#FFDA44" d="M422.957,280.421L384,219.822l-38.957,60.599v0.618c0,5.518,1.337,10.328,3.512,14.503L384,240.405 l35.445,55.137c2.175-4.175,3.512-8.983,3.512-14.503V280.421z"/>\n<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.158 100.174,85.333 155.826,85.333 155.826,133.905 243.256,85.333 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/PR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#D80027" width="512" height="68.263"/>\n\t<rect y="221.863" fill="#D80027" width="512" height="68.263"/>\n\t<rect y="358.4" fill="#D80027" width="512" height="68.263"/>\n</g>\n<polygon fill="#0052B4" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#FFFFFF" points="83.477,195.132 98.584,241.63 147.478,241.63 107.924,270.369 123.031,316.868 83.477,288.13 43.922,316.868 59.032,270.369 19.478,241.63 68.37,241.63 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<polygon fill="#D80027" points="256,256.006 0,426.668 0,85.331 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/PT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#6DA544" points="196.641,85.337 196.641,261.565 196.641,426.663 0,426.663 0,85.337 "/>\n<circle fill="#FFDA44" cx="196.641" cy="256" r="64"/>\n<path fill="#D80027" d="M160.638,224v40.001c0,19.882,16.118,36,36,36s36-16.118,36-36V224H160.638z"/>\n<path fill="#FFFFFF" d="M196.638,276c-6.617,0-12-5.383-12-12v-16h24.001v16C208.638,270.616,203.254,276,196.638,276z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<circle fill="#FFDA44" cx="218.902" cy="255.994" r="74.207"/>\n</svg>\n',"./assets/country-flag-icons/3x2/PY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n<path fill="#6DA544" d="M289.579,216.738l-12.592,12.592c5.37,5.372,8.693,12.792,8.693,20.988 c0,16.392-13.289,29.68-29.68,29.68c-16.392,0-29.68-13.289-29.68-29.68c0-8.195,3.322-15.616,8.693-20.988l-12.592-12.592 c-8.594,8.594-13.91,20.466-13.91,33.579c0,26.228,21.261,47.489,47.489,47.489s47.489-21.261,47.489-47.489 C303.489,237.205,298.173,225.332,289.579,216.738z"/>\n<polygon fill="#FFDA44" points="256,232.51 260.421,246.115 274.725,246.115 263.152,254.523 267.573,268.127 256,259.719 244.427,268.127 248.848,254.523 237.275,246.115 251.579,246.115 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/QA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect x="2.216" y="86.076" fill="#751A46" width="509.784" height="339.848"/>\n<polygon fill="#FFFFFF" points="209.455,154.969 159.219,180.236 209.455,205.493 159.219,230.76 209.455,256.017 159.219,281.283 209.455,306.54 159.219,331.808 209.455,357.065 159.219,382.332 209.455,407.6 173.005,425.93 0,425.93 0,86.07 172.939,86.07 209.455,104.434 159.219,129.701 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/RE.svg":'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 26.666 640 426.666">\n <g fill-rule="evenodd" stroke-width="1pt">\n <path fill="#fff" d="M0 0h640v480H0z"/>\n <path fill="#00267f" d="M0 0h213.3v480H0z"/>\n <path fill="#f31830" d="M426.7 0H640v480H426.7z"/>\n </g>\n</svg>\n',"./assets/country-flag-icons/3x2/RO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#0052B4" width="512" height="341.337"/>\n<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.882" fill="#FFFFFF" width="512" height="113.775"/>\n<path fill="#D80027" d="M129.468,181.793v85.136c0,48.429,63.267,63.267,63.267,63.267S256,315.356,256,266.929v-85.136 H129.468z"/>\n<g>\n\t<polygon fill="#FFDA44" points="155.634,196.634 229.835,196.634 229.835,166.953 214.994,174.373 192.733,152.113 170.474,174.373 155.634,166.953 "/>\n\t<polygon fill="#FFDA44" points="241.16,278.782 192.929,230.551 144.698,278.782 160.439,294.522 192.929,262.032 225.419,294.522 "/>\n</g>\n<path fill="#FFFFFF" d="M241.16,233.734h-22.504c1.266-2.184,2.001-4.713,2.001-7.418c0-8.196-6.645-14.84-14.84-14.84 c-5.663,0-10.581,3.172-13.083,7.836c-2.502-4.663-7.421-7.836-13.083-7.836c-8.195,0-14.84,6.644-14.84,14.84 c0,2.706,0.736,5.235,2.001,7.418h-22.114c0,8.196,7.139,14.84,15.334,14.84h-0.494c0,8.196,6.644,14.84,14.84,14.84 c0,7.257,5.211,13.286,12.094,14.576l-11.694,26.401c5.603,2.278,11.727,3.544,18.149,3.544c6.422,0,12.545-1.266,18.149-3.544 l-11.694-26.401c6.883-1.29,12.094-7.319,12.094-14.576c8.196,0,14.84-6.644,14.84-14.84h-0.494 C234.021,248.574,241.16,241.93,241.16,233.734z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#FFFFFF" points="0,85.33 0,199.107 0,312.885 0,426.662 512,426.662 512,312.885 512,199.107 512,85.33 "/>\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<rect y="85.333" fill="#FFFFFF" width="512" height="113.775"/>\n<rect y="312.884" fill="#D80027" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/RW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<rect y="255.994" fill="#FFDA44" width="512" height="81.619"/>\n<rect y="337.614" fill="#496E2D" width="512" height="89.043"/>\n<polygon fill="#FFDA44" points="278.261,185.209 299.105,195.013 288.006,215.199 310.638,210.869 313.506,233.734 329.271,216.918 345.037,233.734 347.904,210.869 370.537,215.199 359.438,195.013 380.281,185.209 359.437,175.404 370.537,155.219 347.904,159.548 345.036,136.684 329.271,153.5 313.505,136.684 310.638,159.548 288.004,155.219 299.104,175.406 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#055e1c" width="512" height="341.333"/>\n<g fill="#FFFFFF">\n\t<path d="M183.548,289.386c0,12.295,9.731,22.261,21.736,22.261h65.208c0,10.244,8.11,18.551,18.114,18.551 h21.736c10.004,0,18.114-8.306,18.114-18.551v-22.261H183.548z"/>\n\t<path d="M330.264,181.791v51.942c0,8.183-6.5,14.84-14.491,14.84v22.261 c19.976,0,36.226-16.643,36.226-37.101v-51.942L330.264,181.791L330.264,181.791z"/>\n\t<path d="M174.491,233.734c0,8.183-6.5,14.84-14.491,14.84v22.261c19.976,0,36.226-16.643,36.226-37.101 v-51.942h-21.736V233.734z"/>\n\t<rect x="297.661" y="181.788" width="21.736" height="51.942"/>\n\t<path d="M265.057,211.473c0,2.046-1.625,3.71-3.623,3.71c-1.998,0-3.623-1.664-3.623-3.71v-29.682h-21.736 v29.682c0,2.046-1.625,3.71-3.623,3.71s-3.623-1.664-3.623-3.71v-29.682h-21.736v29.682c0,14.32,11.376,25.971,25.358,25.971 c5.385,0,10.38-1.733,14.491-4.677c4.11,2.944,9.106,4.677,14.491,4.677c1.084,0,2.15-0.078,3.2-0.215 c-1.54,6.499-7.255,11.345-14.068,11.345v22.261c19.976,0,36.226-16.643,36.226-37.101v-22.261v-29.682h-21.736L265.057,211.473 L265.057,211.473z"/>\n\t<rect x="207.093" y="248.57" width="32.601" height="22.261"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SB.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#496E2D" width="512" height="341.337"/>\n<polyline fill="#0052B4" points="0,426.663 0,85.329 512,85.329 "/>\n<polygon fill="#FFDA44" points="0,396.494 0,426.663 45.255,426.663 512,115.499 512,85.329 466.745,85.329 "/>\n<g>\n\t<polygon fill="#FFFFFF" points="85.688,108.787 90.808,124.543 107.374,124.543 93.971,134.28 99.091,150.037 85.688,140.299 72.283,150.037 77.403,134.28 64,124.543 80.567,124.543 "/>\n\t<polygon fill="#FFFFFF" points="170.312,108.787 175.433,124.543 192,124.543 178.597,134.28 183.717,150.037 170.312,140.299 156.909,150.037 162.029,134.28 148.626,124.543 165.192,124.543 "/>\n\t<polygon fill="#FFFFFF" points="85.688,191.289 90.808,207.045 107.374,207.045 93.971,216.783 99.091,232.54 85.688,222.801 72.283,232.54 77.403,216.783 64,207.045 80.567,207.045 "/>\n\t<polygon fill="#FFFFFF" points="170.312,191.289 175.433,207.045 192,207.045 178.597,216.783 183.717,232.54 170.312,222.801 156.909,232.54 162.029,216.783 148.626,207.045 165.192,207.045 "/>\n\t<polygon fill="#FFFFFF" points="128,150.037 133.12,165.793 149.688,165.793 136.283,175.531 141.403,191.289 128,181.55 114.597,191.289 119.717,175.531 106.312,165.793 122.88,165.793 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon fill="#FFDA44" points="235.454,85.337 0,426.663 427.345,85.337 "/>\n<polygon fill="#6DA544" points="512,329.393 0,426.663 512,426.663 "/>\n<polygon fill="#D80027" points="512,85.337 427.345,85.337 0,426.663 512,222.151 "/>\n<polygon fill="#0052B4" points="0,85.337 0,426.663 235.454,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" width="512" height="113.775"/>\n<polygon fill="#496E2D" points="0,426.668 0,85.331 256,256.006 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFDA44" points="192,85.33 128,85.33 128,223.996 0,223.996 0,287.996 128,287.996 128,426.662 192,426.662 192,287.996 512,287.996 512,223.996 192,223.996 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="170.663"/>\n<g>\n\t<path fill="#FFFFFF" d="M83.478,170.666c0-24.865,17.476-45.637,40.812-50.734c-3.587-0.784-7.308-1.208-11.13-1.208 c-28.688,0-51.942,23.254-51.942,51.941s23.255,51.942,51.942,51.942c3.822,0,7.543-0.425,11.13-1.208 C100.954,216.304,83.478,195.532,83.478,170.666z"/>\n\t<polygon fill="#FFFFFF" points="150.261,122.435 153.945,133.772 165.866,133.772 156.221,140.779 159.905,152.116 150.261,145.11 140.616,152.116 144.301,140.779 134.656,133.772 146.577,133.772 "/>\n\t<polygon fill="#FFFFFF" points="121.344,144.696 125.027,156.033 136.948,156.033 127.303,163.04 130.987,174.377 121.344,167.371 111.699,174.377 115.384,163.04 105.739,156.033 117.66,156.033 "/>\n\t<polygon fill="#FFFFFF" points="179.178,144.696 182.862,156.033 194.783,156.033 185.138,163.04 188.822,174.377 179.178,167.371 169.534,174.377 173.219,163.04 163.574,156.033 175.495,156.033 "/>\n\t<polygon fill="#FFFFFF" points="168.047,178.087 171.731,189.424 183.652,189.424 174.008,196.431 177.692,207.768 168.047,200.762 158.404,207.768 162.088,196.431 152.444,189.424 164.364,189.424 "/>\n\t<polygon fill="#FFFFFF" points="132.474,178.087 136.157,189.424 148.078,189.424 138.434,196.431 142.118,207.768 132.474,200.762 122.83,207.768 126.514,196.431 116.87,189.424 128.79,189.424 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SH.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"\n\t viewBox="0 0 512 341.3">\n<rect y="0" fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.4 80,117.4 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.4 176,117.4 \t"/>\n</g>\n<g>\n\t<path fill="#29DBFF" d="M449,139.7c-0.1,44.4-7.2,92.1-65,114.9c-57.8-22.8-64.9-70.5-65-114.9L449,139.7L449,139.7z"/>\n\t<path fill="#ffda44" d="M449,139.7c0-16.7-0.9-32.9-0.5-47.1C426.9,83,398.4,81,383.9,81s-42.9,2-64.6,11.6\n\t\tc0.4,14.2-0.5,30.4-0.5,47.1H449z"/>\n\t<path fill="#BF521B" d="M369.5,204.5l0.3,10.3L357,215l4.9,13.2l-17.3,0c-18-20.2-23.4-42.4-24.9-68.1l9.1-9.7l8.3,14.3l10.8-12.8\n\t\tl7,7.8l0.8,15.7L369.5,204.5z"/>\n</g>\n<polygon fill="#474747" points="436.6,192.5 428,210.8 381,210.8 351.8,191.3 377.5,201.8 402.6,201.8 406.3,195.3 413.5,195.5\n\t415.5,192.5 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SI.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="199.112" fill="#0052B4" width="512" height="113.775"/>\n<rect y="312.888" fill="#D80027" width="512" height="113.775"/>\n<path fill="#FFFFFF" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l-0.145-44.188l89.043-0.266L233.606,196.639z"/>\n<path fill="#0052B4" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l-0.145-44.188l89.043-0.266L233.606,196.639z"/>\n<path fill="#FFFFFF" d="M233.606,196.639v14.837c0,34.081-44.522,44.522-44.522,44.522s-44.522-10.44-44.522-44.522v-14.837 l14.848,14.837l29.674-22.261l29.685,22.261L233.606,196.639z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#D80027" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="512,295.883 202.195,295.883 202.195,426.666 183.652,426.666 140.978,426.666 122.435,426.666 122.435,295.883 0,295.883 0,277.329 0,234.666 0,216.111 122.435,216.111 122.435,85.329 140.978,85.329 183.652,85.329 202.195,85.329 202.195,216.111 512,216.111 512,234.666 512,277.329 "/>\n<polygon fill="#2E52B2" points="512,234.666 512,277.329 183.652,277.329 183.652,426.666 140.978,426.666 140.978,277.329 0,277.329 0,234.666 140.978,234.666 140.978,85.329 183.652,85.329 183.652,234.666 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="196.641" fill="#0052B4" width="512" height="118.717"/>\n<rect y="315.359" fill="#D80027" width="512" height="111.304"/>\n<path fill="#FFFFFF" d="M129.468,181.799v85.136c0,48.429,63.267,63.267,63.267,63.267S256,315.362,256,266.935v-85.136 H129.468z"/>\n<path fill="#D80027" d="M146.126,184.294v81.941c0,5.472,1.215,10.64,3.623,15.485c23.89,0,59.599,0,85.97,0 c2.408-4.844,3.623-10.012,3.623-15.485v-81.941H146.126z"/>\n<polygon fill="#FFFFFF" points="221.301,241.427 199.876,241.427 199.876,227.144 214.16,227.144 214.16,212.861 199.876,212.861 199.876,198.577 185.593,198.577 185.593,212.861 171.311,212.861 171.311,227.144 185.593,227.144 185.593,241.427 164.167,241.427 164.167,255.711 185.593,255.711 185.593,269.994 199.876,269.994 199.876,255.711 221.301,255.711 "/>\n<path fill="#0052B4" d="M169.232,301.658c9.204,5.783,18.66,9.143,23.502,10.636c4.842-1.494,14.298-4.852,23.502-10.636 c9.282-5.833,15.79-12.506,19.484-19.939c-4.075-2.883-9.047-4.583-14.418-4.583c-1.956,0-3.856,0.232-5.682,0.657 c-3.871-8.796-12.658-14.94-22.884-14.94c-10.227,0-19.013,6.144-22.884,14.94c-1.827-0.425-3.728-0.657-5.682-0.657 c-5.372,0-10.344,1.701-14.418,4.583C153.443,289.152,159.95,295.825,169.232,301.658z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n<rect y="312.888" fill="#338AF3" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.34" fill="#338AF3" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="512,85.334 512,252.024 0,256.175 0,85.334 "/>\n<path fill="#6DA544" d="M323.744,203.099L256,270.843l-67.744-67.744c-8.76,13.005-13.879,28.658-13.879,45.483v22.261 c0,35.744,23.097,66.193,55.148,77.213c-4.277,8.385-3.556,18.848,2.712,26.671c8.326-6.673,16.945-13.58,24.258-19.439 c7.313,5.859,15.932,12.767,24.258,19.439c6.342-7.915,7.011-18.534,2.564-26.968c31.614-11.261,54.308-41.485,54.308-76.916 v-22.261C337.623,231.756,332.504,216.105,323.744,203.099z"/>\n<path fill="#FFDA44" d="M256,330.206c-32.732,0-59.362-26.63-59.362-59.362v-22.261c0-32.733,26.63-59.363,59.362-59.363 s59.362,26.63,59.362,59.362v22.261C315.362,303.576,288.732,330.206,256,330.206z"/>\n<path fill="#338AF3" d="M293.101,270.843v-22.261c0-20.458-16.643-37.101-37.101-37.101s-37.101,16.643-37.101,37.101v22.261 L256,278.264L293.101,270.843z"/>\n<path fill="#6DA544" d="M218.899,270.843L218.899,270.843c0,20.458,16.643,37.101,37.101,37.101 c20.458,0,37.101-16.643,37.101-37.101l0,0H218.899L218.899,270.843z"/>\n<path fill="#FFDA44" d="M300.522,189.22c0-12.295-9.966-22.261-22.261-22.261c-5.703,0-10.901,2.146-14.84,5.672v-13.093 h7.421v-14.84h-7.421v-7.421h-14.84v7.421h-7.421v14.84h7.421v13.093c-3.94-3.526-9.138-5.672-14.841-5.672 c-12.295,0-22.261,9.966-22.261,22.261c0,6.591,2.867,12.512,7.421,16.589v13.093h74.203v-13.093 C297.655,201.732,300.522,195.812,300.522,189.22z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect x="330.207" y="85.331" fill="#D80027" width="181.793" height="341.337"/>\n<g>\n\t<rect y="85.331" fill="#496E2D" width="181.793" height="341.337"/>\n\t<polygon fill="#496E2D" points="255.999,196.632 270.732,241.979 318.417,241.979 279.841,270.008 294.575,315.356 255.999,287.33 217.422,315.356 232.159,270.008 193.583,241.979 241.264,241.979 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#338AF3" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="256,157.273 278.663,227.021 352,227.021 292.668,270.127 315.332,339.876 256,296.769 196.668,339.876 219.332,270.127 160,227.021 233.337,227.021 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SR.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="196.636" fill="#A2001D" width="512" height="118.728"/>\n<g>\n\t<rect y="352.462" fill="#6DA544" width="512" height="74.207"/>\n\t<rect y="85.331" fill="#6DA544" width="512" height="74.207"/>\n</g>\n<polygon fill="#FFDA44" points="256.742,218.003 266.172,247.024 296.69,247.024 272,264.963 281.431,293.986 256.742,276.049 232.053,293.986 241.484,264.963 216.794,247.024 247.312,247.024 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="322.783" fill="#496E2D" width="512" height="103.88"/>\n<rect y="85.337" width="512" height="104.515"/>\n<rect y="210.877" fill="#A2001D" width="512" height="89.656"/>\n<polygon fill="#0052B4" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon fill="#FFDA44" points="73.178,209.188 94.009,238.255 128.093,227.425 106.886,256.22 127.716,285.289 93.777,274.018 72.569,302.812 72.803,267.05 38.863,255.777 72.946,244.947 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/ST.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#6DA544" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n</g>\n<polygon fill="#D80027" points="256,256.006 0,426.668 0,85.331 "/>\n<polygon points="302.049,226.318 309.417,248.992 333.259,248.992 313.971,263.008 321.337,285.682 302.049,271.667 282.762,285.682 290.128,263.008 270.84,248.992 294.682,248.992 "/>\n<polygon points="376.252,226.318 383.619,248.992 407.461,248.992 388.173,263.008 395.54,285.682 376.252,271.667 356.964,285.682 364.331,263.008 345.043,248.992 368.885,248.992 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SV.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#0052B4" width="512" height="113.775"/>\n\t<rect y="312.888" fill="#0052B4" width="512" height="113.775"/>\n</g>\n<polygon fill="#FFDA44" points="228.582,261.936 256,214.447 283.418,261.936 "/>\n<polygon fill="#6DA544" points="291.616,277.616 256,295.425 220.384,277.616 220.384,253.872 291.616,253.872 "/>\n<path fill="#FFDA44" d="M289.579,216.485l-12.592,12.592c5.37,5.372,8.693,12.791,8.693,20.988 c0,16.392-13.289,29.68-29.68,29.68c-16.392,0-29.68-13.289-29.68-29.68c0-8.195,3.322-15.616,8.693-20.988l-12.592-12.592 c-8.594,8.594-13.91,20.466-13.91,33.579c0,26.228,21.261,47.489,47.489,47.489s47.489-21.261,47.489-47.489 C303.489,236.95,298.173,225.077,289.579,216.485z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/SX.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<polygon fill="#D80027" points="512,85.331 512,252.021 0,256.173 0,85.331 "/>\n<polygon fill="#FFFFFF" points="256,256.006 0,426.668 0,85.331 "/>\n<g>\n\t<path fill="#FFDA44" d="M59.621,256c-0.116,1.509-0.193,3.031-0.193,4.57c0,32.821,26.607,59.429,59.429,59.429 s59.429-26.607,59.429-59.429c0-1.539-0.078-3.061-0.193-4.57L59.621,256L59.621,256z"/>\n\t<circle fill="#FFDA44" cx="118.862" cy="210.287" r="18.286"/>\n</g>\n<path fill="#D80027" d="M77.715,205.714v59.429c0,31.494,41.144,41.143,41.144,41.143s41.144-9.649,41.144-41.143v-59.429 H77.715z"/>\n<path fill="#338AF3" d="M118.877,287.148c-7.632-2.746-22.876-9.767-22.876-22.006v-41.144h45.715v41.144 C141.715,277.422,126.472,284.425,118.877,287.148z"/>\n<polygon fill="#F3F3F3" points="128.001,246.856 128.001,237.714 118.857,233.143 109.715,237.714 109.715,246.856 105.144,251.429 105.144,269.714 132.572,269.714 132.572,251.429 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/SY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFFFFF" width="512" height="341.337"/>\n<rect y="85.331" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.882" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#6DA544" points="187.31,215.184 196.518,243.525 226.32,243.525 202.21,261.043 211.419,289.385 187.31,271.869 163.2,289.385 172.409,261.043 148.3,243.525 178.101,243.525 "/>\n\t<polygon fill="#6DA544" points="324.69,215.184 333.899,243.525 363.7,243.525 339.591,261.043 348.8,289.385 324.69,271.869 300.581,289.385 309.79,261.043 285.68,243.525 315.482,243.525 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/SZ.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<path fill="#2B5DEA" d="M0,0h900v600H0V0z"/>\n<path fill="#FFDF29" d="M0,100h900v400H0V100z"/>\n<path fill="#D70000" d="M0,150h900v300H0V150z"/>\n<path fill="#FFFFFF" d="M450,171.4v257.2c114.3,0,171.4-85.7,214.3-128.6C621.4,257.1,564.3,171.4,450,171.4z"/>\n<path d="M450,171.4c-100,0-171.4,85.7-214.3,128.6C278.6,342.9,350,428.6,450,428.6V171.4z"/>\n<rect x="346.3" y="254.3" fill="#FFFFFF" width="21" height="91.3"/>\n<rect x="398.2" y="254.3" fill="#FFFFFF" width="21" height="91.3"/>\n<rect x="477.8" y="254.3" width="21" height="91.3"/>\n<rect x="529.7" y="254.3" width="21" height="91.3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TA.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect fill="#0052B4" width="512" height="341.3"/>\n<polygon fill="#FFFFFF" points="256,0 256,117.4 209.9,117.4 256,148.1 256,170.7 233.4,170.7 160,121.8 160,170.7 96,170.7 96,121.8\n\t22.6,170.7 0,170.7 0,148.1 46.1,117.4 0,117.4 0,53.4 46.1,53.4 0,22.7 0,0 22.6,0 96,48.9 96,0 160,0 160,48.9 233.4,0 "/>\n<g>\n\t<polygon fill="#D80027" points="144,0 112,0 112,69.4 0,69.4 0,101.4 112,101.4 112,170.7 144,170.7 144,101.4 256,101.4 256,69.4\n\t\t144,69.4 \t"/>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,0 0,15.1 57.4,53.4 80,53.4 \t"/>\n\t<polygon fill="#D80027" points="256,0 256,15.1 198.6,53.4 176,53.4 \t"/>\n</g>\n<polygon fill="#2E52B2" points="256,22.7 256,53.4 209.9,53.4 "/>\n<g>\n\t<polygon fill="#D80027" points="0,170.7 0,155.6 57.4,117.4 80,117.4 \t"/>\n\t<polygon fill="#D80027" points="256,170.7 256,155.6 198.6,117.4 176,117.4 \t"/>\n</g>\n<g>\n\t<path fill="#29DBFF" d="M448.9,169.5c0,9.6-0.3,29.6-1.4,39.2c-4.1,34.9-23.5,68.8-62.1,85.9c-45.3-17.9-60.8-51-64.9-85.9\n\t\tc-1.1-9.6-1.5-19.4-1.5-29l0.3-47.1h129.2L448.9,169.5z"/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M447.5,208.7c-0.2,1.6-0.4,3.3-0.6,4.9c-4.8,33.1-22.9,65.4-61.5,81c-43.2-17-59.4-47.9-64.2-81\n\t\tc-0.2-1.6-0.4-3.2-0.6-4.9"/>\n</g>\n<polygon fill="#29DBFF" points="385.4,251.7 362.5,208.7 408.3,208.7 "/>\n<polygon fill="#FFFFFF" points="385.4,165.8 362.5,208.7 408.3,208.7 "/>\n<ellipse fill="#FFBE57" cx="474.8" cy="236.8" rx="16.8" ry="43.3"/>\n<ellipse fill="#FFBE57" cx="295.3" cy="236.8" rx="16.8" ry="43.3"/>\n<polygon fill="#FFFFFF" points="385.4,31.5 352,75.5 420.5,75.5 "/>\n<path fill="#FFFFFF" d="M315.5,280c0,0,33.8,29.5,69.9,29.5s67.1-29.5,67.1-29.5l8.5,14.6c0,0-21.8,31.4-75.6,31.4S307,294.6,307,294.6\n\tL315.5,280z"/>\n<ellipse fill="#A5A5A5" cx="386.3" cy="104.3" rx="34.3" ry="23.3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" fill="#0052B4" width="512" height="341.337"/>\n<path fill="#FFDA44" d="M332.058,191.996v78.221c0,38.103,51.942,49.779,51.942,49.779s51.942-11.675,51.942-49.779v-78.221 H332.058z"/>\n<path fill="#FF9811" d="M376.579,220.44c0,7.855-6.644,28.445-14.84,28.445s-14.84-20.589-14.84-28.445 c0-7.856,14.84-14.222,14.84-14.222S376.579,212.585,376.579,220.44z"/>\n<path fill="#A2001D" d="M415.961,235.93c2.394-5.6,4.257-13.785,4.257-17.86c0-6.546-8.904-11.852-8.904-11.852 s-8.904,5.306-8.904,11.852c0,4.075,1.862,12.26,4.257,17.86l-5.141,11.123c3.022,1.178,6.324,1.831,9.788,1.831 c3.463,0,6.766-0.654,9.788-1.831L415.961,235.93z"/>\n<path fill="#6DA544" d="M372.87,270.217c0,0-7.421,14.222-7.421,28.445c0,0,22.261,0,37.101,0 c0-14.222-7.421-28.445-7.421-28.445l-11.13-7.111L372.87,270.217z"/>\n<path fill="#D80027" d="M395.13,270.217v-3.555c0-5.891-4.983-10.666-11.13-10.666c-6.147,0-11.13,4.776-11.13,10.666v3.555 H395.13L395.13,270.217z"/>\n<polygon fill="#FFFFFF" points="256,85.333 256,115.886 210.833,140.985 256,140.985 256,200.344 196.897,200.344 256,233.179 256,255.996 229.32,255.996 155.826,215.17 155.826,255.996 100.174,255.996 100.174,207.423 12.744,255.996 0,255.996 0,225.442 45.167,200.344 0,200.344 0,140.985 59.103,140.985 0,108.139 0,85.333 26.68,85.333 100.174,126.158 100.174,85.333 155.826,85.333 155.826,133.905 243.256,85.333 "/>\n<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.662 0,154.662 0,186.662 112,186.662 112,255.996 144,255.996 144,186.662 256,186.662 256,154.662 144,154.662 "/>\n<polygon fill="#0052B4" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<polygon fill="#FFFFFF" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n<g>\n\t<polygon fill="#D80027" points="155.826,200.344 256,255.996 256,240.259 184.153,200.344 "/>\n\t<polygon fill="#D80027" points="71.846,200.344 0,240.259 0,255.996 0,255.996 100.174,200.344 "/>\n</g>\n<polygon fill="#0052B4" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<polygon fill="#FFFFFF" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n<g>\n\t<polygon fill="#D80027" points="100.174,140.982 0,85.33 0,101.067 71.847,140.982 "/>\n\t<polygon fill="#D80027" points="184.154,140.982 256,101.067 256,85.33 256,85.33 155.826,140.982 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TD.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="170.663" height="341.337"/>\n<rect x="341.337" y="85.331" fill="#D80027" width="170.663" height="341.337"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n\t<path fill="#FFFFFF" d="M0,0h21v15H0V0z"/>\n\t<path fill="#073AB6" d="M0,0h22.5v15H0V0z"/>\n\t<path fill="#FFFFFF" d="M0,0h11.3v7.5H0V0z"/>\n\t<path fill="#F44653" d="M7.1,0h3.6v7H7.1V0z"/>\n\t<path fill="#1035BB" d="M0,0h3.6v7H0V0z"/>\n\t<path fill="#FFFFFF" d="M3.6,0h3.6v7H3.6V0z"/>\n\t<path fill="#FFFFFF" d="M14.5,6h5L19,7h-1.5v0.5h1l-0.5,1h-0.5V10h-1V7H15L14.5,6z M18.5,8.5l1,1.5h-2L18.5,8.5z M15.5,8.5l1,1.5h-2\n\t\tL15.5,8.5z M17,11.5L16,10h2L17,11.5z M20,8c-0.3,0-0.5-0.2-0.5-0.5S19.7,7,20,7s0.5,0.2,0.5,0.5S20.3,8,20,8z M14,8\n\t\tc-0.3,0-0.5-0.2-0.5-0.5S13.7,7,14,7s0.5,0.2,0.5,0.5S14.3,8,14,8z M15,12c-0.3,0-0.5-0.2-0.5-0.5S14.7,11,15,11s0.5,0.2,0.5,0.5\n\t\tS15.3,12,15,12z M19,12c-0.3,0-0.5-0.2-0.5-0.5S18.7,11,19,11s0.5,0.2,0.5,0.5S19.3,12,19,12z M17,13c-0.3,0-0.5-0.2-0.5-0.5\n\t\tS16.7,12,17,12s0.5,0.2,0.5,0.5S17.3,13,17,13z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<g>\n\t<rect y="85.337" fill="#496E2D" width="512" height="68.263"/>\n\t<rect y="358.4" fill="#496E2D" width="512" height="68.263"/>\n\t<rect y="221.863" fill="#496E2D" width="512" height="68.263"/>\n</g>\n<rect y="85.337" fill="#D80027" width="204.054" height="204.054"/>\n<polygon fill="#FFFFFF" points="102.026,133.938 115.286,174.75 158.202,174.75 123.484,199.976 136.744,240.79 102.026,215.566 67.307,240.79 80.57,199.976 45.852,174.75 88.765,174.75 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TH.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="194.056" fill="#0052B4" width="512" height="123.882"/>\n<g>\n\t<rect y="85.334" fill="#D80027" width="512" height="54.522"/>\n\t<rect y="372.143" fill="#D80027" width="512" height="54.522"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TJ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" fill="#6DA544" width="512" height="113.775"/>\n<g>\n\t<polygon fill="#FFDA44" points="226.318,300.522 285.682,300.522 285.682,275.292 273.809,281.229 256,263.421 238.191,281.229 226.318,275.292 "/>\n\t<polygon fill="#FFDA44" points="192.355,270.84 195.118,279.344 204.058,279.344 196.825,284.599 199.588,293.101 192.355,287.846 185.121,293.101 187.884,284.599 180.651,279.344 189.591,279.344 "/>\n\t<polygon fill="#FFDA44" points="200.921,241.16 203.684,249.662 212.624,249.662 205.391,254.917 208.154,263.421 200.921,258.165 193.687,263.421 196.45,254.917 189.217,249.662 198.157,249.662 "/>\n\t<polygon fill="#FFDA44" points="225.409,218.899 228.172,227.401 237.112,227.401 229.879,232.656 232.642,241.16 225.409,235.904 218.175,241.16 220.938,232.656 213.705,227.401 222.645,227.401 "/>\n\t<polygon fill="#FFDA44" points="319.645,270.84 316.882,279.344 307.942,279.344 315.175,284.599 312.412,293.101 319.645,287.846 326.879,293.101 324.116,284.599 331.349,279.344 322.409,279.344 "/>\n\t<polygon fill="#FFDA44" points="311.079,241.16 308.316,249.662 299.376,249.662 306.609,254.917 303.846,263.421 311.079,258.165 318.313,263.421 315.55,254.917 322.783,249.662 313.843,249.662 "/>\n\t<polygon fill="#FFDA44" points="286.591,218.899 283.828,227.401 274.888,227.401 282.121,232.656 279.358,241.16 286.591,235.904 293.825,241.16 291.062,232.656 298.295,227.401 289.355,227.401 "/>\n\t<polygon fill="#FFDA44" points="256,207.767 258.763,216.27 267.704,216.27 260.47,221.526 263.233,230.028 256,224.774 248.767,230.028 251.53,221.526 244.296,216.27 253.237,216.27 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TK.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#0052B4" width="512" height="341.326"/>\n<g>\n\t<polygon fill="#FFFFFF" points="210.715,174.377 214.399,185.715 226.318,185.715 216.675,192.721 220.359,204.058 210.715,197.051 201.071,204.058 204.755,192.721 195.11,185.715 207.031,185.715 "/>\n\t<polygon fill="#FFFFFF" points="116.816,281.971 121.421,296.143 136.321,296.143 124.266,304.9 128.872,319.073 116.816,310.313 104.761,319.073 109.365,304.9 97.311,296.143 112.21,296.143 "/>\n\t<polygon fill="#FFFFFF" points="144.696,119.679 149.3,133.851 164.201,133.851 152.145,142.609 156.751,156.78 144.696,148.021 132.64,156.78 137.246,142.609 125.191,133.851 140.091,133.851 "/>\n\t<polygon fill="#FFFFFF" points="69.539,175.331 74.143,189.503 89.043,189.503 76.988,198.261 81.594,212.432 69.539,203.674 57.483,212.432 62.089,198.261 50.034,189.503 64.934,189.503 "/>\n</g>\n<g>\n\t<path fill="#FFDA44" d="M483.386,354.503H117.801c0,0,109.234-88.562,310.593-220.938 C428.395,133.565,339.951,262.5,483.386,354.503z"/>\n\t<path fill="#FFDA44" d="M117.801,366.089c-11.177,0-11.195,17.37,0,17.37h365.585c11.177,0,11.195-17.37,0-17.37H117.801z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TL.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFDA44" points="256,256 0,90.691 0,134.933 155.826,256 0,377.067 0,421.309 "/>\n<polygon points="0,90.691 0,421.309 189.217,256 "/>\n<polygon fill="#FFFFFF" points="44.184,213.36 69.096,236.937 99.217,220.527 84.494,251.507 109.405,275.082 75.393,270.652 60.67,301.63 54.374,267.914 20.362,263.484 50.481,247.076 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#496E2D" width="512" height="341.326"/>\n<g>\n\t<path fill="#FFFFFF" d="M357.208,183.679c8.397-23.404-1.036-48.858-21.281-61.536c3.641,0.474,7.287,1.331,10.884,2.621 c27.002,9.688,41.038,39.428,31.35,66.431s-39.428,41.038-66.431,31.35c-3.597-1.291-6.957-2.947-10.069-4.895 C325.347,220.734,348.811,207.084,357.208,183.679z"/>\n\t<polygon fill="#FFFFFF" points="310.637,115.729 303.34,125.156 292.12,121.13 298.832,130.982 291.536,140.409 302.979,137.071 309.691,146.923 310.052,135.009 321.496,131.67 310.275,127.645 "/>\n\t<polygon fill="#FFFFFF" points="330.338,146.448 323.042,155.875 311.821,151.849 318.533,161.701 311.237,171.128 322.68,167.789 329.392,177.642 329.752,165.727 341.197,162.387 329.976,158.363 "/>\n\t<polygon fill="#FFFFFF" points="275.9,126.916 268.604,136.343 257.385,132.319 264.096,142.17 256.8,151.596 268.243,148.258 274.955,158.11 275.316,146.195 286.76,142.858 275.539,138.831 "/>\n\t<polygon fill="#FFFFFF" points="275.101,162.105 267.805,171.532 256.584,167.506 263.296,177.358 256,186.785 267.444,183.447 274.155,193.299 274.517,181.384 285.96,178.046 274.74,174.02 "/>\n\t<polygon fill="#FFFFFF" points="308.585,174.118 301.289,183.545 290.069,179.519 296.781,189.372 289.484,198.798 300.928,195.46 307.64,205.312 308,193.397 319.443,190.059 308.224,186.034 "/>\n</g>\n<rect x="83.478" y="85.337" fill="#D80027" width="89.043" height="341.326"/>\n<polygon fill="#FFFFFF" points="117.458,175.191 102.55,164.086 102.55,148.381 117.458,137.276 138.542,137.276 153.45,148.381 153.45,164.086 138.542,175.191 "/>\n<g>\n\t<polygon fill="#FF9811" points="128,137.276 117.458,137.276 102.55,148.381 102.55,156.059 128,156.059 "/>\n\t<polygon fill="#FF9811" points="128,175.191 138.542,175.191 153.45,164.086 153.45,156.074 128,156.074 "/>\n</g>\n<polygon fill="#FFFFFF" points="117.458,374.725 102.55,363.619 102.55,347.915 117.458,336.81 138.542,336.81 153.45,347.915 153.45,363.619 138.542,374.725 "/>\n<g>\n\t<polygon fill="#FF9811" points="128,336.81 117.458,336.81 102.55,347.915 102.55,355.593 128,355.593 "/>\n\t<polygon fill="#FF9811" points="128,374.725 138.542,374.725 153.45,363.619 153.45,355.608 128,355.608 "/>\n</g>\n<g>\n\t<polygon fill="#496E2D" points="117.458,274.957 102.55,263.852 102.55,248.149 117.458,237.043 138.542,237.043 153.45,248.149 153.45,263.852 138.542,274.957 "/>\n\t<polygon fill="#496E2D" points="153.971,299.391 147.478,299.391 147.478,292.898 136.067,292.898 127.999,284.83 119.932,292.898 108.522,292.898 108.522,299.391 102.029,299.391 102.029,312.377 108.522,312.377 108.522,318.869 119.932,318.869 128,326.938 136.068,318.869 147.478,318.869 147.478,312.377 153.971,312.377 "/>\n\t<polygon fill="#496E2D" points="153.971,199.623 147.478,199.623 147.478,193.131 136.067,193.131 127.999,185.062 119.932,193.131 108.522,193.131 108.522,199.623 102.029,199.623 102.029,212.609 108.522,212.609 108.522,219.101 119.932,219.101 128,227.171 136.068,219.101 147.478,219.101 147.478,212.609 153.971,212.609 "/>\n</g>\n<g>\n\t<rect x="120.576" y="248.576" fill="#D80027" width="14.84" height="14.84"/>\n\t<circle fill="#D80027" cx="128" cy="206.113" r="7.421"/>\n\t<circle fill="#D80027" cx="128" cy="305.887" r="7.421"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<circle fill="#FFFFFF" cx="256" cy="255.994" r="96"/>\n<g>\n\t<polygon fill="#D80027" points="267.826,219.291 284.296,241.986 310.969,233.337 294.473,256.013 310.941,278.708 284.277,270.027 267.782,292.703 267.799,264.663 241.135,255.981 267.809,247.333 "/>\n\t<path fill="#D80027" d="M277.818,312.724c-31.33,0-56.727-25.397-56.727-56.727s25.397-56.727,56.727-56.727 c9.769,0,18.96,2.47,26.985,6.819c-12.589-12.31-29.804-19.909-48.803-19.909c-38.558,0-69.818,31.259-69.818,69.818 s31.26,69.818,69.818,69.818c18.999,0,36.215-7.599,48.803-19.909C296.777,310.254,287.587,312.724,277.818,312.724z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/TO.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" fill="#FFFFFF" width="256" height="170.663"/>\n<polygon fill="#D80027" points="141.357,157.303 141.357,130.59 114.643,130.59 114.643,157.303 87.93,157.303 87.93,184.016 114.643,184.016 114.643,210.729 141.357,210.729 141.357,184.016 168.07,184.016 168.07,157.303 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TR.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 450 300">\n<path fill="#d80027" d="M0,150V0h225h225v150v150H225H0V150z"/>\n<polygon fill="#FFFFFF" points="247.3,118.3 282.5,124.1 307.4,99 312.5,131.8 344,150 312.5,168.2 307.6,201.7 282.5,175.8\n\t247.3,181.6 263,150 "/>\n<path fill="#FFFFFF" d="M240.6,228.6c-43.3,0-78.3-35.1-78.3-78.3S197.4,72,240.6,72c8.1,0,15.8,1.2,23.2,3.5c-17.3-15-39.8-24-64.5-24\n\tc-54.4,0-98.6,44.1-98.6,98.6s44.1,98.6,98.6,98.6c24.2,0,46.3-8.7,63.4-23.1C255.7,227.5,248.3,228.6,240.6,228.6z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TT.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<polygon fill="#FFFFFF" points="6.066,85.337 214.027,297.973 345.611,426.663 505.934,426.663 297.973,214.027 166.389,85.337 "/>\n<polygon points="43.364,85.337 384.69,426.663 468.636,426.663 127.31,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/TV.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600">\n<rect fill="#0052B4" width="900" height="600"/>\n<path fill="#00B2EE" d="M0,300h450V0h450v600H0V300z"/>\n<path fill="#FFDA44" d="M345.3,480.9l29.4,90.6l-77.1-56H393l-77.1,56L345.3,480.9z"/>\n<path fill="#FFDA44" d="M706.4,340l29.4,90.6l-77.1-56h95.3l-77.1,56L706.4,340z"/>\n<path fill="#FFDA44" d="M812.8,261.5l29.4,90.6l-77.1-56h95.3l-77.1,56L812.8,261.5z"/>\n<path fill="#FFDA44" d="M812.8,37.4l29.4,90.6l-77.1-56h95.3l-77.1,56L812.8,37.4z"/>\n<polygon fill="#FFFFFF" points="449.9,0 449.9,206.3 368.9,206.3 449.9,260.3 449.9,300 410.2,300 281.2,214.1 281.2,300 168.7,300 168.7,214.1 39.7,300 0,300 0,260.3 81,206.3 0,206.3 0,93.8 81,93.8 0,39.9 0,0 39.7,0 168.7,85.9 168.7,0 281.2,0 281.2,85.9 410.2,0 "/>\n<polygon fill="#D80027" points="253.1,0 196.8,0 196.8,122 0,122 0,178.2 196.8,178.2 196.8,300 253.1,300 253.1,178.2 449.9,178.2 449.9,122 253.1,122 \t"/>\n<polygon fill="#2E52B2" points="449.9,39.9 449.9,93.8 368.9,93.8 "/>\n<polygon fill="#D80027" points="0,300 0,280.7 109.9,206.3 149.6,206.3 12.8,300 \t"/>\n<polygon fill="#D80027" points="12.8,0.1 149.6,93.8 109.9,93.8 0,19.4 0,0.1 "/>\n<polygon fill="#D80027" points="449.9,0.2 449.9,19.5 340,93.8 300.3,93.8 437.1,0.2 "/>\n<polygon fill="#D80027" points="437.1,300 300.3,206.3 340,206.3 449.9,280.7 449.9,300 "/>\n<path fill="#FFDA44" d="M719.9,131.6l29.4,90.6l-77.1-56h95.3l-77.1,56L719.9,131.6z"/>\n<path fill="#FFDA44" d="M584,187.7l29.4,90.6l-77.1-56h95.3l-77.1,56L584,187.7z"/>\n<path fill="#FFDA44" d="M614,430.6l29.4,90.6l-77.1-56h95.3l-77.1,56L614,430.6z"/>\n<path fill="#FFDA44" d="M488,332l29.4,90.6l-77.1-56h95.3l-77.1,56L488,332z"/>\n<path fill="#FFDA44" d="M488,464l29.4,90.6l-77.1-56h95.3l-77.1,56L488,464z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect y="85.337" fill="#0052B4" width="256" height="170.663"/>\n<polygon fill="#FFFFFF" points="186.435,170.669 162.558,181.9 175.272,205.025 149.345,200.064 146.059,226.256 128,206.993 109.94,226.256 106.655,200.064 80.728,205.024 93.442,181.899 69.565,170.669 93.442,159.438 80.728,136.313 106.655,141.273 109.941,115.081 128,134.344 146.06,115.081 149.345,141.273 175.273,136.313 162.558,159.438 "/>\n<circle fill="#0052B4" cx="128" cy="170.674" r="29.006"/>\n<path fill="#FFFFFF" d="M128,190.06c-10.692,0-19.391-8.7-19.391-19.391c0-10.692,8.7-19.391,19.391-19.391 c10.692,0,19.391,8.7,19.391,19.391C147.391,181.36,138.692,190.06,128,190.06z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/TZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#338AF3" width="512" height="341.326"/>\n<polyline fill="#6DA544" points="0,426.663 0,85.337 512,85.337 "/>\n<polygon fill="#FFDA44" points="512,152.222 512,85.337 411.67,85.337 0,359.778 0,426.663 100.33,426.663 "/>\n<polygon points="512,85.337 512,125.462 60.193,426.663 0,426.663 0,386.538 451.807,85.337 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/UA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFDA44" width="512" height="341.326"/>\n<rect y="85.337" fill="#338AF3" width="512" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/UG.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#232323" width="512" height="341.3"/>\n<rect y="56.9" fill="#FFDA44" width="512" height="56.9"/>\n<rect y="113.8" fill="#D32300" width="512" height="56.9"/>\n<rect y="227.6" fill="#FFDA44" width="512" height="56.9"/>\n<rect y="284.4" fill="#D32300" width="512" height="56.9"/>\n<circle fill="#FFFFFF" cx="256" cy="170.7" r="80.7"/>\n<path fill="#000000" d="M234.5,127.5c0.9-1.4-19.6-2-19.6-2c1.7-2.5,18.4-10.5,18.4-10.5s-0.9-6,2.7-9.8l-4.5-9.8c0,0,7-3.4,18.4-3.4\n\ts19.9,7,21,13.1l-6.4,3.4c-0.1,4.7,1.7,11.6-4.3,17.3c-5.9,5.7-8.3,6.9-8.5,18.8c0,3.9,2.3,8.2,8.8,11.7\n\tc17.4,9.3,38.6,28.2,44.6,33.9c6.1,5.7,5.1,19.2,2.6,25.2s-12.1,14.3-14.3,13.6c-2.2-0.6,1.2-9.2-3.5-11.6c0,0-8.9-7.6-16.8,0.6\n\ts-0.2,25.2,3.9,28c4.1,2.8,1.7,5-1.9,5h-28.1c-3.8,0-5.4-2.3-1.9-5c7.6-3.8,12.4-15.3,7.4-20.3c-4.9-4.9-18.3,1.5-21.5,6.3\n\tc-2.8,2.8-8.8,3.6-12.9-1.4s-4.1-10.4-1.1-12.5c7-4.8,0,0,0.1-0.1c0,0,11.9-8.6,29.9-9c3.9,0,4.8-2.2,2.2-4.8\n\tc0,0-30.9-27.4-28.1-44.2C224.1,141.7,241.1,133.7,234.5,127.5C233.2,125.7,234.5,127.5,234.5,127.5z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/US.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#D80027">\n\t<rect y="0" width="513" height="38"/>\n\t<rect y="76" width="513" height="38"/>\n\t<rect y="152" width="513" height="38"/>\n\t<rect y="228" width="513" height="38"/>\n\t<rect y="304" width="513" height="38"/>\n</g>\n<rect y="0" fill="#2E52B2" width="256.5" height="190"/>\n<g fill="#FFFFFF">\n\t<polygon points="47.8,141.9 43.8,129.1 39.5,141.9 26.3,141.9 37,149.6 33,162.4 43.8,154.5 54.5,162.4 50.3,149.6\n\t\t61.2,141.9 \t"/>\n\t<polygon points="104.2,141.9 100.1,129.1 95.9,141.9 82.7,141.9 93.4,149.6 89.3,162.4 100.1,154.5 110.8,162.4\n\t\t106.8,149.6 117.6,141.9 \t"/>\n\t<polygon points="160.6,141.9 156.4,129.1 152.4,141.9 138.9,141.9 149.8,149.6 145.6,162.4 156.4,154.5 167.3,162.4\n\t\t163.1,149.6 173.9,141.9 \t"/>\n\t<polygon points="216.9,141.9 212.8,129.1 208.6,141.9 195.4,141.9 206.1,149.6 202.1,162.4 212.8,154.5 223.6,162.4\n\t\t219.4,149.6 230.3,141.9 \t"/>\n\t<polygon points="100.1,78.3 95.9,91.1 82.7,91.1 93.4,99 89.3,111.6 100.1,103.8 110.8,111.6 106.8,99 117.6,91.1\n\t\t104.2,91.1 \t"/>\n\t<polygon points="43.8,78.3 39.5,91.1 26.3,91.1 37,99 33,111.6 43.8,103.8 54.5,111.6 50.3,99 61.2,91.1 47.8,91.1\n\t\t"/>\n\t<polygon points="156.4,78.3 152.4,91.1 138.9,91.1 149.8,99 145.6,111.6 156.4,103.8 167.3,111.6 163.1,99 173.9,91.1\n\t\t160.6,91.1 \t"/>\n\t<polygon points="212.8,78.3 208.6,91.1 195.4,91.1 206.1,99 202.1,111.6 212.8,103.8 223.6,111.6 219.4,99 230.3,91.1\n\t\t216.9,91.1 \t"/>\n\t<polygon points="43.8,27.7 39.5,40.3 26.3,40.3 37,48.2 33,60.9 43.8,53 54.5,60.9 50.3,48.2 61.2,40.3 47.8,40.3 \t"/>\n\t<polygon points="100.1,27.7 95.9,40.3 82.7,40.3 93.4,48.2 89.3,60.9 100.1,53 110.8,60.9 106.8,48.2 117.6,40.3\n\t\t104.2,40.3 \t"/>\n\t<polygon points="156.4,27.7 152.4,40.3 138.9,40.3 149.8,48.2 145.6,60.9 156.4,53 167.3,60.9 163.1,48.2 173.9,40.3\n\t\t160.6,40.3 \t"/>\n\t<polygon points="212.8,27.7 208.6,40.3 195.4,40.3 206.1,48.2 202.1,60.9 212.8,53 223.6,60.9 219.4,48.2 230.3,40.3\n\t\t216.9,40.3 \t"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/UY.svg":'<?xml version="1.0" encoding="UTF-8"?>\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 513 342">\n<rect y="0" fill="#FFFFFF" width="513" height="342"/>\n<g fill="#338AF3">\n\t<rect y="38" width="513" height="38"/>\n\t<rect y="114" width="513" height="38"/>\n\t<rect y="190" width="513" height="38"/>\n\t<rect y="266" width="513" height="38"/>\n</g>\n<rect y="0" fill="#FFFFFF" width="256.5" height="190"/>\n<polygon fill="#FFDA44" points="192,95 165.8,107.3 179.8,132.6 151.4,127.2 147.8,155.9 128,134.8 108.2,155.9 104.6,127.2\n\t76.2,132.6 90.2,107.3 64,95 90.2,82.7 76.2,57.4 104.6,62.8 108.2,34.1 128,55.2 147.8,34.1 151.4,62.8 179.8,57.4 165.8,82.7 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/UZ.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#D80027" width="512" height="341.326"/>\n<rect y="322.783" fill="#6DA544" width="512" height="103.88"/>\n<rect id="SVGCleanerId_0" y="85.337" fill="#338AF3" width="512" height="104.515"/>\n<rect y="210.877" fill="#FFFFFF" width="512" height="89.656"/>\n<g>\n\t<rect id="SVGCleanerId_0_1_" y="85.337" fill="#338AF3" width="512" height="104.515"/>\n</g>\n<g>\n\t<path fill="#FFFFFF" d="M188.688,137.589c0-15.984,11.234-29.339,26.236-32.614c-2.306-0.503-4.698-0.777-7.155-0.777 c-18.442,0-33.391,14.949-33.391,33.391s14.949,33.391,33.391,33.391c2.458,0,4.85-0.273,7.155-0.777 C199.922,166.928,188.688,153.573,188.688,137.589z"/>\n\t<polygon fill="#FFFFFF" points="234.658,152.766 236.919,159.723 244.234,159.723 238.316,164.024 240.577,170.98 234.658,166.68 228.74,170.98 231.001,164.024 225.083,159.723 232.398,159.723 "/>\n\t<polygon fill="#FFFFFF" points="258.006,152.766 260.266,159.723 267.581,159.723 261.663,164.024 263.924,170.98 258.006,166.68 252.088,170.98 254.348,164.024 248.431,159.723 255.745,159.723 "/>\n\t<polygon fill="#FFFFFF" points="281.353,152.766 283.613,159.723 290.928,159.723 285.011,164.024 287.271,170.98 281.353,166.68 275.435,170.98 277.695,164.024 271.777,159.723 279.092,159.723 "/>\n\t<polygon fill="#FFFFFF" points="304.7,152.766 306.962,159.723 314.277,159.723 308.358,164.024 310.619,170.98 304.7,166.68 298.782,170.98 301.044,164.024 295.125,159.723 302.439,159.723 "/>\n\t<polygon fill="#FFFFFF" points="328.048,152.766 330.308,159.723 337.623,159.723 331.705,164.024 333.966,170.98 328.048,166.68 322.13,170.98 324.39,164.024 318.473,159.723 325.787,159.723 "/>\n\t<polygon fill="#FFFFFF" points="258.006,128.482 260.266,135.438 267.581,135.438 261.663,139.738 263.924,146.695 258.006,142.396 252.088,146.695 254.348,139.738 248.431,135.438 255.745,135.438 "/>\n\t<polygon fill="#FFFFFF" points="281.353,128.482 283.613,135.438 290.928,135.438 285.011,139.738 287.271,146.695 281.353,142.396 275.435,146.695 277.695,139.738 271.777,135.438 279.092,135.438 "/>\n\t<polygon fill="#FFFFFF" points="304.7,128.482 306.962,135.438 314.277,135.438 308.358,139.738 310.619,146.695 304.7,142.396 298.782,146.695 301.044,139.738 295.125,135.438 302.439,135.438 "/>\n\t<polygon fill="#FFFFFF" points="328.048,128.482 330.308,135.438 337.623,135.438 331.705,139.738 333.966,146.695 328.048,142.396 322.13,146.695 324.39,139.738 318.473,135.438 325.787,135.438 "/>\n\t<polygon fill="#FFFFFF" points="281.353,104.198 283.613,111.154 290.928,111.154 285.011,115.454 287.271,122.411 281.353,118.111 275.435,122.411 277.695,115.454 271.777,111.154 279.092,111.154 "/>\n\t<polygon fill="#FFFFFF" points="304.7,104.198 306.962,111.154 314.277,111.154 308.358,115.454 310.619,122.411 304.7,118.111 298.782,122.411 301.044,115.454 295.125,111.154 302.439,111.154 "/>\n\t<polygon fill="#FFFFFF" points="328.048,104.198 330.308,111.154 337.623,111.154 331.705,115.454 333.966,122.411 328.048,118.111 322.13,122.411 324.39,115.454 318.473,111.154 325.787,111.154 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.326"/>\n<rect x="256" y="85.331" fill="#FFFFFF" width="256" height="341.337"/>\n<path fill="#ACABB1" d="M321.353,233.837l32.073,42.43c-5.053,7.651-5.026,17.961,0.817,25.692 c7.414,9.807,21.374,11.748,31.182,4.335c9.807-7.414,11.748-21.374,4.334-31.182c-5.843-7.731-15.756-10.568-24.495-7.795 l-49.988-66.129l-11.838,8.949l-17.759,13.424l17.899,23.677L321.353,233.837z M367.528,282.617 c3.27-2.472,7.923-1.824,10.395,1.445c2.471,3.269,1.824,7.923-1.445,10.395c-3.269,2.47-7.923,1.824-10.394-1.446 C363.613,289.743,364.259,285.088,367.528,282.617z"/>\n<path fill="#FFDA44" d="M376.367,247.24l17.899-23.677l-17.759-13.424l-11.838-8.949l-49.988,66.129 c-8.74-2.775-18.651,0.063-24.495,7.795c-7.414,9.808-5.473,23.768,4.334,31.182c9.808,7.414,23.768,5.473,31.182-4.335 c5.845-7.731,5.871-18.041,0.817-25.692l32.073-42.43L376.367,247.24z M313.863,293.011c-2.471,3.27-7.125,3.916-10.394,1.446 c-3.27-2.472-3.916-7.126-1.445-10.395c2.471-3.268,7.125-3.916,10.395-1.445C315.687,285.088,316.334,289.743,313.863,293.011z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/VC.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#FFDA44" width="512" height="341.337"/>\n<rect y="85.331" fill="#338AF3" width="170.663" height="341.337"/>\n<g>\n\t<rect x="341.337" y="85.331" fill="#6DA544" width="170.663" height="341.337"/>\n\t<polygon fill="#6DA544" points="214.261,283.82 180.868,233.734 214.26,183.647 247.652,233.734 "/>\n\t<polygon fill="#6DA544" points="297.739,283.82 264.348,233.734 297.739,183.647 331.132,233.734 "/>\n\t<polygon fill="#6DA544" points="256,350.603 222.609,300.516 256,250.429 289.391,300.516 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VE.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.5 15">\n<rect fill="#FFCE00" width="22.5" height="5"/>\n<rect y="5" fill="#203899" width="22.5" height="5"/>\n<rect y="10" fill="#D82B2B" width="22.5" height="5"/>\n<polygon fill="#FFFFFF" points="12.13,5.38 12.27,5.84 12.72,5.98 12.33,6.25 12.34,6.73 11.96,6.44 11.51,6.59 11.66,6.15 11.38,5.77\n\t11.85,5.77 "/>\n<polygon fill="#FFFFFF" points="10.36,5.38 10.63,5.77 11.1,5.77 10.82,6.15 10.97,6.6 10.52,6.44 10.14,6.72 10.15,6.25 9.76,5.97\n\t10.21,5.84 "/>\n<polygon fill="#FFFFFF" points="13.8,5.94 13.79,6.42 14.18,6.69 13.72,6.83 13.58,7.28 13.31,6.9 12.83,6.9 13.12,6.52 12.97,6.07\n\t13.42,6.23 "/>\n<polygon fill="#FFFFFF" points="8.69,5.96 9.09,6.23 9.53,6.05 9.4,6.51 9.7,6.87 9.23,6.89 8.97,7.29 8.81,6.85 8.35,6.73 8.72,6.43\n\t"/>\n<polygon fill="#FFFFFF" points="15.24,7.13 15.04,7.57 15.29,7.97 14.82,7.92 14.51,8.28 14.41,7.82 13.98,7.64 14.39,7.4 14.42,6.93\n\t14.77,7.24 "/>\n<polygon fill="#FFFFFF" points="15.43,8.25 15.64,8.68 16.11,8.75 15.77,9.08 15.85,9.54 15.43,9.32 15.01,9.54 15.09,9.08 14.75,8.75\n\t15.22,8.68 "/>\n<polygon fill="#FFFFFF" points="7,8.2 7.21,8.63 7.68,8.69 7.34,9.02 7.42,9.49 7,9.27 6.58,9.49 6.66,9.02 6.32,8.69 6.79,8.63 "/>\n<polygon fill="#FFFFFF" points="7.31,7.05 7.76,7.19 8.14,6.9 8.14,7.38 8.53,7.64 8.08,7.79 7.95,8.25 7.67,7.87 7.2,7.88 7.47,7.5\n\t"/>\n</svg>\n',"./assets/country-flag-icons/3x2/VG.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.334" fill="#0052B4" width="512" height="341.337"/>\n<polygon fill="#FFFFFF" points="256,85.334 256,202.66 209.931,202.66 256,233.38 256,255.997 233.372,255.997 160,207.078 160,255.997 96,255.997 96,207.078 22.628,255.997 0,255.997 0,233.38 46.069,202.66 0,202.66 0,138.66 46.069,138.66 0,107.951 0,85.334 22.628,85.334 96,134.241 96,85.334 160,85.334 160,134.241 233.372,85.334 "/>\n<g>\n\t<polygon fill="#D80027" points="144,85.33 112,85.33 112,154.663 0,154.663 0,186.663 112,186.663 112,255.997 144,255.997 144,186.663 256,186.663 256,154.663 144,154.663 "/>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n</g>\n<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n<g>\n\t<polygon fill="#D80027" points="0,85.329 0,100.412 57.377,138.663 80,138.663 "/>\n\t<polygon fill="#D80027" points="256,85.329 256,100.412 198.623,138.663 176,138.663 "/>\n</g>\n<polygon fill="#2E52B2" points="256,107.951 256,138.663 209.931,138.663 "/>\n<g>\n\t<polygon fill="#D80027" points="0,255.997 0,240.915 57.377,202.663 80,202.663 "/>\n\t<polygon fill="#D80027" points="256,255.997 256,240.915 198.623,202.663 176,202.663 "/>\n</g>\n<path fill="#FFDA44" d="M384,259.706l-46.129,46.129c8.645,16.675,26.051,28.074,46.129,28.074 c20.078,0,37.484-11.4,46.129-28.074L384,259.706z"/>\n<path fill="#6DA544" d="M332.058,178.084v81.623v0.001l0,0C332.059,299.467,384,311.649,384,311.649 s51.941-12.182,51.942-51.942l0,0v-0.001v-81.622H332.058z"/>\n<rect x="372.87" y="215.181" fill="#FFFFFF" width="22.261" height="59.359"/>\n<circle fill="#A2001D" cx="384" cy="215.181" r="11.13"/>\n<g>\n\t<rect x="346.902" y="192.92" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="346.902" y="226.312" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="346.902" y="259.703" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="192.92" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="226.312" fill="#FFDA44" width="14.84" height="14.84"/>\n\t<rect x="406.261" y="259.703" fill="#FFDA44" width="14.84" height="14.84"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/VI.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.3">\n<rect y="0" fill="#FFFFFF" width="512" height="341.3"/>\n<path fill="#1583C4" d="M397.7,166.3L346.7,264c-1.1,2-0.3,4.5,1.8,5.6c2,1.1,4.5,0.3,5.6-1.8l51-97.7c1-2.1,0.1-4.6-2-5.5\n\tC401.1,163.7,398.8,164.4,397.7,166.3L397.7,166.3z"/>\n<path fill="#1583C4" d="M404.9,188l-57.8,75.4c-1.3,1.9-0.8,4.5,1.1,5.8c1.7,1.2,4.1,0.9,5.5-0.7l57.8-75.4c1.4-1.8,1.1-4.4-0.8-5.8\n\tC408.9,185.8,406.3,186.2,404.9,188L404.9,188z"/>\n<path fill="#1583C4" d="M379,181.3l-32.5,83.1c-0.8,2.1,0.2,4.6,2.4,5.4c2.1,0.8,4.6-0.2,5.4-2.4l32.5-83.1c0.7-2.2-0.4-4.5-2.6-5.3\n\tC382.1,178.4,379.9,179.4,379,181.3z"/>\n<path fill="#409347" d="M122.1,171.9c0.4,1.7,1.2,4.7,2.2,8.5c1.7,6.4,3.6,12.8,5.6,18.7c2.3,6.9,14.7,31.4,20.2,39.1\n\tc6.9,9.7,14.1,19.3,21.5,28.6c1.6,1.9,4.5,2.1,6.4,0.5c1.8-1.6,2.1-4.3,0.7-6.2c-7.3-9.2-14.4-18.6-21.2-28.2\n\tc-4.2-5.8-17.2-31.1-19-36.7c-2.9-8.7-5.4-17.6-7.6-26.5c-0.5-2.4-2.9-4-5.3-3.5c-2.4,0.5-4,2.9-3.5,5.3\n\tC122,171.7,122.1,171.8,122.1,171.9L122.1,171.9z"/>\n<g>\n\t<path fill="#FFD836" stroke="#231F20" stroke-miterlimit="10" d="M297.1,114.9c0,0-17.6-72.1-36.1-72.1c-6.9,0-11.9-0.6-15.4,6.4c-0.9,1.7-20.7-1.6-19.1,20.8\n\t\tc0.5,6.9,1.1-9.8,14.9-3.4c6.3,3-16.4,48.2-16.4,48.2H297.1z"/>\n\t<path fill="#FFD836" stroke="#231F20" stroke-miterlimit="10" d="M466.1,48.4l-90.9,22c-75.3,18.3-42.1,44.4-42.1,44.4l-72.1,12l-72.1-12c0,0,33.2-26.1-42.1-44.4l-90.9-22\n\t\tC43.1,45.3,38.1,51.8,45.3,63c0,0,106.6,104,126.8,112c20.2,8.1,40.8,0,40.8,0s-14.9,8.7-24,24c-9.2,15.3-4.6,34.7-38.9,40.2\n\t\tc-5.5,6.6-5,14,2.9,19.9c7.9,5.8,72.1-48.1,72.1-48.1s-24,24.4-24,36.1c0,5.1,44.1,53.8,60.1,53.8s60.1-48.7,60.1-53.8\n\t\tc0-11.7-24-36.1-24-36.1s64.2,53.9,72.1,48.1s11.4-19.3,2.8-19.9c-28-1.8-29.7-24.9-38.9-40.2c-9.2-15.3-24-24-24-24\n\t\ts20.6,8.1,40.8,0S476.7,63,476.7,63C483.9,51.8,479,45.3,466.1,48.4z"/>\n</g>\n<path fill="#FFFFFF" stroke="#231F20" stroke-miterlimit="10" d="M201.3,111.8v80.3c0,45.7,59.7,59.7,59.7,59.7s59.7-14,59.7-59.7v-80.3H201.3L201.3,111.8z"/>\n<g>\n\t<path fill="#D80027" d="M225.2,137.7v97.3c8.2,6,17,10.2,23.9,12.9V137.7H225.2L225.2,137.7z"/>\n\t<path fill="#D80027" d="M296.8,137.7v97.3c-8.2,6-17,10.2-23.9,12.9V137.7H296.8L296.8,137.7z"/>\n</g>\n<rect x="201.3" y="111.8" fill="#0052B4" width="119.4" height="37.9"/>\n<polygon fill="#1583C4" points="60.1,210.5 38.2,152.4 15.7,152.4 47.5,233.2 72.7,233.2 104.2,152.4 81.7,152.4 "/>\n<rect x="451.5" y="151.9" fill="#1583C4" width="18.9" height="81.7"/>\n</svg>',"./assets/country-flag-icons/3x2/VN.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<polygon fill="#D80027" points="196.641,85.337 0,85.337 0,426.663 196.641,426.663 512,426.663 512,85.337 "/>\n<polygon fill="#FFDA44" points="256,157.279 278.663,227.026 352,227.026 292.668,270.132 315.332,339.881 256,296.774 196.668,339.881 219.332,270.132 160,227.026 233.337,227.026 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/VU.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" width="512" height="341.326"/>\n<polygon fill="#6DA544" points="512,256 512,426.663 0,426.663 215.185,256 "/>\n<polygon fill="#D80027" points="512,85.337 512,256 215.185,256 0,85.337 "/>\n<polygon points="221.001,239.304 26.868,85.337 8.956,85.337 217.124,250.435 512,250.435 512,239.304 "/>\n<polygon points="8.956,426.663 26.868,426.663 221.001,272.696 512,272.696 512,261.565 217.124,261.565 "/>\n<polygon points="0,92.44 0,106.646 188.317,256 0,405.354 0,419.559 206.229,256 "/>\n<g>\n\t<polygon fill="#FFDA44" points="8.956,85.337 0,85.337 0,92.44 206.229,256 0,419.559 0,426.663 8.956,426.663 217.124,261.565 512,261.565 512,250.435 217.124,250.435 "/>\n\t<path fill="#FFDA44" d="M63.718,292.382v-14.295c14.265,0,25.87-11.606,25.87-25.869c0-10.092-8.211-18.303-18.304-18.303 c-6.875,0-12.469,5.593-12.469,12.469c0,4.397,3.577,7.974,7.974,7.974c2.485,0,4.508-2.023,4.508-4.508h14.295 c0,10.368-8.435,18.804-18.802,18.804c-12.279-0.002-22.269-9.993-22.269-22.271c0-14.758,12.006-26.764,26.764-26.764 c17.975,0,32.599,14.623,32.599,32.599C103.884,274.363,85.866,292.382,63.718,292.382z"/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/WF.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 100">\n<rect fill="#ED2939" width="150" height="100"/>\n<rect fill="#002395" width="20" height="44.33"/>\n<rect x="20" fill="#FFFFFF" width="20" height="44.33"/>\n<path fill="none" stroke="#FFFFFF" stroke-width="3" d="M0,44.33h62.75V0"/>\n<path fill="#FFFFFF" d="M108.08,43.29L87.96,23.17h40.25L108.08,43.29z M101.38,50L81.25,29.88v40.25L101.38,50z M108.08,56.71\n\tL87.96,76.83h40.25L108.08,56.71z M114.79,50l20.13-20.13v40.25L114.79,50z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/WORLD.svg":'<?xml version="1.0" encoding="utf-8"?>\n\x3c!-- Generator: Adobe Illustrator 25.4.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"\n\t viewBox="0 0 513 342" enable-background="new 0 0 513 342" xml:space="preserve">\n<path d="M256.7,1.1c-93.4,0-169.3,76-169.3,169.3s76,169.3,169.3,169.3S426,263.8,426,170.4S350,1.1,256.7,1.1z M382.6,250.6\n\tc-17-8.1-38.4-14.3-62.5-18.2c2.6-16.4,4.2-33.9,4.6-51.9h81C403.9,206.1,395.7,230.1,382.6,250.6z M256.7,315.2\n\tc-10.7,0-22.6-14.5-31.7-38.8c-3.1-8.2-5.8-17.2-8-26.9c12.8-1.3,26.1-2,39.7-2s26.9,0.7,39.7,2c-2.2,9.7-4.9,18.7-8,26.9\n\tC279.2,300.7,267.4,315.2,256.7,315.2z M256.7,227.5c-15,0-29.6,0.8-43.6,2.2c-2.5-15.5-4-32.1-4.4-49.3h95.9\n\tc-0.4,17.2-1.9,33.8-4.4,49.3C286.3,228.2,271.7,227.5,256.7,227.5z M107.7,180.5h81c0.4,18,2,35.5,4.6,51.9\n\tc-24.1,3.9-45.5,10.1-62.5,18.2C117.6,230.1,109.4,206.1,107.7,180.5z M130.7,90.3c17,8.1,38.4,14.3,62.5,18.2\n\tc-2.6,16.4-4.2,33.9-4.6,51.9h-81C109.4,134.7,117.6,110.8,130.7,90.3z M256.7,25.7c10.7,0,22.6,14.5,31.7,38.8\n\tc3.1,8.2,5.8,17.2,8,26.9c-12.8,1.3-26.1,2-39.7,2s-26.9-0.7-39.7-2c2.2-9.7,4.9-18.7,8-26.9C234.1,40.2,245.9,25.7,256.7,25.7z\n\t M256.7,113.4c15,0,29.6-0.8,43.6-2.2c2.5,15.5,4,32.1,4.4,49.3h-95.9c0.4-17.2,1.9-33.8,4.4-49.3\n\tC227,112.7,241.7,113.4,256.7,113.4z M324.7,160.4c-0.4-18-2-35.5-4.6-51.9c24.1-3.9,45.5-10.1,62.5-18.2\n\tc13.1,20.5,21.3,44.5,23,70.1H324.7z M370.4,73.8c-14.8,6.5-33.3,11.6-54.1,14.9c-2.5-11.2-5.6-21.8-9.2-31.3\n\tc-5-13.4-10.9-24.3-17.4-32.7C321.7,32.1,349.8,49.6,370.4,73.8z M223.6,24.8c-6.5,8.3-12.4,19.3-17.4,32.7\n\tc-3.6,9.5-6.7,20.1-9.2,31.3c-20.7-3.4-39.3-8.4-54.1-14.9C163.5,49.6,191.6,32.1,223.6,24.8z M142.9,267.1\n\tc14.8-6.5,33.3-11.6,54.1-14.9c2.5,11.2,5.6,21.8,9.2,31.3c5,13.4,10.9,24.3,17.4,32.7C191.6,308.8,163.5,291.2,142.9,267.1z\n\t M289.7,316.1c6.5-8.3,12.4-19.3,17.4-32.7c3.6-9.5,6.7-20.1,9.2-31.3c20.7,3.4,39.3,8.4,54.1,14.9\n\tC349.8,291.2,321.7,308.8,289.7,316.1z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/WS.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#D80027" width="512" height="341.337"/>\n<rect y="85.331" fill="#0052B4" width="256" height="170.663"/>\n<g>\n\t<polygon fill="#FFFFFF" points="165.483,181.79 168.247,190.294 177.186,190.294 169.954,195.548 172.717,204.051 165.483,198.796 158.25,204.051 161.013,195.548 153.78,190.294 162.72,190.294 "/>\n\t<polygon fill="#FFFFFF" points="120.579,115.007 125.185,129.18 140.085,129.18 128.03,137.937 132.635,152.108 120.579,143.35 108.525,152.108 113.13,137.937 101.074,129.18 115.975,129.18 "/>\n\t<polygon fill="#FFFFFF" points="165.101,129.848 169.707,144.02 184.607,144.02 172.552,152.777 177.156,166.95 165.101,158.19 153.047,166.95 157.651,152.777 145.596,144.02 160.496,144.02 "/>\n\t<polygon fill="#FFFFFF" points="129.909,189.211 134.515,203.383 149.415,203.383 137.36,212.141 141.964,226.312 129.909,217.553 117.855,226.312 122.459,212.141 110.404,203.383 125.304,203.383 "/>\n\t<polygon fill="#FFFFFF" points="90.899,152.108 95.504,166.281 110.404,166.281 98.349,175.038 102.953,189.211 90.899,180.451 78.844,189.211 83.448,175.038 71.393,166.281 86.293,166.281 "/>\n</g>\n</svg>\n',"./assets/country-flag-icons/3x2/XK.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 341.33">\n<rect y="0" fill="#0052B4" width="512" height="341.34"/>\n<g>\n\t<polygon fill="#FFFFFF" points="220.72,42.63 228.67,58.74 246.44,61.32 233.58,73.86 236.62,91.56 220.72,83.2 204.82,91.56\n\t\t207.85,73.86 194.99,61.32 212.77,58.74 \t"/>\n\t<polygon fill="#FFFFFF" points="291.28,42.57 299.23,58.67 317.01,61.26 304.15,73.79 307.18,91.5 291.28,83.14 275.38,91.5\n\t\t278.42,73.79 265.56,61.26 283.33,58.67 \t"/>\n\t<polygon fill="#FFFFFF" points="353.36,53.93 361.31,70.04 379.08,72.62 366.22,85.16 369.26,102.86 353.36,94.51 337.46,102.86\n\t\t340.5,85.16 327.63,72.62 345.41,70.04 \t"/>\n\t<polygon fill="#FFFFFF" points="416.37,72.23 424.32,88.34 442.09,90.93 429.23,103.46 432.27,121.17 416.37,112.81 400.47,121.17\n\t\t403.5,103.46 390.64,90.93 408.42,88.34 \t"/>\n\t<polygon fill="#FFFFFF" points="158.64,53.93 166.59,70.04 184.37,72.62 171.5,85.16 174.54,102.86 158.64,94.51 142.74,102.86\n\t\t145.78,85.16 132.92,72.62 150.69,70.04 \t"/>\n\t<polygon fill="#FFFFFF" points="95.63,72.23 103.58,88.34 121.36,90.93 108.5,103.46 111.53,121.17 95.63,112.81 79.73,121.17\n\t\t82.77,103.46 69.91,90.93 87.68,88.34 \t"/>\n</g>\n<path fill="#FFDA44" d="M217.53,259.33l-27.22-13.61l-27.22-54.43h27.22l27.22-27.22l13.61-27.22l27.22-13.61l13.61,13.61l27.22,13.61\n\tv13.61l13.61,13.61l40.83,27.22L340,245.73l-40.83,40.83l-13.61-27.22l-40.83,27.22v27.22l-13.61-13.61L217.53,259.33z"/>\n</svg>\n',"./assets/country-flag-icons/3x2/YE.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<rect y="85.337" fill="#D80027" width="512" height="113.775"/>\n<rect y="312.888" width="512" height="113.775"/>\n</svg>\n',"./assets/country-flag-icons/3x2/YT.svg":'<?xml version="1.0" encoding="utf-8"?>\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 60">\n<rect fill="#FFFFFF" width="90" height="60"/>\n<path stroke="#7f7f7f" stroke-width="0.25" fill="#ABABAB" d="M12.8,38.5c0,0,4,1.6,1.2-0.5C11.6,36.3,9,40.4,9,43.1s1.2,7,7.5,7c7.6,0,11.4-5.7,11.4-11.4\n\tc0-4.8-3.7-13.5-6.5-14.6c-3.1-1.2-6.7-3.5-6.8-5c0-0.5,1.4-0.1,3.3,0.9c3.1,1.7,6.6,2.5,6.6,1.4c0-1.1-2.9-3.1-4-4.6\n\tc-1.2-1.6-0.9-5.5-3-5.5c-7.6,0-9.9,7.7-7,11.7c1.9,2.6-4.3,1-4.3,1s0,5.3,3.2,7.3c3,1.8,4.8,3.9,4.8,3.9s-0.2-4.6,0.5-3.9\n\tc0.6,0.7,11.1,4.5,10.3,12c-0.3,3-4.5,5.4-8.5,5.2c-4-0.2-6.8-2.4-6.4-5.4C10.3,38.9,12.8,38.5,12.8,38.5z"/>\n<path stroke="#7f7f7f" stroke-width="0.25" fill="#ABABAB" d="M77.2,38.5c0,0-4,1.6-1.2-0.5c2.4-1.8,5.1,2.3,5.1,5.1s-1.2,7-7.5,7c-7.6,0-11.4-5.7-11.4-11.4\n\tc0-4.8,3.7-13.5,6.5-14.6c3.1-1.2,6.7-3.5,6.8-5c0-0.5-1.4-0.1-3.3,0.9c-3.1,1.7-6.6,2.5-6.6,1.4c0-1.1,2.9-3.1,4-4.6\n\tc1.2-1.6,0.9-5.5,3-5.5c7.6,0,9.9,7.7,7,11.7c-1.9,2.6,4.3,1,4.3,1s0,5.3-3.2,7.3c-3,1.8-4.8,3.9-4.8,3.9s0.2-4.6-0.5-3.9\n\tc-0.6,0.7-11.1,4.5-10.3,12c0.3,3,4.5,5.4,8.5,5.2c4-0.2,6.8-2.4,6.4-5.4C79.7,38.9,77.2,38.5,77.2,38.5z"/>\n<g>\n\t<path fill="#DE393A" d="M31,28.8c0,0,0,12.1,0,14s2.1,1.6,2.1,1.6s8.2,0,9.3,0c1.2,0,2.6,2.3,2.6,2.3s1.4-2.3,2.5-2.3s9.6,0,9.6,0\n\t\ts2,0.2,2-1.8s0-13.9,0-13.9H31z"/>\n\t<rect x="31" y="13.1" fill="#3951A3" width="28" height="15.7"/>\n</g>\n<path fill="#FFFFFF" d="M50.1,16.5c-0.4,2.4-2.5,4.2-5.1,4.2c-2.5,0-4.6-1.8-5.1-4.2c-0.5,0.9-0.8,1.9-0.8,3c0,3.3,2.6,5.9,5.9,5.9\n\tc3.3,0,5.9-2.6,5.9-5.9C50.9,18.4,50.6,17.4,50.1,16.5z"/>\n<circle fill="#FEE05F" cx="39.1" cy="36.5" r="3"/>\n<circle fill="#FEE05F" cx="50.9" cy="36.5" r="3"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZA.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.337" fill="#FFFFFF" width="512" height="341.326"/>\n<polygon points="114.024,256.001 0,141.926 0,370.096 "/>\n<polygon fill="#FFDA44" points="161.192,256 0,94.7 0,141.926 114.024,256.001 0,370.096 0,417.234 "/>\n<path fill="#6DA544" d="M509.833,289.391L509.833,289.391c0.058-0.44,0.804-0.878,2.167-1.318V256v-33.391h-2.167H222.602 L85.33,85.337H0V94.7L161.192,256L0,417.234v9.429h85.33l137.272-137.272H509.833z"/>\n<polygon fill="#0052B4" points="503.181,322.783 236.433,322.783 132.552,426.663 512,426.663 512,322.783 "/>\n<polygon fill="#D80027" points="503.181,189.217 512,189.217 512,85.337 132.552,85.337 236.433,189.217 "/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZM.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.331" fill="#496E2D" width="512" height="341.337"/>\n<path fill="#FF9811" d="M490.668,195.476h-48c0-8.836-7.164-16-16-16s-16,7.164-16,16h-48c0,8.836,7.697,16,16.533,16h-0.533 c0,8.836,7.162,16,16,16c0,8.836,7.162,16,16,16h32c8.836,0,16-7.164,16-16c8.836,0,16-7.164,16-16h-0.533 C482.972,211.476,490.668,204.312,490.668,195.476z"/>\n<rect x="341.337" y="255.994" fill="#D80027" width="56.888" height="170.663"/>\n<rect x="455.112" y="255.994" fill="#FF9811" width="56.888" height="170.663"/>\n<rect x="398.225" y="255.994" width="56.888" height="170.663"/>\n</svg>\n',"./assets/country-flag-icons/3x2/ZW.svg":'<?xml version="1.0" encoding="UTF-8"?>\n\n<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 85.333 512 341.333">\n<rect y="85.333" width="512" height="341.337"/>\n<g>\n\t<rect y="134.196" fill="#FFDA44" width="512" height="48.868"/>\n\t<rect y="329.668" fill="#FFDA44" width="512" height="48.868"/>\n</g>\n<rect y="85.333" fill="#6DA544" width="512" height="48.868"/>\n<g>\n\t<rect y="183.069" fill="#D80027" width="512" height="48.868"/>\n\t<rect y="280.806" fill="#D80027" width="512" height="48.868"/>\n</g>\n<rect y="378.542" fill="#6DA544" width="512" height="48.128"/>\n<polygon fill="#FFFFFF" points="276.992,255.996 106.329,426.659 0,426.659 0,85.333 106.329,85.333 "/>\n<polygon points="256,255.996 85.334,426.662 106.321,426.662 276.988,255.996 106.321,85.33 85.334,85.33 "/>\n<polygon fill="#D80027" points="102.465,202.57 115.724,243.382 158.641,243.382 123.923,268.608 137.183,309.422 102.465,284.198 67.745,309.422 81.007,268.608 46.289,243.382 89.204,243.382 "/>\n<path fill="#FFDA44" d="M138.94,259.335l-34.559-12.243c0,0-2.553-23.955-2.708-24.766 c-1.173-6.18-6.603-10.851-13.123-10.851c-7.376,0-13.357,5.98-13.357,13.357c0,1.223,0.178,2.402,0.486,3.528l-9.689,9.755 c0,0,11.509,0,17.229,0c0,17.882-13.344,17.882-13.344,35.691l7.402,17.809h44.522l7.422-17.809h-0.004 c0.744-1.709,1.194-3.47,1.381-5.231C136.995,265.986,138.94,259.335,138.94,259.335z"/>\n</svg>\n'}),BS={};Object.keys(LS).forEach(e=>{const t=e.replace("./assets/country-flag-icons/3x2/",""),n=LS[e];BS[t]={name:`Flag${t.replace(".svg","")}`,render(){const e=document.createElement("div");e.innerHTML=n;const t=e.firstElementChild;if(t&&"SVG"===t.tagName){const e={};Array.from(t.attributes).forEach(t=>{e[t.name]=t.value});const n=t.innerHTML;return Ao("svg",{...e,innerHTML:n})}return Ao("div",{innerHTML:n})}}});const DS={class:"eid-widget-option"},xS={class:"eid-widget-optionText"};const NS=oc({name:"CountrySelectOption",props:{option:{type:Object,required:!0}},computed:{dynamicIcon(){return BS[`${this.option.value}.svg`]}}},[["render",function(e,t,n,i,a,o){return Na(),Oa("div",DS,[(Na(),Pa(hi(o.dynamicIcon),{class:"flag-icon-holder"})),Ka("div",xS,J(n.option.label),1)])}],["__scopeId","data-v-767db77a"]]),zS=oc({__name:"CountrySelect",props:{optionSelected:Function,availableCountries:Array,selectedCountry:String},setup(e){const t=e,n=Vf();function i(e){return"WORLD"===e?n.t("other-countries"):NM.getName(e,n.locale.value,{select:"official"})||NM.getName(e,"en",{select:"official"})}const a=wo(()=>{const{selectedCountry:e}=t;return e}),o=wo(()=>t.availableCountries.map(e=>({label:i(e),value:e})).sort((e,t)=>"WORLD"===e.value?-1:"WORLD"===t.value?1:e.label.localeCompare(t.label)));return(t,n)=>(Na(),Oa("div",null,[Za(It(ES),{class:"eid-widget-countrySelect",isClearable:!1,"model-value":a.value,options:o.value,classes:{menuContainer:"eid-widget-menu"},onOptionSelected:e.optionSelected},{value:gn(({option:e})=>[Za(NS,{option:e},null,8,["option"])]),option:gn(({option:e})=>[Za(NS,{option:e},null,8,["option"])]),_:1},8,["model-value","options","onOptionSelected"])]))}},[["__scopeId","data-v-875f4bd2"]]),VS={headerRow:"_headerRow_1v6gx_2",left:"_left_1v6gx_10",right:"_right_1v6gx_15",regionTitle:"_regionTitle_1v6gx_21"},RS=oc({__name:"HeaderContentCountry",setup(e){const t=Hi("useAppStore")(),{countryCode:n,availableCountries:i}=ts(t);return(e,a)=>(Na(),Oa("div",{class:K(e.$style.headerRow)},[Ka("div",{class:K([e.$style.left,e.$style.regionTitle])},J(e.$t("country")),3),Ka("div",{class:K(e.$style.right)},[Za(zS,{"selected-country":It(n),"available-countries":It(i),"option-selected":e=>function(e){try{window.localStorage.setItem("eideasySelectedCountry",e)}catch(j_){console.error(j_)}t.changeCountry(e)}(e.value)},null,8,["selected-country","available-countries","option-selected"])],2)],2))}},[["__cssModules",{$style:VS}]]);const OS=oc({name:"FlashMessages",components:{AppAlert:rc},props:{messages:Array},inject:["eidEasyFormatFlashMessage"],computed:{flashMessages(){const e=this.$t.bind(this),t=this.eidEasyFormatFlashMessage;return this.messages.map(function(n){return n.translationKey&&(n.text=e(n.translationKey)),"function"==typeof t?t(n):n})}}},[["render",function(e,t,n,i,a,o){const r=Ci("AppAlert");return Na(),Oa("div",null,[(Na(!0),Oa(Ta,null,mi(o.flashMessages,e=>(Na(),Pa(r,{key:e.text,scheme:e.scheme},{default:gn(()=>[Wa(J(e.text),1)]),_:2},1032,["scheme"]))),128))])}]]),PS={button:"_button_100ma_2",text:"_text_100ma_17",backIcon:"_backIcon_100ma_23",backCaret:"_backCaret_100ma_33",disabled:"_disabled_100ma_46"},US=oc({__name:"BackButton",props:{onClick:Function,disabled:Boolean},setup(e){const t=Vf(),n=e;function i(e){!n.disabled&&n.onClick&&n.onClick(e)}return(n,a)=>(Na(),Oa("a",{class:K([n.$style.button,{[n.$style.disabled]:e.disabled}]),href:"#",onClick:kr(i,["prevent"])},[Ka("div",{class:K(n.$style.backIcon)},[Ka("div",{class:K(n.$style.backCaret)},null,2)],2),Ka("div",{class:K(n.$style.text)},J(It(t).t("back")),3)],2))}},[["__cssModules",{$style:PS}]]),GS={headerRow:"_headerRow_tafxb_2",right:"_right_tafxb_9",titleGroup:"_titleGroup_tafxb_13",viewTitleNormalCase:"_viewTitleNormalCase_tafxb_19",viewTitle:"_viewTitle_tafxb_19",flagIcon:"_flagIcon_tafxb_33"},jS=["aria-label"],HS=oc({__name:"HeaderContentSubView",setup(e){const t=Hi("useAppStore")(),{countryCode:n,currentViewTitleKey:i,userActionsEnabled:a,showBackButton:o}=ts(t),r=Vf(),s=wo(()=>BS[`${n.value}.svg`]),l=wo(()=>NM.getName(n.value,r.locale.value,{select:"official"}));return(e,n)=>{var c,d,u;return Na(),Oa("div",{class:K(e.$style.headerRow)},[Ka("div",{class:K(e.$style.left)},[It(o)?(Na(),Pa(US,{key:0,"on-click":()=>{return e=It(cs).MethodSelection,void t.changeView(e);var e},disabled:!It(a)},null,8,["on-click","disabled"])):Qa("",!0)],2),Ka("div",{class:K(e.$style.right)},[Ka("div",{class:K(e.$style.titleGroup)},[Ka("div",{class:K(!1===(null==(d=null==(c=It(i))?void 0:c.titleOptions)?void 0:d.isCaseTransformed)?e.$style.viewTitleNormalCase:e.$style.viewTitle)},J(It(r).t(null==(u=It(i))?void 0:u.title)),3),Ka("div",{class:K(e.$style.flagIcon),"aria-label":It(r).t("country")+": "+l.value},[(Na(),Pa(hi(s.value)))],10,jS)],2)],2)],2)}}},[["__cssModules",{$style:GS}]]);const KS=oc({name:"LoadingOverlay",components:{AppSpinner:pp}},[["render",function(e,t,n,i,a,o){const r=Ci("AppSpinner");return Na(),Oa("div",{class:K(e.$style.loadingOverlay)},[Ka("div",{class:K(e.$style.spinnerHolder)},[Za(r)],2)],2)}],["__cssModules",{$style:{loadingOverlay:"_loadingOverlay_1hbmt_2",spinnerHolder:"_spinnerHolder_1hbmt_13"}}]]),ZS={mt2:"_mt2_z08ui_2",layout:"_layout_z08ui_6",main:"_main_z08ui_12",eidEasyLink:"_eidEasyLink_z08ui_27"},qS=oc({__name:"AppLayout",setup(e){const t=Hi("eidEasyClient"),n=Hi("useAppStore")(),{currentView:i,flashMessages:a,isLoading:o,showCountrySelect:r,showSignaturePolicyLink:s,showPoweredByEidEasyLink:l}=ts(n),c=wo(()=>kM[i.value]||null);function d(){!function(e,t,n){const i=new Blob([e],{type:n}),a=document.createElement("a"),o=URL.createObjectURL(i);a.href=o,a.download=t,document.body.appendChild(a),a.click(),setTimeout(function(){document.body.removeChild(a),window.URL.revokeObjectURL(o)},0)}(t.getLogs(),"diagnostics.json","application/json")}return(e,t)=>(Na(),Oa("div",{class:K(e.$style.layout)},["MethodSelection"!==It(i)?(Na(),Pa(IM,{key:0},{default:gn(()=>[Za(HS)]),_:1})):It(r)?(Na(),Pa(IM,{key:1},{default:gn(()=>[Za(RS)]),_:1})):Qa("",!0),Ka("div",{class:K(e.$style.main)},[Za(OS,{messages:It(a)},null,8,["messages"]),Za(Vo,{name:"fade"},{default:gn(()=>[fn(Za(KS,null,null,512),[[Yo,It(o)]])]),_:1}),(Na(),Pa(hi(c.value)))],2),Za(sc,null,{default:gn(()=>[fn(Ka("a",{href:"https://eideasy.com",class:K(e.$style.eidEasyLink),target:"_blank"},J(e.$t("powered-by-eideasy")),3),[[Yo,It(l)]]),fn(Ka("span",null,[t[0]||(t[0]=Wa(" — ")),Ka("a",{href:"https://eideasy.com/practice-statement",class:K(e.$style.eidEasyLink),target:"_blank"},J(e.$t("signature-policy")),3)],512),[[Yo,It(s)]]),Ka("div",{class:K(e.$style.mt2)},[Ka("a",{href:"#",class:K(e.$style.eidEasyLink),onClick:kr(d,["prevent"])},J(e.$t("Diagnostic Info")),3)],2)]),_:1})],2))}},[["__cssModules",{$style:ZS}]]);const WS="start-at-method-selection";const JS={app:"_app_6ddy9_2"},QS={key:0},YS={__name:"App",props:["uiTheme","language","otpPhone","otpEmail","isOtpSent","otpFlow","enabledMethods","inputValues","translations","allowMethodChange","selectedMethod","countryCode"],setup(e){const t=Vf(),n=e,{uiTheme:i}=n,a=function(e){const t=ac({methodsConfigFilter:e.methodsConfigFilter});return{eidEasyClient:ls(e),eidEasyOnSuccess:t=>{if(e.onSuccess&&"function"==typeof e.onSuccess)return e.onSuccess(t)},eidEasyOnFail:t=>{if(e.onFail&&"function"==typeof e.onFail)return e.onFail(t)},eidEasyBeforeMethodSelection:t=>{if(e.beforeMethodSelection&&"function"==typeof e.beforeMethodSelection)return e.beforeMethodSelection(t)},eidEasyFormatFlashMessage:t=>e.formatFlashMessage&&"function"==typeof e.formatFlashMessage?e.formatFlashMessage(t):t,eidEasyMethodsConfig:t}}(n);ji("eidEasyClient",a.eidEasyClient),ji("eidEasyOnSuccess",a.eidEasyOnSuccess),ji("eidEasyOnFail",a.eidEasyOnFail),ji("eidEasyBeforeMethodSelection",a.eidEasyBeforeMethodSelection),ji("eidEasyFormatFlashMessage",a.eidEasyFormatFlashMessage),ji("eidEasyMethodsConfig",a.eidEasyMethodsConfig);const o=ps({methodsConfig:a.eidEasyMethodsConfig}),r=function(){const e=te(!0),t=e.run(()=>bt({}));let n=[],i=[];const a=Mt({install(e){zr(a),a._a=e,e.provide(Vr,a),e.config.globalProperties.$pinia=a,i.forEach(e=>n.push(e)),i=[]},use(e){return this._a?n.push(e):i.push(e),this},_p:n,_a:null,_e:e,_s:new Map,state:t});return a}();zr(r);const s=o();ji("useAppStore",o);const{countryCode:l}=ts(s),c=ut([]),d=function(){const e=oo();return e&&e.ce||null}(),u=bt(),C=wo(()=>(n.otpPhone||n.otpEmail)&&n.isOtpSent&&n.otpFlow!==WS);return ga(()=>n.language,e=>{t.locale.value=n.language||"en",a.eidEasyClient.setLanguage(e)},{immediate:!0}),ga(l,e=>{a.eidEasyClient.setCountryCode(e)},{immediate:!0}),ti(()=>{if(function(e,t){Object.entries({colorPrimary:"--primary-color",colorSecondary:"--secondary-color",buttonTextColor:"--button-text-color",buttonColor:"--button-color",buttonColorHover:"--button-color-hover",inputLabelColor:"--input-label-color",fontFamily:"--font-family-default",fontSize:"--font-size-base",fontWeight:"--font-weight-default"}).forEach(([n,i])=>{const a=t[n];if(a&&"object"!=typeof a)try{e.style.setProperty(i,a)}catch(o){console.log("Failed to register CSS property",[i,o.toString()])}})}(d,i),s.init(n),s.changeMethods(n.enabledMethods),n.translations&&Object.keys(n.translations).forEach(e=>{const i=t.getLocaleMessage(e)||{};t.setLocaleMessage(e,{...i,...n.translations[e]})}),!n.allowMethodChange){if(!n.selectedMethod||!n.countryCode)throw c.push({text:"If allowMethodChange is set to false, then the following Widget parameters are required: selectedMethod, countryCode"}),new Error("If allowMethodChange is set to false, then the following Widget parameters are required: selectedMethod, countryCode");s.updateShowBackButton(!1),s.updateShowCountrySelect(!1),s.changeMethods({signature:[n.selectedMethod],identification:[n.selectedMethod]})}}),ni(()=>{let e,t=l.value.toUpperCase();var i;if(n.selectedMethod?(i=n.selectedMethod,Object.keys(a.eidEasyMethodsConfig.methodsByActionType).includes(i)?e=n.selectedMethod:console.warn(`Provided selectedMethod value: "${n.selectedMethod}" is not valid, the widget will ignore it.`)):C.value&&(e=ss.methodActionTypes.OTP_EMAIL),e||(t=function(){let e=null;try{e=window.localStorage.getItem("eideasySelectedCountry")}catch(j_){console.error(j_)}return e}()||t),e){s.selectMethod(e);const{supportedCountries:n}=a.eidEasyMethodsConfig.methodsByActionType[e];Array.isArray(n)&&!n.includes(t)&&(t=n[0].toUpperCase())}else C.value&&s.selectMethod(ss.methodActionTypes.OTP_EMAIL);s.changeCountry(t)}),(e,t)=>(Na(),Oa("div",{class:K(e.$style.app),ref_key:"appRef",ref:u},[c.length?(Na(),Oa("div",QS,[(Na(!0),Oa(Ta,null,mi(c,e=>(Na(),Pa(rc,{key:e.text,scheme:"danger"},{default:gn(()=>[Wa(J(e.text),1)]),_:2},1024))),128))])):(Na(),Pa(qS,{key:1}))],2))}},XS={$style:JS},$S=oc(YS,[["__cssModules",XS]]),ew="osobní identifikační kód",tw="Stát",nw="Zaregistrovat se",iw="Uživatel nechtěl pokračovat a zrušil akci",aw="Zrušit",ow="Zpět",rw="nebo",sw="Varmennekortti",lw="potvrdit",cw="Název",dw="tady",uw="Přeposlat",Cw="Finalizing",pw="refresh",hw={"no-ee-id-card":"Občanský průkaz se nepodařilo nalézt. Zkontrolujte, zda je karta zasunutá ve čtečce, a restartujte prohlížeč. Software lze nainstalovat ze stránky www.id.ee.",yes:"Ano",no:"Ne","phone-number":"telefonní číslo",idcode:ew,country:tw,Sign:nw,USER_REFUSED:iw,"mobile-id":"ID mobilního telefonu","id-card":"Průkaz totožnosti","smart-id":"Smart-ID","no-lv-id-card":"Nebyl nalezen žádný lotyšský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software ze stránky https://www.eparaksts.lv/en/Downloads. V případě, že chcete soubory podepsat, tak se prosím ujistěte, že je nainstalován a aktivován plugin eParaksts pro prohlížeč.","no-lt-id-card":"Nebyl nalezen žádný litevský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software ze stránky http://www.nsc.vrm.lt/downloads.htm. Pro podpisy je také potřeba plugin prohlížeče z https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Nebyl nalezen portugalský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software z https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Nebyl nalezen srbský průkaz totožnosti. Ujistěte se, že máte vložený průkaz a nainstalovaný software z http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Nebyl nalezen finský průkaz totožnosti. Podívejte se prosím na pokyny k instalaci softwaru na: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nebyl nalezen belgický průkaz totožnosti. Ujistěte se, že máte vloženoý průkaz a nainstalovaný software z https://eid.belgium.be.","confirm-doc-check-and-sign":"Rozumíte obsahu dokumentu a jste připraveni finalizovat podpis?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Od společnosti eIDEasy","log-in":"Přihlásit se","this-field-is-required":"Toto pole je povinné","your-verification-code":"Váš ověřovací kód:",cancel:aw,"no-response-error":"Něco se pokazilo. Ujistěte se, že máte připojení k internetu, a zkuste to znovu.",back:ow,"no-matching-countries":"Žádný odpovídající stát","id-card-read-timeout":"Čtení identifikační karty trvalo příliš dlouhou dobu. Zavřete prosím všechna otevřená okna prohlížeče a zkuste to znovu.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Schvalte žádost o identifikaci v aplikaci FREJA eID.","try-again":"Zkusit znovu","pre-sign-confirmation":'Poté, co kliknete na tlačítko "Podepsat", vás identifikujeme pomocí {method} a vytvoříme právně závazný podpis.',"login-method":"Způsob přihlášení:","finnish-online-bank":"Finská online banka","online-bank":"Online banka",or:rw,"transaction-id":"ID transakce","sign-in-evrotrust-app":"Podepište tento dokument v aplikaci Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:sw,"other-countries":"Ostatní země","email-sms":"E-mail/SMS","email-code-sent":"E-mail s kódem byl zaslán na adresu","sms-code-sent":"SMS s kódem byla zaslána na adresu","your-code":"Váš kód","signature-method":"Metoda podpisu","username-or-email":"Uživatelské jméno nebo email","cell-phone":"mobilní telefon","including-calling-code":"s kódem země včetně „+“, příklad +35112345678","enter-temp-security-code":"Zadejte dočasný bezpečnostní kód","mobile-key-signing-info":"Další informace o procesu podepisování mobilního klíče naleznete na https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Tato akce je definitivní a nevratná.","you-have-5-minutes-to-enter-the-code":"Máte 5 minut na zadání kódu, než vyprší jeho platnost.",confirm:lw,"after-confirmation-following-docs-will-be-signed":"Po potvrzení budou podepsány následující dokumenty:","code-by-sms":"Kód SMS zprávou","confirmation-code-will-be-sent-to":"Potvrzovací kód bude zaslán:",continue:"Pokračovat",name:cw,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitální podpis pin","approve-sign-request-on-freja-app":"Schvalte žádost o podpis v aplikaci FREJA eID","no-required-software":"K dokončení této akce nemáte nainstalovaný potřebný software. Postupujte podle pokynů na adrese https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Podepište s mou bankou","card-number":"číslo karty","your-sms-otp-code":"Váš sms otp kód","sign-in-halcom-app":"Podepište prosím tento dokument ve své aplikaci Halcom.","sign-in-swiss-id-app":"Podepište prosím tento dokument ve své aplikaci SwissID.","sign-in-app":"Podepište prosím tento dokument ve své aplikaci {name.}","be-id-card-signature-cancel-and-help":"Akce byla zrušena.\nZrušili jste, protože nefunguje belgické podepisování průkazu totožnosti?\nUjistěte se, že k vašemu zařízení nejsou připojeny žádné jiné USB tokeny nebo čipové karty kromě samotné belgické ID karty.\nPoté se podívejte do následujícího průvodce, abyste se ujistili, že máte nainstalovaný veškerý potřebný software: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Chybí požadovaný software. Podívejte se na následující průvodce, jak nainstalovat požadované softwarové komponenty: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"Společnost {websiteName} {companyName} žádá o přístup k vašemu jménu a osobním ID. Chcete-li povolit eID Easy, klepněte na tlačítko níže.","method-setup-info":"{method} informace o nastavení na {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token nenašel. Zkontrolujte, zda je ve čtecím a restartujte prohlížeč. Software je možné nainstalovat ze stránky https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akce byla zrušena.\nZrušili jste, protože podepisování tokenu CertSign USB nefunguje?\nUjistěte se, že k vašemu zařízení nejsou připojeny žádné další tokeny USB nebo čipové karty kromě samotné správné USB tokenové karty.\nPoté se podívejte do následujícího průvodce, abyste se ujistili, že máte nainstalovaný veškerý potřebný software: https://www.certsign.ro/en/cd/","no-id-card":"Občanský průkaz se nepodařilo nalézt. Zkontrolujte, zda je karta zasunutá ve čtečce, a restartujte prohlížeč. Software lze nainstalovat ze stránky https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} informace o nastavení na",here:dw,"no-fr-cert-europe-usb-token":"USB Token nenašel. Zkontrolujte, zda je ve čtecím a restartujte prohlížeč. Software je možné nainstalovat ze stránky https://support.certeurope.fr/telechargements/.","draw-signature":"Nakreslete podpis","Didnt receive a code?":"Neobdrželi jste kód?",Resend:uw,"signature-policy":"Podpisová politika","signer-held":"Signer held",finalizing:Cw,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:pw,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostické informace","approve-in-evrotrust-app":"Schválit v aplikaci Evrotrust"},gw=Object.freeze(Object.defineProperty({__proto__:null,Resend:uw,Sign:nw,USER_REFUSED:iw,back:ow,cancel:aw,confirm:lw,country:tw,default:hw,finalizing:Cw,here:dw,idcode:ew,name:cw,no:"Ne",or:rw,refresh:pw,varmennekortti:sw,yes:"Ano"},Symbol.toStringTag,{value:"Module"})),fw="personlig identitetskode",mw="Land",vw="Underskriv",yw="Brugeren ønskede ikke at fortsætte og annullerede handlingen",Mw="Annuller",Sw="Tilbage",ww="eller",Aw="Varmennekortti",bw="Bekræft",Fw="Navn",_w="Send igen",kw="Færdiggører",Iw="opdater",Tw={"no-ee-id-card":"ID-kort ikke fundet. Tjek venligst om kortet er i læseren og genstart browseren. Softwaren kan installeres fra siden www.id.ee.",yes:"Ja",no:"Nej","phone-number":"telefonnummer",idcode:fw,country:mw,Sign:vw,USER_REFUSED:yw,"mobile-id":"Mobil-ID","id-card":"ID-kort","smart-id":"Smart-ID","no-lv-id-card":"Intet lettisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://www.eparaksts.lv/en/Downloads. For underskrifter bedes du venligst sørge for, at eParaksts-pluginnet til browseren er installeret og aktiveret.","no-lt-id-card":"Intet litauisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra http://www.nsc.vrm.lt/downloads.htm. For underskrifter har du også brug for browserpluginnet fra https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Intet portugisisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Intet serbisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Intet finsk ID-kort fundet. Se venligst softwareinstallationsinstruktionerne fra: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Intet belgisk ID-kort fundet. Sørg venligst for at du har kortet indsat og softwaren installeret fra https://eid.belgium.be. Genstart venligst browseren hvis fejlen består.","confirm-doc-check-and-sign":"Forstod du dokumentindholdet og er du klar til at færdiggøre underskriften?","eparaksts-mobile":"eParaksts-mobil","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log ind","this-field-is-required":"Dette felt er påkrævet","your-verification-code":"Din verifikationskode:",cancel:Mw,"no-response-error":"Noget gik galt. Sørg for at du har forbindelse til internettet og prøv så igen.",back:Sw,"no-matching-countries":"Ingen matchende lande","id-card-read-timeout":"Det tog for lang tid at læse ID-kortet. Luk venligst alle åbne browservinduer, og prøv igen.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Godkend identifikationsanmodningen på din FREJA eID app","try-again":"Prøv igen","pre-sign-confirmation":'Efter du har klikket på \\"Underskriv\\" identificerer vi dig ved brug af {method} og skaber en juridisk bindende underskrift.\\n',"login-method":"Login-metode:","finnish-online-bank":"Finsk onlinebank","online-bank":"Onlinebank",or:ww,"transaction-id":"Transaktions-ID","sign-in-evrotrust-app":"Underskriv venligst dette dokument i din Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:Aw,"other-countries":"Andre lande","email-sms":"Email/SMS","email-code-sent":"En e-mail med koden er blevet sendt til","sms-code-sent":"En SMS med koden er blevet sendt til","your-code":"Din kode","signature-method":"Underskriftsmetode","username-or-email":"Brugernavn eller e-mail","cell-phone":"Mobiltelefon","including-calling-code":'med landekode inklusive \\"+"\\, eksempel +35112345678',"enter-temp-security-code":"Indtast midlertidig sikkerhedskode","mobile-key-signing-info":"Du kan finde mere information om mobilnøgleunderskriftsprocessen på https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Denne handling er endelig og kan ikke fortrydes.","you-have-5-minutes-to-enter-the-code":"Du har 5 minutter til at indtaste koden, før den udløber.",confirm:bw,"after-confirmation-following-docs-will-be-signed":"Efter bekræftelse vil følgende dokumenter blive underskrevet:","code-by-sms":"Kode via SMS","confirmation-code-will-be-sent-to":"En bekræftelseskode vil blive sendt til:",continue:"Fortsæt",name:Fw,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital underskrifts-PIN","approve-sign-request-on-freja-app":"Godkend underskriftsanmodningen i din FREJA eID-app","no-required-software":"Du har ikke den nødvendige software installeret til at fuldføre denne handling. Følg instruktionerne på https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"\\u0020 eParaksts smart card","sign-with-my-bank":"Underskriv med min bank","card-number":"kortnummer","your-sms-otp-code":"Din sms-otp-kode","sign-in-halcom-app":"Underskriv venligst dette dokument i din Halcom-app.","sign-in-swiss-id-app":"Underskriv venligst dette dokument i din SwissID-app.","sign-in-app":"Underskriv venligst dette dokument i din {name-app.}","be-id-card-signature-cancel-and-help":"Handlingen blev annulleret.\nAnnullerede du fordi underskrivningen af det belgiske ID-kort ikke virker?\nSørg for at der ikke er andre USB-tokens eller smartkort tilsluttet din enhed udover det belgiske ID-kort.\nSe derefter følgende vejledning for at sikre at du har den nødvendige software installeret: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Nødvendig software mangler. Se følgende vejledning for at installere de nødvendige softwarekomponenter: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} anmoder om adgang til dit navn og personlige ID-data. For at give eID Easy tilladelse til at viderebringe disse data, klik venligst på knappen nedenfor.","method-setup-info":"Du kan finde mere info om hvordan man kommer i gang med {method} her:","i-accept-and-approve-this-doc":"Jeg accepterer og godkender indholdet af dette dokument.","sign-with-mitid":"Underskriv med MitID","log-on-with-mitid":"Log ind med MitID","sign-with-verimi":"Underskriv med Verimi","no-ro-usb-token":"USB-token blev ikke fundet. Tjek om det er i læseren og genstart browseren. Softwaren kan installeres fra siden https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Handlingen blev annulleret.\nAnnullerede du fordi CertSign USB-token underskrift ikke virker?\nSørg for at der ikke er andre USB-tokens eller smartkort tilsluttet din enhed udover det korrekte USB-tokenkort.\nSe derefter følgende vejledning for at sikre at du har den nødvendige software installeret: https://www.certsign.ro/en/cd/","no-id-card":"ID-kort blev ikke fundet. Tjek om kortet er i læseren og genstart browseren. Softwaren kan installeres fra siden https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Du kan finde mere info om hvordan man kommer i gang med {method}",here:"her","no-fr-cert-europe-usb-token":"USB-token blev ikke fundet. Tjek om det er i læseren og genstart browseren. Softwaren kan installeres fra siden https://support.certeurope.fr/telechargements/.","draw-signature":"Tegn underskrift","Didnt receive a code?":"Modtog du ikke en kode?",Resend:_w,"signature-policy":"Underskriftspolitik","signer-held":"Underskriver tilbageholdt",finalizing:kw,"local-certificate":"Lokalt certifikat","Please enter your pin2 in the Smart-ID app.":"Indtast venligst din pin2 i Smart-ID app'en.","Please enter your pin1 in the Smart-ID app.":"Indtast venligst din pin1 i Smart-ID app'en.","Click the button below if the process does not finish automatically.":"Klik på knappen nedenfor hvis processen ikke afsluttes automatisk.",refresh:Iw,"Please wait before trying again":"Vent venligst før du prøver igen","Web-eID extension is not available":"Web-eID udvidelse er ikke tilgængelig","User cancelled":"Bruger annullerede","Diagnostic Info":"Diagnostiske oplysninger","approve-in-evrotrust-app":"Godkend i Evrotrust-appen"},Ew=Object.freeze(Object.defineProperty({__proto__:null,Resend:_w,Sign:vw,USER_REFUSED:yw,back:Sw,cancel:Mw,confirm:bw,country:mw,default:Tw,finalizing:kw,here:"her",idcode:fw,name:Fw,no:"Nej",or:ww,refresh:Iw,varmennekortti:Aw,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),Lw="Nein",Bw="persönlicher Identitätscode",Dw="Land",xw="Signieren",Nw="Der Benutzer wollte nicht fortfahren und hat die Aktion abgebrochen",zw="Stornieren",Vw="Zurück ",Rw="oder",Ow="Varmennekortti",Pw="bestätigen Sie",Uw="Name",Gw="hier",jw="Erneut senden",Hw="Finalizing",Kw="refresh",Zw={"no-ee-id-card":"Ausweis nicht gefunden. Bitte überprüfen Sie, ob sich die Karte im Lesegerät befindet und starten Sie den Browser neu. Die Software kann von der Seite www.id.ee installiert werden.",yes:"Ja",no:Lw,"phone-number":"Telefonnummer",idcode:Bw,country:Dw,Sign:xw,USER_REFUSED:Nw,"mobile-id":"Handy-ID","id-card":"Ausweis","smart-id":"Smart-ID","no-lv-id-card":"Kein lettischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://www.eparaksts.lv/en/Downloads installiert haben. Für Signaturen stellen Sie bitte sicher, dass das eParaksts-Plugin für Browser installiert und aktiviert ist.","no-lt-id-card":"Kein litauischer Personalausweis gefunden. Bitte stellen Sie sicher, dass die Karte eingelegt und die Software von http://www.nsc.vrm.lt/downloads.htm installiert ist. Für Signaturen wird auch ein Browser-Plugin von https://github.com/open-eid/chrome-token-signing/releases benötigt","no-pt-id-card":"Kein portugiesischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://www.autenticacao.gov.pt/cc-aplicacao installiert ist","no-rs-id-card":"Kein serbischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von http://ca.mup.gov.rs/download-lat.html installiert haben","no-fi-id-card":"Kein finnischer Personalausweis gefunden. Bitte beachten Sie die Anweisungen zur Softwareinstallation von: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Kein belgischer Personalausweis gefunden. Bitte stellen Sie sicher, dass Sie die Karte eingelegt und die Software von https://eid.belgium.be installiert haben. Für Signaturen wird auch ein Browser-Plugin von https://github.com/open-eid/chrome-token-signing/releases benötigt","confirm-doc-check-and-sign":"Haben Sie den Inhalt des Dokuments verstanden und sind bereit, die Signatur abzuschließen?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Unterstützt von eIDEasy","log-in":"Einloggen","this-field-is-required":"Dieses Feld wird benötigt","your-verification-code":"Ihr Bestätigungscode:",cancel:zw,"no-response-error":"Etwas ist schief gelaufen. Stellen Sie sicher, dass Sie mit dem Internet verbunden sind, und versuchen Sie es dann erneut.",back:Vw,"no-matching-countries":"Keine passenden Länder","id-card-read-timeout":"Das Auslesen des Ausweises hat zu lange gedauert. Bitte schließen Sie alle geöffneten Browserfenster und versuchen Sie es erneut.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Genehmigen Sie die Identifizierungsanfrage in Ihrer FREJA eID-App","try-again":"Versuchen Sie es noch Einmal","pre-sign-confirmation":'Nach dem Klick auf "Signieren" identifizieren wir Sie Ihre {method} und erstellen eine rechtsverbindliche Unterschrift.',"login-method":"Login-Methode:","finnish-online-bank":"Finnische Online-Bank","online-bank":"Online-Bank",or:Rw,"transaction-id":"Transaktions-ID","sign-in-evrotrust-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer Evrotrust-App.","eparaksts-eid":"eParaksts eID",varmennekortti:Ow,"other-countries":"Andere Länder","email-sms":"E-Mail/SMS","email-code-sent":"Eine E-Mail mit dem Code wurde gesendet an","sms-code-sent":"Eine SMS mit dem Code wurde gesendet an","your-code":"Dein Code","signature-method":"Signaturmethode","username-or-email":"Nutzername oder E-Mail","cell-phone":"Mobiltelefon","including-calling-code":'mit Ländervorwahl inklusive "+", Beispiel +35112345678',"enter-temp-security-code":"Geben Sie den temporären Sicherheitscode ein","mobile-key-signing-info":"Weitere Informationen zum Signaturprozess für mobile Schlüssel finden Sie unter https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Diese Aktion ist endgültig und unumkehrbar.","you-have-5-minutes-to-enter-the-code":"Sie haben 5 Minuten Zeit, um den Code einzugeben, bevor er abläuft.",confirm:Pw,"after-confirmation-following-docs-will-be-signed":"Nach der Bestätigung werden die folgenden Dokumente unterzeichnet:","code-by-sms":"Code über SMS","confirmation-code-will-be-sent-to":"Ein Bestätigungscode wird gesendet an:",continue:"Fortsetzen",name:Uw,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin für digitale Signatur","approve-sign-request-on-freja-app":"Die Unterschreibungsanfrage auf Ihrer FREJA eID-App genehmigen","no-required-software":"Sie haben nicht die erforderliche Software installiert, um diese Aktion auszuführen. Bitte folgen Sie den Anweisungen auf https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Unterschreiben Sie bei meiner Bank","card-number":"Kartennummer","your-sms-otp-code":"Ihr SMS-OTP-Code","sign-in-halcom-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer Halcom App.","sign-in-swiss-id-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer SwissID App.","sign-in-app":"Bitte unterschreiben Sie dieses Dokument in Ihrer {name} App.","be-id-card-signature-cancel-and-help":"Die Aktion wurde abgebrochen.\nHaben Sie gekündigt, weil die Unterzeichnung des belgischen Personalausweises nicht funktioniert?\nStellen Sie sicher, dass außer dem belgischen Personalausweis selbst keine anderen USB-Token oder Smartcards an Ihr Gerät angeschlossen sind.\nSehen Sie sich dann die folgende Anleitung an, um sicherzustellen, dass Sie die gesamte erforderliche Software installiert haben: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Erforderliche Software fehlt. Siehe folgende Anleitung zur Installation der erforderlichen Softwarekomponenten: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{siteName} {companyName} fordert den Zugriff auf Ihren Namen und Ihre persönlichen ID-Daten. Um eID Einfach zu senden, klicken Sie bitte auf die Schaltfläche unten.","method-setup-info":"{method} setup Informationen unter {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Unterschreiben mit Verimi","no-ro-usb-token":"USB-Token nicht gefunden. Bitte prüfen Sie, ob es im Reader vorhanden ist und starten Sie den Browser neu. Die Software kann von der Seite https://www.certsign.ro/en/cd/ installiert werden.","ro-usb-token-signature-cancel-and-help":"Die Aktion wurde abgebrochen.\nHaben Sie den Vorgang abgebrochen, weil die USB-Token-Signatur von CertSign nicht funktioniert?\nStellen Sie sicher, dass außer der richtigen USB-Token-Karte selbst keine anderen USB-Tokens oder Smartcards an Ihr Gerät angeschlossen sind.\nSehen Sie sich dann die folgende Anleitung an, um sicherzustellen, dass Sie die gesamte erforderliche Software installiert haben: https://www.certsign.ro/en/cd/","no-id-card":"Ausweis nicht gefunden. Bitte überprüfen Sie, ob sich die Karte im Lesegerät befindet und starten Sie den Browser neu. Die Software kann von der Seite https://eideasy.com/web-eid-installation-guide installiert werden","method-setup-info-2":"{method} setup Informationen unter",here:Gw,"no-fr-cert-europe-usb-token":"USB-Token nicht gefunden. Bitte prüfen Sie, ob es im Reader vorhanden ist und starten Sie den Browser neu. Die Software kann von der Seite https://support.certeurope.fr/telechargements/ installiert werden.","draw-signature":"Unterschrift zeichnen","Didnt receive a code?":"Sie haben keinen Code erhalten?",Resend:jw,"signature-policy":"Signaturrichtlinie","signer-held":"Signer held",finalizing:Hw,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:Kw,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnoseinformationen","approve-in-evrotrust-app":"In der Evrotrust-App genehmigen"},qw=Object.freeze(Object.defineProperty({__proto__:null,Resend:jw,Sign:xw,USER_REFUSED:Nw,back:Vw,cancel:zw,confirm:Pw,country:Dw,default:Zw,finalizing:Hw,here:Gw,idcode:Bw,name:Uw,no:Lw,or:Rw,refresh:Kw,varmennekortti:Ow,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),Ww="personal identity code",Jw="Country",Qw="Sign",Yw="User did not wish to proceed and canceled the action",Xw="Cancel",$w="Back",eA="Varmennekortti",tA="Confirm",nA="Name",iA="here",aA="Resend",oA="Finalizing",rA="refresh",sA={"no-ee-id-card":"ID card not found. Please check if the card is in the reader and restart the browser. The software can be installed from the page www.id.ee.",yes:"Yes",no:"No","phone-number":"phone number",idcode:Ww,country:Jw,Sign:Qw,USER_REFUSED:Yw,"mobile-id":"Mobile ID","id-card":"ID card","smart-id":"Smart-ID","no-lv-id-card":"No Latvian ID card found. Please make sure you have card inserted and software installed from https://www.eparaksts.lv/en/Downloads. For signatures please make sure the eParaksts plugin for browser is installed and activated.","no-lt-id-card":"No Lithuanian ID card found. Please make sure you have card inserted and software installed from http://www.nsc.vrm.lt/downloads.htm. For signatures is also needed browser plugin from https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"No Portugal ID card found. Please make sure you have card inserted and software installed from https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"No Serbian ID card found. Please make sure you have card inserted and software installed from http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"No Finnish ID card found. Please see software installation instructions from: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"No Belgium ID card found. Please make sure you have card inserted and software installed from https://eid.belgium.be. Please restart the browser if the error persists.","confirm-doc-check-and-sign":"Did you understand the document contents and are ready to finalize the signature?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log In","this-field-is-required":"This field is required","your-verification-code":"Your verification code:",cancel:Xw,"no-response-error":"Something went wrong. Make sure you're connected to the Internet, then try again.",back:$w,"no-matching-countries":"No matching countries","id-card-read-timeout":"Reading the ID card took too long. Please close all the open browser windows and then try again.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Approve the identification request on your FREJA eID app","try-again":"Try Again","pre-sign-confirmation":'After clicking "Sign" we will identify you using {method} and create a legally binding signature.\n',"login-method":"Login method:","finnish-online-bank":"Finnish Online Bank","online-bank":"Online Bank",or:"or","transaction-id":"Transaction ID","sign-in-evrotrust-app":"Please sign this document in your Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:eA,"other-countries":"Other countries","email-sms":"Email/SMS","email-code-sent":"An email with the code has been sent to","sms-code-sent":"An SMS with the code has been sent to","your-code":"Your code","signature-method":"Signature method","username-or-email":"Username or email","cell-phone":"Cell phone","including-calling-code":'with country code including "+", example +35112345678',"enter-temp-security-code":"Enter temporary security code","mobile-key-signing-info":"You can find more information about the mobile key signing process at https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"This action is definitive and irreversible.","you-have-5-minutes-to-enter-the-code":"You have 5 minutes to enter the code before it expires.",confirm:tA,"after-confirmation-following-docs-will-be-signed":"After confirmation, the following documents will be signed:","code-by-sms":"Code by SMS","confirmation-code-will-be-sent-to":"A confirmation code will be sent to:",continue:"Continue",name:nA,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital signature pin","approve-sign-request-on-freja-app":"Approve the signing request on your FREJA eID app","no-required-software":"You do not have the necessary software installed to complete this action. Please follow the instructions at https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Sign with my bank","card-number":"card number","your-sms-otp-code":"Your sms otp code","sign-in-halcom-app":"Please sign this document in your Halcom app.","sign-in-swiss-id-app":"Please sign this document in your SwissID app.","sign-in-app":"Please sign this document in your {name} app.","be-id-card-signature-cancel-and-help":"The action was canceled.\nDid you cancel because the Belgian ID card signing is not working?\nMake sure that there are no other USB tokens or smart cards connected to your device except for the Belgian ID card itself.\nThen see the following guide to make sure that you have all the necessary software installed: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Required software is missing. See the following guide on how to install the required software components: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} is requesting to access your name and personal ID data. To authorize eID Easy forward this data please click the button below.","method-setup-info":"You can find more info on how to get started with {method} here:","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token not found. Please check if it is in the reader and restart the browser. The software can be installed from the page https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"The action was canceled.\nDid you cancel because the CertSign USB token signing is not working?\nMake sure that there are no other USB tokens or smart cards connected to your device except for the correct USB token card itself.\nThen see the following guide to make sure that you have all the necessary software installed: https://www.certsign.ro/en/cd/","no-id-card":"ID card not found. Please check if the card is in the reader and restart the browser. The software can be installed from the page https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"You can find more info on how to get started with {method}",here:iA,"no-fr-cert-europe-usb-token":"USB Token not found. Please check if it is in the reader and restart the browser. The software can be installed from the page https://support.certeurope.fr/telechargements/.","draw-signature":"Draw signature","Didnt receive a code?":"Didn't receive a code?",Resend:aA,"signature-policy":"Signature Policy","signer-held":"Signer held",finalizing:oA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:rA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostic Info","approve-in-evrotrust-app":"Approve in Evrotrust app"},lA=Object.freeze(Object.defineProperty({__proto__:null,Resend:aA,Sign:Qw,USER_REFUSED:Yw,back:$w,cancel:Xw,confirm:tA,country:Jw,default:sA,finalizing:oA,here:iA,idcode:Ww,name:nA,no:"No",or:"or",refresh:rA,varmennekortti:eA,yes:"Yes"},Symbol.toStringTag,{value:"Module"})),cA="código de identidad personal",dA="País",uA="Firmar",CA="El usuario no quiso continuar y canceló la acción",pA="Cancelar",hA="Volver",gA="Varmennekortti",fA="Confirmar",mA="Nombre",vA="aquí",yA="Reenviar",MA="Finalizing",SA="refresh",wA={"no-ee-id-card":"No se ha encontrado la tarjeta de identificación. Por favor, compruebe que la tarjeta está insertada en el lector y reinicie el navegador. El software se puede instalar a través de la página www.id.ee.",yes:"Sí",no:"No","phone-number":"número de teléfono",idcode:cA,country:dA,Sign:uA,USER_REFUSED:CA,"mobile-id":"Mobile ID","id-card":"Tarjeta de identificación","smart-id":"Smart-ID","no-lv-id-card":"No se ha encontrado ninguna tarjeta de identificación letona. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de https://www.eparaksts.lv/en/Downloads. Para las firmas, por favor asegúrese de que el plugin eParaksts para el navegador está instalado y activado.","no-lt-id-card":"No se ha encontrado ninguna tarjeta de identificación lituana. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de http://www.nsc.vrm.lt/downloads.htm. Para las firmas también es necesario el plugin del navegador de https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"No se ha encontrado ninguna tarjeta de identificación portuguesa. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado desde https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"No se ha encontrado ninguna tarjeta de identificación serbia. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"No se ha encontrado ninguna tarjeta de de identidad finlandesa. Por favor, consulte las instrucciones de instalación del software en: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"No se ha encontrado ninguna tarjeta de identificación belga. Por favor, asegúrese de que tiene la tarjeta insertada y el software instalado de https://eid.belgium.be. Para las firmas también es necesario el plugin del navegador de https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"¿Ha entendido el contenido del documento y está dispuesto a firmarlo?","eparaksts-mobile":"eParaksts Mobile","powered-by-eideasy":"Con tecnología eIDEasy","log-in":"Acceder","this-field-is-required":"Este campo es obligatorio","your-verification-code":"Su código de verificación:",cancel:pA,"no-response-error":"Algo ha ido mal. Asegúrese de que está conectado a internet e inténtelo de nuevo.",back:hA,"no-matching-countries":"No hay países coincidentes","id-card-read-timeout":"La lectura de la tarjeta de identificación tardó demasiado. Por favor, cierre todas las ventanas abiertas del navegador e inténtelo de nuevo.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Apruebe la petición de identificación en su app FREJA eID","try-again":"Inténtelo de nuevo","pre-sign-confirmation":'Tras hacer clic en "Acceder" le identificaremos utilizando {method} y crearemos una firma vinculante legalmente.',"login-method":"Método de acceso:","finnish-online-bank":"Banco online finlandés","online-bank":"Banco online",or:"o","transaction-id":"ID de la transacción","sign-in-evrotrust-app":"Por favor, firme este documento en su app Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:gA,"other-countries":"Otros países","email-sms":"Email/SMS","email-code-sent":"Se ha enviado un email con el código a","sms-code-sent":"Se ha enviado un SMS con el código a","your-code":"Su código","signature-method":"Método de firma","username-or-email":"Nombre de usuario o correo electrónico","cell-phone":"Teléfono móvil","including-calling-code":'con código de país que incluye "+", ejemplo +35112345678',"enter-temp-security-code":"Ingrese el código de seguridad temporal","mobile-key-signing-info":"Puede encontrar más información sobre el proceso de firma de claves móviles en https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Esta acción es definitiva e irreversible.","you-have-5-minutes-to-enter-the-code":"Tienes 5 minutos para ingresar el código antes de que caduque.",confirm:fA,"after-confirmation-following-docs-will-be-signed":"Después de la confirmación, se firmarán los siguientes documentos:","code-by-sms":"Código via SMS","confirmation-code-will-be-sent-to":"Un código de confirmación fue enviado a:",continue:"Continuar",name:mA,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin de firma digital","approve-sign-request-on-freja-app":"Apruebe la solicitud de firma en su app FREJA eID","no-required-software":"No tiene instalado el software necesario para completar esta acción. Siga las instrucciones en https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Firmar con mi banco","card-number":"número de tarjeta","your-sms-otp-code":"Su código otp sms","sign-in-halcom-app":"Firme este documento en su aplicación Halcom.","sign-in-swiss-id-app":"Firme este documento en su aplicación SwissID.","sign-in-app":"Firme este documento en su aplicación {name.}","be-id-card-signature-cancel-and-help":"La acción fue cancelada.\n¿Canceló porque la firma de la tarjeta de identificación belga no funciona?\nAsegúrese de que no haya otros tokens USB o tarjetas inteligentes conectados a su dispositivo, excepto la propia tarjeta de identificación belga.\nLuego, consulte la siguiente guía para asegurarse de que tiene todo el software necesario instalado: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Falta el software necesario. Consulte la siguiente guía sobre cómo instalar los componentes de software necesarios: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} solicita acceder a su nombre y datos de identificación personal. Para autorizar eID Easy reenviar estos datos, haga clic en el botón a continuación.","method-setup-info":"{method} información de configuración en {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB no encontrado. Compruebe si está en el lector y reinicie el navegador. El software se puede instalar desde la página https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"La acción fue cancelada.\n¿Canceló porque la firma del token USB de CertSign no funciona?\nAsegúrese de que no haya otros tokens USB o tarjetas inteligentes conectados a su dispositivo, excepto la propia tarjeta de token USB correcta.\nLuego, consulte la siguiente guía para asegurarse de que tiene todo el software necesario instalado: https://www.certsign.ro/en/cd/","no-id-card":"No se ha encontrado la tarjeta de identificación. Por favor, compruebe que la tarjeta está insertada en el lector y reinicie el navegador. El software se puede instalar a través de la página https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} información de configuración en",here:vA,"no-fr-cert-europe-usb-token":"Token USB no encontrado. Compruebe si está en el lector y reinicie el navegador. El software se puede instalar desde la página https://support.certeurope.fr/telechargements/.","draw-signature":"Dibujar firma","Didnt receive a code?":"¿No recibiste un código?",Resend:yA,"signature-policy":"Política de firma","signer-held":"Signer held",finalizing:MA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:SA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Información de diagnóstico","approve-in-evrotrust-app":"Aprobar en la aplicación Evrotrust"},AA=Object.freeze(Object.defineProperty({__proto__:null,Resend:yA,Sign:uA,USER_REFUSED:CA,back:hA,cancel:pA,confirm:fA,country:dA,default:wA,finalizing:MA,here:vA,idcode:cA,name:mA,no:"No",or:"o",refresh:SA,varmennekortti:gA,yes:"Sí"},Symbol.toStringTag,{value:"Module"})),bA="isikukood",FA="Riik",_A="Allkirjasta",kA="Kasutaja ei soovinud jätkata ja tühistas tegevuse.",IA="Tühista",TA="Tagasi",EA="Soome Varmennekortti",LA="kinnita",BA="Nimi",DA="siin",xA="Saada uuesti",NA="Lõpetamine",zA="värskenda",VA={"no-ee-id-card":"ID kaarti ei leitud. Palun kontrolli kas kaart on korralikult lugejas ja taaskäivita oma browser. Tarkvara saab installida www.id.ee lehelt.",yes:"Jah",no:"Ei","phone-number":"mobiili number",idcode:bA,country:FA,Sign:_A,USER_REFUSED:kA,"mobile-id":"Mobiil-ID","id-card":"ID kaart","smart-id":"Smart-ID","no-lv-id-card":"Läti ID kaarti ei leitud. Palun vaata, et ID kaart oleks lugejas ja tarkvara installitud aadressilt https://www.eparaksts.lv/en/Downloads","no-lt-id-card":"Leedu ID kaarti ei leitud. Palun vaata, et ID kaart oleks lugejas ja tarkvara installitud aadressilt http://www.nsc.vrm.lt/downloads.htm","no-pt-id-card":"Portugali ID kaarti ei leitud. Palun vaata, et kaart oleks lugejas ja tarkvara installitud aadressilt https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbia ID kaarti ei leitud. Palun vaata, et kaart oleks lugejas ja tarkvara installitud aadressilt http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Soome ID kaarti ei leitud. Palun kontrolli, et kaart oleks lugejas ja leia tarkvara seadistamise juhised aadressilt: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Belgia ID kaarti ei leitud. Palun kontrolli, et kaart oleks lugejas ja tarkvara installitud aadressilt https://eid.belgium.be","confirm-doc-check-and-sign":"Kas dokumendi sisu on arusaadav ja soovid allkirjastamisega jätkata?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Logi sisse","this-field-is-required":"See on kohustuslik väli","your-verification-code":"Kontrollkood:",cancel:IA,"no-response-error":"Toiming ebaõnnestus. Palun kontrolli kas internetiühendus on olemas, sulge kõik brauseriaknad ja proovi seejärel uuesti",back:TA,"no-matching-countries":"Sobivat riiki ei leitud","id-card-read-timeout":"ID kaardi lugemine võttis liiga kaua aega. Palun sulge kõik brauseri aknad ja proovi uuesti.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Järgiga oma FREJA EID rakenduse juhiseid","try-again":"Proovi uuesti","pre-sign-confirmation":'Pärast klikkimist nupul "Allkirjasta" identifitseeritakse teid meetodiga {method} ning seejärel luuakse õiguslikult siduv allkiri.',"login-method":"Sisselogimismeetod:","finnish-online-bank":"Soome Internetipank","online-bank":"Internetipank",or:"või","transaction-id":"Tehingu ID","sign-in-evrotrust-app":"Palun allkirjasta käesolev dokument oma Evrotrusti rakenduses.","eparaksts-eid":"Läti eParaksts",varmennekortti:EA,"other-countries":"Ülejäänud riigid","email-sms":"E-Mail / SMS","email-code-sent":"E-mail koodiga on saadetud aadressile","sms-code-sent":"SMS koodiga on saadetud numbrile","your-code":"Kood","signature-method":"Allkirjastamise meetod","username-or-email":"Kasutajanimi või email","cell-phone":"mobiiltelefon","including-calling-code":'riigikoodiga, mis sisaldab "+", näiteks +35112345678',"enter-temp-security-code":"Sisestage ajutine turvakood","mobile-key-signing-info":"Lisateavet mobiilivõtme allkirjastamise protsessi kohta leiate aadressilt https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"See toiming on lõplik ja pöördumatu.","you-have-5-minutes-to-enter-the-code":"Teil on 5 minutit aega koodi sisestamiseks, enne kui see aegub.",confirm:LA,"after-confirmation-following-docs-will-be-signed":"Pärast kinnitamist allkirjastatakse järgmised dokumendid:","code-by-sms":"Kood SMSiga","confirmation-code-will-be-sent-to":"Kinnituskood saadetakse:",continue:"Edasi",name:BA,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitaalallkirja pin","approve-sign-request-on-freja-app":"Kinnitage allkirjastamine FREJA eID rakenduses","no-required-software":"Teil pole selle toimingu tegemiseks tarkvara installitud. Järgige juhiseid aadressil https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"eParaksts kiipkaart","sign-with-my-bank":"Allkirjasta minu pangaga","card-number":"kaardi number","your-sms-otp-code":"Teie SMS-i OTP-kood","sign-in-halcom-app":"Palun allkirjastage see dokument oma Halcomi rakenduses.","sign-in-swiss-id-app":"Palun allkirjastage see dokument oma SwissID rakenduses.","sign-in-app":"Palun allkirjastage see dokument oma {name} rakenduses.","be-id-card-signature-cancel-and-help":"Toiming katkestati. Kas katkestasite sest Teie Belgia ID kaardiga allkirjastamine ei toiminud? Palun veenduge, et arvutisse ei oleks ühendatud teisi digiallkirjastamise vahendeid.","be-id-signature-no-implementation":"Vajalik tarkvara puudub. Palun leidke installeerimise õpetus siit: https://eideasy.com/belgian-id-software-inst","client-request-data-confirmation":"{websiteName} {companyName} taotleb juurdepääsu Teie nimele ja isikukoodi andmetele. Selleks, et anda eID Easy-le õigus antud andmed edastada, palun klõpsake allolevale nupule.","method-setup-info":"{method} seadistusinfo {link}","i-accept-and-approve-this-doc":"Nõustun ja kinnitan selle dokumendi sisu.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Allkiri Verimiga","no-ro-usb-token":"USB Token ei leidnud. Palun kontrollige, kas see on lugejas ja käivitage brauser. Tarkvara saab installeerida lehelt https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Toiming tühistati.\nKas tühistasite, kuna CertSign USB-märgi allkirjastamine ei tööta?\nVeenduge, et teie seadmega pole ühendatud muid USB-märke ega kiipkaarte, välja arvatud õige USB tokenkaart.\nSeejärel vaadake järgmist juhendit veendumaks, et teil on installitud kogu vajalik tarkvara: https://www.certsign.ro/en/cd/","no-id-card":"ID kaarti ei leitud. Palun kontrolli kas kaart on korralikult lugejas ja taaskäivita oma browser. Tarkvara saab installida https://eideasy.com/web-eid-installation-guide lehelt","method-setup-info-2":"{method} seadistusinfo",here:DA,"no-fr-cert-europe-usb-token":"USB Token ei leidnud. Palun kontrollige, kas see on lugejas ja käivitage brauser. Tarkvara saab installeerida lehelt https://support.certeurope.fr/telechargements/.","draw-signature":"Joonista allkiri","Didnt receive a code?":"Kas te ei saanud koodi?",Resend:xA,"signature-policy":"Allkirjapoliitika","signer-held":"Allkirjastaja käes",finalizing:NA,"local-certificate":"Kohalik sertifikaat","Please enter your pin2 in the Smart-ID app.":"Palun sisestage PIN2-kood Smart-ID mobiilirakenduses.","Please enter your pin1 in the Smart-ID app.":"Palun sisestage PIN1-kood Smart-ID mobiilirakenduses.","Click the button below if the process does not finish automatically.":"Kui laadimine ei lõpe automaatselt, siis klõpsake alloleval nupul.",refresh:zA,"Please wait before trying again":"Palun oodake enne uuesti proovimist","Web-eID extension is not available":"Web-eID laiendus pole saadaval","User cancelled":"Kasutaja tühistas","Diagnostic Info":"Diagnostiline teave","approve-in-evrotrust-app":"Kinnita Evrotrusti rakenduses"},RA=Object.freeze(Object.defineProperty({__proto__:null,Resend:xA,Sign:_A,USER_REFUSED:kA,back:TA,cancel:IA,confirm:LA,country:FA,default:VA,finalizing:NA,here:DA,idcode:bA,name:BA,no:"Ei",or:"või",refresh:zA,varmennekortti:EA,yes:"Jah"},Symbol.toStringTag,{value:"Module"})),OA="Kyllä",PA="henkilötunnus",UA="Allekirjoita",GA="Käyttäjä ei halunnut jatkaa ja peruutti toiminnon.",jA="Peruuta",HA="Takaisin",KA="tai\n",ZA="Varmennekortti",qA="vahvistaa",WA="Nimi",JA="tässä",QA="Uudelleen lähettää",YA="Finalizing",XA="refresh",$A={"no-ee-id-card":"Henkilökorttia ei löydy. Tarkista, että kortti on lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta www.id.ee.",yes:OA,no:"Ei","phone-number":"puhelinnumero",idcode:PA,country:"Maa",Sign:UA,USER_REFUSED:GA,"mobile-id":"Mobiilitunnus","id-card":"Henkilökortti","smart-id":"Smart-ID","no-lv-id-card":"Latvian henkilökorttia ei löydetty. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://www.eparaksts.lv/en/Downloads. Varmista allekirjoituksia varten, että selaimen eParaksts-lisäosa on asennettu ja aktivoitu.","no-lt-id-card":"Liettualaista henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta http://www.nsc.vrm.lt/downloads.htm. Allekirjoituksia varten tarvitaan myös selainlaajennus osoitteesta https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Portugalin henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Serbialaista henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Suomalaista henkilökorttia ei löytynyt. Katso ohjelmiston asennusohjeet osoitteesta: https://dvv.fi/kansalaisvarmenne-kortinlukijaohjelmisto","no-be-id-card":"Belgian henkilökorttia ei löytynyt. Varmista, että kortti on asetettu ja ohjelmisto asennettu osoitteesta https://eid.belgium.be.","confirm-doc-check-and-sign":"Ymmärsitkö asiakirjan sisällön ja oletko valmis viimeistelemään allekirjoituksen?","eparaksts-mobile":"eParaksts mobiili","powered-by-eideasy":"eIDEasyn palvelu","log-in":"Kirjaudu sisään","this-field-is-required":"Tämä kenttä on pakollinen","your-verification-code":"Vahvistuskoodisi:",cancel:jA,"no-response-error":"Jokin meni pieleen. Varmista, että olet yhteydessä Internetiin, ja yritä sitten uudelleen.",back:HA,"no-matching-countries":"Ei vastaavaa maata","id-card-read-timeout":"Henkilökortin lukeminen kesti liian kauan. Sulje kaikki avoimet selainikkunat ja yritä sitten uudelleen.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Hyväksy tunnistuspyyntö FREJA eID -sovelluksessa.","try-again":"Yritä uudelleen","pre-sign-confirmation":'Kun olet klikannut "Allekirjoita", tunnistamme sinut valitsemaasi metodia käyttäen ( {method} ) ja luomme oikeudellisesti sitovan allekirjoituksen.',"login-method":"Kirjautumismenetelmä:","finnish-online-bank":"Suomalainen verkkopankki tai mobiilivarmenne","online-bank":"Verkkopankki",or:KA,"transaction-id":"Tapahtuman tunnus","sign-in-evrotrust-app":"Allekirjoita tämä asiakirja Evrotrust -sovelluksessasi.\n","eparaksts-eid":"eParaksts eID",varmennekortti:ZA,"other-countries":"Muut maat","email-sms":"Sähköposti/SMS","email-code-sent":"Koodin sisältävä sähköposti on lähetetty osoitteeseen","sms-code-sent":"Tekstiviesti koodilla on lähetetty osoitteeseen","your-code":"Koodisi","signature-method":"Allekirjoitustapa","username-or-email":"Käyttäjätunnus tai sähköpostiosoite","cell-phone":"kännykkä","including-calling-code":'maakoodilla, joka sisältää "+", esimerkiksi +35112345678',"enter-temp-security-code":"Syötä väliaikainen suojakoodi","mobile-key-signing-info":"Lisätietoja mobiiliavaimen allekirjoitusprosessista on osoitteessa https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Tämä toimenpide on lopullinen ja peruuttamaton.","you-have-5-minutes-to-enter-the-code":"Sinulla on 5 minuuttia aikaa syöttää koodi ennen kuin se vanhenee.",confirm:qA,"after-confirmation-following-docs-will-be-signed":"Vahvistuksen jälkeen allekirjoitetaan seuraavat asiakirjat:","code-by-sms":"SMS-koodi","confirmation-code-will-be-sent-to":"Vahvistuskoodi lähetetetään tälle vastaanottajalle:",continue:"Jatka",name:WA,"chave-movel":"Chave Móvel","digital-signature-pin":"Sähköisen allekirjoituksen PIN-koodi","approve-sign-request-on-freja-app":"Hyväksy allekirjoituspyyntö Freja eID-sovelluksessasi","no-required-software":"Sinulla ei ole asennettuna ohjelmistoa tämän toiminnon suorittamiseen. Seuraa ohjeita osoitteessa https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Allekirjoita pankissani","card-number":"kortin numero","your-sms-otp-code":"SMS OTP-koodisi","sign-in-halcom-app":"Allekirjoita tämä asiakirja Halcom-sovelluksessasi.","sign-in-swiss-id-app":"Vänligen underteckna detta dokument i din SwissID-app.","sign-in-app":"Allekirjoita tämä asiakirja {name-sovelluksessasi.}","be-id-card-signature-cancel-and-help":"Toiminta peruttiin.\nPeruutitko, koska Belgian henkilökortin allekirjoitus ei toimi?\nVarmista, että laitteeseen ei ole liitetty muita USB-tunnuksia tai älykortteja, paitsi itse belgialainen henkilökortti.\nKatso sitten seuraava opas varmistaaksesi, että sinulla on kaikki tarvittavat ohjelmistot asennettuna: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Vaadittu ohjelmisto puuttuu. Katso seuraava opas tarvittavien ohjelmistokomponenttien asentamisesta: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} pyytää pääsyä nimesi ja tunnustietoihisi. Voit valtuuttaa eID Easyn välittämään nämä tiedot napsauttamalla alla olevaa painiketta.","method-setup-info":"{method} asetustiedot osoitteessa {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB-tunnusta ei löydy. Tarkista, onko se lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Toiminta peruttiin.\nPeruutitko, koska CertSign USB -tunnuksen allekirjoitus ei toimi?\nVarmista, että laitteeseen ei ole liitetty muita USB-tunnuksia tai älykortteja, paitsi itse oikea USB-tunnuskortti.\nKatso sitten seuraava opas varmistaaksesi, että sinulla on kaikki tarvittavat ohjelmistot asennettuna: https://www.certsign.ro/en/cd/","no-id-card":"Henkilökorttia ei löydy. Tarkista, että kortti on lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} asetustiedot osoitteessa",here:JA,"no-fr-cert-europe-usb-token":"USB-tunnusta ei löydy. Tarkista, onko se lukijassa ja käynnistä selain uudelleen. Ohjelmiston voi asentaa sivulta https://support.certeurope.fr/telechargements/.","draw-signature":"Piirrä allekirjoitus","Didnt receive a code?":"Etkö saanut koodia?",Resend:QA,"signature-policy":"Allekirjoituskäytäntö","signer-held":"Signer held",finalizing:YA,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Syötä PIN2-koodisi Smart-ID-sovellukseen.","Please enter your pin1 in the Smart-ID app.":"Kirjoita PIN1-koodisi Smart-ID-sovellukseen.","Click the button below if the process does not finish automatically.":"Napsauta alla olevaa painiketta, jos prosessi ei lopu automaattisesti.",refresh:XA,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostiset tiedot","approve-in-evrotrust-app":"Hyväksy Evrotrust-sovelluksessa"},eb=Object.freeze(Object.defineProperty({__proto__:null,Resend:QA,Sign:UA,USER_REFUSED:GA,back:HA,cancel:jA,confirm:qA,country:"Maa",default:$A,finalizing:YA,here:JA,idcode:PA,name:WA,no:"Ei",or:KA,refresh:XA,varmennekortti:ZA,yes:OA},Symbol.toStringTag,{value:"Module"})),tb="code d'identité personnel",nb="Pays",ib="Signer",ab="L'utilisateur n'a pas souhaité continuer et a annulé l'action",ob="Annuler",rb="Retour",sb="Varmennekortti",lb="confirmer",cb="Renvoyer",db="Finalizing",ub="refresh",Cb={"no-ee-id-card":"Carte d'identité introuvable. Veuillez vérifier si la carte est dans le lecteur et redémarrer le navigateur. Le logiciel peut être installé depuis la page www.id.ee.",yes:"Oui",no:"Non","phone-number":"numéro de téléphone",idcode:tb,country:nb,Sign:ib,USER_REFUSED:ab,"mobile-id":"Mobile ID","id-card":"Carte d'identité","smart-id":"Smart-ID","no-lv-id-card":"Aucune carte d'identité lettone n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site https://www.eparaksts.lv/en/Downloads est installé. Pour les signatures, assurez-vous que le plugin eParaksts pour navigateur est installé et activé.","no-lt-id-card":"Aucune carte d'identité lituanienne n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site http://www.nsc.vrm.lt/downloads.htm est installé. Pour les signatures, il est également nécessaire d'installer le plugin de navigateur trouvable ici https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Aucune carte d'identité portugaise n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site https://www.autenticacao.gov.pt/cc-aplicacao est installé.","no-rs-id-card":"Aucune carte d'identité serbe n'a été trouvée. Veuillez vous assurer que la carte est insérée et que le logiciel trouvable sur ce site http://ca.mup.gov.rs/download-lat.html est installé.","no-fi-id-card":"Aucune carte d'identité finlandaise n'a été trouvée. Veuillez consulter les instructions d'installation logicielle sur : https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Aucune carte d'identité belge trouvée. Assurez-vous d'avoir inséré la carte et installé le logiciel depuis https://eid.belgium.be. Veuillez redémarrer le navigateur si l'erreur persiste.","confirm-doc-check-and-sign":"Avez-vous compris le contenu du document et êtes-vous prêt à finaliser la signature ?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Alimenté par eIDEasy","log-in":"Se connecter","this-field-is-required":"Ce champ est obligatoire","your-verification-code":"Votre code de vérification :",cancel:ob,"no-response-error":"Quelque chose a dysfonctionné. Assurez-vous d'être connecté à Internet, puis réessayez.",back:rb,"no-matching-countries":"Aucun pays correspondant","id-card-read-timeout":"La lecture de la carte d'identité a pris trop de temps. Veuillez fermer toutes les fenêtres ouvertes du navigateur, puis réessayer.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Validez la demande d'identification sur votre application FREJA eID","try-again":"Veuillez réessayer","pre-sign-confirmation":'Après avoir cliqué sur "Signer", nous vous identifierons à l\'aide de {method} et créerons une signature juridiquement contraignante.',"login-method":"Méthode de connexion :","finnish-online-bank":"Banque en ligne finlandaise","online-bank":"Banque en ligne",or:"ou","transaction-id":"ID de transaction","sign-in-evrotrust-app":"Veuillez signer ce document dans votre application Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:sb,"other-countries":"Autres pays","email-sms":"E-mail / SMS","email-code-sent":"Un e-mail avec le code a été envoyé à","sms-code-sent":"Un SMS avec le code a été envoyé à","your-code":"Votre code","signature-method":"Méthode de signature","username-or-email":"Nom d'utilisateur ou email","cell-phone":"téléphone portable","including-calling-code":'avec code pays incluant "+", exemple +35112345678',"enter-temp-security-code":"Entrez le code de sécurité temporaire","mobile-key-signing-info":"Vous pouvez trouver plus d'informations sur le processus de signature de clé mobile sur https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Cette action est définitive et irréversible.","you-have-5-minutes-to-enter-the-code":"Vous avez 5 minutes pour entrer le code avant qu'il n'expire.",confirm:lb,"after-confirmation-following-docs-will-be-signed":"Après confirmation, les documents suivants seront signés :","code-by-sms":"Code par SMS","confirmation-code-will-be-sent-to":"Un code de confirmation sera envoyé à:",continue:"Continuer",name:"Nom","chave-movel":"Chave Móvel","digital-signature-pin":"Broche de signature numérique","approve-sign-request-on-freja-app":"Approuver la demande de signature sur votre application FREJA eID","no-required-software":"Vous n'avez pas installé le logiciel nécessaire pour effectuer cette action. Veuillez suivre les instructions sur https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Signer avec ma banque","card-number":"numéro de carte","your-sms-otp-code":"Votre code sms otp","sign-in-halcom-app":"Veuillez signer ce document dans votre application Halcom.","sign-in-swiss-id-app":"Veuillez signer ce document dans votre application SwissID.","sign-in-app":"Veuillez signer ce document dans votre application {name.}","be-id-card-signature-cancel-and-help":"L'action a été annulée.\nVous avez annulé parce que la signature de la carte d'identité belge ne fonctionne pas ?\nAssurez-vous qu'aucun autre jeton USB ou carte à puce n'est connecté à votre appareil, à l'exception de la carte d'identité belge elle-même.\nConsultez ensuite le guide suivant pour vous assurer que tous les logiciels nécessaires sont installés {} https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Le logiciel requis est manquant. Consultez le guide suivant pour savoir comment installer les composants logiciels requis {} https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} demande l'accès à vos données de nom et d'identité personnelle. Pour autoriser l'identification électronique à transférer facilement ces données, veuillez cliquer sur le bouton ci-dessous.","method-setup-info":"Des informations de configuration de la {method} à l'adresse {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Jeton USB introuvable. Veuillez vérifier s'il se trouve dans le lecteur et redémarrez le navigateur. Le logiciel peut être installé à partir de la page https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"L'action a été annulée.\nAvez-vous annulé car la signature du jeton USB CertSign ne fonctionne pas ?\nAssurez-vous qu'aucun autre jeton USB ou carte à puce n'est connecté à votre appareil, à l'exception de la bonne carte à jeton USB elle-même.\nConsultez ensuite le guide suivant pour vous assurer que tous les logiciels nécessaires sont installés : https://www.certsign.ro/en/cd/","no-id-card":"Carte d'identité introuvable. Veuillez vérifier si la carte est dans le lecteur et redémarrer le navigateur. Le logiciel peut être installé depuis la page https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Des informations de configuration de la {method} à l'adresse",here:"ici","no-fr-cert-europe-usb-token":"Jeton USB introuvable. Veuillez vérifier s'il se trouve dans le lecteur et redémarrez le navigateur. Le logiciel peut être installé à partir de la page https://support.certeurope.fr/telechargements/.","draw-signature":"Dessiner une signature","Didnt receive a code?":"Vous n'avez pas reçu de code?",Resend:cb,"signature-policy":"Politique de signature","signer-held":"Signer held",finalizing:db,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:ub,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informations de diagnostic","approve-in-evrotrust-app":"Approuver dans l'application Evrotrust"},pb=Object.freeze(Object.defineProperty({__proto__:null,Resend:cb,Sign:ib,USER_REFUSED:ab,back:rb,cancel:ob,confirm:lb,country:nb,default:Cb,finalizing:db,here:"ici",idcode:tb,name:"Nom",no:"Non",or:"ou",refresh:ub,varmennekortti:sb,yes:"Oui"},Symbol.toStringTag,{value:"Module"})),hb="codice di identità personale",gb="Nazione",fb="Firma",mb="L'utente non ha voluto procedere e ha annullato l'azione",vb="Annulla",yb="Indietro",Mb="oppure",Sb="Varmennekortti",wb="Confermare",Ab="Nome",bb="Invia nuovamente",Fb="Finalizing",_b="refresh",kb={"no-ee-id-card":"Carta d'identità non trovata. Si prega di verificare se la carta è nel lettore e riavviare il browser. Il software può essere installato dalla pagina www.id.ee.",yes:"Sì",no:"No","phone-number":"numero di telefono",idcode:hb,country:gb,Sign:fb,USER_REFUSED:mb,"mobile-id":"Mobile ID","id-card":"Carta d'identità","smart-id":"Smart-ID","no-lv-id-card":"Nessuna carta d'identità lettone trovata. Assicurati di avere la scheda inserita e il software installato da https://www.eparaksts.lv/en/Downloads. Per le firme, assicurati che il plug-in eParaksts per il browser sia installato e attivato.","no-lt-id-card":"Nessuna carta d'identità lituana trovata. Assicurati di avere la scheda inserita e il software installato da http://www.nsc.vrm.lt/downloads.htm. Per le firme è necessario anche il plug-in del browser da https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nessuna carta d'identità portoghese trovata. Assicurati di avere la scheda inserita e il software installato da https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Nessuna carta d'identità serba trovata. Assicurati di avere la scheda inserita e il software installato da http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Non è stata trovata alcuna carta d'identità finlandese. Consulta le istruzioni per l'installazione del software su: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Non è stata trovata alcuna carta d'identità belga. Assicurati di aver inserito la carta e di aver installato il software da https://eid.belgium.be. Se l'errore persiste, riavvia il browser.","confirm-doc-check-and-sign":"Comprendi i contenuti del documento e sei pronto a finalizzare la firma?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Log In","this-field-is-required":"Questo campo è richiesto","your-verification-code":"Il tuo codice di verifica:",cancel:vb,"no-response-error":"Qualcosa è andato storto. Assicurati di essere connesso ad Internet, quindi prova ancora.",back:yb,"no-matching-countries":"Nessun paese corrispondente","id-card-read-timeout":"La lettura della carta di identità ha richiesto troppo. Ti preghiamo di chiudere tutte le finestre aperte del browser e riprovare.","zeal-id":"ZealiD","freja-eid":"eID Freja","approve-id-request-on-freja-app":"Approva la richiesta di identificazione sulla tua app FREJA eID","try-again":"Prova ancora","pre-sign-confirmation":'Dopo aver cliccato "Firma" ti identificheremo usando {method} e creeremo una firma legalmente vincolante.',"login-method":"Metodo di login:","finnish-online-bank":"Banca Online finlandese","online-bank":"Banca Online",or:Mb,"transaction-id":"ID Transazione","sign-in-evrotrust-app":"Per piacere firma questo documento nella tua app Evrotrust.","eparaksts-eid":"eID eParaksts",varmennekortti:Sb,"other-countries":"Altri paesi","email-sms":"E-mail/SMS","email-code-sent":"Una email con il codice è stata inviata a","sms-code-sent":"Un SMS con il codice è stato inviato a","your-code":"Il tuo codice","signature-method":"Metodo di firma","username-or-email":"Nome utente o email","cell-phone":"cellulare","including-calling-code":'con prefisso internazionale comprensivo di "+", esempio +35112345678',"enter-temp-security-code":"Inserisci il codice di sicurezza temporaneo","mobile-key-signing-info":"Puoi trovare maggiori informazioni sul processo di firma della chiave mobile su https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Questa azione è definitiva e irreversibile.\n","you-have-5-minutes-to-enter-the-code":"Hai 5 minuti per inserire il codice prima che scada.\n",confirm:wb,"after-confirmation-following-docs-will-be-signed":"Dopo la conferma, verranno firmati i seguenti documenti:","code-by-sms":"Codice per SMS","confirmation-code-will-be-sent-to":"Un codice di conferma verrà inviato a:",continue:"Continua\n",name:Ab,"chave-movel":"Chave Móvel","digital-signature-pin":"Spilla per firma digitale","approve-sign-request-on-freja-app":"Approva la richiesta di firma sulla tua applicazione FREJA eID","no-required-software":"Non hai installato il software necessario per completare questa azione. Segui le istruzioni di https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Firma con la mia banca","card-number":"numero di carta","your-sms-otp-code":"Il tuo codice sms otp","sign-in-halcom-app":"Firma questo documento nella tua app Halcom.","sign-in-swiss-id-app":"Firma questo documento nella tua app SwissID.","sign-in-app":"Firma questo documento nella tua app {name.}","be-id-card-signature-cancel-and-help":"L'azione è stata annullata.\nHai annullato perché la firma della carta d'identità belga non funziona?\nAssicurati che non ci siano altri token USB o smart card collegati al tuo dispositivo ad eccezione della stessa carta d'identità belga.\nQuindi consulta la seguente guida per assicurarti di aver installato tutto il software necessario: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Manca il software richiesto. Consulta la seguente guida su come installare i componenti software richiesti: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} richiede di accedere al tuo nome e ai dati personali. Per autorizzare eID Facile inoltrare questi dati, fare clic sul pulsante qui sotto.","method-setup-info":"{method} setup informazioni su {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB non trovato. Controlla se è nel lettore e riavvia il browser. Il software può essere installato dalla pagina https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"L'azione è stata annullata.\nHai annullato perché la firma del token USB CertSign non funziona?\nAssicurati che non ci siano altri token USB o smart card collegati al tuo dispositivo ad eccezione della stessa token card USB corretta.\nQuindi consultare la seguente guida per assicurarsi di avere installato tutto il software necessario: https://www.certsign.ro/en/cd/","no-id-card":"Carta d'identità non trovata. Si prega di verificare se la carta è nel lettore e riavviare il browser. Il software può essere installato dalla pagina https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informazioni su",here:"qui","no-fr-cert-europe-usb-token":"Token USB non trovato. Controlla se è nel lettore e riavvia il browser. Il software può essere installato dalla pagina https://support.certeurope.fr/telechargements/.","draw-signature":"Disegna la firma","Didnt receive a code?":"Non hai ricevuto un codice?",Resend:bb,"signature-policy":"Politica di firma","signer-held":"Signer held",finalizing:Fb,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:_b,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informazioni diagnostiche","approve-in-evrotrust-app":"Approva nell'app Evrotrust"},Ib=Object.freeze(Object.defineProperty({__proto__:null,Resend:bb,Sign:fb,USER_REFUSED:mb,back:yb,cancel:vb,confirm:wb,country:gb,default:kb,finalizing:Fb,here:"qui",idcode:hb,name:Ab,no:"No",or:Mb,refresh:_b,varmennekortti:Sb,yes:"Sì"},Symbol.toStringTag,{value:"Module"})),Tb="Taip",Eb="asmens kodas",Lb="Šalis",Bb="Pasirašyti",Db="Vartotojas šį veiksmą nutraukė.",xb="Atšaukti",Nb="Atgal",zb="arba",Vb="Varmennekortti",Rb="patvirtinti",Ob="Vardas",Pb="Persiūsti",Ub="Finalizing",Gb="atnaujinti",jb={"no-ee-id-card":"Nepavyko rasti prijungtos asmens tapatybės kortelės. Įsitikinkite, kad kortelė tinkamai prijungta prie skaitytuvo, o šis – prie kompiuterio ir iš naujo paleiskite naršyklę. Programinę įrangą galite rasti www.id.ee",yes:Tb,no:"Ne","phone-number":"telefono numeris",idcode:Eb,country:Lb,Sign:Bb,USER_REFUSED:Db,"mobile-id":"M. parašas","id-card":"Asmens tapatybės kortelė","smart-id":"Smart-ID","no-lv-id-card":'Latvijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://www.eparaksts.lv/en/Downloads. Norėdami pasirašyti, įsitikinkite, kad naršyklės įskiepis "eParaksts" yra įdiegtas ir aktyvuotas.',"no-lt-id-card":"Nerasta asmens tapatybės kortelė. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš http://www.nsc.vrm.lt/downloads.htm","no-pt-id-card":"Portugalijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Suomijos asmens tapatybės kortelės nerasta. Žiūrėkite programinės įrangos diegimo instrukcijas iš: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Belgijos asmens tapatybės kortelės nerasta. Įsitikinkite, kad kortelė įdėta ir programinė įranga įdiegta iš https://eid.belgium.be. Parašams taip pat reikalingas naršyklės įskiepis iš https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Ar supratote dokumento turinį ir esate pasirengę pasirašyti?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Powered by eIDEasy","log-in":"Prisijungti","this-field-is-required":"Šį lauką būtina užpildyti","your-verification-code":"Jūsų patvirtinimo kodas:",cancel:xb,"no-response-error":"Kažkas ne taip. Įsitikinkite, kad esate prisijungę prie interneto, tada bandykite dar kartą.",back:Nb,"no-matching-countries":"Nėra atitinkamų šalių","id-card-read-timeout":"Perskaityti asmens tapatybės kortelę užtruko per ilgai. Uždarykite visus atidarytus naršyklės langus ir bandykite dar kartą.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Patvirtinkite identifikavimo prašymą savo FREJA eID programėlėje","try-again":"Bandykite dar kartą","pre-sign-confirmation":"Spustelėję „Pasirašyti“ mes identifikuosime jus naudodami: {method} ir sukursime teisiškai privalomą parašą.","login-method":"Prisijungimo būdas:","finnish-online-bank":"Suomijos interneto bankas","online-bank":"Interneto bankas",or:zb,"transaction-id":"Sandorio ID","sign-in-evrotrust-app":"Pasirašykite šį dokumentą savo „Evrotrust“ programėlėje.","eparaksts-eid":"eParaksts eID",varmennekortti:Vb,"other-countries":"Kitos šalys","email-sms":"El. paštas/SMS žinutė","email-code-sent":"El. laiškas su kodu išsiųstas ","sms-code-sent":"Buvo išsiųsta SMS žinutė su kodu","your-code":"Jūsų kodas","signature-method":"Pasirašymo būdas","username-or-email":"Vartotojo vardas arba el. pašto adresas","cell-phone":"Mobilusis telefonas","including-calling-code":"su šalies kodu, įskaitant „+“, pavyzdžiui, +35112345678","enter-temp-security-code":"Įveskite laikiną apsaugos kodą","mobile-key-signing-info":"Daugiau informacijos apie mobiliojo rakto pasirašymo procesą galite rasti adresu https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Šis veiksmas yra galutinis ir negrįžtamas.","you-have-5-minutes-to-enter-the-code":"Turite 5 minutes įvesti kodą, kol jis pasibaigs.",confirm:Rb,"after-confirmation-following-docs-will-be-signed":"Po patvirtinimo bus pasirašyti šie dokumentai:","code-by-sms":"SMS kodas","confirmation-code-will-be-sent-to":"Patvirtinimo kodas bus išsiųstas:",continue:"Tęsti",name:Ob,"chave-movel":"Chave Móvel","digital-signature-pin":"Skaitmeninio parašo PIN kodas","approve-sign-request-on-freja-app":"Patvirtinkite pasirašymo prašymą savo FREJA eID programėlėje","no-required-software":"Neturite įdiegtos programinės įrangos, reikalingos šiam veiksmui atlikti. Vykdykite instrukcijas adresu https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Pasirašykite su mano banku","card-number":"kortelės numeris","your-sms-otp-code":"Jūsų sms otp kodas","sign-in-halcom-app":"Pasirašykite šį dokumentą savo „Halcom“ programėlėje.","sign-in-swiss-id-app":"Pasirašykite šį dokumentą savo SwissID programėlėje.","sign-in-app":"Pasirašykite šį dokumentą savo {name} programėlėje.","be-id-card-signature-cancel-and-help":"Akcija buvo atšaukta.\nAr atšaukėte, nes neveikia Belgijos asmens tapatybės kortelės pasirašymas?\nĮsitikinkite, kad prie jūsų įrenginio nėra prijungtų kitų USB žetonų ar intelektualiųjų kortelių, išskyrus pačią Belgijos asmens tapatybės kortelę.\nTada peržiūrėkite šį vadovą, kad įsitikintumėte, jog įdiegta visa reikalinga programinė įranga: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Trūksta reikiamos programinės įrangos. Žr. šį vadovą, kaip įdiegti reikiamus programinės įrangos komponentus: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} prašo prieigos prie jūsų vardo ir asmens ID duomenų. Norėdami įgalioti „eID Easy“ persiųsti šiuos duomenis, spustelėkite toliau esantį mygtuką.","method-setup-info":"{method} nustatymo informacija adresu {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB prieigos raktas nerastas. Patikrinkite, ar jis yra skaitytuve, ir iš naujo paleiskite naršyklę. Programinę įrangą galima įdiegti iš puslapio https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcija buvo atšaukta.\nAr atšaukėte, nes neveikia CertSign USB prieigos rakto pasirašymas?\nĮsitikinkite, kad prie jūsų įrenginio nėra prijungtų kitų USB prieigos raktų ar intelektualiųjų kortelių, išskyrus pačią teisingą USB prieigos rakto kortelę.\nTada peržiūrėkite šį vadovą, kad įsitikintumėte, jog įdiegta visa reikalinga programinė įranga: https://www.certsign.ro/en/cd/","no-id-card":"Nepavyko rasti prijungtos asmens tapatybės kortelės. Įsitikinkite, kad kortelė tinkamai prijungta prie skaitytuvo, o šis – prie kompiuterio ir iš naujo paleiskite naršyklę. Programinę įrangą galite rasti https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} nustatymo informacija adresu",here:"čia","no-fr-cert-europe-usb-token":"USB prieigos raktas nerastas. Patikrinkite, ar jis yra skaitytuve, ir iš naujo paleiskite naršyklę. Programinę įrangą galima įdiegti iš puslapio https://support.certeurope.fr/telechargements/.","draw-signature":"Nupiešti parašą","Didnt receive a code?":"Negavote kodo?",Resend:Pb,"signature-policy":"Parašo politika","signer-held":"Signer held",finalizing:Ub,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"„Smart-ID“ programėlėje įveskite PIN2 kodą.","Please enter your pin1 in the Smart-ID app.":"„Smart-ID“ programėlėje įveskite PIN1 kodą.","Click the button below if the process does not finish automatically.":"Spustelėkite toliau esantį mygtuką, jei procesas nesibaigia automatiškai.",refresh:Gb,"Please wait before trying again":"Palaukite prieš bandydami dar kartą","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostinė informacija","approve-in-evrotrust-app":"Patvirtinti „Evrotrust“ programėlėje"},Hb=Object.freeze(Object.defineProperty({__proto__:null,Resend:Pb,Sign:Bb,USER_REFUSED:Db,back:Nb,cancel:xb,confirm:Rb,country:Lb,default:jb,finalizing:Ub,here:"čia",idcode:Eb,name:Ob,no:"Ne",or:zb,refresh:Gb,varmennekortti:Vb,yes:Tb},Symbol.toStringTag,{value:"Module"})),Kb="personas kods",Zb="Valsts",qb="Parakstīties",Wb="Lietotājs nevēlējās turpināt un atcēla darbību",Jb="Atcelt",Qb="Atpakaļ",Yb="Varmennekortti",Xb="Apstiprināt",$b="Vārds",eF="šeit",tF="Atkārtoti nosūtīt",nF="Finalizing",iF="atsvaidzināt",aF={"no-ee-id-card":"ID karte nav atrasta. Lūdzu, pārbaudiet, vai karte ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no vietnes www.id.ee.",yes:"Jā",no:"Nē","phone-number":"telefona numurs",idcode:Kb,country:Zb,Sign:qb,USER_REFUSED:Wb,"mobile-id":"Mobilais ID","id-card":"ID karte","smart-id":"Smart-ID","no-lv-id-card":"Latvijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://www.eparaksts.lv/lv/lejupielades. Parakstiem, lūdzu, pārliecinieties, vai ir instalēts un aktivizēts eParaksts pārlūka spraudnis.","no-lt-id-card":"Lietuvas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes http://www.nsc.vrm.lt/downloads.htm. Parakstiem ir nepieciešams arī pārlūkprogrammas spraudnis no https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Portugāles ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Serbijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Somijas ID karte nav atrasta. Lūdzu, sk. programmatūras instalēšanas instrukciju: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Beļģijas ID karte nav atrasta. Lūdzu, pārliecinieties, vai esat ievietojis karti un instalēta programmatūra no vietnes https://eid.belgium.be. Parakstiem ir nepieciešams arī pārlūkprogrammas spraudnis no vietnes https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Vai sapratāt dokumenta saturu un esat gatavs pabeigt parakstu?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Nodrošina eIDEasy","log-in":"Pieslēgties","this-field-is-required":"Šis lauks ir obligāts","your-verification-code":"Jūsu verifikācijas kods:",cancel:Jb,"no-response-error":"Kaut kas nogāja greizi. Pārliecinieties, vai ir izveidots savienojums ar internetu, un tad mēģiniet vēlreiz.",back:Qb,"no-matching-countries":"Nav atbilstošu valstu","id-card-read-timeout":"ID kartes lasīšana aizņēma pārāk ilgu laiku. Lūdzu, aizveriet visus atvērtos pārlūkprogrammas logus un pēc tam mēģiniet vēlreiz.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Apstipriniet identifikācijas pieprasījumu savā FREJA eID lietotnē","try-again":"Mēģiniet vēlreiz","pre-sign-confirmation":'Pēc noklikšķināšanas uz "Parakstīt" mēs identificēsim jūs, izmantojot: {method,} un izveidosim juridiski saistošu parakstu.',"login-method":"Pieslēgšanās metode:","finnish-online-bank":"Somijas internetbanka","online-bank":"Internetbanka",or:"vai","transaction-id":"Darījuma ID","sign-in-evrotrust-app":"Lūdzu, parakstiet šo dokumentu savā Evrotrust lietotnē.","eparaksts-eid":"eParaksts eID",varmennekortti:Yb,"other-countries":"Citas valstis","email-sms":"E-pasts/ SMS","email-code-sent":"E-pasts ar kodu ir nosūtīts uz","sms-code-sent":"SMS ar kodu ir nosūtīta uz","your-code":"Jūsu kods","signature-method":"Parakstīšanās metode","username-or-email":"Lietotājvārds vai e-pasts","cell-phone":"Mobilais telefons","including-calling-code":'ar valsts kodu, tostarp "+", piemēram, +35112345678',"enter-temp-security-code":"Ievadiet pagaidu drošības kodu","mobile-key-signing-info":"Plašāku informāciju par mobilās atslēgas parakstīšanas procesu varat atrast vietnē https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Šī darbība ir galīga un neatgriezeniska.","you-have-5-minutes-to-enter-the-code":"Jums ir 5 minūtes, lai ievadītu kodu, pirms tas beidzas.",confirm:Xb,"after-confirmation-following-docs-will-be-signed":"Pēc apstiprināšanas tiks parakstīti šādi dokumenti:","code-by-sms":"Kods pa SMS","confirmation-code-will-be-sent-to":"Apstiprināšanas kods tiks nosūtīts uz:",continue:"Turpināt",name:$b,"chave-movel":"Chave Móvel","digital-signature-pin":"Digitālā paraksta pin","approve-sign-request-on-freja-app":"Apstipriniet parakstīšanas lūgumu jūsu FREJA eID aplikācijā","no-required-software":"Jums nav instalēta nepieciešamā programmatūra, lai pabeigtu šo darbību. Lūdzu, izpildiet norādījumus vietnē https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts karte","sign-with-my-bank":"Parakstīties ar manu banku","card-number":"kartes numurs","your-sms-otp-code":"Jūsu SMS OTP kods","sign-in-halcom-app":"Lūdzu, parakstiet šo dokumentu savā Halcom lietotnē.","sign-in-swiss-id-app":"Lūdzu, parakstiet šo dokumentu savā SwissID lietotnē.","sign-in-app":"Lūdzu, parakstiet šo dokumentu savā {name} lietotnē.","be-id-card-signature-cancel-and-help":"Akcija tika atcelta.\nVai atcēlāt, jo Beļģijas ID kartes parakstīšana nedarbojas?\nPārliecinieties, vai ierīcei nav pievienoti citi USB marķieri vai viedkartes, izņemot pašu Beļģijas ID karti.\nPēc tam skatiet šo rokasgrāmatu, lai pārliecinātos, ka jums ir instalēta visa nepieciešamā programmatūra: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Trūkst vajadzīgās programmatūras. Skatiet šo rokasgrāmatu par nepieciešamo programmatūras komponentu instalēšanu: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} pieprasa piekļuvi jūsu vārdam un personas ID datiem. Lai autorizētu eID Easy pārsūtīt šos datus, lūdzu, noklikšķiniet uz tālāk esošās pogas.","method-setup-info":"{method} iestatīšanas informācija vietnē {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB marķieris nav atrasts. Lūdzu, pārbaudiet, vai tas ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no lapas https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcija tika atcelta.\nVai atcēlāt, jo CertSign USB pilnvaras parakstīšana nedarbojas?\nPārliecinieties, vai jūsu ierīcei nav pievienoti citi USB marķieri vai viedkartes, izņemot pašu pareizo USB pilnvaru karti.\nPēc tam skatiet šo rokasgrāmatu, lai pārliecinātos, ka jums ir instalēta visa nepieciešamā programmatūra: https://www.certsign.ro/en/cd/","no-id-card":"ID karte nav atrasta. Lūdzu, pārbaudiet, vai karte ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no vietnes https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} iestatīšanas informācija vietnē",here:eF,"no-fr-cert-europe-usb-token":"USB marķieris nav atrasts. Lūdzu, pārbaudiet, vai tas ir lasītājā, un restartējiet pārlūkprogrammu. Programmatūru var instalēt no lapas https://support.certeurope.fr/telechargements/.","draw-signature":"Zīmēt parakstu","Didnt receive a code?":"Vai nesaņēmāt kodu?",Resend:tF,"signature-policy":"Paraksta politika","signer-held":"Signer held",finalizing:nF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Lūdzu, ievadiet savu PIN2 lietotnē Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Lūdzu, ievadiet savu PIN1 lietotnē Smart-ID.","Click the button below if the process does not finish automatically.":"Noklikšķiniet uz tālāk esošās pogas, ja process netiek pabeigts automātiski.",refresh:iF,"Please wait before trying again":"Lūdzu, uzgaidiet, pirms mēģināt vēlreiz","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostikas informācija","approve-in-evrotrust-app":"Apstiprināt Evrotrust lietotnē"},oF=Object.freeze(Object.defineProperty({__proto__:null,Resend:tF,Sign:qb,USER_REFUSED:Wb,back:Qb,cancel:Jb,confirm:Xb,country:Zb,default:aF,finalizing:nF,here:eF,idcode:Kb,name:$b,no:"Nē",or:"vai",refresh:iF,varmennekortti:Yb,yes:"Jā"},Symbol.toStringTag,{value:"Module"})),rF="persoonlijke identiteitscode",sF="Land",lF="Ondertekenen",cF="Gebruiker wilde niet doorgaan en heeft de actie geannuleerd",dF="Annuleren",uF="Terug",CF="Varmennekortti",pF="Bevestig",hF="Naam",gF="hier",fF="Opnieuw versturen",mF="Finalizing",vF="refresh",yF={"no-ee-id-card":"ID-kaart niet gevonden. Controleer of de kaart in de lezer zit en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina www.id.ee.",yes:"Ja",no:"Nee","phone-number":"telefoonnummer",idcode:rF,country:sF,Sign:lF,USER_REFUSED:cF,"mobile-id":"Mobiel ID","id-card":"ID-kaart","smart-id":"Smart-ID","no-lv-id-card":"Geen Letse ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software van https://www.eparaksts.lv/en/Downloads is geïnstalleerd. Controleer voor handtekeningen of de eParaksts-plugin voor de browser is geïnstalleerd en geactiveerd.","no-lt-id-card":"Geen Litouwse ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software van http://www.nsc.vrm.lt/downloads.htm is geïnstalleerd. Voor handtekeningen is ook de browser plugin van https://github.com/open-eid/chrome-token-signing/releases nodig.","no-pt-id-card":"Geen Portugese ID-kaart gevonden. Zorg ervoor dat uw kaart is ingebracht en dat de software is geïnstalleerd vanaf https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Geen Servische ID-kaart gevonden. Zorg ervoor dat uw kaart is ingevoerd en dat de software is geïnstalleerd vanaf http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Geen Finse ID-kaart gevonden. Zie de software-installatie-instructies van: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Geen Belgische ID-kaart gevonden. Zorg ervoor dat de kaart is ingebracht en dat de software is geïnstalleerd vanaf https://eid.belgium.be. Herstart de browser als de fout zich blijft voordoen.","confirm-doc-check-and-sign":"Hebt u de inhoud van het document begrepen en bent u klaar om de ondertekening af te ronden?","eparaksts-mobile":"eParaksts mobiel","powered-by-eideasy":"Aangedreven door eIDEasy","log-in":"Inloggen","this-field-is-required":"Dit veld is verplicht","your-verification-code":"Uw verificatiecode:",cancel:dF,"no-response-error":"Er is iets fout gegaan. Controleer of u verbinding hebt met het internet en probeer het opnieuw.",back:uF,"no-matching-countries":"Geen overeenkomende landen","id-card-read-timeout":"Het lezen van de ID-kaart duurde te lang. Sluit alle open browservensters en probeer het opnieuw.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Keur het identificatieverzoek goed op uw FREJA eID app","try-again":"Opnieuw proberen","pre-sign-confirmation":'Nadat u op "Ondertekenen" hebt geklikt, identificeren wij u met {method} en maken wij een wettelijk bindende handtekening.',"login-method":",","finnish-online-bank":"Finse online bank","online-bank":"Online Bank",or:"of","transaction-id":"Transactie ID","sign-in-evrotrust-app":"Gelieve dit document te ondertekenen in uw Evrotrust app.","eparaksts-eid":"eParaksts eID",varmennekortti:CF,"other-countries":"Andere landen","email-sms":"E-mail/SMS","email-code-sent":"Een e-mail met de code is verstuurd naar","sms-code-sent":"Een SMS met de code is verstuurd naar","your-code":"Uw code","signature-method":"Handtekening methode","username-or-email":"Gebruikersnaam of e-mail","cell-phone":"Mobiele telefoon","including-calling-code":'met landcode inclusief "+", bijvoorbeeld +35112345678',"enter-temp-security-code":"Tijdelijke beveiligingscode invoeren","mobile-key-signing-info":"Meer informatie over het ondertekenen van mobiele sleutels vindt u op https://www.autenticacao.gov.pt/cmd-assinatura.","signature-confirmation-irreversible-note":"Deze actie is definitief en onomkeerbaar.","you-have-5-minutes-to-enter-the-code":"U hebt 5 minuten om de code in te voeren voordat deze vervalt.",confirm:pF,"after-confirmation-following-docs-will-be-signed":"Na bevestiging worden de volgende documenten ondertekend:","code-by-sms":"Code per SMS","confirmation-code-will-be-sent-to":"Er wordt een bevestigingscode verzonden naar:",continue:"Ga verder",name:hF,"chave-movel":"Chave Móvel","digital-signature-pin":"Pin voor digitale handtekening","approve-sign-request-on-freja-app":"De ondertekeningsaanvraag goedkeuren op uw FREJA eID app","no-required-software":"U hebt niet de nodige software geïnstalleerd om deze actie uit te voeren. Volg de instructies op https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smartcard","sign-with-my-bank":"Ondertekenen met mijn bank","card-number":"kaartnummer","your-sms-otp-code":"Uw sms otp-code","sign-in-halcom-app":"Onderteken dit document in uw Halcom-app.","sign-in-swiss-id-app":"Onderteken dit document in uw SwissID-app.","sign-in-app":"Onderteken dit document in uw {name} app.","be-id-card-signature-cancel-and-help":"De actie is geannuleerd.\nHeb je opgezegd omdat de ondertekening van de Belgische identiteitskaart niet werkt?\nZorg ervoor dat er geen andere USB-tokens of smartcards op uw toestel zijn aangesloten dan de Belgische identiteitskaart zelf.\nRaadpleeg dan de volgende gids om er zeker van te zijn dat u alle benodigde software hebt geïnstalleerd: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Vereiste software ontbreekt. Raadpleeg de volgende gids voor het installeren van de vereiste softwarecomponenten: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} vraagt om inzage in je naam en persoonlijke ID’s. Om eID Easy door te geautoriseerd, klik op de onderstaande knop.","method-setup-info":"{method} setup informatie op {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB Token niet gevonden. Controleer of het in de lezer staat en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"De actie is geannuleerd.\nHeeft u geannuleerd omdat de CertSign USB-tokenondertekening niet werkt?\nZorg ervoor dat er geen andere USB-tokens of smartcards op uw apparaat zijn aangesloten, behalve de juiste USB-tokenkaart zelf.\nRaadpleeg dan de volgende gids om ervoor te zorgen dat u alle benodigde software hebt geïnstalleerd: https://www.certsign.ro/en/cd/","no-id-card":"ID-kaart niet gevonden. Controleer of de kaart in de lezer zit en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informatie op",here:gF,"no-fr-cert-europe-usb-token":"USB Token niet gevonden. Controleer of het in de lezer staat en start de browser opnieuw op. De software kan worden geïnstalleerd vanaf de pagina https://support.certeurope.fr/telechargements/.","draw-signature":"Teken handtekening","Didnt receive a code?":"Geen code ontvangen?",Resend:fF,"signature-policy":"Handtekeningsbeleid","signer-held":"Signer held",finalizing:mF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:vF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostische informatie","approve-in-evrotrust-app":"Goedkeuren in de Evrotrust-app"},MF=Object.freeze(Object.defineProperty({__proto__:null,Resend:fF,Sign:lF,USER_REFUSED:cF,back:uF,cancel:dF,confirm:pF,country:sF,default:yF,finalizing:mF,here:gF,idcode:rF,name:hF,no:"Nee",or:"of",refresh:vF,varmennekortti:CF,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),SF="osobisty kod identyfikacyjny",wF="Kraj",AF="Podpisz",bF="Akcja została anulowana po stronie użytkownika",FF="Anuluj",_F="Powrót",kF="Varmennekortti",IF="Potwierdź",TF="Imię",EF="tutaj",LF="Wysłać ponownie",BF="Finalizing",DF="refresh",xF={"no-ee-id-card":"Nie znaleziono dowodu osobistego. Upewnij się, że jest on w czytniku i zrestartuj przeglądarkę. Oprogramowanie może zostać zainstalowane z www.id.ee.",yes:"Tak",no:"Nie","phone-number":"numer telefonu",idcode:SF,country:wF,Sign:AF,USER_REFUSED:bF,"mobile-id":"Mobile ID","id-card":"Dowód osobisty","smart-id":"Smart-ID","no-lv-id-card":"Nie znaleziono łotewskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z https://www.eparaksts.lv/en/Downloads zostało zainstalowane. Do podpisów wymagana jest również instalacja oraz aktywacja pluginu eParaksts dla przeglądarek.","no-lt-id-card":"Nie znaleziono litewskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z http://www.nsc.vrm.lt/downloads.htm zostało zainstalowane. Dla podpisów wymagany jest również plugin do przeglądarki dostępny na https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nie znaleziono portugalskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z https://www.autenticacao.gov.pt/cc-aplicacao zostało zainstalowane.","no-rs-id-card":"Nie znaleziono serbskiego dowodu osobistego. Upewnij się, że został on włożony, a oprogramowanie z ttp://ca.mup.gov.rs/download-lat.html zostało zainstalowane.","no-fi-id-card":"Nie znaleziono fińskiego dowodu osobistego. Sprawdź instrukcję instalacji oprogramowania na https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nie znaleziono belgijskiego dowodu osobistego. Upewnij się, że dowód został włożony, a oprogramowanie z https://eid.belgium.be zostało zainstalowane. Zrestartuj przeglądarkę, jeśli błąd wciąż występuje.","confirm-doc-check-and-sign":"Czy zawartość dokumentu jest dla Ciebie zrozumiała i chcesz sfinalizować podpis?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Zasilane przez eIDEasy","log-in":"Zaloguj się","this-field-is-required":"Te pole jest wymagane","your-verification-code":"Twój kod weryfikacyjny:",cancel:FF,"no-response-error":"Coś poszło nie tak. Upewnij się, że masz dostęp do internetu i spróbuj ponownie.",back:_F,"no-matching-countries":"Brak pasujących krajów","id-card-read-timeout":"Odczytywanie Twojego dowodu osobistego zajęło zbyt długo. Zamknij pozostałe otwarte karty przeglądarki i spróbuj ponownie.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Zatwierdź prośbę o identyfikację w Twojej aplikacji FREJA eID","try-again":"Spróbuj ponownie","pre-sign-confirmation":'Po kliknięciu "podpisz" dokonamy identyfikacji za pomocą {method} i utworzymy na tej podstawie prawnie wiążący podpis.',"login-method":"Metoda logowania:","finnish-online-bank":"Fiński Bank Online","online-bank":"Bank Online",or:"lub","transaction-id":"ID transakcji","sign-in-evrotrust-app":"Podpisz ten dokument w Twojej aplikacji Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:kF,"other-countries":"Inne kraje","email-sms":"E-mail/SMS","email-code-sent":"E-mail z kodem został wysłany na","sms-code-sent":"SMS z kodem został wysłany na","your-code":"Twój kod","signature-method":"Sposób podpisania","username-or-email":"Nazwa użytkownika lub e-mail","cell-phone":"Telefon komórkowy","including-calling-code":'z kodem kraju wraz z "+", na przykład +35112345678',"enter-temp-security-code":"Wprowadź tymczasowy klucz bezpieczeństwa","mobile-key-signing-info":"Możesz dowiedzieć się więcej o podpisywaniu za pomocą klucza mobilnego na https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Ta akcja jest definitywna i nieodwracalna.","you-have-5-minutes-to-enter-the-code":"Masz 5 minut na wprowadzenie kodu zanim ulegnie on przedawnieniu.",confirm:IF,"after-confirmation-following-docs-will-be-signed":"Po potwierdzeniu, podpisane zostaną następujące dokumenty:","code-by-sms":"Kod przez SMS","confirmation-code-will-be-sent-to":"Kod potwierdzający zostanie wysłany na:",continue:"Kontynuuj",name:TF,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN podpisu elektronicznego","approve-sign-request-on-freja-app":"Zaakceptuj prośbę o podpis w Twojej aplikacji FREJA eID","no-required-software":"Nie posiadasz oprogramowania wymaganego do ukończenia tej akcji. Podążaj zgodnie z instrukcjami dostępnymi na https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"Karta inteligentna eParaksts","sign-with-my-bank":"Podpisz za pomocą mojego banku","card-number":"numer karty","your-sms-otp-code":"Twój kod otp sms","sign-in-halcom-app":"Podpisz ten dokument w Twojej aplikacji Halcom.","sign-in-swiss-id-app":"Podpisz ten dokument w Twojej aplikacji SwissID.","sign-in-app":"Podpisz ten dokument w Twojej {name} app.","be-id-card-signature-cancel-and-help":"Akcja została anulowana.\nCzy anulowano ją ze względu na niedziałającą funkcję podpisywania za pomocą belgijskiego dowodu osobistego?\nUpewnij się, że do Twojego urządzenia nie podłączono innych tokenów USB lub kart inteligentnych poza belgijskim dowodem osobistym.\nAby upewnić się o instalacji wszystkich wymaganych programów, zapoznaj się z poradnikiem: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Brak wymaganego oprogramowania. Zapoznaj się z poradnikiem opisującym instalację wymaganych komponentów: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} prosi o dostęp do Twojego imienia i dowodu osobistego. Aby dokonać autoryzacji eID Easy, kliknij poniższy przycisk.","method-setup-info":"Informacje o konfiguracji {method} setup w {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Nie znaleziono tokena USB. Sprawdź, czy jest w czytniku i uruchom ponownie przeglądarkę. Oprogramowanie można zainstalować ze strony https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Akcja została anulowana.\nCzy anulowałeś, ponieważ podpisywanie tokena USB CertSign nie działa?\nUpewnij się, że do urządzenia nie są podłączone żadne inne tokeny USB ani karty inteligentne oprócz właściwej karty z tokenem USB.\nNastępnie zapoznaj się z poniższym przewodnikiem, aby upewnić się, że masz zainstalowane całe niezbędne oprogramowanie: https://www.certsign.ro/en/cd/","no-id-card":"Nie znaleziono dowodu osobistego. Upewnij się, że jest on w czytniku i zrestartuj przeglądarkę. Oprogramowanie może zostać zainstalowane z https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Informacje o konfiguracji {method} setup w",here:EF,"no-fr-cert-europe-usb-token":"Nie znaleziono tokena USB. Sprawdź, czy jest w czytniku i uruchom ponownie przeglądarkę. Oprogramowanie można zainstalować ze strony https://support.certeurope.fr/telechargements/.","draw-signature":"Narysuj podpis","Didnt receive a code?":"Nie otrzymałeś kodu?",Resend:LF,"signature-policy":"Polityka podpisów","signer-held":"Signer held",finalizing:BF,"local-certificate":"Certyfikat lokalny","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:DF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informacje diagnostyczne","approve-in-evrotrust-app":"Zatwierdź w aplikacji Evrotrust"},NF=Object.freeze(Object.defineProperty({__proto__:null,Resend:LF,Sign:AF,USER_REFUSED:bF,back:_F,cancel:FF,confirm:IF,country:wF,default:xF,finalizing:BF,here:EF,idcode:SF,name:TF,no:"Nie",or:"lub",refresh:DF,varmennekortti:kF,yes:"Tak"},Symbol.toStringTag,{value:"Module"})),zF="Código de identificação pessoal",VF="Pais",RF="Assinar",OF="O usuário não deseja continuar e cancelou a ação",PF="Cancelar",UF="Voltar",GF="Varmennekortti",jF="confirme",HF="Nome",KF="aqui",ZF="Reenviar",qF="Finalizing",WF="refresh",JF={"no-ee-id-card":"Cartão de identificação não encontrado. Verifique se o cartão está no leitor e reinicie o navegador. O software pode ser instalado a partir da página www.id.ee.",yes:"Sim",no:"Não","phone-number":"número de telefone",idcode:zF,country:VF,Sign:RF,USER_REFUSED:OF,"mobile-id":"Mobile ID","id-card":"Cartão de Cidadão","smart-id":"Smart-ID","no-lv-id-card":"Nenhum cartão de identificação letão encontrado. Certifique-se de inserir o cartão e instalar o software em https://www.eparaksts.lv/en/Downloads. Para assinaturas, certifique-se de que o plugin eParaksts para o navegador esteja instalado e ativado.","no-lt-id-card":"Nenhum cartão de identificação lituano encontrado. Certifique-se de inserir o cartão e instalar o software em http://www.nsc.vrm.lt/downloads.htm. Para assinaturas também é necessário o plug-in do navegador em https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Nenhum cartão de identidade de Portugal encontrado. Certifique-se de que inseriu o cartão e instalou o software a partir de https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Nenhum cartão de identificação sérvio encontrado. Certifique-se de ter o cartão inserido e o software instalado de http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Nenhum cartão de identificação finlandês encontrado. Consulte as instruções de instalação do software em: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Nenhum cartão de identificação da Bélgica encontrado. Certifique-se de inserir o cartão e instalar o software em https://eid.belgium.be. Para assinaturas também é necessário o plug-in do navegador em https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Você entendeu o conteúdo do documento e está pronto para finalizar a assinatura?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Distribuído por eIDEasy","log-in":"Entrar","this-field-is-required":"Campo obrigatório","your-verification-code":"O seu código de verificação",cancel:PF,"no-response-error":"Ocorreu um erro. Certifique-se de que você esteja conectado à Internet e tente novamente.",back:UF,"no-matching-countries":"Não existem países","id-card-read-timeout":"A leitura do Cartão demorou demasiado tempo. Por favor feche o browser e tente de novo","zeal-id":"ZealID","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Aprovar o pedido de identificação no sua aplicação FREJA eID","try-again":"Tente novamente","pre-sign-confirmation":'Depois de clicar em "Assinar", iremos identificá-lo usando o {method} e criaremos uma assinatura juridicamente vinculativa.',"login-method":"Método de login:","finnish-online-bank":"Banco online finlandês","online-bank":"Banco Online",or:"ou","transaction-id":"id de transação","sign-in-evrotrust-app":"Assine este documento em seu aplicativo Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:GF,"other-countries":"Outros países","email-sms":"Email/SMS","email-code-sent":"Um e-mail com o código foi enviado para","sms-code-sent":"Um SMS com o código foi enviado para","your-code":"O seu código","signature-method":"Método de assinatura","username-or-email":"Nome de usuário ou email","cell-phone":"Telemóvel","including-calling-code":'com código do país incluindo "+", exemplo +35112345678',"enter-temp-security-code":"Inserir código de segurança temporário","mobile-key-signing-info":"Pode encontrar mais informação sobre o processo de assinatura com a chave móvel em https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Esta ação é definitiva e irreversível.","you-have-5-minutes-to-enter-the-code":"Tem 5 minutos para introduzir o código antes que expire",confirm:jF,"after-confirmation-following-docs-will-be-signed":"Após a confirmação, os seguintes documentos serão assinados:","code-by-sms":"Código por SMS","confirmation-code-will-be-sent-to":"Um código de confirmação será enviado para:",continue:"Continue",name:HF,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN de assinatura da CMD","approve-sign-request-on-freja-app":"Aprove a solicitação de assinatura na sua aplicação FREJA eID","no-required-software":"Você não tem o software necessário instalado para concluir esta ação. Siga as instruções em https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Assine com meu banco","card-number":"número do cartão","your-sms-otp-code":"Seu código sms otp","sign-in-halcom-app":"Assine este documento em seu aplicativo Halcom.","sign-in-swiss-id-app":"Por favor, assine este documento em seu aplicativo SwissID.","sign-in-app":"Por favor, assine este documento em seu aplicativo {name.}","be-id-card-signature-cancel-and-help":"A ação foi cancelada.\nVocê cancelou porque a assinatura da carteira de identidade belga não está funcionando?\nCertifique-se de que não há outros tokens USB ou cartões inteligentes conectados ao seu dispositivo, exceto o próprio cartão de identificação belga.\nEm seguida, consulte o guia a seguir para garantir que você tenha todo o software necessário instalado: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"O software necessário está ausente. Consulte o seguinte guia sobre como instalar os componentes de software necessários: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} está solicitando o acesso ao seu nome e dados de identificação pessoal. Para autorizar o eID Fácil encaminhar esses dados, clique no botão abaixo.","method-setup-info":"{method} setup informação em {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"Token USB não encontrado. Verifique se está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"A ação foi cancelada.\nVocê cancelou porque a assinatura do token USB CertSign não está funcionando?\nCertifique-se de que não haja outros tokens USB ou cartões inteligentes conectados ao seu dispositivo, exceto o próprio cartão de token USB correto.\nEm seguida, consulte o guia a seguir para garantir que você tenha todo o software necessário instalado: https://www.certsign.ro/en/cd/","no-id-card":"Cartão de identificação não encontrado. Verifique se o cartão está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} setup informação em {link}",here:KF,"no-fr-cert-europe-usb-token":"Token USB não encontrado. Verifique se está no leitor e reinicie o navegador. O software pode ser instalado a partir da página https://support.certeurope.fr/telechargements/.","draw-signature":"Desenhar assinatura","Didnt receive a code?":"Não recebeu um código?",Resend:ZF,"signature-policy":"Política de Assinatura","signer-held":"Signer held",finalizing:qF,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:WF,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Informações de diagnóstico","approve-in-evrotrust-app":"Aprovar no aplicativo Evrotrust"},QF=Object.freeze(Object.defineProperty({__proto__:null,Resend:ZF,Sign:RF,USER_REFUSED:OF,back:UF,cancel:PF,confirm:jF,country:VF,default:JF,finalizing:qF,here:KF,idcode:zF,name:HF,no:"Não",or:"ou",refresh:WF,varmennekortti:GF,yes:"Sim"},Symbol.toStringTag,{value:"Module"})),YF="персональный код",XF="Страна",$F="Подпись",e_="Пользователь отменил действие",t_="Отмена",n_="Назад",i_="Varmennekortti",a_="подтверждать",o_="здесь",r_="Отправить",s_="Завершение, подождите",l_="Обновить",c_={"no-ee-id-card":"ID-картa не найдена. Пожалуйста, проверьте, есть ли карта в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы www.id.ee.",yes:"Да",no:"Нет","phone-number":"номер телефона",idcode:YF,country:XF,Sign:$F,USER_REFUSED:e_,"mobile-id":"Мобильный ID","id-card":"ID-карта","smart-id":"Smart-ID","no-lv-id-card":"Не найдена Латвийская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://www.eparaksts.lv/en/Downloads. Для подписей убедитесь, что плагин eParaksts для браузера установлен и активирован.","no-lt-id-card":"Не найдена Литовская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с http://www.nsc.vrm.lt/downloads.htm. Для подписей также необходим плагин браузера с https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Не найдена Португальская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://www.autenticacao.gov.pt/cc-aplicacao","no-rs-id-card":"Не найдена Сербская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Не найдена Финская ID-карта. См. инструкции по установке программного обеспечения здесь: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Не найдена Бельгийская ID-карта. Убедитесь, что карта вставлена и установлено программное обеспечение с https://eid.belgium.be. Для подписей также необходим плагин браузера с https://github.com/open-eid/chrome-token-signing/releases","confirm-doc-check-and-sign":"Поняли ли вы содержание документа и готовы ли завершить подписание?","eparaksts-mobile":"eParaksts mobile","powered-by-eideasy":"Создано eIDEasy","log-in":"Войти","this-field-is-required":"Это поле обязательно к заполнению","your-verification-code":"Ваш проверочный код:",cancel:t_,"no-response-error":"Что-то пошло не так. Убедитесь, что вы подключены к Интернету, затем повторите попытку.",back:n_,"no-matching-countries":"Нет подходящих стран","id-card-read-timeout":"Чтение удостоверения личности заняло слишком много времени. Закройте все открытые окна браузера и повторите попытку.","zeal-id":"ZealiD","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Одобрить запрос на идентификацию в вашем приложении FREJA eID","try-again":"Повторите попытку","pre-sign-confirmation":"После нажатия кнопки «Подписать» мы идентифицируем вас с помощью {method} и создадим юридически обязательную подпись.","login-method":"Способ входа:","finnish-online-bank":"Финский интернет-банк","online-bank":"Интернет-банк",or:"или","transaction-id":"ID транзакции","sign-in-evrotrust-app":"Пожалуйста, подпишите этот документ в своем приложении Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:i_,"other-countries":"Другие страны","email-sms":"Электронная почта/SMS","email-code-sent":"Письмо с кодом было отправлено на адрес","sms-code-sent":"SMS с кодом отправлено на","your-code":"Ваш код","signature-method":"Метод подписи","username-or-email":"Имя пользователя или адрес электронной почты","cell-phone":"сотовый телефон","including-calling-code":'с кодом страны, включая "+", пример +35112345678',"enter-temp-security-code":"Введите временный защитный код","mobile-key-signing-info":"Дополнительную информацию о процессе подписания мобильного ключа можно найти на странице https://www.autenticacao.gov.pt/cmd-assinatura.","signature-confirmation-irreversible-note":"Это действие является окончательным и необратимым.","you-have-5-minutes-to-enter-the-code":"У вас есть 5 минут, чтобы ввести код до истечения срока его действия.",confirm:a_,"after-confirmation-following-docs-will-be-signed":"После подтверждения будут подписаны следующие документы:","code-by-sms":"Код по СМС","confirmation-code-will-be-sent-to":"Код подтверждения будет отправлен:",continue:"Продолжить",name:"Имя","chave-movel":"Чаве Мовель","digital-signature-pin":"Пин-код цифровой подписи","approve-sign-request-on-freja-app":"Подтвердите запрос на подпись в приложении FREJA eID.","no-required-software":"У вас не установлено необходимое программное обеспечение для выполнения этого действия. Следуйте инструкциям по адресу: https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Подписать с моим банком","card-number":"номер карты","your-sms-otp-code":"Ваш смс код отп","sign-in-halcom-app":"Подпишите этот документ в приложении Halcom.","sign-in-swiss-id-app":"Подпишите этот документ в приложении SwissID.","sign-in-app":"Пожалуйста, подпишите этот документ в вашем приложении {name.}","be-id-card-signature-cancel-and-help":"Действие было отменено.\nВы отменили подписку, потому что бельгийское удостоверение личности не работает?\nУбедитесь, что к вашему устройству не подключены другие USB-токены или смарт-карты, кроме самого бельгийского удостоверения личности.\nЗатем см. следующее руководство, чтобы убедиться, что у вас установлено все необходимое программное обеспечение: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Необходимое программное обеспечение отсутствует. См. следующее руководство по установке необходимых программных компонентов: https://eideasy.com/belgian-id-software-installation/","client-request-data-confirmation":"{websiteName} {companyName} запрашивает доступ к вашему имени и персональные данные. Чтобы авторизовать eID Easy вперед эти данные, пожалуйста, нажмите кнопку ниже.","method-setup-info":"{method} инструкция к использованию {link}","i-accept-and-approve-this-doc":"Я принимаю и одобряю содержание этого документа.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Подписать с Verimi","no-ro-usb-token":"USB-токен не найден. Проверьте, есть ли он в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Действие было отменено.\nВы отменили подписание из-за того, что USB-токен CertSign не работает?\nУбедитесь, что к вашему устройству не подключены другие USB-токены или смарт-карты, кроме самой правильной карты USB-токена.\nЗатем см. следующее руководство, чтобы убедиться, что у вас установлено все необходимое программное обеспечение: https://www.certsign.ro/en/cd/","no-id-card":"ID-картa не найдена. Пожалуйста, проверьте, есть ли карта в считывателе и перезапустите браузер. Программное обеспечение можно установить со страницы https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Инструкция к использованию {method}",here:o_,"no-fr-cert-europe-usb-token":"USB-токен не найден. Проверьте, есть ли он в ридере, и перезапустите браузер. Программное обеспечение можно установить со страницы https://support.certeurope.fr/telechargements/.","draw-signature":"Нарисовать подпись","Didnt receive a code?":"Не получили код?",Resend:r_,"signature-policy":"Политика подписи","signer-held":"Сертификат, удерживаемый подписчиком",finalizing:s_,"local-certificate":"Сертификат на устройстве","Please enter your pin2 in the Smart-ID app.":"Введите свой PIN2 в приложении Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Введите свой PIN1 в приложении Smart-ID.","Click the button below if the process does not finish automatically.":"Нажмите кнопку ниже, если процесс не завершился автоматически.",refresh:l_,"Please wait before trying again":"Пожалуйста, подождите, прежде чем повторить попытку.","Web-eID extension is not available":"Расширение Web-eID недоступно","User cancelled":"Действие прервано пользователем","Diagnostic Info":"Диагностическая информация","approve-in-evrotrust-app":"Одобрить в приложении Evrotrust"},d_=Object.freeze(Object.defineProperty({__proto__:null,Resend:r_,Sign:$F,USER_REFUSED:e_,back:n_,cancel:t_,confirm:a_,country:XF,default:c_,finalizing:s_,here:o_,idcode:YF,name:"Имя",no:"Нет",or:"или",refresh:l_,varmennekortti:i_,yes:"Да"},Symbol.toStringTag,{value:"Module"})),u_="kod för personlig identitet",C_="Land",p_="Underteckna",h_="Användaren ville inte fortsätta och avbröt åtgärden.",g_="Avbryt",f_="Tillbaka",m_="eller\n",v_="Certifikatkort",y_="bekräfta",M_="Namn",S_="Skicka igen",w_="Finalizing",A_="refresh",b_={"no-ee-id-card":"ID-kortet har inte hittats. Kontrollera om kortet finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan www.id.ee.",yes:"Ja",no:"Nej","phone-number":"telefonnummer",idcode:u_,country:C_,Sign:p_,USER_REFUSED:h_,"mobile-id":"Mobil-ID\n","id-card":"ID-kort","smart-id":"Smart-ID","no-lv-id-card":"Inget lettiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://www.eparaksts.lv/en/Downloads. För underteckningar ska du se till att eParaksts insticksprogram för webbläsaren är installerat och aktiverat.","no-lt-id-card":"Inget litauiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från http://www.nsc.vrm.lt/downloads.htm. För underteckningar behövs också en webbläsarplugin från https://github.com/open-eid/chrome-token-signing/releases.","no-pt-id-card":"Inget portugisiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Inget serbiskt ID-kort hittades. Kontrollera att du har kortet insatt och programvaran installerad från http://ca.mup.gov.rs/download-lat.html.","no-fi-id-card":"Inget finskt ID-kort hittades. Se instruktionerna för installation av programvaran från: https://dvv.fi/sv/medborgarcertifikat-kortlasarprogram","no-be-id-card":"Inget belgiskt ID-kort hittades. Kontrollera att kortet är insatt och att programvaran är installerad från https://eid.belgium.be. För underteckningar behövs också en webbläsarplugin från https://github.com/open-eid/chrome-token-signing/releases.","confirm-doc-check-and-sign":"Har du förstått dokumentets innehåll och är redo att underteckna det?","eparaksts-mobile":"eParaksts mobil","powered-by-eideasy":"Drivs av eIDEasy","log-in":"Logga in\n","this-field-is-required":"Detta fält är obligatoriskt","your-verification-code":"Din verifieringskod:",cancel:g_,"no-response-error":"Något gick fel. Kontrollera att du är ansluten till Internet och försök sedan igen.",back:f_,"no-matching-countries":"Inga matchande länder","id-card-read-timeout":"Det tog för lång tid att läsa ID-kortet. Stäng alla öppna webbläsarfönster och försök igen.","zeal-id":"ZealiD\n","freja-eid":"Freja eID","approve-id-request-on-freja-app":"Godkänn begäran om identifiering i din FREJA eID-app.","try-again":"Försök igen\n","pre-sign-confirmation":'När du har klickat på " Underteckna " kommer vi att identifiera dig med hjälp av {method} och skapa en juridiskt bindande namnunderskrift.',"login-method":"Inloggningsmetod:\n","finnish-online-bank":"Finska nätbanken\n","online-bank":"Online-bank\n",or:m_,"transaction-id":"Transaktions ID\n","sign-in-evrotrust-app":"Underteckna det här dokumentet i din Evrotrust-app.","eparaksts-eid":"eParaksts eID",varmennekortti:v_,"other-countries":"Andra länder\n","email-sms":"E-post/SMS","email-code-sent":"Ett mejl med koden har skickats till\n","sms-code-sent":"Ett SMS med koden har skickats till\n","your-code":"Din kod\n","signature-method":"Underteckningsmetod","username-or-email":"Användarnamn eller e-mail","cell-phone":"mobiltelefon","including-calling-code":'med landskod inklusive "+", exempel +35112345678',"enter-temp-security-code":"Ange tillfällig säkerhetskod","mobile-key-signing-info":"Du kan hitta mer information om processen för mobilnyckelsignering på https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Denna åtgärd är definitiv och oåterkallelig.","you-have-5-minutes-to-enter-the-code":"Du har 5 minuter på dig att ange koden innan den löper ut.",confirm:y_,"after-confirmation-following-docs-will-be-signed":"Efter bekräftelse kommer följande dokument att undertecknas:","code-by-sms":"Kod via SMS","confirmation-code-will-be-sent-to":"Bekräftelsekod sänds till:",continue:"Fortsätt",name:M_,"chave-movel":"Chave Móvel","digital-signature-pin":"Digital signaturstift","approve-sign-request-on-freja-app":"Godkänn signeringsförfrågan i din Freja eID app","no-required-software":"Du har inte den nödvändiga programvaran installerad för att slutföra denna åtgärd. Vänligen följ instruktionerna på https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":" eParaksts smart card","sign-with-my-bank":"Signera med min bank","card-number":"kortnummer","your-sms-otp-code":"Din sms otp-kod","sign-in-halcom-app":"Vänligen signera detta dokument i din Halcom-app.","sign-in-swiss-id-app":"Vänligen underteckna detta dokument i din SwissID-app.","sign-in-app":"Vänligen underteckna detta dokument i din {name} app.","be-id-card-signature-cancel-and-help":"Åtgärden avbröts.\nAvbröt du för att signeringen av det belgiska ID-kortet inte fungerar?\nSe till att det inte finns några andra USB-tokens eller smartkort anslutna till din enhet förutom själva det belgiska ID-kortet.\nSe sedan följande guide för att se till att du har all nödvändig programvara installerad: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Nödvändig programvara saknas. Se följande guide om hur du installerar de nödvändiga programvarukomponenterna: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} begär åtkomst till ditt namn och personlig information. Klicka på knappen nedan för att godkänna eID Easy vidarebefordran av denna data.","method-setup-info":"{method} inställningsinformation på {link}","i-accept-and-approve-this-doc":"I accept and approve the contents of this document.","sign-with-mitid":"Sign with MitID","log-on-with-mitid":"Log on with MitID","sign-with-verimi":"Sign with Verimi","no-ro-usb-token":"USB-token hittades inte. Kontrollera om det finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Åtgärden avbröts.\nAvbröt du för att CertSign USB-tokensigneringen inte fungerar?\nSe till att det inte finns några andra USB-tokens eller smartkort anslutna till din enhet förutom det korrekta USB tokenkortet.\nSe sedan följande guide för att se till att du har all nödvändig programvara installerad: https://www.certsign.ro/en/cd/","no-id-card":"ID-kortet har inte hittats. Kontrollera om kortet finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"{method} inställningsinformation på",here:"här","no-fr-cert-europe-usb-token":"USB-token hittades inte. Kontrollera om det finns i läsaren och starta om webbläsaren. Programvaran kan installeras från sidan https://support.certeurope.fr/telechargements/.","draw-signature":"Rita signatur","Didnt receive a code?":"Fick du ingen kod?",Resend:S_,"signature-policy":"Signaturpolicy","signer-held":"Signer held",finalizing:w_,"local-certificate":"Local Certificate","Please enter your pin2 in the Smart-ID app.":"Please enter your pin2 in the Smart-ID app.","Please enter your pin1 in the Smart-ID app.":"Please enter your pin1 in the Smart-ID app.","Click the button below if the process does not finish automatically.":"Click the button below if the process does not finish automatically.",refresh:A_,"Please wait before trying again":"Please wait before trying again","Web-eID extension is not available":"Web-eID extension is not available","User cancelled":"User cancelled","Diagnostic Info":"Diagnostisk information","approve-in-evrotrust-app":"Aprobar en la aplicación Evrotrust"},F_=Object.freeze(Object.defineProperty({__proto__:null,Resend:S_,Sign:p_,USER_REFUSED:h_,back:f_,cancel:g_,confirm:y_,country:C_,default:b_,finalizing:w_,here:"här",idcode:u_,name:M_,no:"Nej",or:m_,refresh:A_,varmennekortti:v_,yes:"Ja"},Symbol.toStringTag,{value:"Module"})),__="персональний ідентифікаційний код",k_="Країна",I_="Знак",T_="Користувач не бажав продовжувати та скасував дію",E_="Скасувати",L_="Назад",B_="Varmennekortti",D_="Підтвердити",x_="Ім'я",N_="Надіслати повторно",z_="Фіналізація",V_="освіжити",R_={"no-ee-id-card":"Посвідчення особи не знайдено. Будь ласка, перевірте, чи картка вставлена у зчитувач, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки www.id.ee.",yes:"Так",no:"Ні","phone-number":"номер телефону",idcode:__,country:k_,Sign:I_,USER_REFUSED:T_,"mobile-id":"Мобільний ідентифікатор","id-card":"Посвідчення особи","smart-id":"Smart-ID","no-lv-id-card":"Латвійського посвідчення особи не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з https://www.eparaksts.lv/en/Downloads. Для підписів переконайтеся, що плагін eParaksts для браузера встановлено та активовано.","no-lt-id-card":"Литовське посвідчення особи не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з http://www.nsc.vrm.lt/downloads.htm. Для підписів також потрібен плагін для браузера з https://github.com/open-eid/chrome-token-signing/releases","no-pt-id-card":"Посвідчення особи Португалії не знайдено. Переконайтеся, що у вас вставлено картку та встановлено програмне забезпечення з https://www.autenticacao.gov.pt/cc-aplicacao.","no-rs-id-card":"Сербського посвідчення особи не знайдено. Переконайтеся, що ви вставили картку та встановили програмне забезпечення з http://ca.mup.gov.rs/download-lat.html","no-fi-id-card":"Фінське посвідчення особи не знайдено. Будь ласка, дивіться інструкції з встановлення програмного забезпечення за адресою: https://dvv.fi/en/download-card-reader-software","no-be-id-card":"Бельгійське посвідчення особи не знайдено. Переконайтеся, що ви вставили картку та встановили програмне забезпечення з https://eid.belgium.be. Перезапустіть браузер, якщо помилка не зникає.","confirm-doc-check-and-sign":"Ви зрозуміли зміст документа та готові завершити підписання?","eparaksts-mobile":"Мобільні eParaksts","powered-by-eideasy":"Працює на платформі eIDEasy","log-in":"Увійти","this-field-is-required":"Це поле обов'язкове","your-verification-code":"Ваш код підтвердження:",cancel:E_,"no-response-error":"Щось пішло не так. Переконайтеся, що ви підключені до Інтернету, а потім спробуйте ще раз.",back:L_,"no-matching-countries":"Немає відповідних країн","id-card-read-timeout":"Зчитування посвідчення особи зайняло забагато часу. Будь ласка, закрийте всі відкриті вікна браузера та спробуйте ще раз.","zeal-id":"ZealiD","freja-eid":"FREJA eID","approve-id-request-on-freja-app":"Підтвердьте запит на ідентифікацію у вашому застосунку FREJA eID","try-again":"Спробуйте ще раз","pre-sign-confirmation":"Після натискання кнопки «Підписати» ми ідентифікуємо вас за допомогою {method} та створимо юридично обов’язковий підпис.","login-method":"Спосіб входу:","finnish-online-bank":"Фінський онлайн-банк","online-bank":"Онлайн-банк",or:"або","transaction-id":"Ідентифікатор транзакції","sign-in-evrotrust-app":"Будь ласка, підпишіть цей документ у вашому застосунку Evrotrust.","eparaksts-eid":"eParaksts eID",varmennekortti:B_,"other-countries":"Інші країни","email-sms":"Електронна пошта/SMS","email-code-sent":"Лист із кодом надіслано на адресу","sms-code-sent":"SMS-повідомлення з кодом було надіслано на","your-code":"Ваш код","signature-method":"Метод підпису","username-or-email":"Ім'я користувача або електронна адреса","cell-phone":"Мобільний телефон","including-calling-code":'з кодом країни, що містить "+", наприклад +35112345678',"enter-temp-security-code":"Введіть тимчасовий код безпеки","mobile-key-signing-info":"Більше інформації про процес підписання мобільного ключа можна знайти за адресою https://www.autenticacao.gov.pt/cmd-assinatura","signature-confirmation-irreversible-note":"Ця дія є остаточною та незворотною.","you-have-5-minutes-to-enter-the-code":"У вас є 5 хвилин, щоб ввести код, перш ніж він закінчиться.",confirm:D_,"after-confirmation-following-docs-will-be-signed":"Після підтвердження будуть підписані такі документи:","code-by-sms":"Код через SMS","confirmation-code-will-be-sent-to":"Код підтвердження буде надіслано на адресу:",continue:"Продовжити",name:x_,"chave-movel":"Chave Móvel","digital-signature-pin":"PIN-код для цифрового підпису","approve-sign-request-on-freja-app":"Схваліть запит на підпис у вашому застосунку FREJA eID","no-required-software":"У вас не встановлено необхідне програмне забезпечення для виконання цієї дії. Будь ласка, дотримуйтесь інструкцій за адресою https://eideasy.com/how-to-install-token-signing-extension-for-google-chrome/","eparaksts-smart-card":"Смарт-картка eParaksts","sign-with-my-bank":"Підписати в моєму банку","card-number":"номер картки","your-sms-otp-code":"Ваш SMS-код OTP","sign-in-halcom-app":"Будь ласка, підпишіть цей документ у вашому застосунку Halcom.","sign-in-swiss-id-app":"Будь ласка, підпишіть цей документ у вашому застосунку SwissID.","sign-in-app":"Будь ласка, підпишіть цей документ у вашому застосунку {name.}","be-id-card-signature-cancel-and-help":"Дію скасовано.\nВи скасували підпис, бо підпис бельгійського посвідчення особи не працює? Переконайтеся, що до вашого пристрою не підключено жодних інших USB-токенів або смарт-карт, окрім самого бельгійського посвідчення особи.\nПотім перегляньте наступний посібник, щоб переконатися, що у вас встановлено все необхідне програмне забезпечення: https://eideasy.com/belgian-id-software-installation","be-id-signature-no-implementation":"Відсутнє необхідне програмне забезпечення. Див. наступний посібник щодо встановлення необхідних програмних компонентів: https://eideasy.com/belgian-id-software-installation","client-request-data-confirmation":"{websiteName} {companyName} запитує доступ до вашого імені та персональних ідентифікаційних даних. Щоб авторизувати пересилання цих даних за допомогою eID, натисніть кнопку нижче.","method-setup-info":"Більше інформації про те, як розпочати роботу з {method} можна знайти тут:","i-accept-and-approve-this-doc":"Я приймаю та схвалюю зміст цього документа.","sign-with-mitid":"Підписати за допомогою MitID","log-on-with-mitid":"Увійдіть за допомогою MitID","sign-with-verimi":"Підпишіть з Verimi","no-ro-usb-token":"USB-токен не знайдено. Перевірте, чи він є у зчитувачі, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://www.certsign.ro/en/cd/.","ro-usb-token-signature-cancel-and-help":"Дію скасовано.\nВи скасували підпис, бо підпис USB-токена CertSign не працює? Переконайтеся, що до вашого пристрою не підключено жодних інших USB-токенів або смарт-карт, окрім самої правильної картки USB-токена. Потім перегляньте наступний посібник, щоб переконатися, що у вас встановлено все необхідне програмне забезпечення: https://www.certsign.ro/en/cd/","no-id-card":"Посвідчення особи не знайдено. Перевірте, чи картка вставлена у зчитувач, і перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://eideasy.com/web-eid-installation-guide","method-setup-info-2":"Ви можете знайти більше інформації про те, як розпочати роботу з {method}",here:"тут","no-fr-cert-europe-usb-token":"USB-токен не знайдено. Перевірте, чи він є у зчитувачі, та перезапустіть браузер. Програмне забезпечення можна встановити зі сторінки https://support.certeurope.fr/telechargements/.","draw-signature":"Намалюйте підпис","Didnt receive a code?":"Не отримали код?",Resend:N_,"signature-policy":"Політика підпису","signer-held":"Підписувач утримував",finalizing:z_,"local-certificate":"Місцевий сертифікат","Please enter your pin2 in the Smart-ID app.":"Будь ласка, введіть свій PIN2-код у застосунку Smart-ID.","Please enter your pin1 in the Smart-ID app.":"Будь ласка, введіть свій PIN1 у застосунку Smart-ID.","Click the button below if the process does not finish automatically.":"Натисніть кнопку нижче, якщо процес не завершиться автоматично.",refresh:V_,"Please wait before trying again":"Будь ласка, зачекайте, перш ніж спробувати ще раз","Web-eID extension is not available":"Розширення Web-eID недоступне","User cancelled":"Користувач скасував","Diagnostic Info":"Діагностична інформація","approve-in-evrotrust-app":"Схвалити в застосунку Evrotrust"},O_=Object.freeze(Object.defineProperty({__proto__:null,Resend:N_,Sign:I_,USER_REFUSED:T_,back:L_,cancel:E_,confirm:D_,country:k_,default:R_,finalizing:z_,here:"тут",idcode:__,name:x_,no:"Ні",or:"або",refresh:V_,varmennekortti:B_,yes:"Так"},Symbol.toStringTag,{value:"Module"}));function P_(){const e={},t=Object.assign({"./locales/cs.json":gw,"./locales/da.json":Ew,"./locales/de.json":qw,"./locales/en.json":lA,"./locales/es.json":AA,"./locales/et.json":RA,"./locales/fi.json":eb,"./locales/fr.json":pb,"./locales/it.json":Ib,"./locales/lt.json":Hb,"./locales/lv.json":oF,"./locales/nl.json":MF,"./locales/pl.json":NF,"./locales/pt.json":QF,"./locales/ru.json":d_,"./locales/sv.json":F_,"./locales/uk.json":O_});for(const n in t){const i=n.match(/([A-Za-z0-9-_]+)\.json$/i);if(i&&i[1]){e[i[1]]=t[n].default}}return e}const U_=zf({legacy:!1,globalInjection:!0,locale:"en",fallbackLocale:"en",messages:P_(),silentTranslationWarn:!0}),G_=mr($S,{shadowRoot:!1,props:{language:{type:String,default:"en"},countryCode:{type:String,default:"EE"},clientId:{type:String,required:!0},docId:{type:String},redirectUri:{type:String,required:!1},sandbox:Boolean,translations:{type:Object,default:()=>({})},enabledMethods:{type:[Object,String,Number],default:()=>({}),required:!0},enabledCountries:{type:[Array,String],default:()=>"all"},selectedMethod:{type:String},inputValues:{default:{},type:Object},clientInfo:{type:Object},modifyRequestSettings:{type:Function},formatFlashMessage:{type:Function},beforeMethodSelection:{type:Function,default:()=>{}},onSuccess:{type:Function,default:()=>{}},onFail:{type:Function,default:()=>{}},apiEndpoints:{type:Object,required:!0},otpEmail:{type:String},otpPhone:{type:String},isOtpSent:{type:Boolean,default:!1},emailToken:{type:String},redirect:{type:Function},debug:{type:Boolean,default:!1},remoteMonitoringEnabled:{type:Boolean,default:!1},methodsConfigFilter:{type:Function},modifyEndpointUrl:{type:Function},oauthParamState:{type:String},showBackButton:{type:Boolean,default:!0},showCountrySelect:{type:Boolean,default:!0},mode:{type:String,default:null},requireHandwrittenSignature:{type:Boolean,default:!1},otpFlow:{type:String,default:null},fieldAutocomplete:{type:Boolean,default:!1},allowMethodChange:{type:Boolean,default:!0},waitForChallengeCode:{type:Boolean,default:!1},showSignaturePolicyLink:{type:Boolean,default:!0},showPoweredByEidEasyLink:{type:Boolean,default:!0},signingCertificate:{type:String},showSignatureLevel:{type:Boolean},uiTheme:{type:Object,default:()=>({fontFamily:"Arial, sans-serif",fontSize:"16px",fontWeight:"normal",colorPrimary:"#003168",colorSecondary:"#34A853",buttonTextColor:"#f7fbff",buttonColor:"#6683A4",buttonColorHover:"#547193",inputLabelColor:"#3A3A3A"})}},configureApp(e){e.provide(Nf,U_),e.use(U_)}});customElements.define("eideasy-widget",G_)});
|