@lifesg/web-frontend-engine 1.0.0-alpha.4 → 1.0.0-alpha.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/chunks/heic2any.3b8e0e2e.js +2 -0
- package/chunks/heic2any.3b8e0e2e.js.map +1 -0
- package/chunks/index.a9be1bad.js +2 -0
- package/chunks/index.a9be1bad.js.map +1 -0
- package/chunks/index.cb84bb25.js +813 -0
- package/chunks/index.cb84bb25.js.map +1 -0
- package/chunks/index.f3b64f06.js +10 -0
- package/chunks/index.f3b64f06.js.map +1 -0
- package/cjs/chunks/heic2any.8d6aeb48.js +2 -0
- package/cjs/chunks/heic2any.8d6aeb48.js.map +1 -0
- package/cjs/chunks/index.3a31dd0d.js +813 -0
- package/cjs/chunks/index.3a31dd0d.js.map +1 -0
- package/cjs/chunks/index.42475725.js +2 -0
- package/cjs/chunks/index.42475725.js.map +1 -0
- package/cjs/chunks/index.4da6edf0.js +10 -0
- package/cjs/chunks/index.4da6edf0.js.map +1 -0
- package/cjs/index.js +1 -285
- package/cjs/index.js.map +1 -1
- package/components/fields/checkbox-group/checkbox-group.styles.d.ts +1 -1
- package/components/fields/image-upload/image-context/image-context.d.ts +14 -0
- package/components/fields/image-upload/image-context/index.d.ts +1 -0
- package/components/fields/image-upload/image-input/file-item/file-item.d.ts +11 -0
- package/components/fields/image-upload/image-input/file-item/file-item.styles.d.ts +16 -0
- package/components/fields/image-upload/image-input/file-item/index.d.ts +1 -0
- package/components/fields/image-upload/image-input/image-input.d.ts +17 -0
- package/components/fields/image-upload/image-input/image-input.styles.d.ts +8 -0
- package/components/fields/image-upload/image-input/index.d.ts +1 -0
- package/components/fields/image-upload/image-manager/image-manager.d.ts +22 -0
- package/components/fields/image-upload/image-manager/index.d.ts +2 -0
- package/components/fields/image-upload/image-review/image-editor/image-editor.d.ts +3 -0
- package/components/fields/image-upload/image-review/image-editor/image-editor.styles.d.ts +4 -0
- package/components/fields/image-upload/image-review/image-editor/index.d.ts +3 -0
- package/components/fields/image-upload/image-review/image-editor/types.d.ts +16 -0
- package/components/fields/image-upload/image-review/image-error/image-error.d.ts +8 -0
- package/components/fields/image-upload/image-review/image-error/image-error.styles.d.ts +7 -0
- package/components/fields/image-upload/image-review/image-error/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/image-prompts/image-prompts.d.ts +11 -0
- package/components/fields/image-upload/image-review/image-prompts/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/image-review.d.ts +15 -0
- package/components/fields/image-upload/image-review/image-review.styles.d.ts +31 -0
- package/components/fields/image-upload/image-review/image-thumbnails/image-thumbnails.d.ts +11 -0
- package/components/fields/image-upload/image-review/image-thumbnails/image-thumbnails.styles.d.ts +14 -0
- package/components/fields/image-upload/image-review/image-thumbnails/index.d.ts +1 -0
- package/components/fields/image-upload/image-review/index.d.ts +1 -0
- package/components/fields/image-upload/image-upload-helper.d.ts +10 -0
- package/components/fields/image-upload/image-upload.d.ts +4 -0
- package/components/fields/image-upload/index.d.ts +2 -0
- package/components/fields/image-upload/types.d.ts +65 -0
- package/components/fields/index.d.ts +1 -0
- package/components/fields/radio-button/radio-button.styles.d.ts +4 -3
- package/components/fields/radio-button/types.d.ts +5 -2
- package/components/fields/reset-button/types.d.ts +1 -0
- package/components/fields/text-field/types.d.ts +8 -0
- package/components/fields/textarea/textarea.styles.d.ts +1 -1
- package/components/frontend-engine/event/context-provider.d.ts +14 -0
- package/components/frontend-engine/event/index.d.ts +1 -0
- package/components/frontend-engine/types.d.ts +23 -19
- package/components/frontend-engine/yup/types.d.ts +2 -1
- package/components/shared/drag-upload/drag-upload.d.ts +3 -0
- package/components/shared/drag-upload/drag-upload.styles.d.ts +4 -0
- package/components/shared/drag-upload/index.d.ts +2 -0
- package/components/shared/drag-upload/types.d.ts +15 -0
- package/components/shared/error-messages.d.ts +27 -4
- package/components/shared/index.d.ts +2 -0
- package/components/shared/prompt/index.d.ts +2 -0
- package/components/shared/prompt/prompt.d.ts +2 -0
- package/components/shared/prompt/prompt.styles.d.ts +15 -0
- package/components/shared/prompt/types.d.ts +16 -0
- package/index.js +1 -285
- package/index.js.map +1 -1
- package/package.json +8 -2
- package/utils/api-client/api-client.d.ts +65 -0
- package/utils/api-client/index.d.ts +1 -0
- package/utils/file-helper.d.ts +43 -0
- package/utils/hooks/index.d.ts +1 -0
- package/utils/hooks/use-field-event.d.ts +9 -0
- package/utils/hooks/use-previous.d.ts +4 -1
- package/utils/image-helper.d.ts +34 -0
- package/utils/index.d.ts +4 -0
- package/utils/window-helper.d.ts +3 -0
package/index.js
CHANGED
|
@@ -1,286 +1,2 @@
|
|
|
1
|
-
import{jsx as e,jsxs as t,Fragment as n}from"react/jsx-runtime";import*as r from"react";import i,{useRef as a,useEffect as o,createContext as s,useState as u,useMemo as l,useContext as c,createElement as d,Fragment as f,forwardRef as h,useImperativeHandle as p,useCallback as m}from"react";import{Alert as _}from"@lifesg/react-design-system/alert";import{Text as y}from"@lifesg/react-design-system/text";import{Color as g}from"@lifesg/react-design-system/color";import v,{css as A}from"styled-components";import{renderToStaticMarkup as E}from"react-dom/server";import{Filter as b}from"@lifesg/react-design-system";import{Toggle as S}from"@lifesg/react-design-system/toggle";import{Form as M}from"@lifesg/react-design-system/form";import{Checkbox as T}from"@lifesg/react-design-system/checkbox";import{InputMultiSelect as w,InputSelect as O}from"@lifesg/react-design-system/input-select";import{RadioButton as N}from"@lifesg/react-design-system/radio-button";import{Button as C}from"@lifesg/react-design-system/button";var L=e=>"checkbox"===e.type,D=e=>e instanceof Date,$=e=>null==e;const I=e=>"object"==typeof e;var x=e=>!$(e)&&!Array.isArray(e)&&I(e)&&!D(e),k=e=>x(e)&&e.target?L(e.target)?e.target.checked:e.target.value:e,z=(e,t)=>e.has((e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e)(t)),R=e=>{const t=e.constructor&&e.constructor.prototype;return x(t)&&t.hasOwnProperty("isPrototypeOf")},Z="undefined"!=typeof window&&void 0!==window.HTMLElement&&"undefined"!=typeof document;function P(e){let t;const n=Array.isArray(e);if(e instanceof Date)t=new Date(e);else if(e instanceof Set)t=new Set(e);else{if(Z&&(e instanceof Blob||e instanceof FileList)||!n&&!x(e))return e;if(t=n?[]:{},Array.isArray(e)||R(e))for(const n in e)t[n]=P(e[n]);else t=e}return t}var F=e=>Array.isArray(e)?e.filter(Boolean):[],U=e=>void 0===e,B=(e,t,n)=>{if(!t||!x(e))return n;const r=F(t.split(/[,[\].]+?/)).reduce(((e,t)=>$(e)?e:e[t]),e);return U(r)||r===e?U(e[t])?n:e[t]:r};const V={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},H={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},Y="max",j="min",G="maxLength",W="minLength",q="pattern",K="required",J="validate",X=i.createContext(null),Q=()=>i.useContext(X),ee=e=>{const{children:t,...n}=e;return i.createElement(X.Provider,{value:n},t)};var te=(e,t,n,r=!0)=>{const i={defaultValues:t._defaultValues};for(const a in e)Object.defineProperty(i,a,{get:()=>{const i=a;return t._proxyFormState[i]!==H.all&&(t._proxyFormState[i]=!r||H.all),n&&(n[i]=!0),e[i]}});return i},ne=e=>x(e)&&!Object.keys(e).length,re=(e,t,n,r)=>{n(e);const{name:i,...a}=e;return ne(a)||Object.keys(a).length>=Object.keys(t).length||Object.keys(a).find((e=>t[e]===(!r||H.all)))},ie=e=>Array.isArray(e)?e:[e],ae=(e,t,n)=>n&&t?e===t:!e||!t||e===t||ie(e).some((e=>e&&(e.startsWith(t)||t.startsWith(e))));function oe(e){const t=i.useRef(e);t.current=e,i.useEffect((()=>{const n=!e.disabled&&t.current.subject&&t.current.subject.subscribe({next:t.current.next});return()=>{n&&n.unsubscribe()}}),[e.disabled])}var se=e=>"string"==typeof e,ue=(e,t,n,r,i)=>se(e)?(r&&t.watch.add(e),B(n,e,i)):Array.isArray(e)?e.map((e=>(r&&t.watch.add(e),B(n,e)))):(r&&(t.watchAll=!0),n);function le(e){const t=Q(),{control:n=t.control,name:r,defaultValue:a,disabled:o,exact:s}=e||{},u=i.useRef(r);u.current=r,oe({disabled:o,subject:n._subjects.values,next:e=>{ae(u.current,e.name,s)&&c(P(ue(u.current,n._names,e.values||n._formValues,!1,a)))}});const[l,c]=i.useState(n._getWatch(r,a));return i.useEffect((()=>n._removeUnmounted())),l}var ce=e=>/^\w*$/.test(e),de=e=>F(e.replace(/["|']|\]/g,"").split(/\.|\[/));function fe(e,t,n){let r=-1;const i=ce(t)?[t]:de(t),a=i.length,o=a-1;for(;++r<a;){const t=i[r];let a=n;if(r!==o){const n=e[t];a=x(n)||Array.isArray(n)?n:isNaN(+i[r+1])?{}:[]}e[t]=a,e=e[t]}return e}function he(e){const t=Q(),{name:n,control:r=t.control,shouldUnregister:a}=e,o=z(r._names.array,n),s=le({control:r,name:n,defaultValue:B(r._formValues,n,B(r._defaultValues,n,e.defaultValue)),exact:!0}),u=function(e){const t=Q(),{control:n=t.control,disabled:r,name:a,exact:o}=e||{},[s,u]=i.useState(n._formState),l=i.useRef(!0),c=i.useRef({isDirty:!1,isLoading:!1,dirtyFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1}),d=i.useRef(a);return d.current=a,oe({disabled:r,next:e=>l.current&&ae(d.current,e.name,o)&&re(e,c.current,n._updateFormState)&&u({...n._formState,...e}),subject:n._subjects.state}),i.useEffect((()=>(l.current=!0,c.current.isValid&&n._updateValid(!0),()=>{l.current=!1})),[n]),te(s,n,c.current,!1)}({control:r,name:n}),l=i.useRef(r.register(n,{...e.rules,value:s}));return i.useEffect((()=>{const e=r._options.shouldUnregister||a,t=(e,t)=>{const n=B(r._fields,e);n&&(n._f.mount=t)};if(t(n,!0),e){const e=P(B(r._options.defaultValues,n));fe(r._defaultValues,n,e),U(B(r._formValues,n))&&fe(r._formValues,n,e)}return()=>{(o?e&&!r._state.action:e)?r.unregister(n):t(n,!1)}}),[n,r,o,a]),{field:{name:n,value:s,onChange:i.useCallback((e=>l.current.onChange({target:{value:k(e),name:n},type:V.CHANGE})),[n]),onBlur:i.useCallback((()=>l.current.onBlur({target:{value:B(r._formValues,n),name:n},type:V.BLUR})),[n,r]),ref:e=>{const t=B(r._fields,n);t&&e&&(t._f.ref={focus:()=>e.focus(),select:()=>e.select(),setCustomValidity:t=>e.setCustomValidity(t),reportValidity:()=>e.reportValidity()})}},formState:u,fieldState:Object.defineProperties({},{invalid:{enumerable:!0,get:()=>!!B(u.errors,n)},isDirty:{enumerable:!0,get:()=>!!B(u.dirtyFields,n)},isTouched:{enumerable:!0,get:()=>!!B(u.touchedFields,n)},error:{enumerable:!0,get:()=>B(u.errors,n)}})}}const pe=e=>e.render(he(e));var me=(e,t,n,r,i)=>t?{...n[e],types:{...n[e]&&n[e].types?n[e].types:{},[r]:i||!0}}:{};const _e=(e,t,n)=>{for(const r of n||Object.keys(e)){const n=B(e,r);if(n){const{_f:e,...r}=n;if(e&&t(e.name)){if(e.ref.focus){e.ref.focus();break}if(e.refs&&e.refs[0].focus){e.refs[0].focus();break}}else x(r)&&_e(r,t)}}};var ye=e=>({isOnSubmit:!e||e===H.onSubmit,isOnBlur:e===H.onBlur,isOnChange:e===H.onChange,isOnAll:e===H.all,isOnTouch:e===H.onTouched}),ge=(e,t,n)=>!n&&(t.watchAll||t.watch.has(e)||[...t.watch].some((t=>e.startsWith(t)&&/^\.\w+/.test(e.slice(t.length))))),ve=(e,t,n)=>{const r=F(B(e,n));return fe(r,"root",t[n]),fe(e,n,r),e},Ae=e=>"boolean"==typeof e,Ee=e=>"file"===e.type,be=e=>"function"==typeof e,Se=e=>{if(!Z)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},Me=e=>se(e),Te=e=>"radio"===e.type,we=e=>e instanceof RegExp;const Oe={value:!1,isValid:!1},Ne={value:!0,isValid:!0};var Ce=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter((e=>e&&e.checked&&!e.disabled)).map((e=>e.value));return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!U(e[0].attributes.value)?U(e[0].value)||""===e[0].value?Ne:{value:e[0].value,isValid:!0}:Ne:Oe}return Oe};const Le={isValid:!1,value:null};var De=e=>Array.isArray(e)?e.reduce(((e,t)=>t&&t.checked&&!t.disabled?{isValid:!0,value:t.value}:e),Le):Le;function $e(e,t,n="validate"){if(Me(e)||Array.isArray(e)&&e.every(Me)||Ae(e)&&!e)return{type:n,message:Me(e)?e:"",ref:t}}var Ie=e=>x(e)&&!we(e)?e:{value:e,message:""},xe=async(e,t,n,r,i)=>{const{ref:a,refs:o,required:s,maxLength:u,minLength:l,min:c,max:d,pattern:f,validate:h,name:p,valueAsNumber:m,mount:_,disabled:y}=e._f,g=B(t,p);if(!_||y)return{};const v=o?o[0]:a,A=e=>{r&&v.reportValidity&&(v.setCustomValidity(Ae(e)?"":e||""),v.reportValidity())},E={},b=Te(a),S=L(a),M=b||S,T=(m||Ee(a))&&U(a.value)&&U(g)||Se(a)&&""===a.value||""===g||Array.isArray(g)&&!g.length,w=me.bind(null,p,n,E),O=(e,t,n,r=G,i=W)=>{const o=e?t:n;E[p]={type:e?r:i,message:o,ref:a,...w(e?r:i,o)}};if(i?!Array.isArray(g)||!g.length:s&&(!M&&(T||$(g))||Ae(g)&&!g||S&&!Ce(o).isValid||b&&!De(o).isValid)){const{value:e,message:t}=Me(s)?{value:!!s,message:s}:Ie(s);if(e&&(E[p]={type:K,message:t,ref:v,...w(K,t)},!n))return A(t),E}if(!(T||$(c)&&$(d))){let e,t;const r=Ie(d),i=Ie(c);if($(g)||isNaN(g)){const n=a.valueAsDate||new Date(g),o=e=>new Date((new Date).toDateString()+" "+e),s="time"==a.type,u="week"==a.type;se(r.value)&&g&&(e=s?o(g)>o(r.value):u?g>r.value:n>new Date(r.value)),se(i.value)&&g&&(t=s?o(g)<o(i.value):u?g<i.value:n<new Date(i.value))}else{const n=a.valueAsNumber||(g?+g:g);$(r.value)||(e=n>r.value),$(i.value)||(t=n<i.value)}if((e||t)&&(O(!!e,r.message,i.message,Y,j),!n))return A(E[p].message),E}if((u||l)&&!T&&(se(g)||i&&Array.isArray(g))){const e=Ie(u),t=Ie(l),r=!$(e.value)&&g.length>+e.value,i=!$(t.value)&&g.length<+t.value;if((r||i)&&(O(r,e.message,t.message),!n))return A(E[p].message),E}if(f&&!T&&se(g)){const{value:e,message:t}=Ie(f);if(we(e)&&!g.match(e)&&(E[p]={type:q,message:t,ref:a,...w(q,t)},!n))return A(t),E}if(h)if(be(h)){const e=$e(await h(g,t),v);if(e&&(E[p]={...e,...w(J,e.message)},!n))return A(e.message),E}else if(x(h)){let e={};for(const r in h){if(!ne(e)&&!n)break;const i=$e(await h[r](g,t),v,r);i&&(e={...i,...w(r,i.message)},A(i.message),n&&(E[p]=e))}if(!ne(e)&&(E[p]={ref:v,...e},!n))return E}return A(!0),E};function ke(e,t){const n=Array.isArray(t)?t:ce(t)?[t]:de(t),r=1===n.length?e:function(e,t){const n=t.slice(0,-1).length;let r=0;for(;r<n;)e=U(e)?r++:e[t[r++]];return e}(e,n),i=n.length-1,a=n[i];return r&&delete r[a],0!==i&&(x(r)&&ne(r)||Array.isArray(r)&&function(e){for(const t in e)if(!U(e[t]))return!1;return!0}(r))&&ke(e,n.slice(0,-1)),e}function ze(){let e=[];return{get observers(){return e},next:t=>{for(const n of e)n.next&&n.next(t)},subscribe:t=>(e.push(t),{unsubscribe:()=>{e=e.filter((e=>e!==t))}}),unsubscribe:()=>{e=[]}}}var Re=e=>$(e)||!I(e);function Ze(e,t){if(Re(e)||Re(t))return e===t;if(D(e)&&D(t))return e.getTime()===t.getTime();const n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(const i of n){const n=e[i];if(!r.includes(i))return!1;if("ref"!==i){const e=t[i];if(D(n)&&D(e)||x(n)&&x(e)||Array.isArray(n)&&Array.isArray(e)?!Ze(n,e):n!==e)return!1}}return!0}var Pe=e=>"select-multiple"===e.type,Fe=e=>Te(e)||L(e),Ue=e=>Se(e)&&e.isConnected,Be=e=>{for(const t in e)if(be(e[t]))return!0;return!1};function Ve(e,t={}){const n=Array.isArray(e);if(x(e)||n)for(const n in e)Array.isArray(e[n])||x(e[n])&&!Be(e[n])?(t[n]=Array.isArray(e[n])?[]:{},Ve(e[n],t[n])):$(e[n])||(t[n]=!0);return t}function He(e,t,n){const r=Array.isArray(e);if(x(e)||r)for(const r in e)Array.isArray(e[r])||x(e[r])&&!Be(e[r])?U(t)||Re(n[r])?n[r]=Array.isArray(e[r])?Ve(e[r],[]):{...Ve(e[r])}:He(e[r],$(t)?{}:t[r],n[r]):n[r]=!Ze(e[r],t[r]);return n}var Ye=(e,t)=>He(e,t,Ve(t)),je=(e,{valueAsNumber:t,valueAsDate:n,setValueAs:r})=>U(e)?e:t?""===e?NaN:e?+e:e:n&&se(e)?new Date(e):r?r(e):e;function Ge(e){const t=e.ref;if(!(e.refs?e.refs.every((e=>e.disabled)):t.disabled))return Ee(t)?t.files:Te(t)?De(e.refs).value:Pe(t)?[...t.selectedOptions].map((({value:e})=>e)):L(t)?Ce(e.refs).value:je(U(t.value)?e.ref.value:t.value,e)}var We=(e,t,n,r)=>{const i={};for(const n of e){const e=B(t,n);e&&fe(i,n,e._f)}return{criteriaMode:n,names:[...e],fields:i,shouldUseNativeValidation:r}},qe=e=>U(e)?e:we(e)?e.source:x(e)?we(e.value)?e.value.source:e.value:e,Ke=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate);function Je(e,t,n){const r=B(e,n);if(r||ce(n))return{error:r,name:n};const i=n.split(".");for(;i.length;){const r=i.join("."),a=B(t,r),o=B(e,r);if(a&&!Array.isArray(a)&&n!==r)return{name:n};if(o&&o.type)return{name:r,error:o};i.pop()}return{name:n}}var Xe=(e,t,n,r,i)=>!i.isOnAll&&(!n&&i.isOnTouch?!(t||e):(n?r.isOnBlur:i.isOnBlur)?!e:!(n?r.isOnChange:i.isOnChange)||e),Qe=(e,t)=>!F(B(e,t)).length&&ke(e,t);const et={mode:H.onSubmit,reValidateMode:H.onChange,shouldFocusError:!0};function tt(e={},t){let n,r={...et,...e},i={submitCount:0,isDirty:!1,isLoading:be(r.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},errors:{}},a={},o=(x(r.defaultValues)||x(r.values))&&P(r.defaultValues||r.values)||{},s=r.shouldUnregister?{}:P(o),u={action:!1,mount:!1,watch:!1},l={mount:new Set,unMount:new Set,array:new Set,watch:new Set},c=0;const d={isDirty:!1,dirtyFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},f={values:ze(),array:ze(),state:ze()},h=e.resetOptions&&e.resetOptions.keepDirtyValues,p=ye(r.mode),m=ye(r.reValidateMode),_=r.criteriaMode===H.all,y=async e=>{if(d.isValid||e){const e=r.resolver?ne((await b()).errors):await S(a,!0);e!==i.isValid&&f.state.next({isValid:e})}},g=e=>d.isValidating&&f.state.next({isValidating:e}),v=(e,t,n,r)=>{const i=B(a,e);if(i){const a=B(s,e,U(n)?B(o,e):n);U(a)||r&&r.defaultChecked||t?fe(s,e,t?a:Ge(i._f)):w(e,a),u.mount&&y()}},A=(e,t,n,r,a)=>{let s=!1,u=!1;const l={name:e};if(!n||r){d.isDirty&&(u=i.isDirty,i.isDirty=l.isDirty=M(),s=u!==l.isDirty);const n=Ze(B(o,e),t);u=B(i.dirtyFields,e),n?ke(i.dirtyFields,e):fe(i.dirtyFields,e,!0),l.dirtyFields=i.dirtyFields,s=s||d.dirtyFields&&u!==!n}if(n){const t=B(i.touchedFields,e);t||(fe(i.touchedFields,e,n),l.touchedFields=i.touchedFields,s=s||d.touchedFields&&t!==n)}return s&&a&&f.state.next(l),s?l:{}},E=(t,r,a,o)=>{const s=B(i.errors,t),u=d.isValid&&Ae(r)&&i.isValid!==r;var l;if(e.delayError&&a?(l=()=>((e,t)=>{fe(i.errors,e,t),f.state.next({errors:i.errors})})(t,a),n=e=>{clearTimeout(c),c=setTimeout(l,e)},n(e.delayError)):(clearTimeout(c),n=null,a?fe(i.errors,t,a):ke(i.errors,t)),(a?!Ze(s,a):s)||!ne(o)||u){const e={...o,...u&&Ae(r)?{isValid:r}:{},errors:i.errors,name:t};i={...i,...e},f.state.next(e)}g(!1)},b=async e=>r.resolver(s,r.context,We(e||l.mount,a,r.criteriaMode,r.shouldUseNativeValidation)),S=async(e,t,n={valid:!0})=>{for(const a in e){const o=e[a];if(o){const{_f:e,...a}=o;if(e){const a=l.array.has(e.name),u=await xe(o,s,_,r.shouldUseNativeValidation&&!t,a);if(u[e.name]&&(n.valid=!1,t))break;!t&&(B(u,e.name)?a?ve(i.errors,u,e.name):fe(i.errors,e.name,u[e.name]):ke(i.errors,e.name))}a&&await S(a,t,n)}}return n.valid},M=(e,t)=>(e&&t&&fe(s,e,t),!Ze(R(),o)),T=(e,t,n)=>ue(e,l,{...u.mount?s:U(t)?o:se(e)?{[e]:t}:t},n,t),w=(e,t,n={})=>{const r=B(a,e);let i=t;if(r){const n=r._f;n&&(!n.disabled&&fe(s,e,je(t,n)),i=Se(n.ref)&&$(t)?"":t,Pe(n.ref)?[...n.ref.options].forEach((e=>e.selected=i.includes(e.value))):n.refs?L(n.ref)?n.refs.length>1?n.refs.forEach((e=>(!e.defaultChecked||!e.disabled)&&(e.checked=Array.isArray(i)?!!i.find((t=>t===e.value)):i===e.value))):n.refs[0]&&(n.refs[0].checked=!!i):n.refs.forEach((e=>e.checked=e.value===i)):Ee(n.ref)?n.ref.value="":(n.ref.value=i,n.ref.type||f.values.next({name:e,values:{...s}})))}(n.shouldDirty||n.shouldTouch)&&A(e,i,n.shouldTouch,n.shouldDirty,!0),n.shouldValidate&&I(e)},O=(e,t,n)=>{for(const r in t){const i=t[r],o=`${e}.${r}`,s=B(a,o);!l.array.has(e)&&Re(i)&&(!s||s._f)||D(i)?w(o,i,n):O(o,i,n)}},N=(e,n,r={})=>{const c=B(a,e),h=l.array.has(e),p=P(n);fe(s,e,p),h?(f.array.next({name:e,values:{...s}}),(d.isDirty||d.dirtyFields)&&r.shouldDirty&&f.state.next({name:e,dirtyFields:Ye(o,s),isDirty:M(e,p)})):!c||c._f||$(p)?w(e,p,r):O(e,p,r),ge(e,l)&&f.state.next({...i}),f.values.next({name:e,values:{...s}}),!u.mount&&t()},C=async e=>{const t=e.target;let o=t.name,u=!0;const c=B(a,o);if(c){let h,v;const M=t.type?Ge(c._f):k(e),T=e.type===V.BLUR||e.type===V.FOCUS_OUT,w=!Ke(c._f)&&!r.resolver&&!B(i.errors,o)&&!c._f.deps||Xe(T,B(i.touchedFields,o),i.isSubmitted,m,p),O=ge(o,l,T);fe(s,o,M),T?(c._f.onBlur&&c._f.onBlur(e),n&&n(0)):c._f.onChange&&c._f.onChange(e);const N=A(o,M,T,!1),C=!ne(N)||O;if(!T&&f.values.next({name:o,type:e.type,values:{...s}}),w)return d.isValid&&y(),C&&f.state.next({name:o,...O?{}:N});if(!T&&O&&f.state.next({...i}),g(!0),r.resolver){const{errors:e}=await b([o]),t=Je(i.errors,a,o),n=Je(e,a,t.name||o);h=n.error,o=n.name,v=ne(e)}else h=(await xe(c,s,_,r.shouldUseNativeValidation))[o],u=isNaN(M)||M===B(s,o,M),u&&(h?v=!1:d.isValid&&(v=await S(a,!0)));u&&(c._f.deps&&I(c._f.deps),E(o,v,h,N))}},I=async(e,t={})=>{let n,o;const s=ie(e);if(g(!0),r.resolver){const t=await(async e=>{const{errors:t}=await b();if(e)for(const n of e){const e=B(t,n);e?fe(i.errors,n,e):ke(i.errors,n)}else i.errors=t;return t})(U(e)?e:s);n=ne(t),o=e?!s.some((e=>B(t,e))):n}else e?(o=(await Promise.all(s.map((async e=>{const t=B(a,e);return await S(t&&t._f?{[e]:t}:t)})))).every(Boolean),(o||i.isValid)&&y()):o=n=await S(a);return f.state.next({...!se(e)||d.isValid&&n!==i.isValid?{}:{name:e},...r.resolver||!e?{isValid:n}:{},errors:i.errors,isValidating:!1}),t.shouldFocus&&!o&&_e(a,(e=>e&&B(i.errors,e)),e?s:l.mount),o},R=e=>{const t={...o,...u.mount?s:{}};return U(e)?t:se(e)?B(t,e):e.map((e=>B(t,e)))},Y=(e,t)=>({invalid:!!B((t||i).errors,e),isDirty:!!B((t||i).dirtyFields,e),isTouched:!!B((t||i).touchedFields,e),error:B((t||i).errors,e)}),j=(e,t={})=>{for(const n of e?ie(e):l.mount)l.mount.delete(n),l.array.delete(n),t.keepValue||(ke(a,n),ke(s,n)),!t.keepError&&ke(i.errors,n),!t.keepDirty&&ke(i.dirtyFields,n),!t.keepTouched&&ke(i.touchedFields,n),!r.shouldUnregister&&!t.keepDefaultValue&&ke(o,n);f.values.next({values:{...s}}),f.state.next({...i,...t.keepDirty?{isDirty:M()}:{}}),!t.keepIsValid&&y()},G=(e,t={})=>{let n=B(a,e);const i=Ae(t.disabled);return fe(a,e,{...n||{},_f:{...n&&n._f?n._f:{ref:{name:e}},name:e,mount:!0,...t}}),l.mount.add(e),n?i&&fe(s,e,t.disabled?void 0:B(s,e,Ge(n._f))):v(e,!0,t.value),{...i?{disabled:t.disabled}:{},...r.shouldUseNativeValidation?{required:!!t.required,min:qe(t.min),max:qe(t.max),minLength:qe(t.minLength),maxLength:qe(t.maxLength),pattern:qe(t.pattern)}:{},name:e,onChange:C,onBlur:C,ref:i=>{if(i){G(e,t),n=B(a,e);const r=U(i.value)&&i.querySelectorAll&&i.querySelectorAll("input,select,textarea")[0]||i,s=Fe(r),u=n._f.refs||[];if(s?u.find((e=>e===r)):r===n._f.ref)return;fe(a,e,{_f:{...n._f,...s?{refs:[...u.filter(Ue),r,...Array.isArray(B(o,e))?[{}]:[]],ref:{type:r.type,name:e}}:{ref:r}}}),v(e,!1,void 0,r)}else n=B(a,e,{}),n._f&&(n._f.mount=!1),(r.shouldUnregister||t.shouldUnregister)&&(!z(l.array,e)||!u.action)&&l.unMount.add(e)}}},W=()=>r.shouldFocusError&&_e(a,(e=>e&&B(i.errors,e)),l.mount),q=(n,r={})=>{const c=n||o,p=P(c),m=n&&!ne(n)?p:o;if(r.keepDefaultValues||(o=c),!r.keepValues){if(r.keepDirtyValues||h)for(const e of l.mount)B(i.dirtyFields,e)?fe(m,e,B(s,e)):N(e,B(m,e));else{if(Z&&U(n))for(const e of l.mount){const t=B(a,e);if(t&&t._f){const e=Array.isArray(t._f.refs)?t._f.refs[0]:t._f.ref;if(Se(e)){const t=e.closest("form");if(t){t.reset();break}}}}a={}}s=e.shouldUnregister?r.keepDefaultValues?P(o):{}:p,f.array.next({values:{...m}}),f.values.next({values:{...m}})}l={mount:new Set,unMount:new Set,array:new Set,watch:new Set,watchAll:!1,focus:""},!u.mount&&t(),u.mount=!d.isValid||!!r.keepIsValid,u.watch=!!e.shouldUnregister,f.state.next({submitCount:r.keepSubmitCount?i.submitCount:0,isDirty:r.keepDirty?i.isDirty:!(!r.keepDefaultValues||Ze(n,o)),isSubmitted:!!r.keepIsSubmitted&&i.isSubmitted,dirtyFields:r.keepDirtyValues?i.dirtyFields:r.keepDefaultValues&&n?Ye(o,n):{},touchedFields:r.keepTouched?i.touchedFields:{},errors:r.keepErrors?i.errors:{},isSubmitting:!1,isSubmitSuccessful:!1})},K=(e,t)=>q(be(e)?e(s):e,t);return{control:{register:G,unregister:j,getFieldState:Y,_executeSchema:b,_getWatch:T,_getDirty:M,_updateValid:y,_removeUnmounted:()=>{for(const e of l.unMount){const t=B(a,e);t&&(t._f.refs?t._f.refs.every((e=>!Ue(e))):!Ue(t._f.ref))&&j(e)}l.unMount=new Set},_updateFieldArray:(e,t=[],n,r,l=!0,c=!0)=>{if(r&&n){if(u.action=!0,c&&Array.isArray(B(a,e))){const t=n(B(a,e),r.argA,r.argB);l&&fe(a,e,t)}if(c&&Array.isArray(B(i.errors,e))){const t=n(B(i.errors,e),r.argA,r.argB);l&&fe(i.errors,e,t),Qe(i.errors,e)}if(d.touchedFields&&c&&Array.isArray(B(i.touchedFields,e))){const t=n(B(i.touchedFields,e),r.argA,r.argB);l&&fe(i.touchedFields,e,t)}d.dirtyFields&&(i.dirtyFields=Ye(o,s)),f.state.next({name:e,isDirty:M(e,t),dirtyFields:i.dirtyFields,errors:i.errors,isValid:i.isValid})}else fe(s,e,t)},_getFieldArray:t=>F(B(u.mount?s:o,t,e.shouldUnregister?B(o,t,[]):[])),_reset:q,_resetDefaultValues:()=>be(r.defaultValues)&&r.defaultValues().then((e=>{K(e,r.resetOptions),f.state.next({isLoading:!1})})),_updateFormState:e=>{i={...i,...e}},_subjects:f,_proxyFormState:d,get _fields(){return a},get _formValues(){return s},get _state(){return u},set _state(e){u=e},get _defaultValues(){return o},get _names(){return l},set _names(e){l=e},get _formState(){return i},set _formState(e){i=e},get _options(){return r},set _options(e){r={...r,...e}}},trigger:I,register:G,handleSubmit:(e,t)=>async n=>{n&&(n.preventDefault&&n.preventDefault(),n.persist&&n.persist());let o=P(s);if(f.state.next({isSubmitting:!0}),r.resolver){const{errors:e,values:t}=await b();i.errors=e,o=t}else await S(a);ke(i.errors,"root"),ne(i.errors)?(f.state.next({errors:{}}),await e(o,n)):(t&&await t({...i.errors},n),W(),setTimeout(W)),f.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:ne(i.errors),submitCount:i.submitCount+1,errors:i.errors})},watch:(e,t)=>be(e)?f.values.subscribe({next:n=>e(T(void 0,t),n)}):T(e,t,!0),setValue:N,getValues:R,reset:K,resetField:(e,t={})=>{B(a,e)&&(U(t.defaultValue)?N(e,B(o,e)):(N(e,t.defaultValue),fe(o,e,t.defaultValue)),t.keepTouched||ke(i.touchedFields,e),t.keepDirty||(ke(i.dirtyFields,e),i.isDirty=t.defaultValue?M(e,B(o,e)):M()),t.keepError||(ke(i.errors,e),d.isValid&&y()),f.state.next({...i}))},clearErrors:e=>{e&&ie(e).forEach((e=>ke(i.errors,e))),f.state.next({errors:e?i.errors:{}})},unregister:j,setError:(e,t,n)=>{const r=(B(a,e,{_f:{}})._f||{}).ref;fe(i.errors,e,{...t,ref:r}),f.state.next({name:e,errors:i.errors,isValid:!1}),n&&n.shouldFocus&&r&&r.focus&&r.focus()},setFocus:(e,t={})=>{const n=B(a,e),r=n&&n._f;if(r){const e=r.refs?r.refs[0]:r.ref;e.focus&&(e.focus(),t.shouldSelect&&e.select())}},getFieldState:Y}}var nt=function(e,t,n){if(e&&"reportValidity"in e){var r=B(n,t);e.setCustomValidity(r&&r.message||""),e.reportValidity()}},rt=function(e,t){var n=function(n){var r=t.fields[n];r&&r.ref&&"reportValidity"in r.ref?nt(r.ref,n,e):r.refs&&r.refs.forEach((function(t){return nt(t,n,e)}))};for(var r in t.fields)n(r)},it=function(e,t){t.shouldUseNativeValidation&&rt(e,t);var n={};for(var r in e){var i=B(t.fields,r);fe(n,r,Object.assign(e[r],{ref:i&&i.ref}))}return n},at="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function ot(e){var t=e.default;if("function"==typeof t){var n=function(){return t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach((function(t){var r=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(n,t,r.get?r:{enumerable:!0,get:function(){return e[t]}})})),n}var st=Object.prototype;var ut=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||st)};var lt=function(e,t){return function(n){return e(t(n))}}(Object.keys,Object),ct=ut,dt=lt,ft=Object.prototype.hasOwnProperty;var ht=function(e){if(!ct(e))return dt(e);var t=[];for(var n in Object(e))ft.call(e,n)&&"constructor"!=n&&t.push(n);return t},pt="object"==typeof at&&at&&at.Object===Object&&at,mt=pt,_t="object"==typeof self&&self&&self.Object===Object&&self,yt=mt||_t||Function("return this")(),gt=yt.Symbol,vt=gt,At=Object.prototype,Et=At.hasOwnProperty,bt=At.toString,St=vt?vt.toStringTag:void 0;var Mt=function(e){var t=Et.call(e,St),n=e[St];try{e[St]=void 0;var r=!0}catch(e){}var i=bt.call(e);return r&&(t?e[St]=n:delete e[St]),i},Tt=Object.prototype.toString;var wt=Mt,Ot=function(e){return Tt.call(e)},Nt=gt?gt.toStringTag:void 0;var Ct=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Nt&&Nt in Object(e)?wt(e):Ot(e)};var Lt=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},Dt=Ct,$t=Lt;var It,xt=function(e){if(!$t(e))return!1;var t=Dt(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t},kt=yt["__core-js_shared__"],zt=(It=/[^.]+$/.exec(kt&&kt.keys&&kt.keys.IE_PROTO||""))?"Symbol(src)_1."+It:"";var Rt=function(e){return!!zt&&zt in e},Zt=Function.prototype.toString;var Pt=function(e){if(null!=e){try{return Zt.call(e)}catch(e){}try{return e+""}catch(e){}}return""},Ft=xt,Ut=Rt,Bt=Lt,Vt=Pt,Ht=/^\[object .+?Constructor\]$/,Yt=Function.prototype,jt=Object.prototype,Gt=Yt.toString,Wt=jt.hasOwnProperty,qt=RegExp("^"+Gt.call(Wt).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var Kt=function(e,t){return null==e?void 0:e[t]},Jt=function(e){return!(!Bt(e)||Ut(e))&&(Ft(e)?qt:Ht).test(Vt(e))},Xt=Kt;var Qt=function(e,t){var n=Xt(e,t);return Jt(n)?n:void 0},en=Qt(yt,"DataView"),tn=Qt(yt,"Map"),nn=en,rn=tn,an=Qt(yt,"Promise"),on=Qt(yt,"Set"),sn=Qt(yt,"WeakMap"),un=Ct,ln=Pt,cn="[object Map]",dn="[object Promise]",fn="[object Set]",hn="[object WeakMap]",pn="[object DataView]",mn=ln(nn),_n=ln(rn),yn=ln(an),gn=ln(on),vn=ln(sn),An=un;(nn&&An(new nn(new ArrayBuffer(1)))!=pn||rn&&An(new rn)!=cn||an&&An(an.resolve())!=dn||on&&An(new on)!=fn||sn&&An(new sn)!=hn)&&(An=function(e){var t=un(e),n="[object Object]"==t?e.constructor:void 0,r=n?ln(n):"";if(r)switch(r){case mn:return pn;case _n:return cn;case yn:return dn;case gn:return fn;case vn:return hn}return t});var En=An;var bn=function(e){return null!=e&&"object"==typeof e},Sn=Ct,Mn=bn;var Tn=function(e){return Mn(e)&&"[object Arguments]"==Sn(e)},wn=bn,On=Object.prototype,Nn=On.hasOwnProperty,Cn=On.propertyIsEnumerable,Ln=Tn(function(){return arguments}())?Tn:function(e){return wn(e)&&Nn.call(e,"callee")&&!Cn.call(e,"callee")},Dn=Array.isArray;var $n=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991},In=xt,xn=$n;var kn=function(e){return null!=e&&xn(e.length)&&!In(e)},zn={exports:{}};var Rn=function(){return!1};!function(e,t){var n=yt,r=Rn,i=t&&!t.nodeType&&t,a=i&&e&&!e.nodeType&&e,o=a&&a.exports===i?n.Buffer:void 0,s=(o?o.isBuffer:void 0)||r;e.exports=s}(zn,zn.exports);var Zn=Ct,Pn=$n,Fn=bn,Un={};Un["[object Float32Array]"]=Un["[object Float64Array]"]=Un["[object Int8Array]"]=Un["[object Int16Array]"]=Un["[object Int32Array]"]=Un["[object Uint8Array]"]=Un["[object Uint8ClampedArray]"]=Un["[object Uint16Array]"]=Un["[object Uint32Array]"]=!0,Un["[object Arguments]"]=Un["[object Array]"]=Un["[object ArrayBuffer]"]=Un["[object Boolean]"]=Un["[object DataView]"]=Un["[object Date]"]=Un["[object Error]"]=Un["[object Function]"]=Un["[object Map]"]=Un["[object Number]"]=Un["[object Object]"]=Un["[object RegExp]"]=Un["[object Set]"]=Un["[object String]"]=Un["[object WeakMap]"]=!1;var Bn=function(e){return Fn(e)&&Pn(e.length)&&!!Un[Zn(e)]};var Vn=function(e){return function(t){return e(t)}},Hn={exports:{}};!function(e,t){var n=pt,r=t&&!t.nodeType&&t,i=r&&e&&!e.nodeType&&e,a=i&&i.exports===r&&n.process,o=function(){try{var e=i&&i.require&&i.require("util").types;return e||a&&a.binding&&a.binding("util")}catch(e){}}();e.exports=o}(Hn,Hn.exports);var Yn=Bn,jn=Vn,Gn=Hn.exports,Wn=Gn&&Gn.isTypedArray,qn=Wn?jn(Wn):Yn,Kn=ht,Jn=En,Xn=Ln,Qn=Dn,er=kn,tr=zn.exports,nr=ut,rr=qn,ir=Object.prototype.hasOwnProperty;var ar=function(e){if(null==e)return!0;if(er(e)&&(Qn(e)||"string"==typeof e||"function"==typeof e.splice||tr(e)||rr(e)||Xn(e)))return!e.length;var t=Jn(e);if("[object Map]"==t||"[object Set]"==t)return!e.size;if(nr(e))return!Kn(e).length;for(var n in e)if(ir.call(e,n))return!1;return!0},or=Object.prototype.hasOwnProperty;function sr(e,t,n){for(n of e.keys())if(ur(n,t))return n}function ur(e,t){var n,r,i;if(e===t)return!0;if(e&&t&&(n=e.constructor)===t.constructor){if(n===Date)return e.getTime()===t.getTime();if(n===RegExp)return e.toString()===t.toString();if(n===Array){if((r=e.length)===t.length)for(;r--&&ur(e[r],t[r]););return-1===r}if(n===Set){if(e.size!==t.size)return!1;for(r of e){if((i=r)&&"object"==typeof i&&!(i=sr(t,i)))return!1;if(!t.has(i))return!1}return!0}if(n===Map){if(e.size!==t.size)return!1;for(r of e){if((i=r[0])&&"object"==typeof i&&!(i=sr(t,i)))return!1;if(!ur(r[1],t.get(i)))return!1}return!0}if(n===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(n===DataView){if((r=e.byteLength)===t.byteLength)for(;r--&&e.getInt8(r)===t.getInt8(r););return-1===r}if(ArrayBuffer.isView(e)){if((r=e.byteLength)===t.byteLength)for(;r--&&e[r]===t[r];);return-1===r}if(!n||"object"==typeof e){for(n in r=0,e){if(or.call(e,n)&&++r&&!or.call(t,n))return!1;if(!(n in t)||!ur(e[n],t[n]))return!1}return Object.keys(t).length===r}}return e!=e&&t!=t}function lr(e){return null==e||/^[sbn]/.test(typeof e)}function cr(e){var t=r.useRef(e),n=r.useRef(0);return ur(e,t.current)||(t.current=e,n.current+=1),r.useMemo((function(){return t.current}),[n.current])}function dr(e,t){return"production"!==process.env.NODE_ENV&&function(e){if(!e||!e.length)throw new Error("useDeepCompareEffect should not be used with no dependencies. Use React.useEffect instead.");if(e.every(lr))throw new Error("useDeepCompareEffect should not be used with dependencies that are all primitive values. Use React.useEffect instead.")}(t),r.useEffect(e,cr(t))}function fr(e,t){return r.useEffect(e,cr(t))}
|
|
2
|
-
//! @version @js-joda/core - 5.5.3
|
|
3
|
-
//! @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors
|
|
4
|
-
//! @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
5
|
-
//! @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
6
|
-
/**
|
|
7
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
8
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
9
|
-
*/function hr(e,t,n){function r(e){Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=(new Error).stack,this.message=e,t&&t.apply(this,arguments),this.toString=function(){return this.name+": "+this.message}}return void 0===n&&(n=Error),r.prototype=Object.create(n.prototype),r.prototype.name=e,r.prototype.constructor=r,r}var pr=hr("DateTimeException",(function(e,t){void 0===t&&(t=null);var n=e||this.name;null!==t&&t instanceof Error&&(n+="\n-------\nCaused by: "+t.stack+"\n-------\n");this.message=n})),mr=hr("DateTimeParseException",(function(e,t,n,r){void 0===t&&(t="");void 0===n&&(n=0);void 0===r&&(r=null);var i=e||this.name;i+=": "+t+", at index: "+n,null!==r&&r instanceof Error&&(i+="\n-------\nCaused by: "+r.stack+"\n-------\n");this.message=i,this.parsedString=function(){return t},this.errorIndex=function(){return n}})),_r=hr("UnsupportedTemporalTypeException",null,pr),yr=hr("ArithmeticException"),gr=hr("IllegalArgumentException"),vr=hr("IllegalStateException"),Ar=hr("NullPointerException");function Er(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,br(e,t)}function br(e,t){return br=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},br(e,t)}function Sr(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}
|
|
10
|
-
/**
|
|
11
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
12
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
13
|
-
*/function Mr(e,t,n){if(!e)throw n?new n(t):new Error(t)}function Tr(e,t){if(null==e)throw new Ar(t+" must not be null");return e}function wr(e,t,n){if(!(e instanceof t))throw new gr(n+" must be an instance of "+(t.name?t.name:t)+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""));return e}function Or(e){throw new TypeError('abstract method "'+e+'" is not implemented')}var Nr=Object.freeze({__proto__:null,assert:Mr,requireNonNull:Tr,requireInstance:wr,abstractMethodFail:Or}),Cr=9007199254740991,Lr=-9007199254740991,Dr=function(){function e(){}return e.intDiv=function(t,n){var r=t/n;return r=e.roundDown(r),e.safeZero(r)},e.intMod=function(t,n){var r=t-e.intDiv(t,n)*n;return r=e.roundDown(r),e.safeZero(r)},e.roundDown=function(e){return e<0?Math.ceil(e):Math.floor(e)},e.floorDiv=function(t,n){var r=Math.floor(t/n);return e.safeZero(r)},e.floorMod=function(t,n){var r=t-e.floorDiv(t,n)*n;return e.safeZero(r)},e.safeAdd=function(t,n){if(e.verifyInt(t),e.verifyInt(n),0===t)return e.safeZero(n);if(0===n)return e.safeZero(t);var r=e.safeToInt(t+n);if(r===t||r===n)throw new yr("Invalid addition beyond MAX_SAFE_INTEGER!");return r},e.safeSubtract=function(t,n){return e.verifyInt(t),e.verifyInt(n),0===t&&0===n?0:0===t?e.safeZero(-1*n):0===n?e.safeZero(t):e.safeToInt(t-n)},e.safeMultiply=function(t,n){if(e.verifyInt(t),e.verifyInt(n),1===t)return e.safeZero(n);if(1===n)return e.safeZero(t);if(0===t||0===n)return 0;var r=e.safeToInt(t*n);if(r/n!==t||t===Lr&&-1===n||n===Lr&&-1===t)throw new yr("Multiplication overflows: "+t+" * "+n);return r},e.parseInt=function(e){function t(t){return e.apply(this,arguments)}return t.toString=function(){return e.toString()},t}((function(t){var n=parseInt(t);return e.safeToInt(n)})),e.safeToInt=function(t){return e.verifyInt(t),e.safeZero(t)},e.verifyInt=function(e){if(null==e)throw new yr("Invalid value: '"+e+"', using null or undefined as argument");if(isNaN(e))throw new yr("Invalid int value, using NaN as argument");if(e%1!=0)throw new yr("Invalid value: '"+e+"' is a float");if(e>Cr||e<Lr)throw new yr("Calculation overflows an int: "+e)},e.safeZero=function(e){return 0===e?0:+e},e.compareNumbers=function(e,t){return e<t?-1:e>t?1:0},e.smi=function(e){return e>>>1&1073741824|3221225471&e},e.hash=function(t){if(t!=t||t===1/0)return 0;for(var n=t;t>4294967295;)n^=t/=4294967295;return e.smi(n)},e.hashCode=function(){for(var t=17,n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];for(var a=0,o=r;a<o.length;a++){var s=o[a];t=(t<<5)-t+e.hash(s)}return e.hash(t)},e}();
|
|
14
|
-
/**
|
|
15
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
16
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
17
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
18
|
-
*/Dr.MAX_SAFE_INTEGER=Cr,Dr.MIN_SAFE_INTEGER=Lr;
|
|
19
|
-
/**
|
|
20
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
21
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
22
|
-
*/
|
|
23
|
-
var $r=function(){function e(e){this._name=e}var t=e.prototype;return t.equals=function(e){return this===e},t.toString=function(){return this._name},t.toJSON=function(){return this.toString()},e}(),Ir=function(){function e(){}var t=e.prototype;return t.get=function(e){Or("get")},t.units=function(){Or("units")},t.addTo=function(e){Or("addTo")},t.subtractFrom=function(e){Or("subtractFrom")},e}();
|
|
24
|
-
/*
|
|
25
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
26
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
27
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
28
|
-
*/"undefined"!=typeof Symbol&&Symbol.toPrimitive&&(Ir.prototype[Symbol.toPrimitive]=function(e){if("number"!==e)return this.toString();throw new TypeError("A conversion from TemporalAmount to a number is not allowed. To compare use the methods .equals(), .compareTo(), .isBefore() or one that is more suitable to your use case.")})
|
|
29
|
-
/*
|
|
30
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
31
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
32
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
33
|
-
*/;var xr=function(){function e(){}var t=e.prototype;return t.duration=function(){Or("duration")},t.isDurationEstimated=function(){Or("isDurationEstimated")},t.isDateBased=function(){Or("isDateBased")},t.isTimeBased=function(){Or("isTimeBased")},t.isSupportedBy=function(e){Or("isSupportedBy")},t.addTo=function(e,t){Or("addTo")},t.between=function(e,t){Or("between")},e}(),kr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._seconds=Dr.safeToInt(t),r._nanos=Dr.safeToInt(n),r}Er(t,e),t.ofDays=function(e){return t._create(Dr.safeMultiply(e,Ea.SECONDS_PER_DAY),0)},t.ofHours=function(e){return t._create(Dr.safeMultiply(e,Ea.SECONDS_PER_HOUR),0)},t.ofMinutes=function(e){return t._create(Dr.safeMultiply(e,Ea.SECONDS_PER_MINUTE),0)},t.ofSeconds=function(e,n){void 0===n&&(n=0);var r=Dr.safeAdd(e,Dr.floorDiv(n,Ea.NANOS_PER_SECOND)),i=Dr.floorMod(n,Ea.NANOS_PER_SECOND);return t._create(r,i)},t.ofMillis=function(e){var n=Dr.intDiv(e,1e3),r=Dr.intMod(e,1e3);return r<0&&(r+=1e3,n--),t._create(n,1e6*r)},t.ofNanos=function(e){var t=Dr.intDiv(e,Ea.NANOS_PER_SECOND),n=Dr.intMod(e,Ea.NANOS_PER_SECOND);return n<0&&(n+=Ea.NANOS_PER_SECOND,t--),this._create(t,n)},t.of=function(e,n){return t.ZERO.plus(e,n)},t.from=function(e){Tr(e,"amount"),wr(e,Ir);var n=t.ZERO;return e.units().forEach((function(t){n=n.plus(e.get(t),t)})),n},t.between=function(e,t){Tr(e,"startInclusive"),Tr(t,"endExclusive");var n=e.until(t,Rr.SECONDS),r=0;if(e.isSupported(Fr.NANO_OF_SECOND)&&t.isSupported(Fr.NANO_OF_SECOND))try{var i=e.getLong(Fr.NANO_OF_SECOND);if(r=t.getLong(Fr.NANO_OF_SECOND)-i,n>0&&r<0)r+=Ea.NANOS_PER_SECOND;else if(n<0&&r>0)r-=Ea.NANOS_PER_SECOND;else if(0===n&&0!==r){var a=t.with(Fr.NANO_OF_SECOND,i);n=e.until(a,Rr.SECONDS)}}catch(e){}return this.ofSeconds(n,r)},t.parse=function(e){Tr(e,"text");var n=new RegExp("([-+]?)P(?:([-+]?[0-9]+)D)?(T(?:([-+]?[0-9]+)H)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)(?:[.,]([0-9]{0,9}))?S)?)?","i").exec(e);if(null!==n&&"T"===n[3]==!1){var r="-"===n[1],i=n[2],a=n[4],o=n[5],s=n[6],u=n[7];if(null!=i||null!=a||null!=o||null!=s){var l=t._parseNumber(e,i,Ea.SECONDS_PER_DAY,"days"),c=t._parseNumber(e,a,Ea.SECONDS_PER_HOUR,"hours"),d=t._parseNumber(e,o,Ea.SECONDS_PER_MINUTE,"minutes"),f=t._parseNumber(e,s,1,"seconds"),h=null!=s&&"-"===s.charAt(0),p=t._parseFraction(e,u,h?-1:1);try{return t._create(r,l,c,d,f,p)}catch(t){throw new mr("Text cannot be parsed to a Duration: overflow",e,0,t)}}}throw new mr("Text cannot be parsed to a Duration",e,0)},t._parseNumber=function(e,t,n,r){if(null==t)return 0;try{return"+"===t[0]&&(t=t.substring(1)),Dr.safeMultiply(parseFloat(t),n)}catch(t){throw new mr("Text cannot be parsed to a Duration: "+r,e,0,t)}},t._parseFraction=function(e,t,n){return null==t||0===t.length?0:(t=(t+"000000000").substring(0,9),parseFloat(t)*n)},t._create=function(){return arguments.length<=2?t._createSecondsNanos(arguments[0],arguments[1]):t._createNegateDaysHoursMinutesSecondsNanos(arguments[0],arguments[1],arguments[2],arguments[3],arguments[4],arguments[5])},t._createNegateDaysHoursMinutesSecondsNanos=function(e,n,r,i,a,o){var s=Dr.safeAdd(n,Dr.safeAdd(r,Dr.safeAdd(i,a)));return e?t.ofSeconds(s,o).negated():t.ofSeconds(s,o)},t._createSecondsNanos=function(e,n){return void 0===e&&(e=0),void 0===n&&(n=0),0===e&&0===n?t.ZERO:new t(e,n)};var n=t.prototype;return n.get=function(e){if(e===Rr.SECONDS)return this._seconds;if(e===Rr.NANOS)return this._nanos;throw new _r("Unsupported unit: "+e)},n.units=function(){return[Rr.SECONDS,Rr.NANOS]},n.isZero=function(){return 0===this._seconds&&0===this._nanos},n.isNegative=function(){return this._seconds<0},n.seconds=function(){return this._seconds},n.nano=function(){return this._nanos},n.withSeconds=function(e){return t._create(e,this._nanos)},n.withNanos=function(e){return Fr.NANO_OF_SECOND.checkValidIntValue(e),t._create(this._seconds,e)},n.plusDuration=function(e){return Tr(e,"duration"),this.plus(e.seconds(),e.nano())},n.plus=function(e,t){return 1===arguments.length?this.plusDuration(e):2===arguments.length&&t instanceof xr?this.plusAmountUnit(e,t):this.plusSecondsNanos(e,t)},n.plusAmountUnit=function(e,t){if(Tr(e,"amountToAdd"),Tr(t,"unit"),t===Rr.DAYS)return this.plusSecondsNanos(Dr.safeMultiply(e,Ea.SECONDS_PER_DAY),0);if(t.isDurationEstimated())throw new _r("Unit must not have an estimated duration");if(0===e)return this;if(t instanceof Rr){switch(t){case Rr.NANOS:return this.plusNanos(e);case Rr.MICROS:return this.plusSecondsNanos(1e3*Dr.intDiv(e,1e9),1e3*Dr.intMod(e,1e9));case Rr.MILLIS:return this.plusMillis(e);case Rr.SECONDS:return this.plusSeconds(e)}return this.plusSecondsNanos(Dr.safeMultiply(t.duration().seconds(),e),0)}var n=t.duration().multipliedBy(e);return this.plusSecondsNanos(n.seconds(),n.nano())},n.plusDays=function(e){return this.plusSecondsNanos(Dr.safeMultiply(e,Ea.SECONDS_PER_DAY),0)},n.plusHours=function(e){return this.plusSecondsNanos(Dr.safeMultiply(e,Ea.SECONDS_PER_HOUR),0)},n.plusMinutes=function(e){return this.plusSecondsNanos(Dr.safeMultiply(e,Ea.SECONDS_PER_MINUTE),0)},n.plusSeconds=function(e){return this.plusSecondsNanos(e,0)},n.plusMillis=function(e){return this.plusSecondsNanos(Dr.intDiv(e,1e3),1e6*Dr.intMod(e,1e3))},n.plusNanos=function(e){return this.plusSecondsNanos(0,e)},n.plusSecondsNanos=function(e,n){if(Tr(e,"secondsToAdd"),Tr(n,"nanosToAdd"),0===e&&0===n)return this;var r=Dr.safeAdd(this._seconds,e);r=Dr.safeAdd(r,Dr.intDiv(n,Ea.NANOS_PER_SECOND)),n=Dr.intMod(n,Ea.NANOS_PER_SECOND);var i=Dr.safeAdd(this._nanos,n);return t.ofSeconds(r,i)},n.minus=function(e,t){return 1===arguments.length?this.minusDuration(e):this.minusAmountUnit(e,t)},n.minusDuration=function(e){Tr(e,"duration");var t=e.seconds(),n=e.nano();return t===Lr?this.plus(Cr,-n):this.plus(-t,-n)},n.minusAmountUnit=function(e,t){return Tr(e,"amountToSubtract"),Tr(t,"unit"),e===Lr?this.plusAmountUnit(Cr,t):this.plusAmountUnit(-e,t)},n.minusDays=function(e){return e===Lr?this.plusDays(Cr):this.plusDays(-e)},n.minusHours=function(e){return e===Lr?this.plusHours(Cr):this.plusHours(-e)},n.minusMinutes=function(e){return e===Lr?this.plusMinutes(Cr):this.plusMinutes(-e)},n.minusSeconds=function(e){return e===Lr?this.plusSeconds(Cr):this.plusSeconds(-e)},n.minusMillis=function(e){return e===Lr?this.plusMillis(Cr):this.plusMillis(-e)},n.minusNanos=function(e){return e===Lr?this.plusNanos(Cr):this.plusNanos(-e)},n.multipliedBy=function(e){if(0===e)return t.ZERO;if(1===e)return this;var n=Dr.safeMultiply(this._seconds,e),r=Dr.safeMultiply(this._nanos,e);return n+=Dr.intDiv(r,Ea.NANOS_PER_SECOND),r=Dr.intMod(r,Ea.NANOS_PER_SECOND),t.ofSeconds(n,r)},n.dividedBy=function(e){if(0===e)throw new yr("Cannot divide by zero");if(1===e)return this;var n=Dr.intDiv(this._seconds,e),r=Dr.roundDown((this._seconds/e-n)*Ea.NANOS_PER_SECOND),i=Dr.intDiv(this._nanos,e);return i=r+i,t.ofSeconds(n,i)},n.negated=function(){return this.multipliedBy(-1)},n.abs=function(){return this.isNegative()?this.negated():this},n.addTo=function(e){return Tr(e,"temporal"),0!==this._seconds&&(e=e.plus(this._seconds,Rr.SECONDS)),0!==this._nanos&&(e=e.plus(this._nanos,Rr.NANOS)),e},n.subtractFrom=function(e){return Tr(e,"temporal"),0!==this._seconds&&(e=e.minus(this._seconds,Rr.SECONDS)),0!==this._nanos&&(e=e.minus(this._nanos,Rr.NANOS)),e},n.toDays=function(){return Dr.intDiv(this._seconds,Ea.SECONDS_PER_DAY)},n.toHours=function(){return Dr.intDiv(this._seconds,Ea.SECONDS_PER_HOUR)},n.toMinutes=function(){return Dr.intDiv(this._seconds,Ea.SECONDS_PER_MINUTE)},n.toMillis=function(){var e=Math.round(Dr.safeMultiply(this._seconds,1e3));return e=Dr.safeAdd(e,Dr.intDiv(this._nanos,1e6))},n.toNanos=function(){var e=Dr.safeMultiply(this._seconds,Ea.NANOS_PER_SECOND);return e=Dr.safeAdd(e,this._nanos)},n.compareTo=function(e){Tr(e,"otherDuration"),wr(e,t,"otherDuration");var n=Dr.compareNumbers(this._seconds,e.seconds());return 0!==n?n:this._nanos-e.nano()},n.equals=function(e){return this===e||e instanceof t&&(this.seconds()===e.seconds()&&this.nano()===e.nano())},n.toString=function(){if(this===t.ZERO)return"PT0S";var e,n=Dr.intDiv(this._seconds,Ea.SECONDS_PER_HOUR),r=Dr.intDiv(Dr.intMod(this._seconds,Ea.SECONDS_PER_HOUR),Ea.SECONDS_PER_MINUTE),i=Dr.intMod(this._seconds,Ea.SECONDS_PER_MINUTE),a="PT";if(0!==n&&(a+=n+"H"),0!==r&&(a+=r+"M"),0===i&&0===this._nanos&&a.length>2)return a;if(i<0&&this._nanos>0?a+=-1===i?"-0":i+1:a+=i,this._nanos>0)for(a+=".",a+=e=(e=i<0?""+(2*Ea.NANOS_PER_SECOND-this._nanos):""+(Ea.NANOS_PER_SECOND+this._nanos)).slice(1,e.length);"0"===a.charAt(a.length-1);)a=a.slice(0,a.length-1);return a+="S"},n.toJSON=function(){return this.toString()},t}(Ir);
|
|
34
|
-
/*
|
|
35
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
36
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
37
|
-
*/
|
|
38
|
-
var zr=function(){};var Rr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}Er(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return this.isDateBased()||this===t.FOREVER},n.isDateBased=function(){return this.compareTo(t.DAYS)>=0&&this!==t.FOREVER},n.isTimeBased=function(){return this.compareTo(t.DAYS)<0},n.isSupportedBy=function(e){if(this===t.FOREVER)return!1;try{return e.plus(1,this),!0}catch(t){try{return e.plus(-1,this),!0}catch(e){return!1}}},n.addTo=function(e,t){return e.plus(t,this)},n.between=function(e,t){return e.until(t,this)},n.toString=function(){return this._name},n.compareTo=function(e){return this.duration().compareTo(e.duration())},t}(xr);
|
|
39
|
-
/**
|
|
40
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
41
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
42
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
43
|
-
*/
|
|
44
|
-
var Zr=function(){function e(){}var t=e.prototype;return t.isDateBased=function(){Or("isDateBased")},t.isTimeBased=function(){Or("isTimeBased")},t.baseUnit=function(){Or("baseUnit")},t.rangeUnit=function(){Or("rangeUnit")},t.range=function(){Or("range")},t.rangeRefinedBy=function(e){Or("rangeRefinedBy")},t.getFrom=function(e){Or("getFrom")},t.adjustInto=function(e,t){Or("adjustInto")},t.isSupportedBy=function(e){Or("isSupportedBy")},t.displayName=function(){Or("displayName")},t.equals=function(e){Or("equals")},t.name=function(){Or("name")},e}(),Pr=function(){function e(e,t,n,r){Mr(!(e>t),"Smallest minimum value '"+e+"' must be less than largest minimum value '"+t+"'",gr),Mr(!(n>r),"Smallest maximum value '"+n+"' must be less than largest maximum value '"+r+"'",gr),Mr(!(t>r),"Minimum value '"+t+"' must be less than maximum value '"+r+"'",gr),this._minSmallest=e,this._minLargest=t,this._maxLargest=r,this._maxSmallest=n}var t=e.prototype;return t.isFixed=function(){return this._minSmallest===this._minLargest&&this._maxSmallest===this._maxLargest},t.minimum=function(){return this._minSmallest},t.largestMinimum=function(){return this._minLargest},t.maximum=function(){return this._maxLargest},t.smallestMaximum=function(){return this._maxSmallest},t.isValidValue=function(e){return this.minimum()<=e&&e<=this.maximum()},t.checkValidValue=function(e,t){return this.isValidValue(e)?e:Mr(!1,null!=t?"Invalid value for "+t+" (valid values "+this.toString()+"): "+e:"Invalid value (valid values "+this.toString()+"): "+e,pr)},t.checkValidIntValue=function(e,t){if(!1===this.isValidIntValue(e))throw new pr("Invalid int value for "+t+": "+e);return e},t.isValidIntValue=function(e){return this.isIntValue()&&this.isValidValue(e)},t.isIntValue=function(){return this.minimum()>=Dr.MIN_SAFE_INTEGER&&this.maximum()<=Dr.MAX_SAFE_INTEGER},t.equals=function(t){return t===this||t instanceof e&&(this._minSmallest===t._minSmallest&&this._minLargest===t._minLargest&&this._maxSmallest===t._maxSmallest&&this._maxLargest===t._maxLargest)},t.hashCode=function(){return Dr.hashCode(this._minSmallest,this._minLargest,this._maxSmallest,this._maxLargest)},t.toString=function(){var e=this.minimum()+(this.minimum()!==this.largestMinimum()?"/"+this.largestMinimum():"");return e+=" - ",e+=this.smallestMaximum()+(this.smallestMaximum()!==this.maximum()?"/"+this.maximum():"")},e.of=function(){return 2===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[1]):3===arguments.length?new e(arguments[0],arguments[0],arguments[1],arguments[2]):4===arguments.length?new e(arguments[0],arguments[1],arguments[2],arguments[3]):Mr(!1,"Invalid number of arguments "+arguments.length,gr)},e}(),Fr=function(e){function t(t,n,r,i){var a;return(a=e.call(this)||this)._name=t,a._baseUnit=n,a._rangeUnit=r,a._range=i,a}Er(t,e),t.byName=function(e){for(var n in t)if(t[n]&&t[n]instanceof t&&t[n].name()===e)return t[n]};var n=t.prototype;return n.name=function(){return this._name},n.baseUnit=function(){return this._baseUnit},n.rangeUnit=function(){return this._rangeUnit},n.range=function(){return this._range},n.displayName=function(){return this.toString()},n.checkValidValue=function(e){return this.range().checkValidValue(e,this)},n.checkValidIntValue=function(e){return this.range().checkValidIntValue(e,this)},n.isDateBased=function(){return this===t.DAY_OF_WEEK||this===t.ALIGNED_DAY_OF_WEEK_IN_MONTH||this===t.ALIGNED_DAY_OF_WEEK_IN_YEAR||this===t.DAY_OF_MONTH||this===t.DAY_OF_YEAR||this===t.EPOCH_DAY||this===t.ALIGNED_WEEK_OF_MONTH||this===t.ALIGNED_WEEK_OF_YEAR||this===t.MONTH_OF_YEAR||this===t.PROLEPTIC_MONTH||this===t.YEAR_OF_ERA||this===t.YEAR||this===t.ERA},n.isTimeBased=function(){return this===t.NANO_OF_SECOND||this===t.NANO_OF_DAY||this===t.MICRO_OF_SECOND||this===t.MICRO_OF_DAY||this===t.MILLI_OF_SECOND||this===t.MILLI_OF_DAY||this===t.SECOND_OF_MINUTE||this===t.SECOND_OF_DAY||this===t.MINUTE_OF_HOUR||this===t.MINUTE_OF_DAY||this===t.HOUR_OF_AMPM||this===t.CLOCK_HOUR_OF_AMPM||this===t.HOUR_OF_DAY||this===t.CLOCK_HOUR_OF_DAY||this===t.AMPM_OF_DAY},n.rangeRefinedBy=function(e){return e.range(this)},n.getFrom=function(e){return e.getLong(this)},n.toString=function(){return this.name()},n.equals=function(e){return this===e},n.adjustInto=function(e,t){return e.with(this,t)},n.isSupportedBy=function(e){return e.isSupported(this)},t}(Zr);
|
|
45
|
-
/**
|
|
46
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
47
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
48
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
49
|
-
*/
|
|
50
|
-
/**
|
|
51
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
52
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
53
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
54
|
-
*/
|
|
55
|
-
var Ur=function(){function e(){}return e.zoneId=function(){return e.ZONE_ID},e.chronology=function(){return e.CHRONO},e.precision=function(){return e.PRECISION},e.zone=function(){return e.ZONE},e.offset=function(){return e.OFFSET},e.localDate=function(){return e.LOCAL_DATE},e.localTime=function(){return e.LOCAL_TIME},e}(),Br=function(){function e(){}var t=e.prototype;return t.query=function(e){return e===Ur.zoneId()||e===Ur.chronology()||e===Ur.precision()?null:e.queryFrom(this)},t.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},t.getLong=function(e){Or("getLong")},t.range=function(e){if(e instanceof Fr){if(this.isSupported(e))return e.range();throw new _r("Unsupported field: "+e)}return e.rangeRefinedBy(this)},t.isSupported=function(e){Or("isSupported")},e}(),Vr=function(e){function t(){return e.apply(this,arguments)||this}return Er(t,e),t.prototype.queryFrom=function(e){Or("queryFrom")},t}($r);
|
|
56
|
-
/**
|
|
57
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
58
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
59
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
60
|
-
*/function Hr(e,t){var n=function(e){function t(){return e.apply(this,arguments)||this}return Er(t,e),t}(Vr);return n.prototype.queryFrom=t,new n(e)}var Yr,jr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._ordinal=t,r._name=n,r}Er(t,e);var n=t.prototype;return n.ordinal=function(){return this._ordinal},n.name=function(){return this._name},t.values=function(){return Yr.slice()},t.valueOf=function(e){for(var n=0;n<Yr.length&&Yr[n].name()!==e;n++);return t.of(n+1)},t.of=function(e){if(e<1||e>7)throw new pr("Invalid value for DayOfWeek: "+e);return Yr[e-1]},t.from=function(e){if(Mr(null!=e,"temporal",Ar),e instanceof t)return e;try{return t.of(e.get(Fr.DAY_OF_WEEK))}catch(t){throw t instanceof pr?new pr("Unable to obtain DayOfWeek from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""),t):t}},n.value=function(){return this._ordinal+1},n.displayName=function(e,t){throw new gr("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return e instanceof Fr?e===Fr.DAY_OF_WEEK:null!=e&&e.isSupportedBy(this)},n.range=function(e){if(e===Fr.DAY_OF_WEEK)return e.range();if(e instanceof Fr)throw new _r("Unsupported field: "+e);return e.rangeRefinedBy(this)},n.get=function(e){return e===Fr.DAY_OF_WEEK?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===Fr.DAY_OF_WEEK)return this.value();if(e instanceof Fr)throw new _r("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var t=Dr.floorMod(e,7);return Yr[Dr.floorMod(this._ordinal+(t+7),7)]},n.minus=function(e){return this.plus(-1*Dr.floorMod(e,7))},n.query=function(e){return e===Ur.precision()?Rr.DAYS:e===Ur.localDate()||e===Ur.localTime()||e===Ur.chronology()||e===Ur.zone()||e===Ur.zoneId()||e===Ur.offset()?null:(Mr(null!=e,"query",Ar),e.queryFrom(this))},n.adjustInto=function(e){return Tr(e,"temporal"),e.with(Fr.DAY_OF_WEEK,this.value())},n.equals=function(e){return this===e},n.toString=function(){return this._name},n.compareTo=function(e){return Tr(e,"other"),wr(e,t,"other"),this._ordinal-e._ordinal},n.toJSON=function(){return this.toString()},t}(Br);var Gr,Wr=function(e){function t(t,n){var r;return(r=e.call(this)||this)._value=Dr.safeToInt(t),r._name=n,r}Er(t,e);var n=t.prototype;return n.value=function(){return this._value},n.ordinal=function(){return this._value-1},n.name=function(){return this._name},n.displayName=function(e,t){throw new gr("Pattern using (localized) text not implemented yet!")},n.isSupported=function(e){return null!==e&&(e instanceof Fr?e===Fr.MONTH_OF_YEAR:null!=e&&e.isSupportedBy(this))},n.get=function(e){return e===Fr.MONTH_OF_YEAR?this.value():this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(e===Fr.MONTH_OF_YEAR)return this.value();if(e instanceof Fr)throw new _r("Unsupported field: "+e);return e.getFrom(this)},n.plus=function(e){var n=Dr.intMod(e,12)+12,r=Dr.intMod(this.value()+n,12);return r=0===r?12:r,t.of(r)},n.minus=function(e){return this.plus(-1*Dr.intMod(e,12))},n.length=function(e){switch(this){case t.FEBRUARY:return e?29:28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.minLength=function(){switch(this){case t.FEBRUARY:return 28;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.maxLength=function(){switch(this){case t.FEBRUARY:return 29;case t.APRIL:case t.JUNE:case t.SEPTEMBER:case t.NOVEMBER:return 30;default:return 31}},n.firstDayOfYear=function(e){var n=e?1:0;switch(this){case t.JANUARY:return 1;case t.FEBRUARY:return 32;case t.MARCH:return 60+n;case t.APRIL:return 91+n;case t.MAY:return 121+n;case t.JUNE:return 152+n;case t.JULY:return 182+n;case t.AUGUST:return 213+n;case t.SEPTEMBER:return 244+n;case t.OCTOBER:return 274+n;case t.NOVEMBER:return 305+n;case t.DECEMBER:default:return 335+n}},n.firstMonthOfQuarter=function(){switch(this){case t.JANUARY:case t.FEBRUARY:case t.MARCH:return t.JANUARY;case t.APRIL:case t.MAY:case t.JUNE:return t.APRIL;case t.JULY:case t.AUGUST:case t.SEPTEMBER:return t.JULY;case t.OCTOBER:case t.NOVEMBER:case t.DECEMBER:default:return t.OCTOBER}},n.query=function(t){return Mr(null!=t,"query() parameter must not be null",pr),t===Ur.chronology()?da.INSTANCE:t===Ur.precision()?Rr.MONTHS:e.prototype.query.call(this,t)},n.toString=function(){switch(this){case t.JANUARY:return"JANUARY";case t.FEBRUARY:return"FEBRUARY";case t.MARCH:return"MARCH";case t.APRIL:return"APRIL";case t.MAY:return"MAY";case t.JUNE:return"JUNE";case t.JULY:return"JULY";case t.AUGUST:return"AUGUST";case t.SEPTEMBER:return"SEPTEMBER";case t.OCTOBER:return"OCTOBER";case t.NOVEMBER:return"NOVEMBER";case t.DECEMBER:return"DECEMBER";default:return"unknown Month, value: "+this.value()}},n.toJSON=function(){return this.toString()},n.adjustInto=function(e){return e.with(Fr.MONTH_OF_YEAR,this.value())},n.compareTo=function(e){return Tr(e,"other"),wr(e,t,"other"),this._value-e._value},n.equals=function(e){return this===e},t.valueOf=function(e){for(var n=0;n<Gr.length&&Gr[n].name()!==e;n++);return t.of(n+1)},t.values=function(){return Gr.slice()},t.of=function(e){return(e<1||e>12)&&Mr(!1,"Invalid value for MonthOfYear: "+e,pr),Gr[e-1]},t.from=function(e){if(e instanceof t)return e;try{return t.of(e.get(Fr.MONTH_OF_YEAR))}catch(t){throw new pr("Unable to obtain Month from TemporalAccessor: "+e+" of type "+(e&&null!=e.constructor?e.constructor.name:""),t)}},t}(Br);var qr=/([-+]?)P(?:([-+]?[0-9]+)Y)?(?:([-+]?[0-9]+)M)?(?:([-+]?[0-9]+)W)?(?:([-+]?[0-9]+)D)?/,Kr=function(e){function t(n,r,i){var a;a=e.call(this)||this;var o=Dr.safeToInt(n),s=Dr.safeToInt(r),u=Dr.safeToInt(i);return 0===o&&0===s&&0===u?(t.ZERO||(a._years=o,a._months=s,a._days=u,t.ZERO=Sr(a)),t.ZERO||Sr(a)):(a._years=o,a._months=s,a._days=u,a)}Er(t,e),t.ofYears=function(e){return t.create(e,0,0)},t.ofMonths=function(e){return t.create(0,e,0)},t.ofWeeks=function(e){return t.create(0,0,Dr.safeMultiply(e,7))},t.ofDays=function(e){return t.create(0,0,e)},t.of=function(e,n,r){return t.create(e,n,r)},t.from=function(e){if(e instanceof t)return e;Tr(e,"amount");for(var n=0,r=0,i=0,a=e.units(),o=0;o<a.length;o++){var s=a[o],u=e.get(s);if(s===Rr.YEARS)n=Dr.safeToInt(u);else if(s===Rr.MONTHS)r=Dr.safeToInt(u);else{if(s!==Rr.DAYS)throw new pr("Unit must be Years, Months or Days, but was "+s);i=Dr.safeToInt(u)}}return t.create(n,r,i)},t.between=function(e,t){return Tr(e,"startDate"),Tr(t,"endDate"),wr(e,ga,"startDate"),wr(t,ga,"endDate"),e.until(t)},t.parse=function(e){Tr(e,"text");try{return t._parse(e)}catch(t){throw t instanceof yr?new mr("Text cannot be parsed to a Period",e,0,t):t}},t._parse=function(e){var n=qr.exec(e);if(null!=n){var r="-"===n[1]?-1:1,i=n[2],a=n[3],o=n[4],s=n[5];if(null!=i||null!=a||null!=o||null!=s){var u=t._parseNumber(e,i,r),l=t._parseNumber(e,a,r),c=t._parseNumber(e,o,r),d=t._parseNumber(e,s,r);return d=Dr.safeAdd(d,Dr.safeMultiply(c,7)),t.create(u,l,d)}}throw new mr("Text cannot be parsed to a Period",e,0)},t._parseNumber=function(e,t,n){if(null==t)return 0;var r=Dr.parseInt(t);return Dr.safeMultiply(r,n)},t.create=function(e,n,r){return new t(e,n,r)};var n=t.prototype;return n.units=function(){return[Rr.YEARS,Rr.MONTHS,Rr.DAYS]},n.chronology=function(){return da.INSTANCE},n.get=function(e){if(e===Rr.YEARS)return this._years;if(e===Rr.MONTHS)return this._months;if(e===Rr.DAYS)return this._days;throw new _r("Unsupported unit: "+e)},n.isZero=function(){return this===t.ZERO},n.isNegative=function(){return this._years<0||this._months<0||this._days<0},n.years=function(){return this._years},n.months=function(){return this._months},n.days=function(){return this._days},n.withYears=function(e){return e===this._years?this:t.create(e,this._months,this._days)},n.withMonths=function(e){return e===this._months?this:t.create(this._years,e,this._days)},n.withDays=function(e){return e===this._days?this:t.create(this._years,this._months,e)},n.plus=function(e){var n=t.from(e);return t.create(Dr.safeAdd(this._years,n._years),Dr.safeAdd(this._months,n._months),Dr.safeAdd(this._days,n._days))},n.plusYears=function(e){return 0===e?this:t.create(Dr.safeToInt(Dr.safeAdd(this._years,e)),this._months,this._days)},n.plusMonths=function(e){return 0===e?this:t.create(this._years,Dr.safeToInt(Dr.safeAdd(this._months,e)),this._days)},n.plusDays=function(e){return 0===e?this:t.create(this._years,this._months,Dr.safeToInt(Dr.safeAdd(this._days,e)))},n.minus=function(e){var n=t.from(e);return t.create(Dr.safeSubtract(this._years,n._years),Dr.safeSubtract(this._months,n._months),Dr.safeSubtract(this._days,n._days))},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.multipliedBy=function(e){return this===t.ZERO||1===e?this:t.create(Dr.safeMultiply(this._years,e),Dr.safeMultiply(this._months,e),Dr.safeMultiply(this._days,e))},n.negated=function(){return this.multipliedBy(-1)},n.normalized=function(){var e=this.toTotalMonths(),n=Dr.intDiv(e,12),r=Dr.intMod(e,12);return n===this._years&&r===this._months?this:t.create(Dr.safeToInt(n),r,this._days)},n.toTotalMonths=function(){return 12*this._years+this._months},n.addTo=function(e){return Tr(e,"temporal"),0!==this._years?e=0!==this._months?e.plus(this.toTotalMonths(),Rr.MONTHS):e.plus(this._years,Rr.YEARS):0!==this._months&&(e=e.plus(this._months,Rr.MONTHS)),0!==this._days&&(e=e.plus(this._days,Rr.DAYS)),e},n.subtractFrom=function(e){return Tr(e,"temporal"),0!==this._years?e=0!==this._months?e.minus(this.toTotalMonths(),Rr.MONTHS):e.minus(this._years,Rr.YEARS):0!==this._months&&(e=e.minus(this._months,Rr.MONTHS)),0!==this._days&&(e=e.minus(this._days,Rr.DAYS)),e},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this._years===n._years&&this._months===n._months&&this._days===n._days}return!1},n.hashCode=function(){return Dr.hashCode(this._years,this._months,this._days)},n.toString=function(){if(this===t.ZERO)return"P0D";var e="P";return 0!==this._years&&(e+=this._years+"Y"),0!==this._months&&(e+=this._months+"M"),0!==this._days&&(e+=this._days+"D"),e},n.toJSON=function(){return this.toString()},t}(Ir);
|
|
61
|
-
/*
|
|
62
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
63
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
64
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
65
|
-
*/
|
|
66
|
-
var Jr=function(){function e(e){this._index=e,this._errorIndex=-1}var t=e.prototype;return t.getIndex=function(){return this._index},t.setIndex=function(e){this._index=e},t.getErrorIndex=function(){return this._errorIndex},t.setErrorIndex=function(e){this._errorIndex=e},e}(),Xr=function(){function e(){this._map={}}var t=e.prototype;return t.putAll=function(e){for(var t in e._map)this._map[t]=e._map[t];return this},t.containsKey=function(e){return this._map.hasOwnProperty(e.name())&&void 0!==this.get(e)},t.get=function(e){return this._map[e.name()]},t.put=function(e,t){return this.set(e,t)},t.set=function(e,t){return this._map[e.name()]=t,this},t.retainAll=function(e){for(var t={},n=0;n<e.length;n++){var r=e[n].name();t[r]=this._map[r]}return this._map=t,this},t.remove=function(e){var t=e.name(),n=this._map[t];return this._map[t]=void 0,n},t.keySet=function(){return this._map},t.clear=function(){this._map={}},e}(),Qr=function(e){function t(){return e.apply(this,arguments)||this}return Er(t,e),t}($r);
|
|
67
|
-
/*
|
|
68
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
69
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
70
|
-
*/Qr.STRICT=new Qr("STRICT"),Qr.SMART=new Qr("SMART"),Qr.LENIENT=new Qr("LENIENT");var ei=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.isSupported=function(e){Or("isSupported")},n.minus=function(e,t){return arguments.length<2?this._minusAmount(e):this._minusUnit(e,t)},n._minusAmount=function(e){return Tr(e,"amount"),wr(e,Ir,"amount"),e.subtractFrom(this)},n._minusUnit=function(e,t){return Tr(e,"amountToSubtract"),Tr(t,"unit"),wr(t,xr,"unit"),this._plusUnit(-e,t)},n.plus=function(e,t){return arguments.length<2?this._plusAmount(e):this._plusUnit(e,t)},n._plusAmount=function(e){return Tr(e,"amount"),wr(e,Ir,"amount"),e.addTo(this)},n._plusUnit=function(e,t){Or("_plusUnit")},n.until=function(e,t){Or("until")},n.with=function(e,t){return arguments.length<2?this._withAdjuster(e):this._withField(e,t)},n._withAdjuster=function(e){return Tr(e,"adjuster"),Mr("function"==typeof e.adjustInto,"adjuster must be a TemporalAdjuster",gr),e.adjustInto(this)},n._withField=function(e,t){Or("_withField")},t}(Br);"undefined"!=typeof Symbol&&Symbol.toPrimitive&&(ei.prototype[Symbol.toPrimitive]=function(e){if("number"!==e)return this.toString();throw new TypeError("A conversion from Temporal to a number is not allowed. To compare use the methods .equals(), .compareTo(), .isBefore() or one that is more suitable to your use case.")});var ti=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.isSupported=function(e){return e instanceof Fr||e instanceof Rr?e.isDateBased():null!=e&&e.isSupportedBy(this)},n.query=function(t){return t===Ur.chronology()?this.chronology():t===Ur.precision()?Rr.DAYS:t===Ur.localDate()?ga.ofEpochDay(this.toEpochDay()):t===Ur.localTime()||t===Ur.zone()||t===Ur.zoneId()||t===Ur.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return e.with(Fr.EPOCH_DAY,this.toEpochDay())},n.format=function(e){return Tr(e,"formatter"),wr(e,Qi,"formatter"),e.format(this)},t}(ei),ni=function(){function e(){}return e.startsWith=function(e,t){return 0===e.indexOf(t)},e.hashCode=function(e){var t=e.length;if(0===t)return 0;for(var n=0,r=0;r<t;r++){n=(n<<5)-n+e.charCodeAt(r),n|=0}return Dr.smi(n)},e}(),ri=function(){function e(){}e.systemDefault=function(){throw new pr("not supported operation")},e.getAvailableZoneIds=function(){throw new pr("not supported operation")},e.of=function(e){throw new pr("not supported operation"+e)},e.ofOffset=function(e,t){throw new pr("not supported operation"+e+t)},e.from=function(e){throw new pr("not supported operation"+e)};var t=e.prototype;return t.id=function(){Or("ZoneId.id")},t.rules=function(){Or("ZoneId.rules")},t.normalized=function(){var e=this.rules();return e.isFixedOffset()?e.offset(Sa.EPOCH):this},t.equals=function(t){return this===t||t instanceof e&&this.id()===t.id()},t.hashCode=function(){return ni.hashCode(this.id())},t.toString=function(){return this.id()},t.toJSON=function(){return this.toString()},e}(),ii=function(){function e(){}e.of=function(e){return Tr(e,"offset"),new ai(e)};var t=e.prototype;return t.isFixedOffset=function(){Or("ZoneRules.isFixedOffset")},t.offset=function(e){return e instanceof Sa?this.offsetOfInstant(e):this.offsetOfLocalDateTime(e)},t.offsetOfInstant=function(e){Or("ZoneRules.offsetInstant")},t.offsetOfEpochMilli=function(e){Or("ZoneRules.offsetOfEpochMilli")},t.offsetOfLocalDateTime=function(e){Or("ZoneRules.offsetLocalDateTime")},t.validOffsets=function(e){Or("ZoneRules.validOffsets")},t.transition=function(e){Or("ZoneRules.transition")},t.standardOffset=function(e){Or("ZoneRules.standardOffset")},t.daylightSavings=function(e){Or("ZoneRules.daylightSavings")},t.isDaylightSavings=function(e){Or("ZoneRules.isDaylightSavings")},t.isValidOffset=function(e,t){Or("ZoneRules.isValidOffset")},t.nextTransition=function(e){Or("ZoneRules.nextTransition")},t.previousTransition=function(e){Or("ZoneRules.previousTransition")},t.transitions=function(){Or("ZoneRules.transitions")},t.transitionRules=function(){Or("ZoneRules.transitionRules")},t.toString=function(){Or("ZoneRules.toString")},t.toJSON=function(){return this.toString()},e}(),ai=function(e){function t(t){var n;return(n=e.call(this)||this)._offset=t,n}Er(t,e);var n=t.prototype;return n.isFixedOffset=function(){return!0},n.offsetOfInstant=function(){return this._offset},n.offsetOfEpochMilli=function(){return this._offset},n.offsetOfLocalDateTime=function(){return this._offset},n.validOffsets=function(){return[this._offset]},n.transition=function(){return null},n.standardOffset=function(){return this._offset},n.daylightSavings=function(){return kr.ZERO},n.isDaylightSavings=function(){return!1},n.isValidOffset=function(e,t){return this._offset.equals(t)},n.nextTransition=function(){return null},n.previousTransition=function(){return null},n.transitions=function(){return[]},n.transitionRules=function(){return[]},n.equals=function(e){return this===e||e instanceof t&&this._offset.equals(e._offset)},n.toString=function(){return"FixedRules:"+this._offset.toString()},t}(ii),oi={},si={},ui=function(e){function t(n){var r;return r=e.call(this)||this,t._validateTotalSeconds(n),r._totalSeconds=Dr.safeToInt(n),r._rules=ii.of(Sr(r)),r._id=t._buildId(n),r}Er(t,e);var n=t.prototype;return n.totalSeconds=function(){return this._totalSeconds},n.id=function(){return this._id},t._buildId=function(e){if(0===e)return"Z";var t=Math.abs(e),n=Dr.intDiv(t,Ea.SECONDS_PER_HOUR),r=Dr.intMod(Dr.intDiv(t,Ea.SECONDS_PER_MINUTE),Ea.MINUTES_PER_HOUR),i=(e<0?"-":"+")+(n<10?"0":"")+n+(r<10?":0":":")+r,a=Dr.intMod(t,Ea.SECONDS_PER_MINUTE);return 0!==a&&(i+=(a<10?":0":":")+a),i},t._validateTotalSeconds=function(e){if(Math.abs(e)>t.MAX_SECONDS)throw new pr("Zone offset not in valid range: -18:00 to +18:00")},t._validate=function(e,t,n){if(e<-18||e>18)throw new pr("Zone offset hours not in valid range: value "+e+" is not in the range -18 to 18");if(e>0){if(t<0||n<0)throw new pr("Zone offset minutes and seconds must be positive because hours is positive")}else if(e<0){if(t>0||n>0)throw new pr("Zone offset minutes and seconds must be negative because hours is negative")}else if(t>0&&n<0||t<0&&n>0)throw new pr("Zone offset minutes and seconds must have the same sign");if(Math.abs(t)>59)throw new pr("Zone offset minutes not in valid range: abs(value) "+Math.abs(t)+" is not in the range 0 to 59");if(Math.abs(n)>59)throw new pr("Zone offset seconds not in valid range: abs(value) "+Math.abs(n)+" is not in the range 0 to 59");if(18===Math.abs(e)&&(Math.abs(t)>0||Math.abs(n)>0))throw new pr("Zone offset not in valid range: -18:00 to +18:00")},t.of=function(e){Tr(e,"offsetId");var n,r,i,a=si[e];if(null!=a)return a;switch(e.length){case 2:e=e[0]+"0"+e[1];case 3:n=t._parseNumber(e,1,!1),r=0,i=0;break;case 5:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=0;break;case 6:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=0;break;case 7:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,3,!1),i=t._parseNumber(e,5,!1);break;case 9:n=t._parseNumber(e,1,!1),r=t._parseNumber(e,4,!0),i=t._parseNumber(e,7,!0);break;default:throw new pr("Invalid ID for ZoneOffset, invalid format: "+e)}var o=e[0];if("+"!==o&&"-"!==o)throw new pr("Invalid ID for ZoneOffset, plus/minus not found when expected: "+e);return"-"===o?t.ofHoursMinutesSeconds(-n,-r,-i):t.ofHoursMinutesSeconds(n,r,i)},t._parseNumber=function(e,t,n){if(n&&":"!==e[t-1])throw new pr("Invalid ID for ZoneOffset, colon not found when expected: "+e);var r=e[t],i=e[t+1];if(r<"0"||r>"9"||i<"0"||i>"9")throw new pr("Invalid ID for ZoneOffset, non numeric characters found: "+e);return 10*(r.charCodeAt(0)-48)+(i.charCodeAt(0)-48)},t.ofHours=function(e){return t.ofHoursMinutesSeconds(e,0,0)},t.ofHoursMinutes=function(e,n){return t.ofHoursMinutesSeconds(e,n,0)},t.ofHoursMinutesSeconds=function(e,n,r){t._validate(e,n,r);var i=e*Ea.SECONDS_PER_HOUR+n*Ea.SECONDS_PER_MINUTE+r;return t.ofTotalSeconds(i)},t.ofTotalMinutes=function(e){var n=e*Ea.SECONDS_PER_MINUTE;return t.ofTotalSeconds(n)},t.ofTotalSeconds=function(e){if(e%(15*Ea.SECONDS_PER_MINUTE)==0){var n=e,r=oi[n];return null==r&&(r=new t(e),oi[n]=r,si[r.id()]=r),r}return new t(e)},n.rules=function(){return this._rules},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e===Fr.OFFSET_SECONDS)return this._totalSeconds;if(e instanceof Fr)throw new pr("Unsupported field: "+e);return e.getFrom(this)},n.query=function(e){return Tr(e,"query"),e===Ur.offset()||e===Ur.zone()?this:e===Ur.localDate()||e===Ur.localTime()||e===Ur.precision()||e===Ur.chronology()||e===Ur.zoneId()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(Fr.OFFSET_SECONDS,this._totalSeconds)},n.compareTo=function(e){return Tr(e,"other"),e._totalSeconds-this._totalSeconds},n.equals=function(e){return this===e||e instanceof t&&this._totalSeconds===e._totalSeconds},n.hashCode=function(){return this._totalSeconds},n.toString=function(){return this._id},t}(ri);
|
|
71
|
-
/*
|
|
72
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
73
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
74
|
-
*/var li=function(e){function t(){var t;return(t=e.call(this)||this).fieldValues=new Xr,t.chrono=null,t.zone=null,t.date=null,t.time=null,t.leapSecond=!1,t.excessDays=null,t}Er(t,e),t.create=function(e,n){var r=new t;return r._addFieldValue(e,n),r};var n=t.prototype;return n.getFieldValue0=function(e){return this.fieldValues.get(e)},n._addFieldValue=function(e,t){Tr(e,"field");var n=this.getFieldValue0(e);if(null!=n&&n!==t)throw new pr("Conflict found: "+e+" "+n+" differs from "+e+" "+t+": "+this);return this._putFieldValue0(e,t)},n._putFieldValue0=function(e,t){return this.fieldValues.put(e,t),this},n.resolve=function(e,t){return null!=t&&this.fieldValues.retainAll(t),this._mergeDate(e),this._mergeTime(e),this._resolveTimeInferZeroes(e),null!=this.excessDays&&!1===this.excessDays.isZero()&&null!=this.date&&null!=this.time&&(this.date=this.date.plus(this.excessDays),this.excessDays=Kr.ZERO),this._resolveInstant(),this},n._mergeDate=function(e){this._checkDate(da.INSTANCE.resolveDate(this.fieldValues,e))},n._checkDate=function(e){if(null!=e)for(var t in this._addObject(e),this.fieldValues.keySet()){var n=Fr.byName(t);if(n&&void 0!==this.fieldValues.get(n)&&n.isDateBased()){var r=void 0;try{r=e.getLong(n)}catch(e){if(e instanceof pr)continue;throw e}var i=this.fieldValues.get(n);if(r!==i)throw new pr("Conflict found: Field "+n+" "+r+" differs from "+n+" "+i+" derived from "+e)}}},n._mergeTime=function(e){if(this.fieldValues.containsKey(Fr.CLOCK_HOUR_OF_DAY)){var t=this.fieldValues.remove(Fr.CLOCK_HOUR_OF_DAY);e!==Qr.LENIENT&&(e===Qr.SMART&&0===t||Fr.CLOCK_HOUR_OF_DAY.checkValidValue(t)),this._addFieldValue(Fr.HOUR_OF_DAY,24===t?0:t)}if(this.fieldValues.containsKey(Fr.CLOCK_HOUR_OF_AMPM)){var n=this.fieldValues.remove(Fr.CLOCK_HOUR_OF_AMPM);e!==Qr.LENIENT&&(e===Qr.SMART&&0===n||Fr.CLOCK_HOUR_OF_AMPM.checkValidValue(n)),this._addFieldValue(Fr.HOUR_OF_AMPM,12===n?0:n)}if(e!==Qr.LENIENT&&(this.fieldValues.containsKey(Fr.AMPM_OF_DAY)&&Fr.AMPM_OF_DAY.checkValidValue(this.fieldValues.get(Fr.AMPM_OF_DAY)),this.fieldValues.containsKey(Fr.HOUR_OF_AMPM)&&Fr.HOUR_OF_AMPM.checkValidValue(this.fieldValues.get(Fr.HOUR_OF_AMPM))),this.fieldValues.containsKey(Fr.AMPM_OF_DAY)&&this.fieldValues.containsKey(Fr.HOUR_OF_AMPM)){var r=this.fieldValues.remove(Fr.AMPM_OF_DAY),i=this.fieldValues.remove(Fr.HOUR_OF_AMPM);this._addFieldValue(Fr.HOUR_OF_DAY,12*r+i)}if(this.fieldValues.containsKey(Fr.NANO_OF_DAY)){var a=this.fieldValues.remove(Fr.NANO_OF_DAY);e!==Qr.LENIENT&&Fr.NANO_OF_DAY.checkValidValue(a),this._addFieldValue(Fr.SECOND_OF_DAY,Dr.intDiv(a,1e9)),this._addFieldValue(Fr.NANO_OF_SECOND,Dr.intMod(a,1e9))}if(this.fieldValues.containsKey(Fr.MICRO_OF_DAY)){var o=this.fieldValues.remove(Fr.MICRO_OF_DAY);e!==Qr.LENIENT&&Fr.MICRO_OF_DAY.checkValidValue(o),this._addFieldValue(Fr.SECOND_OF_DAY,Dr.intDiv(o,1e6)),this._addFieldValue(Fr.MICRO_OF_SECOND,Dr.intMod(o,1e6))}if(this.fieldValues.containsKey(Fr.MILLI_OF_DAY)){var s=this.fieldValues.remove(Fr.MILLI_OF_DAY);e!==Qr.LENIENT&&Fr.MILLI_OF_DAY.checkValidValue(s),this._addFieldValue(Fr.SECOND_OF_DAY,Dr.intDiv(s,1e3)),this._addFieldValue(Fr.MILLI_OF_SECOND,Dr.intMod(s,1e3))}if(this.fieldValues.containsKey(Fr.SECOND_OF_DAY)){var u=this.fieldValues.remove(Fr.SECOND_OF_DAY);e!==Qr.LENIENT&&Fr.SECOND_OF_DAY.checkValidValue(u),this._addFieldValue(Fr.HOUR_OF_DAY,Dr.intDiv(u,3600)),this._addFieldValue(Fr.MINUTE_OF_HOUR,Dr.intMod(Dr.intDiv(u,60),60)),this._addFieldValue(Fr.SECOND_OF_MINUTE,Dr.intMod(u,60))}if(this.fieldValues.containsKey(Fr.MINUTE_OF_DAY)){var l=this.fieldValues.remove(Fr.MINUTE_OF_DAY);e!==Qr.LENIENT&&Fr.MINUTE_OF_DAY.checkValidValue(l),this._addFieldValue(Fr.HOUR_OF_DAY,Dr.intDiv(l,60)),this._addFieldValue(Fr.MINUTE_OF_HOUR,Dr.intMod(l,60))}if(e!==Qr.LENIENT&&(this.fieldValues.containsKey(Fr.MILLI_OF_SECOND)&&Fr.MILLI_OF_SECOND.checkValidValue(this.fieldValues.get(Fr.MILLI_OF_SECOND)),this.fieldValues.containsKey(Fr.MICRO_OF_SECOND)&&Fr.MICRO_OF_SECOND.checkValidValue(this.fieldValues.get(Fr.MICRO_OF_SECOND))),this.fieldValues.containsKey(Fr.MILLI_OF_SECOND)&&this.fieldValues.containsKey(Fr.MICRO_OF_SECOND)){var c=this.fieldValues.remove(Fr.MILLI_OF_SECOND),d=this.fieldValues.get(Fr.MICRO_OF_SECOND);this._putFieldValue0(Fr.MICRO_OF_SECOND,1e3*c+Dr.intMod(d,1e3))}if(this.fieldValues.containsKey(Fr.MICRO_OF_SECOND)&&this.fieldValues.containsKey(Fr.NANO_OF_SECOND)){var f=this.fieldValues.get(Fr.NANO_OF_SECOND);this._putFieldValue0(Fr.MICRO_OF_SECOND,Dr.intDiv(f,1e3)),this.fieldValues.remove(Fr.MICRO_OF_SECOND)}if(this.fieldValues.containsKey(Fr.MILLI_OF_SECOND)&&this.fieldValues.containsKey(Fr.NANO_OF_SECOND)){var h=this.fieldValues.get(Fr.NANO_OF_SECOND);this._putFieldValue0(Fr.MILLI_OF_SECOND,Dr.intDiv(h,1e6)),this.fieldValues.remove(Fr.MILLI_OF_SECOND)}if(this.fieldValues.containsKey(Fr.MICRO_OF_SECOND)){var p=this.fieldValues.remove(Fr.MICRO_OF_SECOND);this._putFieldValue0(Fr.NANO_OF_SECOND,1e3*p)}else if(this.fieldValues.containsKey(Fr.MILLI_OF_SECOND)){var m=this.fieldValues.remove(Fr.MILLI_OF_SECOND);this._putFieldValue0(Fr.NANO_OF_SECOND,1e6*m)}},n._resolveTimeInferZeroes=function(e){var t=this.fieldValues.get(Fr.HOUR_OF_DAY),n=this.fieldValues.get(Fr.MINUTE_OF_HOUR),r=this.fieldValues.get(Fr.SECOND_OF_MINUTE),i=this.fieldValues.get(Fr.NANO_OF_SECOND);if(null!=t&&(null!=n||null==r&&null==i)&&(null==n||null!=r||null==i)){if(e!==Qr.LENIENT){if(null!=t){e!==Qr.SMART||24!==t||null!=n&&0!==n||null!=r&&0!==r||null!=i&&0!==i||(t=0,this.excessDays=Kr.ofDays(1));var a=Fr.HOUR_OF_DAY.checkValidIntValue(t);if(null!=n){var o=Fr.MINUTE_OF_HOUR.checkValidIntValue(n);if(null!=r){var s=Fr.SECOND_OF_MINUTE.checkValidIntValue(r);if(null!=i){var u=Fr.NANO_OF_SECOND.checkValidIntValue(i);this._addObject(Ea.of(a,o,s,u))}else this._addObject(Ea.of(a,o,s))}else null==i&&this._addObject(Ea.of(a,o))}else null==r&&null==i&&this._addObject(Ea.of(a,0))}}else if(null!=t){var l=t;if(null!=n)if(null!=r){null==i&&(i=0);var c=Dr.safeMultiply(l,36e11);c=Dr.safeAdd(c,Dr.safeMultiply(n,6e10)),c=Dr.safeAdd(c,Dr.safeMultiply(r,1e9)),c=Dr.safeAdd(c,i);var d=Dr.floorDiv(c,864e11),f=Dr.floorMod(c,864e11);this._addObject(Ea.ofNanoOfDay(f)),this.excessDays=Kr.ofDays(d)}else{var h=Dr.safeMultiply(l,3600);h=Dr.safeAdd(h,Dr.safeMultiply(n,60));var p=Dr.floorDiv(h,86400),m=Dr.floorMod(h,86400);this._addObject(Ea.ofSecondOfDay(m)),this.excessDays=Kr.ofDays(p)}else{var _=Dr.safeToInt(Dr.floorDiv(l,24));l=Dr.floorMod(l,24),this._addObject(Ea.of(l,0)),this.excessDays=Kr.ofDays(_)}}this.fieldValues.remove(Fr.HOUR_OF_DAY),this.fieldValues.remove(Fr.MINUTE_OF_HOUR),this.fieldValues.remove(Fr.SECOND_OF_MINUTE),this.fieldValues.remove(Fr.NANO_OF_SECOND)}},n._addObject=function(e){e instanceof ti?this.date=e:e instanceof Ea&&(this.time=e)},n._resolveInstant=function(){if(null!=this.date&&null!=this.time){var e=this.fieldValues.get(Fr.OFFSET_SECONDS);if(null!=e){var t=ui.ofTotalSeconds(e),n=this.date.atTime(this.time).atZone(t).getLong(Fr.INSTANT_SECONDS);this.fieldValues.put(Fr.INSTANT_SECONDS,n)}else if(null!=this.zone){var r=this.date.atTime(this.time).atZone(this.zone).getLong(Fr.INSTANT_SECONDS);this.fieldValues.put(Fr.INSTANT_SECONDS,r)}}},n.build=function(e){return e.queryFrom(this)},n.isSupported=function(e){return null!=e&&(this.fieldValues.containsKey(e)&&void 0!==this.fieldValues.get(e)||null!=this.date&&this.date.isSupported(e)||null!=this.time&&this.time.isSupported(e))},n.getLong=function(e){Tr(e,"field");var t=this.getFieldValue0(e);if(null==t){if(null!=this.date&&this.date.isSupported(e))return this.date.getLong(e);if(null!=this.time&&this.time.isSupported(e))return this.time.getLong(e);throw new pr("Field not found: "+e)}return t},n.query=function(e){return e===Ur.zoneId()?this.zone:e===Ur.chronology()?this.chrono:e===Ur.localDate()?null!=this.date?ga.from(this.date):null:e===Ur.localTime()?this.time:e===Ur.zone()||e===Ur.offset()?e.queryFrom(this):e===Ur.precision()?null:e.queryFrom(this)},t}(Br),ci=function(){function e(){if(1===arguments.length){if(arguments[0]instanceof e)return void this._constructorSelf.apply(this,arguments);this._constructorFormatter.apply(this,arguments)}else this._constructorParam.apply(this,arguments);this._caseSensitive=!0,this._strict=!0,this._parsed=[new di(this)]}var t=e.prototype;return t._constructorParam=function(e,t,n){this._locale=e,this._symbols=t,this._overrideChronology=n},t._constructorFormatter=function(e){this._locale=e.locale(),this._symbols=e.decimalStyle(),this._overrideChronology=e.chronology()},t._constructorSelf=function(e){this._locale=e._locale,this._symbols=e._symbols,this._overrideChronology=e._overrideChronology,this._overrideZone=e._overrideZone,this._caseSensitive=e._caseSensitive,this._strict=e._strict,this._parsed=[new di(this)]},t.copy=function(){return new e(this)},t.symbols=function(){return this._symbols},t.isStrict=function(){return this._strict},t.setStrict=function(e){this._strict=e},t.locale=function(){return this._locale},t.setLocale=function(e){this._locale=e},t.startOptional=function(){this._parsed.push(this.currentParsed().copy())},t.endOptional=function(e){e?this._parsed.splice(this._parsed.length-2,1):this._parsed.splice(this._parsed.length-1,1)},t.isCaseSensitive=function(){return this._caseSensitive},t.setCaseSensitive=function(e){this._caseSensitive=e},t.subSequenceEquals=function(e,t,n,r,i){if(t+i>e.length||r+i>n.length)return!1;this.isCaseSensitive()||(e=e.toLowerCase(),n=n.toLowerCase());for(var a=0;a<i;a++){if(e[t+a]!==n[r+a])return!1}return!0},t.charEquals=function(e,t){return this.isCaseSensitive()?e===t:this.charEqualsIgnoreCase(e,t)},t.charEqualsIgnoreCase=function(e,t){return e===t||e.toLowerCase()===t.toLowerCase()},t.setParsedField=function(e,t,n,r){var i=this.currentParsed().fieldValues,a=i.get(e);return i.set(e,t),null!=a&&a!==t?~n:r},t.setParsedZone=function(e){Tr(e,"zone"),this.currentParsed().zone=e},t.getParsed=function(e){return this.currentParsed().fieldValues.get(e)},t.toParsed=function(){return this.currentParsed()},t.currentParsed=function(){return this._parsed[this._parsed.length-1]},t.setParsedLeapSecond=function(){this.currentParsed().leapSecond=!0},t.getEffectiveChronology=function(){var e=this.currentParsed().chrono;return null==e&&null==(e=this._overrideChronology)&&(e=da.INSTANCE),e},e}(),di=function(e){function t(t){var n;return(n=e.call(this)||this).chrono=null,n.zone=null,n.fieldValues=new Xr,n.leapSecond=!1,n.dateTimeParseContext=t,n}Er(t,e);var n=t.prototype;return n.copy=function(){var e=new t;return e.chrono=this.chrono,e.zone=this.zone,e.fieldValues.putAll(this.fieldValues),e.leapSecond=this.leapSecond,e.dateTimeParseContext=this.dateTimeParseContext,e},n.toString=function(){return this.fieldValues+", "+this.chrono+", "+this.zone},n.isSupported=function(e){return this.fieldValues.containsKey(e)},n.get=function(e){var t=this.fieldValues.get(e);return Mr(null!=t),t},n.query=function(t){return t===Ur.chronology()?this.chrono:t===Ur.zoneId()||t===Ur.zone()?this.zone:e.prototype.query.call(this,t)},n.toBuilder=function(){var e=new li;return e.fieldValues.putAll(this.fieldValues),e.chrono=this.dateTimeParseContext.getEffectiveChronology(),null!=this.zone?e.zone=this.zone:e.zone=this.overrideZone,e.leapSecond=this.leapSecond,e.excessDays=this.excessDays,e},t}(ei),fi=function(){function e(t,n,r){2===arguments.length&&arguments[1]instanceof Qi?(this._temporal=e.adjust(t,n),this._locale=n.locale(),this._symbols=n.decimalStyle()):(this._temporal=t,this._locale=n,this._symbols=r),this._optional=0}e.adjust=function(e,t){return e};var t=e.prototype;return t.symbols=function(){return this._symbols},t.startOptional=function(){this._optional++},t.endOptional=function(){this._optional--},t.getValueQuery=function(e){var t=this._temporal.query(e);if(null==t&&0===this._optional)throw new pr("Unable to extract value: "+this._temporal);return t},t.getValue=function(e){try{return this._temporal.getLong(e)}catch(e){if(e instanceof pr&&this._optional>0)return null;throw e}},t.temporal=function(){return this._temporal},t.locale=function(){return this._locale},t.setDateTime=function(e){this._temporal=e},t.setLocale=function(e){this._locale=e},e}(),hi={},pi=[0,90,181,273,0,91,182,274],mi=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n._isIso=function(){return!0},t._getWeekRangeByLocalDate=function(e){var n=t._getWeekBasedYear(e);return Pr.of(1,t._getWeekRangeByYear(n))},t._getWeekRangeByYear=function(e){var t=ga.of(e,1,1);return t.dayOfWeek()===jr.THURSDAY||t.dayOfWeek()===jr.WEDNESDAY&&t.isLeapYear()?53:52},t._getWeek=function(e){var n=e.dayOfWeek().ordinal(),r=e.dayOfYear()-1,i=r+(3-n),a=i-7*Dr.intDiv(i,7)-3;if(a<-3&&(a+=7),r<a)return t._getWeekRangeByLocalDate(e.withDayOfYear(180).minusYears(1)).maximum();var o=Dr.intDiv(r-a,7)+1;return 53===o&&!1===(-3===a||-2===a&&e.isLeapYear())&&(o=1),o},t._getWeekBasedYear=function(e){var t=e.year(),n=e.dayOfYear();if(n<=3)n-e.dayOfWeek().ordinal()<-2&&t--;else if(n>=363){var r=e.dayOfWeek().ordinal();(n=n-363-(e.isLeapYear()?1:0))-r>=0&&t++}return t},n.displayName=function(){return this.toString()},n.resolve=function(){return null},n.name=function(){return this.toString()},t}(Zr),_i=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.toString=function(){return"DayOfQuarter"},n.baseUnit=function(){return Rr.DAYS},n.rangeUnit=function(){return wi},n.range=function(){return Pr.of(1,90,92)},n.isSupportedBy=function(e){return e.isSupported(Fr.DAY_OF_YEAR)&&e.isSupported(Fr.MONTH_OF_YEAR)&&e.isSupported(Fr.YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: DayOfQuarter");var t=e.getLong(bi);if(1===t){var n=e.getLong(Fr.YEAR);return da.isLeapYear(n)?Pr.of(1,91):Pr.of(1,90)}return 2===t?Pr.of(1,91):3===t||4===t?Pr.of(1,92):this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: DayOfQuarter");var t=e.get(Fr.DAY_OF_YEAR),n=e.get(Fr.MONTH_OF_YEAR),r=e.getLong(Fr.YEAR);return t-pi[Dr.intDiv(n-1,3)+(da.isLeapYear(r)?4:0)]},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(Fr.DAY_OF_YEAR,e.getLong(Fr.DAY_OF_YEAR)+(t-n))},n.resolve=function(e,t,n){var r=e.get(Fr.YEAR),i=e.get(bi);if(null==r||null==i)return null;var a,o=Fr.YEAR.checkValidIntValue(r),s=e.get(Ei);if(n===Qr.LENIENT){var u=i;a=(a=(a=ga.of(o,1,1)).plusMonths(Dr.safeMultiply(Dr.safeSubtract(u,1),3))).plusDays(Dr.safeSubtract(s,1))}else{var l=bi.range().checkValidIntValue(i,bi);if(n===Qr.STRICT){var c=92;1===l?c=da.isLeapYear(o)?91:90:2===l&&(c=91),Pr.of(1,c).checkValidValue(s,this)}else this.range().checkValidValue(s,this);a=ga.of(o,3*(l-1)+1,1).plusDays(s-1)}return e.remove(this),e.remove(Fr.YEAR),e.remove(bi),a},t}(mi),yi=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.toString=function(){return"QuarterOfYear"},n.baseUnit=function(){return wi},n.rangeUnit=function(){return Rr.YEARS},n.range=function(){return Pr.of(1,4)},n.isSupportedBy=function(e){return e.isSupported(Fr.MONTH_OF_YEAR)&&this._isIso(e)},n.rangeRefinedBy=function(e){return this.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: QuarterOfYear");var t=e.getLong(Fr.MONTH_OF_YEAR);return Dr.intDiv(t+2,3)},n.adjustInto=function(e,t){var n=this.getFrom(e);return this.range().checkValidValue(t,this),e.with(Fr.MONTH_OF_YEAR,e.getLong(Fr.MONTH_OF_YEAR)+3*(t-n))},t}(mi),gi=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.toString=function(){return"WeekOfWeekBasedYear"},n.baseUnit=function(){return Rr.WEEKS},n.rangeUnit=function(){return Ti},n.range=function(){return Pr.of(1,52,53)},n.isSupportedBy=function(e){return e.isSupported(Fr.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: WeekOfWeekBasedYear");return mi._getWeekRangeByLocalDate(ga.from(e))},n.getFrom=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: WeekOfWeekBasedYear");return mi._getWeek(ga.from(e))},n.adjustInto=function(e,t){return this.range().checkValidValue(t,this),e.plus(Dr.safeSubtract(t,this.getFrom(e)),Rr.WEEKS)},n.resolve=function(e,t,n){var r=e.get(Mi),i=e.get(Fr.DAY_OF_WEEK);if(null==r||null==i)return null;var a,o=Mi.range().checkValidIntValue(r,Mi),s=e.get(Si);if(n===Qr.LENIENT){var u=i,l=0;u>7?(l=Dr.intDiv(u-1,7),u=Dr.intMod(u-1,7)+1):u<1&&(l=Dr.intDiv(u,7)-1,u=Dr.intMod(u,7)+7),a=ga.of(o,1,4).plusWeeks(s-1).plusWeeks(l).with(Fr.DAY_OF_WEEK,u)}else{var c=Fr.DAY_OF_WEEK.checkValidIntValue(i);if(n===Qr.STRICT){var d=ga.of(o,1,4);mi._getWeekRangeByLocalDate(d).checkValidValue(s,this)}else this.range().checkValidValue(s,this);a=ga.of(o,1,4).plusWeeks(s-1).with(Fr.DAY_OF_WEEK,c)}return e.remove(this),e.remove(Mi),e.remove(Fr.DAY_OF_WEEK),a},n.displayName=function(){return"Week"},t}(mi),vi=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.toString=function(){return"WeekBasedYear"},n.baseUnit=function(){return Ti},n.rangeUnit=function(){return Rr.FOREVER},n.range=function(){return Fr.YEAR.range()},n.isSupportedBy=function(e){return e.isSupported(Fr.EPOCH_DAY)&&this._isIso(e)},n.rangeRefinedBy=function(e){return Fr.YEAR.range()},n.getFrom=function(e){if(!1===e.isSupported(this))throw new _r("Unsupported field: WeekBasedYear");return mi._getWeekBasedYear(ga.from(e))},n.adjustInto=function(e,t){if(!1===this.isSupportedBy(e))throw new _r("Unsupported field: WeekBasedYear");var n=this.range().checkValidIntValue(t,Mi),r=ga.from(e),i=r.get(Fr.DAY_OF_WEEK),a=mi._getWeek(r);53===a&&52===mi._getWeekRangeByYear(n)&&(a=52);var o=ga.of(n,1,4),s=i-o.get(Fr.DAY_OF_WEEK)+7*(a-1);return o=o.plusDays(s),e.with(o)},t}(mi),Ai=function(e){function t(t,n){var r;return(r=e.call(this)||this)._name=t,r._duration=n,r}Er(t,e);var n=t.prototype;return n.duration=function(){return this._duration},n.isDurationEstimated=function(){return!0},n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n.isSupportedBy=function(e){return e.isSupported(Fr.EPOCH_DAY)},n.addTo=function(e,t){switch(this){case Ti:var n=Dr.safeAdd(e.get(Mi),t);return e.with(Mi,n);case wi:return e.plus(Dr.intDiv(t,256),Rr.YEARS).plus(3*Dr.intMod(t,256),Rr.MONTHS);default:throw new vr("Unreachable")}},n.between=function(e,t){switch(this){case Ti:return Dr.safeSubtract(t.getLong(Mi),e.getLong(Mi));case wi:return Dr.intDiv(e.until(t,Rr.MONTHS),3);default:throw new vr("Unreachable")}},n.toString=function(){return this._name},t}(xr),Ei=null,bi=null,Si=null,Mi=null,Ti=null,wi=null;
|
|
75
|
-
/**
|
|
76
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
77
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
78
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
79
|
-
*/
|
|
80
|
-
var Oi=function(){function e(e,t,n,r){this._zeroDigit=e,this._zeroDigitCharCode=e.charCodeAt(0),this._positiveSign=t,this._negativeSign=n,this._decimalSeparator=r}var t=e.prototype;return t.positiveSign=function(){return this._positiveSign},t.withPositiveSign=function(t){return t===this._positiveSign?this:new e(this._zeroDigit,t,this._negativeSign,this._decimalSeparator)},t.negativeSign=function(){return this._negativeSign},t.withNegativeSign=function(t){return t===this._negativeSign?this:new e(this._zeroDigit,this._positiveSign,t,this._decimalSeparator)},t.zeroDigit=function(){return this._zeroDigit},t.withZeroDigit=function(t){return t===this._zeroDigit?this:new e(t,this._positiveSign,this._negativeSign,this._decimalSeparator)},t.decimalSeparator=function(){return this._decimalSeparator},t.withDecimalSeparator=function(t){return t===this._decimalSeparator?this:new e(this._zeroDigit,this._positiveSign,this._negativeSign,t)},t.convertToDigit=function(e){var t=e.charCodeAt(0)-this._zeroDigitCharCode;return t>=0&&t<=9?t:-1},t.convertNumberToI18N=function(e){if("0"===this._zeroDigit)return e;for(var t=this._zeroDigitCharCode-"0".charCodeAt(0),n="",r=0;r<e.length;r++)n+=String.fromCharCode(e.charCodeAt(r)+t);return n},t.equals=function(t){return this===t||t instanceof e&&(this._zeroDigit===t._zeroDigit&&this._positiveSign===t._positiveSign&&this._negativeSign===t._negativeSign&&this._decimalSeparator===t._decimalSeparator)},t.hashCode=function(){return this._zeroDigit+this._positiveSign+this._negativeSign+this._decimalSeparator},t.toString=function(){return"DecimalStyle["+this._zeroDigit+this._positiveSign+this._negativeSign+this._decimalSeparator+"]"},e.of=function(){throw new Error("not yet supported")},e.availableLocales=function(){throw new Error("not yet supported")},e}();Oi.STANDARD=new Oi("0","+","-",".");var Ni=function(e){function t(){return e.apply(this,arguments)||this}return Er(t,e),t.prototype.parse=function(e,n,r){switch(this){case t.NORMAL:return!e||!n;case t.ALWAYS:case t.EXCEEDS_PAD:return!0;default:return!n&&!r}},t}($r);Ni.NORMAL=new Ni("NORMAL"),Ni.NEVER=new Ni("NEVER"),Ni.ALWAYS=new Ni("ALWAYS"),Ni.EXCEEDS_PAD=new Ni("EXCEEDS_PAD"),Ni.NOT_NEGATIVE=new Ni("NOT_NEGATIVE");var Ci=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.isStandalone=function(){switch(this){case t.FULL_STANDALONE:case t.SHORT_STANDALONE:case t.NARROW_STANDALONE:return!0;default:return!1}},n.asStandalone=function(){switch(this){case t.FULL:return t.FULL_STANDALONE;case t.SHORT:return t.SHORT_STANDALONE;case t.NARROW:return t.NARROW_STANDALONE;default:return this}},n.asNormal=function(){switch(this){case t.FULL_STANDALONE:return t.FULL;case t.SHORT_STANDALONE:return t.SHORT;case t.NARROW_STANDALONE:return t.NARROW;default:return this}},t}($r);Ci.FULL=new Ci("FULL"),Ci.FULL_STANDALONE=new Ci("FULL_STANDALONE"),Ci.SHORT=new Ci("SHORT"),Ci.SHORT_STANDALONE=new Ci("SHORT_STANDALONE"),Ci.NARROW=new Ci("NARROW"),Ci.NARROW_STANDALONE=new Ci("NARROW_STANDALONE");
|
|
81
|
-
/**
|
|
82
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
83
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
84
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
85
|
-
*/
|
|
86
|
-
var Li=function(){function e(e){if(e.length>1)throw new gr('invalid literal, too long: "'+e+'"');this._literal=e}var t=e.prototype;return t.print=function(e,t){return t.append(this._literal),!0},t.parse=function(e,t,n){if(n===t.length)return~n;var r=t.charAt(n);return!1===e.charEquals(this._literal,r)?~n:n+this._literal.length},t.toString=function(){return"'"===this._literal?"''":"'"+this._literal+"'"},e}(),Di=function(){function e(e,t){this._printerParsers=e,this._optional=t}var t=e.prototype;return t.withOptional=function(t){return t===this._optional?this:new e(this._printerParsers,t)},t.print=function(e,t){var n=t.length();this._optional&&e.startOptional();try{for(var r=0;r<this._printerParsers.length;r++){if(!1===this._printerParsers[r].print(e,t))return t.setLength(n),!0}}finally{this._optional&&e.endOptional()}return!0},t.parse=function(e,t,n){if(this._optional){e.startOptional();for(var r=n,i=0;i<this._printerParsers.length;i++){if((r=this._printerParsers[i].parse(e,t,r))<0)return e.endOptional(!1),n}return e.endOptional(!0),r}for(var a=0;a<this._printerParsers.length;a++){if((n=this._printerParsers[a].parse(e,t,n))<0)break}return n},t.toString=function(){var e="";if(null!=this._printerParsers){e+=this._optional?"[":"(";for(var t=0;t<this._printerParsers.length;t++){e+=this._printerParsers[t].toString()}e+=this._optional?"]":")"}return e},e}(),$i=function(){function e(e,t,n,r){if(Tr(e,"field"),!1===e.range().isFixed())throw new gr("Field must have a fixed set of values: "+e);if(t<0||t>9)throw new gr("Minimum width must be from 0 to 9 inclusive but was "+t);if(n<1||n>9)throw new gr("Maximum width must be from 1 to 9 inclusive but was "+n);if(n<t)throw new gr("Maximum width must exceed or equal the minimum width but "+n+" < "+t);this.field=e,this.minWidth=t,this.maxWidth=n,this.decimalPoint=r}var t=e.prototype;return t.print=function(e,t){var n=e.getValue(this.field);if(null===n)return!1;var r=e.symbols();if(0===n){if(this.minWidth>0){this.decimalPoint&&t.append(r.decimalSeparator());for(var i=0;i<this.minWidth;i++)t.append(r.zeroDigit())}}else{var a=this.convertToFraction(n,r.zeroDigit()),o=Math.min(Math.max(a.length,this.minWidth),this.maxWidth);if(1*(a=a.substr(0,o))>0)for(;a.length>this.minWidth&&"0"===a[a.length-1];)a=a.substr(0,a.length-1);var s=a;s=r.convertNumberToI18N(s),this.decimalPoint&&t.append(r.decimalSeparator()),t.append(s)}return!0},t.parse=function(e,t,n){var r=e.isStrict()?this.minWidth:0,i=e.isStrict()?this.maxWidth:9,a=t.length;if(n===a)return r>0?~n:n;if(this.decimalPoint){if(t[n]!==e.symbols().decimalSeparator())return r>0?~n:n;n++}var o=n+r;if(o>a)return~n;for(var s=Math.min(n+i,a),u=0,l=n;l<s;){var c=t.charAt(l++),d=e.symbols().convertToDigit(c);if(d<0){if(l<o)return~n;l--;break}u=10*u+d}var f=l-n,h=Math.pow(10,f),p=this.convertFromFraction(u,h);return e.setParsedField(this.field,p,n,l)},t.convertToFraction=function(e,t){var n=this.field.range();n.checkValidValue(e,this.field);for(var r=n.minimum(),i=n.maximum()-r+1,a=e-r,o=""+Dr.intDiv(1e9*a,i);o.length<9;)o=t+o;return o},t.convertFromFraction=function(e,t){var n=this.field.range(),r=n.minimum(),i=n.maximum()-r+1;return Dr.intDiv(e*i,t)},t.toString=function(){var e=this.decimalPoint?",DecimalPoint":"";return"Fraction("+this.field+","+this.minWidth+","+this.maxWidth+e+")"},e}(),Ii=[0,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9],xi=function(){function e(e,t,n,r,i){void 0===i&&(i=0),this._field=e,this._minWidth=t,this._maxWidth=n,this._signStyle=r,this._subsequentWidth=i}var t=e.prototype;return t.field=function(){return this._field},t.minWidth=function(){return this._minWidth},t.maxWidth=function(){return this._maxWidth},t.signStyle=function(){return this._signStyle},t.withFixedWidth=function(){return-1===this._subsequentWidth?this:new e(this._field,this._minWidth,this._maxWidth,this._signStyle,-1)},t.withSubsequentWidth=function(t){return new e(this._field,this._minWidth,this._maxWidth,this._signStyle,this._subsequentWidth+t)},t._isFixedWidth=function(){return-1===this._subsequentWidth||this._subsequentWidth>0&&this._minWidth===this._maxWidth&&this._signStyle===Ni.NOT_NEGATIVE},t.print=function(e,t){var n=e.getValue(this._field);if(null==n)return!1;var r=this._getValue(e,n),i=e.symbols(),a=""+Math.abs(r);if(a.length>this._maxWidth)throw new pr("Field "+this._field+" cannot be printed as the value "+r+" exceeds the maximum print width of "+this._maxWidth);if(a=i.convertNumberToI18N(a),r>=0)switch(this._signStyle){case Ni.EXCEEDS_PAD:this._minWidth<15&&r>=Ii[this._minWidth]&&t.append(i.positiveSign());break;case Ni.ALWAYS:t.append(i.positiveSign())}else switch(this._signStyle){case Ni.NORMAL:case Ni.EXCEEDS_PAD:case Ni.ALWAYS:t.append(i.negativeSign());break;case Ni.NOT_NEGATIVE:throw new pr("Field "+this._field+" cannot be printed as the value "+r+" cannot be negative according to the SignStyle")}for(var o=0;o<this._minWidth-a.length;o++)t.append(i.zeroDigit());return t.append(a),!0},t.parse=function(e,t,n){var r=t.length;if(n===r)return~n;Mr(n>=0&&n<r);var i=t.charAt(n),a=!1,o=!1;if(i===e.symbols().positiveSign()){if(!1===this._signStyle.parse(!0,e.isStrict(),this._minWidth===this._maxWidth))return~n;o=!0,n++}else if(i===e.symbols().negativeSign()){if(!1===this._signStyle.parse(!1,e.isStrict(),this._minWidth===this._maxWidth))return~n;a=!0,n++}else if(this._signStyle===Ni.ALWAYS&&e.isStrict())return~n;var s=e.isStrict()||this._isFixedWidth()?this._minWidth:1,u=n+s;if(u>r)return~n;for(var l=(e.isStrict()||this._isFixedWidth()?this._maxWidth:9)+Math.max(this._subsequentWidth,0),c=0,d=n,f=0;f<2;f++){for(var h=Math.min(d+l,r);d<h;){var p=t.charAt(d++),m=e.symbols().convertToDigit(p);if(m<0){if(--d<u)return~n;break}if(d-n>15)throw new yr("number text exceeds length");c=10*c+m}if(!(this._subsequentWidth>0&&0===f))break;var _=d-n;l=Math.max(s,_-this._subsequentWidth),d=n,c=0}if(a){if(0===c&&e.isStrict())return~(n-1);0!==c&&(c=-c)}else if(this._signStyle===Ni.EXCEEDS_PAD&&e.isStrict()){var y=d-n;if(o){if(y<=this._minWidth)return~(n-1)}else if(y>this._minWidth)return~n}return this._setValue(e,c,n,d)},t._getValue=function(e,t){return t},t._setValue=function(e,t,n,r){return e.setParsedField(this._field,t,n,r)},t.toString=function(){return 1===this._minWidth&&15===this._maxWidth&&this._signStyle===Ni.NORMAL?"Value("+this._field+")":this._minWidth===this._maxWidth&&this._signStyle===Ni.NOT_NEGATIVE?"Value("+this._field+","+this._minWidth+")":"Value("+this._field+","+this._minWidth+","+this._maxWidth+","+this._signStyle+")"},e}(),ki=function(e){function t(t,n,r,i,a){var o;if(o=e.call(this,t,n,r,Ni.NOT_NEGATIVE)||this,n<1||n>10)throw new gr("The width must be from 1 to 10 inclusive but was "+n);if(r<1||r>10)throw new gr("The maxWidth must be from 1 to 10 inclusive but was "+r);if(r<n)throw new gr("The maxWidth must be greater than the width");if(null===a){if(!1===t.range().isValidValue(i))throw new gr("The base value must be within the range of the field");if(i+Ii[n]>Dr.MAX_SAFE_INTEGER)throw new pr("Unable to add printer-parser as the range exceeds the capacity of an int")}return o._baseValue=i,o._baseDate=a,o}Er(t,e);var n=t.prototype;return n._getValue=function(e,t){var n=Math.abs(t),r=this._baseValue;null!==this._baseDate&&(e.temporal(),r=da.INSTANCE.date(this._baseDate).get(this._field));return t>=r&&t<r+Ii[this._minWidth]?n%Ii[this._minWidth]:n%Ii[this._maxWidth]},n._setValue=function(e,t,n,r){var i=this._baseValue;null!=this._baseDate&&(i=e.getEffectiveChronology().date(this._baseDate).get(this._field));if(r-n===this._minWidth&&t>=0){var a=Ii[this._minWidth],o=i-i%a;(t=i>0?o+t:o-t)<i&&(t+=a)}return e.setParsedField(this._field,t,n,r)},n.withFixedWidth=function(){return-1===this._subsequentWidth?this:new t(this._field,this._minWidth,this._maxWidth,this._baseValue,this._baseDate)},n.withSubsequentWidth=function(e){return new t(this._field,this._minWidth,this._maxWidth,this._baseValue,this._baseDate,this._subsequentWidth+e)},n.isFixedWidth=function(t){return!1!==t.isStrict()&&e.prototype.isFixedWidth.call(this,t)},n.toString=function(){return"ReducedValue("+this._field+","+this._minWidth+","+this._maxWidth+","+(null!=this._baseDate?this._baseDate:this._baseValue)+")"},t}(xi),zi=["+HH","+HHmm","+HH:mm","+HHMM","+HH:MM","+HHMMss","+HH:MM:ss","+HHMMSS","+HH:MM:SS"],Ri=function(){function e(e,t){Tr(e,"noOffsetText"),Tr(t,"pattern"),this.noOffsetText=e,this.type=this._checkPattern(t)}var t=e.prototype;return t._checkPattern=function(e){for(var t=0;t<zi.length;t++)if(zi[t]===e)return t;throw new gr("Invalid zone offset pattern: "+e)},t.print=function(e,t){var n=e.getValue(Fr.OFFSET_SECONDS);if(null==n)return!1;var r=Dr.safeToInt(n);if(0===r)t.append(this.noOffsetText);else{var i=Math.abs(Dr.intMod(Dr.intDiv(r,3600),100)),a=Math.abs(Dr.intMod(Dr.intDiv(r,60),60)),o=Math.abs(Dr.intMod(r,60)),s=t.length(),u=i;t.append(r<0?"-":"+").appendChar(Dr.intDiv(i,10)+"0").appendChar(Dr.intMod(i,10)+"0"),(this.type>=3||this.type>=1&&a>0)&&(t.append(this.type%2==0?":":"").appendChar(Dr.intDiv(a,10)+"0").appendChar(a%10+"0"),u+=a,(this.type>=7||this.type>=5&&o>0)&&(t.append(this.type%2==0?":":"").appendChar(Dr.intDiv(o,10)+"0").appendChar(o%10+"0"),u+=o)),0===u&&(t.setLength(s),t.append(this.noOffsetText))}return!0},t.parse=function(e,t,n){var r=t.length,i=this.noOffsetText.length;if(0===i){if(n===r)return e.setParsedField(Fr.OFFSET_SECONDS,0,n,n)}else{if(n===r)return~n;if(e.subSequenceEquals(t,n,this.noOffsetText,0,i))return e.setParsedField(Fr.OFFSET_SECONDS,0,n,n+i)}var a=t[n];if("+"===a||"-"===a){var o="-"===a?-1:1,s=[0,0,0,0];if(s[0]=n+1,!1===(this._parseNumber(s,1,t,!0)||this._parseNumber(s,2,t,this.type>=3)||this._parseNumber(s,3,t,!1))){var u=Dr.safeZero(o*(3600*s[1]+60*s[2]+s[3]));return e.setParsedField(Fr.OFFSET_SECONDS,u,n,s[0])}}return 0===i?e.setParsedField(Fr.OFFSET_SECONDS,0,n,n+i):~n},t._parseNumber=function(e,t,n,r){if((this.type+3)/2<t)return!1;var i=e[0];if(this.type%2==0&&t>1){if(i+1>n.length||":"!==n[i])return r;i++}if(i+2>n.length)return r;var a=n[i++],o=n[i++];if(a<"0"||a>"9"||o<"0"||o>"9")return r;var s=10*(a.charCodeAt(0)-48)+(o.charCodeAt(0)-48);return s<0||s>59?r:(e[t]=s,e[0]=i,!1)},t.toString=function(){var e=this.noOffsetText.replace("'","''");return"Offset("+zi[this.type]+",'"+e+"')"},e}();
|
|
87
|
-
/**
|
|
88
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
89
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
90
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
91
|
-
*/Ri.INSTANCE_ID=new Ri("Z","+HH:MM:ss"),Ri.PATTERNS=zi;
|
|
92
|
-
/**
|
|
93
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
94
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
95
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
96
|
-
*/
|
|
97
|
-
var Zi=function(){function e(e,t,n){this._printerParser=e,this._padWidth=t,this._padChar=n}var t=e.prototype;return t.print=function(e,t){var n=t.length();if(!1===this._printerParser.print(e,t))return!1;var r=t.length()-n;if(r>this._padWidth)throw new pr("Cannot print as output of "+r+" characters exceeds pad width of "+this._padWidth);for(var i=0;i<this._padWidth-r;i++)t.insert(n,this._padChar);return!0},t.parse=function(e,t,n){var r=e.isStrict(),i=e.isCaseSensitive();if(Mr(!(n>t.length)),Mr(n>=0),n===t.length)return~n;var a=n+this._padWidth;if(a>t.length){if(r)return~n;a=t.length}for(var o=n;o<a&&(i?t[o]===this._padChar:e.charEquals(t[o],this._padChar));)o++;t=t.substring(0,a);var s=this._printerParser.parse(e,t,o);return s!==a&&r?~(n+o):s},t.toString=function(){return"Pad("+this._printerParser+","+this._padWidth+(" "===this._padChar?")":",'"+this._padChar+"')")},e}(),Pi=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.print=function(){return!0},n.parse=function(e,n,r){switch(this){case t.SENSITIVE:e.setCaseSensitive(!0);break;case t.INSENSITIVE:e.setCaseSensitive(!1);break;case t.STRICT:e.setStrict(!0);break;case t.LENIENT:e.setStrict(!1)}return r},n.toString=function(){switch(this){case t.SENSITIVE:return"ParseCaseSensitive(true)";case t.INSENSITIVE:return"ParseCaseSensitive(false)";case t.STRICT:return"ParseStrict(true)";case t.LENIENT:return"ParseStrict(false)"}},t}($r);Pi.SENSITIVE=new Pi("SENSITIVE"),Pi.INSENSITIVE=new Pi("INSENSITIVE"),Pi.STRICT=new Pi("STRICT"),Pi.LENIENT=new Pi("LENIENT");
|
|
98
|
-
/**
|
|
99
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
100
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
101
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
102
|
-
*/
|
|
103
|
-
var Fi=function(){function e(e){this._literal=e}var t=e.prototype;return t.print=function(e,t){return t.append(this._literal),!0},t.parse=function(e,t,n){return Mr(!(n>t.length||n<0)),!1===e.subSequenceEquals(t,n,this._literal,0,this._literal.length)?~n:n+this._literal.length},t.toString=function(){return"'"+this._literal.replace("'","''")+"'"},e}(),Ui=function(){function e(){}return e.getRules=function(e){throw new pr("unsupported ZoneId:"+e)},e.getAvailableZoneIds=function(){return[]},e}(),Bi=function(e){function t(t,n){var r;return(r=e.call(this)||this)._id=t,r._rules=n,r}Er(t,e),t.ofId=function(e){return new t(e,Ui.getRules(e))};var n=t.prototype;return n.id=function(){return this._id},n.rules=function(){return this._rules},t}(ri),Vi=function(){function e(e,t){this.query=e,this.description=t}var t=e.prototype;return t.print=function(e,t){var n=e.getValueQuery(this.query);return null!=n&&(t.append(n.id()),!0)},t.parse=function(e,t,n){var r=t.length;if(n>r)return~n;if(n===r)return~n;var i=t.charAt(n);if("+"===i||"-"===i){var a=e.copy(),o=Ri.INSTANCE_ID.parse(a,t,n);if(o<0)return o;var s=a.getParsed(Fr.OFFSET_SECONDS),u=ui.ofTotalSeconds(s);return e.setParsedZone(u),o}if(r>=n+2){var l=t.charAt(n+1);if(e.charEquals(i,"U")&&e.charEquals(l,"T"))return r>=n+3&&e.charEquals(t.charAt(n+2),"C")?this._parsePrefixedOffset(e,t,n,n+3):this._parsePrefixedOffset(e,t,n,n+2);if(e.charEquals(i,"G")&&r>=n+3&&e.charEquals(l,"M")&&e.charEquals(t.charAt(n+2),"T"))return this._parsePrefixedOffset(e,t,n,n+3)}if("SYSTEM"===t.substr(n,6))return e.setParsedZone(ri.systemDefault()),n+6;if(e.charEquals(i,"Z"))return e.setParsedZone(ui.UTC),n+1;var c=Ui.getAvailableZoneIds();ji.size!==c.length&&(ji=Hi.createTreeMap(c));for(var d=r-n,f=ji.treeMap,h=null,p=0;null!=f;){var m=t.substr(n,Math.min(f.length,d));null!=(f=f.get(m))&&f.isLeaf&&(h=m,p=f.length)}return null!=h?(e.setParsedZone(Bi.ofId(h)),n+p):~n},t._parsePrefixedOffset=function(e,t,n,r){var i=t.substring(n,r).toUpperCase(),a=e.copy();if(r<t.length&&e.charEquals(t.charAt(r),"Z"))return e.setParsedZone(ri.ofOffset(i,ui.UTC)),r;var o=Ri.INSTANCE_ID.parse(a,t,r);if(o<0)return e.setParsedZone(ri.ofOffset(i,ui.UTC)),r;var s=a.getParsed(Fr.OFFSET_SECONDS),u=ui.ofTotalSeconds(s);return e.setParsedZone(ri.ofOffset(i,u)),o},t.toString=function(){return this.description},e}(),Hi=function(){function e(e,t){this.size=e,this.treeMap=t}return e.createTreeMap=function(t){for(var n=t.sort((function(e,t){return e.length-t.length})),r=new Yi(n[0].length,!1),i=0;i<n.length;i++)r.add(n[i]);return new e(n.length,r)},e}(),Yi=function(){function e(e,t){void 0===e&&(e=0),void 0===t&&(t=!1),this.length=e,this.isLeaf=t,this._treeMap={}}var t=e.prototype;return t.add=function(t){var n=t.length;if(n===this.length)this._treeMap[t]=new e(n,!0);else if(n>this.length){var r=t.substr(0,this.length),i=this._treeMap[r];null==i&&(i=new e(n,!1),this._treeMap[r]=i),i.add(t)}},t.get=function(e){return this._treeMap[e]},e}(),ji=new Hi([]),Gi=15,Wi=function(){function e(){this._active=this,this._parent=null,this._printerParsers=[],this._optional=!1,this._padNextWidth=0,this._padNextChar=null,this._valueParserIndex=-1}e._of=function(t,n){Tr(t,"parent"),Tr(n,"optional");var r=new e;return r._parent=t,r._optional=n,r};var t=e.prototype;return t.parseCaseSensitive=function(){return this._appendInternalPrinterParser(Pi.SENSITIVE),this},t.parseCaseInsensitive=function(){return this._appendInternalPrinterParser(Pi.INSENSITIVE),this},t.parseStrict=function(){return this._appendInternalPrinterParser(Pi.STRICT),this},t.parseLenient=function(){return this._appendInternalPrinterParser(Pi.LENIENT),this},t.appendValue=function(){return 1===arguments.length?this._appendValue1.apply(this,arguments):2===arguments.length?this._appendValue2.apply(this,arguments):this._appendValue4.apply(this,arguments)},t._appendValue1=function(e){return Tr(e),this._appendValuePrinterParser(new xi(e,1,Gi,Ni.NORMAL)),this},t._appendValue2=function(e,t){if(Tr(e),t<1||t>Gi)throw new gr("The width must be from 1 to 15 inclusive but was "+t);var n=new xi(e,t,t,Ni.NOT_NEGATIVE);return this._appendValuePrinterParser(n),this},t._appendValue4=function(e,t,n,r){if(Tr(e),Tr(r),t===n&&r===Ni.NOT_NEGATIVE)return this._appendValue2(e,n);if(t<1||t>Gi)throw new gr("The minimum width must be from 1 to 15 inclusive but was "+t);if(n<1||n>Gi)throw new gr("The minimum width must be from 1 to 15 inclusive but was "+n);if(n<t)throw new gr("The maximum width must exceed or equal the minimum width but "+n+" < "+t);var i=new xi(e,t,n,r);return this._appendValuePrinterParser(i),this},t.appendValueReduced=function(){return 4===arguments.length&&arguments[3]instanceof ti?this._appendValueReducedFieldWidthMaxWidthBaseDate.apply(this,arguments):this._appendValueReducedFieldWidthMaxWidthBaseValue.apply(this,arguments)},t._appendValueReducedFieldWidthMaxWidthBaseValue=function(e,t,n,r){Tr(e,"field");var i=new ki(e,t,n,r,null);return this._appendValuePrinterParser(i),this},t._appendValueReducedFieldWidthMaxWidthBaseDate=function(e,t,n,r){Tr(e,"field"),Tr(r,"baseDate"),wr(r,ti,"baseDate");var i=new ki(e,t,n,0,r);return this._appendValuePrinterParser(i),this},t._appendValuePrinterParser=function(e){if(Mr(null!=e),this._active._valueParserIndex>=0&&this._active._printerParsers[this._active._valueParserIndex]instanceof xi){var t=this._active._valueParserIndex,n=this._active._printerParsers[t];e.minWidth()===e.maxWidth()&&e.signStyle()===Ni.NOT_NEGATIVE?(n=n.withSubsequentWidth(e.maxWidth()),this._appendInternal(e.withFixedWidth()),this._active._valueParserIndex=t):(n=n.withFixedWidth(),this._active._valueParserIndex=this._appendInternal(e)),this._active._printerParsers[t]=n}else this._active._valueParserIndex=this._appendInternal(e);return this},t.appendFraction=function(e,t,n,r){return this._appendInternal(new $i(e,t,n,r)),this},t.appendInstant=function(e){if(void 0===e&&(e=-2),e<-2||e>9)throw new gr("Invalid fractional digits: "+e);return this._appendInternal(new Ji(e)),this},t.appendOffsetId=function(){return this._appendInternal(Ri.INSTANCE_ID),this},t.appendOffset=function(e,t){return this._appendInternalPrinterParser(new Ri(t,e)),this},t.appendZoneId=function(){return this._appendInternal(new Vi(Ur.zoneId(),"ZoneId()")),this},t.appendPattern=function(e){return Tr(e,"pattern"),this._parsePattern(e),this},t.appendZoneText=function(){throw new gr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendText=function(){throw new gr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendLocalizedOffset=function(){throw new gr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t.appendWeekField=function(){throw new gr("Pattern using (localized) text not implemented, use @js-joda/locale plugin!")},t._parsePattern=function(e){for(var t={G:Fr.ERA,y:Fr.YEAR_OF_ERA,u:Fr.YEAR,Q:hi.QUARTER_OF_YEAR,q:hi.QUARTER_OF_YEAR,M:Fr.MONTH_OF_YEAR,L:Fr.MONTH_OF_YEAR,D:Fr.DAY_OF_YEAR,d:Fr.DAY_OF_MONTH,F:Fr.ALIGNED_DAY_OF_WEEK_IN_MONTH,E:Fr.DAY_OF_WEEK,c:Fr.DAY_OF_WEEK,e:Fr.DAY_OF_WEEK,a:Fr.AMPM_OF_DAY,H:Fr.HOUR_OF_DAY,k:Fr.CLOCK_HOUR_OF_DAY,K:Fr.HOUR_OF_AMPM,h:Fr.CLOCK_HOUR_OF_AMPM,m:Fr.MINUTE_OF_HOUR,s:Fr.SECOND_OF_MINUTE,S:Fr.NANO_OF_SECOND,A:Fr.MILLI_OF_DAY,n:Fr.NANO_OF_SECOND,N:Fr.NANO_OF_DAY},n=0;n<e.length;n++){var r=e.charAt(n);if(r>="A"&&r<="Z"||r>="a"&&r<="z"){for(var i=n++;n<e.length&&e.charAt(n)===r;n++);var a=n-i;if("p"===r){var o=0;if(n<e.length&&((r=e.charAt(n))>="A"&&r<="Z"||r>="a"&&r<="z")){for(o=a,i=n++;n<e.length&&e.charAt(n)===r;n++);a=n-i}if(0===o)throw new gr("Pad letter 'p' must be followed by valid pad pattern: "+e);this.padNext(o)}var s=t[r];if(null!=s)this._parseField(r,a,s);else if("z"===r){if(a>4)throw new gr("Too many pattern letters: "+r);4===a?this.appendZoneText(Ci.FULL):this.appendZoneText(Ci.SHORT)}else if("V"===r){if(2!==a)throw new gr("Pattern letter count must be 2: "+r);this.appendZoneId()}else if("Z"===r)if(a<4)this.appendOffset("+HHMM","+0000");else if(4===a)this.appendLocalizedOffset(Ci.FULL);else{if(5!==a)throw new gr("Too many pattern letters: "+r);this.appendOffset("+HH:MM:ss","Z")}else if("O"===r)if(1===a)this.appendLocalizedOffset(Ci.SHORT);else{if(4!==a)throw new gr("Pattern letter count must be 1 or 4: "+r);this.appendLocalizedOffset(Ci.FULL)}else if("X"===r){if(a>5)throw new gr("Too many pattern letters: "+r);this.appendOffset(Ri.PATTERNS[a+(1===a?0:1)],"Z")}else if("x"===r){if(a>5)throw new gr("Too many pattern letters: "+r);var u=1===a?"+00":a%2==0?"+0000":"+00:00";this.appendOffset(Ri.PATTERNS[a+(1===a?0:1)],u)}else if("W"===r){if(a>1)throw new gr("Too many pattern letters: "+r);this.appendWeekField("W",a)}else if("w"===r){if(a>2)throw new gr("Too many pattern letters: "+r);this.appendWeekField("w",a)}else{if("Y"!==r)throw new gr("Unknown pattern letter: "+r);this.appendWeekField("Y",a)}n--}else if("'"===r){for(var l=n++;n<e.length;n++)if("'"===e.charAt(n)){if(!(n+1<e.length&&"'"===e.charAt(n+1)))break;n++}if(n>=e.length)throw new gr("Pattern ends with an incomplete string literal: "+e);var c=e.substring(l+1,n);0===c.length?this.appendLiteral("'"):this.appendLiteral(c.replace("''","'"))}else if("["===r)this.optionalStart();else if("]"===r){if(null===this._active._parent)throw new gr("Pattern invalid as it contains ] without previous [");this.optionalEnd()}else{if("{"===r||"}"===r||"#"===r)throw new gr("Pattern includes reserved character: '"+r+"'");this.appendLiteral(r)}}},t._parseField=function(e,t,n){switch(e){case"u":case"y":2===t?this.appendValueReduced(n,2,2,ki.BASE_DATE):t<4?this.appendValue(n,t,Gi,Ni.NORMAL):this.appendValue(n,t,Gi,Ni.EXCEEDS_PAD);break;case"M":case"Q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,Ci.SHORT);break;case 4:this.appendText(n,Ci.FULL);break;case 5:this.appendText(n,Ci.NARROW);break;default:throw new gr("Too many pattern letters: "+e)}break;case"L":case"q":switch(t){case 1:this.appendValue(n);break;case 2:this.appendValue(n,2);break;case 3:this.appendText(n,Ci.SHORT_STANDALONE);break;case 4:this.appendText(n,Ci.FULL_STANDALONE);break;case 5:this.appendText(n,Ci.NARROW_STANDALONE);break;default:throw new gr("Too many pattern letters: "+e)}break;case"e":switch(t){case 1:case 2:this.appendWeekField("e",t);break;case 3:this.appendText(n,Ci.SHORT);break;case 4:this.appendText(n,Ci.FULL);break;case 5:this.appendText(n,Ci.NARROW);break;default:throw new gr("Too many pattern letters: "+e)}break;case"c":switch(t){case 1:this.appendWeekField("c",t);break;case 2:throw new gr("Invalid number of pattern letters: "+e);case 3:this.appendText(n,Ci.SHORT_STANDALONE);break;case 4:this.appendText(n,Ci.FULL_STANDALONE);break;case 5:this.appendText(n,Ci.NARROW_STANDALONE);break;default:throw new gr("Too many pattern letters: "+e)}break;case"a":if(1!==t)throw new gr("Too many pattern letters: "+e);this.appendText(n,Ci.SHORT);break;case"E":case"G":switch(t){case 1:case 2:case 3:this.appendText(n,Ci.SHORT);break;case 4:this.appendText(n,Ci.FULL);break;case 5:this.appendText(n,Ci.NARROW);break;default:throw new gr("Too many pattern letters: "+e)}break;case"S":this.appendFraction(Fr.NANO_OF_SECOND,t,t,!1);break;case"F":if(1!==t)throw new gr("Too many pattern letters: "+e);this.appendValue(n);break;case"d":case"h":case"H":case"k":case"K":case"m":case"s":if(1===t)this.appendValue(n);else{if(2!==t)throw new gr("Too many pattern letters: "+e);this.appendValue(n,t)}break;case"D":if(1===t)this.appendValue(n);else{if(!(t<=3))throw new gr("Too many pattern letters: "+e);this.appendValue(n,t)}break;default:1===t?this.appendValue(n):this.appendValue(n,t)}},t.padNext=function(){return 1===arguments.length?this._padNext1.apply(this,arguments):this._padNext2.apply(this,arguments)},t._padNext1=function(e){return this._padNext2(e," ")},t._padNext2=function(e,t){if(e<1)throw new gr("The pad width must be at least one but was "+e);return this._active._padNextWidth=e,this._active._padNextChar=t,this._active._valueParserIndex=-1,this},t.optionalStart=function(){return this._active._valueParserIndex=-1,this._active=e._of(this._active,!0),this},t.optionalEnd=function(){if(null==this._active._parent)throw new vr("Cannot call optionalEnd() as there was no previous call to optionalStart()");if(this._active._printerParsers.length>0){var e=new Di(this._active._printerParsers,this._active._optional);this._active=this._active._parent,this._appendInternal(e)}else this._active=this._active._parent;return this},t._appendInternal=function(e){return Mr(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Zi(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.appendLiteral=function(e){return Mr(null!=e),e.length>0&&(1===e.length?this._appendInternalPrinterParser(new Li(e.charAt(0))):this._appendInternalPrinterParser(new Fi(e))),this},t._appendInternalPrinterParser=function(e){return Mr(null!=e),this._active._padNextWidth>0&&(null!=e&&(e=new Zi(e,this._active._padNextWidth,this._active._padNextChar)),this._active._padNextWidth=0,this._active._padNextChar=0),this._active._printerParsers.push(e),this._active._valueParserIndex=-1,this._active._printerParsers.length-1},t.append=function(e){return Tr(e,"formatter"),this._appendInternal(e._toPrinterParser(!1)),this},t.toFormatter=function(e){for(void 0===e&&(e=Qr.SMART);null!=this._active._parent;)this.optionalEnd();var t=new Di(this._printerParsers,!1);return new Qi(t,null,Oi.STANDARD,e,null,null,null)},e}(),qi=31556952e4,Ki=62167219200,Ji=function(){function e(e){this.fractionalDigits=e}var t=e.prototype;return t.print=function(e,t){var n=e.getValue(Fr.INSTANT_SECONDS),r=0;if(e.temporal().isSupported(Fr.NANO_OF_SECOND)&&(r=e.temporal().getLong(Fr.NANO_OF_SECOND)),null==n)return!1;var i=n,a=Fr.NANO_OF_SECOND.checkValidIntValue(r);if(i>=-62167219200){var o=i-qi+Ki,s=Dr.floorDiv(o,qi)+1,u=Dr.floorMod(o,qi),l=Aa.ofEpochSecond(u-Ki,0,ui.UTC);s>0&&t.append("+").append(s),t.append(l.toString()),0===l.second()&&t.append(":00")}else{var c=i+Ki,d=Dr.intDiv(c,qi),f=Dr.intMod(c,qi),h=Aa.ofEpochSecond(f-Ki,0,ui.UTC),p=t.length();t.append(h.toString()),0===h.second()&&t.append(":00"),d<0&&(-1e4===h.year()?t.replace(p,p+2,""+(d-1)):0===f?t.insert(p,d):t.insert(p+1,Math.abs(d)))}if(-2===this.fractionalDigits)0!==a&&(t.append("."),0===Dr.intMod(a,1e6)?t.append((""+(Dr.intDiv(a,1e6)+1e3)).substring(1)):0===Dr.intMod(a,1e3)?t.append((""+(Dr.intDiv(a,1e3)+1e6)).substring(1)):t.append((""+(a+1e9)).substring(1)));else if(this.fractionalDigits>0||-1===this.fractionalDigits&&a>0){t.append(".");for(var m=1e8,_=0;-1===this.fractionalDigits&&a>0||_<this.fractionalDigits;_++){var y=Dr.intDiv(a,m);t.append(y),a-=y*m,m=Dr.intDiv(m,10)}}return t.append("Z"),!0},t.parse=function(e,t,n){var r=e.copy(),i=this.fractionalDigits<0?0:this.fractionalDigits,a=this.fractionalDigits<0?9:this.fractionalDigits,o=(new Wi).append(Qi.ISO_LOCAL_DATE).appendLiteral("T").appendValue(Fr.HOUR_OF_DAY,2).appendLiteral(":").appendValue(Fr.MINUTE_OF_HOUR,2).appendLiteral(":").appendValue(Fr.SECOND_OF_MINUTE,2).appendFraction(Fr.NANO_OF_SECOND,i,a,!0).appendLiteral("Z").toFormatter()._toPrinterParser(!1).parse(r,t,n);if(o<0)return o;var s,u=r.getParsed(Fr.YEAR),l=r.getParsed(Fr.MONTH_OF_YEAR),c=r.getParsed(Fr.DAY_OF_MONTH),d=r.getParsed(Fr.HOUR_OF_DAY),f=r.getParsed(Fr.MINUTE_OF_HOUR),h=r.getParsed(Fr.SECOND_OF_MINUTE),p=r.getParsed(Fr.NANO_OF_SECOND),m=null!=h?h:0,_=null!=p?p:0,y=Dr.intMod(u,1e4),g=0;24===d&&0===f&&0===m&&0===_?(d=0,g=1):23===d&&59===f&&60===m&&(e.setParsedLeapSecond(),m=59);try{s=Aa.of(y,l,c,d,f,m,0).plusDays(g).toEpochSecond(ui.UTC),s+=Dr.safeMultiply(Dr.intDiv(u,1e4),qi)}catch(e){return~n}var v=o;return v=e.setParsedField(Fr.INSTANT_SECONDS,s,n,v),e.setParsedField(Fr.NANO_OF_SECOND,_,n,v)},t.toString=function(){return"Instant()"},e}();
|
|
104
|
-
/*
|
|
105
|
-
* @copyright (c) 2016, Philipp Thürwächter, Pattrick Hüper
|
|
106
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
107
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
108
|
-
*/
|
|
109
|
-
/*
|
|
110
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
111
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
112
|
-
*/
|
|
113
|
-
var Xi=function(){function e(){this._str=""}var t=e.prototype;return t.append=function(e){return this._str+=e,this},t.appendChar=function(e){return this._str+=e[0],this},t.insert=function(e,t){return this._str=this._str.slice(0,e)+t+this._str.slice(e),this},t.replace=function(e,t,n){return this._str=this._str.slice(0,e)+n+this._str.slice(t),this},t.length=function(){return this._str.length},t.setLength=function(e){return this._str=this._str.slice(0,e),this},t.toString=function(){return this._str},e}(),Qi=function(){function e(e,t,n,r,i,a,o){void 0===a&&(a=da.INSTANCE),Mr(null!=e),Mr(null!=n),Mr(null!=r),this._printerParser=e,this._locale=t,this._decimalStyle=n,this._resolverStyle=r,this._resolverFields=i,this._chrono=a,this._zone=o}e.parsedExcessDays=function(){return e.PARSED_EXCESS_DAYS},e.parsedLeapSecond=function(){return e.PARSED_LEAP_SECOND},e.ofPattern=function(e){return(new Wi).appendPattern(e).toFormatter()};var t=e.prototype;return t.locale=function(){return this._locale},t.decimalStyle=function(){return this._decimalStyle},t.chronology=function(){return this._chrono},t.withChronology=function(t){return null!=this._chrono&&this._chrono.equals(t)?this:new e(this._printerParser,this._locale,this._decimalStyle,this._resolverStyle,this._resolverFields,t,this._zone)},t.withLocale=function(){return this},t.withResolverStyle=function(t){return Tr(t,"resolverStyle"),t.equals(this._resolverStyle)?this:new e(this._printerParser,this._locale,this._decimalStyle,t,this._resolverFields,this._chrono,this._zone)},t.format=function(e){var t=new Xi(32);return this._formatTo(e,t),t.toString()},t._formatTo=function(e,t){Tr(e,"temporal"),Tr(t,"appendable");var n=new fi(e,this);this._printerParser.print(n,t)},t.parse=function(e,t){return 1===arguments.length?this.parse1(e):this.parse2(e,t)},t.parse1=function(e){Tr(e,"text");try{return this._parseToBuilder(e,null).resolve(this._resolverStyle,this._resolverFields)}catch(t){throw t instanceof mr?t:this._createError(e,t)}},t.parse2=function(e,t){Tr(e,"text"),Tr(t,"type");try{return this._parseToBuilder(e,null).resolve(this._resolverStyle,this._resolverFields).build(t)}catch(t){throw t instanceof mr?t:this._createError(e,t)}},t._createError=function(e,t){var n="";return n=e.length>64?e.substring(0,64)+"...":e,new mr("Text '"+n+"' could not be parsed: "+t.message,e,0,t)},t._parseToBuilder=function(e,t){var n=null!=t?t:new Jr(0),r=this._parseUnresolved0(e,n);if(null==r||n.getErrorIndex()>=0||null==t&&n.getIndex()<e.length){var i="";throw i=e.length>64?e.substr(0,64).toString()+"...":e,n.getErrorIndex()>=0?new mr("Text '"+i+"' could not be parsed at index "+n.getErrorIndex(),e,n.getErrorIndex()):new mr("Text '"+i+"' could not be parsed, unparsed text found at index "+n.getIndex(),e,n.getIndex())}return r.toBuilder()},t.parseUnresolved=function(e,t){return this._parseUnresolved0(e,t)},t._parseUnresolved0=function(e,t){Mr(null!=e,"text",Ar),Mr(null!=t,"position",Ar);var n=new ci(this),r=t.getIndex();return(r=this._printerParser.parse(n,e,r))<0?(t.setErrorIndex(~r),null):(t.setIndex(r),n.toParsed())},t._toPrinterParser=function(e){return this._printerParser.withOptional(e)},t.toString=function(){var e=this._printerParser.toString();return 0===e.indexOf("[")?e:e.substring(1,e.length-1)},e}();
|
|
114
|
-
/**
|
|
115
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
116
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
117
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
118
|
-
*/var ea,ta=function(e){function t(t,n){var r;return(r=e.call(this)||this)._month=Dr.safeToInt(t),r._day=Dr.safeToInt(n),r}Er(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof ri?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return this.nowClock(Ma.systemDefaultZone())},t.nowZoneId=function(e){return Tr(e,"zone"),this.nowClock(Ma.system(e))},t.nowClock=function(e){Tr(e,"clock");var n=ga.now(e);return t.of(n.month(),n.dayOfMonth())},t.of=function(e,n){return 2===arguments.length&&e instanceof Wr?t.ofMonthNumber(e,n):t.ofNumberNumber(e,n)},t.ofMonthNumber=function(e,n){if(Tr(e,"month"),Fr.DAY_OF_MONTH.checkValidValue(n),n>e.maxLength())throw new pr("Illegal value for DayOfMonth field, value "+n+" is not valid for month "+e.toString());return new t(e.value(),n)},t.ofNumberNumber=function(e,n){return Tr(e,"month"),Tr(n,"dayOfMonth"),t.of(Wr.of(e),n)},t.from=function(e){if(Tr(e,"temporal"),wr(e,Br,"temporal"),e instanceof t)return e;try{return t.of(e.get(Fr.MONTH_OF_YEAR),e.get(Fr.DAY_OF_MONTH))}catch(t){throw new pr("Unable to obtain MonthDay from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,ea)},t.parseStringFormatter=function(e,n){return Tr(e,"text"),Tr(n,"formatter"),wr(n,Qi,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.monthValue=function(){return this._month},n.month=function(){return Wr.of(this._month)},n.dayOfMonth=function(){return this._day},n.isSupported=function(e){return e instanceof Fr?e===Fr.MONTH_OF_YEAR||e===Fr.DAY_OF_MONTH:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===Fr.MONTH_OF_YEAR?t.range():t===Fr.DAY_OF_MONTH?Pr.of(1,this.month().minLength(),this.month().maxLength()):e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(Tr(e,"field"),e instanceof Fr){switch(e){case Fr.DAY_OF_MONTH:return this._day;case Fr.MONTH_OF_YEAR:return this._month}throw new _r("Unsupported field: "+e)}return e.getFrom(this)},n.isValidYear=function(e){return!1==(29===this._day&&2===this._month&&!1===aa.isLeap(e))},n.withMonth=function(e){return this.with(Wr.of(e))},n.with=function(e){if(Tr(e,"month"),e.value()===this._month)return this;var n=Math.min(this._day,e.maxLength());return new t(e.value(),n)},n.withDayOfMonth=function(e){return e===this._day?this:t.of(this._month,e)},n.query=function(t){return Tr(t,"query"),wr(t,Vr,"query"),t===Ur.chronology()?da.INSTANCE:e.prototype.query.call(this,t)},n.adjustInto=function(e){return Tr(e,"temporal"),(e=e.with(Fr.MONTH_OF_YEAR,this._month)).with(Fr.DAY_OF_MONTH,Math.min(e.range(Fr.DAY_OF_MONTH).maximum(),this._day))},n.atYear=function(e){return ga.of(e,this._month,this.isValidYear(e)?this._day:28)},n.compareTo=function(e){Tr(e,"other"),wr(e,t,"other");var n=this._month-e.monthValue();return 0===n&&(n=this._day-e.dayOfMonth()),n},n.isAfter=function(e){return Tr(e,"other"),wr(e,t,"other"),this.compareTo(e)>0},n.isBefore=function(e){return Tr(e,"other"),wr(e,t,"other"),this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.monthValue()===n.monthValue()&&this.dayOfMonth()===n.dayOfMonth()}return!1},n.toString=function(){return"--"+(this._month<10?"0":"")+this._month+(this._day<10?"-0":"-")+this._day},n.toJSON=function(){return this.toString()},n.format=function(e){return Tr(e,"formatter"),wr(e,Qi,"formatter"),e.format(this)},t}(Br);var na,ra=function(e){function t(t,n){var r;return(r=e.call(this)||this)._year=Dr.safeToInt(t),r._month=Dr.safeToInt(n),r}Er(t,e),t.now=function(e){return 0===arguments.length?t.now0():1===arguments.length&&e instanceof ri?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(Ma.systemDefaultZone())},t.nowZoneId=function(e){return t.nowClock(Ma.system(e))},t.nowClock=function(e){var n=ga.now(e);return t.of(n.year(),n.month())},t.of=function(e,n){return 2===arguments.length&&n instanceof Wr?t.ofNumberMonth(e,n):t.ofNumberNumber(e,n)},t.ofNumberMonth=function(e,n){return Tr(n,"month"),wr(n,Wr,"month"),t.ofNumberNumber(e,n.value())},t.ofNumberNumber=function(e,n){return Tr(e,"year"),Tr(n,"month"),Fr.YEAR.checkValidValue(e),Fr.MONTH_OF_YEAR.checkValidValue(n),new t(e,n)},t.from=function(e){if(Tr(e,"temporal"),e instanceof t)return e;try{return t.of(e.get(Fr.YEAR),e.get(Fr.MONTH_OF_YEAR))}catch(t){throw new pr("Unable to obtain YearMonth from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return 1===arguments.length?t.parseString(e):t.parseStringFormatter(e,n)},t.parseString=function(e){return t.parseStringFormatter(e,na)},t.parseStringFormatter=function(e,n){return Tr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.isSupported=function(e){return 1===arguments.length&&e instanceof Zr?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof Fr?e===Fr.YEAR||e===Fr.MONTH_OF_YEAR||e===Fr.PROLEPTIC_MONTH||e===Fr.YEAR_OF_ERA||e===Fr.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof Rr?e===Rr.MONTHS||e===Rr.YEARS||e===Rr.DECADES||e===Rr.CENTURIES||e===Rr.MILLENNIA||e===Rr.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return t===Fr.YEAR_OF_ERA?this.year()<=0?Pr.of(1,aa.MAX_VALUE+1):Pr.of(1,aa.MAX_VALUE):e.prototype.range.call(this,t)},n.get=function(e){return Tr(e,"field"),wr(e,Zr,"field"),this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(Tr(e,"field"),wr(e,Zr,"field"),e instanceof Fr){switch(e){case Fr.MONTH_OF_YEAR:return this._month;case Fr.PROLEPTIC_MONTH:return this._getProlepticMonth();case Fr.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case Fr.YEAR:return this._year;case Fr.ERA:return this._year<1?0:1}throw new _r("Unsupported field: "+e)}return e.getFrom(this)},n._getProlepticMonth=function(){return Dr.safeAdd(Dr.safeMultiply(this._year,12),this._month-1)},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return Wr.of(this._month)},n.isLeapYear=function(){return da.isLeapYear(this._year)},n.isValidDay=function(e){return e>=1&&e<=this.lengthOfMonth()},n.lengthOfMonth=function(){return this.month().length(this.isLeapYear())},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n.with=function(e,t){return 1===arguments.length?this._withAdjuster(e):this._withField(e,t)},n._withField=function(e,t){if(Tr(e,"field"),wr(e,Zr,"field"),e instanceof Fr){var n=e;switch(n.checkValidValue(t),n){case Fr.MONTH_OF_YEAR:return this.withMonth(t);case Fr.PROLEPTIC_MONTH:return this.plusMonths(t-this.getLong(Fr.PROLEPTIC_MONTH));case Fr.YEAR_OF_ERA:return this.withYear(this._year<1?1-t:t);case Fr.YEAR:return this.withYear(t);case Fr.ERA:return this.getLong(Fr.ERA)===t?this:this.withYear(1-this._year)}throw new _r("Unsupported field: "+e)}return e.adjustInto(this,t)},n.withYear=function(e){return Fr.YEAR.checkValidValue(e),new t(e,this._month)},n.withMonth=function(e){return Fr.MONTH_OF_YEAR.checkValidValue(e),new t(this._year,e)},n._plusUnit=function(e,t){if(Tr(t,"unit"),wr(t,xr,"unit"),t instanceof Rr){switch(t){case Rr.MONTHS:return this.plusMonths(e);case Rr.YEARS:return this.plusYears(e);case Rr.DECADES:return this.plusYears(Dr.safeMultiply(e,10));case Rr.CENTURIES:return this.plusYears(Dr.safeMultiply(e,100));case Rr.MILLENNIA:return this.plusYears(Dr.safeMultiply(e,1e3));case Rr.ERAS:return this.with(Fr.ERA,Dr.safeAdd(this.getLong(Fr.ERA),e))}throw new _r("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var t=Fr.YEAR.checkValidIntValue(this._year+e);return this.withYear(t)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e;return new t(Fr.YEAR.checkValidIntValue(Dr.floorDiv(n,12)),Dr.floorMod(n,12)+1)},n.minusYears=function(e){return e===Dr.MIN_SAFE_INTEGER?this.plusYears(Dr.MIN_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.minusMonths=function(e){return e===Dr.MIN_SAFE_INTEGER?this.plusMonths(Math.MAX_SAFE_INTEGER).plusMonths(1):this.plusMonths(-e)},n.query=function(t){return Tr(t,"query"),wr(t,Vr,"query"),t===Ur.chronology()?da.INSTANCE:t===Ur.precision()?Rr.MONTHS:t===Ur.localDate()||t===Ur.localTime()||t===Ur.zone()||t===Ur.zoneId()||t===Ur.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return Tr(e,"temporal"),wr(e,ei,"temporal"),e.with(Fr.PROLEPTIC_MONTH,this._getProlepticMonth())},n.until=function(e,n){Tr(e,"endExclusive"),Tr(n,"unit"),wr(e,ei,"endExclusive"),wr(n,xr,"unit");var r=t.from(e);if(n instanceof Rr){var i=r._getProlepticMonth()-this._getProlepticMonth();switch(n){case Rr.MONTHS:return i;case Rr.YEARS:return Dr.intDiv(i,12);case Rr.DECADES:return Dr.intDiv(i,120);case Rr.CENTURIES:return Dr.intDiv(i,1200);case Rr.MILLENNIA:return Dr.intDiv(i,12e3);case Rr.ERAS:return r.getLong(Fr.ERA)-this.getLong(Fr.ERA)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},n.atDay=function(e){return Tr(e,"dayOfMonth"),ga.of(this._year,this._month,e)},n.atEndOfMonth=function(){return ga.of(this._year,this._month,this.lengthOfMonth())},n.compareTo=function(e){Tr(e,"other"),wr(e,t,"other");var n=this._year-e.year();return 0===n&&(n=this._month-e.monthValue()),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){if(this===e)return!0;if(e instanceof t){var n=e;return this.year()===n.year()&&this.monthValue()===n.monthValue()}return!1},n.toString=function(){return na.format(this)},n.toJSON=function(){return this.toString()},n.format=function(e){return Tr(e,"formatter"),e.format(this)},t}(ei);var ia,aa=function(e){function t(t){var n;return(n=e.call(this)||this)._year=Dr.safeToInt(t),n}Er(t,e);var n=t.prototype;return n.value=function(){return this._year},t.now=function(e){return void 0===e&&(e=void 0),void 0===e?t.now0():e instanceof ri?t.nowZoneId(e):t.nowClock(e)},t.now0=function(){return t.nowClock(Ma.systemDefaultZone())},t.nowZoneId=function(e){return Tr(e,"zone"),wr(e,ri,"zone"),t.nowClock(Ma.system(e))},t.nowClock=function(e){Tr(e,"clock"),wr(e,Ma,"clock");var n=ga.now(e);return t.of(n.year())},t.of=function(e){return Tr(e,"isoYear"),Fr.YEAR.checkValidValue(e),new t(e)},t.from=function(e){if(Tr(e,"temporal"),wr(e,Br,"temporal"),e instanceof t)return e;try{return t.of(e.get(Fr.YEAR))}catch(t){throw new pr("Unable to obtain Year from TemporalAccessor: "+e+", type "+(e&&null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return arguments.length<=1?t.parseText(e):t.parseTextFormatter(e,n)},t.parseText=function(e){return Tr(e,"text"),t.parse(e,ia)},t.parseTextFormatter=function(e,n){return void 0===n&&(n=ia),Tr(e,"text"),Tr(n,"formatter"),wr(n,Qi,"formatter"),n.parse(e,t.FROM)},t.isLeap=function(e){return 0===Dr.intMod(e,4)&&(0!==Dr.intMod(e,100)||0===Dr.intMod(e,400))},n.isSupported=function(e){return 1===arguments.length&&e instanceof Zr?this.isSupportedField(e):this.isSupportedUnit(e)},n.isSupportedField=function(e){return e instanceof Fr?e===Fr.YEAR||e===Fr.YEAR_OF_ERA||e===Fr.ERA:null!=e&&e.isSupportedBy(this)},n.isSupportedUnit=function(e){return e instanceof Rr?e===Rr.YEARS||e===Rr.DECADES||e===Rr.CENTURIES||e===Rr.MILLENNIA||e===Rr.ERAS:null!=e&&e.isSupportedBy(this)},n.range=function(t){if(this.isSupported(t))return t.range();if(t instanceof Fr)throw new _r("Unsupported field: "+t);return e.prototype.range.call(this,t)},n.get=function(e){return this.range(e).checkValidIntValue(this.getLong(e),e)},n.getLong=function(e){if(Tr(e,"field"),e instanceof Fr){switch(e){case Fr.YEAR_OF_ERA:return this._year<1?1-this._year:this._year;case Fr.YEAR:return this._year;case Fr.ERA:return this._year<1?0:1}throw new _r("Unsupported field: "+e)}return e.getFrom(this)},n.isLeap=function(){return t.isLeap(this._year)},n._withField=function(e,n){if(Tr(e,"field"),wr(e,Zr,"field"),e instanceof Fr){switch(e.checkValidValue(n),e){case Fr.YEAR_OF_ERA:return t.of(this._year<1?1-n:n);case Fr.YEAR:return t.of(n);case Fr.ERA:return this.getLong(Fr.ERA)===n?this:t.of(1-this._year)}throw new _r("Unsupported field: "+e)}return e.adjustInto(this,n)},n._plusUnit=function(e,t){if(Tr(e,"amountToAdd"),Tr(t,"unit"),wr(t,xr,"unit"),t instanceof Rr){switch(t){case Rr.YEARS:return this.plusYears(e);case Rr.DECADES:return this.plusYears(Dr.safeMultiply(e,10));case Rr.CENTURIES:return this.plusYears(Dr.safeMultiply(e,100));case Rr.MILLENNIA:return this.plusYears(Dr.safeMultiply(e,1e3));case Rr.ERAS:return this.with(Fr.ERA,Dr.safeAdd(this.getLong(Fr.ERA),e))}throw new _r("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){return 0===e?this:t.of(Fr.YEAR.checkValidIntValue(Dr.safeAdd(this._year,e)))},n.minusYears=function(e){return e===Dr.MIN_SAFE_INTEGER?this.plusYears(Dr.MAX_SAFE_INTEGER).plusYears(1):this.plusYears(-e)},n.adjustInto=function(e){return Tr(e,"temporal"),e.with(Fr.YEAR,this._year)},n.isValidMonthDay=function(e){return null!=e&&e.isValidYear(this._year)},n.length=function(){return this.isLeap()?366:365},n.atDay=function(e){return ga.ofYearDay(this._year,e)},n.atMonth=function(e){return 1===arguments.length&&e instanceof Wr?this.atMonthMonth(e):this.atMonthNumber(e)},n.atMonthMonth=function(e){return Tr(e,"month"),wr(e,Wr,"month"),ra.of(this._year,e)},n.atMonthNumber=function(e){return Tr(e,"month"),ra.of(this._year,e)},n.atMonthDay=function(e){return Tr(e,"monthDay"),wr(e,ta,"monthDay"),e.atYear(this._year)},n.query=function(t){return Tr(t,"query()"),wr(t,Vr,"query()"),t===Ur.chronology()?da.INSTANCE:t===Ur.precision()?Rr.YEARS:t===Ur.localDate()||t===Ur.localTime()||t===Ur.zone()||t===Ur.zoneId()||t===Ur.offset()?null:e.prototype.query.call(this,t)},n.compareTo=function(e){return Tr(e,"other"),wr(e,t,"other"),this._year-e._year},n.isAfter=function(e){return Tr(e,"other"),wr(e,t,"other"),this._year>e._year},n.isBefore=function(e){return Tr(e,"other"),wr(e,t,"other"),this._year<e._year},n.format=function(e){return Tr(e,"formatter"),wr(e,Qi,"formatter"),e.format(this)},n.equals=function(e){return this===e||e instanceof t&&this.value()===e.value()},n.toString=function(){return""+this._year},n.toJSON=function(){return this.toString()},n.until=function(e,n){var r=t.from(e);if(n instanceof Rr){var i=r.value()-this.value();switch(n){case Rr.YEARS:return i;case Rr.DECADES:return Dr.intDiv(i,10);case Rr.CENTURIES:return Dr.intDiv(i,100);case Rr.MILLENNIA:return Dr.intDiv(i,1e3);case Rr.ERAS:return r.getLong(Fr.ERA)-this.getLong(Fr.ERA)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},t}(ei);
|
|
119
|
-
/*
|
|
120
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
121
|
-
* @copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos
|
|
122
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
123
|
-
*/
|
|
124
|
-
var oa=function(){function e(){}return e.prototype.adjustInto=function(e){Or("adjustInto")},e}(),sa=function(){function e(){}return e.firstDayOfMonth=function(){return ua.FIRST_DAY_OF_MONTH},e.lastDayOfMonth=function(){return ua.LAST_DAY_OF_MONTH},e.firstDayOfNextMonth=function(){return ua.FIRST_DAY_OF_NEXT_MONTH},e.firstDayOfYear=function(){return ua.FIRST_DAY_OF_YEAR},e.lastDayOfYear=function(){return ua.LAST_DAY_OF_YEAR},e.firstDayOfNextYear=function(){return ua.FIRST_DAY_OF_NEXT_YEAR},e.firstInMonth=function(e){return Tr(e,"dayOfWeek"),new la(1,e)},e.lastInMonth=function(e){return Tr(e,"dayOfWeek"),new la(-1,e)},e.dayOfWeekInMonth=function(e,t){return Tr(t,"dayOfWeek"),new la(e,t)},e.next=function(e){return new ca(2,e)},e.nextOrSame=function(e){return new ca(0,e)},e.previous=function(e){return new ca(3,e)},e.previousOrSame=function(e){return new ca(1,e)},e}(),ua=function(e){function t(t){var n;return(n=e.call(this)||this)._ordinal=t,n}return Er(t,e),t.prototype.adjustInto=function(e){switch(this._ordinal){case 0:return e.with(Fr.DAY_OF_MONTH,1);case 1:return e.with(Fr.DAY_OF_MONTH,e.range(Fr.DAY_OF_MONTH).maximum());case 2:return e.with(Fr.DAY_OF_MONTH,1).plus(1,Rr.MONTHS);case 3:return e.with(Fr.DAY_OF_YEAR,1);case 4:return e.with(Fr.DAY_OF_YEAR,e.range(Fr.DAY_OF_YEAR).maximum());case 5:return e.with(Fr.DAY_OF_YEAR,1).plus(1,Rr.YEARS)}throw new vr("Unreachable")},t}(oa);ua.FIRST_DAY_OF_MONTH=new ua(0),ua.LAST_DAY_OF_MONTH=new ua(1),ua.FIRST_DAY_OF_NEXT_MONTH=new ua(2),ua.FIRST_DAY_OF_YEAR=new ua(3),ua.LAST_DAY_OF_YEAR=new ua(4),ua.FIRST_DAY_OF_NEXT_YEAR=new ua(5);var la=function(e){function t(t,n){var r;return(r=e.call(this)||this)._ordinal=t,r._dowValue=n.value(),r}return Er(t,e),t.prototype.adjustInto=function(e){if(this._ordinal>=0){var t=e.with(Fr.DAY_OF_MONTH,1),n=t.get(Fr.DAY_OF_WEEK),r=Dr.intMod(this._dowValue-n+7,7);return r+=7*(this._ordinal-1),t.plus(r,Rr.DAYS)}var i=e.with(Fr.DAY_OF_MONTH,e.range(Fr.DAY_OF_MONTH).maximum()),a=i.get(Fr.DAY_OF_WEEK),o=this._dowValue-a;return o=0===o?0:o>0?o-7:o,o-=7*(-this._ordinal-1),i.plus(o,Rr.DAYS)},t}(oa),ca=function(e){function t(t,n){var r;return r=e.call(this)||this,Tr(n,"dayOfWeek"),r._relative=t,r._dowValue=n.value(),r}return Er(t,e),t.prototype.adjustInto=function(e){var t=e.get(Fr.DAY_OF_WEEK);if(this._relative<2&&t===this._dowValue)return e;if(0==(1&this._relative)){var n=t-this._dowValue;return e.plus(n>=0?7-n:-n,Rr.DAYS)}var r=this._dowValue-t;return e.minus(r>=0?7-r:-r,Rr.DAYS)},t}(oa),da=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e),t.isLeapYear=function(e){return 0==(3&e)&&(e%100!=0||e%400==0)};var n=t.prototype;return n._updateResolveMap=function(e,t,n){Tr(e,"fieldValues"),Tr(t,"field");var r=e.get(t);if(null!=r&&r!==n)throw new pr("Invalid state, field: "+t+" "+r+" conflicts with "+t+" "+n);e.put(t,n)},n.resolveDate=function(e,t){if(e.containsKey(Fr.EPOCH_DAY))return ga.ofEpochDay(e.remove(Fr.EPOCH_DAY));var n=e.remove(Fr.PROLEPTIC_MONTH);null!=n&&(t!==Qr.LENIENT&&Fr.PROLEPTIC_MONTH.checkValidValue(n),this._updateResolveMap(e,Fr.MONTH_OF_YEAR,Dr.floorMod(n,12)+1),this._updateResolveMap(e,Fr.YEAR,Dr.floorDiv(n,12)));var r=e.remove(Fr.YEAR_OF_ERA);if(null!=r){t!==Qr.LENIENT&&Fr.YEAR_OF_ERA.checkValidValue(r);var i=e.remove(Fr.ERA);if(null==i){var a=e.get(Fr.YEAR);t===Qr.STRICT?null!=a?this._updateResolveMap(e,Fr.YEAR,a>0?r:Dr.safeSubtract(1,r)):e.put(Fr.YEAR_OF_ERA,r):this._updateResolveMap(e,Fr.YEAR,null==a||a>0?r:Dr.safeSubtract(1,r))}else if(1===i)this._updateResolveMap(e,Fr.YEAR,r);else{if(0!==i)throw new pr("Invalid value for era: "+i);this._updateResolveMap(e,Fr.YEAR,Dr.safeSubtract(1,r))}}else e.containsKey(Fr.ERA)&&Fr.ERA.checkValidValue(e.get(Fr.ERA));if(e.containsKey(Fr.YEAR)){if(e.containsKey(Fr.MONTH_OF_YEAR)&&e.containsKey(Fr.DAY_OF_MONTH)){var o=Fr.YEAR.checkValidIntValue(e.remove(Fr.YEAR)),s=e.remove(Fr.MONTH_OF_YEAR),u=e.remove(Fr.DAY_OF_MONTH);if(t===Qr.LENIENT){var l=s-1,c=u-1;return ga.of(o,1,1).plusMonths(l).plusDays(c)}return t===Qr.SMART?(Fr.DAY_OF_MONTH.checkValidValue(u),4===s||6===s||9===s||11===s?u=Math.min(u,30):2===s&&(u=Math.min(u,Wr.FEBRUARY.length(aa.isLeap(o)))),ga.of(o,s,u)):ga.of(o,s,u)}if(e.containsKey(Fr.DAY_OF_YEAR)){var d=Fr.YEAR.checkValidIntValue(e.remove(Fr.YEAR));if(t===Qr.LENIENT){var f=Dr.safeSubtract(e.remove(Fr.DAY_OF_YEAR),1);return ga.ofYearDay(d,1).plusDays(f)}var h=Fr.DAY_OF_YEAR.checkValidIntValue(e.remove(Fr.DAY_OF_YEAR));return ga.ofYearDay(d,h)}if(e.containsKey(Fr.ALIGNED_WEEK_OF_YEAR)){if(e.containsKey(Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR)){var p=Fr.YEAR.checkValidIntValue(e.remove(Fr.YEAR));if(t===Qr.LENIENT){var m=Dr.safeSubtract(e.remove(Fr.ALIGNED_WEEK_OF_YEAR),1),_=Dr.safeSubtract(e.remove(Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR),1);return ga.of(p,1,1).plusWeeks(m).plusDays(_)}var y=Fr.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(Fr.ALIGNED_WEEK_OF_YEAR)),g=Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR.checkValidIntValue(e.remove(Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR)),v=ga.of(p,1,1).plusDays(7*(y-1)+(g-1));if(t===Qr.STRICT&&v.get(Fr.YEAR)!==p)throw new pr("Strict mode rejected date parsed to a different year");return v}if(e.containsKey(Fr.DAY_OF_WEEK)){var A=Fr.YEAR.checkValidIntValue(e.remove(Fr.YEAR));if(t===Qr.LENIENT){var E=Dr.safeSubtract(e.remove(Fr.ALIGNED_WEEK_OF_YEAR),1),b=Dr.safeSubtract(e.remove(Fr.DAY_OF_WEEK),1);return ga.of(A,1,1).plusWeeks(E).plusDays(b)}var S=Fr.ALIGNED_WEEK_OF_YEAR.checkValidIntValue(e.remove(Fr.ALIGNED_WEEK_OF_YEAR)),M=Fr.DAY_OF_WEEK.checkValidIntValue(e.remove(Fr.DAY_OF_WEEK)),T=ga.of(A,1,1).plusWeeks(S-1).with(sa.nextOrSame(jr.of(M)));if(t===Qr.STRICT&&T.get(Fr.YEAR)!==A)throw new pr("Strict mode rejected date parsed to a different month");return T}}}return null},n.date=function(e){return ga.from(e)},t}($r);var fa=function(e){function t(t,n){var r;return r=e.call(this)||this,Tr(t,"time"),wr(t,Ea,"time"),Tr(n,"offset"),wr(n,ui,"offset"),r._time=t,r._offset=n,r}Er(t,e),t.from=function(e){if(Tr(e,"temporal"),e instanceof t)return e;if(e instanceof ma)return e.toOffsetTime();try{return new t(Ea.from(e),ui.from(e))}catch(t){throw new pr("Unable to obtain OffsetTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.now=function(e){return 0===arguments.length?t._now(Ma.systemDefaultZone()):e instanceof Ma?t._now(e):t._now(Ma.system(e))},t._now=function(e){Tr(e,"clock");var n=e.instant();return t.ofInstant(n,e.zone().rules().offset(n))},t.of=function(){return arguments.length<=2?t.ofTimeAndOffset.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,i,a){return new t(Ea.of(e,n,r,i),a)},t.ofTimeAndOffset=function(e,n){return new t(e,n)},t.ofInstant=function(e,n){Tr(e,"instant"),wr(e,Sa,"instant"),Tr(n,"zone"),wr(n,ri,"zone");var r=n.rules().offset(e),i=e.epochSecond()%Ea.SECONDS_PER_DAY;return(i=(i+r.totalSeconds())%Ea.SECONDS_PER_DAY)<0&&(i+=Ea.SECONDS_PER_DAY),new t(Ea.ofSecondOfDay(i,e.nano()),r)},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_OFFSET_TIME),Tr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.adjustInto=function(e){return e.with(Fr.NANO_OF_DAY,this._time.toNanoOfDay()).with(Fr.OFFSET_SECONDS,this.offset().totalSeconds())},n.atDate=function(e){return ma.of(e,this._time,this._offset)},n.format=function(e){return Tr(e,"formatter"),e.format(this,t.FROM)},n.get=function(t){return e.prototype.get.call(this,t)},n.getLong=function(e){return e instanceof Fr?e===Fr.OFFSET_SECONDS?this._offset.totalSeconds():this._time.getLong(e):e.getFrom(this)},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n.offset=function(){return this._offset},n.isAfter=function(e){return Tr(e,"other"),this._toEpochNano()>e._toEpochNano()},n.isBefore=function(e){return Tr(e,"other"),this._toEpochNano()<e._toEpochNano()},n.isEqual=function(e){return Tr(e,"other"),this._toEpochNano()===e._toEpochNano()},n.isSupported=function(e){return e instanceof Fr?e.isTimeBased()||e===Fr.OFFSET_SECONDS:e instanceof Rr?e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.minusHours=function(e){return this._withLocalTimeOffset(this._time.minusHours(e),this._offset)},n.minusMinutes=function(e){return this._withLocalTimeOffset(this._time.minusMinutes(e),this._offset)},n.minusSeconds=function(e){return this._withLocalTimeOffset(this._time.minusSeconds(e),this._offset)},n.minusNanos=function(e){return this._withLocalTimeOffset(this._time.minusNanos(e),this._offset)},n._minusAmount=function(e){return Tr(e),e.subtractFrom(this)},n._minusUnit=function(e,t){return this.plus(-1*e,t)},n._plusAmount=function(e){return Tr(e),e.addTo(this)},n._plusUnit=function(e,t){return t instanceof Rr?this._withLocalTimeOffset(this._time.plus(e,t),this._offset):t.addTo(this,e)},n.plusHours=function(e){return this._withLocalTimeOffset(this._time.plusHours(e),this._offset)},n.plusMinutes=function(e){return this._withLocalTimeOffset(this._time.plusMinutes(e),this._offset)},n.plusSeconds=function(e){return this._withLocalTimeOffset(this._time.plusSeconds(e),this._offset)},n.plusNanos=function(e){return this._withLocalTimeOffset(this._time.plusNanos(e),this._offset)},n.query=function(t){return Tr(t,"query"),t===Ur.precision()?Rr.NANOS:t===Ur.offset()||t===Ur.zone()?this.offset():t===Ur.localTime()?this._time:t===Ur.chronology()||t===Ur.localDate()||t===Ur.zoneId()?null:e.prototype.query.call(this,t)},n.range=function(e){return e instanceof Fr?e===Fr.OFFSET_SECONDS?e.range():this._time.range(e):e.rangeRefinedBy(this)},n.toLocalTime=function(){return this._time},n.truncatedTo=function(e){return this._withLocalTimeOffset(this._time.truncatedTo(e),this._offset)},n.until=function(e,n){Tr(e,"endExclusive"),Tr(n,"unit");var r=t.from(e);if(n instanceof Rr){var i=r._toEpochNano()-this._toEpochNano();switch(n){case Rr.NANOS:return i;case Rr.MICROS:return Dr.intDiv(i,1e3);case Rr.MILLIS:return Dr.intDiv(i,1e6);case Rr.SECONDS:return Dr.intDiv(i,Ea.NANOS_PER_SECOND);case Rr.MINUTES:return Dr.intDiv(i,Ea.NANOS_PER_MINUTE);case Rr.HOURS:return Dr.intDiv(i,Ea.NANOS_PER_HOUR);case Rr.HALF_DAYS:return Dr.intDiv(i,12*Ea.NANOS_PER_HOUR)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},n.withHour=function(e){return this._withLocalTimeOffset(this._time.withHour(e),this._offset)},n.withMinute=function(e){return this._withLocalTimeOffset(this._time.withMinute(e),this._offset)},n.withSecond=function(e){return this._withLocalTimeOffset(this._time.withSecond(e),this._offset)},n.withNano=function(e){return this._withLocalTimeOffset(this._time.withNano(e),this._offset)},n.withOffsetSameInstant=function(e){if(Tr(e,"offset"),e.equals(this._offset))return this;var n=e.totalSeconds()-this._offset.totalSeconds();return new t(this._time.plusSeconds(n),e)},n.withOffsetSameLocal=function(e){return null!=e&&e.equals(this._offset)?this:new t(this._time,e)},n._toEpochNano=function(){return this._time.toNanoOfDay()-this._offset.totalSeconds()*Ea.NANOS_PER_SECOND},n._withAdjuster=function(e){return Tr(e,"adjuster"),e instanceof Ea?this._withLocalTimeOffset(e,this._offset):e instanceof ui?this._withLocalTimeOffset(this._time,e):e instanceof t?e:e.adjustInto(this)},n._withField=function(e,t){return Tr(e,"field"),e instanceof Fr?e===Fr.OFFSET_SECONDS?this._withLocalTimeOffset(this._time,ui.ofTotalSeconds(e.checkValidIntValue(t))):this._withLocalTimeOffset(this._time.with(e,t),this._offset):e.adjustInto(this,t)},n._withLocalTimeOffset=function(e,n){return this._time===e&&this._offset.equals(n)?this:new t(e,n)},n.compareTo=function(e){if(Tr(e,"other"),wr(e,t,"other"),this._offset.equals(e._offset))return this._time.compareTo(e._time);var n=Dr.compareNumbers(this._toEpochNano(),e._toEpochNano());return 0===n?this._time.compareTo(e._time):n},n.equals=function(e){return this===e||e instanceof t&&(this._time.equals(e._time)&&this._offset.equals(e._offset))},n.hashCode=function(){return this._time.hashCode()^this._offset.hashCode()},n.toString=function(){return this._time.toString()+this._offset.toString()},n.toJSON=function(){return this.toString()},t}(ei);var ha=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.query=function(t){return t===Ur.zoneId()||t===Ur.zone()?this.zone():t===Ur.chronology()?this.toLocalDate().chronology():t===Ur.precision()?Rr.NANOS:t===Ur.offset()?this.offset():t===Ur.localDate()?ga.ofEpochDay(this.toLocalDate().toEpochDay()):t===Ur.localTime()?this.toLocalTime():e.prototype.query.call(this,t)},n.format=function(e){return Tr(e,"formatter"),e.format(this)},n.toInstant=function(){return Sa.ofEpochSecond(this.toEpochSecond(),this.toLocalTime().nano())},n.toEpochSecond=function(){var e=86400*this.toLocalDate().toEpochDay()+this.toLocalTime().toSecondOfDay();return e-=this.offset().totalSeconds()},n.compareTo=function(e){Tr(e,"other");var t=Dr.compareNumbers(this.toEpochSecond(),e.toEpochSecond());return 0===t&&0===(t=this.toLocalTime().nano()-e.toLocalTime().nano())&&0===(t=this.toLocalDateTime().compareTo(e.toLocalDateTime()))&&(t=function(e,t){if(e<t)return-1;if(e>t)return 1;return 0}(this.zone().id(),e.zone().id())),t},n.isAfter=function(e){Tr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t>n||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){Tr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t<n||t===n&&this.toLocalTime().nano()<e.toLocalTime().nano()},n.isEqual=function(e){return Tr(e,"other"),this.toEpochSecond()===e.toEpochSecond()&&this.toLocalTime().nano()===e.toLocalTime().nano()},n.equals=function(e){return this===e||e instanceof t&&0===this.compareTo(e)},t}(ei);var pa=function(e){function t(t,n,r){var i;return Tr(t,"dateTime"),Tr(n,"offset"),Tr(r,"zone"),(i=e.call(this)||this)._dateTime=t,i._offset=n,i._zone=r,i}Er(t,e),t.now=function(e){var n;return n=e instanceof ri?Ma.system(e):null==e?Ma.systemDefaultZone():e,t.ofInstant(n.instant(),n.zone())},t.of=function(){return arguments.length<=2?t.of2.apply(this,arguments):3===arguments.length&&arguments[0]instanceof ga?t.of3.apply(this,arguments):t.of8.apply(this,arguments)},t.of3=function(e,n,r){return t.of2(Aa.of(e,n),r)},t.of2=function(e,n){return t.ofLocal(e,n,null)},t.of8=function(e,n,r,i,a,o,s,u){var l=Aa.of(e,n,r,i,a,o,s);return t.ofLocal(l,u,null)},t.ofLocal=function(e,n,r){if(Tr(e,"localDateTime"),Tr(n,"zone"),n instanceof ui)return new t(e,n,n);var i=null,a=n.rules(),o=a.validOffsets(e);if(1===o.length)i=o[0];else if(0===o.length){var s=a.transition(e);e=e.plusSeconds(s.duration().seconds()),i=s.offsetAfter()}else i=null!=r&&o.some((function(e){return e.equals(r)}))?r:Tr(o[0],"offset");return new t(e,i,n)},t.ofInstant=function(){return 2===arguments.length?t.ofInstant2.apply(this,arguments):t.ofInstant3.apply(this,arguments)},t.ofInstant2=function(e,n){return Tr(e,"instant"),Tr(n,"zone"),t._create(e.epochSecond(),e.nano(),n)},t.ofInstant3=function(e,n,r){return Tr(e,"localDateTime"),Tr(n,"offset"),Tr(r,"zone"),t._create(e.toEpochSecond(n),e.nano(),r)},t._create=function(e,n,r){var i=r.rules(),a=Sa.ofEpochSecond(e,n),o=i.offset(a);return new t(Aa.ofEpochSecond(e,n,o),o,r)},t.ofStrict=function(e,n,r){Tr(e,"localDateTime"),Tr(n,"offset"),Tr(r,"zone");var i=r.rules();if(!1===i.isValidOffset(e,n)){var a=i.transition(e);if(null!=a&&a.isGap())throw new pr("LocalDateTime "+e+" does not exist in zone "+r+" due to a gap in the local time-line, typically caused by daylight savings");throw new pr('ZoneOffset "'+n+'" is not valid for LocalDateTime "'+e+'" in zone "'+r+'"')}return new t(e,n,r)},t.ofLenient=function(e,n,r){if(Tr(e,"localDateTime"),Tr(n,"offset"),Tr(r,"zone"),r instanceof ui&&!1===n.equals(r))throw new gr("ZoneId must match ZoneOffset");return new t(e,n,r)},t.from=function(e){if(Tr(e,"temporal"),e instanceof t)return e;var n=ri.from(e);if(e.isSupported(Fr.INSTANT_SECONDS)){var r=t._from(e,n);if(null!=r)return r}var i=Aa.from(e);return t.of2(i,n)},t._from=function(e,n){try{return t.__from(e,n)}catch(e){if(!(e instanceof pr))throw e}},t.__from=function(e,n){var r=e.getLong(Fr.INSTANT_SECONDS),i=e.get(Fr.NANO_OF_SECOND);return t._create(r,i,n)},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_ZONED_DATE_TIME),Tr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n._resolveLocal=function(e){return Tr(e,"newDateTime"),t.ofLocal(e,this._zone,this._offset)},n._resolveInstant=function(e){return t.ofInstant3(e,this._offset,this._zone)},n._resolveOffset=function(e){return!1===e.equals(this._offset)&&this._zone.rules().isValidOffset(this._dateTime,e)?new t(this._dateTime,e,this._zone):this},n.isSupported=function(e){return e instanceof Fr||(e instanceof Rr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this))},n.range=function(e){return e instanceof Fr?e===Fr.INSTANT_SECONDS||e===Fr.OFFSET_SECONDS?e.range():this._dateTime.range(e):e.rangeRefinedBy(this)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e instanceof Fr){switch(e){case Fr.INSTANT_SECONDS:return this.toEpochSecond();case Fr.OFFSET_SECONDS:return this._offset.totalSeconds()}return this._dateTime.getLong(e)}return Tr(e,"field"),e.getFrom(this)},n.offset=function(){return this._offset},n.withEarlierOffsetAtOverlap=function(){var e=this._zone.rules().transition(this._dateTime);if(null!=e&&e.isOverlap()){var n=e.offsetBefore();if(!1===n.equals(this._offset))return new t(this._dateTime,n,this._zone)}return this},n.withLaterOffsetAtOverlap=function(){var e=this._zone.rules().transition(this.toLocalDateTime());if(null!=e){var n=e.offsetAfter();if(!1===n.equals(this._offset))return new t(this._dateTime,n,this._zone)}return this},n.zone=function(){return this._zone},n.withZoneSameLocal=function(e){return Tr(e,"zone"),this._zone.equals(e)?this:t.ofLocal(this._dateTime,e,this._offset)},n.withZoneSameInstant=function(e){return Tr(e,"zone"),this._zone.equals(e)?this:t._create(this._dateTime.toEpochSecond(this._offset),this._dateTime.nano(),e)},n.withFixedOffsetZone=function(){return this._zone.equals(this._offset)?this:new t(this._dateTime,this._offset,this._offset)},n.year=function(){return this._dateTime.year()},n.monthValue=function(){return this._dateTime.monthValue()},n.month=function(){return this._dateTime.month()},n.dayOfMonth=function(){return this._dateTime.dayOfMonth()},n.dayOfYear=function(){return this._dateTime.dayOfYear()},n.dayOfWeek=function(){return this._dateTime.dayOfWeek()},n.hour=function(){return this._dateTime.hour()},n.minute=function(){return this._dateTime.minute()},n.second=function(){return this._dateTime.second()},n.nano=function(){return this._dateTime.nano()},n._withAdjuster=function(n){if(n instanceof ga)return this._resolveLocal(Aa.of(n,this._dateTime.toLocalTime()));if(n instanceof Ea)return this._resolveLocal(Aa.of(this._dateTime.toLocalDate(),n));if(n instanceof Aa)return this._resolveLocal(n);if(n instanceof Sa){var r=n;return t._create(r.epochSecond(),r.nano(),this._zone)}return n instanceof ui?this._resolveOffset(n):e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(e instanceof Fr){switch(e){case Fr.INSTANT_SECONDS:return t._create(n,this.nano(),this._zone);case Fr.OFFSET_SECONDS:var r=ui.ofTotalSeconds(e.checkValidIntValue(n));return this._resolveOffset(r)}return this._resolveLocal(this._dateTime.with(e,n))}return e.adjustInto(this,n)},n.withYear=function(e){return this._resolveLocal(this._dateTime.withYear(e))},n.withMonth=function(e){return this._resolveLocal(this._dateTime.withMonth(e))},n.withDayOfMonth=function(e){return this._resolveLocal(this._dateTime.withDayOfMonth(e))},n.withDayOfYear=function(e){return this._resolveLocal(this._dateTime.withDayOfYear(e))},n.withHour=function(e){return this._resolveLocal(this._dateTime.withHour(e))},n.withMinute=function(e){return this._resolveLocal(this._dateTime.withMinute(e))},n.withSecond=function(e){return this._resolveLocal(this._dateTime.withSecond(e))},n.withNano=function(e){return this._resolveLocal(this._dateTime.withNano(e))},n.truncatedTo=function(e){return this._resolveLocal(this._dateTime.truncatedTo(e))},n._plusUnit=function(e,t){return t instanceof Rr?t.isDateBased()?this._resolveLocal(this._dateTime.plus(e,t)):this._resolveInstant(this._dateTime.plus(e,t)):(Tr(t,"unit"),t.addTo(this,e))},n.plusYears=function(e){return this._resolveLocal(this._dateTime.plusYears(e))},n.plusMonths=function(e){return this._resolveLocal(this._dateTime.plusMonths(e))},n.plusWeeks=function(e){return this._resolveLocal(this._dateTime.plusWeeks(e))},n.plusDays=function(e){return this._resolveLocal(this._dateTime.plusDays(e))},n.plusHours=function(e){return this._resolveInstant(this._dateTime.plusHours(e))},n.plusMinutes=function(e){return this._resolveInstant(this._dateTime.plusMinutes(e))},n.plusSeconds=function(e){return this._resolveInstant(this._dateTime.plusSeconds(e))},n.plusNanos=function(e){return this._resolveInstant(this._dateTime.plusNanos(e))},n._minusUnit=function(e,t){return this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.minusHours=function(e){return this.plusHours(-1*e)},n.minusMinutes=function(e){return this.plusMinutes(-1*e)},n.minusSeconds=function(e){return this.plusSeconds(-1*e)},n.minusNanos=function(e){return this.plusNanos(-1*e)},n.query=function(t){return t===Ur.localDate()?this.toLocalDate():(Tr(t,"query"),e.prototype.query.call(this,t))},n.until=function(e,n){var r=t.from(e);if(n instanceof Rr){if(r=r.withZoneSameInstant(this._zone),n.isDateBased())return this._dateTime.until(r._dateTime,n);var i=this._offset.totalSeconds()-r._offset.totalSeconds(),a=r._dateTime.plusSeconds(i);return this._dateTime.until(a,n)}return n.between(this,r)},n.toLocalDateTime=function(){return this._dateTime},n.toLocalDate=function(){return this._dateTime.toLocalDate()},n.toLocalTime=function(){return this._dateTime.toLocalTime()},n.toOffsetDateTime=function(){return ma.of(this._dateTime,this._offset)},n.equals=function(e){return this===e||e instanceof t&&(this._dateTime.equals(e._dateTime)&&this._offset.equals(e._offset)&&this._zone.equals(e._zone))},n.hashCode=function(){return Dr.hashCode(this._dateTime.hashCode(),this._offset.hashCode(),this._zone.hashCode())},n.toString=function(){var e=this._dateTime.toString()+this._offset.toString();return this._offset!==this._zone&&(e+="["+this._zone.toString()+"]"),e},n.toJSON=function(){return this.toString()},n.format=function(t){return e.prototype.format.call(this,t)},t}(ha);var ma=function(e){function t(t,n){var r;return r=e.call(this)||this,Tr(t,"dateTime"),wr(t,Aa,"dateTime"),Tr(n,"offset"),wr(n,ui,"offset"),r._dateTime=t,r._offset=n,r}Er(t,e),t.from=function(e){if(Tr(e,"temporal"),e instanceof t)return e;try{var n=ui.from(e);try{var r=Aa.from(e);return t.of(r,n)}catch(r){var i=Sa.from(e);return t.ofInstant(i,n)}}catch(t){throw new pr("Unable to obtain OffsetDateTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.now=function(e){if(0===arguments.length)return t.now(Ma.systemDefaultZone());if(Tr(e,"clockOrZone"),e instanceof ri)return t.now(Ma.system(e));if(e instanceof Ma){var n=e.instant();return t.ofInstant(n,e.zone().rules().offset(n))}throw new gr("clockOrZone must be an instance of ZoneId or Clock")},t.of=function(){return arguments.length<=2?t.ofDateTime.apply(this,arguments):3===arguments.length?t.ofDateAndTime.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofDateTime=function(e,n){return new t(e,n)},t.ofDateAndTime=function(e,n,r){return new t(Aa.of(e,n),r)},t.ofNumbers=function(e,n,r,i,a,o,s,u){return void 0===i&&(i=0),void 0===a&&(a=0),void 0===o&&(o=0),void 0===s&&(s=0),new t(Aa.of(e,n,r,i,a,o,s),u)},t.ofInstant=function(e,n){Tr(e,"instant"),Tr(n,"zone");var r=n.rules().offset(e);return new t(Aa.ofEpochSecond(e.epochSecond(),e.nano(),r),r)},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_OFFSET_DATE_TIME),Tr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n.adjustInto=function(e){return e.with(Fr.EPOCH_DAY,this.toLocalDate().toEpochDay()).with(Fr.NANO_OF_DAY,this.toLocalTime().toNanoOfDay()).with(Fr.OFFSET_SECONDS,this.offset().totalSeconds())},n.until=function(e,n){var r=t.from(e);return n instanceof Rr?(r=r.withOffsetSameInstant(this._offset),this._dateTime.until(r._dateTime,n)):n.between(this,r)},n.atZoneSameInstant=function(e){return pa.ofInstant(this._dateTime,this._offset,e)},n.atZoneSimilarLocal=function(e){return pa.ofLocal(this._dateTime,e,this._offset)},n.query=function(t){return Tr(t,"query"),t===Ur.chronology()?da.INSTANCE:t===Ur.precision()?Rr.NANOS:t===Ur.offset()||t===Ur.zone()?this.offset():t===Ur.localDate()?this.toLocalDate():t===Ur.localTime()?this.toLocalTime():t===Ur.zoneId()?null:e.prototype.query.call(this,t)},n.get=function(t){if(t instanceof Fr){switch(t){case Fr.INSTANT_SECONDS:throw new pr("Field too large for an int: "+t);case Fr.OFFSET_SECONDS:return this.offset().totalSeconds()}return this._dateTime.get(t)}return e.prototype.get.call(this,t)},n.getLong=function(e){if(e instanceof Fr){switch(e){case Fr.INSTANT_SECONDS:return this.toEpochSecond();case Fr.OFFSET_SECONDS:return this.offset().totalSeconds()}return this._dateTime.getLong(e)}return e.getFrom(this)},n.offset=function(){return this._offset},n.year=function(){return this._dateTime.year()},n.monthValue=function(){return this._dateTime.monthValue()},n.month=function(){return this._dateTime.month()},n.dayOfMonth=function(){return this._dateTime.dayOfMonth()},n.dayOfYear=function(){return this._dateTime.dayOfYear()},n.dayOfWeek=function(){return this._dateTime.dayOfWeek()},n.hour=function(){return this._dateTime.hour()},n.minute=function(){return this._dateTime.minute()},n.second=function(){return this._dateTime.second()},n.nano=function(){return this._dateTime.nano()},n.toLocalDateTime=function(){return this._dateTime},n.toLocalDate=function(){return this._dateTime.toLocalDate()},n.toLocalTime=function(){return this._dateTime.toLocalTime()},n.toOffsetTime=function(){return fa.of(this._dateTime.toLocalTime(),this._offset)},n.toZonedDateTime=function(){return pa.of(this._dateTime,this._offset)},n.toInstant=function(){return this._dateTime.toInstant(this._offset)},n.toEpochSecond=function(){return this._dateTime.toEpochSecond(this._offset)},n.isSupported=function(e){return e instanceof Fr||e instanceof Rr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(e){return e instanceof Fr?e===Fr.INSTANT_SECONDS||e===Fr.OFFSET_SECONDS?e.range():this._dateTime.range(e):e.rangeRefinedBy(this)},n._withAdjuster=function(e){return Tr(e),e instanceof ga||e instanceof Ea||e instanceof Aa?this._withDateTimeOffset(this._dateTime.with(e),this._offset):e instanceof Sa?t.ofInstant(e,this._offset):e instanceof ui?this._withDateTimeOffset(this._dateTime,e):e instanceof t?e:e.adjustInto(this)},n._withField=function(e,n){if(Tr(e),e instanceof Fr){var r=e;switch(r){case Fr.INSTANT_SECONDS:return t.ofInstant(Sa.ofEpochSecond(n,this.nano()),this._offset);case Fr.OFFSET_SECONDS:return this._withDateTimeOffset(this._dateTime,ui.ofTotalSeconds(r.checkValidIntValue(n)))}return this._withDateTimeOffset(this._dateTime.with(e,n),this._offset)}return e.adjustInto(this,n)},n._withDateTimeOffset=function(e,n){return this._dateTime===e&&this._offset.equals(n)?this:new t(e,n)},n.withYear=function(e){return this._withDateTimeOffset(this._dateTime.withYear(e),this._offset)},n.withMonth=function(e){return this._withDateTimeOffset(this._dateTime.withMonth(e),this._offset)},n.withDayOfMonth=function(e){return this._withDateTimeOffset(this._dateTime.withDayOfMonth(e),this._offset)},n.withDayOfYear=function(e){return this._withDateTimeOffset(this._dateTime.withDayOfYear(e),this._offset)},n.withHour=function(e){return this._withDateTimeOffset(this._dateTime.withHour(e),this._offset)},n.withMinute=function(e){return this._withDateTimeOffset(this._dateTime.withMinute(e),this._offset)},n.withSecond=function(e){return this._withDateTimeOffset(this._dateTime.withSecond(e),this._offset)},n.withNano=function(e){return this._withDateTimeOffset(this._dateTime.withNano(e),this._offset)},n.withOffsetSameLocal=function(e){return Tr(e,"offset"),this._withDateTimeOffset(this._dateTime,e)},n.withOffsetSameInstant=function(e){if(Tr(e,"offset"),e.equals(this._offset))return this;var n=e.totalSeconds()-this._offset.totalSeconds();return new t(this._dateTime.plusSeconds(n),e)},n.truncatedTo=function(e){return this._withDateTimeOffset(this._dateTime.truncatedTo(e),this._offset)},n._plusAmount=function(e){return Tr(e,"amount"),e.addTo(this)},n._plusUnit=function(e,t){return t instanceof Rr?this._withDateTimeOffset(this._dateTime.plus(e,t),this._offset):t.addTo(this,e)},n.plusYears=function(e){return this._withDateTimeOffset(this._dateTime.plusYears(e),this._offset)},n.plusMonths=function(e){return this._withDateTimeOffset(this._dateTime.plusMonths(e),this._offset)},n.plusWeeks=function(e){return this._withDateTimeOffset(this._dateTime.plusWeeks(e),this._offset)},n.plusDays=function(e){return this._withDateTimeOffset(this._dateTime.plusDays(e),this._offset)},n.plusHours=function(e){return this._withDateTimeOffset(this._dateTime.plusHours(e),this._offset)},n.plusMinutes=function(e){return this._withDateTimeOffset(this._dateTime.plusMinutes(e),this._offset)},n.plusSeconds=function(e){return this._withDateTimeOffset(this._dateTime.plusSeconds(e),this._offset)},n.plusNanos=function(e){return this._withDateTimeOffset(this._dateTime.plusNanos(e),this._offset)},n._minusAmount=function(e){return Tr(e),e.subtractFrom(this)},n._minusUnit=function(e,t){return this.plus(-1*e,t)},n.minusYears=function(e){return this._withDateTimeOffset(this._dateTime.minusYears(e),this._offset)},n.minusMonths=function(e){return this._withDateTimeOffset(this._dateTime.minusMonths(e),this._offset)},n.minusWeeks=function(e){return this._withDateTimeOffset(this._dateTime.minusWeeks(e),this._offset)},n.minusDays=function(e){return this._withDateTimeOffset(this._dateTime.minusDays(e),this._offset)},n.minusHours=function(e){return this._withDateTimeOffset(this._dateTime.minusHours(e),this._offset)},n.minusMinutes=function(e){return this._withDateTimeOffset(this._dateTime.minusMinutes(e),this._offset)},n.minusSeconds=function(e){return this._withDateTimeOffset(this._dateTime.minusSeconds(e),this._offset)},n.minusNanos=function(e){return this._withDateTimeOffset(this._dateTime.minusNanos(e),this._offset)},n.compareTo=function(e){if(Tr(e,"other"),wr(e,t,"other"),this.offset().equals(e.offset()))return this.toLocalDateTime().compareTo(e.toLocalDateTime());var n=Dr.compareNumbers(this.toEpochSecond(),e.toEpochSecond());return 0===n&&0===(n=this.toLocalTime().nano()-e.toLocalTime().nano())&&(n=this.toLocalDateTime().compareTo(e.toLocalDateTime())),n},n.isAfter=function(e){Tr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t>n||t===n&&this.toLocalTime().nano()>e.toLocalTime().nano()},n.isBefore=function(e){Tr(e,"other");var t=this.toEpochSecond(),n=e.toEpochSecond();return t<n||t===n&&this.toLocalTime().nano()<e.toLocalTime().nano()},n.isEqual=function(e){return Tr(e,"other"),this.toEpochSecond()===e.toEpochSecond()&&this.toLocalTime().nano()===e.toLocalTime().nano()},n.equals=function(e){return this===e||e instanceof t&&(this._dateTime.equals(e._dateTime)&&this._offset.equals(e._offset))},n.hashCode=function(){return this._dateTime.hashCode()^this._offset.hashCode()},n.toString=function(){return this._dateTime.toString()+this._offset.toString()},n.toJSON=function(){return this.toString()},n.format=function(e){return Tr(e,"formatter"),e.format(this)},t}(ei);var _a=146097,ya=719528,ga=function(e){function t(n,r,i){var a;return a=e.call(this)||this,Tr(n,"year"),Tr(r,"month"),Tr(i,"dayOfMonth"),r instanceof Wr&&(r=r.value()),a._year=Dr.safeToInt(n),a._month=Dr.safeToInt(r),a._day=Dr.safeToInt(i),t._validate(a._year,a._month,a._day),a}Er(t,e),t.now=function(e){var n;return n=null==e?Ma.systemDefaultZone():e instanceof ri?Ma.system(e):e,t.ofInstant(n.instant(),n.zone())},t.ofInstant=function(e,n){void 0===n&&(n=ri.systemDefault()),Tr(e,"instant");var r=n.rules().offset(e),i=e.epochSecond()+r.totalSeconds(),a=Dr.floorDiv(i,Ea.SECONDS_PER_DAY);return t.ofEpochDay(a)},t.of=function(e,n,r){return new t(e,n,r)},t.ofYearDay=function(e,n){Fr.YEAR.checkValidValue(e);var r=da.isLeapYear(e);366===n&&!1===r&&Mr(!1,"Invalid date 'DayOfYear 366' as '"+e+"' is not a leap year",pr);var i=Wr.of(Math.floor((n-1)/31+1));n>i.firstDayOfYear(r)+i.length(r)-1&&(i=i.plus(1));var a=n-i.firstDayOfYear(r)+1;return new t(e,i.value(),a)},t.ofEpochDay=function(e){var n,r,i,a,o;void 0===e&&(e=0),o=e+ya,n=0,(o-=60)<0&&(n=400*(r=Dr.intDiv(o+1,_a)-1),o+=-r*_a),(i=o-(365*(a=Dr.intDiv(400*o+591,_a))+Dr.intDiv(a,4)-Dr.intDiv(a,100)+Dr.intDiv(a,400)))<0&&(i=o-(365*--a+Dr.intDiv(a,4)-Dr.intDiv(a,100)+Dr.intDiv(a,400))),a+=n;var s=i,u=Dr.intDiv(5*s+2,153),l=(u+2)%12+1,c=s-Dr.intDiv(306*u+5,10)+1;return new t(a+=Dr.intDiv(u,10),l,c)},t.from=function(e){Tr(e,"temporal");var t=e.query(Ur.localDate());if(null==t)throw new pr("Unable to obtain LocalDate from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_LOCAL_DATE),Mr(null!=n,"formatter",Ar),n.parse(e,t.FROM)},t._resolvePreviousValid=function(e,n,r){switch(n){case 2:r=Math.min(r,da.isLeapYear(e)?29:28);break;case 4:case 6:case 9:case 11:r=Math.min(r,30)}return t.of(e,n,r)},t._validate=function(e,t,n){var r;if(Fr.YEAR.checkValidValue(e),Fr.MONTH_OF_YEAR.checkValidValue(t),Fr.DAY_OF_MONTH.checkValidValue(n),n>28){switch(r=31,t){case 2:r=da.isLeapYear(e)?29:28;break;case 4:case 6:case 9:case 11:r=30}n>r&&Mr(!1,29===n?"Invalid date 'February 29' as '"+e+"' is not a leap year":"Invalid date '"+e+"' '"+t+"' '"+n+"'",pr)}};var n=t.prototype;return n.isSupported=function(t){return e.prototype.isSupported.call(this,t)},n.range=function(e){if(e instanceof Fr){if(e.isDateBased()){switch(e){case Fr.DAY_OF_MONTH:return Pr.of(1,this.lengthOfMonth());case Fr.DAY_OF_YEAR:return Pr.of(1,this.lengthOfYear());case Fr.ALIGNED_WEEK_OF_MONTH:return Pr.of(1,this.month()===Wr.FEBRUARY&&!1===this.isLeapYear()?4:5);case Fr.YEAR_OF_ERA:return this._year<=0?Pr.of(1,aa.MAX_VALUE+1):Pr.of(1,aa.MAX_VALUE)}return e.range()}throw new _r("Unsupported field: "+e)}return e.rangeRefinedBy(this)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return Mr(null!=e,"",Ar),e instanceof Fr?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case Fr.DAY_OF_WEEK:return this.dayOfWeek().value();case Fr.ALIGNED_DAY_OF_WEEK_IN_MONTH:return Dr.intMod(this._day-1,7)+1;case Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR:return Dr.intMod(this.dayOfYear()-1,7)+1;case Fr.DAY_OF_MONTH:return this._day;case Fr.DAY_OF_YEAR:return this.dayOfYear();case Fr.EPOCH_DAY:return this.toEpochDay();case Fr.ALIGNED_WEEK_OF_MONTH:return Dr.intDiv(this._day-1,7)+1;case Fr.ALIGNED_WEEK_OF_YEAR:return Dr.intDiv(this.dayOfYear()-1,7)+1;case Fr.MONTH_OF_YEAR:return this._month;case Fr.PROLEPTIC_MONTH:return this._prolepticMonth();case Fr.YEAR_OF_ERA:return this._year>=1?this._year:1-this._year;case Fr.YEAR:return this._year;case Fr.ERA:return this._year>=1?1:0}throw new _r("Unsupported field: "+e)},n._prolepticMonth=function(){return 12*this._year+(this._month-1)},n.chronology=function(){return da.INSTANCE},n.year=function(){return this._year},n.monthValue=function(){return this._month},n.month=function(){return Wr.of(this._month)},n.dayOfMonth=function(){return this._day},n.dayOfYear=function(){return this.month().firstDayOfYear(this.isLeapYear())+this._day-1},n.dayOfWeek=function(){var e=Dr.floorMod(this.toEpochDay()+3,7);return jr.of(e+1)},n.isLeapYear=function(){return da.isLeapYear(this._year)},n.lengthOfMonth=function(){switch(this._month){case 2:return this.isLeapYear()?29:28;case 4:case 6:case 9:case 11:return 30;default:return 31}},n.lengthOfYear=function(){return this.isLeapYear()?366:365},n._withAdjuster=function(n){return Tr(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(Mr(null!=e,"field",Ar),e instanceof Fr){var r=e;switch(r.checkValidValue(n),r){case Fr.DAY_OF_WEEK:return this.plusDays(n-this.dayOfWeek().value());case Fr.ALIGNED_DAY_OF_WEEK_IN_MONTH:return this.plusDays(n-this.getLong(Fr.ALIGNED_DAY_OF_WEEK_IN_MONTH));case Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR:return this.plusDays(n-this.getLong(Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR));case Fr.DAY_OF_MONTH:return this.withDayOfMonth(n);case Fr.DAY_OF_YEAR:return this.withDayOfYear(n);case Fr.EPOCH_DAY:return t.ofEpochDay(n);case Fr.ALIGNED_WEEK_OF_MONTH:return this.plusWeeks(n-this.getLong(Fr.ALIGNED_WEEK_OF_MONTH));case Fr.ALIGNED_WEEK_OF_YEAR:return this.plusWeeks(n-this.getLong(Fr.ALIGNED_WEEK_OF_YEAR));case Fr.MONTH_OF_YEAR:return this.withMonth(n);case Fr.PROLEPTIC_MONTH:return this.plusMonths(n-this.getLong(Fr.PROLEPTIC_MONTH));case Fr.YEAR_OF_ERA:return this.withYear(this._year>=1?n:1-n);case Fr.YEAR:return this.withYear(n);case Fr.ERA:return this.getLong(Fr.ERA)===n?this:this.withYear(1-this._year)}throw new _r("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withYear=function(e){return this._year===e?this:(Fr.YEAR.checkValidValue(e),t._resolvePreviousValid(e,this._month,this._day))},n.withMonth=function(e){var n=e instanceof Wr?e.value():e;return this._month===n?this:(Fr.MONTH_OF_YEAR.checkValidValue(n),t._resolvePreviousValid(this._year,n,this._day))},n.withDayOfMonth=function(e){return this._day===e?this:t.of(this._year,this._month,e)},n.withDayOfYear=function(e){return this.dayOfYear()===e?this:t.ofYearDay(this._year,e)},n._plusUnit=function(e,t){if(Tr(e,"amountToAdd"),Tr(t,"unit"),t instanceof Rr){switch(t){case Rr.DAYS:return this.plusDays(e);case Rr.WEEKS:return this.plusWeeks(e);case Rr.MONTHS:return this.plusMonths(e);case Rr.YEARS:return this.plusYears(e);case Rr.DECADES:return this.plusYears(Dr.safeMultiply(e,10));case Rr.CENTURIES:return this.plusYears(Dr.safeMultiply(e,100));case Rr.MILLENNIA:return this.plusYears(Dr.safeMultiply(e,1e3));case Rr.ERAS:return this.with(Fr.ERA,Dr.safeAdd(this.getLong(Fr.ERA),e))}throw new _r("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusYears=function(e){if(0===e)return this;var n=Fr.YEAR.checkValidIntValue(this._year+e);return t._resolvePreviousValid(n,this._month,this._day)},n.plusMonths=function(e){if(0===e)return this;var n=12*this._year+(this._month-1)+e,r=Fr.YEAR.checkValidIntValue(Dr.floorDiv(n,12)),i=Dr.floorMod(n,12)+1;return t._resolvePreviousValid(r,i,this._day)},n.plusWeeks=function(e){return this.plusDays(Dr.safeMultiply(e,7))},n.plusDays=function(e){if(0===e)return this;var n=Dr.safeAdd(this.toEpochDay(),e);return t.ofEpochDay(n)},n._minusUnit=function(e,t){return Tr(e,"amountToSubtract"),Tr(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.query=function(t){return Tr(t,"query"),t===Ur.localDate()?this:e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,t){return arguments.length<2?this.until1(e):this.until2(e,t)},n.until2=function(e,n){var r=t.from(e);if(n instanceof Rr){switch(n){case Rr.DAYS:return this.daysUntil(r);case Rr.WEEKS:return Dr.intDiv(this.daysUntil(r),7);case Rr.MONTHS:return this._monthsUntil(r);case Rr.YEARS:return Dr.intDiv(this._monthsUntil(r),12);case Rr.DECADES:return Dr.intDiv(this._monthsUntil(r),120);case Rr.CENTURIES:return Dr.intDiv(this._monthsUntil(r),1200);case Rr.MILLENNIA:return Dr.intDiv(this._monthsUntil(r),12e3);case Rr.ERAS:return r.getLong(Fr.ERA)-this.getLong(Fr.ERA)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},n.daysUntil=function(e){return e.toEpochDay()-this.toEpochDay()},n._monthsUntil=function(e){var t=32*this._prolepticMonth()+this.dayOfMonth(),n=32*e._prolepticMonth()+e.dayOfMonth();return Dr.intDiv(n-t,32)},n.until1=function(e){var n=t.from(e),r=n._prolepticMonth()-this._prolepticMonth(),i=n._day-this._day;if(r>0&&i<0){r--;var a=this.plusMonths(r);i=n.toEpochDay()-a.toEpochDay()}else r<0&&i>0&&(r++,i-=n.lengthOfMonth());var o=Dr.intDiv(r,12),s=Dr.intMod(r,12);return Kr.of(o,s,i)},n.atTime=function(){return 1===arguments.length?this.atTime1.apply(this,arguments):this.atTime4.apply(this,arguments)},n.atTime1=function(e){if(Tr(e,"time"),e instanceof Ea)return Aa.of(this,e);if(e instanceof fa)return this._atTimeOffsetTime(e);throw new gr("time must be an instance of LocalTime or OffsetTime"+(e&&e.constructor&&e.constructor.name?", but is "+e.constructor.name:""))},n.atTime4=function(e,t,n,r){return void 0===n&&(n=0),void 0===r&&(r=0),this.atTime1(Ea.of(e,t,n,r))},n._atTimeOffsetTime=function(e){return ma.of(Aa.of(this,e.toLocalTime()),e.offset())},n.atStartOfDay=function(e){return null!=e?this._atStartOfDayWithZone(e):Aa.of(this,Ea.MIDNIGHT)},n._atStartOfDayWithZone=function(e){Tr(e,"zone");var t=this.atTime(Ea.MIDNIGHT);if(e instanceof ui==!1){var n=e.rules().transition(t);null!=n&&n.isGap()&&(t=n.dateTimeAfter())}return pa.of(t,e)},n.toEpochDay=function(){var e=this._year,t=this._month,n=0;return n+=365*e,e>=0?n+=Dr.intDiv(e+3,4)-Dr.intDiv(e+99,100)+Dr.intDiv(e+399,400):n-=Dr.intDiv(e,-4)-Dr.intDiv(e,-100)+Dr.intDiv(e,-400),n+=Dr.intDiv(367*t-362,12),n+=this.dayOfMonth()-1,t>2&&(n--,da.isLeapYear(e)||n--),n-ya},n.compareTo=function(e){return Tr(e,"other"),wr(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._year-e._year;return 0===t&&0===(t=this._month-e._month)&&(t=this._day-e._day),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&0===this._compareTo0(e)},n.hashCode=function(){var e=this._year,t=this._month,n=this._day;return Dr.hash(4294965248&e^(e<<11)+(t<<6)+n)},n.toString=function(){var e=this._year,t=this._month,n=this._day;return(Math.abs(e)<1e3?e<0?"-"+(""+(e-1e4)).slice(-4):(""+(e+1e4)).slice(-4):e>9999?"+"+e:""+e)+(t<10?"-0"+t:"-"+t)+(n<10?"-0"+n:"-"+n)},n.toJSON=function(){return this.toString()},n.format=function(t){return Tr(t,"formatter"),wr(t,Qi,"formatter"),e.prototype.format.call(this,t)},t}(ti);var va=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.chronology=function(){return this.toLocalDate().chronology()},n.query=function(t){return t===Ur.chronology()?this.chronology():t===Ur.precision()?Rr.NANOS:t===Ur.localDate()?ga.ofEpochDay(this.toLocalDate().toEpochDay()):t===Ur.localTime()?this.toLocalTime():t===Ur.zone()||t===Ur.zoneId()||t===Ur.offset()?null:e.prototype.query.call(this,t)},n.adjustInto=function(e){return e.with(Fr.EPOCH_DAY,this.toLocalDate().toEpochDay()).with(Fr.NANO_OF_DAY,this.toLocalTime().toNanoOfDay())},n.toInstant=function(e){return wr(e,ui,"zoneId"),Sa.ofEpochSecond(this.toEpochSecond(e),this.toLocalTime().nano())},n.toEpochSecond=function(e){Tr(e,"offset");var t=86400*this.toLocalDate().toEpochDay()+this.toLocalTime().toSecondOfDay();return t-=e.totalSeconds(),Dr.safeToInt(t)},t}(ei),Aa=function(e){function t(t,n){var r;return r=e.call(this)||this,wr(t,ga,"date"),wr(n,Ea,"time"),r._date=t,r._time=n,r}Er(t,e),t.now=function(e){return null==e?t._now(Ma.systemDefaultZone()):e instanceof Ma?t._now(e):t._now(Ma.system(e))},t._now=function(e){return Tr(e,"clock"),t.ofInstant(e.instant(),e.zone())},t._ofEpochMillis=function(e,n){var r=Dr.floorDiv(e,1e3)+n.totalSeconds(),i=Dr.floorDiv(r,Ea.SECONDS_PER_DAY),a=Dr.floorMod(r,Ea.SECONDS_PER_DAY),o=1e6*Dr.floorMod(e,1e3);return new t(ga.ofEpochDay(i),Ea.ofSecondOfDay(a,o))},t.of=function(){return arguments.length<=2?t.ofDateAndTime.apply(this,arguments):t.ofNumbers.apply(this,arguments)},t.ofNumbers=function(e,n,r,i,a,o,s){return void 0===i&&(i=0),void 0===a&&(a=0),void 0===o&&(o=0),void 0===s&&(s=0),new t(ga.of(e,n,r),Ea.of(i,a,o,s))},t.ofDateAndTime=function(e,n){return Tr(e,"date"),Tr(n,"time"),new t(e,n)},t.ofInstant=function(e,n){void 0===n&&(n=ri.systemDefault()),Tr(e,"instant"),wr(e,Sa,"instant"),Tr(n,"zone");var r=n.rules().offset(e);return t.ofEpochSecond(e.epochSecond(),e.nano(),r)},t.ofEpochSecond=function(e,n,r){void 0===e&&(e=0),void 0===n&&(n=0),2===arguments.length&&n instanceof ui&&(r=n,n=0),Tr(r,"offset");var i=e+r.totalSeconds(),a=Dr.floorDiv(i,Ea.SECONDS_PER_DAY),o=Dr.floorMod(i,Ea.SECONDS_PER_DAY);return new t(ga.ofEpochDay(a),Ea.ofSecondOfDay(o,n))},t.from=function(e){if(Tr(e,"temporal"),e instanceof t)return e;if(e instanceof pa)return e.toLocalDateTime();try{return new t(ga.from(e),Ea.from(e))}catch(t){throw new pr("Unable to obtain LocalDateTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""))}},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_LOCAL_DATE_TIME),Tr(n,"formatter"),n.parse(e,t.FROM)};var n=t.prototype;return n._withDateTime=function(e,n){return this._date.equals(e)&&this._time.equals(n)?this:new t(e,n)},n.isSupported=function(e){return e instanceof Fr||e instanceof Rr?e.isDateBased()||e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(e){return e instanceof Fr?e.isTimeBased()?this._time.range(e):this._date.range(e):e.rangeRefinedBy(this)},n.get=function(t){return t instanceof Fr?t.isTimeBased()?this._time.get(t):this._date.get(t):e.prototype.get.call(this,t)},n.getLong=function(e){return Tr(e,"field"),e instanceof Fr?e.isTimeBased()?this._time.getLong(e):this._date.getLong(e):e.getFrom(this)},n.year=function(){return this._date.year()},n.monthValue=function(){return this._date.monthValue()},n.month=function(){return this._date.month()},n.dayOfMonth=function(){return this._date.dayOfMonth()},n.dayOfYear=function(){return this._date.dayOfYear()},n.dayOfWeek=function(){return this._date.dayOfWeek()},n.hour=function(){return this._time.hour()},n.minute=function(){return this._time.minute()},n.second=function(){return this._time.second()},n.nano=function(){return this._time.nano()},n._withAdjuster=function(n){return Tr(n,"adjuster"),n instanceof ga?this._withDateTime(n,this._time):n instanceof Ea?this._withDateTime(this._date,n):n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,t){return Tr(e,"field"),e instanceof Fr?e.isTimeBased()?this._withDateTime(this._date,this._time.with(e,t)):this._withDateTime(this._date.with(e,t),this._time):e.adjustInto(this,t)},n.withYear=function(e){return this._withDateTime(this._date.withYear(e),this._time)},n.withMonth=function(e){return this._withDateTime(this._date.withMonth(e),this._time)},n.withDayOfMonth=function(e){return this._withDateTime(this._date.withDayOfMonth(e),this._time)},n.withDayOfYear=function(e){return this._withDateTime(this._date.withDayOfYear(e),this._time)},n.withHour=function(e){var t=this._time.withHour(e);return this._withDateTime(this._date,t)},n.withMinute=function(e){var t=this._time.withMinute(e);return this._withDateTime(this._date,t)},n.withSecond=function(e){var t=this._time.withSecond(e);return this._withDateTime(this._date,t)},n.withNano=function(e){var t=this._time.withNano(e);return this._withDateTime(this._date,t)},n.truncatedTo=function(e){return this._withDateTime(this._date,this._time.truncatedTo(e))},n._plusUnit=function(e,t){if(Tr(t,"unit"),t instanceof Rr){switch(t){case Rr.NANOS:return this.plusNanos(e);case Rr.MICROS:return this.plusDays(Dr.intDiv(e,Ea.MICROS_PER_DAY)).plusNanos(1e3*Dr.intMod(e,Ea.MICROS_PER_DAY));case Rr.MILLIS:return this.plusDays(Dr.intDiv(e,Ea.MILLIS_PER_DAY)).plusNanos(1e6*Dr.intMod(e,Ea.MILLIS_PER_DAY));case Rr.SECONDS:return this.plusSeconds(e);case Rr.MINUTES:return this.plusMinutes(e);case Rr.HOURS:return this.plusHours(e);case Rr.HALF_DAYS:return this.plusDays(Dr.intDiv(e,256)).plusHours(12*Dr.intMod(e,256))}return this._withDateTime(this._date.plus(e,t),this._time)}return t.addTo(this,e)},n.plusYears=function(e){var t=this._date.plusYears(e);return this._withDateTime(t,this._time)},n.plusMonths=function(e){var t=this._date.plusMonths(e);return this._withDateTime(t,this._time)},n.plusWeeks=function(e){var t=this._date.plusWeeks(e);return this._withDateTime(t,this._time)},n.plusDays=function(e){var t=this._date.plusDays(e);return this._withDateTime(t,this._time)},n.plusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,1)},n.plusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,1)},n.plusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,1)},n.plusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,1)},n._minusUnit=function(e,t){return Tr(t,"unit"),this._plusUnit(-1*e,t)},n.minusYears=function(e){return this.plusYears(-1*e)},n.minusMonths=function(e){return this.plusMonths(-1*e)},n.minusWeeks=function(e){return this.plusWeeks(-1*e)},n.minusDays=function(e){return this.plusDays(-1*e)},n.minusHours=function(e){return this._plusWithOverflow(this._date,e,0,0,0,-1)},n.minusMinutes=function(e){return this._plusWithOverflow(this._date,0,e,0,0,-1)},n.minusSeconds=function(e){return this._plusWithOverflow(this._date,0,0,e,0,-1)},n.minusNanos=function(e){return this._plusWithOverflow(this._date,0,0,0,e,-1)},n._plusWithOverflow=function(e,t,n,r,i,a){if(0===t&&0===n&&0===r&&0===i)return this._withDateTime(e,this._time);var o=Dr.intDiv(i,Ea.NANOS_PER_DAY)+Dr.intDiv(r,Ea.SECONDS_PER_DAY)+Dr.intDiv(n,Ea.MINUTES_PER_DAY)+Dr.intDiv(t,Ea.HOURS_PER_DAY);o*=a;var s=Dr.intMod(i,Ea.NANOS_PER_DAY)+Dr.intMod(r,Ea.SECONDS_PER_DAY)*Ea.NANOS_PER_SECOND+Dr.intMod(n,Ea.MINUTES_PER_DAY)*Ea.NANOS_PER_MINUTE+Dr.intMod(t,Ea.HOURS_PER_DAY)*Ea.NANOS_PER_HOUR,u=this._time.toNanoOfDay();s=s*a+u,o+=Dr.floorDiv(s,Ea.NANOS_PER_DAY);var l=Dr.floorMod(s,Ea.NANOS_PER_DAY),c=l===u?this._time:Ea.ofNanoOfDay(l);return this._withDateTime(e.plusDays(o),c)},n.query=function(t){return Tr(t,"query"),t===Ur.localDate()?this.toLocalDate():e.prototype.query.call(this,t)},n.adjustInto=function(t){return e.prototype.adjustInto.call(this,t)},n.until=function(e,n){Tr(e,"endExclusive"),Tr(n,"unit");var r=t.from(e);if(n instanceof Rr){if(n.isTimeBased()){var i=this._date.daysUntil(r._date),a=r._time.toNanoOfDay()-this._time.toNanoOfDay();i>0&&a<0?(i--,a+=Ea.NANOS_PER_DAY):i<0&&a>0&&(i++,a-=Ea.NANOS_PER_DAY);var o=i;switch(n){case Rr.NANOS:return o=Dr.safeMultiply(o,Ea.NANOS_PER_DAY),Dr.safeAdd(o,a);case Rr.MICROS:return o=Dr.safeMultiply(o,Ea.MICROS_PER_DAY),Dr.safeAdd(o,Dr.intDiv(a,1e3));case Rr.MILLIS:return o=Dr.safeMultiply(o,Ea.MILLIS_PER_DAY),Dr.safeAdd(o,Dr.intDiv(a,1e6));case Rr.SECONDS:return o=Dr.safeMultiply(o,Ea.SECONDS_PER_DAY),Dr.safeAdd(o,Dr.intDiv(a,Ea.NANOS_PER_SECOND));case Rr.MINUTES:return o=Dr.safeMultiply(o,Ea.MINUTES_PER_DAY),Dr.safeAdd(o,Dr.intDiv(a,Ea.NANOS_PER_MINUTE));case Rr.HOURS:return o=Dr.safeMultiply(o,Ea.HOURS_PER_DAY),Dr.safeAdd(o,Dr.intDiv(a,Ea.NANOS_PER_HOUR));case Rr.HALF_DAYS:return o=Dr.safeMultiply(o,2),Dr.safeAdd(o,Dr.intDiv(a,12*Ea.NANOS_PER_HOUR))}throw new _r("Unsupported unit: "+n)}var s=r._date,u=r._time;return s.isAfter(this._date)&&u.isBefore(this._time)?s=s.minusDays(1):s.isBefore(this._date)&&u.isAfter(this._time)&&(s=s.plusDays(1)),this._date.until(s,n)}return n.between(this,r)},n.atOffset=function(e){return ma.of(this,e)},n.atZone=function(e){return pa.of(this,e)},n.toLocalDate=function(){return this._date},n.toLocalTime=function(){return this._time},n.compareTo=function(e){return Tr(e,"other"),wr(e,t,"other"),this._compareTo0(e)},n._compareTo0=function(e){var t=this._date.compareTo(e.toLocalDate());return 0===t&&(t=this._time.compareTo(e.toLocalTime())),t},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.isEqual=function(e){return 0===this.compareTo(e)},n.equals=function(e){return this===e||e instanceof t&&(this._date.equals(e._date)&&this._time.equals(e._time))},n.hashCode=function(){return this._date.hashCode()^this._time.hashCode()},n.toString=function(){return this._date.toString()+"T"+this._time.toString()},n.toJSON=function(){return this.toString()},n.format=function(e){return Tr(e,"formatter"),e.format(this)},t}(va);var Ea=function(e){function t(n,r,i,a){var o;void 0===n&&(n=0),void 0===r&&(r=0),void 0===i&&(i=0),void 0===a&&(a=0),o=e.call(this)||this;var s=Dr.safeToInt(n),u=Dr.safeToInt(r),l=Dr.safeToInt(i),c=Dr.safeToInt(a);return t._validate(s,u,l,c),0===u&&0===l&&0===c?(t.HOURS[s]||(o._hour=s,o._minute=u,o._second=l,o._nano=c,t.HOURS[s]=Sr(o)),t.HOURS[s]||Sr(o)):(o._hour=s,o._minute=u,o._second=l,o._nano=c,o)}Er(t,e),t.now=function(e){return null==e?t._now(Ma.systemDefaultZone()):e instanceof Ma?t._now(e):t._now(Ma.system(e))},t._now=function(e){return void 0===e&&(e=Ma.systemDefaultZone()),Tr(e,"clock"),t.ofInstant(e.instant(),e.zone())},t.ofInstant=function(e,n){void 0===n&&(n=ri.systemDefault());var r=n.rules().offset(e),i=Dr.intMod(e.epochSecond(),t.SECONDS_PER_DAY);return(i=Dr.intMod(i+r.totalSeconds(),t.SECONDS_PER_DAY))<0&&(i+=t.SECONDS_PER_DAY),t.ofSecondOfDay(i,e.nano())},t.of=function(e,n,r,i){return new t(e,n,r,i)},t.ofSecondOfDay=function(e,n){void 0===e&&(e=0),void 0===n&&(n=0),Fr.SECOND_OF_DAY.checkValidValue(e),Fr.NANO_OF_SECOND.checkValidValue(n);var r=Dr.intDiv(e,t.SECONDS_PER_HOUR);e-=r*t.SECONDS_PER_HOUR;var i=Dr.intDiv(e,t.SECONDS_PER_MINUTE);return new t(r,i,e-=i*t.SECONDS_PER_MINUTE,n)},t.ofNanoOfDay=function(e){void 0===e&&(e=0),Fr.NANO_OF_DAY.checkValidValue(e);var n=Dr.intDiv(e,t.NANOS_PER_HOUR);e-=n*t.NANOS_PER_HOUR;var r=Dr.intDiv(e,t.NANOS_PER_MINUTE);e-=r*t.NANOS_PER_MINUTE;var i=Dr.intDiv(e,t.NANOS_PER_SECOND);return new t(n,r,i,e-=i*t.NANOS_PER_SECOND)},t.from=function(e){Tr(e,"temporal");var t=e.query(Ur.localTime());if(null==t)throw new pr("Unable to obtain LocalTime TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},t.parse=function(e,n){return void 0===n&&(n=Qi.ISO_LOCAL_TIME),Tr(n,"formatter"),n.parse(e,t.FROM)},t._validate=function(e,t,n,r){Fr.HOUR_OF_DAY.checkValidValue(e),Fr.MINUTE_OF_HOUR.checkValidValue(t),Fr.SECOND_OF_MINUTE.checkValidValue(n),Fr.NANO_OF_SECOND.checkValidValue(r)};var n=t.prototype;return n.isSupported=function(e){return e instanceof Fr||e instanceof Rr?e.isTimeBased():null!=e&&e.isSupportedBy(this)},n.range=function(t){return Tr(t),e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){return Tr(e,"field"),e instanceof Fr?this._get0(e):e.getFrom(this)},n._get0=function(e){switch(e){case Fr.NANO_OF_SECOND:return this._nano;case Fr.NANO_OF_DAY:return this.toNanoOfDay();case Fr.MICRO_OF_SECOND:return Dr.intDiv(this._nano,1e3);case Fr.MICRO_OF_DAY:return Dr.intDiv(this.toNanoOfDay(),1e3);case Fr.MILLI_OF_SECOND:return Dr.intDiv(this._nano,1e6);case Fr.MILLI_OF_DAY:return Dr.intDiv(this.toNanoOfDay(),1e6);case Fr.SECOND_OF_MINUTE:return this._second;case Fr.SECOND_OF_DAY:return this.toSecondOfDay();case Fr.MINUTE_OF_HOUR:return this._minute;case Fr.MINUTE_OF_DAY:return 60*this._hour+this._minute;case Fr.HOUR_OF_AMPM:return Dr.intMod(this._hour,12);case Fr.CLOCK_HOUR_OF_AMPM:var t=Dr.intMod(this._hour,12);return t%12==0?12:t;case Fr.HOUR_OF_DAY:return this._hour;case Fr.CLOCK_HOUR_OF_DAY:return 0===this._hour?24:this._hour;case Fr.AMPM_OF_DAY:return Dr.intDiv(this._hour,12)}throw new _r("Unsupported field: "+e)},n.hour=function(){return this._hour},n.minute=function(){return this._minute},n.second=function(){return this._second},n.nano=function(){return this._nano},n._withAdjuster=function(n){return Tr(n,"adjuster"),n instanceof t?n:e.prototype._withAdjuster.call(this,n)},n._withField=function(e,n){if(Tr(e,"field"),wr(e,Zr,"field"),e instanceof Fr){switch(e.checkValidValue(n),e){case Fr.NANO_OF_SECOND:return this.withNano(n);case Fr.NANO_OF_DAY:return t.ofNanoOfDay(n);case Fr.MICRO_OF_SECOND:return this.withNano(1e3*n);case Fr.MICRO_OF_DAY:return t.ofNanoOfDay(1e3*n);case Fr.MILLI_OF_SECOND:return this.withNano(1e6*n);case Fr.MILLI_OF_DAY:return t.ofNanoOfDay(1e6*n);case Fr.SECOND_OF_MINUTE:return this.withSecond(n);case Fr.SECOND_OF_DAY:return this.plusSeconds(n-this.toSecondOfDay());case Fr.MINUTE_OF_HOUR:return this.withMinute(n);case Fr.MINUTE_OF_DAY:return this.plusMinutes(n-(60*this._hour+this._minute));case Fr.HOUR_OF_AMPM:return this.plusHours(n-Dr.intMod(this._hour,12));case Fr.CLOCK_HOUR_OF_AMPM:return this.plusHours((12===n?0:n)-Dr.intMod(this._hour,12));case Fr.HOUR_OF_DAY:return this.withHour(n);case Fr.CLOCK_HOUR_OF_DAY:return this.withHour(24===n?0:n);case Fr.AMPM_OF_DAY:return this.plusHours(12*(n-Dr.intDiv(this._hour,12)))}throw new _r("Unsupported field: "+e)}return e.adjustInto(this,n)},n.withHour=function(e){return void 0===e&&(e=0),this._hour===e?this:new t(e,this._minute,this._second,this._nano)},n.withMinute=function(e){return void 0===e&&(e=0),this._minute===e?this:new t(this._hour,e,this._second,this._nano)},n.withSecond=function(e){return void 0===e&&(e=0),this._second===e?this:new t(this._hour,this._minute,e,this._nano)},n.withNano=function(e){return void 0===e&&(e=0),this._nano===e?this:new t(this._hour,this._minute,this._second,e)},n.truncatedTo=function(e){if(Tr(e,"unit"),e===Rr.NANOS)return this;var n=e.duration();if(n.seconds()>t.SECONDS_PER_DAY)throw new pr("Unit is too large to be used for truncation");var r=n.toNanos();if(0!==Dr.intMod(t.NANOS_PER_DAY,r))throw new pr("Unit must divide into a standard day without remainder");var i=this.toNanoOfDay();return t.ofNanoOfDay(Dr.intDiv(i,r)*r)},n._plusUnit=function(e,n){if(Tr(n,"unit"),n instanceof Rr){switch(n){case Rr.NANOS:return this.plusNanos(e);case Rr.MICROS:return this.plusNanos(1e3*Dr.intMod(e,t.MICROS_PER_DAY));case Rr.MILLIS:return this.plusNanos(1e6*Dr.intMod(e,t.MILLIS_PER_DAY));case Rr.SECONDS:return this.plusSeconds(e);case Rr.MINUTES:return this.plusMinutes(e);case Rr.HOURS:return this.plusHours(e);case Rr.HALF_DAYS:return this.plusHours(12*Dr.intMod(e,2))}throw new _r("Unsupported unit: "+n)}return n.addTo(this,e)},n.plusHours=function(e){return 0===e?this:new t(Dr.intMod(Dr.intMod(e,t.HOURS_PER_DAY)+this._hour+t.HOURS_PER_DAY,t.HOURS_PER_DAY),this._minute,this._second,this._nano)},n.plusMinutes=function(e){if(0===e)return this;var n=this._hour*t.MINUTES_PER_HOUR+this._minute,r=Dr.intMod(Dr.intMod(e,t.MINUTES_PER_DAY)+n+t.MINUTES_PER_DAY,t.MINUTES_PER_DAY);return n===r?this:new t(Dr.intDiv(r,t.MINUTES_PER_HOUR),Dr.intMod(r,t.MINUTES_PER_HOUR),this._second,this._nano)},n.plusSeconds=function(e){if(0===e)return this;var n=this._hour*t.SECONDS_PER_HOUR+this._minute*t.SECONDS_PER_MINUTE+this._second,r=Dr.intMod(Dr.intMod(e,t.SECONDS_PER_DAY)+n+t.SECONDS_PER_DAY,t.SECONDS_PER_DAY);return n===r?this:new t(Dr.intDiv(r,t.SECONDS_PER_HOUR),Dr.intMod(Dr.intDiv(r,t.SECONDS_PER_MINUTE),t.MINUTES_PER_HOUR),Dr.intMod(r,t.SECONDS_PER_MINUTE),this._nano)},n.plusNanos=function(e){if(0===e)return this;var n=this.toNanoOfDay(),r=Dr.intMod(Dr.intMod(e,t.NANOS_PER_DAY)+n+t.NANOS_PER_DAY,t.NANOS_PER_DAY);return n===r?this:new t(Dr.intDiv(r,t.NANOS_PER_HOUR),Dr.intMod(Dr.intDiv(r,t.NANOS_PER_MINUTE),t.MINUTES_PER_HOUR),Dr.intMod(Dr.intDiv(r,t.NANOS_PER_SECOND),t.SECONDS_PER_MINUTE),Dr.intMod(r,t.NANOS_PER_SECOND))},n._minusUnit=function(e,t){return Tr(t,"unit"),this._plusUnit(-1*e,t)},n.minusHours=function(e){return this.plusHours(-1*Dr.intMod(e,t.HOURS_PER_DAY))},n.minusMinutes=function(e){return this.plusMinutes(-1*Dr.intMod(e,t.MINUTES_PER_DAY))},n.minusSeconds=function(e){return this.plusSeconds(-1*Dr.intMod(e,t.SECONDS_PER_DAY))},n.minusNanos=function(e){return this.plusNanos(-1*Dr.intMod(e,t.NANOS_PER_DAY))},n.query=function(e){return Tr(e,"query"),e===Ur.precision()?Rr.NANOS:e===Ur.localTime()?this:e===Ur.chronology()||e===Ur.zoneId()||e===Ur.zone()||e===Ur.offset()||e===Ur.localDate()?null:e.queryFrom(this)},n.adjustInto=function(e){return e.with(t.NANO_OF_DAY,this.toNanoOfDay())},n.until=function(e,n){Tr(e,"endExclusive"),Tr(n,"unit");var r=t.from(e);if(n instanceof Rr){var i=r.toNanoOfDay()-this.toNanoOfDay();switch(n){case Rr.NANOS:return i;case Rr.MICROS:return Dr.intDiv(i,1e3);case Rr.MILLIS:return Dr.intDiv(i,1e6);case Rr.SECONDS:return Dr.intDiv(i,t.NANOS_PER_SECOND);case Rr.MINUTES:return Dr.intDiv(i,t.NANOS_PER_MINUTE);case Rr.HOURS:return Dr.intDiv(i,t.NANOS_PER_HOUR);case Rr.HALF_DAYS:return Dr.intDiv(i,12*t.NANOS_PER_HOUR)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},n.atDate=function(e){return Aa.of(e,this)},n.atOffset=function(e){return fa.of(this,e)},n.toSecondOfDay=function(){var e=this._hour*t.SECONDS_PER_HOUR;return e+=this._minute*t.SECONDS_PER_MINUTE,e+=this._second},n.toNanoOfDay=function(){var e=this._hour*t.NANOS_PER_HOUR;return e+=this._minute*t.NANOS_PER_MINUTE,e+=this._second*t.NANOS_PER_SECOND,e+=this._nano},n.compareTo=function(e){Tr(e,"other"),wr(e,t,"other");var n=Dr.compareNumbers(this._hour,e._hour);return 0===n&&0===(n=Dr.compareNumbers(this._minute,e._minute))&&0===(n=Dr.compareNumbers(this._second,e._second))&&(n=Dr.compareNumbers(this._nano,e._nano)),n},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&(this._hour===e._hour&&this._minute===e._minute&&this._second===e._second&&this._nano===e._nano)},n.hashCode=function(){var e=this.toNanoOfDay();return Dr.hash(e)},n.toString=function(){var e="",t=this._hour,n=this._minute,r=this._second,i=this._nano;return e+=t<10?"0":"",e+=t,e+=n<10?":0":":",e+=n,(r>0||i>0)&&(e+=r<10?":0":":",e+=r,i>0&&(e+=".",0===Dr.intMod(i,1e6)?e+=(""+(Dr.intDiv(i,1e6)+1e3)).substring(1):0===Dr.intMod(i,1e3)?e+=(""+(Dr.intDiv(i,1e3)+1e6)).substring(1):e+=(""+(i+1e9)).substring(1))),e},n.toJSON=function(){return this.toString()},n.format=function(e){return Tr(e,"formatter"),e.format(this)},t}(ei);Ea.HOURS_PER_DAY=24,Ea.MINUTES_PER_HOUR=60,Ea.MINUTES_PER_DAY=Ea.MINUTES_PER_HOUR*Ea.HOURS_PER_DAY,Ea.SECONDS_PER_MINUTE=60,Ea.SECONDS_PER_HOUR=Ea.SECONDS_PER_MINUTE*Ea.MINUTES_PER_HOUR,Ea.SECONDS_PER_DAY=Ea.SECONDS_PER_HOUR*Ea.HOURS_PER_DAY,Ea.MILLIS_PER_DAY=1e3*Ea.SECONDS_PER_DAY,Ea.MICROS_PER_DAY=1e6*Ea.SECONDS_PER_DAY,Ea.NANOS_PER_SECOND=1e9,Ea.NANOS_PER_MINUTE=Ea.NANOS_PER_SECOND*Ea.SECONDS_PER_MINUTE,Ea.NANOS_PER_HOUR=Ea.NANOS_PER_MINUTE*Ea.MINUTES_PER_HOUR,Ea.NANOS_PER_DAY=Ea.NANOS_PER_HOUR*Ea.HOURS_PER_DAY;var ba=1e6,Sa=function(e){function t(n,r){var i;return i=e.call(this)||this,t._validate(n,r),i._seconds=Dr.safeToInt(n),i._nanos=Dr.safeToInt(r),i}Er(t,e),t.now=function(e){return void 0===e&&(e=Ma.systemUTC()),e.instant()},t.ofEpochSecond=function(e,n){void 0===n&&(n=0);var r=e+Dr.floorDiv(n,Ea.NANOS_PER_SECOND),i=Dr.floorMod(n,Ea.NANOS_PER_SECOND);return t._create(r,i)},t.ofEpochMilli=function(e){var n=Dr.floorDiv(e,1e3),r=Dr.floorMod(e,1e3);return t._create(n,1e6*r)},t.ofEpochMicro=function(e){var n=Dr.floorDiv(e,1e6),r=Dr.floorMod(e,1e6);return t._create(n,1e3*r)},t.from=function(e){try{var n=e.getLong(Fr.INSTANT_SECONDS),r=e.get(Fr.NANO_OF_SECOND);return t.ofEpochSecond(n,r)}catch(t){throw new pr("Unable to obtain Instant from TemporalAccessor: "+e+", type "+typeof e,t)}},t.parse=function(e){return Qi.ISO_INSTANT.parse(e,t.FROM)},t._create=function(e,n){return 0===e&&0===n?t.EPOCH:new t(e,n)},t._validate=function(e,n){if(e<t.MIN_SECONDS||e>t.MAX_SECONDS)throw new pr("Instant exceeds minimum or maximum instant");if(n<0||n>Ea.NANOS_PER_SECOND)throw new pr("Instant exceeds minimum or maximum instant")};var n=t.prototype;return n.isSupported=function(e){return e instanceof Fr?e===Fr.INSTANT_SECONDS||e===Fr.NANO_OF_SECOND||e===Fr.MICRO_OF_SECOND||e===Fr.MILLI_OF_SECOND:e instanceof Rr?e.isTimeBased()||e===Rr.DAYS:null!=e&&e.isSupportedBy(this)},n.range=function(t){return e.prototype.range.call(this,t)},n.get=function(e){return this.getLong(e)},n.getLong=function(e){if(e instanceof Fr){switch(e){case Fr.NANO_OF_SECOND:return this._nanos;case Fr.MICRO_OF_SECOND:return Dr.intDiv(this._nanos,1e3);case Fr.MILLI_OF_SECOND:return Dr.intDiv(this._nanos,ba);case Fr.INSTANT_SECONDS:return this._seconds}throw new _r("Unsupported field: "+e)}return e.getFrom(this)},n.epochSecond=function(){return this._seconds},n.nano=function(){return this._nanos},n._withField=function(e,n){if(Tr(e,"field"),e instanceof Fr){switch(e.checkValidValue(n),e){case Fr.MILLI_OF_SECOND:var r=n*ba;return r!==this._nanos?t._create(this._seconds,r):this;case Fr.MICRO_OF_SECOND:var i=1e3*n;return i!==this._nanos?t._create(this._seconds,i):this;case Fr.NANO_OF_SECOND:return n!==this._nanos?t._create(this._seconds,n):this;case Fr.INSTANT_SECONDS:return n!==this._seconds?t._create(n,this._nanos):this}throw new _r("Unsupported field: "+e)}return e.adjustInto(this,n)},n.truncatedTo=function(e){if(Tr(e,"unit"),e===Rr.NANOS)return this;var t=e.duration();if(t.seconds()>Ea.SECONDS_PER_DAY)throw new pr("Unit is too large to be used for truncation");var n=t.toNanos();if(0!==Dr.intMod(Ea.NANOS_PER_DAY,n))throw new pr("Unit must divide into a standard day without remainder");var r=Dr.intMod(this._seconds,Ea.SECONDS_PER_DAY)*Ea.NANOS_PER_SECOND+this._nanos,i=Dr.intDiv(r,n)*n;return this.plusNanos(i-r)},n._plusUnit=function(e,t){if(Tr(e,"amountToAdd"),Tr(t,"unit"),wr(t,xr),t instanceof Rr){switch(t){case Rr.NANOS:return this.plusNanos(e);case Rr.MICROS:return this.plusMicros(e);case Rr.MILLIS:return this.plusMillis(e);case Rr.SECONDS:return this.plusSeconds(e);case Rr.MINUTES:return this.plusSeconds(Dr.safeMultiply(e,Ea.SECONDS_PER_MINUTE));case Rr.HOURS:return this.plusSeconds(Dr.safeMultiply(e,Ea.SECONDS_PER_HOUR));case Rr.HALF_DAYS:return this.plusSeconds(Dr.safeMultiply(e,Ea.SECONDS_PER_DAY/2));case Rr.DAYS:return this.plusSeconds(Dr.safeMultiply(e,Ea.SECONDS_PER_DAY))}throw new _r("Unsupported unit: "+t)}return t.addTo(this,e)},n.plusSeconds=function(e){return this._plus(e,0)},n.plusMillis=function(e){return this._plus(Dr.intDiv(e,1e3),Dr.intMod(e,1e3)*ba)},n.plusNanos=function(e){return this._plus(0,e)},n.plusMicros=function(e){return this._plus(Dr.intDiv(e,1e6),1e3*Dr.intMod(e,1e6))},n._plus=function(e,n){if(0===e&&0===n)return this;var r=this._seconds+e;r+=Dr.intDiv(n,Ea.NANOS_PER_SECOND);var i=this._nanos+n%Ea.NANOS_PER_SECOND;return t.ofEpochSecond(r,i)},n._minusUnit=function(e,t){return this._plusUnit(-1*e,t)},n.minusSeconds=function(e){return this.plusSeconds(-1*e)},n.minusMillis=function(e){return this.plusMillis(-1*e)},n.minusNanos=function(e){return this.plusNanos(-1*e)},n.minusMicros=function(e){return this.plusMicros(-1*e)},n.query=function(e){return Tr(e,"query"),e===Ur.precision()?Rr.NANOS:e===Ur.localDate()||e===Ur.localTime()||e===Ur.chronology()||e===Ur.zoneId()||e===Ur.zone()||e===Ur.offset()?null:e.queryFrom(this)},n.adjustInto=function(e){return Tr(e,"temporal"),e.with(Fr.INSTANT_SECONDS,this._seconds).with(Fr.NANO_OF_SECOND,this._nanos)},n.until=function(e,n){Tr(e,"endExclusive"),Tr(n,"unit");var r=t.from(e);if(n instanceof Rr){switch(n){case Rr.NANOS:return this._nanosUntil(r);case Rr.MICROS:return this._microsUntil(r);case Rr.MILLIS:return Dr.safeSubtract(r.toEpochMilli(),this.toEpochMilli());case Rr.SECONDS:return this._secondsUntil(r);case Rr.MINUTES:return Dr.intDiv(this._secondsUntil(r),Ea.SECONDS_PER_MINUTE);case Rr.HOURS:return Dr.intDiv(this._secondsUntil(r),Ea.SECONDS_PER_HOUR);case Rr.HALF_DAYS:return Dr.intDiv(this._secondsUntil(r),12*Ea.SECONDS_PER_HOUR);case Rr.DAYS:return Dr.intDiv(this._secondsUntil(r),Ea.SECONDS_PER_DAY)}throw new _r("Unsupported unit: "+n)}return n.between(this,r)},n._microsUntil=function(e){var t=Dr.safeSubtract(e.epochSecond(),this.epochSecond()),n=Dr.safeMultiply(t,1e6);return Dr.safeAdd(n,Dr.intDiv(e.nano()-this.nano(),1e3))},n._nanosUntil=function(e){var t=Dr.safeSubtract(e.epochSecond(),this.epochSecond()),n=Dr.safeMultiply(t,Ea.NANOS_PER_SECOND);return Dr.safeAdd(n,e.nano()-this.nano())},n._secondsUntil=function(e){var t=Dr.safeSubtract(e.epochSecond(),this.epochSecond()),n=e.nano()-this.nano();return t>0&&n<0?t--:t<0&&n>0&&t++,t},n.atOffset=function(e){return ma.ofInstant(this,e)},n.atZone=function(e){return pa.ofInstant(this,e)},n.toEpochMilli=function(){return Dr.safeMultiply(this._seconds,1e3)+Dr.intDiv(this._nanos,ba)},n.compareTo=function(e){Tr(e,"otherInstant"),wr(e,t,"otherInstant");var n=Dr.compareNumbers(this._seconds,e._seconds);return 0!==n?n:this._nanos-e._nanos},n.isAfter=function(e){return this.compareTo(e)>0},n.isBefore=function(e){return this.compareTo(e)<0},n.equals=function(e){return this===e||e instanceof t&&(this.epochSecond()===e.epochSecond()&&this.nano()===e.nano())},n.hashCode=function(){return Dr.hashCode(this._seconds,this._nanos)},n.toString=function(){return Qi.ISO_INSTANT.format(this)},n.toJSON=function(){return this.toString()},t}(ei);var Ma=function(){function e(){}e.systemUTC=function(){return new Ta(ui.UTC)},e.systemDefaultZone=function(){return new Ta(ri.systemDefault())},e.system=function(e){return new Ta(e)},e.fixed=function(e,t){return new wa(e,t)},e.offset=function(e,t){return new Oa(e,t)};var t=e.prototype;return t.millis=function(){Or("Clock.millis")},t.instant=function(){Or("Clock.instant")},t.zone=function(){Or("Clock.zone")},t.withZone=function(){Or("Clock.withZone")},e}(),Ta=function(e){function t(t){var n;return Tr(t,"zone"),(n=e.call(this)||this)._zone=t,n}Er(t,e);var n=t.prototype;return n.zone=function(){return this._zone},n.millis=function(){return(new Date).getTime()},n.instant=function(){return Sa.ofEpochMilli(this.millis())},n.equals=function(e){return e instanceof t&&this._zone.equals(e._zone)},n.withZone=function(e){return e.equals(this._zone)?this:new t(e)},n.toString=function(){return"SystemClock["+this._zone.toString()+"]"},t}(Ma),wa=function(e){function t(t,n){var r;return(r=e.call(this)||this)._instant=t,r._zoneId=n,r}Er(t,e);var n=t.prototype;return n.instant=function(){return this._instant},n.millis=function(){return this._instant.toEpochMilli()},n.zone=function(){return this._zoneId},n.toString=function(){return"FixedClock[]"},n.equals=function(e){return e instanceof t&&(this._instant.equals(e._instant)&&this._zoneId.equals(e._zoneId))},n.withZone=function(e){return e.equals(this._zoneId)?this:new t(this._instant,e)},t}(Ma),Oa=function(e){function t(t,n){var r;return(r=e.call(this)||this)._baseClock=t,r._offset=n,r}Er(t,e);var n=t.prototype;return n.zone=function(){return this._baseClock.zone()},n.withZone=function(e){return e.equals(this._baseClock.zone())?this:new t(this._baseClock.withZone(e),this._offset)},n.millis=function(){return this._baseClock.millis()+this._offset.toMillis()},n.instant=function(){return this._baseClock.instant().plus(this._offset)},n.equals=function(e){return e instanceof t&&(this._baseClock.equals(e._baseClock)&&this._offset.equals(e._offset))},n.toString=function(){return"OffsetClock["+this._baseClock+","+this._offset+"]"},t}(Ma),Na=function(){function e(e,t,n){if(Tr(e,"transition"),Tr(t,"offsetBefore"),Tr(n,"offsetAfter"),t.equals(n))throw new gr("Offsets must not be equal");if(0!==e.nano())throw new gr("Nano-of-second must be zero");this._transition=e instanceof Aa?e:Aa.ofEpochSecond(e,0,t),this._offsetBefore=t,this._offsetAfter=n}e.of=function(t,n,r){return new e(t,n,r)};var t=e.prototype;return t.instant=function(){return this._transition.toInstant(this._offsetBefore)},t.toEpochSecond=function(){return this._transition.toEpochSecond(this._offsetBefore)},t.dateTimeBefore=function(){return this._transition},t.dateTimeAfter=function(){return this._transition.plusSeconds(this.durationSeconds())},t.offsetBefore=function(){return this._offsetBefore},t.offsetAfter=function(){return this._offsetAfter},t.duration=function(){return kr.ofSeconds(this.durationSeconds())},t.durationSeconds=function(){return this._offsetAfter.totalSeconds()-this._offsetBefore.totalSeconds()},t.isGap=function(){return this._offsetAfter.totalSeconds()>this._offsetBefore.totalSeconds()},t.isOverlap=function(){return this._offsetAfter.totalSeconds()<this._offsetBefore.totalSeconds()},t.isValidOffset=function(e){return!this.isGap()&&(this._offsetBefore.equals(e)||this._offsetAfter.equals(e))},t.validOffsets=function(){return this.isGap()?[]:[this._offsetBefore,this._offsetAfter]},t.compareTo=function(e){return this.instant().compareTo(e.instant())},t.equals=function(t){if(t===this)return!0;if(t instanceof e){var n=t;return this._transition.equals(n._transition)&&this._offsetBefore.equals(n.offsetBefore())&&this._offsetAfter.equals(n.offsetAfter())}return!1},t.hashCode=function(){return this._transition.hashCode()^this._offsetBefore.hashCode()^this._offsetAfter.hashCode()>>>16},t.toString=function(){return"Transition["+(this.isGap()?"Gap":"Overlap")+" at "+this._transition.toString()+this._offsetBefore.toString()+" to "+this._offsetAfter+"]"},e}();var Ca=function(e){function t(){return e.apply(this,arguments)||this}Er(t,e);var n=t.prototype;return n.isFixedOffset=function(){return!1},n.offsetOfInstant=function(e){var t=new Date(e.toEpochMilli()).getTimezoneOffset();return ui.ofTotalMinutes(-1*t)},n.offsetOfEpochMilli=function(e){var t=new Date(e).getTimezoneOffset();return ui.ofTotalMinutes(-1*t)},n.offsetOfLocalDateTime=function(e){var t=1e3*e.toEpochSecond(ui.UTC),n=new Date(t).getTimezoneOffset(),r=new Date(t+6e4*n).getTimezoneOffset();return ui.ofTotalMinutes(-1*r)},n.validOffsets=function(e){return[this.offsetOfLocalDateTime(e)]},n.transition=function(){return null},n.standardOffset=function(e){return this.offsetOfInstant(e)},n.daylightSavings=function(){this._throwNotSupported()},n.isDaylightSavings=function(){this._throwNotSupported()},n.isValidOffset=function(e,t){return this.offsetOfLocalDateTime(e).equals(t)},n.nextTransition=function(){this._throwNotSupported()},n.previousTransition=function(){this._throwNotSupported()},n.transitions=function(){this._throwNotSupported()},n.transitionRules=function(){this._throwNotSupported()},n._throwNotSupported=function(){throw new pr("not supported operation")},n.equals=function(e){return this===e||e instanceof t},n.toString=function(){return"SYSTEM"},t}(ii),La=function(e){function t(){var t;return(t=e.call(this)||this)._rules=new Ca,t}Er(t,e);var n=t.prototype;return n.rules=function(){return this._rules},n.equals=function(e){return this===e},n.id=function(){return"SYSTEM"},t}(ri),Da=function(){function e(){}return e.systemDefault=function(){return $a},e.getAvailableZoneIds=function(){return Ui.getAvailableZoneIds()},e.of=function(e){if(Tr(e,"zoneId"),"Z"===e)return ui.UTC;if(1===e.length)throw new pr("Invalid zone: "+e);if(ni.startsWith(e,"+")||ni.startsWith(e,"-"))return ui.of(e);if("UTC"===e||"GMT"===e||"GMT0"===e||"UT"===e)return new Bi(e,ui.UTC.rules());if(ni.startsWith(e,"UTC+")||ni.startsWith(e,"GMT+")||ni.startsWith(e,"UTC-")||ni.startsWith(e,"GMT-")){var t=ui.of(e.substring(3));return 0===t.totalSeconds()?new Bi(e.substring(0,3),t.rules()):new Bi(e.substring(0,3)+t.id(),t.rules())}if(ni.startsWith(e,"UT+")||ni.startsWith(e,"UT-")){var n=ui.of(e.substring(2));return 0===n.totalSeconds()?new Bi("UT",n.rules()):new Bi("UT"+n.id(),n.rules())}return"SYSTEM"===e?ri.systemDefault():Bi.ofId(e)},e.ofOffset=function(e,t){if(Tr(e,"prefix"),Tr(t,"offset"),0===e.length)return t;if("GMT"===e||"UTC"===e||"UT"===e)return 0===t.totalSeconds()?new Bi(e,t.rules()):new Bi(e+t.id(),t.rules());throw new gr("Invalid prefix, must be GMT, UTC or UT: "+e)},e.from=function(e){Tr(e,"temporal");var t=e.query(Ur.zone());if(null==t)throw new pr("Unable to obtain ZoneId from TemporalAccessor: "+e+", type "+(null!=e.constructor?e.constructor.name:""));return t},e}(),$a=null;
|
|
125
|
-
/*
|
|
126
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
127
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
128
|
-
*/
|
|
129
|
-
var Ia=!1;Ia||(Ia=!0,zr.MIN_VALUE=-999999,zr.MAX_VALUE=999999,kr.ZERO=new kr(0,0),Rr.NANOS=new Rr("Nanos",kr.ofNanos(1)),Rr.MICROS=new Rr("Micros",kr.ofNanos(1e3)),Rr.MILLIS=new Rr("Millis",kr.ofNanos(1e6)),Rr.SECONDS=new Rr("Seconds",kr.ofSeconds(1)),Rr.MINUTES=new Rr("Minutes",kr.ofSeconds(60)),Rr.HOURS=new Rr("Hours",kr.ofSeconds(3600)),Rr.HALF_DAYS=new Rr("HalfDays",kr.ofSeconds(43200)),Rr.DAYS=new Rr("Days",kr.ofSeconds(86400)),Rr.WEEKS=new Rr("Weeks",kr.ofSeconds(604800)),Rr.MONTHS=new Rr("Months",kr.ofSeconds(2629746)),Rr.YEARS=new Rr("Years",kr.ofSeconds(31556952)),Rr.DECADES=new Rr("Decades",kr.ofSeconds(315569520)),Rr.CENTURIES=new Rr("Centuries",kr.ofSeconds(3155695200)),Rr.MILLENNIA=new Rr("Millennia",kr.ofSeconds(31556952e3)),Rr.ERAS=new Rr("Eras",kr.ofSeconds(31556952*(zr.MAX_VALUE+1))),Rr.FOREVER=new Rr("Forever",kr.ofSeconds(Dr.MAX_SAFE_INTEGER,999999999)),Fr.NANO_OF_SECOND=new Fr("NanoOfSecond",Rr.NANOS,Rr.SECONDS,Pr.of(0,999999999)),Fr.NANO_OF_DAY=new Fr("NanoOfDay",Rr.NANOS,Rr.DAYS,Pr.of(0,86399999999999)),Fr.MICRO_OF_SECOND=new Fr("MicroOfSecond",Rr.MICROS,Rr.SECONDS,Pr.of(0,999999)),Fr.MICRO_OF_DAY=new Fr("MicroOfDay",Rr.MICROS,Rr.DAYS,Pr.of(0,86399999999)),Fr.MILLI_OF_SECOND=new Fr("MilliOfSecond",Rr.MILLIS,Rr.SECONDS,Pr.of(0,999)),Fr.MILLI_OF_DAY=new Fr("MilliOfDay",Rr.MILLIS,Rr.DAYS,Pr.of(0,86399999)),Fr.SECOND_OF_MINUTE=new Fr("SecondOfMinute",Rr.SECONDS,Rr.MINUTES,Pr.of(0,59)),Fr.SECOND_OF_DAY=new Fr("SecondOfDay",Rr.SECONDS,Rr.DAYS,Pr.of(0,86399)),Fr.MINUTE_OF_HOUR=new Fr("MinuteOfHour",Rr.MINUTES,Rr.HOURS,Pr.of(0,59)),Fr.MINUTE_OF_DAY=new Fr("MinuteOfDay",Rr.MINUTES,Rr.DAYS,Pr.of(0,1439)),Fr.HOUR_OF_AMPM=new Fr("HourOfAmPm",Rr.HOURS,Rr.HALF_DAYS,Pr.of(0,11)),Fr.CLOCK_HOUR_OF_AMPM=new Fr("ClockHourOfAmPm",Rr.HOURS,Rr.HALF_DAYS,Pr.of(1,12)),Fr.HOUR_OF_DAY=new Fr("HourOfDay",Rr.HOURS,Rr.DAYS,Pr.of(0,23)),Fr.CLOCK_HOUR_OF_DAY=new Fr("ClockHourOfDay",Rr.HOURS,Rr.DAYS,Pr.of(1,24)),Fr.AMPM_OF_DAY=new Fr("AmPmOfDay",Rr.HALF_DAYS,Rr.DAYS,Pr.of(0,1)),Fr.DAY_OF_WEEK=new Fr("DayOfWeek",Rr.DAYS,Rr.WEEKS,Pr.of(1,7)),Fr.ALIGNED_DAY_OF_WEEK_IN_MONTH=new Fr("AlignedDayOfWeekInMonth",Rr.DAYS,Rr.WEEKS,Pr.of(1,7)),Fr.ALIGNED_DAY_OF_WEEK_IN_YEAR=new Fr("AlignedDayOfWeekInYear",Rr.DAYS,Rr.WEEKS,Pr.of(1,7)),Fr.DAY_OF_MONTH=new Fr("DayOfMonth",Rr.DAYS,Rr.MONTHS,Pr.of(1,28,31),"day"),Fr.DAY_OF_YEAR=new Fr("DayOfYear",Rr.DAYS,Rr.YEARS,Pr.of(1,365,366)),Fr.EPOCH_DAY=new Fr("EpochDay",Rr.DAYS,Rr.FOREVER,Pr.of(-365961662,364522971)),Fr.ALIGNED_WEEK_OF_MONTH=new Fr("AlignedWeekOfMonth",Rr.WEEKS,Rr.MONTHS,Pr.of(1,4,5)),Fr.ALIGNED_WEEK_OF_YEAR=new Fr("AlignedWeekOfYear",Rr.WEEKS,Rr.YEARS,Pr.of(1,53)),Fr.MONTH_OF_YEAR=new Fr("MonthOfYear",Rr.MONTHS,Rr.YEARS,Pr.of(1,12),"month"),Fr.PROLEPTIC_MONTH=new Fr("ProlepticMonth",Rr.MONTHS,Rr.FOREVER,Pr.of(12*zr.MIN_VALUE,12*zr.MAX_VALUE+11)),Fr.YEAR_OF_ERA=new Fr("YearOfEra",Rr.YEARS,Rr.FOREVER,Pr.of(1,zr.MAX_VALUE,zr.MAX_VALUE+1)),Fr.YEAR=new Fr("Year",Rr.YEARS,Rr.FOREVER,Pr.of(zr.MIN_VALUE,zr.MAX_VALUE),"year"),Fr.ERA=new Fr("Era",Rr.ERAS,Rr.FOREVER,Pr.of(0,1)),Fr.INSTANT_SECONDS=new Fr("InstantSeconds",Rr.SECONDS,Rr.FOREVER,Pr.of(Lr,Cr)),Fr.OFFSET_SECONDS=new Fr("OffsetSeconds",Rr.SECONDS,Rr.FOREVER,Pr.of(-64800,64800)),function(){Ea.HOURS=[];for(var e=0;e<24;e++)Ea.of(e,0,0,0);Ea.MIN=Ea.HOURS[0],Ea.MAX=new Ea(23,59,59,999999999),Ea.MIDNIGHT=Ea.HOURS[0],Ea.NOON=Ea.HOURS[12],Ea.FROM=Hr("LocalTime.FROM",(function(e){return Ea.from(e)}))}(),Ei=new _i,bi=new yi,Si=new gi,Mi=new vi,Ti=new Ai("WeekBasedYears",kr.ofSeconds(31556952)),wi=new Ai("QuarterYears",kr.ofSeconds(7889238)),hi.DAY_OF_QUARTER=Ei,hi.QUARTER_OF_YEAR=bi,hi.WEEK_OF_WEEK_BASED_YEAR=Si,hi.WEEK_BASED_YEAR=Mi,hi.WEEK_BASED_YEARS=Ti,hi.QUARTER_YEARS=wi,ga.prototype.isoWeekOfWeekyear=function(){return this.get(hi.WEEK_OF_WEEK_BASED_YEAR)},ga.prototype.isoWeekyear=function(){return this.get(hi.WEEK_BASED_YEAR)},Ur.ZONE_ID=Hr("ZONE_ID",(function(e){return e.query(Ur.ZONE_ID)})),Ur.CHRONO=Hr("CHRONO",(function(e){return e.query(Ur.CHRONO)})),Ur.PRECISION=Hr("PRECISION",(function(e){return e.query(Ur.PRECISION)})),Ur.OFFSET=Hr("OFFSET",(function(e){return e.isSupported(Fr.OFFSET_SECONDS)?ui.ofTotalSeconds(e.get(Fr.OFFSET_SECONDS)):null})),Ur.ZONE=Hr("ZONE",(function(e){var t=e.query(Ur.ZONE_ID);return null!=t?t:e.query(Ur.OFFSET)})),Ur.LOCAL_DATE=Hr("LOCAL_DATE",(function(e){return e.isSupported(Fr.EPOCH_DAY)?ga.ofEpochDay(e.getLong(Fr.EPOCH_DAY)):null})),Ur.LOCAL_TIME=Hr("LOCAL_TIME",(function(e){return e.isSupported(Fr.NANO_OF_DAY)?Ea.ofNanoOfDay(e.getLong(Fr.NANO_OF_DAY)):null})),jr.MONDAY=new jr(0,"MONDAY"),jr.TUESDAY=new jr(1,"TUESDAY"),jr.WEDNESDAY=new jr(2,"WEDNESDAY"),jr.THURSDAY=new jr(3,"THURSDAY"),jr.FRIDAY=new jr(4,"FRIDAY"),jr.SATURDAY=new jr(5,"SATURDAY"),jr.SUNDAY=new jr(6,"SUNDAY"),jr.FROM=Hr("DayOfWeek.FROM",(function(e){return jr.from(e)})),Yr=[jr.MONDAY,jr.TUESDAY,jr.WEDNESDAY,jr.THURSDAY,jr.FRIDAY,jr.SATURDAY,jr.SUNDAY],Sa.MIN_SECONDS=-31619119219200,Sa.MAX_SECONDS=31494816403199,Sa.EPOCH=new Sa(0,0),Sa.MIN=Sa.ofEpochSecond(Sa.MIN_SECONDS,0),Sa.MAX=Sa.ofEpochSecond(Sa.MAX_SECONDS,999999999),Sa.FROM=Hr("Instant.FROM",(function(e){return Sa.from(e)})),ga.MIN=ga.of(zr.MIN_VALUE,1,1),ga.MAX=ga.of(zr.MAX_VALUE,12,31),ga.EPOCH_0=ga.ofEpochDay(0),ga.FROM=Hr("LocalDate.FROM",(function(e){return ga.from(e)})),Aa.MIN=Aa.of(ga.MIN,Ea.MIN),Aa.MAX=Aa.of(ga.MAX,Ea.MAX),Aa.FROM=Hr("LocalDateTime.FROM",(function(e){return Aa.from(e)})),aa.MIN_VALUE=zr.MIN_VALUE,aa.MAX_VALUE=zr.MAX_VALUE,ia=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).toFormatter(),aa.FROM=Hr("Year.FROM",(function(e){return aa.from(e)})),Wr.JANUARY=new Wr(1,"JANUARY"),Wr.FEBRUARY=new Wr(2,"FEBRUARY"),Wr.MARCH=new Wr(3,"MARCH"),Wr.APRIL=new Wr(4,"APRIL"),Wr.MAY=new Wr(5,"MAY"),Wr.JUNE=new Wr(6,"JUNE"),Wr.JULY=new Wr(7,"JULY"),Wr.AUGUST=new Wr(8,"AUGUST"),Wr.SEPTEMBER=new Wr(9,"SEPTEMBER"),Wr.OCTOBER=new Wr(10,"OCTOBER"),Wr.NOVEMBER=new Wr(11,"NOVEMBER"),Wr.DECEMBER=new Wr(12,"DECEMBER"),Gr=[Wr.JANUARY,Wr.FEBRUARY,Wr.MARCH,Wr.APRIL,Wr.MAY,Wr.JUNE,Wr.JULY,Wr.AUGUST,Wr.SEPTEMBER,Wr.OCTOBER,Wr.NOVEMBER,Wr.DECEMBER],na=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).appendLiteral("-").appendValue(Fr.MONTH_OF_YEAR,2).toFormatter(),ra.FROM=Hr("YearMonth.FROM",(function(e){return ra.from(e)})),ea=(new Wi).appendLiteral("--").appendValue(Fr.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(Fr.DAY_OF_MONTH,2).toFormatter(),ta.FROM=Hr("MonthDay.FROM",(function(e){return ta.from(e)})),Kr.ofDays(0),ui.MAX_SECONDS=18*Ea.SECONDS_PER_HOUR,ui.UTC=ui.ofTotalSeconds(0),ui.MIN=ui.ofTotalSeconds(-ui.MAX_SECONDS),ui.MAX=ui.ofTotalSeconds(ui.MAX_SECONDS),pa.FROM=Hr("ZonedDateTime.FROM",(function(e){return pa.from(e)})),$a=new La,ri.systemDefault=Da.systemDefault,ri.getAvailableZoneIds=Da.getAvailableZoneIds,ri.of=Da.of,ri.ofOffset=Da.ofOffset,ri.from=Da.from,ui.from=Da.from,ri.SYSTEM=$a,ri.UTC=ui.ofTotalSeconds(0),da.INSTANCE=new da("IsoChronology"),Qi.ISO_LOCAL_DATE=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).appendLiteral("-").appendValue(Fr.MONTH_OF_YEAR,2).appendLiteral("-").appendValue(Fr.DAY_OF_MONTH,2).toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_LOCAL_TIME=(new Wi).appendValue(Fr.HOUR_OF_DAY,2).appendLiteral(":").appendValue(Fr.MINUTE_OF_HOUR,2).optionalStart().appendLiteral(":").appendValue(Fr.SECOND_OF_MINUTE,2).optionalStart().appendFraction(Fr.NANO_OF_SECOND,0,9,!0).toFormatter(Qr.STRICT),Qi.ISO_LOCAL_DATE_TIME=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_DATE).appendLiteral("T").append(Qi.ISO_LOCAL_TIME).toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_INSTANT=(new Wi).parseCaseInsensitive().appendInstant().toFormatter(Qr.STRICT),Qi.ISO_OFFSET_DATE_TIME=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_DATE_TIME).appendOffsetId().toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_ZONED_DATE_TIME=(new Wi).append(Qi.ISO_OFFSET_DATE_TIME).optionalStart().appendLiteral("[").parseCaseSensitive().appendZoneId().appendLiteral("]").toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.BASIC_ISO_DATE=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).appendValue(Fr.MONTH_OF_YEAR,2).appendValue(Fr.DAY_OF_MONTH,2).toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_OFFSET_DATE=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_DATE).appendOffsetId().toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_OFFSET_TIME=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_TIME).appendOffsetId().toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_ORDINAL_DATE=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).appendLiteral("-").appendValue(Fr.DAY_OF_YEAR).toFormatter(Qr.STRICT),Qi.ISO_WEEK_DATE=(new Wi).appendValue(Fr.YEAR,4,10,Ni.EXCEEDS_PAD).appendLiteral("-W").appendValue(Fr.ALIGNED_WEEK_OF_YEAR).appendLiteral("-").appendValue(Fr.DAY_OF_WEEK).toFormatter(Qr.STRICT),Qi.ISO_DATE=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_DATE).optionalStart().appendOffsetId().optionalEnd().toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.ISO_TIME=(new Wi).parseCaseInsensitive().append(Qi.ISO_LOCAL_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Qr.STRICT),Qi.ISO_DATE_TIME=(new Wi).append(Qi.ISO_LOCAL_DATE_TIME).optionalStart().appendOffsetId().optionalEnd().toFormatter(Qr.STRICT).withChronology(da.INSTANCE),Qi.PARSED_EXCESS_DAYS=Hr("PARSED_EXCESS_DAYS",(function(e){return e instanceof li?e.excessDays:Kr.ZERO})),Qi.PARSED_LEAP_SECOND=Hr("PARSED_LEAP_SECOND",(function(e){return e instanceof li&&e.leapSecond})),ki.BASE_DATE=ga.of(2e3,1,1),Wi.CompositePrinterParser=Di,Wi.PadPrinterParserDecorator=Zi,Wi.SettingsParser=Pi,Wi.CharLiteralPrinterParser=Fi,Wi.StringLiteralPrinterParser=Fi,Wi.CharLiteralPrinterParser=Li,Wi.NumberPrinterParser=xi,Wi.ReducedPrinterParser=ki,Wi.FractionPrinterParser=$i,Wi.OffsetIdPrinterParser=Ri,Wi.ZoneIdPrinterParser=Vi,ma.MIN=Aa.MIN.atOffset(ui.MAX),ma.MAX=Aa.MAX.atOffset(ui.MIN),ma.FROM=Hr("OffsetDateTime.FROM",(function(e){return ma.from(e)})),fa.MIN=fa.ofNumbers(0,0,0,0,ui.MAX),fa.MAX=fa.ofNumbers(23,59,59,999999999,ui.MIN),fa.FROM=Hr("OffsetTime.FROM",(function(e){return fa.from(e)})));
|
|
130
|
-
/*
|
|
131
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
132
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
133
|
-
*/
|
|
134
|
-
var xa=function(){function e(e,t){var n;if(e instanceof Sa)this.instant=e;else{if(e instanceof ga)t=null==t?ri.systemDefault():t,n=e.atStartOfDay(t);else if(e instanceof Aa)t=null==t?ri.systemDefault():t,n=e.atZone(t);else{if(!(e instanceof pa))throw new gr("unsupported instance for convert operation:"+e);n=null==t?e:e.withZoneSameInstant(t)}this.instant=n.toInstant()}}var t=e.prototype;return t.toDate=function(){return new Date(this.instant.toEpochMilli())},t.toEpochMilli=function(){return this.instant.toEpochMilli()},e}();function ka(e,t){return new xa(e,t)}
|
|
135
|
-
/*
|
|
136
|
-
* @copyright (c) 2015-present, Philipp Thürwächter, Pattrick Hüper & js-joda contributors
|
|
137
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
138
|
-
*/function za(e,t){if(void 0===t&&(t=ri.systemDefault()),Tr(e,"date"),Tr(t,"zone"),e instanceof Date)return Sa.ofEpochMilli(e.getTime()).atZone(t);if("function"==typeof e.toDate&&e.toDate()instanceof Date)return Sa.ofEpochMilli(e.toDate().getTime()).atZone(t);throw new gr("date must be a javascript Date or a moment instance")}
|
|
139
|
-
/**
|
|
140
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
141
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
142
|
-
*/
|
|
143
|
-
var Ra,Za,Pa={assert:Nr,DateTimeBuilder:li,DateTimeParseContext:ci,DateTimePrintContext:fi,MathUtil:Dr,StringUtil:ni,StringBuilder:Xi},Fa={_:Pa,convert:ka,nativeJs:za,ArithmeticException:yr,DateTimeException:pr,DateTimeParseException:mr,IllegalArgumentException:gr,IllegalStateException:vr,UnsupportedTemporalTypeException:_r,NullPointerException:Ar,Clock:Ma,DayOfWeek:jr,Duration:kr,Instant:Sa,LocalDate:ga,LocalTime:Ea,LocalDateTime:Aa,OffsetTime:fa,OffsetDateTime:ma,Month:Wr,MonthDay:ta,ParsePosition:Jr,Period:Kr,Year:aa,YearConstants:zr,YearMonth:ra,ZonedDateTime:pa,ZoneOffset:ui,ZoneId:ri,ZoneRegion:Bi,ZoneOffsetTransition:Na,ZoneRules:ii,ZoneRulesProvider:Ui,ChronoLocalDate:ti,ChronoLocalDateTime:va,ChronoZonedDateTime:ha,IsoChronology:da,ChronoField:Fr,ChronoUnit:Rr,IsoFields:hi,Temporal:ei,TemporalAccessor:Br,TemporalAdjuster:oa,TemporalAdjusters:sa,TemporalAmount:Ir,TemporalField:Zr,TemporalQueries:Ur,TemporalQuery:Vr,TemporalUnit:xr,ValueRange:Pr,DateTimeFormatter:Qi,DateTimeFormatterBuilder:Wi,DecimalStyle:Oi,ResolverStyle:Qr,SignStyle:Ni,TextStyle:Ci},Ua=(Ra=Fa,Za=[],function(e){return~Za.indexOf(e)||(e(Ra),Za.push(e)),Ra});Fa.use=Ua;var Ba={exports:{}};!function(e,t){function n(){return n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},n.apply(this,arguments)}function r(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,i(e,t)}function i(e,t){return i=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},i(e,t)}function a(e,t){if(e){if("string"==typeof e)return o(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function s(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=a(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var u=function(){function e(e,t,n){this._field=e,this._textStyle=t,this._provider=n}var n=e.prototype;return n.field=function(){return this._field},n.textStyle=function(){return this._textStyle},n.provider=function(){return this._provider},n.print=function(e,t){var n=e.getValue(this._field);if(null===n)return!1;var r=this._provider.getText(this._field,n,this._textStyle,e.locale());return null===r?this._numberPrinterParser().print(e,t):(t.append(r),!0)},n.parse=function(e,n,r){var i=n.length;if(r<0||r>i)throw new t.IllegalArgumentException("The position is invalid: "+r);var a=e.isStrict()?this._textStyle:null,o=this._provider.getTextIterator(this._field,a,e.locale());if(null!=o){for(var u,l=s(o);!(u=l()).done;){var c=u.value,d=c.key;if(e.subSequenceEquals(d,0,n,r,d.length))return e.setParsedField(this._field,c.value,r,r+d.length)}if(e.isStrict())return~r}return this._numberPrinterParser().parse(e,n,r)},n._numberPrinterParser=function(){return null==this._currentNumberPrinterParser&&(this._currentNumberPrinterParser=new t.DateTimeFormatterBuilder.NumberPrinterParser(this._field,1,19,t.SignStyle.NORMAL)),this._currentNumberPrinterParser},n.toString=function(){return this._textStyle===t.TextStyle.FULL?"Text("+this._field+")":"Text("+this._field+","+this._textStyle+")"},e}(),l={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},likelySubtags:{aa:"aa-Latn-ET",aai:"aai-Latn-ZZ",aak:"aak-Latn-ZZ",aau:"aau-Latn-ZZ",ab:"ab-Cyrl-GE",abi:"abi-Latn-ZZ",abq:"abq-Cyrl-ZZ",abr:"abr-Latn-GH",abt:"abt-Latn-ZZ",aby:"aby-Latn-ZZ",acd:"acd-Latn-ZZ",ace:"ace-Latn-ID",ach:"ach-Latn-UG",ada:"ada-Latn-GH",ade:"ade-Latn-ZZ",adj:"adj-Latn-ZZ",adp:"adp-Tibt-BT",ady:"ady-Cyrl-RU",adz:"adz-Latn-ZZ",ae:"ae-Avst-IR",aeb:"aeb-Arab-TN",aey:"aey-Latn-ZZ",af:"af-Latn-ZA",agc:"agc-Latn-ZZ",agd:"agd-Latn-ZZ",agg:"agg-Latn-ZZ",agm:"agm-Latn-ZZ",ago:"ago-Latn-ZZ",agq:"agq-Latn-CM",aha:"aha-Latn-ZZ",ahl:"ahl-Latn-ZZ",aho:"aho-Ahom-IN",ajg:"ajg-Latn-ZZ",ak:"ak-Latn-GH",akk:"akk-Xsux-IQ",ala:"ala-Latn-ZZ",ali:"ali-Latn-ZZ",aln:"aln-Latn-XK",alt:"alt-Cyrl-RU",am:"am-Ethi-ET",amm:"amm-Latn-ZZ",amn:"amn-Latn-ZZ",amo:"amo-Latn-NG",amp:"amp-Latn-ZZ",an:"an-Latn-ES",anc:"anc-Latn-ZZ",ank:"ank-Latn-ZZ",ann:"ann-Latn-ZZ",any:"any-Latn-ZZ",aoj:"aoj-Latn-ZZ",aom:"aom-Latn-ZZ",aoz:"aoz-Latn-ID",apc:"apc-Arab-ZZ",apd:"apd-Arab-TG",ape:"ape-Latn-ZZ",apr:"apr-Latn-ZZ",aps:"aps-Latn-ZZ",apz:"apz-Latn-ZZ",ar:"ar-Arab-EG",arc:"arc-Armi-IR","arc-Nbat":"arc-Nbat-JO","arc-Palm":"arc-Palm-SY",arh:"arh-Latn-ZZ",arn:"arn-Latn-CL",aro:"aro-Latn-BO",arq:"arq-Arab-DZ",ars:"ars-Arab-SA",ary:"ary-Arab-MA",arz:"arz-Arab-EG",as:"as-Beng-IN",asa:"asa-Latn-TZ",ase:"ase-Sgnw-US",asg:"asg-Latn-ZZ",aso:"aso-Latn-ZZ",ast:"ast-Latn-ES",ata:"ata-Latn-ZZ",atg:"atg-Latn-ZZ",atj:"atj-Latn-CA",auy:"auy-Latn-ZZ",av:"av-Cyrl-RU",avl:"avl-Arab-ZZ",avn:"avn-Latn-ZZ",avt:"avt-Latn-ZZ",avu:"avu-Latn-ZZ",awa:"awa-Deva-IN",awb:"awb-Latn-ZZ",awo:"awo-Latn-ZZ",awx:"awx-Latn-ZZ",ay:"ay-Latn-BO",ayb:"ayb-Latn-ZZ",az:"az-Latn-AZ","az-Arab":"az-Arab-IR","az-IQ":"az-Arab-IQ","az-IR":"az-Arab-IR","az-RU":"az-Cyrl-RU",ba:"ba-Cyrl-RU",bal:"bal-Arab-PK",ban:"ban-Latn-ID",bap:"bap-Deva-NP",bar:"bar-Latn-AT",bas:"bas-Latn-CM",bav:"bav-Latn-ZZ",bax:"bax-Bamu-CM",bba:"bba-Latn-ZZ",bbb:"bbb-Latn-ZZ",bbc:"bbc-Latn-ID",bbd:"bbd-Latn-ZZ",bbj:"bbj-Latn-CM",bbp:"bbp-Latn-ZZ",bbr:"bbr-Latn-ZZ",bcf:"bcf-Latn-ZZ",bch:"bch-Latn-ZZ",bci:"bci-Latn-CI",bcm:"bcm-Latn-ZZ",bcn:"bcn-Latn-ZZ",bco:"bco-Latn-ZZ",bcq:"bcq-Ethi-ZZ",bcu:"bcu-Latn-ZZ",bdd:"bdd-Latn-ZZ",be:"be-Cyrl-BY",bef:"bef-Latn-ZZ",beh:"beh-Latn-ZZ",bej:"bej-Arab-SD",bem:"bem-Latn-ZM",bet:"bet-Latn-ZZ",bew:"bew-Latn-ID",bex:"bex-Latn-ZZ",bez:"bez-Latn-TZ",bfd:"bfd-Latn-CM",bfq:"bfq-Taml-IN",bft:"bft-Arab-PK",bfy:"bfy-Deva-IN",bg:"bg-Cyrl-BG",bgc:"bgc-Deva-IN",bgn:"bgn-Arab-PK",bgx:"bgx-Grek-TR",bhb:"bhb-Deva-IN",bhg:"bhg-Latn-ZZ",bhi:"bhi-Deva-IN",bhl:"bhl-Latn-ZZ",bho:"bho-Deva-IN",bhy:"bhy-Latn-ZZ",bi:"bi-Latn-VU",bib:"bib-Latn-ZZ",big:"big-Latn-ZZ",bik:"bik-Latn-PH",bim:"bim-Latn-ZZ",bin:"bin-Latn-NG",bio:"bio-Latn-ZZ",biq:"biq-Latn-ZZ",bjh:"bjh-Latn-ZZ",bji:"bji-Ethi-ZZ",bjj:"bjj-Deva-IN",bjn:"bjn-Latn-ID",bjo:"bjo-Latn-ZZ",bjr:"bjr-Latn-ZZ",bjt:"bjt-Latn-SN",bjz:"bjz-Latn-ZZ",bkc:"bkc-Latn-ZZ",bkm:"bkm-Latn-CM",bkq:"bkq-Latn-ZZ",bku:"bku-Latn-PH",bkv:"bkv-Latn-ZZ",blt:"blt-Tavt-VN",bm:"bm-Latn-ML",bmh:"bmh-Latn-ZZ",bmk:"bmk-Latn-ZZ",bmq:"bmq-Latn-ML",bmu:"bmu-Latn-ZZ",bn:"bn-Beng-BD",bng:"bng-Latn-ZZ",bnm:"bnm-Latn-ZZ",bnp:"bnp-Latn-ZZ",bo:"bo-Tibt-CN",boj:"boj-Latn-ZZ",bom:"bom-Latn-ZZ",bon:"bon-Latn-ZZ",bpy:"bpy-Beng-IN",bqc:"bqc-Latn-ZZ",bqi:"bqi-Arab-IR",bqp:"bqp-Latn-ZZ",bqv:"bqv-Latn-CI",br:"br-Latn-FR",bra:"bra-Deva-IN",brh:"brh-Arab-PK",brx:"brx-Deva-IN",brz:"brz-Latn-ZZ",bs:"bs-Latn-BA",bsj:"bsj-Latn-ZZ",bsq:"bsq-Bass-LR",bss:"bss-Latn-CM",bst:"bst-Ethi-ZZ",bto:"bto-Latn-PH",btt:"btt-Latn-ZZ",btv:"btv-Deva-PK",bua:"bua-Cyrl-RU",buc:"buc-Latn-YT",bud:"bud-Latn-ZZ",bug:"bug-Latn-ID",buk:"buk-Latn-ZZ",bum:"bum-Latn-CM",buo:"buo-Latn-ZZ",bus:"bus-Latn-ZZ",buu:"buu-Latn-ZZ",bvb:"bvb-Latn-GQ",bwd:"bwd-Latn-ZZ",bwr:"bwr-Latn-ZZ",bxh:"bxh-Latn-ZZ",bye:"bye-Latn-ZZ",byn:"byn-Ethi-ER",byr:"byr-Latn-ZZ",bys:"bys-Latn-ZZ",byv:"byv-Latn-CM",byx:"byx-Latn-ZZ",bza:"bza-Latn-ZZ",bze:"bze-Latn-ML",bzf:"bzf-Latn-ZZ",bzh:"bzh-Latn-ZZ",bzw:"bzw-Latn-ZZ",ca:"ca-Latn-ES",can:"can-Latn-ZZ",cbj:"cbj-Latn-ZZ",cch:"cch-Latn-NG",ccp:"ccp-Cakm-BD",ce:"ce-Cyrl-RU",ceb:"ceb-Latn-PH",cfa:"cfa-Latn-ZZ",cgg:"cgg-Latn-UG",ch:"ch-Latn-GU",chk:"chk-Latn-FM",chm:"chm-Cyrl-RU",cho:"cho-Latn-US",chp:"chp-Latn-CA",chr:"chr-Cher-US",cic:"cic-Latn-US",cja:"cja-Arab-KH",cjm:"cjm-Cham-VN",cjv:"cjv-Latn-ZZ",ckb:"ckb-Arab-IQ",ckl:"ckl-Latn-ZZ",cko:"cko-Latn-ZZ",cky:"cky-Latn-ZZ",cla:"cla-Latn-ZZ",cme:"cme-Latn-ZZ",cmg:"cmg-Soyo-MN",co:"co-Latn-FR",cop:"cop-Copt-EG",cps:"cps-Latn-PH",cr:"cr-Cans-CA",crh:"crh-Cyrl-UA",crj:"crj-Cans-CA",crk:"crk-Cans-CA",crl:"crl-Cans-CA",crm:"crm-Cans-CA",crs:"crs-Latn-SC",cs:"cs-Latn-CZ",csb:"csb-Latn-PL",csw:"csw-Cans-CA",ctd:"ctd-Pauc-MM",cu:"cu-Cyrl-RU","cu-Glag":"cu-Glag-BG",cv:"cv-Cyrl-RU",cy:"cy-Latn-GB",da:"da-Latn-DK",dad:"dad-Latn-ZZ",daf:"daf-Latn-ZZ",dag:"dag-Latn-ZZ",dah:"dah-Latn-ZZ",dak:"dak-Latn-US",dar:"dar-Cyrl-RU",dav:"dav-Latn-KE",dbd:"dbd-Latn-ZZ",dbq:"dbq-Latn-ZZ",dcc:"dcc-Arab-IN",ddn:"ddn-Latn-ZZ",de:"de-Latn-DE",ded:"ded-Latn-ZZ",den:"den-Latn-CA",dga:"dga-Latn-ZZ",dgh:"dgh-Latn-ZZ",dgi:"dgi-Latn-ZZ",dgl:"dgl-Arab-ZZ",dgr:"dgr-Latn-CA",dgz:"dgz-Latn-ZZ",dia:"dia-Latn-ZZ",dje:"dje-Latn-NE",dnj:"dnj-Latn-CI",dob:"dob-Latn-ZZ",doi:"doi-Arab-IN",dop:"dop-Latn-ZZ",dow:"dow-Latn-ZZ",drh:"drh-Mong-CN",dri:"dri-Latn-ZZ",drs:"drs-Ethi-ZZ",dsb:"dsb-Latn-DE",dtm:"dtm-Latn-ML",dtp:"dtp-Latn-MY",dts:"dts-Latn-ZZ",dty:"dty-Deva-NP",dua:"dua-Latn-CM",duc:"duc-Latn-ZZ",dud:"dud-Latn-ZZ",dug:"dug-Latn-ZZ",dv:"dv-Thaa-MV",dva:"dva-Latn-ZZ",dww:"dww-Latn-ZZ",dyo:"dyo-Latn-SN",dyu:"dyu-Latn-BF",dz:"dz-Tibt-BT",dzg:"dzg-Latn-ZZ",ebu:"ebu-Latn-KE",ee:"ee-Latn-GH",efi:"efi-Latn-NG",egl:"egl-Latn-IT",egy:"egy-Egyp-EG",eka:"eka-Latn-ZZ",eky:"eky-Kali-MM",el:"el-Grek-GR",ema:"ema-Latn-ZZ",emi:"emi-Latn-ZZ",en:"en-Latn-US","en-Shaw":"en-Shaw-GB",enn:"enn-Latn-ZZ",enq:"enq-Latn-ZZ",eo:"eo-Latn-001",eri:"eri-Latn-ZZ",es:"es-Latn-ES",esg:"esg-Gonm-IN",esu:"esu-Latn-US",et:"et-Latn-EE",etr:"etr-Latn-ZZ",ett:"ett-Ital-IT",etu:"etu-Latn-ZZ",etx:"etx-Latn-ZZ",eu:"eu-Latn-ES",ewo:"ewo-Latn-CM",ext:"ext-Latn-ES",fa:"fa-Arab-IR",faa:"faa-Latn-ZZ",fab:"fab-Latn-ZZ",fag:"fag-Latn-ZZ",fai:"fai-Latn-ZZ",fan:"fan-Latn-GQ",ff:"ff-Latn-SN","ff-Adlm":"ff-Adlm-GN",ffi:"ffi-Latn-ZZ",ffm:"ffm-Latn-ML",fi:"fi-Latn-FI",fia:"fia-Arab-SD",fil:"fil-Latn-PH",fit:"fit-Latn-SE",fj:"fj-Latn-FJ",flr:"flr-Latn-ZZ",fmp:"fmp-Latn-ZZ",fo:"fo-Latn-FO",fod:"fod-Latn-ZZ",fon:"fon-Latn-BJ",for:"for-Latn-ZZ",fpe:"fpe-Latn-ZZ",fqs:"fqs-Latn-ZZ",fr:"fr-Latn-FR",frc:"frc-Latn-US",frp:"frp-Latn-FR",frr:"frr-Latn-DE",frs:"frs-Latn-DE",fub:"fub-Arab-CM",fud:"fud-Latn-WF",fue:"fue-Latn-ZZ",fuf:"fuf-Latn-GN",fuh:"fuh-Latn-ZZ",fuq:"fuq-Latn-NE",fur:"fur-Latn-IT",fuv:"fuv-Latn-NG",fuy:"fuy-Latn-ZZ",fvr:"fvr-Latn-SD",fy:"fy-Latn-NL",ga:"ga-Latn-IE",gaa:"gaa-Latn-GH",gaf:"gaf-Latn-ZZ",gag:"gag-Latn-MD",gah:"gah-Latn-ZZ",gaj:"gaj-Latn-ZZ",gam:"gam-Latn-ZZ",gan:"gan-Hans-CN",gaw:"gaw-Latn-ZZ",gay:"gay-Latn-ID",gba:"gba-Latn-ZZ",gbf:"gbf-Latn-ZZ",gbm:"gbm-Deva-IN",gby:"gby-Latn-ZZ",gbz:"gbz-Arab-IR",gcr:"gcr-Latn-GF",gd:"gd-Latn-GB",gde:"gde-Latn-ZZ",gdn:"gdn-Latn-ZZ",gdr:"gdr-Latn-ZZ",geb:"geb-Latn-ZZ",gej:"gej-Latn-ZZ",gel:"gel-Latn-ZZ",gez:"gez-Ethi-ET",gfk:"gfk-Latn-ZZ",ggn:"ggn-Deva-NP",ghs:"ghs-Latn-ZZ",gil:"gil-Latn-KI",gim:"gim-Latn-ZZ",gjk:"gjk-Arab-PK",gjn:"gjn-Latn-ZZ",gju:"gju-Arab-PK",gkn:"gkn-Latn-ZZ",gkp:"gkp-Latn-ZZ",gl:"gl-Latn-ES",glk:"glk-Arab-IR",gmm:"gmm-Latn-ZZ",gmv:"gmv-Ethi-ZZ",gn:"gn-Latn-PY",gnd:"gnd-Latn-ZZ",gng:"gng-Latn-ZZ",god:"god-Latn-ZZ",gof:"gof-Ethi-ZZ",goi:"goi-Latn-ZZ",gom:"gom-Deva-IN",gon:"gon-Telu-IN",gor:"gor-Latn-ID",gos:"gos-Latn-NL",got:"got-Goth-UA",grb:"grb-Latn-ZZ",grc:"grc-Cprt-CY","grc-Linb":"grc-Linb-GR",grt:"grt-Beng-IN",grw:"grw-Latn-ZZ",gsw:"gsw-Latn-CH",gu:"gu-Gujr-IN",gub:"gub-Latn-BR",guc:"guc-Latn-CO",gud:"gud-Latn-ZZ",gur:"gur-Latn-GH",guw:"guw-Latn-ZZ",gux:"gux-Latn-ZZ",guz:"guz-Latn-KE",gv:"gv-Latn-IM",gvf:"gvf-Latn-ZZ",gvr:"gvr-Deva-NP",gvs:"gvs-Latn-ZZ",gwc:"gwc-Arab-ZZ",gwi:"gwi-Latn-CA",gwt:"gwt-Arab-ZZ",gyi:"gyi-Latn-ZZ",ha:"ha-Latn-NG","ha-CM":"ha-Arab-CM","ha-SD":"ha-Arab-SD",hag:"hag-Latn-ZZ",hak:"hak-Hans-CN",ham:"ham-Latn-ZZ",haw:"haw-Latn-US",haz:"haz-Arab-AF",hbb:"hbb-Latn-ZZ",hdy:"hdy-Ethi-ZZ",he:"he-Hebr-IL",hhy:"hhy-Latn-ZZ",hi:"hi-Deva-IN",hia:"hia-Latn-ZZ",hif:"hif-Latn-FJ",hig:"hig-Latn-ZZ",hih:"hih-Latn-ZZ",hil:"hil-Latn-PH",hla:"hla-Latn-ZZ",hlu:"hlu-Hluw-TR",hmd:"hmd-Plrd-CN",hmt:"hmt-Latn-ZZ",hnd:"hnd-Arab-PK",hne:"hne-Deva-IN",hnj:"hnj-Hmng-LA",hnn:"hnn-Latn-PH",hno:"hno-Arab-PK",ho:"ho-Latn-PG",hoc:"hoc-Deva-IN",hoj:"hoj-Deva-IN",hot:"hot-Latn-ZZ",hr:"hr-Latn-HR",hsb:"hsb-Latn-DE",hsn:"hsn-Hans-CN",ht:"ht-Latn-HT",hu:"hu-Latn-HU",hui:"hui-Latn-ZZ",hy:"hy-Armn-AM",hz:"hz-Latn-NA",ia:"ia-Latn-001",ian:"ian-Latn-ZZ",iar:"iar-Latn-ZZ",iba:"iba-Latn-MY",ibb:"ibb-Latn-NG",iby:"iby-Latn-ZZ",ica:"ica-Latn-ZZ",ich:"ich-Latn-ZZ",id:"id-Latn-ID",idd:"idd-Latn-ZZ",idi:"idi-Latn-ZZ",idu:"idu-Latn-ZZ",ife:"ife-Latn-TG",ig:"ig-Latn-NG",igb:"igb-Latn-ZZ",ige:"ige-Latn-ZZ",ii:"ii-Yiii-CN",ijj:"ijj-Latn-ZZ",ik:"ik-Latn-US",ikk:"ikk-Latn-ZZ",ikt:"ikt-Latn-CA",ikw:"ikw-Latn-ZZ",ikx:"ikx-Latn-ZZ",ilo:"ilo-Latn-PH",imo:"imo-Latn-ZZ",in:"in-Latn-ID",inh:"inh-Cyrl-RU",io:"io-Latn-001",iou:"iou-Latn-ZZ",iri:"iri-Latn-ZZ",is:"is-Latn-IS",it:"it-Latn-IT",iu:"iu-Cans-CA",iw:"iw-Hebr-IL",iwm:"iwm-Latn-ZZ",iws:"iws-Latn-ZZ",izh:"izh-Latn-RU",izi:"izi-Latn-ZZ",ja:"ja-Jpan-JP",jab:"jab-Latn-ZZ",jam:"jam-Latn-JM",jbo:"jbo-Latn-001",jbu:"jbu-Latn-ZZ",jen:"jen-Latn-ZZ",jgk:"jgk-Latn-ZZ",jgo:"jgo-Latn-CM",ji:"ji-Hebr-UA",jib:"jib-Latn-ZZ",jmc:"jmc-Latn-TZ",jml:"jml-Deva-NP",jra:"jra-Latn-ZZ",jut:"jut-Latn-DK",jv:"jv-Latn-ID",jw:"jw-Latn-ID",ka:"ka-Geor-GE",kaa:"kaa-Cyrl-UZ",kab:"kab-Latn-DZ",kac:"kac-Latn-MM",kad:"kad-Latn-ZZ",kai:"kai-Latn-ZZ",kaj:"kaj-Latn-NG",kam:"kam-Latn-KE",kao:"kao-Latn-ML",kbd:"kbd-Cyrl-RU",kbm:"kbm-Latn-ZZ",kbp:"kbp-Latn-ZZ",kbq:"kbq-Latn-ZZ",kbx:"kbx-Latn-ZZ",kby:"kby-Arab-NE",kcg:"kcg-Latn-NG",kck:"kck-Latn-ZW",kcl:"kcl-Latn-ZZ",kct:"kct-Latn-ZZ",kde:"kde-Latn-TZ",kdh:"kdh-Arab-TG",kdl:"kdl-Latn-ZZ",kdt:"kdt-Thai-TH",kea:"kea-Latn-CV",ken:"ken-Latn-CM",kez:"kez-Latn-ZZ",kfo:"kfo-Latn-CI",kfr:"kfr-Deva-IN",kfy:"kfy-Deva-IN",kg:"kg-Latn-CD",kge:"kge-Latn-ID",kgf:"kgf-Latn-ZZ",kgp:"kgp-Latn-BR",kha:"kha-Latn-IN",khb:"khb-Talu-CN",khn:"khn-Deva-IN",khq:"khq-Latn-ML",khs:"khs-Latn-ZZ",kht:"kht-Mymr-IN",khw:"khw-Arab-PK",khz:"khz-Latn-ZZ",ki:"ki-Latn-KE",kij:"kij-Latn-ZZ",kiu:"kiu-Latn-TR",kiw:"kiw-Latn-ZZ",kj:"kj-Latn-NA",kjd:"kjd-Latn-ZZ",kjg:"kjg-Laoo-LA",kjs:"kjs-Latn-ZZ",kjy:"kjy-Latn-ZZ",kk:"kk-Cyrl-KZ","kk-AF":"kk-Arab-AF","kk-Arab":"kk-Arab-CN","kk-CN":"kk-Arab-CN","kk-IR":"kk-Arab-IR","kk-MN":"kk-Arab-MN",kkc:"kkc-Latn-ZZ",kkj:"kkj-Latn-CM",kl:"kl-Latn-GL",kln:"kln-Latn-KE",klq:"klq-Latn-ZZ",klt:"klt-Latn-ZZ",klx:"klx-Latn-ZZ",km:"km-Khmr-KH",kmb:"kmb-Latn-AO",kmh:"kmh-Latn-ZZ",kmo:"kmo-Latn-ZZ",kms:"kms-Latn-ZZ",kmu:"kmu-Latn-ZZ",kmw:"kmw-Latn-ZZ",kn:"kn-Knda-IN",knf:"knf-Latn-GW",knp:"knp-Latn-ZZ",ko:"ko-Kore-KR",koi:"koi-Cyrl-RU",kok:"kok-Deva-IN",kol:"kol-Latn-ZZ",kos:"kos-Latn-FM",koz:"koz-Latn-ZZ",kpe:"kpe-Latn-LR",kpf:"kpf-Latn-ZZ",kpo:"kpo-Latn-ZZ",kpr:"kpr-Latn-ZZ",kpx:"kpx-Latn-ZZ",kqb:"kqb-Latn-ZZ",kqf:"kqf-Latn-ZZ",kqs:"kqs-Latn-ZZ",kqy:"kqy-Ethi-ZZ",kr:"kr-Latn-ZZ",krc:"krc-Cyrl-RU",kri:"kri-Latn-SL",krj:"krj-Latn-PH",krl:"krl-Latn-RU",krs:"krs-Latn-ZZ",kru:"kru-Deva-IN",ks:"ks-Arab-IN",ksb:"ksb-Latn-TZ",ksd:"ksd-Latn-ZZ",ksf:"ksf-Latn-CM",ksh:"ksh-Latn-DE",ksj:"ksj-Latn-ZZ",ksr:"ksr-Latn-ZZ",ktb:"ktb-Ethi-ZZ",ktm:"ktm-Latn-ZZ",kto:"kto-Latn-ZZ",ktr:"ktr-Latn-MY",ku:"ku-Latn-TR","ku-Arab":"ku-Arab-IQ","ku-LB":"ku-Arab-LB",kub:"kub-Latn-ZZ",kud:"kud-Latn-ZZ",kue:"kue-Latn-ZZ",kuj:"kuj-Latn-ZZ",kum:"kum-Cyrl-RU",kun:"kun-Latn-ZZ",kup:"kup-Latn-ZZ",kus:"kus-Latn-ZZ",kv:"kv-Cyrl-RU",kvg:"kvg-Latn-ZZ",kvr:"kvr-Latn-ID",kvx:"kvx-Arab-PK",kw:"kw-Latn-GB",kwj:"kwj-Latn-ZZ",kwo:"kwo-Latn-ZZ",kwq:"kwq-Latn-ZZ",kxa:"kxa-Latn-ZZ",kxc:"kxc-Ethi-ZZ",kxe:"kxe-Latn-ZZ",kxm:"kxm-Thai-TH",kxp:"kxp-Arab-PK",kxw:"kxw-Latn-ZZ",kxz:"kxz-Latn-ZZ",ky:"ky-Cyrl-KG","ky-Arab":"ky-Arab-CN","ky-CN":"ky-Arab-CN","ky-Latn":"ky-Latn-TR","ky-TR":"ky-Latn-TR",kye:"kye-Latn-ZZ",kyx:"kyx-Latn-ZZ",kzj:"kzj-Latn-MY",kzr:"kzr-Latn-ZZ",kzt:"kzt-Latn-MY",la:"la-Latn-VA",lab:"lab-Lina-GR",lad:"lad-Hebr-IL",lag:"lag-Latn-TZ",lah:"lah-Arab-PK",laj:"laj-Latn-UG",las:"las-Latn-ZZ",lb:"lb-Latn-LU",lbe:"lbe-Cyrl-RU",lbu:"lbu-Latn-ZZ",lbw:"lbw-Latn-ID",lcm:"lcm-Latn-ZZ",lcp:"lcp-Thai-CN",ldb:"ldb-Latn-ZZ",led:"led-Latn-ZZ",lee:"lee-Latn-ZZ",lem:"lem-Latn-ZZ",lep:"lep-Lepc-IN",leq:"leq-Latn-ZZ",leu:"leu-Latn-ZZ",lez:"lez-Cyrl-RU",lg:"lg-Latn-UG",lgg:"lgg-Latn-ZZ",li:"li-Latn-NL",lia:"lia-Latn-ZZ",lid:"lid-Latn-ZZ",lif:"lif-Deva-NP","lif-Limb":"lif-Limb-IN",lig:"lig-Latn-ZZ",lih:"lih-Latn-ZZ",lij:"lij-Latn-IT",lis:"lis-Lisu-CN",ljp:"ljp-Latn-ID",lki:"lki-Arab-IR",lkt:"lkt-Latn-US",lle:"lle-Latn-ZZ",lln:"lln-Latn-ZZ",lmn:"lmn-Telu-IN",lmo:"lmo-Latn-IT",lmp:"lmp-Latn-ZZ",ln:"ln-Latn-CD",lns:"lns-Latn-ZZ",lnu:"lnu-Latn-ZZ",lo:"lo-Laoo-LA",loj:"loj-Latn-ZZ",lok:"lok-Latn-ZZ",lol:"lol-Latn-CD",lor:"lor-Latn-ZZ",los:"los-Latn-ZZ",loz:"loz-Latn-ZM",lrc:"lrc-Arab-IR",lt:"lt-Latn-LT",ltg:"ltg-Latn-LV",lu:"lu-Latn-CD",lua:"lua-Latn-CD",luo:"luo-Latn-KE",luy:"luy-Latn-KE",luz:"luz-Arab-IR",lv:"lv-Latn-LV",lwl:"lwl-Thai-TH",lzh:"lzh-Hans-CN",lzz:"lzz-Latn-TR",mad:"mad-Latn-ID",maf:"maf-Latn-CM",mag:"mag-Deva-IN",mai:"mai-Deva-IN",mak:"mak-Latn-ID",man:"man-Latn-GM","man-GN":"man-Nkoo-GN","man-Nkoo":"man-Nkoo-GN",mas:"mas-Latn-KE",maw:"maw-Latn-ZZ",maz:"maz-Latn-MX",mbh:"mbh-Latn-ZZ",mbo:"mbo-Latn-ZZ",mbq:"mbq-Latn-ZZ",mbu:"mbu-Latn-ZZ",mbw:"mbw-Latn-ZZ",mci:"mci-Latn-ZZ",mcp:"mcp-Latn-ZZ",mcq:"mcq-Latn-ZZ",mcr:"mcr-Latn-ZZ",mcu:"mcu-Latn-ZZ",mda:"mda-Latn-ZZ",mde:"mde-Arab-ZZ",mdf:"mdf-Cyrl-RU",mdh:"mdh-Latn-PH",mdj:"mdj-Latn-ZZ",mdr:"mdr-Latn-ID",mdx:"mdx-Ethi-ZZ",med:"med-Latn-ZZ",mee:"mee-Latn-ZZ",mek:"mek-Latn-ZZ",men:"men-Latn-SL",mer:"mer-Latn-KE",met:"met-Latn-ZZ",meu:"meu-Latn-ZZ",mfa:"mfa-Arab-TH",mfe:"mfe-Latn-MU",mfn:"mfn-Latn-ZZ",mfo:"mfo-Latn-ZZ",mfq:"mfq-Latn-ZZ",mg:"mg-Latn-MG",mgh:"mgh-Latn-MZ",mgl:"mgl-Latn-ZZ",mgo:"mgo-Latn-CM",mgp:"mgp-Deva-NP",mgy:"mgy-Latn-TZ",mh:"mh-Latn-MH",mhi:"mhi-Latn-ZZ",mhl:"mhl-Latn-ZZ",mi:"mi-Latn-NZ",mif:"mif-Latn-ZZ",min:"min-Latn-ID",mis:"mis-Hatr-IQ","mis-Medf":"mis-Medf-NG",miw:"miw-Latn-ZZ",mk:"mk-Cyrl-MK",mki:"mki-Arab-ZZ",mkl:"mkl-Latn-ZZ",mkp:"mkp-Latn-ZZ",mkw:"mkw-Latn-ZZ",ml:"ml-Mlym-IN",mle:"mle-Latn-ZZ",mlp:"mlp-Latn-ZZ",mls:"mls-Latn-SD",mmo:"mmo-Latn-ZZ",mmu:"mmu-Latn-ZZ",mmx:"mmx-Latn-ZZ",mn:"mn-Cyrl-MN","mn-CN":"mn-Mong-CN","mn-Mong":"mn-Mong-CN",mna:"mna-Latn-ZZ",mnf:"mnf-Latn-ZZ",mni:"mni-Beng-IN",mnw:"mnw-Mymr-MM",mo:"mo-Latn-RO",moa:"moa-Latn-ZZ",moe:"moe-Latn-CA",moh:"moh-Latn-CA",mos:"mos-Latn-BF",mox:"mox-Latn-ZZ",mpp:"mpp-Latn-ZZ",mps:"mps-Latn-ZZ",mpt:"mpt-Latn-ZZ",mpx:"mpx-Latn-ZZ",mql:"mql-Latn-ZZ",mr:"mr-Deva-IN",mrd:"mrd-Deva-NP",mrj:"mrj-Cyrl-RU",mro:"mro-Mroo-BD",ms:"ms-Latn-MY","ms-CC":"ms-Arab-CC","ms-ID":"ms-Arab-ID",mt:"mt-Latn-MT",mtc:"mtc-Latn-ZZ",mtf:"mtf-Latn-ZZ",mti:"mti-Latn-ZZ",mtr:"mtr-Deva-IN",mua:"mua-Latn-CM",mur:"mur-Latn-ZZ",mus:"mus-Latn-US",mva:"mva-Latn-ZZ",mvn:"mvn-Latn-ZZ",mvy:"mvy-Arab-PK",mwk:"mwk-Latn-ML",mwr:"mwr-Deva-IN",mwv:"mwv-Latn-ID",mww:"mww-Hmnp-US",mxc:"mxc-Latn-ZW",mxm:"mxm-Latn-ZZ",my:"my-Mymr-MM",myk:"myk-Latn-ZZ",mym:"mym-Ethi-ZZ",myv:"myv-Cyrl-RU",myw:"myw-Latn-ZZ",myx:"myx-Latn-UG",myz:"myz-Mand-IR",mzk:"mzk-Latn-ZZ",mzm:"mzm-Latn-ZZ",mzn:"mzn-Arab-IR",mzp:"mzp-Latn-ZZ",mzw:"mzw-Latn-ZZ",mzz:"mzz-Latn-ZZ",na:"na-Latn-NR",nac:"nac-Latn-ZZ",naf:"naf-Latn-ZZ",nak:"nak-Latn-ZZ",nan:"nan-Hans-CN",nap:"nap-Latn-IT",naq:"naq-Latn-NA",nas:"nas-Latn-ZZ",nb:"nb-Latn-NO",nca:"nca-Latn-ZZ",nce:"nce-Latn-ZZ",ncf:"ncf-Latn-ZZ",nch:"nch-Latn-MX",nco:"nco-Latn-ZZ",ncu:"ncu-Latn-ZZ",nd:"nd-Latn-ZW",ndc:"ndc-Latn-MZ",nds:"nds-Latn-DE",ne:"ne-Deva-NP",neb:"neb-Latn-ZZ",new:"new-Deva-NP",nex:"nex-Latn-ZZ",nfr:"nfr-Latn-ZZ",ng:"ng-Latn-NA",nga:"nga-Latn-ZZ",ngb:"ngb-Latn-ZZ",ngl:"ngl-Latn-MZ",nhb:"nhb-Latn-ZZ",nhe:"nhe-Latn-MX",nhw:"nhw-Latn-MX",nif:"nif-Latn-ZZ",nii:"nii-Latn-ZZ",nij:"nij-Latn-ID",nin:"nin-Latn-ZZ",niu:"niu-Latn-NU",niy:"niy-Latn-ZZ",niz:"niz-Latn-ZZ",njo:"njo-Latn-IN",nkg:"nkg-Latn-ZZ",nko:"nko-Latn-ZZ",nl:"nl-Latn-NL",nmg:"nmg-Latn-CM",nmz:"nmz-Latn-ZZ",nn:"nn-Latn-NO",nnf:"nnf-Latn-ZZ",nnh:"nnh-Latn-CM",nnk:"nnk-Latn-ZZ",nnm:"nnm-Latn-ZZ",nnp:"nnp-Wcho-IN",no:"no-Latn-NO",nod:"nod-Lana-TH",noe:"noe-Deva-IN",non:"non-Runr-SE",nop:"nop-Latn-ZZ",nou:"nou-Latn-ZZ",nqo:"nqo-Nkoo-GN",nr:"nr-Latn-ZA",nrb:"nrb-Latn-ZZ",nsk:"nsk-Cans-CA",nsn:"nsn-Latn-ZZ",nso:"nso-Latn-ZA",nss:"nss-Latn-ZZ",ntm:"ntm-Latn-ZZ",ntr:"ntr-Latn-ZZ",nui:"nui-Latn-ZZ",nup:"nup-Latn-ZZ",nus:"nus-Latn-SS",nuv:"nuv-Latn-ZZ",nux:"nux-Latn-ZZ",nv:"nv-Latn-US",nwb:"nwb-Latn-ZZ",nxq:"nxq-Latn-CN",nxr:"nxr-Latn-ZZ",ny:"ny-Latn-MW",nym:"nym-Latn-TZ",nyn:"nyn-Latn-UG",nzi:"nzi-Latn-GH",oc:"oc-Latn-FR",ogc:"ogc-Latn-ZZ",okr:"okr-Latn-ZZ",okv:"okv-Latn-ZZ",om:"om-Latn-ET",ong:"ong-Latn-ZZ",onn:"onn-Latn-ZZ",ons:"ons-Latn-ZZ",opm:"opm-Latn-ZZ",or:"or-Orya-IN",oro:"oro-Latn-ZZ",oru:"oru-Arab-ZZ",os:"os-Cyrl-GE",osa:"osa-Osge-US",ota:"ota-Arab-ZZ",otk:"otk-Orkh-MN",ozm:"ozm-Latn-ZZ",pa:"pa-Guru-IN","pa-Arab":"pa-Arab-PK","pa-PK":"pa-Arab-PK",pag:"pag-Latn-PH",pal:"pal-Phli-IR","pal-Phlp":"pal-Phlp-CN",pam:"pam-Latn-PH",pap:"pap-Latn-AW",pau:"pau-Latn-PW",pbi:"pbi-Latn-ZZ",pcd:"pcd-Latn-FR",pcm:"pcm-Latn-NG",pdc:"pdc-Latn-US",pdt:"pdt-Latn-CA",ped:"ped-Latn-ZZ",peo:"peo-Xpeo-IR",pex:"pex-Latn-ZZ",pfl:"pfl-Latn-DE",phl:"phl-Arab-ZZ",phn:"phn-Phnx-LB",pil:"pil-Latn-ZZ",pip:"pip-Latn-ZZ",pka:"pka-Brah-IN",pko:"pko-Latn-KE",pl:"pl-Latn-PL",pla:"pla-Latn-ZZ",pms:"pms-Latn-IT",png:"png-Latn-ZZ",pnn:"pnn-Latn-ZZ",pnt:"pnt-Grek-GR",pon:"pon-Latn-FM",ppa:"ppa-Deva-IN",ppo:"ppo-Latn-ZZ",pra:"pra-Khar-PK",prd:"prd-Arab-IR",prg:"prg-Latn-001",ps:"ps-Arab-AF",pss:"pss-Latn-ZZ",pt:"pt-Latn-BR",ptp:"ptp-Latn-ZZ",puu:"puu-Latn-GA",pwa:"pwa-Latn-ZZ",qu:"qu-Latn-PE",quc:"quc-Latn-GT",qug:"qug-Latn-EC",rai:"rai-Latn-ZZ",raj:"raj-Deva-IN",rao:"rao-Latn-ZZ",rcf:"rcf-Latn-RE",rej:"rej-Latn-ID",rel:"rel-Latn-ZZ",res:"res-Latn-ZZ",rgn:"rgn-Latn-IT",rhg:"rhg-Arab-MM",ria:"ria-Latn-IN",rif:"rif-Tfng-MA","rif-NL":"rif-Latn-NL",rjs:"rjs-Deva-NP",rkt:"rkt-Beng-BD",rm:"rm-Latn-CH",rmf:"rmf-Latn-FI",rmo:"rmo-Latn-CH",rmt:"rmt-Arab-IR",rmu:"rmu-Latn-SE",rn:"rn-Latn-BI",rna:"rna-Latn-ZZ",rng:"rng-Latn-MZ",ro:"ro-Latn-RO",rob:"rob-Latn-ID",rof:"rof-Latn-TZ",roo:"roo-Latn-ZZ",rro:"rro-Latn-ZZ",rtm:"rtm-Latn-FJ",ru:"ru-Cyrl-RU",rue:"rue-Cyrl-UA",rug:"rug-Latn-SB",rw:"rw-Latn-RW",rwk:"rwk-Latn-TZ",rwo:"rwo-Latn-ZZ",ryu:"ryu-Kana-JP",sa:"sa-Deva-IN",saf:"saf-Latn-GH",sah:"sah-Cyrl-RU",saq:"saq-Latn-KE",sas:"sas-Latn-ID",sat:"sat-Latn-IN",sav:"sav-Latn-SN",saz:"saz-Saur-IN",sba:"sba-Latn-ZZ",sbe:"sbe-Latn-ZZ",sbp:"sbp-Latn-TZ",sc:"sc-Latn-IT",sck:"sck-Deva-IN",scl:"scl-Arab-ZZ",scn:"scn-Latn-IT",sco:"sco-Latn-GB",scs:"scs-Latn-CA",sd:"sd-Arab-PK","sd-Deva":"sd-Deva-IN","sd-Khoj":"sd-Khoj-IN","sd-Sind":"sd-Sind-IN",sdc:"sdc-Latn-IT",sdh:"sdh-Arab-IR",se:"se-Latn-NO",sef:"sef-Latn-CI",seh:"seh-Latn-MZ",sei:"sei-Latn-MX",ses:"ses-Latn-ML",sg:"sg-Latn-CF",sga:"sga-Ogam-IE",sgs:"sgs-Latn-LT",sgw:"sgw-Ethi-ZZ",sgz:"sgz-Latn-ZZ",shi:"shi-Tfng-MA",shk:"shk-Latn-ZZ",shn:"shn-Mymr-MM",shu:"shu-Arab-ZZ",si:"si-Sinh-LK",sid:"sid-Latn-ET",sig:"sig-Latn-ZZ",sil:"sil-Latn-ZZ",sim:"sim-Latn-ZZ",sjr:"sjr-Latn-ZZ",sk:"sk-Latn-SK",skc:"skc-Latn-ZZ",skr:"skr-Arab-PK",sks:"sks-Latn-ZZ",sl:"sl-Latn-SI",sld:"sld-Latn-ZZ",sli:"sli-Latn-PL",sll:"sll-Latn-ZZ",sly:"sly-Latn-ID",sm:"sm-Latn-WS",sma:"sma-Latn-SE",smj:"smj-Latn-SE",smn:"smn-Latn-FI",smp:"smp-Samr-IL",smq:"smq-Latn-ZZ",sms:"sms-Latn-FI",sn:"sn-Latn-ZW",snc:"snc-Latn-ZZ",snk:"snk-Latn-ML",snp:"snp-Latn-ZZ",snx:"snx-Latn-ZZ",sny:"sny-Latn-ZZ",so:"so-Latn-SO",sog:"sog-Sogd-UZ",sok:"sok-Latn-ZZ",soq:"soq-Latn-ZZ",sou:"sou-Thai-TH",soy:"soy-Latn-ZZ",spd:"spd-Latn-ZZ",spl:"spl-Latn-ZZ",sps:"sps-Latn-ZZ",sq:"sq-Latn-AL",sr:"sr-Cyrl-RS","sr-ME":"sr-Latn-ME","sr-RO":"sr-Latn-RO","sr-RU":"sr-Latn-RU","sr-TR":"sr-Latn-TR",srb:"srb-Sora-IN",srn:"srn-Latn-SR",srr:"srr-Latn-SN",srx:"srx-Deva-IN",ss:"ss-Latn-ZA",ssd:"ssd-Latn-ZZ",ssg:"ssg-Latn-ZZ",ssy:"ssy-Latn-ER",st:"st-Latn-ZA",stk:"stk-Latn-ZZ",stq:"stq-Latn-DE",su:"su-Latn-ID",sua:"sua-Latn-ZZ",sue:"sue-Latn-ZZ",suk:"suk-Latn-TZ",sur:"sur-Latn-ZZ",sus:"sus-Latn-GN",sv:"sv-Latn-SE",sw:"sw-Latn-TZ",swb:"swb-Arab-YT",swc:"swc-Latn-CD",swg:"swg-Latn-DE",swp:"swp-Latn-ZZ",swv:"swv-Deva-IN",sxn:"sxn-Latn-ID",sxw:"sxw-Latn-ZZ",syl:"syl-Beng-BD",syr:"syr-Syrc-IQ",szl:"szl-Latn-PL",ta:"ta-Taml-IN",taj:"taj-Deva-NP",tal:"tal-Latn-ZZ",tan:"tan-Latn-ZZ",taq:"taq-Latn-ZZ",tbc:"tbc-Latn-ZZ",tbd:"tbd-Latn-ZZ",tbf:"tbf-Latn-ZZ",tbg:"tbg-Latn-ZZ",tbo:"tbo-Latn-ZZ",tbw:"tbw-Latn-PH",tbz:"tbz-Latn-ZZ",tci:"tci-Latn-ZZ",tcy:"tcy-Knda-IN",tdd:"tdd-Tale-CN",tdg:"tdg-Deva-NP",tdh:"tdh-Deva-NP",tdu:"tdu-Latn-MY",te:"te-Telu-IN",ted:"ted-Latn-ZZ",tem:"tem-Latn-SL",teo:"teo-Latn-UG",tet:"tet-Latn-TL",tfi:"tfi-Latn-ZZ",tg:"tg-Cyrl-TJ","tg-Arab":"tg-Arab-PK","tg-PK":"tg-Arab-PK",tgc:"tgc-Latn-ZZ",tgo:"tgo-Latn-ZZ",tgu:"tgu-Latn-ZZ",th:"th-Thai-TH",thl:"thl-Deva-NP",thq:"thq-Deva-NP",thr:"thr-Deva-NP",ti:"ti-Ethi-ET",tif:"tif-Latn-ZZ",tig:"tig-Ethi-ER",tik:"tik-Latn-ZZ",tim:"tim-Latn-ZZ",tio:"tio-Latn-ZZ",tiv:"tiv-Latn-NG",tk:"tk-Latn-TM",tkl:"tkl-Latn-TK",tkr:"tkr-Latn-AZ",tkt:"tkt-Deva-NP",tl:"tl-Latn-PH",tlf:"tlf-Latn-ZZ",tlx:"tlx-Latn-ZZ",tly:"tly-Latn-AZ",tmh:"tmh-Latn-NE",tmy:"tmy-Latn-ZZ",tn:"tn-Latn-ZA",tnh:"tnh-Latn-ZZ",to:"to-Latn-TO",tof:"tof-Latn-ZZ",tog:"tog-Latn-MW",toq:"toq-Latn-ZZ",tpi:"tpi-Latn-PG",tpm:"tpm-Latn-ZZ",tpz:"tpz-Latn-ZZ",tqo:"tqo-Latn-ZZ",tr:"tr-Latn-TR",tru:"tru-Latn-TR",trv:"trv-Latn-TW",trw:"trw-Arab-ZZ",ts:"ts-Latn-ZA",tsd:"tsd-Grek-GR",tsf:"tsf-Deva-NP",tsg:"tsg-Latn-PH",tsj:"tsj-Tibt-BT",tsw:"tsw-Latn-ZZ",tt:"tt-Cyrl-RU",ttd:"ttd-Latn-ZZ",tte:"tte-Latn-ZZ",ttj:"ttj-Latn-UG",ttr:"ttr-Latn-ZZ",tts:"tts-Thai-TH",ttt:"ttt-Latn-AZ",tuh:"tuh-Latn-ZZ",tul:"tul-Latn-ZZ",tum:"tum-Latn-MW",tuq:"tuq-Latn-ZZ",tvd:"tvd-Latn-ZZ",tvl:"tvl-Latn-TV",tvu:"tvu-Latn-ZZ",twh:"twh-Latn-ZZ",twq:"twq-Latn-NE",txg:"txg-Tang-CN",ty:"ty-Latn-PF",tya:"tya-Latn-ZZ",tyv:"tyv-Cyrl-RU",tzm:"tzm-Latn-MA",ubu:"ubu-Latn-ZZ",udm:"udm-Cyrl-RU",ug:"ug-Arab-CN","ug-Cyrl":"ug-Cyrl-KZ","ug-KZ":"ug-Cyrl-KZ","ug-MN":"ug-Cyrl-MN",uga:"uga-Ugar-SY",uk:"uk-Cyrl-UA",uli:"uli-Latn-FM",umb:"umb-Latn-AO",und:"en-Latn-US","und-002":"en-Latn-NG","und-003":"en-Latn-US","und-005":"pt-Latn-BR","und-009":"en-Latn-AU","und-011":"en-Latn-NG","und-013":"es-Latn-MX","und-014":"sw-Latn-TZ","und-015":"ar-Arab-EG","und-017":"sw-Latn-CD","und-018":"en-Latn-ZA","und-019":"en-Latn-US","und-021":"en-Latn-US","und-029":"es-Latn-CU","und-030":"zh-Hans-CN","und-034":"hi-Deva-IN","und-035":"id-Latn-ID","und-039":"it-Latn-IT","und-053":"en-Latn-AU","und-054":"en-Latn-PG","und-057":"en-Latn-GU","und-061":"sm-Latn-WS","und-142":"zh-Hans-CN","und-143":"uz-Latn-UZ","und-145":"ar-Arab-SA","und-150":"ru-Cyrl-RU","und-151":"ru-Cyrl-RU","und-154":"en-Latn-GB","und-155":"de-Latn-DE","und-202":"en-Latn-NG","und-419":"es-Latn-419","und-AD":"ca-Latn-AD","und-Adlm":"ff-Adlm-GN","und-AE":"ar-Arab-AE","und-AF":"fa-Arab-AF","und-Aghb":"lez-Aghb-RU","und-Ahom":"aho-Ahom-IN","und-AL":"sq-Latn-AL","und-AM":"hy-Armn-AM","und-AO":"pt-Latn-AO","und-AQ":"und-Latn-AQ","und-AR":"es-Latn-AR","und-Arab":"ar-Arab-EG","und-Arab-CC":"ms-Arab-CC","und-Arab-CN":"ug-Arab-CN","und-Arab-GB":"ks-Arab-GB","und-Arab-ID":"ms-Arab-ID","und-Arab-IN":"ur-Arab-IN","und-Arab-KH":"cja-Arab-KH","und-Arab-MM":"rhg-Arab-MM","und-Arab-MN":"kk-Arab-MN","und-Arab-MU":"ur-Arab-MU","und-Arab-NG":"ha-Arab-NG","und-Arab-PK":"ur-Arab-PK","und-Arab-TG":"apd-Arab-TG","und-Arab-TH":"mfa-Arab-TH","und-Arab-TJ":"fa-Arab-TJ","und-Arab-TR":"az-Arab-TR","und-Arab-YT":"swb-Arab-YT","und-Armi":"arc-Armi-IR","und-Armn":"hy-Armn-AM","und-AS":"sm-Latn-AS","und-AT":"de-Latn-AT","und-Avst":"ae-Avst-IR","und-AW":"nl-Latn-AW","und-AX":"sv-Latn-AX","und-AZ":"az-Latn-AZ","und-BA":"bs-Latn-BA","und-Bali":"ban-Bali-ID","und-Bamu":"bax-Bamu-CM","und-Bass":"bsq-Bass-LR","und-Batk":"bbc-Batk-ID","und-BD":"bn-Beng-BD","und-BE":"nl-Latn-BE","und-Beng":"bn-Beng-BD","und-BF":"fr-Latn-BF","und-BG":"bg-Cyrl-BG","und-BH":"ar-Arab-BH","und-Bhks":"sa-Bhks-IN","und-BI":"rn-Latn-BI","und-BJ":"fr-Latn-BJ","und-BL":"fr-Latn-BL","und-BN":"ms-Latn-BN","und-BO":"es-Latn-BO","und-Bopo":"zh-Bopo-TW","und-BQ":"pap-Latn-BQ","und-BR":"pt-Latn-BR","und-Brah":"pka-Brah-IN","und-Brai":"fr-Brai-FR","und-BT":"dz-Tibt-BT","und-Bugi":"bug-Bugi-ID","und-Buhd":"bku-Buhd-PH","und-BV":"und-Latn-BV","und-BY":"be-Cyrl-BY","und-Cakm":"ccp-Cakm-BD","und-Cans":"cr-Cans-CA","und-Cari":"xcr-Cari-TR","und-CD":"sw-Latn-CD","und-CF":"fr-Latn-CF","und-CG":"fr-Latn-CG","und-CH":"de-Latn-CH","und-Cham":"cjm-Cham-VN","und-Cher":"chr-Cher-US","und-CI":"fr-Latn-CI","und-CL":"es-Latn-CL","und-CM":"fr-Latn-CM","und-CN":"zh-Hans-CN","und-CO":"es-Latn-CO","und-Copt":"cop-Copt-EG","und-CP":"und-Latn-CP","und-Cprt":"grc-Cprt-CY","und-CR":"es-Latn-CR","und-CU":"es-Latn-CU","und-CV":"pt-Latn-CV","und-CW":"pap-Latn-CW","und-CY":"el-Grek-CY","und-Cyrl":"ru-Cyrl-RU","und-Cyrl-AL":"mk-Cyrl-AL","und-Cyrl-BA":"sr-Cyrl-BA","und-Cyrl-GE":"ab-Cyrl-GE","und-Cyrl-GR":"mk-Cyrl-GR","und-Cyrl-MD":"uk-Cyrl-MD","und-Cyrl-RO":"bg-Cyrl-RO","und-Cyrl-SK":"uk-Cyrl-SK","und-Cyrl-TR":"kbd-Cyrl-TR","und-Cyrl-XK":"sr-Cyrl-XK","und-CZ":"cs-Latn-CZ","und-DE":"de-Latn-DE","und-Deva":"hi-Deva-IN","und-Deva-BT":"ne-Deva-BT","und-Deva-FJ":"hif-Deva-FJ","und-Deva-MU":"bho-Deva-MU","und-Deva-PK":"btv-Deva-PK","und-DJ":"aa-Latn-DJ","und-DK":"da-Latn-DK","und-DO":"es-Latn-DO","und-Dogr":"doi-Dogr-IN","und-Dupl":"fr-Dupl-FR","und-DZ":"ar-Arab-DZ","und-EA":"es-Latn-EA","und-EC":"es-Latn-EC","und-EE":"et-Latn-EE","und-EG":"ar-Arab-EG","und-Egyp":"egy-Egyp-EG","und-EH":"ar-Arab-EH","und-Elba":"sq-Elba-AL","und-Elym":"arc-Elym-IR","und-ER":"ti-Ethi-ER","und-ES":"es-Latn-ES","und-ET":"am-Ethi-ET","und-Ethi":"am-Ethi-ET","und-EU":"en-Latn-GB","und-EZ":"de-Latn-EZ","und-FI":"fi-Latn-FI","und-FO":"fo-Latn-FO","und-FR":"fr-Latn-FR","und-GA":"fr-Latn-GA","und-GE":"ka-Geor-GE","und-Geor":"ka-Geor-GE","und-GF":"fr-Latn-GF","und-GH":"ak-Latn-GH","und-GL":"kl-Latn-GL","und-Glag":"cu-Glag-BG","und-GN":"fr-Latn-GN","und-Gong":"wsg-Gong-IN","und-Gonm":"esg-Gonm-IN","und-Goth":"got-Goth-UA","und-GP":"fr-Latn-GP","und-GQ":"es-Latn-GQ","und-GR":"el-Grek-GR","und-Gran":"sa-Gran-IN","und-Grek":"el-Grek-GR","und-Grek-TR":"bgx-Grek-TR","und-GS":"und-Latn-GS","und-GT":"es-Latn-GT","und-Gujr":"gu-Gujr-IN","und-Guru":"pa-Guru-IN","und-GW":"pt-Latn-GW","und-Hanb":"zh-Hanb-TW","und-Hang":"ko-Hang-KR","und-Hani":"zh-Hani-CN","und-Hano":"hnn-Hano-PH","und-Hans":"zh-Hans-CN","und-Hant":"zh-Hant-TW","und-Hatr":"mis-Hatr-IQ","und-Hebr":"he-Hebr-IL","und-Hebr-CA":"yi-Hebr-CA","und-Hebr-GB":"yi-Hebr-GB","und-Hebr-SE":"yi-Hebr-SE","und-Hebr-UA":"yi-Hebr-UA","und-Hebr-US":"yi-Hebr-US","und-Hira":"ja-Hira-JP","und-HK":"zh-Hant-HK","und-Hluw":"hlu-Hluw-TR","und-HM":"und-Latn-HM","und-Hmng":"hnj-Hmng-LA","und-Hmnp":"mww-Hmnp-US","und-HN":"es-Latn-HN","und-HR":"hr-Latn-HR","und-HT":"ht-Latn-HT","und-HU":"hu-Latn-HU","und-Hung":"hu-Hung-HU","und-IC":"es-Latn-IC","und-ID":"id-Latn-ID","und-IL":"he-Hebr-IL","und-IN":"hi-Deva-IN","und-IQ":"ar-Arab-IQ","und-IR":"fa-Arab-IR","und-IS":"is-Latn-IS","und-IT":"it-Latn-IT","und-Ital":"ett-Ital-IT","und-Jamo":"ko-Jamo-KR","und-Java":"jv-Java-ID","und-JO":"ar-Arab-JO","und-JP":"ja-Jpan-JP","und-Jpan":"ja-Jpan-JP","und-Kali":"eky-Kali-MM","und-Kana":"ja-Kana-JP","und-KE":"sw-Latn-KE","und-KG":"ky-Cyrl-KG","und-KH":"km-Khmr-KH","und-Khar":"pra-Khar-PK","und-Khmr":"km-Khmr-KH","und-Khoj":"sd-Khoj-IN","und-KM":"ar-Arab-KM","und-Knda":"kn-Knda-IN","und-Kore":"ko-Kore-KR","und-KP":"ko-Kore-KP","und-KR":"ko-Kore-KR","und-Kthi":"bho-Kthi-IN","und-KW":"ar-Arab-KW","und-KZ":"ru-Cyrl-KZ","und-LA":"lo-Laoo-LA","und-Lana":"nod-Lana-TH","und-Laoo":"lo-Laoo-LA","und-Latn-AF":"tk-Latn-AF","und-Latn-AM":"ku-Latn-AM","und-Latn-CN":"za-Latn-CN","und-Latn-CY":"tr-Latn-CY","und-Latn-DZ":"fr-Latn-DZ","und-Latn-ET":"en-Latn-ET","und-Latn-GE":"ku-Latn-GE","und-Latn-IR":"tk-Latn-IR","und-Latn-KM":"fr-Latn-KM","und-Latn-MA":"fr-Latn-MA","und-Latn-MK":"sq-Latn-MK","und-Latn-MM":"kac-Latn-MM","und-Latn-MO":"pt-Latn-MO","und-Latn-MR":"fr-Latn-MR","und-Latn-RU":"krl-Latn-RU","und-Latn-SY":"fr-Latn-SY","und-Latn-TN":"fr-Latn-TN","und-Latn-TW":"trv-Latn-TW","und-Latn-UA":"pl-Latn-UA","und-LB":"ar-Arab-LB","und-Lepc":"lep-Lepc-IN","und-LI":"de-Latn-LI","und-Limb":"lif-Limb-IN","und-Lina":"lab-Lina-GR","und-Linb":"grc-Linb-GR","und-Lisu":"lis-Lisu-CN","und-LK":"si-Sinh-LK","und-LS":"st-Latn-LS","und-LT":"lt-Latn-LT","und-LU":"fr-Latn-LU","und-LV":"lv-Latn-LV","und-LY":"ar-Arab-LY","und-Lyci":"xlc-Lyci-TR","und-Lydi":"xld-Lydi-TR","und-MA":"ar-Arab-MA","und-Mahj":"hi-Mahj-IN","und-Maka":"mak-Maka-ID","und-Mand":"myz-Mand-IR","und-Mani":"xmn-Mani-CN","und-Marc":"bo-Marc-CN","und-MC":"fr-Latn-MC","und-MD":"ro-Latn-MD","und-ME":"sr-Latn-ME","und-Medf":"mis-Medf-NG","und-Mend":"men-Mend-SL","und-Merc":"xmr-Merc-SD","und-Mero":"xmr-Mero-SD","und-MF":"fr-Latn-MF","und-MG":"mg-Latn-MG","und-MK":"mk-Cyrl-MK","und-ML":"bm-Latn-ML","und-Mlym":"ml-Mlym-IN","und-MM":"my-Mymr-MM","und-MN":"mn-Cyrl-MN","und-MO":"zh-Hant-MO","und-Modi":"mr-Modi-IN","und-Mong":"mn-Mong-CN","und-MQ":"fr-Latn-MQ","und-MR":"ar-Arab-MR","und-Mroo":"mro-Mroo-BD","und-MT":"mt-Latn-MT","und-Mtei":"mni-Mtei-IN","und-MU":"mfe-Latn-MU","und-Mult":"skr-Mult-PK","und-MV":"dv-Thaa-MV","und-MX":"es-Latn-MX","und-MY":"ms-Latn-MY","und-Mymr":"my-Mymr-MM","und-Mymr-IN":"kht-Mymr-IN","und-Mymr-TH":"mnw-Mymr-TH","und-MZ":"pt-Latn-MZ","und-NA":"af-Latn-NA","und-Nand":"sa-Nand-IN","und-Narb":"xna-Narb-SA","und-Nbat":"arc-Nbat-JO","und-NC":"fr-Latn-NC","und-NE":"ha-Latn-NE","und-Newa":"new-Newa-NP","und-NI":"es-Latn-NI","und-Nkoo":"man-Nkoo-GN","und-NL":"nl-Latn-NL","und-NO":"nb-Latn-NO","und-NP":"ne-Deva-NP","und-Nshu":"zhx-Nshu-CN","und-Ogam":"sga-Ogam-IE","und-Olck":"sat-Olck-IN","und-OM":"ar-Arab-OM","und-Orkh":"otk-Orkh-MN","und-Orya":"or-Orya-IN","und-Osge":"osa-Osge-US","und-Osma":"so-Osma-SO","und-PA":"es-Latn-PA","und-Palm":"arc-Palm-SY","und-Pauc":"ctd-Pauc-MM","und-PE":"es-Latn-PE","und-Perm":"kv-Perm-RU","und-PF":"fr-Latn-PF","und-PG":"tpi-Latn-PG","und-PH":"fil-Latn-PH","und-Phag":"lzh-Phag-CN","und-Phli":"pal-Phli-IR","und-Phlp":"pal-Phlp-CN","und-Phnx":"phn-Phnx-LB","und-PK":"ur-Arab-PK","und-PL":"pl-Latn-PL","und-Plrd":"hmd-Plrd-CN","und-PM":"fr-Latn-PM","und-PR":"es-Latn-PR","und-Prti":"xpr-Prti-IR","und-PS":"ar-Arab-PS","und-PT":"pt-Latn-PT","und-PW":"pau-Latn-PW","und-PY":"gn-Latn-PY","und-QA":"ar-Arab-QA","und-QO":"en-Latn-DG","und-RE":"fr-Latn-RE","und-Rjng":"rej-Rjng-ID","und-RO":"ro-Latn-RO","und-Rohg":"rhg-Rohg-MM","und-RS":"sr-Cyrl-RS","und-RU":"ru-Cyrl-RU","und-Runr":"non-Runr-SE","und-RW":"rw-Latn-RW","und-SA":"ar-Arab-SA","und-Samr":"smp-Samr-IL","und-Sarb":"xsa-Sarb-YE","und-Saur":"saz-Saur-IN","und-SC":"fr-Latn-SC","und-SD":"ar-Arab-SD","und-SE":"sv-Latn-SE","und-Sgnw":"ase-Sgnw-US","und-Shaw":"en-Shaw-GB","und-Shrd":"sa-Shrd-IN","und-SI":"sl-Latn-SI","und-Sidd":"sa-Sidd-IN","und-Sind":"sd-Sind-IN","und-Sinh":"si-Sinh-LK","und-SJ":"nb-Latn-SJ","und-SK":"sk-Latn-SK","und-SM":"it-Latn-SM","und-SN":"fr-Latn-SN","und-SO":"so-Latn-SO","und-Sogd":"sog-Sogd-UZ","und-Sogo":"sog-Sogo-UZ","und-Sora":"srb-Sora-IN","und-Soyo":"cmg-Soyo-MN","und-SR":"nl-Latn-SR","und-ST":"pt-Latn-ST","und-Sund":"su-Sund-ID","und-SV":"es-Latn-SV","und-SY":"ar-Arab-SY","und-Sylo":"syl-Sylo-BD","und-Syrc":"syr-Syrc-IQ","und-Tagb":"tbw-Tagb-PH","und-Takr":"doi-Takr-IN","und-Tale":"tdd-Tale-CN","und-Talu":"khb-Talu-CN","und-Taml":"ta-Taml-IN","und-Tang":"txg-Tang-CN","und-Tavt":"blt-Tavt-VN","und-TD":"fr-Latn-TD","und-Telu":"te-Telu-IN","und-TF":"fr-Latn-TF","und-Tfng":"zgh-Tfng-MA","und-TG":"fr-Latn-TG","und-Tglg":"fil-Tglg-PH","und-TH":"th-Thai-TH","und-Thaa":"dv-Thaa-MV","und-Thai":"th-Thai-TH","und-Thai-CN":"lcp-Thai-CN","und-Thai-KH":"kdt-Thai-KH","und-Thai-LA":"kdt-Thai-LA","und-Tibt":"bo-Tibt-CN","und-Tirh":"mai-Tirh-IN","und-TJ":"tg-Cyrl-TJ","und-TK":"tkl-Latn-TK","und-TL":"pt-Latn-TL","und-TM":"tk-Latn-TM","und-TN":"ar-Arab-TN","und-TO":"to-Latn-TO","und-TR":"tr-Latn-TR","und-TV":"tvl-Latn-TV","und-TW":"zh-Hant-TW","und-TZ":"sw-Latn-TZ","und-UA":"uk-Cyrl-UA","und-UG":"sw-Latn-UG","und-Ugar":"uga-Ugar-SY","und-UY":"es-Latn-UY","und-UZ":"uz-Latn-UZ","und-VA":"it-Latn-VA","und-Vaii":"vai-Vaii-LR","und-VE":"es-Latn-VE","und-VN":"vi-Latn-VN","und-VU":"bi-Latn-VU","und-Wara":"hoc-Wara-IN","und-Wcho":"nnp-Wcho-IN","und-WF":"fr-Latn-WF","und-WS":"sm-Latn-WS","und-XK":"sq-Latn-XK","und-Xpeo":"peo-Xpeo-IR","und-Xsux":"akk-Xsux-IQ","und-YE":"ar-Arab-YE","und-Yiii":"ii-Yiii-CN","und-YT":"fr-Latn-YT","und-Zanb":"cmg-Zanb-MN","und-ZW":"sn-Latn-ZW",unr:"unr-Beng-IN","unr-Deva":"unr-Deva-NP","unr-NP":"unr-Deva-NP",unx:"unx-Beng-IN",uok:"uok-Latn-ZZ",ur:"ur-Arab-PK",uri:"uri-Latn-ZZ",urt:"urt-Latn-ZZ",urw:"urw-Latn-ZZ",usa:"usa-Latn-ZZ",utr:"utr-Latn-ZZ",uvh:"uvh-Latn-ZZ",uvl:"uvl-Latn-ZZ",uz:"uz-Latn-UZ","uz-AF":"uz-Arab-AF","uz-Arab":"uz-Arab-AF","uz-CN":"uz-Cyrl-CN",vag:"vag-Latn-ZZ",vai:"vai-Vaii-LR",van:"van-Latn-ZZ",ve:"ve-Latn-ZA",vec:"vec-Latn-IT",vep:"vep-Latn-RU",vi:"vi-Latn-VN",vic:"vic-Latn-SX",viv:"viv-Latn-ZZ",vls:"vls-Latn-BE",vmf:"vmf-Latn-DE",vmw:"vmw-Latn-MZ",vo:"vo-Latn-001",vot:"vot-Latn-RU",vro:"vro-Latn-EE",vun:"vun-Latn-TZ",vut:"vut-Latn-ZZ",wa:"wa-Latn-BE",wae:"wae-Latn-CH",waj:"waj-Latn-ZZ",wal:"wal-Ethi-ET",wan:"wan-Latn-ZZ",war:"war-Latn-PH",wbp:"wbp-Latn-AU",wbq:"wbq-Telu-IN",wbr:"wbr-Deva-IN",wci:"wci-Latn-ZZ",wer:"wer-Latn-ZZ",wgi:"wgi-Latn-ZZ",whg:"whg-Latn-ZZ",wib:"wib-Latn-ZZ",wiu:"wiu-Latn-ZZ",wiv:"wiv-Latn-ZZ",wja:"wja-Latn-ZZ",wji:"wji-Latn-ZZ",wls:"wls-Latn-WF",wmo:"wmo-Latn-ZZ",wnc:"wnc-Latn-ZZ",wni:"wni-Arab-KM",wnu:"wnu-Latn-ZZ",wo:"wo-Latn-SN",wob:"wob-Latn-ZZ",wos:"wos-Latn-ZZ",wrs:"wrs-Latn-ZZ",wsg:"wsg-Gong-IN",wsk:"wsk-Latn-ZZ",wtm:"wtm-Deva-IN",wuu:"wuu-Hans-CN",wuv:"wuv-Latn-ZZ",wwa:"wwa-Latn-ZZ",xav:"xav-Latn-BR",xbi:"xbi-Latn-ZZ",xcr:"xcr-Cari-TR",xes:"xes-Latn-ZZ",xh:"xh-Latn-ZA",xla:"xla-Latn-ZZ",xlc:"xlc-Lyci-TR",xld:"xld-Lydi-TR",xmf:"xmf-Geor-GE",xmn:"xmn-Mani-CN",xmr:"xmr-Merc-SD",xna:"xna-Narb-SA",xnr:"xnr-Deva-IN",xog:"xog-Latn-UG",xon:"xon-Latn-ZZ",xpr:"xpr-Prti-IR",xrb:"xrb-Latn-ZZ",xsa:"xsa-Sarb-YE",xsi:"xsi-Latn-ZZ",xsm:"xsm-Latn-ZZ",xsr:"xsr-Deva-NP",xwe:"xwe-Latn-ZZ",yam:"yam-Latn-ZZ",yao:"yao-Latn-MZ",yap:"yap-Latn-FM",yas:"yas-Latn-ZZ",yat:"yat-Latn-ZZ",yav:"yav-Latn-CM",yay:"yay-Latn-ZZ",yaz:"yaz-Latn-ZZ",yba:"yba-Latn-ZZ",ybb:"ybb-Latn-CM",yby:"yby-Latn-ZZ",yer:"yer-Latn-ZZ",ygr:"ygr-Latn-ZZ",ygw:"ygw-Latn-ZZ",yi:"yi-Hebr-001",yko:"yko-Latn-ZZ",yle:"yle-Latn-ZZ",ylg:"ylg-Latn-ZZ",yll:"yll-Latn-ZZ",yml:"yml-Latn-ZZ",yo:"yo-Latn-NG",yon:"yon-Latn-ZZ",yrb:"yrb-Latn-ZZ",yre:"yre-Latn-ZZ",yrl:"yrl-Latn-BR",yss:"yss-Latn-ZZ",yua:"yua-Latn-MX",yue:"yue-Hant-HK","yue-CN":"yue-Hans-CN","yue-Hans":"yue-Hans-CN",yuj:"yuj-Latn-ZZ",yut:"yut-Latn-ZZ",yuw:"yuw-Latn-ZZ",za:"za-Latn-CN",zag:"zag-Latn-SD",zdj:"zdj-Arab-KM",zea:"zea-Latn-NL",zgh:"zgh-Tfng-MA",zh:"zh-Hans-CN","zh-AU":"zh-Hant-AU","zh-BN":"zh-Hant-BN","zh-Bopo":"zh-Bopo-TW","zh-GB":"zh-Hant-GB","zh-GF":"zh-Hant-GF","zh-Hanb":"zh-Hanb-TW","zh-Hant":"zh-Hant-TW","zh-HK":"zh-Hant-HK","zh-ID":"zh-Hant-ID","zh-MO":"zh-Hant-MO","zh-MY":"zh-Hant-MY","zh-PA":"zh-Hant-PA","zh-PF":"zh-Hant-PF","zh-PH":"zh-Hant-PH","zh-SR":"zh-Hant-SR","zh-TH":"zh-Hant-TH","zh-TW":"zh-Hant-TW","zh-US":"zh-Hant-US","zh-VN":"zh-Hant-VN",zhx:"zhx-Nshu-CN",zia:"zia-Latn-ZZ",zlm:"zlm-Latn-TG",zmi:"zmi-Latn-MY",zne:"zne-Latn-ZZ",zu:"zu-Latn-ZA",zza:"zza-Latn-TR"}}},c={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},metaZones:{metazoneInfo:{timezone:{Africa:{Abidjan:[{usesMetazone:{_mzone:"GMT"}}],Accra:[{usesMetazone:{_mzone:"GMT"}}],Addis_Ababa:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Algiers:[{usesMetazone:{_mzone:"Europe_Western",_to:"1977-10-20 23:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1977-10-20 23:00",_to:"1979-10-25 23:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1979-10-25 23:00",_to:"1981-05-01 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1981-05-01 00:00"}}],Asmera:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Bamako:[{usesMetazone:{_mzone:"GMT"}}],Bangui:[{usesMetazone:{_mzone:"Africa_Western"}}],Banjul:[{usesMetazone:{_mzone:"GMT"}}],Bissau:[{usesMetazone:{_mzone:"Africa_FarWestern",_to:"1975-01-01 01:00"}},{usesMetazone:{_mzone:"GMT",_from:"1975-01-01 01:00"}}],Blantyre:[{usesMetazone:{_mzone:"Africa_Central"}}],Brazzaville:[{usesMetazone:{_mzone:"Africa_Western"}}],Bujumbura:[{usesMetazone:{_mzone:"Africa_Central"}}],Cairo:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Casablanca:[{usesMetazone:{_mzone:"Europe_Western",_to:"1984-03-16 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1984-03-16 00:00",_to:"1985-12-31 23:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1985-12-31 23:00",_to:"2018-10-28 02:00"}}],Ceuta:[{usesMetazone:{_mzone:"Europe_Western",_to:"1984-03-16 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1984-03-16 00:00"}}],Conakry:[{usesMetazone:{_mzone:"GMT"}}],Dakar:[{usesMetazone:{_mzone:"GMT"}}],Dar_es_Salaam:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Djibouti:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Douala:[{usesMetazone:{_mzone:"Africa_Western"}}],El_Aaiun:[{usesMetazone:{_mzone:"Africa_FarWestern",_to:"1976-04-14 01:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1976-04-14 01:00",_to:"2018-10-28 02:00"}}],Freetown:[{usesMetazone:{_mzone:"GMT"}}],Gaborone:[{usesMetazone:{_mzone:"Africa_Central"}}],Harare:[{usesMetazone:{_mzone:"Africa_Central"}}],Johannesburg:[{usesMetazone:{_mzone:"Africa_Southern"}}],Juba:[{usesMetazone:{_mzone:"Africa_Central",_to:"2000-01-15 10:00"}},{usesMetazone:{_mzone:"Africa_Eastern",_from:"2000-01-15 10:00"}}],Kampala:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Khartoum:[{usesMetazone:{_mzone:"Africa_Central",_to:"2000-01-15 10:00"}},{usesMetazone:{_mzone:"Africa_Eastern",_from:"2000-01-15 10:00",_to:"2017-10-31 21:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"2017-10-31 21:00"}}],Kigali:[{usesMetazone:{_mzone:"Africa_Central"}}],Kinshasa:[{usesMetazone:{_mzone:"Africa_Western"}}],Lagos:[{usesMetazone:{_mzone:"Africa_Western"}}],Libreville:[{usesMetazone:{_mzone:"Africa_Western"}}],Lome:[{usesMetazone:{_mzone:"GMT"}}],Luanda:[{usesMetazone:{_mzone:"Africa_Western"}}],Lubumbashi:[{usesMetazone:{_mzone:"Africa_Central"}}],Lusaka:[{usesMetazone:{_mzone:"Africa_Central"}}],Malabo:[{usesMetazone:{_mzone:"Africa_Western"}}],Maputo:[{usesMetazone:{_mzone:"Africa_Central"}}],Maseru:[{usesMetazone:{_mzone:"Africa_Southern"}}],Mbabane:[{usesMetazone:{_mzone:"Africa_Southern"}}],Mogadishu:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Monrovia:[{usesMetazone:{_mzone:"Liberia",_to:"1972-05-01 00:45"}},{usesMetazone:{_mzone:"GMT",_from:"1972-05-01 00:45"}}],Nairobi:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Ndjamena:[{usesMetazone:{_mzone:"Africa_Western"}}],Niamey:[{usesMetazone:{_mzone:"Africa_Western"}}],Nouakchott:[{usesMetazone:{_mzone:"GMT"}}],Ouagadougou:[{usesMetazone:{_mzone:"GMT"}}],"Porto-Novo":[{usesMetazone:{_mzone:"Africa_Western"}}],Sao_Tome:[{usesMetazone:{_mzone:"GMT",_to:"2018-01-01 01:00"}},{usesMetazone:{_mzone:"Africa_Western",_from:"2018-01-01 01:00",_to:"2019-01-01 01:00"}},{usesMetazone:{_mzone:"GMT",_from:"2019-01-01 01:00"}}],Tripoli:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"1981-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1981-12-31 22:00",_to:"1990-05-03 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-05-03 23:00",_to:"1996-09-29 22:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1996-09-29 22:00",_to:"1997-10-03 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1997-10-03 22:00",_to:"2012-11-10 00:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"2012-11-10 00:00",_to:"2013-10-25 00:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"2013-10-25 00:00"}}],Tunis:[{usesMetazone:{_mzone:"Europe_Central"}}],Windhoek:[{usesMetazone:{_mzone:"Africa_Southern",_to:"1990-03-20 22:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"1990-03-20 22:00",_to:"1994-03-20 22:00"}},{usesMetazone:{_mzone:"Africa_Western",_from:"1994-03-20 22:00",_to:"2017-10-23 22:00"}},{usesMetazone:{_mzone:"Africa_Central",_from:"2017-10-23 22:00"}}]},America:{Adak:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-11-30 10:00"}}],Anchorage:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 11:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Anguilla:[{usesMetazone:{_mzone:"Atlantic"}}],Antigua:[{usesMetazone:{_mzone:"Atlantic"}}],Araguaina:[{usesMetazone:{_mzone:"Brasilia"}}],Argentina:{La_Rioja:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-01 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1991-03-01 02:00",_to:"1991-05-07 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-05-07 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Rio_Gallegos:[{usesMetazone:{_mzone:"Argentina",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Salta:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00"}}],San_Juan:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-01 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1991-03-01 02:00",_to:"1991-05-07 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-05-07 04:00",_to:"2004-05-31 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-05-31 03:00",_to:"2004-07-25 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-07-25 04:00"}}],San_Luis:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-14 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1990-03-14 02:00",_to:"1991-06-01 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-06-01 04:00",_to:"1999-10-03 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"1999-10-03 03:00",_to:"2000-03-03 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2000-03-03 03:00",_to:"2004-05-31 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-05-31 03:00",_to:"2004-07-25 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-07-25 04:00",_to:"2008-01-21 02:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2008-01-21 02:00"}}],Tucuman:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-13 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-13 04:00"}}],Ushuaia:[{usesMetazone:{_mzone:"Argentina",_to:"2004-05-30 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}]},Aruba:[{usesMetazone:{_mzone:"Atlantic"}}],Asuncion:[{usesMetazone:{_mzone:"Paraguay"}}],Bahia:[{usesMetazone:{_mzone:"Brasilia"}}],Bahia_Banderas:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1970-01-01 08:00",_to:"2010-04-04 09:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2010-04-04 09:00"}}],Barbados:[{usesMetazone:{_mzone:"Atlantic"}}],Belem:[{usesMetazone:{_mzone:"Brasilia"}}],Belize:[{usesMetazone:{_mzone:"America_Central"}}],"Blanc-Sablon":[{usesMetazone:{_mzone:"Atlantic"}}],Boa_Vista:[{usesMetazone:{_mzone:"Amazon"}}],Bogota:[{usesMetazone:{_mzone:"Colombia"}}],Boise:[{usesMetazone:{_mzone:"America_Mountain"}}],Buenos_Aires:[{usesMetazone:{_mzone:"Argentina"}}],Cambridge_Bay:[{usesMetazone:{_mzone:"America_Mountain",_to:"1999-10-31 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 08:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2000-11-05 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2000-11-05 05:00",_to:"2001-04-01 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"2001-04-01 09:00"}}],Campo_Grande:[{usesMetazone:{_mzone:"Amazon"}}],Cancun:[{usesMetazone:{_mzone:"America_Central",_to:"1981-12-23 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1981-12-23 06:00",_to:"1998-08-02 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1998-08-02 06:00",_to:"2015-02-01 08:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2015-02-01 08:00"}}],Caracas:[{usesMetazone:{_mzone:"Venezuela"}}],Catamarca:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00",_to:"2004-06-01 03:00"}},{usesMetazone:{_mzone:"Argentina_Western",_from:"2004-06-01 03:00",_to:"2004-06-20 04:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-06-20 04:00"}}],Cayenne:[{usesMetazone:{_mzone:"French_Guiana"}}],Cayman:[{usesMetazone:{_mzone:"America_Eastern"}}],Chicago:[{usesMetazone:{_mzone:"America_Central"}}],Chihuahua:[{usesMetazone:{_mzone:"America_Central",_to:"1998-04-05 09:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1998-04-05 09:00"}}],Coral_Harbour:[{usesMetazone:{_mzone:"America_Eastern"}}],Cordoba:[{usesMetazone:{_mzone:"Argentina",_to:"1991-03-03 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-20 04:00"}}],Costa_Rica:[{usesMetazone:{_mzone:"America_Central"}}],Creston:[{usesMetazone:{_mzone:"America_Mountain"}}],Cuiaba:[{usesMetazone:{_mzone:"Amazon"}}],Curacao:[{usesMetazone:{_mzone:"Atlantic"}}],Danmarkshavn:[{usesMetazone:{_mzone:"Greenland_Western",_to:"1996-01-01 03:00"}},{usesMetazone:{_mzone:"GMT",_from:"1996-01-01 03:00"}}],Dawson:[{usesMetazone:{_mzone:"Yukon",_to:"1973-10-28 09:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"1973-10-28 09:00"}}],Dawson_Creek:[{usesMetazone:{_mzone:"America_Pacific",_to:"1972-08-30 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1972-08-30 09:00"}}],Denver:[{usesMetazone:{_mzone:"America_Mountain"}}],Detroit:[{usesMetazone:{_mzone:"America_Eastern"}}],Dominica:[{usesMetazone:{_mzone:"Atlantic"}}],Edmonton:[{usesMetazone:{_mzone:"America_Mountain"}}],Eirunepe:[{usesMetazone:{_mzone:"Acre",_to:"2008-06-24 05:00"}},{usesMetazone:{_mzone:"Amazon",_from:"2008-06-24 05:00",_to:"2013-11-10 04:00"}},{usesMetazone:{_mzone:"Acre",_from:"2013-11-10 04:00"}}],El_Salvador:[{usesMetazone:{_mzone:"America_Central"}}],Fort_Nelson:[{usesMetazone:{_mzone:"America_Pacific",_to:"2015-03-08 10:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"2015-03-08 10:00"}}],Fortaleza:[{usesMetazone:{_mzone:"Brasilia"}}],Glace_Bay:[{usesMetazone:{_mzone:"Atlantic"}}],Godthab:[{usesMetazone:{_mzone:"Greenland_Western"}}],Goose_Bay:[{usesMetazone:{_mzone:"Atlantic",_to:"1988-04-03 04:01"}},{usesMetazone:{_mzone:"Goose_Bay",_from:"1988-04-03 04:01",_to:"1988-10-30 02:01"}},{usesMetazone:{_mzone:"Atlantic",_from:"1988-10-30 02:01"}}],Grand_Turk:[{usesMetazone:{_mzone:"America_Eastern",_to:"2015-11-01 06:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"2015-11-01 06:00",_to:"2018-03-11 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2018-03-11 07:00"}}],Grenada:[{usesMetazone:{_mzone:"Atlantic"}}],Guadeloupe:[{usesMetazone:{_mzone:"Atlantic"}}],Guatemala:[{usesMetazone:{_mzone:"America_Central"}}],Guayaquil:[{usesMetazone:{_mzone:"Ecuador"}}],Guyana:[{usesMetazone:{_mzone:"Guyana"}}],Halifax:[{usesMetazone:{_mzone:"Atlantic"}}],Havana:[{usesMetazone:{_mzone:"Cuba"}}],Hermosillo:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1970-01-01 08:00"}}],Indiana:{Knox:[{usesMetazone:{_mzone:"America_Central",_to:"1991-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1991-10-27 07:00",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00"}}],Marengo:[{usesMetazone:{_mzone:"America_Eastern",_to:"1974-01-06 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1974-01-06 07:00",_to:"1974-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1974-10-27 07:00"}}],Petersburg:[{usesMetazone:{_mzone:"America_Central",_to:"1977-10-30 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1977-10-30 07:00",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-11-04 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-11-04 07:00"}}],Tell_City:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00"}}],Vevay:[{usesMetazone:{_mzone:"America_Eastern"}}],Vincennes:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-11-04 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-11-04 07:00"}}],Winamac:[{usesMetazone:{_mzone:"America_Eastern",_to:"2006-04-02 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2006-04-02 07:00",_to:"2007-03-11 08:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2007-03-11 08:00"}}]},Indianapolis:[{usesMetazone:{_mzone:"America_Eastern"}}],Inuvik:[{usesMetazone:{_mzone:"America_Pacific",_to:"1979-04-29 10:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1979-04-29 10:00"}}],Iqaluit:[{usesMetazone:{_mzone:"America_Eastern",_to:"1999-10-31 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 06:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}],Jamaica:[{usesMetazone:{_mzone:"America_Eastern"}}],Jujuy:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-04 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1991-10-06 04:00"}}],Juneau:[{usesMetazone:{_mzone:"America_Pacific",_to:"1980-04-27 10:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1980-04-27 10:00",_to:"1980-10-26 10:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"1980-10-26 10:00",_to:"1983-10-30 09:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 09:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Kentucky:{Monticello:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}]},Kralendijk:[{usesMetazone:{_mzone:"Atlantic"}}],La_Paz:[{usesMetazone:{_mzone:"Bolivia"}}],Lima:[{usesMetazone:{_mzone:"Peru"}}],Los_Angeles:[{usesMetazone:{_mzone:"America_Pacific"}}],Louisville:[{usesMetazone:{_mzone:"America_Eastern",_to:"1974-01-06 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1974-01-06 07:00",_to:"1974-10-27 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1974-10-27 07:00"}}],Lower_Princes:[{usesMetazone:{_mzone:"Atlantic"}}],Maceio:[{usesMetazone:{_mzone:"Brasilia"}}],Managua:[{usesMetazone:{_mzone:"America_Central",_to:"1973-05-01 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1973-05-01 06:00",_to:"1975-02-16 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1975-02-16 05:00",_to:"1992-01-01 10:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1992-01-01 10:00",_to:"1992-09-24 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1992-09-24 05:00",_to:"1993-01-01 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1993-01-01 06:00",_to:"1997-01-01 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1997-01-01 05:00"}}],Manaus:[{usesMetazone:{_mzone:"Amazon"}}],Marigot:[{usesMetazone:{_mzone:"Atlantic"}}],Martinique:[{usesMetazone:{_mzone:"Atlantic"}}],Matamoros:[{usesMetazone:{_mzone:"America_Central"}}],Mazatlan:[{usesMetazone:{_mzone:"America_Pacific",_to:"1970-01-01 08:00"}},{usesMetazone:{_mzone:"Mexico_Pacific",_from:"1970-01-01 08:00"}}],Mendoza:[{usesMetazone:{_mzone:"Argentina",_to:"1990-03-04 02:00"}},{usesMetazone:{_mzone:"Argentina",_from:"1992-10-18 04:00",_to:"2004-05-23 03:00"}},{usesMetazone:{_mzone:"Argentina",_from:"2004-09-26 04:00"}}],Menominee:[{usesMetazone:{_mzone:"America_Eastern",_to:"1973-04-29 07:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1973-04-29 07:00"}}],Merida:[{usesMetazone:{_mzone:"America_Central",_to:"1981-12-23 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1981-12-23 06:00",_to:"1982-12-02 05:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1982-12-02 05:00"}}],Metlakatla:[{usesMetazone:{_mzone:"America_Pacific",_to:"2015-11-01 10:00"}},{usesMetazone:{_mzone:"Alaska",_from:"2015-11-01 10:00",_to:"2018-11-04 10:00"}},{usesMetazone:{_mzone:"America_Pacific",_from:"2018-11-04 10:00",_to:"2019-01-20 10:00"}},{usesMetazone:{_mzone:"Alaska",_from:"2019-01-20 10:00"}}],Mexico_City:[{usesMetazone:{_mzone:"America_Central"}}],Miquelon:[{usesMetazone:{_mzone:"Atlantic",_to:"1980-05-01 04:00"}},{usesMetazone:{_mzone:"Pierre_Miquelon",_from:"1980-05-01 04:00"}}],Moncton:[{usesMetazone:{_mzone:"Atlantic"}}],Monterrey:[{usesMetazone:{_mzone:"America_Central"}}],Montevideo:[{usesMetazone:{_mzone:"Uruguay"}}],Montserrat:[{usesMetazone:{_mzone:"Atlantic"}}],Nassau:[{usesMetazone:{_mzone:"America_Eastern"}}],New_York:[{usesMetazone:{_mzone:"America_Eastern"}}],Nipigon:[{usesMetazone:{_mzone:"America_Eastern"}}],Nome:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 12:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Noronha:[{usesMetazone:{_mzone:"Noronha"}}],North_Dakota:{Beulah:[{usesMetazone:{_mzone:"America_Mountain",_to:"2010-11-07 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2010-11-07 08:00"}}],Center:[{usesMetazone:{_mzone:"America_Mountain",_to:"1992-10-25 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1992-10-25 08:00"}}],New_Salem:[{usesMetazone:{_mzone:"America_Mountain",_to:"2003-10-26 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2003-10-26 08:00"}}]},Ojinaga:[{usesMetazone:{_mzone:"America_Central",_to:"1998-04-05 09:00"}},{usesMetazone:{_mzone:"America_Mountain",_from:"1998-04-05 09:00"}}],Panama:[{usesMetazone:{_mzone:"America_Eastern"}}],Pangnirtung:[{usesMetazone:{_mzone:"Atlantic",_to:"1995-04-02 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"1995-04-02 06:00",_to:"1999-10-31 06:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1999-10-31 06:00",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00"}}],Paramaribo:[{usesMetazone:{_mzone:"Dutch_Guiana",_to:"1975-11-20 03:30"}},{usesMetazone:{_mzone:"Suriname",_from:"1975-11-20 03:30"}}],Phoenix:[{usesMetazone:{_mzone:"America_Mountain"}}],Port_of_Spain:[{usesMetazone:{_mzone:"Atlantic"}}],"Port-au-Prince":[{usesMetazone:{_mzone:"America_Eastern"}}],Porto_Velho:[{usesMetazone:{_mzone:"Amazon"}}],Puerto_Rico:[{usesMetazone:{_mzone:"Atlantic"}}],Punta_Arenas:[{usesMetazone:{_mzone:"Chile",_to:"2016-12-03 23:00"}}],Rainy_River:[{usesMetazone:{_mzone:"America_Central"}}],Rankin_Inlet:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2001-04-01 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2001-04-01 08:00"}}],Recife:[{usesMetazone:{_mzone:"Brasilia"}}],Regina:[{usesMetazone:{_mzone:"America_Central"}}],Resolute:[{usesMetazone:{_mzone:"America_Central",_to:"2000-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 07:00",_to:"2001-04-01 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2001-04-01 08:00",_to:"2006-10-29 07:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2006-10-29 07:00",_to:"2007-03-11 08:00"}},{usesMetazone:{_mzone:"America_Central",_from:"2007-03-11 08:00"}}],Rio_Branco:[{usesMetazone:{_mzone:"Acre",_to:"2008-06-24 05:00"}},{usesMetazone:{_mzone:"Amazon",_from:"2008-06-24 05:00",_to:"2013-11-10 04:00"}},{usesMetazone:{_mzone:"Acre",_from:"2013-11-10 04:00"}}],Santa_Isabel:[{usesMetazone:{_mzone:"Mexico_Northwest"}}],Santarem:[{usesMetazone:{_mzone:"Amazon",_to:"2008-06-24 04:00"}},{usesMetazone:{_mzone:"Brasilia",_from:"2008-06-24 04:00"}}],Santiago:[{usesMetazone:{_mzone:"Chile"}}],Santo_Domingo:[{usesMetazone:{_mzone:"Dominican",_to:"1974-10-27 05:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"1974-10-27 05:00",_to:"2000-10-29 06:00"}},{usesMetazone:{_mzone:"America_Eastern",_from:"2000-10-29 06:00",_to:"2000-12-03 06:00"}},{usesMetazone:{_mzone:"Atlantic",_from:"2000-12-03 06:00"}}],Sao_Paulo:[{usesMetazone:{_mzone:"Brasilia"}}],Scoresbysund:[{usesMetazone:{_mzone:"Greenland_Central",_to:"1981-03-29 02:00"}},{usesMetazone:{_mzone:"Greenland_Eastern",_from:"1981-03-29 02:00"}}],Sitka:[{usesMetazone:{_mzone:"America_Pacific",_to:"1983-10-30 09:00"}},{usesMetazone:{_mzone:"Yukon",_from:"1983-10-30 09:00",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],St_Barthelemy:[{usesMetazone:{_mzone:"Atlantic"}}],St_Johns:[{usesMetazone:{_mzone:"Newfoundland"}}],St_Kitts:[{usesMetazone:{_mzone:"Atlantic"}}],St_Lucia:[{usesMetazone:{_mzone:"Atlantic"}}],St_Thomas:[{usesMetazone:{_mzone:"Atlantic"}}],St_Vincent:[{usesMetazone:{_mzone:"Atlantic"}}],Swift_Current:[{usesMetazone:{_mzone:"America_Mountain",_to:"1972-04-30 09:00"}},{usesMetazone:{_mzone:"America_Central",_from:"1972-04-30 09:00"}}],Tegucigalpa:[{usesMetazone:{_mzone:"America_Central"}}],Thule:[{usesMetazone:{_mzone:"Atlantic"}}],Thunder_Bay:[{usesMetazone:{_mzone:"America_Eastern"}}],Tijuana:[{usesMetazone:{_mzone:"America_Pacific"}}],Toronto:[{usesMetazone:{_mzone:"America_Eastern"}}],Tortola:[{usesMetazone:{_mzone:"Atlantic"}}],Vancouver:[{usesMetazone:{_mzone:"America_Pacific"}}],Whitehorse:[{usesMetazone:{_mzone:"America_Pacific"}}],Winnipeg:[{usesMetazone:{_mzone:"America_Central"}}],Yakutat:[{usesMetazone:{_mzone:"Yukon",_to:"1983-11-30 09:00"}},{usesMetazone:{_mzone:"Alaska",_from:"1983-11-30 09:00"}}],Yellowknife:[{usesMetazone:{_mzone:"America_Mountain"}}]},Antarctica:{Casey:[{usesMetazone:{_mzone:"Australia_Western",_to:"2009-10-17 18:00"}},{usesMetazone:{_mzone:"Casey",_from:"2009-10-17 18:00",_to:"2010-03-04 15:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2010-03-04 15:00",_to:"2011-10-27 18:00"}},{usesMetazone:{_mzone:"Casey",_from:"2011-10-27 18:00",_to:"2012-02-21 17:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2012-02-21 17:00",_to:"2016-10-21 16:00"}},{usesMetazone:{_mzone:"Casey",_from:"2016-10-21 16:00",_to:"2018-03-10 17:00"}},{usesMetazone:{_mzone:"Australia_Western",_from:"2018-03-10 17:00"}}],Davis:[{usesMetazone:{_mzone:"Davis"}}],DumontDUrville:[{usesMetazone:{_mzone:"DumontDUrville"}}],Macquarie:[{usesMetazone:{_mzone:"Australia_Eastern",_to:"2010-04-03 16:00"}},{usesMetazone:{_mzone:"Macquarie",_from:"2010-04-03 16:00"}}],Mawson:[{usesMetazone:{_mzone:"Mawson"}}],McMurdo:[{usesMetazone:{_mzone:"New_Zealand"}}],Palmer:[{usesMetazone:{_mzone:"Argentina",_to:"1982-05-01 03:00"}},{usesMetazone:{_mzone:"Chile",_from:"1982-05-01 03:00",_to:"2016-12-03 23:00"}}],Rothera:[{usesMetazone:{_mzone:"Rothera"}}],Syowa:[{usesMetazone:{_mzone:"Syowa"}}],Troll:[{usesMetazone:{_mzone:"GMT"}}],Vostok:[{usesMetazone:{_mzone:"Vostok"}}]},Arctic:{Longyearbyen:[{usesMetazone:{_mzone:"Europe_Central"}}]},Asia:{Aden:[{usesMetazone:{_mzone:"Arabian"}}],Almaty:[{usesMetazone:{_mzone:"Almaty",_to:"2004-10-30 20:00"}},{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 20:00"}}],Amman:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Anadyr:[{usesMetazone:{_mzone:"Anadyr",_to:"2010-03-27 14:00"}},{usesMetazone:{_mzone:"Magadan",_from:"2010-03-27 14:00",_to:"2014-10-25 14:00"}},{usesMetazone:{_mzone:"Anadyr",_from:"2014-10-25 14:00"}}],Aqtau:[{usesMetazone:{_mzone:"Shevchenko",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Aqtau",_from:"1991-12-15 19:00",_to:"2004-10-30 22:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Aqtobe:[{usesMetazone:{_mzone:"Aktyubinsk",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Aqtobe",_from:"1991-12-15 19:00",_to:"2004-10-30 21:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2005-10-30 21:00"}}],Ashgabat:[{usesMetazone:{_mzone:"Ashkhabad",_to:"1991-10-26 20:00"}},{usesMetazone:{_mzone:"Turkmenistan",_from:"1991-10-26 20:00"}}],Atyrau:[{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Baghdad:[{usesMetazone:{_mzone:"Arabian"}}],Bahrain:[{usesMetazone:{_mzone:"Gulf",_to:"1972-05-31 20:00"}},{usesMetazone:{_mzone:"Arabian",_from:"1972-05-31 20:00"}}],Baku:[{usesMetazone:{_mzone:"Baku",_to:"1991-08-29 20:00"}},{usesMetazone:{_mzone:"Azerbaijan",_from:"1991-08-29 20:00"}}],Bangkok:[{usesMetazone:{_mzone:"Indochina"}}],Beirut:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Bishkek:[{usesMetazone:{_mzone:"Frunze",_to:"1991-08-30 20:00"}},{usesMetazone:{_mzone:"Kyrgystan",_from:"1991-08-30 20:00"}}],Brunei:[{usesMetazone:{_mzone:"Brunei"}}],Calcutta:[{usesMetazone:{_mzone:"India"}}],Chita:[{usesMetazone:{_mzone:"Yakutsk",_to:"2014-10-25 16:00"}},{usesMetazone:{_mzone:"Irkutsk",_from:"2014-10-25 16:00",_to:"2016-03-26 18:00"}},{usesMetazone:{_mzone:"Yakutsk",_from:"2016-03-26 18:00"}}],Choibalsan:[{usesMetazone:{_mzone:"Mongolia",_to:"1983-03-31 16:00"}},{usesMetazone:{_mzone:"Choibalsan",_from:"1983-03-31 16:00"}}],Colombo:[{usesMetazone:{_mzone:"India",_to:"1996-05-24 18:30"}},{usesMetazone:{_mzone:"Lanka",_from:"1996-05-24 18:30",_to:"2006-04-14 18:30"}},{usesMetazone:{_mzone:"India",_from:"2006-04-14 18:30"}}],Damascus:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Dhaka:[{usesMetazone:{_mzone:"Dacca",_to:"1971-03-25 18:00"}},{usesMetazone:{_mzone:"Bangladesh",_from:"1971-03-25 18:00"}}],Dili:[{usesMetazone:{_mzone:"East_Timor",_to:"1976-05-02 15:00"}},{usesMetazone:{_mzone:"Indonesia_Central",_from:"1976-05-02 15:00",_to:"2000-09-16 16:00"}},{usesMetazone:{_mzone:"East_Timor",_from:"2000-09-16 16:00"}}],Dubai:[{usesMetazone:{_mzone:"Gulf"}}],Dushanbe:[{usesMetazone:{_mzone:"Dushanbe",_to:"1991-09-08 21:00"}},{usesMetazone:{_mzone:"Tajikistan",_from:"1991-09-08 21:00"}}],Famagusta:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"2016-09-07 21:00"}}],Gaza:[{usesMetazone:{_mzone:"Israel",_to:"1995-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1995-12-31 22:00"}}],Hebron:[{usesMetazone:{_mzone:"Israel",_to:"1995-12-31 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1995-12-31 22:00"}}],Hong_Kong:[{usesMetazone:{_mzone:"Hong_Kong"}}],Hovd:[{usesMetazone:{_mzone:"Hovd"}}],Irkutsk:[{usesMetazone:{_mzone:"Irkutsk"}}],Jakarta:[{usesMetazone:{_mzone:"Indonesia_Western"}}],Jayapura:[{usesMetazone:{_mzone:"Indonesia_Eastern"}}],Jerusalem:[{usesMetazone:{_mzone:"Israel"}}],Kabul:[{usesMetazone:{_mzone:"Afghanistan"}}],Kamchatka:[{usesMetazone:{_mzone:"Kamchatka"}}],Karachi:[{usesMetazone:{_mzone:"Karachi",_to:"1971-03-25 19:00"}},{usesMetazone:{_mzone:"Pakistan",_from:"1971-03-25 19:00"}}],Katmandu:[{usesMetazone:{_mzone:"Nepal"}}],Khandyga:[{usesMetazone:{_mzone:"Yakutsk",_to:"2003-12-31 15:00"}},{usesMetazone:{_mzone:"Vladivostok",_from:"2003-12-31 15:00",_to:"2011-09-12 13:00"}},{usesMetazone:{_mzone:"Yakutsk",_from:"2011-09-12 13:00"}}],Krasnoyarsk:[{usesMetazone:{_mzone:"Krasnoyarsk"}}],Kuala_Lumpur:[{usesMetazone:{_mzone:"Malaya",_to:"1981-12-31 16:30"}},{usesMetazone:{_mzone:"Malaysia",_from:"1981-12-31 16:30"}}],Kuching:[{usesMetazone:{_mzone:"Borneo",_to:"1981-12-31 16:00"}},{usesMetazone:{_mzone:"Malaysia",_from:"1981-12-31 16:00"}}],Kuwait:[{usesMetazone:{_mzone:"Arabian"}}],Macau:[{usesMetazone:{_mzone:"Macau",_to:"1999-12-19 16:00"}},{usesMetazone:{_mzone:"China",_from:"1999-12-19 16:00"}}],Magadan:[{usesMetazone:{_mzone:"Magadan"}}],Makassar:[{usesMetazone:{_mzone:"Indonesia_Central"}}],Manila:[{usesMetazone:{_mzone:"Philippines"}}],Muscat:[{usesMetazone:{_mzone:"Gulf"}}],Nicosia:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Novokuznetsk:[{usesMetazone:{_mzone:"Krasnoyarsk",_to:"2010-03-27 19:00"}},{usesMetazone:{_mzone:"Novosibirsk",_from:"2010-03-27 19:00",_to:"2014-10-25 19:00"}},{usesMetazone:{_mzone:"Krasnoyarsk",_from:"2014-10-25 19:00"}}],Novosibirsk:[{usesMetazone:{_mzone:"Novosibirsk"}}],Omsk:[{usesMetazone:{_mzone:"Omsk"}}],Oral:[{usesMetazone:{_mzone:"Uralsk",_to:"1991-12-15 20:00"}},{usesMetazone:{_mzone:"Oral",_from:"1991-12-15 20:00",_to:"2004-10-30 22:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2004-10-30 22:00"}}],Phnom_Penh:[{usesMetazone:{_mzone:"Indochina"}}],Pontianak:[{usesMetazone:{_mzone:"Indonesia_Central",_to:"1987-12-31 16:00"}},{usesMetazone:{_mzone:"Indonesia_Western",_from:"1987-12-31 16:00"}}],Pyongyang:[{usesMetazone:{_mzone:"Korea",_to:"2015-08-14 15:00"}},{usesMetazone:{_mzone:"Pyongyang",_from:"2015-08-14 15:00",_to:"2018-05-04 15:00"}},{usesMetazone:{_mzone:"Korea",_from:"2018-05-04 15:00"}}],Qatar:[{usesMetazone:{_mzone:"Gulf",_to:"1972-05-31 20:00"}},{usesMetazone:{_mzone:"Arabian",_from:"1972-05-31 20:00"}}],Qostanay:[{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 21:00"}}],Qyzylorda:[{usesMetazone:{_mzone:"Kizilorda",_to:"1991-12-15 19:00"}},{usesMetazone:{_mzone:"Qyzylorda",_from:"1991-12-15 19:00",_to:"2004-10-30 21:00"}},{usesMetazone:{_mzone:"Kazakhstan_Eastern",_from:"2004-10-30 21:00",_to:"2018-12-20 18:00"}},{usesMetazone:{_mzone:"Kazakhstan_Western",_from:"2018-12-20 18:00"}}],Rangoon:[{usesMetazone:{_mzone:"Myanmar"}}],Riyadh:[{usesMetazone:{_mzone:"Arabian"}}],Saigon:[{usesMetazone:{_mzone:"Indochina",_from:"1975-06-12 16:00"}}],Sakhalin:[{usesMetazone:{_mzone:"Sakhalin"}}],Samarkand:[{usesMetazone:{_mzone:"Samarkand",_to:"1981-09-30 18:00"}},{usesMetazone:{_mzone:"Tashkent",_from:"1981-09-30 18:00",_to:"1982-03-31 18:00"}},{usesMetazone:{_mzone:"Samarkand",_from:"1982-03-31 18:00",_to:"1991-08-31 18:00"}},{usesMetazone:{_mzone:"Uzbekistan",_from:"1991-08-31 18:00"}}],Seoul:[{usesMetazone:{_mzone:"Korea"}}],Shanghai:[{usesMetazone:{_mzone:"China"}}],Singapore:[{usesMetazone:{_mzone:"Singapore"}}],Srednekolymsk:[{usesMetazone:{_mzone:"Magadan",_to:"2014-10-25 14:00"}}],Taipei:[{usesMetazone:{_mzone:"Taipei"}}],Tashkent:[{usesMetazone:{_mzone:"Tashkent",_to:"1991-08-31 18:00"}},{usesMetazone:{_mzone:"Uzbekistan",_from:"1991-08-31 18:00"}}],Tbilisi:[{usesMetazone:{_mzone:"Tbilisi",_to:"1991-04-08 20:00"}},{usesMetazone:{_mzone:"Georgia",_from:"1991-04-08 20:00"}}],Tehran:[{usesMetazone:{_mzone:"Iran"}}],Thimphu:[{usesMetazone:{_mzone:"India",_to:"1987-09-30 18:30"}},{usesMetazone:{_mzone:"Bhutan",_from:"1987-09-30 18:30"}}],Tokyo:[{usesMetazone:{_mzone:"Japan"}}],Ulaanbaatar:[{usesMetazone:{_mzone:"Mongolia"}}],Urumqi:[{usesMetazone:{_mzone:"Urumqi"}}],"Ust-Nera":[{usesMetazone:{_mzone:"Yakutsk",_to:"1981-03-31 15:00"}},{usesMetazone:{_mzone:"Magadan",_from:"1981-03-31 15:00",_to:"2011-09-12 12:00"}},{usesMetazone:{_mzone:"Vladivostok",_from:"2011-09-12 12:00"}}],Vientiane:[{usesMetazone:{_mzone:"Indochina"}}],Vladivostok:[{usesMetazone:{_mzone:"Vladivostok"}}],Yakutsk:[{usesMetazone:{_mzone:"Yakutsk"}}],Yekaterinburg:[{usesMetazone:{_mzone:"Sverdlovsk",_to:"1992-01-18 22:00"}},{usesMetazone:{_mzone:"Yekaterinburg",_from:"1992-01-18 22:00"}}],Yerevan:[{usesMetazone:{_mzone:"Yerevan",_to:"1991-09-22 20:00"}},{usesMetazone:{_mzone:"Armenia",_from:"1991-09-22 20:00"}}]},Atlantic:{Azores:[{usesMetazone:{_mzone:"Azores",_to:"1992-09-27 02:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1992-09-27 02:00",_to:"1993-03-28 01:00"}},{usesMetazone:{_mzone:"Azores",_from:"1993-03-28 01:00"}}],Bermuda:[{usesMetazone:{_mzone:"Atlantic"}}],Canary:[{usesMetazone:{_mzone:"Europe_Western"}}],Cape_Verde:[{usesMetazone:{_mzone:"Cape_Verde"}}],Faeroe:[{usesMetazone:{_mzone:"Europe_Western"}}],Madeira:[{usesMetazone:{_mzone:"Europe_Western"}}],Reykjavik:[{usesMetazone:{_mzone:"GMT"}}],South_Georgia:[{usesMetazone:{_mzone:"South_Georgia"}}],St_Helena:[{usesMetazone:{_mzone:"GMT"}}],Stanley:[{usesMetazone:{_mzone:"Falkland"}}]},Australia:{Adelaide:[{usesMetazone:{_mzone:"Australia_Central"}}],Brisbane:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Broken_Hill:[{usesMetazone:{_mzone:"Australia_Central"}}],Currie:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Darwin:[{usesMetazone:{_mzone:"Australia_Central"}}],Eucla:[{usesMetazone:{_mzone:"Australia_CentralWestern"}}],Hobart:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Lindeman:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Lord_Howe:[{usesMetazone:{_mzone:"Australia_Eastern",_to:"1981-02-28 14:00"}},{usesMetazone:{_mzone:"Lord_Howe",_from:"1981-02-28 14:00"}}],Melbourne:[{usesMetazone:{_mzone:"Australia_Eastern"}}],Perth:[{usesMetazone:{_mzone:"Australia_Western"}}],Sydney:[{usesMetazone:{_mzone:"Australia_Eastern"}}]},CST6CDT:[{usesMetazone:{_mzone:"America_Central"}}],EST5EDT:[{usesMetazone:{_mzone:"America_Eastern"}}],Etc:{GMT:[{usesMetazone:{_mzone:"GMT"}}]},Europe:{Amsterdam:[{usesMetazone:{_mzone:"Europe_Central"}}],Andorra:[{usesMetazone:{_mzone:"Europe_Central"}}],Astrakhan:[{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2016-03-26 23:00"}}],Athens:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Belgrade:[{usesMetazone:{_mzone:"Europe_Central"}}],Berlin:[{usesMetazone:{_mzone:"Europe_Central"}}],Bratislava:[{usesMetazone:{_mzone:"Europe_Central"}}],Brussels:[{usesMetazone:{_mzone:"Europe_Central"}}],Bucharest:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Budapest:[{usesMetazone:{_mzone:"Europe_Central"}}],Busingen:[{usesMetazone:{_mzone:"Europe_Central"}}],Chisinau:[{usesMetazone:{_mzone:"Moscow",_to:"1990-05-05 21:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-05-05 21:00"}}],Copenhagen:[{usesMetazone:{_mzone:"Europe_Central"}}],Dublin:[{usesMetazone:{_mzone:"Irish",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Gibraltar:[{usesMetazone:{_mzone:"Europe_Central"}}],Guernsey:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Helsinki:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Isle_of_Man:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Istanbul:[{usesMetazone:{_mzone:"Europe_Eastern",_to:"1978-06-28 21:00"}},{usesMetazone:{_mzone:"Turkey",_from:"1978-06-28 21:00",_to:"1985-04-19 21:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1985-04-19 21:00",_to:"2016-09-06 21:00"}},{usesMetazone:{_mzone:"Turkey",_from:"2016-09-06 21:00"}}],Jersey:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Kaliningrad:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00",_to:"2011-03-27 00:00"}},{usesMetazone:{_mzone:"Europe_Further_Eastern",_from:"2011-03-27 00:00",_to:"2014-10-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"2014-10-25 23:00"}}],Kiev:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 22:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-06-30 22:00"}}],Lisbon:[{usesMetazone:{_mzone:"Europe_Central",_to:"1976-09-26 00:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1976-09-26 00:00",_to:"1992-09-27 01:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1992-09-27 01:00",_to:"1996-03-31 01:00"}},{usesMetazone:{_mzone:"Europe_Western",_from:"1996-03-31 01:00"}}],Ljubljana:[{usesMetazone:{_mzone:"Europe_Central"}}],London:[{usesMetazone:{_mzone:"British",_to:"1971-10-31 02:00"}},{usesMetazone:{_mzone:"GMT",_from:"1971-10-31 02:00"}}],Luxembourg:[{usesMetazone:{_mzone:"Europe_Central"}}],Madrid:[{usesMetazone:{_mzone:"Europe_Central"}}],Malta:[{usesMetazone:{_mzone:"Europe_Central"}}],Mariehamn:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Minsk:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"2011-03-27 00:00"}},{usesMetazone:{_mzone:"Europe_Further_Eastern",_from:"2011-03-27 00:00",_to:"2014-10-26 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"2014-10-26 22:00"}}],Monaco:[{usesMetazone:{_mzone:"Europe_Central"}}],Moscow:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"1992-01-19 00:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1992-01-19 00:00"}}],Oslo:[{usesMetazone:{_mzone:"Europe_Central"}}],Paris:[{usesMetazone:{_mzone:"Europe_Central"}}],Podgorica:[{usesMetazone:{_mzone:"Europe_Central"}}],Prague:[{usesMetazone:{_mzone:"Europe_Central"}}],Riga:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00"}}],Rome:[{usesMetazone:{_mzone:"Europe_Central"}}],Samara:[{usesMetazone:{_mzone:"Kuybyshev",_to:"1989-03-25 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1989-03-25 22:00",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00",_to:"1991-09-29 00:00"}},{usesMetazone:{_mzone:"Samara",_from:"1991-09-29 00:00"}}],San_Marino:[{usesMetazone:{_mzone:"Europe_Central"}}],Sarajevo:[{usesMetazone:{_mzone:"Europe_Central"}}],Saratov:[{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2016-12-03 23:00"}}],Simferopol:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1990-06-30 23:00",_to:"1994-04-30 21:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1994-04-30 21:00",_to:"1997-03-30 01:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1997-03-30 01:00",_to:"2014-03-30 00:00"}},{usesMetazone:{_mzone:"Moscow",_from:"2014-03-30 00:00"}}],Skopje:[{usesMetazone:{_mzone:"Europe_Central"}}],Sofia:[{usesMetazone:{_mzone:"Europe_Eastern"}}],Stockholm:[{usesMetazone:{_mzone:"Europe_Central"}}],Tallinn:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00"}}],Tirane:[{usesMetazone:{_mzone:"Europe_Central"}}],Ulyanovsk:[{usesMetazone:{_mzone:"Moscow",_from:"1992-01-19 00:00",_to:"2016-03-26 23:00"}}],Uzhgorod:[{usesMetazone:{_mzone:"Moscow",_to:"1990-06-30 23:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1990-06-30 23:00",_to:"1991-03-31 02:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-31 02:00"}}],Vaduz:[{usesMetazone:{_mzone:"Europe_Central"}}],Vatican:[{usesMetazone:{_mzone:"Europe_Central"}}],Vienna:[{usesMetazone:{_mzone:"Europe_Central"}}],Vilnius:[{usesMetazone:{_mzone:"Moscow",_to:"1989-03-25 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1989-03-25 23:00",_to:"1998-03-29 01:00"}},{usesMetazone:{_mzone:"Europe_Central",_from:"1998-03-29 01:00",_to:"1999-10-31 01:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1999-10-31 01:00"}}],Volgograd:[{usesMetazone:{_mzone:"Volgograd",_to:"1992-03-28 22:00"}},{usesMetazone:{_mzone:"Moscow",_from:"1992-03-28 22:00",_to:"2018-10-27 23:00"}},{usesMetazone:{_mzone:"Volgograd",_from:"2018-10-27 23:00"}}],Warsaw:[{usesMetazone:{_mzone:"Europe_Central"}}],Zagreb:[{usesMetazone:{_mzone:"Europe_Central"}}],Zaporozhye:[{usesMetazone:{_mzone:"Moscow",_to:"1991-03-30 23:00"}},{usesMetazone:{_mzone:"Europe_Eastern",_from:"1991-03-30 23:00"}}],Zurich:[{usesMetazone:{_mzone:"Europe_Central"}}]},Indian:{Antananarivo:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Chagos:[{usesMetazone:{_mzone:"Indian_Ocean"}}],Christmas:[{usesMetazone:{_mzone:"Christmas"}}],Cocos:[{usesMetazone:{_mzone:"Cocos"}}],Comoro:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Kerguelen:[{usesMetazone:{_mzone:"French_Southern"}}],Mahe:[{usesMetazone:{_mzone:"Seychelles"}}],Maldives:[{usesMetazone:{_mzone:"Maldives"}}],Mauritius:[{usesMetazone:{_mzone:"Mauritius"}}],Mayotte:[{usesMetazone:{_mzone:"Africa_Eastern"}}],Reunion:[{usesMetazone:{_mzone:"Reunion"}}]},MST7MDT:[{usesMetazone:{_mzone:"America_Mountain"}}],Pacific:{Apia:[{usesMetazone:{_mzone:"Apia"}}],Auckland:[{usesMetazone:{_mzone:"New_Zealand"}}],Bougainville:[{usesMetazone:{_mzone:"Papua_New_Guinea",_to:"2014-12-27 16:00"}}],Chatham:[{usesMetazone:{_mzone:"Chatham"}}],Easter:[{usesMetazone:{_mzone:"Easter"}}],Efate:[{usesMetazone:{_mzone:"Vanuatu"}}],Enderbury:[{usesMetazone:{_mzone:"Phoenix_Islands"}}],Fakaofo:[{usesMetazone:{_mzone:"Tokelau"}}],Fiji:[{usesMetazone:{_mzone:"Fiji"}}],Funafuti:[{usesMetazone:{_mzone:"Tuvalu"}}],Galapagos:[{usesMetazone:{_mzone:"Ecuador",_to:"1986-01-01 05:00"}},{usesMetazone:{_mzone:"Galapagos",_from:"1986-01-01 05:00"}}],Gambier:[{usesMetazone:{_mzone:"Gambier"}}],Guadalcanal:[{usesMetazone:{_mzone:"Solomon"}}],Guam:[{usesMetazone:{_mzone:"Guam",_to:"2000-12-22 14:00"}},{usesMetazone:{_mzone:"Chamorro",_from:"2000-12-22 14:00"}}],Honolulu:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-10-30 11:00"}}],Johnston:[{usesMetazone:{_mzone:"Alaska_Hawaii",_to:"1983-10-30 11:00"}},{usesMetazone:{_mzone:"Hawaii_Aleutian",_from:"1983-10-30 11:00"}}],Kiritimati:[{usesMetazone:{_mzone:"Line_Islands"}}],Kosrae:[{usesMetazone:{_mzone:"Kosrae"}}],Kwajalein:[{usesMetazone:{_mzone:"Kwajalein",_to:"1993-08-21 12:00"}},{usesMetazone:{_mzone:"Marshall_Islands",_from:"1993-08-21 12:00"}}],Majuro:[{usesMetazone:{_mzone:"Marshall_Islands"}}],Marquesas:[{usesMetazone:{_mzone:"Marquesas"}}],Midway:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Samoa",_from:"1983-10-30 12:00"}}],Nauru:[{usesMetazone:{_mzone:"Nauru"}}],Niue:[{usesMetazone:{_mzone:"Niue"}}],Norfolk:[{usesMetazone:{_mzone:"Norfolk"}}],Noumea:[{usesMetazone:{_mzone:"New_Caledonia"}}],Pago_Pago:[{usesMetazone:{_mzone:"Bering",_to:"1983-10-30 12:00"}},{usesMetazone:{_mzone:"Samoa",_from:"1983-10-30 12:00"}}],Palau:[{usesMetazone:{_mzone:"Palau"}}],Pitcairn:[{usesMetazone:{_mzone:"Pitcairn"}}],Ponape:[{usesMetazone:{_mzone:"Ponape"}}],Port_Moresby:[{usesMetazone:{_mzone:"Papua_New_Guinea"}}],Rarotonga:[{usesMetazone:{_mzone:"Cook"}}],Saipan:[{usesMetazone:{_mzone:"North_Mariana",_to:"2000-12-22 14:00"}},{usesMetazone:{_mzone:"Chamorro",_from:"2000-12-22 14:00"}}],Tahiti:[{usesMetazone:{_mzone:"Tahiti"}}],Tarawa:[{usesMetazone:{_mzone:"Gilbert_Islands"}}],Tongatapu:[{usesMetazone:{_mzone:"Tonga"}}],Truk:[{usesMetazone:{_mzone:"Truk"}}],Wake:[{usesMetazone:{_mzone:"Wake"}}],Wallis:[{usesMetazone:{_mzone:"Wallis"}}]},PST8PDT:[{usesMetazone:{_mzone:"America_Pacific"}}]}},metazones:[{mapZone:{_other:"Acre",_type:"America/Rio_Branco",_territory:"001"}},{mapZone:{_other:"Afghanistan",_type:"Asia/Kabul",_territory:"001"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Maputo",_territory:"001"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Bujumbura",_territory:"BI"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Gaborone",_territory:"BW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Lubumbashi",_territory:"CD"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Blantyre",_territory:"MW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Kigali",_territory:"RW"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Lusaka",_territory:"ZM"}},{mapZone:{_other:"Africa_Central",_type:"Africa/Harare",_territory:"ZW"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Nairobi",_territory:"001"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Djibouti",_territory:"DJ"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Asmera",_territory:"ER"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Addis_Ababa",_territory:"ET"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Comoro",_territory:"KM"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Antananarivo",_territory:"MG"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Mogadishu",_territory:"SO"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Dar_es_Salaam",_territory:"TZ"}},{mapZone:{_other:"Africa_Eastern",_type:"Africa/Kampala",_territory:"UG"}},{mapZone:{_other:"Africa_Eastern",_type:"Indian/Mayotte",_territory:"YT"}},{mapZone:{_other:"Africa_FarWestern",_type:"Africa/El_Aaiun",_territory:"001"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Johannesburg",_territory:"001"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Maseru",_territory:"LS"}},{mapZone:{_other:"Africa_Southern",_type:"Africa/Mbabane",_territory:"SZ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Lagos",_territory:"001"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Luanda",_territory:"AO"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Porto-Novo",_territory:"BJ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Kinshasa",_territory:"CD"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Bangui",_territory:"CF"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Brazzaville",_territory:"CG"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Douala",_territory:"CM"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Libreville",_territory:"GA"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Malabo",_territory:"GQ"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Niamey",_territory:"NE"}},{mapZone:{_other:"Africa_Western",_type:"Africa/Ndjamena",_territory:"TD"}},{mapZone:{_other:"Aktyubinsk",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Alaska",_type:"America/Juneau",_territory:"001"}},{mapZone:{_other:"Alaska_Hawaii",_type:"America/Anchorage",_territory:"001"}},{mapZone:{_other:"Almaty",_type:"Asia/Almaty",_territory:"001"}},{mapZone:{_other:"Amazon",_type:"America/Manaus",_territory:"001"}},{mapZone:{_other:"America_Central",_type:"America/Chicago",_territory:"001"}},{mapZone:{_other:"America_Central",_type:"America/Belize",_territory:"BZ"}},{mapZone:{_other:"America_Central",_type:"America/Winnipeg",_territory:"CA"}},{mapZone:{_other:"America_Central",_type:"America/Costa_Rica",_territory:"CR"}},{mapZone:{_other:"America_Central",_type:"America/Guatemala",_territory:"GT"}},{mapZone:{_other:"America_Central",_type:"America/Tegucigalpa",_territory:"HN"}},{mapZone:{_other:"America_Central",_type:"America/Mexico_City",_territory:"MX"}},{mapZone:{_other:"America_Central",_type:"America/El_Salvador",_territory:"SV"}},{mapZone:{_other:"America_Eastern",_type:"America/New_York",_territory:"001"}},{mapZone:{_other:"America_Eastern",_type:"America/Nassau",_territory:"BS"}},{mapZone:{_other:"America_Eastern",_type:"America/Toronto",_territory:"CA"}},{mapZone:{_other:"America_Eastern",_type:"America/Port-au-Prince",_territory:"HT"}},{mapZone:{_other:"America_Eastern",_type:"America/Jamaica",_territory:"JM"}},{mapZone:{_other:"America_Eastern",_type:"America/Cayman",_territory:"KY"}},{mapZone:{_other:"America_Eastern",_type:"America/Panama",_territory:"PA"}},{mapZone:{_other:"America_Mountain",_type:"America/Denver",_territory:"001"}},{mapZone:{_other:"America_Mountain",_type:"America/Edmonton",_territory:"CA"}},{mapZone:{_other:"America_Mountain",_type:"America/Hermosillo",_territory:"MX"}},{mapZone:{_other:"America_Pacific",_type:"America/Los_Angeles",_territory:"001"}},{mapZone:{_other:"America_Pacific",_type:"America/Vancouver",_territory:"CA"}},{mapZone:{_other:"America_Pacific",_type:"America/Tijuana",_territory:"MX"}},{mapZone:{_other:"Anadyr",_type:"Asia/Anadyr",_territory:"001"}},{mapZone:{_other:"Apia",_type:"Pacific/Apia",_territory:"001"}},{mapZone:{_other:"Aqtau",_type:"Asia/Aqtau",_territory:"001"}},{mapZone:{_other:"Aqtobe",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Arabian",_type:"Asia/Riyadh",_territory:"001"}},{mapZone:{_other:"Arabian",_type:"Asia/Bahrain",_territory:"BH"}},{mapZone:{_other:"Arabian",_type:"Asia/Baghdad",_territory:"IQ"}},{mapZone:{_other:"Arabian",_type:"Asia/Kuwait",_territory:"KW"}},{mapZone:{_other:"Arabian",_type:"Asia/Qatar",_territory:"QA"}},{mapZone:{_other:"Arabian",_type:"Asia/Aden",_territory:"YE"}},{mapZone:{_other:"Argentina",_type:"America/Buenos_Aires",_territory:"001"}},{mapZone:{_other:"Argentina_Western",_type:"America/Argentina/San_Luis",_territory:"001"}},{mapZone:{_other:"Armenia",_type:"Asia/Yerevan",_territory:"001"}},{mapZone:{_other:"Ashkhabad",_type:"Asia/Ashgabat",_territory:"001"}},{mapZone:{_other:"Atlantic",_type:"America/Halifax",_territory:"001"}},{mapZone:{_other:"Atlantic",_type:"America/Antigua",_territory:"AG"}},{mapZone:{_other:"Atlantic",_type:"America/Anguilla",_territory:"AI"}},{mapZone:{_other:"Atlantic",_type:"America/Aruba",_territory:"AW"}},{mapZone:{_other:"Atlantic",_type:"America/Barbados",_territory:"BB"}},{mapZone:{_other:"Atlantic",_type:"Atlantic/Bermuda",_territory:"BM"}},{mapZone:{_other:"Atlantic",_type:"America/Kralendijk",_territory:"BQ"}},{mapZone:{_other:"Atlantic",_type:"America/Curacao",_territory:"CW"}},{mapZone:{_other:"Atlantic",_type:"America/Dominica",_territory:"DM"}},{mapZone:{_other:"Atlantic",_type:"America/Grenada",_territory:"GD"}},{mapZone:{_other:"Atlantic",_type:"America/Thule",_territory:"GL"}},{mapZone:{_other:"Atlantic",_type:"America/Guadeloupe",_territory:"GP"}},{mapZone:{_other:"Atlantic",_type:"America/St_Kitts",_territory:"KN"}},{mapZone:{_other:"Atlantic",_type:"America/St_Lucia",_territory:"LC"}},{mapZone:{_other:"Atlantic",_type:"America/Marigot",_territory:"MF"}},{mapZone:{_other:"Atlantic",_type:"America/Martinique",_territory:"MQ"}},{mapZone:{_other:"Atlantic",_type:"America/Montserrat",_territory:"MS"}},{mapZone:{_other:"Atlantic",_type:"America/Puerto_Rico",_territory:"PR"}},{mapZone:{_other:"Atlantic",_type:"America/Lower_Princes",_territory:"SX"}},{mapZone:{_other:"Atlantic",_type:"America/Port_of_Spain",_territory:"TT"}},{mapZone:{_other:"Atlantic",_type:"America/St_Vincent",_territory:"VC"}},{mapZone:{_other:"Atlantic",_type:"America/Tortola",_territory:"VG"}},{mapZone:{_other:"Atlantic",_type:"America/St_Thomas",_territory:"VI"}},{mapZone:{_other:"Australia_Central",_type:"Australia/Adelaide",_territory:"001"}},{mapZone:{_other:"Australia_CentralWestern",_type:"Australia/Eucla",_territory:"001"}},{mapZone:{_other:"Australia_Eastern",_type:"Australia/Sydney",_territory:"001"}},{mapZone:{_other:"Australia_Western",_type:"Australia/Perth",_territory:"001"}},{mapZone:{_other:"Azerbaijan",_type:"Asia/Baku",_territory:"001"}},{mapZone:{_other:"Azores",_type:"Atlantic/Azores",_territory:"001"}},{mapZone:{_other:"Baku",_type:"Asia/Baku",_territory:"001"}},{mapZone:{_other:"Bangladesh",_type:"Asia/Dhaka",_territory:"001"}},{mapZone:{_other:"Bering",_type:"America/Adak",_territory:"001"}},{mapZone:{_other:"Bhutan",_type:"Asia/Thimphu",_territory:"001"}},{mapZone:{_other:"Bolivia",_type:"America/La_Paz",_territory:"001"}},{mapZone:{_other:"Borneo",_type:"Asia/Kuching",_territory:"001"}},{mapZone:{_other:"Brasilia",_type:"America/Sao_Paulo",_territory:"001"}},{mapZone:{_other:"British",_type:"Europe/London",_territory:"001"}},{mapZone:{_other:"Brunei",_type:"Asia/Brunei",_territory:"001"}},{mapZone:{_other:"Cape_Verde",_type:"Atlantic/Cape_Verde",_territory:"001"}},{mapZone:{_other:"Casey",_type:"Antarctica/Casey",_territory:"001"}},{mapZone:{_other:"Chamorro",_type:"Pacific/Saipan",_territory:"001"}},{mapZone:{_other:"Chamorro",_type:"Pacific/Guam",_territory:"GU"}},{mapZone:{_other:"Chatham",_type:"Pacific/Chatham",_territory:"001"}},{mapZone:{_other:"Chile",_type:"America/Santiago",_territory:"001"}},{mapZone:{_other:"China",_type:"Asia/Shanghai",_territory:"001"}},{mapZone:{_other:"Choibalsan",_type:"Asia/Choibalsan",_territory:"001"}},{mapZone:{_other:"Christmas",_type:"Indian/Christmas",_territory:"001"}},{mapZone:{_other:"Cocos",_type:"Indian/Cocos",_territory:"001"}},{mapZone:{_other:"Colombia",_type:"America/Bogota",_territory:"001"}},{mapZone:{_other:"Cook",_type:"Pacific/Rarotonga",_territory:"001"}},{mapZone:{_other:"Cuba",_type:"America/Havana",_territory:"001"}},{mapZone:{_other:"Dacca",_type:"Asia/Dhaka",_territory:"001"}},{mapZone:{_other:"Davis",_type:"Antarctica/Davis",_territory:"001"}},{mapZone:{_other:"Dominican",_type:"America/Santo_Domingo",_territory:"001"}},{mapZone:{_other:"DumontDUrville",_type:"Antarctica/DumontDUrville",_territory:"001"}},{mapZone:{_other:"Dushanbe",_type:"Asia/Dushanbe",_territory:"001"}},{mapZone:{_other:"Dutch_Guiana",_type:"America/Paramaribo",_territory:"001"}},{mapZone:{_other:"East_Timor",_type:"Asia/Dili",_territory:"001"}},{mapZone:{_other:"Easter",_type:"Pacific/Easter",_territory:"001"}},{mapZone:{_other:"Ecuador",_type:"America/Guayaquil",_territory:"001"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Paris",_territory:"001"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Andorra",_territory:"AD"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Tirane",_territory:"AL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vienna",_territory:"AT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Sarajevo",_territory:"BA"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Brussels",_territory:"BE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Zurich",_territory:"CH"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Prague",_territory:"CZ"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Berlin",_territory:"DE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Copenhagen",_territory:"DK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Madrid",_territory:"ES"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Gibraltar",_territory:"GI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Zagreb",_territory:"HR"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Budapest",_territory:"HU"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Rome",_territory:"IT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vaduz",_territory:"LI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Luxembourg",_territory:"LU"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Monaco",_territory:"MC"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Podgorica",_territory:"ME"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Skopje",_territory:"MK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Malta",_territory:"MT"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Amsterdam",_territory:"NL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Oslo",_territory:"NO"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Warsaw",_territory:"PL"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Belgrade",_territory:"RS"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Stockholm",_territory:"SE"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Ljubljana",_territory:"SI"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Bratislava",_territory:"SK"}},{mapZone:{_other:"Europe_Central",_type:"Europe/San_Marino",_territory:"SM"}},{mapZone:{_other:"Europe_Central",_type:"Africa/Tunis",_territory:"TN"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Vatican",_territory:"VA"}},{mapZone:{_other:"Europe_Central",_type:"Europe/Belgrade",_territory:"XK"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Bucharest",_territory:"001"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Mariehamn",_territory:"AX"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Sofia",_territory:"BG"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Nicosia",_territory:"CY"}},{mapZone:{_other:"Europe_Eastern",_type:"Africa/Cairo",_territory:"EG"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Helsinki",_territory:"FI"}},{mapZone:{_other:"Europe_Eastern",_type:"Europe/Athens",_territory:"GR"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Amman",_territory:"JO"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Beirut",_territory:"LB"}},{mapZone:{_other:"Europe_Eastern",_type:"Asia/Damascus",_territory:"SY"}},{mapZone:{_other:"Europe_Further_Eastern",_type:"Europe/Minsk",_territory:"001"}},{mapZone:{_other:"Europe_Further_Eastern",_type:"Europe/Kaliningrad",_territory:"RU"}},{mapZone:{_other:"Europe_Western",_type:"Atlantic/Canary",_territory:"001"}},{mapZone:{_other:"Europe_Western",_type:"Atlantic/Faeroe",_territory:"FO"}},{mapZone:{_other:"Falkland",_type:"Atlantic/Stanley",_territory:"001"}},{mapZone:{_other:"Fiji",_type:"Pacific/Fiji",_territory:"001"}},{mapZone:{_other:"French_Guiana",_type:"America/Cayenne",_territory:"001"}},{mapZone:{_other:"French_Southern",_type:"Indian/Kerguelen",_territory:"001"}},{mapZone:{_other:"Frunze",_type:"Asia/Bishkek",_territory:"001"}},{mapZone:{_other:"Galapagos",_type:"Pacific/Galapagos",_territory:"001"}},{mapZone:{_other:"Gambier",_type:"Pacific/Gambier",_territory:"001"}},{mapZone:{_other:"Georgia",_type:"Asia/Tbilisi",_territory:"001"}},{mapZone:{_other:"Gilbert_Islands",_type:"Pacific/Tarawa",_territory:"001"}},{mapZone:{_other:"GMT",_type:"Atlantic/Reykjavik",_territory:"001"}},{mapZone:{_other:"GMT",_type:"Africa/Ouagadougou",_territory:"BF"}},{mapZone:{_other:"GMT",_type:"Africa/Abidjan",_territory:"CI"}},{mapZone:{_other:"GMT",_type:"Europe/London",_territory:"GB"}},{mapZone:{_other:"GMT",_type:"Africa/Accra",_territory:"GH"}},{mapZone:{_other:"GMT",_type:"Africa/Banjul",_territory:"GM"}},{mapZone:{_other:"GMT",_type:"Africa/Conakry",_territory:"GN"}},{mapZone:{_other:"GMT",_type:"Europe/Dublin",_territory:"IE"}},{mapZone:{_other:"GMT",_type:"Africa/Bamako",_territory:"ML"}},{mapZone:{_other:"GMT",_type:"Africa/Nouakchott",_territory:"MR"}},{mapZone:{_other:"GMT",_type:"Atlantic/St_Helena",_territory:"SH"}},{mapZone:{_other:"GMT",_type:"Africa/Freetown",_territory:"SL"}},{mapZone:{_other:"GMT",_type:"Africa/Dakar",_territory:"SN"}},{mapZone:{_other:"GMT",_type:"Africa/Lome",_territory:"TG"}},{mapZone:{_other:"Goose_Bay",_type:"America/Goose_Bay",_territory:"001"}},{mapZone:{_other:"Greenland_Central",_type:"America/Scoresbysund",_territory:"001"}},{mapZone:{_other:"Greenland_Eastern",_type:"America/Scoresbysund",_territory:"001"}},{mapZone:{_other:"Greenland_Western",_type:"America/Godthab",_territory:"001"}},{mapZone:{_other:"Guam",_type:"Pacific/Guam",_territory:"001"}},{mapZone:{_other:"Gulf",_type:"Asia/Dubai",_territory:"001"}},{mapZone:{_other:"Gulf",_type:"Asia/Muscat",_territory:"OM"}},{mapZone:{_other:"Guyana",_type:"America/Guyana",_territory:"001"}},{mapZone:{_other:"Hawaii_Aleutian",_type:"Pacific/Honolulu",_territory:"001"}},{mapZone:{_other:"Hong_Kong",_type:"Asia/Hong_Kong",_territory:"001"}},{mapZone:{_other:"Hovd",_type:"Asia/Hovd",_territory:"001"}},{mapZone:{_other:"India",_type:"Asia/Calcutta",_territory:"001"}},{mapZone:{_other:"India",_type:"Asia/Colombo",_territory:"LK"}},{mapZone:{_other:"Indian_Ocean",_type:"Indian/Chagos",_territory:"001"}},{mapZone:{_other:"Indochina",_type:"Asia/Bangkok",_territory:"001"}},{mapZone:{_other:"Indochina",_type:"Asia/Phnom_Penh",_territory:"KH"}},{mapZone:{_other:"Indochina",_type:"Asia/Vientiane",_territory:"LA"}},{mapZone:{_other:"Indonesia_Central",_type:"Asia/Makassar",_territory:"001"}},{mapZone:{_other:"Indonesia_Eastern",_type:"Asia/Jayapura",_territory:"001"}},{mapZone:{_other:"Indonesia_Western",_type:"Asia/Jakarta",_territory:"001"}},{mapZone:{_other:"Iran",_type:"Asia/Tehran",_territory:"001"}},{mapZone:{_other:"Irish",_type:"Europe/Dublin",_territory:"001"}},{mapZone:{_other:"Irkutsk",_type:"Asia/Irkutsk",_territory:"001"}},{mapZone:{_other:"Israel",_type:"Asia/Jerusalem",_territory:"001"}},{mapZone:{_other:"Japan",_type:"Asia/Tokyo",_territory:"001"}},{mapZone:{_other:"Kamchatka",_type:"Asia/Kamchatka",_territory:"001"}},{mapZone:{_other:"Karachi",_type:"Asia/Karachi",_territory:"001"}},{mapZone:{_other:"Kazakhstan_Eastern",_type:"Asia/Almaty",_territory:"001"}},{mapZone:{_other:"Kazakhstan_Western",_type:"Asia/Aqtobe",_territory:"001"}},{mapZone:{_other:"Kizilorda",_type:"Asia/Qyzylorda",_territory:"001"}},{mapZone:{_other:"Korea",_type:"Asia/Seoul",_territory:"001"}},{mapZone:{_other:"Kosrae",_type:"Pacific/Kosrae",_territory:"001"}},{mapZone:{_other:"Krasnoyarsk",_type:"Asia/Krasnoyarsk",_territory:"001"}},{mapZone:{_other:"Kuybyshev",_type:"Europe/Samara",_territory:"001"}},{mapZone:{_other:"Kwajalein",_type:"Pacific/Kwajalein",_territory:"001"}},{mapZone:{_other:"Kyrgystan",_type:"Asia/Bishkek",_territory:"001"}},{mapZone:{_other:"Lanka",_type:"Asia/Colombo",_territory:"001"}},{mapZone:{_other:"Liberia",_type:"Africa/Monrovia",_territory:"001"}},{mapZone:{_other:"Line_Islands",_type:"Pacific/Kiritimati",_territory:"001"}},{mapZone:{_other:"Lord_Howe",_type:"Australia/Lord_Howe",_territory:"001"}},{mapZone:{_other:"Macau",_type:"Asia/Macau",_territory:"001"}},{mapZone:{_other:"Macquarie",_type:"Antarctica/Macquarie",_territory:"001"}},{mapZone:{_other:"Magadan",_type:"Asia/Magadan",_territory:"001"}},{mapZone:{_other:"Malaya",_type:"Asia/Kuala_Lumpur",_territory:"001"}},{mapZone:{_other:"Malaysia",_type:"Asia/Kuching",_territory:"001"}},{mapZone:{_other:"Maldives",_type:"Indian/Maldives",_territory:"001"}},{mapZone:{_other:"Marquesas",_type:"Pacific/Marquesas",_territory:"001"}},{mapZone:{_other:"Marshall_Islands",_type:"Pacific/Majuro",_territory:"001"}},{mapZone:{_other:"Mauritius",_type:"Indian/Mauritius",_territory:"001"}},{mapZone:{_other:"Mawson",_type:"Antarctica/Mawson",_territory:"001"}},{mapZone:{_other:"Mexico_Northwest",_type:"America/Santa_Isabel",_territory:"001"}},{mapZone:{_other:"Mexico_Pacific",_type:"America/Mazatlan",_territory:"001"}},{mapZone:{_other:"Mongolia",_type:"Asia/Ulaanbaatar",_territory:"001"}},{mapZone:{_other:"Moscow",_type:"Europe/Moscow",_territory:"001"}},{mapZone:{_other:"Myanmar",_type:"Asia/Rangoon",_territory:"001"}},{mapZone:{_other:"Nauru",_type:"Pacific/Nauru",_territory:"001"}},{mapZone:{_other:"Nepal",_type:"Asia/Katmandu",_territory:"001"}},{mapZone:{_other:"New_Caledonia",_type:"Pacific/Noumea",_territory:"001"}},{mapZone:{_other:"New_Zealand",_type:"Pacific/Auckland",_territory:"001"}},{mapZone:{_other:"New_Zealand",_type:"Antarctica/McMurdo",_territory:"AQ"}},{mapZone:{_other:"Newfoundland",_type:"America/St_Johns",_territory:"001"}},{mapZone:{_other:"Niue",_type:"Pacific/Niue",_territory:"001"}},{mapZone:{_other:"Norfolk",_type:"Pacific/Norfolk",_territory:"001"}},{mapZone:{_other:"Noronha",_type:"America/Noronha",_territory:"001"}},{mapZone:{_other:"North_Mariana",_type:"Pacific/Saipan",_territory:"001"}},{mapZone:{_other:"Novosibirsk",_type:"Asia/Novosibirsk",_territory:"001"}},{mapZone:{_other:"Omsk",_type:"Asia/Omsk",_territory:"001"}},{mapZone:{_other:"Oral",_type:"Asia/Oral",_territory:"001"}},{mapZone:{_other:"Pakistan",_type:"Asia/Karachi",_territory:"001"}},{mapZone:{_other:"Palau",_type:"Pacific/Palau",_territory:"001"}},{mapZone:{_other:"Papua_New_Guinea",_type:"Pacific/Port_Moresby",_territory:"001"}},{mapZone:{_other:"Paraguay",_type:"America/Asuncion",_territory:"001"}},{mapZone:{_other:"Peru",_type:"America/Lima",_territory:"001"}},{mapZone:{_other:"Philippines",_type:"Asia/Manila",_territory:"001"}},{mapZone:{_other:"Phoenix_Islands",_type:"Pacific/Enderbury",_territory:"001"}},{mapZone:{_other:"Pierre_Miquelon",_type:"America/Miquelon",_territory:"001"}},{mapZone:{_other:"Pitcairn",_type:"Pacific/Pitcairn",_territory:"001"}},{mapZone:{_other:"Ponape",_type:"Pacific/Ponape",_territory:"001"}},{mapZone:{_other:"Pyongyang",_type:"Asia/Pyongyang",_territory:"001"}},{mapZone:{_other:"Qyzylorda",_type:"Asia/Qyzylorda",_territory:"001"}},{mapZone:{_other:"Reunion",_type:"Indian/Reunion",_territory:"001"}},{mapZone:{_other:"Rothera",_type:"Antarctica/Rothera",_territory:"001"}},{mapZone:{_other:"Sakhalin",_type:"Asia/Sakhalin",_territory:"001"}},{mapZone:{_other:"Samara",_type:"Europe/Samara",_territory:"001"}},{mapZone:{_other:"Samarkand",_type:"Asia/Samarkand",_territory:"001"}},{mapZone:{_other:"Samoa",_type:"Pacific/Pago_Pago",_territory:"001"}},{mapZone:{_other:"Seychelles",_type:"Indian/Mahe",_territory:"001"}},{mapZone:{_other:"Shevchenko",_type:"Asia/Aqtau",_territory:"001"}},{mapZone:{_other:"Singapore",_type:"Asia/Singapore",_territory:"001"}},{mapZone:{_other:"Solomon",_type:"Pacific/Guadalcanal",_territory:"001"}},{mapZone:{_other:"South_Georgia",_type:"Atlantic/South_Georgia",_territory:"001"}},{mapZone:{_other:"Suriname",_type:"America/Paramaribo",_territory:"001"}},{mapZone:{_other:"Sverdlovsk",_type:"Asia/Yekaterinburg",_territory:"001"}},{mapZone:{_other:"Syowa",_type:"Antarctica/Syowa",_territory:"001"}},{mapZone:{_other:"Tahiti",_type:"Pacific/Tahiti",_territory:"001"}},{mapZone:{_other:"Taipei",_type:"Asia/Taipei",_territory:"001"}},{mapZone:{_other:"Tajikistan",_type:"Asia/Dushanbe",_territory:"001"}},{mapZone:{_other:"Tashkent",_type:"Asia/Tashkent",_territory:"001"}},{mapZone:{_other:"Tbilisi",_type:"Asia/Tbilisi",_territory:"001"}},{mapZone:{_other:"Tokelau",_type:"Pacific/Fakaofo",_territory:"001"}},{mapZone:{_other:"Tonga",_type:"Pacific/Tongatapu",_territory:"001"}},{mapZone:{_other:"Truk",_type:"Pacific/Truk",_territory:"001"}},{mapZone:{_other:"Turkey",_type:"Europe/Istanbul",_territory:"001"}},{mapZone:{_other:"Turkmenistan",_type:"Asia/Ashgabat",_territory:"001"}},{mapZone:{_other:"Tuvalu",_type:"Pacific/Funafuti",_territory:"001"}},{mapZone:{_other:"Uralsk",_type:"Asia/Oral",_territory:"001"}},{mapZone:{_other:"Uruguay",_type:"America/Montevideo",_territory:"001"}},{mapZone:{_other:"Urumqi",_type:"Asia/Urumqi",_territory:"001"}},{mapZone:{_other:"Uzbekistan",_type:"Asia/Tashkent",_territory:"001"}},{mapZone:{_other:"Vanuatu",_type:"Pacific/Efate",_territory:"001"}},{mapZone:{_other:"Venezuela",_type:"America/Caracas",_territory:"001"}},{mapZone:{_other:"Vladivostok",_type:"Asia/Vladivostok",_territory:"001"}},{mapZone:{_other:"Volgograd",_type:"Europe/Volgograd",_territory:"001"}},{mapZone:{_other:"Vostok",_type:"Antarctica/Vostok",_territory:"001"}},{mapZone:{_other:"Wake",_type:"Pacific/Wake",_territory:"001"}},{mapZone:{_other:"Wallis",_type:"Pacific/Wallis",_territory:"001"}},{mapZone:{_other:"Yakutsk",_type:"Asia/Yakutsk",_territory:"001"}},{mapZone:{_other:"Yekaterinburg",_type:"Asia/Yekaterinburg",_territory:"001"}},{mapZone:{_other:"Yerevan",_type:"Asia/Yerevan",_territory:"001"}},{mapZone:{_other:"Yukon",_type:"America/Yakutat",_territory:"001"}}]}}},d={supplemental:{version:{_unicodeVersion:"12.1.0",_cldrVersion:"36"},weekData:{minDays:{"001":"1",AD:"4",AN:"4",AT:"4",AX:"4",BE:"4",BG:"4",CH:"4",CZ:"4",DE:"4",DK:"4",EE:"4",ES:"4",FI:"4",FJ:"4",FO:"4",FR:"4",GB:"4",GF:"4",GG:"4",GI:"4",GP:"4",GR:"4",GU:"1",HU:"4",IE:"4",IM:"4",IS:"4",IT:"4",JE:"4",LI:"4",LT:"4",LU:"4",MC:"4",MQ:"4",NL:"4",NO:"4",PL:"4",PT:"4",RE:"4",RU:"4",SE:"4",SJ:"4",SK:"4",SM:"4",UM:"1",US:"1",VA:"4",VI:"1"},firstDay:{"001":"mon",AD:"mon",AE:"sat",AF:"sat",AG:"sun",AI:"mon",AL:"mon",AM:"mon",AN:"mon",AR:"mon",AS:"sun",AT:"mon",AU:"sun",AX:"mon",AZ:"mon",BA:"mon",BD:"sun",BE:"mon",BG:"mon",BH:"sat",BM:"mon",BN:"mon",BR:"sun",BS:"sun",BT:"sun",BW:"sun",BY:"mon",BZ:"sun",CA:"sun",CH:"mon",CL:"mon",CM:"mon",CN:"sun",CO:"sun",CR:"mon",CY:"mon",CZ:"mon",DE:"mon",DJ:"sat",DK:"mon",DM:"sun",DO:"sun",DZ:"sat",EC:"mon",EE:"mon",EG:"sat",ES:"mon",ET:"sun",FI:"mon",FJ:"mon",FO:"mon",FR:"mon",GB:"mon","GB-alt-variant":"sun",GE:"mon",GF:"mon",GP:"mon",GR:"mon",GT:"sun",GU:"sun",HK:"sun",HN:"sun",HR:"mon",HU:"mon",ID:"sun",IE:"mon",IL:"sun",IN:"sun",IQ:"sat",IR:"sat",IS:"mon",IT:"mon",JM:"sun",JO:"sat",JP:"sun",KE:"sun",KG:"mon",KH:"sun",KR:"sun",KW:"sat",KZ:"mon",LA:"sun",LB:"mon",LI:"mon",LK:"mon",LT:"mon",LU:"mon",LV:"mon",LY:"sat",MC:"mon",MD:"mon",ME:"mon",MH:"sun",MK:"mon",MM:"sun",MN:"mon",MO:"sun",MQ:"mon",MT:"sun",MV:"fri",MX:"sun",MY:"mon",MZ:"sun",NI:"sun",NL:"mon",NO:"mon",NP:"sun",NZ:"mon",OM:"sat",PA:"sun",PE:"sun",PH:"sun",PK:"sun",PL:"mon",PR:"sun",PT:"sun",PY:"sun",QA:"sat",RE:"mon",RO:"mon",RS:"mon",RU:"mon",SA:"sun",SD:"sat",SE:"mon",SG:"sun",SI:"mon",SK:"mon",SM:"mon",SV:"sun",SY:"sat",TH:"sun",TJ:"mon",TM:"mon",TR:"mon",TT:"sun",TW:"sun",UA:"mon",UM:"sun",US:"sun",UY:"mon",UZ:"mon",VA:"mon",VE:"sun",VI:"sun",VN:"mon",WS:"sun",XK:"mon",YE:"sun",ZA:"sun",ZW:"sun"},weekendStart:{"001":"sat",AE:"fri",AF:"thu",BH:"fri",DZ:"fri",EG:"fri",IL:"fri",IN:"sun",IQ:"fri",IR:"fri",JO:"fri",KW:"fri",LY:"fri",OM:"fri",QA:"fri",SA:"fri",SD:"fri",SY:"fri",UG:"sun",YE:"fri"},weekendEnd:{"001":"sun",AE:"sat",AF:"fri",BH:"sat",DZ:"sat",EG:"sat",IL:"sat",IQ:"sat",IR:"fri",JO:"sat",KW:"sat",LY:"sat",OM:"sat",QA:"sat",SA:"sat",SD:"sat",SY:"sat",YE:"sat"},af:{_ordering:"weekOfDate weekOfInterval weekOfMonth"},"am az bs cs cy da el et hi ky lt mk sk ta th":{_ordering:"weekOfYear weekOfMonth"},"ar fil gu hu hy id kk ko":{_ordering:"weekOfMonth"},"be ro ru":{_ordering:"weekOfInterval weekOfMonth"},"bg de iw pt ur zh":{_ordering:"weekOfDate weekOfMonth weekOfInterval"},"ca es fr gl":{_ordering:"weekOfDate"},"en bn ja ka":{_ordering:"weekOfDate weekOfMonth"},eu:{_ordering:"weekOfMonth weekOfDate"},"fa hr it lv pl si sr uk uz":{_ordering:"weekOfMonth weekOfInterval"},"fi zh-TW":{_ordering:"weekOfYear weekOfDate weekOfMonth"},"is mn no sv vi":{_ordering:"weekOfYear weekOfMonth weekOfInterval"},"km mr":{_ordering:"weekOfMonth weekOfYear"},"kn ml pa":{_ordering:"weekOfMonth weekOfDate weekOfYear"},"lo sq":{_ordering:"weekOfMonth weekOfInterval weekOfDate weekOfYear"},"ms tr":{_ordering:"weekOfMonth weekOfYear weekOfInterval weekOfDate"},nl:{_ordering:"weekOfDate weekOfYear weekOfMonth"},sl:{_ordering:"weekOfInterval"},"sw te":{_ordering:"weekOfMonth weekOfInterval weekOfYear"},und:{_ordering:"weekOfYear"},zu:{_ordering:"weekOfYear weekOfInterval"}}}},f={main:{en:{identity:{version:{_cldrVersion:"36"},language:"en"},dates:{calendars:{gregorian:{months:{format:{abbreviated:{1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"},narrow:{1:"J",2:"F",3:"M",4:"A",5:"M",6:"J",7:"J",8:"A",9:"S",10:"O",11:"N",12:"D"},wide:{1:"January",2:"February",3:"March",4:"April",5:"May",6:"June",7:"July",8:"August",9:"September",10:"October",11:"November",12:"December"}},"stand-alone":{abbreviated:{1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"},narrow:{1:"J",2:"F",3:"M",4:"A",5:"M",6:"J",7:"J",8:"A",9:"S",10:"O",11:"N",12:"D"},wide:{1:"January",2:"February",3:"March",4:"April",5:"May",6:"June",7:"July",8:"August",9:"September",10:"October",11:"November",12:"December"}}},days:{format:{abbreviated:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},narrow:{sun:"S",mon:"M",tue:"T",wed:"W",thu:"T",fri:"F",sat:"S"},short:{sun:"Su",mon:"Mo",tue:"Tu",wed:"We",thu:"Th",fri:"Fr",sat:"Sa"},wide:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"}},"stand-alone":{abbreviated:{sun:"Sun",mon:"Mon",tue:"Tue",wed:"Wed",thu:"Thu",fri:"Fri",sat:"Sat"},narrow:{sun:"S",mon:"M",tue:"T",wed:"W",thu:"T",fri:"F",sat:"S"},short:{sun:"Su",mon:"Mo",tue:"Tu",wed:"We",thu:"Th",fri:"Fr",sat:"Sa"},wide:{sun:"Sunday",mon:"Monday",tue:"Tuesday",wed:"Wednesday",thu:"Thursday",fri:"Friday",sat:"Saturday"}}},quarters:{format:{abbreviated:{1:"Q1",2:"Q2",3:"Q3",4:"Q4"},narrow:{1:"1",2:"2",3:"3",4:"4"},wide:{1:"1st quarter",2:"2nd quarter",3:"3rd quarter",4:"4th quarter"}},"stand-alone":{abbreviated:{1:"Q1",2:"Q2",3:"Q3",4:"Q4"},narrow:{1:"1",2:"2",3:"3",4:"4"},wide:{1:"1st quarter",2:"2nd quarter",3:"3rd quarter",4:"4th quarter"}}},dayPeriods:{format:{abbreviated:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"},narrow:{midnight:"mi",am:"a","am-alt-variant":"am",noon:"n",pm:"p","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"},wide:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"in the morning",afternoon1:"in the afternoon",evening1:"in the evening",night1:"at night"}},"stand-alone":{abbreviated:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"},narrow:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"},wide:{midnight:"midnight",am:"AM","am-alt-variant":"am",noon:"noon",pm:"PM","pm-alt-variant":"pm",morning1:"morning",afternoon1:"afternoon",evening1:"evening",night1:"night"}}},eras:{eraNames:{0:"Before Christ",1:"Anno Domini","0-alt-variant":"Before Common Era","1-alt-variant":"Common Era"},eraAbbr:{0:"BC",1:"AD","0-alt-variant":"BCE","1-alt-variant":"CE"},eraNarrow:{0:"B",1:"A","0-alt-variant":"BCE","1-alt-variant":"CE"}},dateFormats:{full:"EEEE, MMMM d, y",long:"MMMM d, y",medium:"MMM d, y",short:"M/d/yy"},timeFormats:{full:"h:mm:ss a zzzz",long:"h:mm:ss a z",medium:"h:mm:ss a",short:"h:mm a"},dateTimeFormats:{full:"{1} 'at' {0}",long:"{1} 'at' {0}",medium:"{1}, {0}",short:"{1}, {0}",availableFormats:{Bh:"h B",Bhm:"h:mm B",Bhms:"h:mm:ss B",d:"d",E:"ccc",EBhm:"E h:mm B",EBhms:"E h:mm:ss B",Ed:"d E",Ehm:"E h:mm a",EHm:"E HH:mm",Ehms:"E h:mm:ss a",EHms:"E HH:mm:ss",Gy:"y G",GyMMM:"MMM y G",GyMMMd:"MMM d, y G",GyMMMEd:"E, MMM d, y G",h:"h a",H:"HH",hm:"h:mm a",Hm:"HH:mm",hms:"h:mm:ss a",Hms:"HH:mm:ss",hmsv:"h:mm:ss a v",Hmsv:"HH:mm:ss v",hmv:"h:mm a v",Hmv:"HH:mm v",M:"L",Md:"M/d",MEd:"E, M/d",MMM:"LLL",MMMd:"MMM d",MMMEd:"E, MMM d",MMMMd:"MMMM d","MMMMW-count-one":"'week' W 'of' MMMM","MMMMW-count-other":"'week' W 'of' MMMM",ms:"mm:ss",y:"y",yM:"M/y",yMd:"M/d/y",yMEd:"E, M/d/y",yMMM:"MMM y",yMMMd:"MMM d, y",yMMMEd:"E, MMM d, y",yMMMM:"MMMM y",yQQQ:"QQQ y",yQQQQ:"QQQQ y","yw-count-one":"'week' w 'of' Y","yw-count-other":"'week' w 'of' Y"},appendItems:{Day:"{0} ({2}: {1})","Day-Of-Week":"{0} {1}",Era:"{0} {1}",Hour:"{0} ({2}: {1})",Minute:"{0} ({2}: {1})",Month:"{0} ({2}: {1})",Quarter:"{0} ({2}: {1})",Second:"{0} ({2}: {1})",Timezone:"{0} {1}",Week:"{0} ({2}: {1})",Year:"{0} {1}"},intervalFormats:{intervalFormatFallback:"{0} – {1}",Bh:{B:"h B – h B",h:"h – h B"},Bhm:{B:"h:mm B – h:mm B",h:"h:mm – h:mm B",m:"h:mm – h:mm B"},d:{d:"d – d"},Gy:{G:"y G – y G",y:"y – y G"},GyM:{G:"M/y GGGGG – M/y GGGGG",M:"M/y – M/y GGGGG",y:"M/y – M/y GGGGG"},GyMd:{d:"M/d/y – M/d/y GGGGG",G:"M/d/y GGGGG – M/d/y GGGGG",M:"M/d/y – M/d/y GGGGG",y:"M/d/y – M/d/y GGGGG"},GyMEd:{d:"E, M/d/y – E, M/d/y GGGGG",G:"E, M/d/y GGGGG – E, M/d/y GGGGG",M:"E, M/d/y – E, M/d/y GGGGG",y:"E, M/d/y – E, M/d/y GGGGG"},GyMMM:{G:"MMM y G – MMM y G",M:"MMM – MMM y G",y:"MMM y – MMM y G"},GyMMMd:{d:"MMM d – d, y G",G:"MMM d, y G – MMM d, y G",M:"MMM d – MMM d, y G",y:"MMM d, y – MMM d, y G"},GyMMMEd:{d:"E, MMM d – E, MMM d, y G",G:"E, MMM d, y G – E, MMM d, y G",M:"E, MMM d – E, MMM d, y G",y:"E, MMM d, y – E, MMM d, y G"},h:{a:"h a – h a",h:"h – h a"},H:{H:"HH – HH"},hm:{a:"h:mm a – h:mm a",h:"h:mm – h:mm a",m:"h:mm – h:mm a"},Hm:{H:"HH:mm – HH:mm",m:"HH:mm – HH:mm"},hmv:{a:"h:mm a – h:mm a v",h:"h:mm – h:mm a v",m:"h:mm – h:mm a v"},Hmv:{H:"HH:mm – HH:mm v",m:"HH:mm – HH:mm v"},hv:{a:"h a – h a v",h:"h – h a v"},Hv:{H:"HH – HH v"},M:{M:"M – M"},Md:{d:"M/d – M/d",M:"M/d – M/d"},MEd:{d:"E, M/d – E, M/d",M:"E, M/d – E, M/d"},MMM:{M:"MMM – MMM"},MMMd:{d:"MMM d – d",M:"MMM d – MMM d"},MMMEd:{d:"E, MMM d – E, MMM d",M:"E, MMM d – E, MMM d"},y:{y:"y – y"},yM:{M:"M/y – M/y",y:"M/y – M/y"},yMd:{d:"M/d/y – M/d/y",M:"M/d/y – M/d/y",y:"M/d/y – M/d/y"},yMEd:{d:"E, M/d/y – E, M/d/y",M:"E, M/d/y – E, M/d/y",y:"E, M/d/y – E, M/d/y"},yMMM:{M:"MMM – MMM y",y:"MMM y – MMM y"},yMMMd:{d:"MMM d – d, y",M:"MMM d – MMM d, y",y:"MMM d, y – MMM d, y"},yMMMEd:{d:"E, MMM d – E, MMM d, y",M:"E, MMM d – E, MMM d, y",y:"E, MMM d, y – E, MMM d, y"},yMMMM:{M:"MMMM – MMMM y",y:"MMMM y – MMMM y"}}}}}}}}},h={main:{en:{identity:{version:{_cldrVersion:"36"},language:"en"},dates:{timeZoneNames:{hourFormat:"+HH:mm;-HH:mm",gmtFormat:"GMT{0}",gmtZeroFormat:"GMT",regionFormat:"{0} Time","regionFormat-type-daylight":"{0} Daylight Time","regionFormat-type-standard":"{0} Standard Time",fallbackFormat:"{1} ({0})",zone:{America:{Adak:{exemplarCity:"Adak"},Anchorage:{exemplarCity:"Anchorage"},Anguilla:{exemplarCity:"Anguilla"},Antigua:{exemplarCity:"Antigua"},Araguaina:{exemplarCity:"Araguaina"},Argentina:{Rio_Gallegos:{exemplarCity:"Rio Gallegos"},San_Juan:{exemplarCity:"San Juan"},Ushuaia:{exemplarCity:"Ushuaia"},La_Rioja:{exemplarCity:"La Rioja"},San_Luis:{exemplarCity:"San Luis"},Salta:{exemplarCity:"Salta"},Tucuman:{exemplarCity:"Tucuman"}},Aruba:{exemplarCity:"Aruba"},Asuncion:{exemplarCity:"Asunción"},Bahia:{exemplarCity:"Bahia"},Bahia_Banderas:{exemplarCity:"Bahia Banderas"},Barbados:{exemplarCity:"Barbados"},Belem:{exemplarCity:"Belem"},Belize:{exemplarCity:"Belize"},"Blanc-Sablon":{exemplarCity:"Blanc-Sablon"},Boa_Vista:{exemplarCity:"Boa Vista"},Bogota:{exemplarCity:"Bogota"},Boise:{exemplarCity:"Boise"},Buenos_Aires:{exemplarCity:"Buenos Aires"},Cambridge_Bay:{exemplarCity:"Cambridge Bay"},Campo_Grande:{exemplarCity:"Campo Grande"},Cancun:{exemplarCity:"Cancun"},Caracas:{exemplarCity:"Caracas"},Catamarca:{exemplarCity:"Catamarca"},Cayenne:{exemplarCity:"Cayenne"},Cayman:{exemplarCity:"Cayman"},Chicago:{exemplarCity:"Chicago"},Chihuahua:{exemplarCity:"Chihuahua"},Coral_Harbour:{exemplarCity:"Atikokan"},Cordoba:{exemplarCity:"Cordoba"},Costa_Rica:{exemplarCity:"Costa Rica"},Creston:{exemplarCity:"Creston"},Cuiaba:{exemplarCity:"Cuiaba"},Curacao:{exemplarCity:"Curaçao"},Danmarkshavn:{exemplarCity:"Danmarkshavn"},Dawson:{exemplarCity:"Dawson"},Dawson_Creek:{exemplarCity:"Dawson Creek"},Denver:{exemplarCity:"Denver"},Detroit:{exemplarCity:"Detroit"},Dominica:{exemplarCity:"Dominica"},Edmonton:{exemplarCity:"Edmonton"},Eirunepe:{exemplarCity:"Eirunepe"},El_Salvador:{exemplarCity:"El Salvador"},Fort_Nelson:{exemplarCity:"Fort Nelson"},Fortaleza:{exemplarCity:"Fortaleza"},Glace_Bay:{exemplarCity:"Glace Bay"},Godthab:{exemplarCity:"Nuuk"},Goose_Bay:{exemplarCity:"Goose Bay"},Grand_Turk:{exemplarCity:"Grand Turk"},Grenada:{exemplarCity:"Grenada"},Guadeloupe:{exemplarCity:"Guadeloupe"},Guatemala:{exemplarCity:"Guatemala"},Guayaquil:{exemplarCity:"Guayaquil"},Guyana:{exemplarCity:"Guyana"},Halifax:{exemplarCity:"Halifax"},Havana:{exemplarCity:"Havana"},Hermosillo:{exemplarCity:"Hermosillo"},Indiana:{Vincennes:{exemplarCity:"Vincennes, Indiana"},Petersburg:{exemplarCity:"Petersburg, Indiana"},Tell_City:{exemplarCity:"Tell City, Indiana"},Knox:{exemplarCity:"Knox, Indiana"},Winamac:{exemplarCity:"Winamac, Indiana"},Marengo:{exemplarCity:"Marengo, Indiana"},Vevay:{exemplarCity:"Vevay, Indiana"}},Indianapolis:{exemplarCity:"Indianapolis"},Inuvik:{exemplarCity:"Inuvik"},Iqaluit:{exemplarCity:"Iqaluit"},Jamaica:{exemplarCity:"Jamaica"},Jujuy:{exemplarCity:"Jujuy"},Juneau:{exemplarCity:"Juneau"},Kentucky:{Monticello:{exemplarCity:"Monticello, Kentucky"}},Kralendijk:{exemplarCity:"Kralendijk"},La_Paz:{exemplarCity:"La Paz"},Lima:{exemplarCity:"Lima"},Los_Angeles:{exemplarCity:"Los Angeles"},Louisville:{exemplarCity:"Louisville"},Lower_Princes:{exemplarCity:"Lower Prince’s Quarter"},Maceio:{exemplarCity:"Maceio"},Managua:{exemplarCity:"Managua"},Manaus:{exemplarCity:"Manaus"},Marigot:{exemplarCity:"Marigot"},Martinique:{exemplarCity:"Martinique"},Matamoros:{exemplarCity:"Matamoros"},Mazatlan:{exemplarCity:"Mazatlan"},Mendoza:{exemplarCity:"Mendoza"},Menominee:{exemplarCity:"Menominee"},Merida:{exemplarCity:"Merida"},Metlakatla:{exemplarCity:"Metlakatla"},Mexico_City:{exemplarCity:"Mexico City"},Miquelon:{exemplarCity:"Miquelon"},Moncton:{exemplarCity:"Moncton"},Monterrey:{exemplarCity:"Monterrey"},Montevideo:{exemplarCity:"Montevideo"},Montserrat:{exemplarCity:"Montserrat"},Nassau:{exemplarCity:"Nassau"},New_York:{exemplarCity:"New York"},Nipigon:{exemplarCity:"Nipigon"},Nome:{exemplarCity:"Nome"},Noronha:{exemplarCity:"Noronha"},North_Dakota:{Beulah:{exemplarCity:"Beulah, North Dakota"},New_Salem:{exemplarCity:"New Salem, North Dakota"},Center:{exemplarCity:"Center, North Dakota"}},Ojinaga:{exemplarCity:"Ojinaga"},Panama:{exemplarCity:"Panama"},Pangnirtung:{exemplarCity:"Pangnirtung"},Paramaribo:{exemplarCity:"Paramaribo"},Phoenix:{exemplarCity:"Phoenix"},"Port-au-Prince":{exemplarCity:"Port-au-Prince"},Port_of_Spain:{exemplarCity:"Port of Spain"},Porto_Velho:{exemplarCity:"Porto Velho"},Puerto_Rico:{exemplarCity:"Puerto Rico"},Punta_Arenas:{exemplarCity:"Punta Arenas"},Rainy_River:{exemplarCity:"Rainy River"},Rankin_Inlet:{exemplarCity:"Rankin Inlet"},Recife:{exemplarCity:"Recife"},Regina:{exemplarCity:"Regina"},Resolute:{exemplarCity:"Resolute"},Rio_Branco:{exemplarCity:"Rio Branco"},Santarem:{exemplarCity:"Santarem"},Santiago:{exemplarCity:"Santiago"},Santo_Domingo:{exemplarCity:"Santo Domingo"},Sao_Paulo:{exemplarCity:"Sao Paulo"},Scoresbysund:{exemplarCity:"Ittoqqortoormiit"},Sitka:{exemplarCity:"Sitka"},St_Barthelemy:{exemplarCity:"St. Barthélemy"},St_Johns:{exemplarCity:"St. John’s"},St_Kitts:{exemplarCity:"St. Kitts"},St_Lucia:{exemplarCity:"St. Lucia"},St_Thomas:{exemplarCity:"St. Thomas"},St_Vincent:{exemplarCity:"St. Vincent"},Swift_Current:{exemplarCity:"Swift Current"},Tegucigalpa:{exemplarCity:"Tegucigalpa"},Thule:{exemplarCity:"Thule"},Thunder_Bay:{exemplarCity:"Thunder Bay"},Tijuana:{exemplarCity:"Tijuana"},Toronto:{exemplarCity:"Toronto"},Tortola:{exemplarCity:"Tortola"},Vancouver:{exemplarCity:"Vancouver"},Whitehorse:{exemplarCity:"Whitehorse"},Winnipeg:{exemplarCity:"Winnipeg"},Yakutat:{exemplarCity:"Yakutat"},Yellowknife:{exemplarCity:"Yellowknife"}},Atlantic:{Azores:{exemplarCity:"Azores"},Bermuda:{exemplarCity:"Bermuda"},Canary:{exemplarCity:"Canary"},Cape_Verde:{exemplarCity:"Cape Verde"},Faeroe:{exemplarCity:"Faroe"},Madeira:{exemplarCity:"Madeira"},Reykjavik:{exemplarCity:"Reykjavik"},South_Georgia:{exemplarCity:"South Georgia"},St_Helena:{exemplarCity:"St. Helena"},Stanley:{exemplarCity:"Stanley"}},Europe:{Amsterdam:{exemplarCity:"Amsterdam"},Andorra:{exemplarCity:"Andorra"},Astrakhan:{exemplarCity:"Astrakhan"},Athens:{exemplarCity:"Athens"},Belgrade:{exemplarCity:"Belgrade"},Berlin:{exemplarCity:"Berlin"},Bratislava:{exemplarCity:"Bratislava"},Brussels:{exemplarCity:"Brussels"},Bucharest:{exemplarCity:"Bucharest"},Budapest:{exemplarCity:"Budapest"},Busingen:{exemplarCity:"Busingen"},Chisinau:{exemplarCity:"Chisinau"},Copenhagen:{exemplarCity:"Copenhagen"},Dublin:{long:{daylight:"Irish Standard Time"},exemplarCity:"Dublin"},Gibraltar:{exemplarCity:"Gibraltar"},Guernsey:{exemplarCity:"Guernsey"},Helsinki:{exemplarCity:"Helsinki"},Isle_of_Man:{exemplarCity:"Isle of Man"},Istanbul:{exemplarCity:"Istanbul"},Jersey:{exemplarCity:"Jersey"},Kaliningrad:{exemplarCity:"Kaliningrad"},Kiev:{exemplarCity:"Kiev","exemplarCity-alt-formal":"Kyiv"},Kirov:{exemplarCity:"Kirov"},Lisbon:{exemplarCity:"Lisbon"},Ljubljana:{exemplarCity:"Ljubljana"},London:{long:{daylight:"British Summer Time"},exemplarCity:"London"},Luxembourg:{exemplarCity:"Luxembourg"},Madrid:{exemplarCity:"Madrid"},Malta:{exemplarCity:"Malta"},Mariehamn:{exemplarCity:"Mariehamn"},Minsk:{exemplarCity:"Minsk"},Monaco:{exemplarCity:"Monaco"},Moscow:{exemplarCity:"Moscow"},Oslo:{exemplarCity:"Oslo"},Paris:{exemplarCity:"Paris"},Podgorica:{exemplarCity:"Podgorica"},Prague:{exemplarCity:"Prague"},Riga:{exemplarCity:"Riga"},Rome:{exemplarCity:"Rome"},Samara:{exemplarCity:"Samara"},San_Marino:{exemplarCity:"San Marino"},Sarajevo:{exemplarCity:"Sarajevo"},Saratov:{exemplarCity:"Saratov"},Simferopol:{exemplarCity:"Simferopol"},Skopje:{exemplarCity:"Skopje"},Sofia:{exemplarCity:"Sofia"},Stockholm:{exemplarCity:"Stockholm"},Tallinn:{exemplarCity:"Tallinn"},Tirane:{exemplarCity:"Tirane"},Ulyanovsk:{exemplarCity:"Ulyanovsk"},Uzhgorod:{exemplarCity:"Uzhhorod"},Vaduz:{exemplarCity:"Vaduz"},Vatican:{exemplarCity:"Vatican"},Vienna:{exemplarCity:"Vienna"},Vilnius:{exemplarCity:"Vilnius"},Volgograd:{exemplarCity:"Volgograd"},Warsaw:{exemplarCity:"Warsaw"},Zagreb:{exemplarCity:"Zagreb"},Zaporozhye:{exemplarCity:"Zaporozhye"},Zurich:{exemplarCity:"Zurich"}},Africa:{Abidjan:{exemplarCity:"Abidjan"},Accra:{exemplarCity:"Accra"},Addis_Ababa:{exemplarCity:"Addis Ababa"},Algiers:{exemplarCity:"Algiers"},Asmera:{exemplarCity:"Asmara"},Bamako:{exemplarCity:"Bamako"},Bangui:{exemplarCity:"Bangui"},Banjul:{exemplarCity:"Banjul"},Bissau:{exemplarCity:"Bissau"},Blantyre:{exemplarCity:"Blantyre"},Brazzaville:{exemplarCity:"Brazzaville"},Bujumbura:{exemplarCity:"Bujumbura"},Cairo:{exemplarCity:"Cairo"},Casablanca:{exemplarCity:"Casablanca"},Ceuta:{exemplarCity:"Ceuta"},Conakry:{exemplarCity:"Conakry"},Dakar:{exemplarCity:"Dakar"},Dar_es_Salaam:{exemplarCity:"Dar es Salaam"},Djibouti:{exemplarCity:"Djibouti"},Douala:{exemplarCity:"Douala"},El_Aaiun:{exemplarCity:"El Aaiun"},Freetown:{exemplarCity:"Freetown"},Gaborone:{exemplarCity:"Gaborone"},Harare:{exemplarCity:"Harare"},Johannesburg:{exemplarCity:"Johannesburg"},Juba:{exemplarCity:"Juba"},Kampala:{exemplarCity:"Kampala"},Khartoum:{exemplarCity:"Khartoum"},Kigali:{exemplarCity:"Kigali"},Kinshasa:{exemplarCity:"Kinshasa"},Lagos:{exemplarCity:"Lagos"},Libreville:{exemplarCity:"Libreville"},Lome:{exemplarCity:"Lome"},Luanda:{exemplarCity:"Luanda"},Lubumbashi:{exemplarCity:"Lubumbashi"},Lusaka:{exemplarCity:"Lusaka"},Malabo:{exemplarCity:"Malabo"},Maputo:{exemplarCity:"Maputo"},Maseru:{exemplarCity:"Maseru"},Mbabane:{exemplarCity:"Mbabane"},Mogadishu:{exemplarCity:"Mogadishu"},Monrovia:{exemplarCity:"Monrovia"},Nairobi:{exemplarCity:"Nairobi"},Ndjamena:{exemplarCity:"Ndjamena"},Niamey:{exemplarCity:"Niamey"},Nouakchott:{exemplarCity:"Nouakchott"},Ouagadougou:{exemplarCity:"Ouagadougou"},"Porto-Novo":{exemplarCity:"Porto-Novo"},Sao_Tome:{exemplarCity:"São Tomé"},Tripoli:{exemplarCity:"Tripoli"},Tunis:{exemplarCity:"Tunis"},Windhoek:{exemplarCity:"Windhoek"}},Asia:{Aden:{exemplarCity:"Aden"},Almaty:{exemplarCity:"Almaty"},Amman:{exemplarCity:"Amman"},Anadyr:{exemplarCity:"Anadyr"},Aqtau:{exemplarCity:"Aqtau"},Aqtobe:{exemplarCity:"Aqtobe"},Ashgabat:{exemplarCity:"Ashgabat"},Atyrau:{exemplarCity:"Atyrau"},Baghdad:{exemplarCity:"Baghdad"},Bahrain:{exemplarCity:"Bahrain"},Baku:{exemplarCity:"Baku"},Bangkok:{exemplarCity:"Bangkok"},Barnaul:{exemplarCity:"Barnaul"},Beirut:{exemplarCity:"Beirut"},Bishkek:{exemplarCity:"Bishkek"},Brunei:{exemplarCity:"Brunei"},Calcutta:{exemplarCity:"Kolkata"},Chita:{exemplarCity:"Chita"},Choibalsan:{exemplarCity:"Choibalsan"},Colombo:{exemplarCity:"Colombo"},Damascus:{exemplarCity:"Damascus"},Dhaka:{exemplarCity:"Dhaka"},Dili:{exemplarCity:"Dili"},Dubai:{exemplarCity:"Dubai"},Dushanbe:{exemplarCity:"Dushanbe"},Famagusta:{exemplarCity:"Famagusta"},Gaza:{exemplarCity:"Gaza"},Hebron:{exemplarCity:"Hebron"},Hong_Kong:{exemplarCity:"Hong Kong"},Hovd:{exemplarCity:"Hovd"},Irkutsk:{exemplarCity:"Irkutsk"},Jakarta:{exemplarCity:"Jakarta"},Jayapura:{exemplarCity:"Jayapura"},Jerusalem:{exemplarCity:"Jerusalem"},Kabul:{exemplarCity:"Kabul"},Kamchatka:{exemplarCity:"Kamchatka"},Karachi:{exemplarCity:"Karachi"},Katmandu:{exemplarCity:"Kathmandu"},Khandyga:{exemplarCity:"Khandyga"},Krasnoyarsk:{exemplarCity:"Krasnoyarsk"},Kuala_Lumpur:{exemplarCity:"Kuala Lumpur"},Kuching:{exemplarCity:"Kuching"},Kuwait:{exemplarCity:"Kuwait"},Macau:{exemplarCity:"Macao"},Magadan:{exemplarCity:"Magadan"},Makassar:{exemplarCity:"Makassar"},Manila:{exemplarCity:"Manila"},Muscat:{exemplarCity:"Muscat"},Nicosia:{exemplarCity:"Nicosia"},Novokuznetsk:{exemplarCity:"Novokuznetsk"},Novosibirsk:{exemplarCity:"Novosibirsk"},Omsk:{exemplarCity:"Omsk"},Oral:{exemplarCity:"Oral"},Phnom_Penh:{exemplarCity:"Phnom Penh"},Pontianak:{exemplarCity:"Pontianak"},Pyongyang:{exemplarCity:"Pyongyang"},Qatar:{exemplarCity:"Qatar"},Qostanay:{exemplarCity:"Kostanay"},Qyzylorda:{exemplarCity:"Qyzylorda"},Rangoon:{exemplarCity:"Yangon"},Riyadh:{exemplarCity:"Riyadh"},Saigon:{exemplarCity:"Ho Chi Minh City"},Sakhalin:{exemplarCity:"Sakhalin"},Samarkand:{exemplarCity:"Samarkand"},Seoul:{exemplarCity:"Seoul"},Shanghai:{exemplarCity:"Shanghai"},Singapore:{exemplarCity:"Singapore"},Srednekolymsk:{exemplarCity:"Srednekolymsk"},Taipei:{exemplarCity:"Taipei"},Tashkent:{exemplarCity:"Tashkent"},Tbilisi:{exemplarCity:"Tbilisi"},Tehran:{exemplarCity:"Tehran"},Thimphu:{exemplarCity:"Thimphu"},Tokyo:{exemplarCity:"Tokyo"},Tomsk:{exemplarCity:"Tomsk"},Ulaanbaatar:{exemplarCity:"Ulaanbaatar"},Urumqi:{exemplarCity:"Urumqi"},"Ust-Nera":{exemplarCity:"Ust-Nera"},Vientiane:{exemplarCity:"Vientiane"},Vladivostok:{exemplarCity:"Vladivostok"},Yakutsk:{exemplarCity:"Yakutsk"},Yekaterinburg:{exemplarCity:"Yekaterinburg"},Yerevan:{exemplarCity:"Yerevan"}},Indian:{Antananarivo:{exemplarCity:"Antananarivo"},Chagos:{exemplarCity:"Chagos"},Christmas:{exemplarCity:"Christmas"},Cocos:{exemplarCity:"Cocos"},Comoro:{exemplarCity:"Comoro"},Kerguelen:{exemplarCity:"Kerguelen"},Mahe:{exemplarCity:"Mahe"},Maldives:{exemplarCity:"Maldives"},Mauritius:{exemplarCity:"Mauritius"},Mayotte:{exemplarCity:"Mayotte"},Reunion:{exemplarCity:"Réunion"}},Australia:{Adelaide:{exemplarCity:"Adelaide"},Brisbane:{exemplarCity:"Brisbane"},Broken_Hill:{exemplarCity:"Broken Hill"},Currie:{exemplarCity:"Currie"},Darwin:{exemplarCity:"Darwin"},Eucla:{exemplarCity:"Eucla"},Hobart:{exemplarCity:"Hobart"},Lindeman:{exemplarCity:"Lindeman"},Lord_Howe:{exemplarCity:"Lord Howe"},Melbourne:{exemplarCity:"Melbourne"},Perth:{exemplarCity:"Perth"},Sydney:{exemplarCity:"Sydney"}},Pacific:{Apia:{exemplarCity:"Apia"},Auckland:{exemplarCity:"Auckland"},Bougainville:{exemplarCity:"Bougainville"},Chatham:{exemplarCity:"Chatham"},Easter:{exemplarCity:"Easter"},Efate:{exemplarCity:"Efate"},Enderbury:{exemplarCity:"Enderbury"},Fakaofo:{exemplarCity:"Fakaofo"},Fiji:{exemplarCity:"Fiji"},Funafuti:{exemplarCity:"Funafuti"},Galapagos:{exemplarCity:"Galapagos"},Gambier:{exemplarCity:"Gambier"},Guadalcanal:{exemplarCity:"Guadalcanal"},Guam:{exemplarCity:"Guam"},Honolulu:{short:{generic:"HST",standard:"HST",daylight:"HDT"}},Johnston:{exemplarCity:"Johnston"},Kiritimati:{exemplarCity:"Kiritimati"},Kosrae:{exemplarCity:"Kosrae"},Kwajalein:{exemplarCity:"Kwajalein"},Majuro:{exemplarCity:"Majuro"},Marquesas:{exemplarCity:"Marquesas"},Midway:{exemplarCity:"Midway"},Nauru:{exemplarCity:"Nauru"},Niue:{exemplarCity:"Niue"},Norfolk:{exemplarCity:"Norfolk"},Noumea:{exemplarCity:"Noumea"},Pago_Pago:{exemplarCity:"Pago Pago"},Palau:{exemplarCity:"Palau"},Pitcairn:{exemplarCity:"Pitcairn"},Ponape:{exemplarCity:"Pohnpei"},Port_Moresby:{exemplarCity:"Port Moresby"},Rarotonga:{exemplarCity:"Rarotonga"},Saipan:{exemplarCity:"Saipan"},Tahiti:{exemplarCity:"Tahiti"},Tarawa:{exemplarCity:"Tarawa"},Tongatapu:{exemplarCity:"Tongatapu"},Truk:{exemplarCity:"Chuuk"},Wake:{exemplarCity:"Wake"},Wallis:{exemplarCity:"Wallis"}},Arctic:{Longyearbyen:{exemplarCity:"Longyearbyen"}},Antarctica:{Casey:{exemplarCity:"Casey"},Davis:{exemplarCity:"Davis"},DumontDUrville:{exemplarCity:"Dumont d’Urville"},Macquarie:{exemplarCity:"Macquarie"},Mawson:{exemplarCity:"Mawson"},McMurdo:{exemplarCity:"McMurdo"},Palmer:{exemplarCity:"Palmer"},Rothera:{exemplarCity:"Rothera"},Syowa:{exemplarCity:"Syowa"},Troll:{exemplarCity:"Troll"},Vostok:{exemplarCity:"Vostok"}},Etc:{UTC:{long:{standard:"Coordinated Universal Time"},short:{standard:"UTC"}},Unknown:{exemplarCity:"Unknown City"}}},metazone:{Acre:{long:{generic:"Acre Time",standard:"Acre Standard Time",daylight:"Acre Summer Time"}},Afghanistan:{long:{standard:"Afghanistan Time"}},Africa_Central:{long:{standard:"Central Africa Time"}},Africa_Eastern:{long:{standard:"East Africa Time"}},Africa_Southern:{long:{standard:"South Africa Standard Time"}},Africa_Western:{long:{generic:"West Africa Time",standard:"West Africa Standard Time",daylight:"West Africa Summer Time"}},Alaska:{long:{generic:"Alaska Time",standard:"Alaska Standard Time",daylight:"Alaska Daylight Time"},short:{generic:"AKT",standard:"AKST",daylight:"AKDT"}},Almaty:{long:{generic:"Almaty Time",standard:"Almaty Standard Time",daylight:"Almaty Summer Time"}},Amazon:{long:{generic:"Amazon Time",standard:"Amazon Standard Time",daylight:"Amazon Summer Time"}},America_Central:{long:{generic:"Central Time",standard:"Central Standard Time",daylight:"Central Daylight Time"},short:{generic:"CT",standard:"CST",daylight:"CDT"}},America_Eastern:{long:{generic:"Eastern Time",standard:"Eastern Standard Time",daylight:"Eastern Daylight Time"},short:{generic:"ET",standard:"EST",daylight:"EDT"}},America_Mountain:{long:{generic:"Mountain Time",standard:"Mountain Standard Time",daylight:"Mountain Daylight Time"},short:{generic:"MT",standard:"MST",daylight:"MDT"}},America_Pacific:{long:{generic:"Pacific Time",standard:"Pacific Standard Time",daylight:"Pacific Daylight Time"},short:{generic:"PT",standard:"PST",daylight:"PDT"}},Anadyr:{long:{generic:"Anadyr Time",standard:"Anadyr Standard Time",daylight:"Anadyr Summer Time"}},Apia:{long:{generic:"Apia Time",standard:"Apia Standard Time",daylight:"Apia Daylight Time"}},Aqtau:{long:{generic:"Aqtau Time",standard:"Aqtau Standard Time",daylight:"Aqtau Summer Time"}},Aqtobe:{long:{generic:"Aqtobe Time",standard:"Aqtobe Standard Time",daylight:"Aqtobe Summer Time"}},Arabian:{long:{generic:"Arabian Time",standard:"Arabian Standard Time",daylight:"Arabian Daylight Time"}},Argentina:{long:{generic:"Argentina Time",standard:"Argentina Standard Time",daylight:"Argentina Summer Time"}},Argentina_Western:{long:{generic:"Western Argentina Time",standard:"Western Argentina Standard Time",daylight:"Western Argentina Summer Time"}},Armenia:{long:{generic:"Armenia Time",standard:"Armenia Standard Time",daylight:"Armenia Summer Time"}},Atlantic:{long:{generic:"Atlantic Time",standard:"Atlantic Standard Time",daylight:"Atlantic Daylight Time"},short:{generic:"AT",standard:"AST",daylight:"ADT"}},Australia_Central:{long:{generic:"Central Australia Time",standard:"Australian Central Standard Time",daylight:"Australian Central Daylight Time"}},Australia_CentralWestern:{long:{generic:"Australian Central Western Time",standard:"Australian Central Western Standard Time",daylight:"Australian Central Western Daylight Time"}},Australia_Eastern:{long:{generic:"Eastern Australia Time",standard:"Australian Eastern Standard Time",daylight:"Australian Eastern Daylight Time"}},Australia_Western:{long:{generic:"Western Australia Time",standard:"Australian Western Standard Time",daylight:"Australian Western Daylight Time"}},Azerbaijan:{long:{generic:"Azerbaijan Time",standard:"Azerbaijan Standard Time",daylight:"Azerbaijan Summer Time"}},Azores:{long:{generic:"Azores Time",standard:"Azores Standard Time",daylight:"Azores Summer Time"}},Bangladesh:{long:{generic:"Bangladesh Time",standard:"Bangladesh Standard Time",daylight:"Bangladesh Summer Time"}},Bhutan:{long:{standard:"Bhutan Time"}},Bolivia:{long:{standard:"Bolivia Time"}},Brasilia:{long:{generic:"Brasilia Time",standard:"Brasilia Standard Time",daylight:"Brasilia Summer Time"}},Brunei:{long:{standard:"Brunei Darussalam Time"}},Cape_Verde:{long:{generic:"Cape Verde Time",standard:"Cape Verde Standard Time",daylight:"Cape Verde Summer Time"}},Casey:{long:{standard:"Casey Time"}},Chamorro:{long:{standard:"Chamorro Standard Time"}},Chatham:{long:{generic:"Chatham Time",standard:"Chatham Standard Time",daylight:"Chatham Daylight Time"}},Chile:{long:{generic:"Chile Time",standard:"Chile Standard Time",daylight:"Chile Summer Time"}},China:{long:{generic:"China Time",standard:"China Standard Time",daylight:"China Daylight Time"}},Choibalsan:{long:{generic:"Choibalsan Time",standard:"Choibalsan Standard Time",daylight:"Choibalsan Summer Time"}},Christmas:{long:{standard:"Christmas Island Time"}},Cocos:{long:{standard:"Cocos Islands Time"}},Colombia:{long:{generic:"Colombia Time",standard:"Colombia Standard Time",daylight:"Colombia Summer Time"}},Cook:{long:{generic:"Cook Islands Time",standard:"Cook Islands Standard Time",daylight:"Cook Islands Half Summer Time"}},Cuba:{long:{generic:"Cuba Time",standard:"Cuba Standard Time",daylight:"Cuba Daylight Time"}},Davis:{long:{standard:"Davis Time"}},DumontDUrville:{long:{standard:"Dumont-d’Urville Time"}},East_Timor:{long:{standard:"East Timor Time"}},Easter:{long:{generic:"Easter Island Time",standard:"Easter Island Standard Time",daylight:"Easter Island Summer Time"}},Ecuador:{long:{standard:"Ecuador Time"}},Europe_Central:{long:{generic:"Central European Time",standard:"Central European Standard Time",daylight:"Central European Summer Time"}},Europe_Eastern:{long:{generic:"Eastern European Time",standard:"Eastern European Standard Time",daylight:"Eastern European Summer Time"}},Europe_Further_Eastern:{long:{standard:"Further-eastern European Time"}},Europe_Western:{long:{generic:"Western European Time",standard:"Western European Standard Time",daylight:"Western European Summer Time"}},Falkland:{long:{generic:"Falkland Islands Time",standard:"Falkland Islands Standard Time",daylight:"Falkland Islands Summer Time"}},Fiji:{long:{generic:"Fiji Time",standard:"Fiji Standard Time",daylight:"Fiji Summer Time"}},French_Guiana:{long:{standard:"French Guiana Time"}},French_Southern:{long:{standard:"French Southern & Antarctic Time"}},Galapagos:{long:{standard:"Galapagos Time"}},Gambier:{long:{standard:"Gambier Time"}},Georgia:{long:{generic:"Georgia Time",standard:"Georgia Standard Time",daylight:"Georgia Summer Time"}},Gilbert_Islands:{long:{standard:"Gilbert Islands Time"}},GMT:{long:{standard:"Greenwich Mean Time"},short:{standard:"GMT"}},Greenland_Eastern:{long:{generic:"East Greenland Time",standard:"East Greenland Standard Time",daylight:"East Greenland Summer Time"}},Greenland_Western:{long:{generic:"West Greenland Time",standard:"West Greenland Standard Time",daylight:"West Greenland Summer Time"}},Guam:{long:{standard:"Guam Standard Time"}},Gulf:{long:{standard:"Gulf Standard Time"}},Guyana:{long:{standard:"Guyana Time"}},Hawaii_Aleutian:{long:{generic:"Hawaii-Aleutian Time",standard:"Hawaii-Aleutian Standard Time",daylight:"Hawaii-Aleutian Daylight Time"},short:{generic:"HAT",standard:"HAST",daylight:"HADT"}},Hong_Kong:{long:{generic:"Hong Kong Time",standard:"Hong Kong Standard Time",daylight:"Hong Kong Summer Time"}},Hovd:{long:{generic:"Hovd Time",standard:"Hovd Standard Time",daylight:"Hovd Summer Time"}},India:{long:{standard:"India Standard Time"}},Indian_Ocean:{long:{standard:"Indian Ocean Time"}},Indochina:{long:{standard:"Indochina Time"}},Indonesia_Central:{long:{standard:"Central Indonesia Time"}},Indonesia_Eastern:{long:{standard:"Eastern Indonesia Time"}},Indonesia_Western:{long:{standard:"Western Indonesia Time"}},Iran:{long:{generic:"Iran Time",standard:"Iran Standard Time",daylight:"Iran Daylight Time"}},Irkutsk:{long:{generic:"Irkutsk Time",standard:"Irkutsk Standard Time",daylight:"Irkutsk Summer Time"}},Israel:{long:{generic:"Israel Time",standard:"Israel Standard Time",daylight:"Israel Daylight Time"}},Japan:{long:{generic:"Japan Time",standard:"Japan Standard Time",daylight:"Japan Daylight Time"}},Kamchatka:{long:{generic:"Petropavlovsk-Kamchatski Time",standard:"Petropavlovsk-Kamchatski Standard Time",daylight:"Petropavlovsk-Kamchatski Summer Time"}},Kazakhstan_Eastern:{long:{standard:"East Kazakhstan Time"}},Kazakhstan_Western:{long:{standard:"West Kazakhstan Time"}},Korea:{long:{generic:"Korean Time",standard:"Korean Standard Time",daylight:"Korean Daylight Time"}},Kosrae:{long:{standard:"Kosrae Time"}},Krasnoyarsk:{long:{generic:"Krasnoyarsk Time",standard:"Krasnoyarsk Standard Time",daylight:"Krasnoyarsk Summer Time"}},Kyrgystan:{long:{standard:"Kyrgyzstan Time"}},Lanka:{long:{standard:"Lanka Time"}},Line_Islands:{long:{standard:"Line Islands Time"}},Lord_Howe:{long:{generic:"Lord Howe Time",standard:"Lord Howe Standard Time",daylight:"Lord Howe Daylight Time"}},Macau:{long:{generic:"Macao Time",standard:"Macao Standard Time",daylight:"Macao Summer Time"}},Macquarie:{long:{standard:"Macquarie Island Time"}},Magadan:{long:{generic:"Magadan Time",standard:"Magadan Standard Time",daylight:"Magadan Summer Time"}},Malaysia:{long:{standard:"Malaysia Time"}},Maldives:{long:{standard:"Maldives Time"}},Marquesas:{long:{standard:"Marquesas Time"}},Marshall_Islands:{long:{standard:"Marshall Islands Time"}},Mauritius:{long:{generic:"Mauritius Time",standard:"Mauritius Standard Time",daylight:"Mauritius Summer Time"}},Mawson:{long:{standard:"Mawson Time"}},Mexico_Northwest:{long:{generic:"Northwest Mexico Time",standard:"Northwest Mexico Standard Time",daylight:"Northwest Mexico Daylight Time"}},Mexico_Pacific:{long:{generic:"Mexican Pacific Time",standard:"Mexican Pacific Standard Time",daylight:"Mexican Pacific Daylight Time"}},Mongolia:{long:{generic:"Ulaanbaatar Time",standard:"Ulaanbaatar Standard Time",daylight:"Ulaanbaatar Summer Time"}},Moscow:{long:{generic:"Moscow Time",standard:"Moscow Standard Time",daylight:"Moscow Summer Time"}},Myanmar:{long:{standard:"Myanmar Time"}},Nauru:{long:{standard:"Nauru Time"}},Nepal:{long:{standard:"Nepal Time"}},New_Caledonia:{long:{generic:"New Caledonia Time",standard:"New Caledonia Standard Time",daylight:"New Caledonia Summer Time"}},New_Zealand:{long:{generic:"New Zealand Time",standard:"New Zealand Standard Time",daylight:"New Zealand Daylight Time"}},Newfoundland:{long:{generic:"Newfoundland Time",standard:"Newfoundland Standard Time",daylight:"Newfoundland Daylight Time"}},Niue:{long:{standard:"Niue Time"}},Norfolk:{long:{standard:"Norfolk Island Time"}},Noronha:{long:{generic:"Fernando de Noronha Time",standard:"Fernando de Noronha Standard Time",daylight:"Fernando de Noronha Summer Time"}},North_Mariana:{long:{standard:"North Mariana Islands Time"}},Novosibirsk:{long:{generic:"Novosibirsk Time",standard:"Novosibirsk Standard Time",daylight:"Novosibirsk Summer Time"}},Omsk:{long:{generic:"Omsk Time",standard:"Omsk Standard Time",daylight:"Omsk Summer Time"}},Pakistan:{long:{generic:"Pakistan Time",standard:"Pakistan Standard Time",daylight:"Pakistan Summer Time"}},Palau:{long:{standard:"Palau Time"}},Papua_New_Guinea:{long:{standard:"Papua New Guinea Time"}},Paraguay:{long:{generic:"Paraguay Time",standard:"Paraguay Standard Time",daylight:"Paraguay Summer Time"}},Peru:{long:{generic:"Peru Time",standard:"Peru Standard Time",daylight:"Peru Summer Time"}},Philippines:{long:{generic:"Philippine Time",standard:"Philippine Standard Time",daylight:"Philippine Summer Time"}},Phoenix_Islands:{long:{standard:"Phoenix Islands Time"}},Pierre_Miquelon:{long:{generic:"St. Pierre & Miquelon Time",standard:"St. Pierre & Miquelon Standard Time",daylight:"St. Pierre & Miquelon Daylight Time"}},Pitcairn:{long:{standard:"Pitcairn Time"}},Ponape:{long:{standard:"Ponape Time"}},Pyongyang:{long:{standard:"Pyongyang Time"}},Qyzylorda:{long:{generic:"Qyzylorda Time",standard:"Qyzylorda Standard Time",daylight:"Qyzylorda Summer Time"}},Reunion:{long:{standard:"Réunion Time"}},Rothera:{long:{standard:"Rothera Time"}},Sakhalin:{long:{generic:"Sakhalin Time",standard:"Sakhalin Standard Time",daylight:"Sakhalin Summer Time"}},Samara:{long:{generic:"Samara Time",standard:"Samara Standard Time",daylight:"Samara Summer Time"}},Samoa:{long:{generic:"Samoa Time",standard:"Samoa Standard Time",daylight:"Samoa Daylight Time"}},Seychelles:{long:{standard:"Seychelles Time"}},Singapore:{long:{standard:"Singapore Standard Time"}},Solomon:{long:{standard:"Solomon Islands Time"}},South_Georgia:{long:{standard:"South Georgia Time"}},Suriname:{long:{standard:"Suriname Time"}},Syowa:{long:{standard:"Syowa Time"}},Tahiti:{long:{standard:"Tahiti Time"}},Taipei:{long:{generic:"Taipei Time",standard:"Taipei Standard Time",daylight:"Taipei Daylight Time"}},Tajikistan:{long:{standard:"Tajikistan Time"}},Tokelau:{long:{standard:"Tokelau Time"}},Tonga:{long:{generic:"Tonga Time",standard:"Tonga Standard Time",daylight:"Tonga Summer Time"}},Truk:{long:{standard:"Chuuk Time"}},Turkmenistan:{long:{generic:"Turkmenistan Time",standard:"Turkmenistan Standard Time",daylight:"Turkmenistan Summer Time"}},Tuvalu:{long:{standard:"Tuvalu Time"}},Uruguay:{long:{generic:"Uruguay Time",standard:"Uruguay Standard Time",daylight:"Uruguay Summer Time"}},Uzbekistan:{long:{generic:"Uzbekistan Time",standard:"Uzbekistan Standard Time",daylight:"Uzbekistan Summer Time"}},Vanuatu:{long:{generic:"Vanuatu Time",standard:"Vanuatu Standard Time",daylight:"Vanuatu Summer Time"}},Venezuela:{long:{standard:"Venezuela Time"}},Vladivostok:{long:{generic:"Vladivostok Time",standard:"Vladivostok Standard Time",daylight:"Vladivostok Summer Time"}},Volgograd:{long:{generic:"Volgograd Time",standard:"Volgograd Standard Time",daylight:"Volgograd Summer Time"}},Vostok:{long:{standard:"Vostok Time"}},Wake:{long:{standard:"Wake Island Time"}},Wallis:{long:{standard:"Wallis & Futuna Time"}},Yakutsk:{long:{generic:"Yakutsk Time",standard:"Yakutsk Standard Time",daylight:"Yakutsk Summer Time"}},Yekaterinburg:{long:{generic:"Yekaterinburg Time",standard:"Yekaterinburg Standard Time",daylight:"Yekaterinburg Summer Time"}}}}}}}},p={availableLocales:["en"]};function m(e){switch(e){case"availableLocales.json":return p;case"supplemental/likelySubtags.json":return l;case"supplemental/metaZones.json":return c;case"supplemental/weekData.json":return d;case"main/en/ca-gregorian.json":return f;case"main/en/timeZoneNames.json":return h;default:throw new Error("cldrData: unknown path ".concat(e))}}
|
|
144
|
-
/*
|
|
145
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
146
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
147
|
-
*/var _=function(e,t){return{key:e,value:t,toString:function(){return e+"->"+t}}},y=function(e,t){return t.key.length-e.key.length},g=function(){function e(e){this._valueTextMap=e;var t={},n=[];Object.keys(e).forEach((function(r){var i={},a=[];Object.keys(e[r]).forEach((function(t){var n=e[r][t];void 0===i[n]&&(i[n]=_(n,parseInt(t)),a.push(i[n]))})),a.sort(y),t[r]=a,n=n.concat(a),t.null=n})),n.sort(y),this._parsable=t}var t=e.prototype;return t.getText=function(e,t){var n=this._valueTextMap[t];return null!=n?n[e]:null},t.getTextIterator=function(e){var t=this._parsable[e];return null!=t?t[Symbol.iterator]():null},e}();function v(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==at||"undefined"!=typeof self&&self;var A={},E={get exports(){return A},set exports(e){A=e}},b={};!function(e){
|
|
148
|
-
/*!
|
|
149
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
150
|
-
* http://git.io/h4lmVg
|
|
151
|
-
*/
|
|
152
|
-
!function(t,n){e.exports=n()}(0,(function(){var e,t=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},n=function(e,n){if(t(e)&&(e=e.join("/")),"string"!=typeof e)throw new Error('invalid path "'+e+'"');return(e=(e=e.replace(/^\//,"").replace(/^cldr\//,"")).replace(/{[a-zA-Z]+}/g,(function(e){return e=e.replace(/^{([^}]*)}$/,"$1"),n[e]}))).split("/")},r=function(e,t){var n,r;if(e.some)return e.some(t);for(n=0,r=e.length;n<r;n++)if(t(e[n],n,e))return!0;return!1},i=function(e,t,n,i){var a,o=n[0],s=n[1],u=e.localeSep,l=n[2],c=n.slice(3,4);return i=i||{},"und"!==o&&"Zzzz"!==s&&"ZZ"!==l?[o,s,l].concat(c):void 0!==t.get("supplemental/likelySubtags")?r([[o,s,l],[o,l],[o,s],[o],["und",s]],(function(e){return a=!/\b(Zzzz|ZZ)\b/.test(e.join(u))&&t.get(["supplemental/likelySubtags",e.join(u)])}))?(a=a.split(u),["und"!==o?o:a[0],"Zzzz"!==s?s:a[1],"ZZ"!==l?l:a[2]].concat(c)):i.force?t.get("supplemental/likelySubtags/und").split(u):void 0:void 0},a=function(e,t,n){var a,o,s=n[0],u=n[1],l=n[2],c=n[3];return o=r([[[s,"Zzzz","ZZ"],[s]],[[s,"Zzzz",l],[s,l]],[[s,u,"ZZ"],[s,u]]],(function(r){var o=i(e,t,r[0]);return a=r[1],o&&o[0]===n[0]&&o[1]===n[1]&&o[2]===n[2]})),o?(c&&a.push(c),a):n},o=function(e){var t,n=[];return(t=(e=e.replace(/_/,"-")).split("-u-"))[1]&&(t[1]=t[1].split("-t-"),e=t[0]+(t[1][1]?"-t-"+t[1][1]:""),n[4]=t[1][0]),null===(t=e.split("-t-")[0].match(/^(([a-z]{2,3})(-([A-Z][a-z]{3}))?(-([A-Z]{2}|[0-9]{3}))?)((-([a-zA-Z0-9]{5,8}|[0-9][a-zA-Z0-9]{3}))*)$|^(root)$/))?["und","Zzzz","ZZ"]:(n[0]=t[10]||t[2]||"und",n[1]=t[4]||"Zzzz",n[2]=t[6]||"ZZ",t[7]&&t[7].length&&(n[3]=t[7].slice(1)),n)},s=function(e,t){var n,r;if(e.forEach)return e.forEach(t);for(n=0,r=e.length;n<r;n++)t(e[n],n,e)},u=function(e,t,n){var r=e._availableBundleMap,u=e._availableBundleMapQueue;return u.length&&(s(u,(function(n,s){var l,c,d,f;if(f=o(n),void 0===(c=i(e,t,f)))throw u.splice(s,1),new Error("Could not find likelySubtags for "+n);d=(d=a(e,t,c)).join(e.localeSep),(l=r[d])&&l.length<n.length||(r[d]=n)})),e._availableBundleMapQueue=[]),r[n]||null},l=function(e){var t,n=[];if(Object.keys)return Object.keys(e);for(t in e)n.push(t);return n},c=function(e,t){var n,r;return r=e+(t&&JSON?": "+JSON.stringify(t):""),(n=new Error(r)).code=e,s(l(t),(function(e){n[e]=t[e]})),n},d=function(e,t,n){if(!t)throw c(e,n)},f=function(e,t){d("E_MISSING_PARAMETER",void 0!==e,{name:t})},h=function(e,t,n,r){d("E_INVALID_PAR_TYPE",n,{expected:r,name:t,value:e})},p=function(e,n){h(e,n,"string"==typeof e||t(e),"String or Array")},m=function(e){return null!==e&&""+e=="[object Object]"},_=function(e,t){h(e,t,void 0===e||m(e),"Plain Object")},y=function(e,t){h(e,t,"string"==typeof e,"a string")},g=function(e,t){var n,r=e,i=t.length;for(n=0;n<i-1;n++)if(!(r=r[t[n]]))return;return r[t[n]]},v=function(e,t){var n,r=e._availableBundleMapQueue,i=g(t,["main"]);if(i)for(n in i)i.hasOwnProperty(n)&&"root"!==n&&-1===r.indexOf(n)&&r.push(n)},A=function(e){return t(e)?e:[e]},E=(e=function(){var n={},r=[].slice.call(arguments,0);return s(r,(function(r){var i;for(i in r)i in n&&"object"==typeof n[i]&&!t(n[i])?n[i]=e(n[i],r[i]):n[i]=r[i]})),n},e),b=function(e,t,n){var r,i,a;for(f(n[0],"json"),r=0;r<n.length;r++)for(a=A(n[r]),i=0;i<a.length;i++)_(a[i],"json"),t=E(t,a[i]),v(e,a[i]);return t},S=function(e,t,r){var i=n(t,r);return g(e._resolved,i)},M=function(e){this.init(e)};return M._alwaysArray=A,M._coreLoad=b,M._createError=c,M._itemGetResolved=S,M._jsonMerge=E,M._pathNormalize=n,M._resourceGet=g,M._validatePresence=f,M._validateType=h,M._validateTypePath=p,M._validateTypePlainObject=_,M._availableBundleMap={},M._availableBundleMapQueue=[],M._resolved={},M.localeSep="-",M.load=function(){M._resolved=b(M,M._resolved,arguments)},M.prototype.init=function(e){var t,n,r,s,l,c,d,h,p,m=M.localeSep,_="";f(e,"locale"),y(e,"locale"),5===(c=o(e)).length&&(_=m+"u"+m+(h=c.pop()),c[3]||c.pop()),p=c[3],n=(r=i(M,this,c,{force:!0})||c)[0],l=r[1],d=r[2],s=a(M,this,r).join(m),this.attributes=t={bundle:u(M,this,s),minLanguageId:s+_,maxLanguageId:r.join(m)+_,language:n,script:l,territory:d,region:d,variant:p},h&&("-"+h).replace(/-[a-z]{3,8}|(-[a-z]{2})-([a-z]{3,8})/g,(function(e,n,r){n?t["u"+n]=r:t["u"+e]=!0})),this.locale=e},M.prototype.get=function(e){return f(e,"path"),p(e,"path"),S(M,e,this.attributes)},M.prototype.main=function(e){return f(e,"path"),p(e,"path"),d("E_MISSING_BUNDLE",null!==this.attributes.bundle,{locale:this.locale}),e=A(e),this.get(["main/{bundle}"].concat(e))},M}))}({get exports(){return b},set exports(e){b=e}});var S={};!function(e){
|
|
153
|
-
/*!
|
|
154
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
155
|
-
* http://git.io/h4lmVg
|
|
156
|
-
*/
|
|
157
|
-
!function(t){e.exports=t(b)}((function(e){var t,n=e._pathNormalize,r=e._validatePresence,i=e._validateType;
|
|
158
|
-
/*!
|
|
159
|
-
* EventEmitter v4.2.7 - git.io/ee
|
|
160
|
-
* Oliver Caldwell
|
|
161
|
-
* MIT license
|
|
162
|
-
* @preserve
|
|
163
|
-
*/t=function(){function e(){}var t=e.prototype;function n(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function r(e){return function(){return this[e].apply(this,arguments)}}return t.getListeners=function(e){var t,n,r=this._getEvents();if(e instanceof RegExp)for(n in t={},r)r.hasOwnProperty(n)&&e.test(n)&&(t[n]=r[n]);else t=r[e]||(r[e]=[]);return t},t.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},t.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&((t={})[e]=n),t||n},t.addListener=function(e,t){var r,i=this.getListenersAsObject(e),a="object"==typeof t;for(r in i)i.hasOwnProperty(r)&&-1===n(i[r],t)&&i[r].push(a?t:{listener:t,once:!1});return this},t.on=r("addListener"),t.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},t.once=r("addOnceListener"),t.defineEvent=function(e){return this.getListeners(e),this},t.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},t.removeListener=function(e,t){var r,i,a=this.getListenersAsObject(e);for(i in a)a.hasOwnProperty(i)&&-1!==(r=n(a[i],t))&&a[i].splice(r,1);return this},t.off=r("removeListener"),t.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},t.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},t.manipulateListeners=function(e,t,n){var r,i,a=e?this.removeListener:this.addListener,o=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(r=n.length;r--;)a.call(this,t,n[r]);else for(r in t)t.hasOwnProperty(r)&&(i=t[r])&&("function"==typeof i?a.call(this,r,i):o.call(this,r,i));return this},t.removeEvent=function(e){var t,n=typeof e,r=this._getEvents();if("string"===n)delete r[e];else if(e instanceof RegExp)for(t in r)r.hasOwnProperty(t)&&e.test(t)&&delete r[t];else delete this._events;return this},t.removeAllListeners=r("removeEvent"),t.emitEvent=function(e,t){var n,r,i,a=this.getListenersAsObject(e);for(i in a)if(a.hasOwnProperty(i))for(r=a[i].length;r--;)!0===(n=a[i][r]).once&&this.removeListener(e,n.listener),n.listener.apply(this,t||[])===this._getOnceReturnValue()&&this.removeListener(e,n.listener);return this},t.trigger=r("emitEvent"),t.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},t.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},t._getOnceReturnValue=function(){return!this.hasOwnProperty("_onceReturnValue")||this._onceReturnValue},t._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return originalGlobalValue,e},e}();var a,o,s=function(e,t){i(e,t,void 0===e||"function"==typeof e,"Function")},u=new t;function l(e,t){i(e,t,"string"==typeof e||e instanceof RegExp,"String or RegExp")}function c(e,t){return function(n,i){return r(n,"event"),l(n,"event"),r(i,"listener"),s(i,"listener"),t[e].apply(t,arguments)}}function d(e){return c("off",e)}function f(e){return c("on",e)}function h(e){return c("once",e)}function p(){a=e.prototype.get,e.prototype.get=function(e){var t=a.apply(this,arguments);return e=n(e,this.attributes).join("/"),u.trigger("get",[e,t]),this.ee.trigger("get",[e,t]),t}}return e.off=d(u),e.on=f(u),e.once=h(u),o=e.prototype.init,e.prototype.init=function(){var e;this.ee=e=new t,this.off=d(e),this.on=f(e),this.once=h(e),o.apply(this,arguments)},e._eventInit=p,p(),e}))}({get exports(){return S},set exports(e){S=e}});var M={};!function(e){
|
|
164
|
-
/*!
|
|
165
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
166
|
-
* http://git.io/h4lmVg
|
|
167
|
-
*/
|
|
168
|
-
!function(t){e.exports=t(b)}((function(e){var t=e._alwaysArray,n=function(e){var n,r;return(r=(n=function(n){return function(r){return r=t(r),e.get([n].concat(r))}})("supplemental")).weekData=n("supplemental/weekData"),r.weekData.firstDay=function(){return e.get("supplemental/weekData/firstDay/{territory}")||e.get("supplemental/weekData/firstDay/001")},r.weekData.minDays=function(){var t=e.get("supplemental/weekData/minDays/{territory}")||e.get("supplemental/weekData/minDays/001");return parseInt(t,10)},r.timeData=n("supplemental/timeData"),r.timeData.allowed=function(){return e.get("supplemental/timeData/{territory}/_allowed")||e.get("supplemental/timeData/001/_allowed")},r.timeData.preferred=function(){return e.get("supplemental/timeData/{territory}/_preferred")||e.get("supplemental/timeData/001/_preferred")},r},r=e.prototype.init;return e.prototype.init=function(){r.apply(this,arguments),this.supplemental=n(this)},e}))}({get exports(){return M},set exports(e){M=e}});var T={};(function(e){
|
|
169
|
-
/*!
|
|
170
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
171
|
-
* http://git.io/h4lmVg
|
|
172
|
-
*/
|
|
173
|
-
!function(t){e.exports=t(b)}((function(e){var t,n=e._coreLoad,r=e._jsonMerge,i=e._pathNormalize,a=e._resourceGet,o=e._validatePresence,s=e._validateTypePath,u=function(e,t){var n,r;if("root"!==t)return n=i(["supplemental/parentLocales/parentLocale",t]),(r=a(e._resolved,n)||a(e._raw,n))?r:(r=t.substr(0,t.lastIndexOf(e.localeSep)))||"root"},l=function(e,t,n){var r,i=e,a=t.length;for(r=0;r<a-1;r++)i[t[r]]||(i[t[r]]={}),i=i[t[r]];i[t[r]]=n},c=(t=function(e,n,o,s,c){var d,f,h;if(void 0!==n&&n!==c)return d=i(o,s),void 0!==(h=a(e._resolved,d))&&"object"!=typeof h||(void 0===(h=a(e._raw,d))&&(f=u(e,n),h=t(e,f,o,r(s,{bundle:f}),n)),void 0!==h&&l(e._resolved,d,h)),h},t);return e._raw={},e.load=function(){e._raw=n(e,e._raw,arguments)},e.prototype.get=function(t){return o(t,"path"),s(t,"path"),c(e,this.attributes&&this.attributes.bundle||"",t,this.attributes)},e._eventInit&&e._eventInit(),e}))})({get exports(){return T},set exports(e){T=e}}),function(e){
|
|
174
|
-
/*!
|
|
175
|
-
* CLDR JavaScript Library v0.5.4 2020-10-22T15:56Z MIT license © Rafael Xavier
|
|
176
|
-
* http://git.io/h4lmVg
|
|
177
|
-
*/
|
|
178
|
-
e.exports=b}(E);var w=v(A),O=new Set,N=function(e){O.has(e)||(w.load(m(e)),O.add(e))},C={},L=function(e){return null==C[e]&&(C[e]=new w(e)),C[e]},D={},$=function(e){if(null==D[e.locale]){var t={};e.get("supplemental/metaZones/metazones").forEach((function(e){e.mapZone&&(t[e.mapZone._other]||(t[e.mapZone._other]={}),t[e.mapZone._other][e.mapZone._territory]=e.mapZone._type)})),D[e.locale]=t}return D[e.locale]},I=function(){function e(){this._cache={},N("supplemental/likelySubtags.json")}var n=e.prototype;return n.getAvailableLocales=function(){return m("availableLocales.json").availableLocales},n.getText=function(e,t,n,r){var i=this._findStore(e,r);return i instanceof g?i.getText(t,n):null},n.getTextIterator=function(e,t,n){var r=this._findStore(e,n);return r instanceof g?r.getTextIterator(t):null},n._findStore=function(e,t){var n=_(e,t),r=this._cache[n];return void 0===r&&(r=this._createStore(e,t),this._cache[n]=r),r},n._createStore=function(e,n){N("main/"+n.localeString()+"/ca-gregorian.json");var r=L(n.localeString());if(e===t.ChronoField.MONTH_OF_YEAR){var i=r.main("dates/calendars/gregorian/months/format"),a={},o={};return o[1]=i.wide[1],o[2]=i.wide[2],o[3]=i.wide[3],o[4]=i.wide[4],o[5]=i.wide[5],o[6]=i.wide[6],o[7]=i.wide[7],o[8]=i.wide[8],o[9]=i.wide[9],o[10]=i.wide[10],o[11]=i.wide[11],o[12]=i.wide[12],a[t.TextStyle.FULL]=o,(o={})[1]=i.narrow[1],o[2]=i.narrow[2],o[3]=i.narrow[3],o[4]=i.narrow[4],o[5]=i.narrow[5],o[6]=i.narrow[6],o[7]=i.narrow[7],o[8]=i.narrow[8],o[9]=i.narrow[9],o[10]=i.narrow[10],o[11]=i.narrow[11],o[12]=i.narrow[12],a[t.TextStyle.NARROW]=o,(o={})[1]=i.abbreviated[1],o[2]=i.abbreviated[2],o[3]=i.abbreviated[3],o[4]=i.abbreviated[4],o[5]=i.abbreviated[5],o[6]=i.abbreviated[6],o[7]=i.abbreviated[7],o[8]=i.abbreviated[8],o[9]=i.abbreviated[9],o[10]=i.abbreviated[10],o[11]=i.abbreviated[11],o[12]=i.abbreviated[12],a[t.TextStyle.SHORT]=o,this._createLocaleStore(a)}if(e===t.ChronoField.DAY_OF_WEEK){var s=r.main("dates/calendars/gregorian/days/format"),u={},l={};return l[1]=s.wide.mon,l[2]=s.wide.tue,l[3]=s.wide.wed,l[4]=s.wide.thu,l[5]=s.wide.fri,l[6]=s.wide.sat,l[7]=s.wide.sun,u[t.TextStyle.FULL]=l,(l={})[1]=s.narrow.mon,l[2]=s.narrow.tue,l[3]=s.narrow.wed,l[4]=s.narrow.thu,l[5]=s.narrow.fri,l[6]=s.narrow.sat,l[7]=s.narrow.sun,u[t.TextStyle.NARROW]=l,(l={})[1]=s.abbreviated.mon,l[2]=s.abbreviated.tue,l[3]=s.abbreviated.wed,l[4]=s.abbreviated.thu,l[5]=s.abbreviated.fri,l[6]=s.abbreviated.sat,l[7]=s.abbreviated.sun,u[t.TextStyle.SHORT]=l,this._createLocaleStore(u)}if(e===t.ChronoField.AMPM_OF_DAY){var c=r.main("dates/calendars/gregorian/dayPeriods/format"),d={},f={};return f[0]=c.wide.am,f[1]=c.wide.pm,d[t.TextStyle.FULL]=f,(f={})[0]=c.narrow.am,f[1]=c.narrow.pm,d[t.TextStyle.NARROW]=f,(f={})[0]=c.abbreviated.am,f[1]=c.abbreviated.pm,d[t.TextStyle.SHORT]=f,this._createLocaleStore(d)}if(e===t.ChronoField.ERA){var h=r.main("dates/calendars/gregorian/eras"),p={},m={};return m[0]=h.eraNames[0],m[1]=h.eraNames[1],p[t.TextStyle.FULL]=m,(m={})[0]=h.eraNarrow[0],m[1]=h.eraNarrow[1],p[t.TextStyle.NARROW]=m,(m={})[0]=h.eraAbbr[0],m[1]=h.eraAbbr[1],p[t.TextStyle.SHORT]=m,this._createLocaleStore(p)}if(e===t.IsoFields.QUARTER_OF_YEAR){var _=r.main("dates/calendars/gregorian/quarters/format"),y={},g={};return g[1]=_.wide[1],g[2]=_.wide[2],g[3]=_.wide[3],g[4]=_.wide[4],y[t.TextStyle.FULL]=g,(g={})[1]=_.narrow[1],g[2]=_.narrow[2],g[3]=_.narrow[3],g[4]=_.narrow[4],y[t.TextStyle.NARROW]=g,(g={})[1]=_.abbreviated[1],g[2]=_.abbreviated[2],g[3]=_.abbreviated[3],g[4]=_.abbreviated[4],y[t.TextStyle.SHORT]=g,this._createLocaleStore(y)}return null},n._createLocaleStore=function(e){return e[t.TextStyle.FULL_STANDALONE]=e[t.TextStyle.FULL],e[t.TextStyle.SHORT_STANDALONE]=e[t.TextStyle.SHORT],Object.keys(e).indexOf(t.TextStyle.NARROW)>-1&&-1===Object.keys(e).indexOf(t.TextStyle.NARROW_STANDALONE)&&(e[t.TextStyle.NARROW_STANDALONE]=e[t.TextStyle.NARROW]),new g(e)},e}(),x=t._.assert,k=x.requireNonNull,z=x.requireInstance,R=function(e,t){var n=t.length-e.length;return 0===n&&(n=e.localeCompare(t)),n},Z={},P=function(){function e(e){k(e,"textStyle"),z(e,t.TextStyle,"textStyle"),this._textStyle=e,this._zoneIdsLocales={},N("supplemental/likelySubtags.json"),N("supplemental/metaZones.json")}var n=e.prototype;return n._cachedResolveZoneIdText=function(e,t,n,r){null==Z[e.locale]&&(Z[e.locale]={});var i=Z[e.locale];null==i[t]&&(i[t]={});var a=i[t];null==a[n]&&(a[n]={});var o=a[n];return null==o[r]&&(o[r]=this._resolveZoneIdText(e,t,n,r)),o[r]},n._resolveZoneIdText=function(e,t,n,r){var i=e.main("dates/timeZoneNames/zone/"+t+"/"+n+"/"+r);if(i)return i;var a=e.get("supplemental/metaZones/metazoneInfo/timezone/"+t);if(a){var o=a[a.length-1].usesMetazone._mzone,s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/"+r);if(s)return s;if((s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/generic"))||(s=e.main("dates/timeZoneNames/metazone/"+o+"/"+n+"/standard")),s)return s;var u=$(e),l=u[o][e.attributes.territory];if(l){if(l!==t)return this._cachedResolveZoneIdText(e,l,n,r)}else{var c=u[o]["001"];if(c!==t)return this._cachedResolveZoneIdText(e,c,n,r)}}},n.print=function(e,n){var r=e.getValueQuery(t.TemporalQueries.zoneId());if(null==r)return!1;if(r.normalized()instanceof t.ZoneOffset)return n.append(r.id()),!0;var i="generic",a=this._textStyle.asNormal()===t.TextStyle.FULL?"long":"short";N("main/"+e.locale().localeString()+"/timeZoneNames.json");var o=L(e.locale().localeString()),s=this._cachedResolveZoneIdText(o,r.id(),a,i);return s?n.append(s):n.append(r.id()),!0},n._resolveZoneIds=function(e){if(null!=this._zoneIdsLocales[e])return this._zoneIdsLocales[e];var n={};N("main/"+e+"/timeZoneNames.json");for(var r,i=L(e),a=s(t.ZoneRulesProvider.getAvailableZoneIds());!(r=a()).done;){var o=r.value;n[o]=o;var u=this._textStyle.asNormal()===t.TextStyle.FULL?"long":"short",l=this._cachedResolveZoneIdText(i,o,u,"generic");l&&(n[l]=o);var c=this._cachedResolveZoneIdText(i,o,u,"standard");c&&(n[c]=o);var d=this._cachedResolveZoneIdText(i,o,u,"daylight");d&&(n[d]=o)}var f=Object.keys(n).sort(R);return this._zoneIdsLocales[e]={ids:n,sortedKeys:f},this._zoneIdsLocales[e]},n.parse=function(e,n,r){for(var i=0,a=["UTC","GMT"];i<a.length;i++){var o=a[i];if(e.subSequenceEquals(n,r,o,0,o.length))return e.setParsedZone(t.ZoneId.of(o)),r+o.length}for(var u,l=this._resolveZoneIds(e.locale().localeString()),c=l.ids,d=s(l.sortedKeys);!(u=d()).done;){var f=u.value;if(e.subSequenceEquals(n,r,f,0,f.length))return e.setParsedZone(t.ZoneId.of(c[f])),r+f.length}return~r},n.toString=function(){return"ZoneText("+this._textStyle+")"},e}(),F=t._.MathUtil,U=function(){function e(e){this._textStyle=e}var n=e.prototype;return n.textStyle=function(){return this._textStyle},n.print=function(e,n){var r=e.getValue(t.ChronoField.OFFSET_SECONDS);if(null==r)return!1;if(n.append("GMT"),this._textStyle===t.TextStyle.FULL)return new t.DateTimeFormatterBuilder.OffsetIdPrinterParser("","+HH:MM:ss").print(e,n);var i=F.safeToInt(r);if(0!==i){var a=Math.abs(F.intMod(F.intDiv(i,3600),100)),o=Math.abs(F.intMod(F.intDiv(i,60),60)),s=Math.abs(F.intMod(i,60));n.append(i<0?"-":"+").append(a),(o>0||s>0)&&(n.append(":").append(F.intDiv(o,10)).append(F.intMod(o,10)),s>0&&n.append(":").append(F.intDiv(s,10)).append(F.intMod(s,10)))}return!0},n.parse=function(e,n,r){if(!1===e.subSequenceEquals(n,r,"GMT",0,3))return~r;if(r+=3,this._textStyle===t.TextStyle.FULL)return new t.DateTimeFormatterBuilder.OffsetIdPrinterParser("","+HH:MM:ss").parse(e,n,r);var i=n.length;if(r===i)return e.setParsedField(t.ChronoField.OFFSET_SECONDS,0,r,r);var a=n.charAt(r);if("+"!==a&&"-"!==a)return e.setParsedField(t.ChronoField.OFFSET_SECONDS,0,r,r);var o="-"===a?-1:1;if(r===i)return~r;r++;var s=n.charAt(r);if(s<"0"||s>"9")return~r;r++;var u=F.parseInt(s);if(r!==i&&(s=n.charAt(r))>="0"&&s<="9"){if((u=10*u+F.parseInt(s))>23)return~r;r++}if(r===i||":"!==n.charAt(r)){var l=3600*o*u;return e.setParsedField(t.ChronoField.OFFSET_SECONDS,l,r,r)}if(++r>i-2)return~r;if((s=n.charAt(r))<"0"||s>"9")return~r;r++;var c=F.parseInt(s);if((s=n.charAt(r))<"0"||s>"9")return~r;if(r++,(c=10*c+F.parseInt(s))>59)return~r;if(r===i||":"!==n.charAt(r)){var d=o*(3600*u+60*c);return e.setParsedField(t.ChronoField.OFFSET_SECONDS,d,r,r)}if(++r>i-2)return~r;if((s=n.charAt(r))<"0"||s>"9")return~r;r++;var f=F.parseInt(s);if((s=n.charAt(r))<"0"||s>"9")return~r;if(r++,(f=10*f+F.parseInt(s))>59)return~r;var h=o*(3600*u+60*c+f);return e.setParsedField(t.ChronoField.OFFSET_SECONDS,h,r,r)},n.toString=function(){return"LocalizedOffset("+this._textStyle+")"},e}(),B=t._.MathUtil,V=t._.assert,H=V.requireNonNull,Y=V.requireInstance,j=t.ValueRange.of(1,7),G=t.ValueRange.of(0,1,4,6),W=t.ValueRange.of(0,1,52,54),q=t.ValueRange.of(1,52,53),K=t.ChronoField.YEAR.range(),J={mon:t.DayOfWeek.MONDAY,tue:t.DayOfWeek.TUESDAY,wed:t.DayOfWeek.WEDNESDAY,thu:t.DayOfWeek.THURSDAY,fri:t.DayOfWeek.FRIDAY,sat:t.DayOfWeek.SATURDAY,sun:t.DayOfWeek.SUNDAY},X=function(){function e(e,t,n,r,i){this._name=e,this._weekDef=t,this._baseUnit=n,this._rangeUnit=r,this._range=i}e.ofDayOfWeekField=function(n){return new e("DayOfWeek",n,t.ChronoUnit.DAYS,t.ChronoUnit.WEEKS,j)},e.ofWeekOfMonthField=function(n){return new e("WeekOfMonth",n,t.ChronoUnit.WEEKS,t.ChronoUnit.MONTHS,G)},e.ofWeekOfYearField=function(n){return new e("WeekOfYear",n,t.ChronoUnit.WEEKS,t.ChronoUnit.YEARS,W)},e.ofWeekOfWeekBasedYearField=function(n){return new e("WeekOfWeekBasedYear",n,t.ChronoUnit.WEEKS,t.IsoFields.WEEK_BASED_YEARS,q)},e.ofWeekBasedYearField=function(n){return new e("WeekBasedYear",n,t.IsoFields.WEEK_BASED_YEARS,t.ChronoUnit.FOREVER,K)};var n=e.prototype;return n.getFrom=function(e){var n=this._weekDef.firstDayOfWeek().value(),r=this._localizedDayOfWeek(e,n);if(this._rangeUnit===t.ChronoUnit.WEEKS)return r;if(this._rangeUnit===t.ChronoUnit.MONTHS)return this._localizedWeekOfMonth(e,r);if(this._rangeUnit===t.ChronoUnit.YEARS)return this._localizedWeekOfYear(e,r);if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return this._localizedWOWBY(e);if(this._rangeUnit===t.ChronoUnit.FOREVER)return this._localizedWBY(e);throw new t.IllegalStateException("unreachable")},n._localizedDayOfWeek=function(e,n){var r=e.get(t.ChronoField.DAY_OF_WEEK);return B.floorMod(r-n,7)+1},n._localizedWeekOfMonth=function(n,r){var i=n.get(t.ChronoField.DAY_OF_MONTH),a=this._startOfWeekOffset(i,r);return e._computeWeek(a,i)},n._localizedWeekOfYear=function(n,r){var i=n.get(t.ChronoField.DAY_OF_YEAR),a=this._startOfWeekOffset(i,r);return e._computeWeek(a,i)},n._localizedWOWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=this._localizedWeekOfYear(n,a);if(0===o){var s=t.LocalDate.from(n).minus(1,t.ChronoUnit.WEEKS);return this._localizedWeekOfYear(s,a)+1}if(o>=53){var u=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),l=n.get(t.ChronoField.YEAR),c=t.Year.isLeap(l)?366:365,d=e._computeWeek(u,c+this._weekDef.minimalDaysInFirstWeek());if(o>=d)return o-(d-1)}return o},n._localizedWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=n.get(t.ChronoField.YEAR),s=this._localizedWeekOfYear(n,a);if(0===s)return o-1;if(s<53)return o;var u=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),l=t.Year.isLeap(o)?366:365;return s>=e._computeWeek(u,l+this._weekDef.minimalDaysInFirstWeek())?o+1:o},n._startOfWeekOffset=function(e,t){var n=B.floorMod(e-t,7),r=-n;return n+1>this._weekDef.minimalDaysInFirstWeek()&&(r=7-n),r},e._computeWeek=function(e,t){return B.intDiv(7+e+(t-1),7)},n.adjustInto=function(e,n){var r=this._range.checkValidIntValue(n,this),i=e.get(this);if(r===i)return e;if(this._rangeUnit===t.ChronoUnit.FOREVER){var a=e.get(this._weekDef.weekOfWeekBasedYear()),o=B.roundDown(52.1775*(n-i)),s=e.plus(o,t.ChronoUnit.WEEKS);if(s.get(this)>r){var u=s.get(this._weekDef.weekOfWeekBasedYear());s=s.minus(u,t.ChronoUnit.WEEKS)}else{s.get(this)<r&&(s=s.plus(2,t.ChronoUnit.WEEKS));var l=s.get(this._weekDef.weekOfWeekBasedYear());(s=s.plus(a-l,t.ChronoUnit.WEEKS)).get(this)>r&&(s=s.minus(1,t.ChronoUnit.WEEKS))}return s}var c=r-i;return e.plus(c,this._baseUnit)},n.resolve=function(e,n,r){var i=this._weekDef.firstDayOfWeek().value();if(this._rangeUnit===t.ChronoUnit.WEEKS){var a=e.remove(this),o=this._range.checkValidIntValue(a,this),s=B.floorMod(i-1+(o-1),7)+1;return e.put(t.ChronoField.DAY_OF_WEEK,s),null}if(!1===e.containsKey(t.ChronoField.DAY_OF_WEEK))return null;if(this._rangeUnit===t.ChronoUnit.FOREVER){if(!1===e.containsKey(this._weekDef.weekOfWeekBasedYear()))return null;var u,l,c=t.ChronoField.DAY_OF_WEEK.checkValidIntValue(e.get(t.ChronoField.DAY_OF_WEEK)),d=B.floorMod(c-i,7)+1,f=this.range().checkValidIntValue(e.get(this),this);if(r===t.ResolverStyle.LENIENT){u=t.LocalDate.of(f,1,this._weekDef.minimalDaysInFirstWeek());var h=e.get(this._weekDef.weekOfWeekBasedYear()),p=this._localizedDayOfWeek(u,i);l=7*(h-this._localizedWeekOfYear(u,p))+(d-p)}else{u=t.LocalDate.of(f,1,this._weekDef.minimalDaysInFirstWeek());var m=this._weekDef.weekOfWeekBasedYear().range().checkValidIntValue(e.get(this._weekDef.weekOfWeekBasedYear()),this._weekDef.weekOfWeekBasedYear),_=this._localizedDayOfWeek(u,i);l=7*(m-this._localizedWeekOfYear(u,_))+(d-_)}if(u=u.plus(l,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&u.getLong(this)!==e.get(this))throw new t.DateTimeException("Strict mode rejected date parsed to a different year");return e.remove(this),e.remove(this._weekDef.weekOfWeekBasedYear()),e.remove(t.ChronoField.DAY_OF_WEEK),u}if(!1===e.containsKey(t.ChronoField.YEAR))return null;var y=t.ChronoField.DAY_OF_WEEK.checkValidIntValue(e.get(t.ChronoField.DAY_OF_WEEK)),g=B.floorMod(y-i,7)+1,v=t.ChronoField.YEAR.checkValidIntValue(e.get(t.ChronoField.YEAR));if(this._rangeUnit===t.ChronoUnit.MONTHS){if(!1===e.containsKey(t.ChronoField.MONTH_OF_YEAR))return null;var A,E,b=e.remove(this);if(r===t.ResolverStyle.LENIENT){var S=e.get(t.ChronoField.MONTH_OF_YEAR);A=(A=t.LocalDate.of(v,1,1)).plus(S-1,t.ChronoUnit.MONTHS);var M=this._localizedDayOfWeek(A,i);E=7*(b-this._localizedWeekOfMonth(A,M))+(g-M)}else{var T=t.ChronoField.MONTH_OF_YEAR.checkValidIntValue(e.get(t.ChronoField.MONTH_OF_YEAR));A=t.LocalDate.of(v,T,8);var w=this._localizedDayOfWeek(A,i);E=7*(this._range.checkValidIntValue(b,this)-this._localizedWeekOfMonth(A,w))+(g-w)}if(A=A.plus(E,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&A.getLong(t.ChronoField.MONTH_OF_YEAR)!==e.get(t.ChronoField.MONTH_OF_YEAR))throw new t.DateTimeException("Strict mode rejected date parsed to a different month");return e.remove(this),e.remove(t.ChronoField.YEAR),e.remove(t.ChronoField.MONTH_OF_YEAR),e.remove(t.ChronoField.DAY_OF_WEEK),A}if(this._rangeUnit===t.ChronoUnit.YEARS){var O,N=e.remove(this),C=t.LocalDate.of(v,1,1);if(r===t.ResolverStyle.LENIENT){var L=this._localizedDayOfWeek(C,i);O=7*(N-this._localizedWeekOfYear(C,L))+(g-L)}else{var D=this._localizedDayOfWeek(C,i);O=7*(this._range.checkValidIntValue(N,this)-this._localizedWeekOfYear(C,D))+(g-D)}if(C=C.plus(O,t.ChronoUnit.DAYS),r===t.ResolverStyle.STRICT&&C.getLong(t.ChronoField.YEAR)!==e.get(t.ChronoField.YEAR))throw new t.DateTimeException("Strict mode rejected date parsed to a different year");return e.remove(this),e.remove(t.ChronoField.YEAR),e.remove(t.ChronoField.DAY_OF_WEEK),C}throw new t.IllegalStateException("unreachable")},n.name=function(){return this._name},n.baseUnit=function(){return this._baseUnit},n.rangeUnit=function(){return this._rangeUnit},n.range=function(){return this._range},n.isDateBased=function(){return!0},n.isTimeBased=function(){return!1},n.isSupportedBy=function(e){if(e.isSupported(t.ChronoField.DAY_OF_WEEK)){if(this._rangeUnit===t.ChronoUnit.WEEKS)return!0;if(this._rangeUnit===t.ChronoUnit.MONTHS)return e.isSupported(t.ChronoField.DAY_OF_MONTH);if(this._rangeUnit===t.ChronoUnit.YEARS)return e.isSupported(t.ChronoField.DAY_OF_YEAR);if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return e.isSupported(t.ChronoField.EPOCH_DAY);if(this._rangeUnit===t.ChronoUnit.FOREVER)return e.isSupported(t.ChronoField.EPOCH_DAY)}return!1},n.rangeRefinedBy=function(n){if(this._rangeUnit===t.ChronoUnit.WEEKS)return this._range;var r=null;if(this._rangeUnit===t.ChronoUnit.MONTHS)r=t.ChronoField.DAY_OF_MONTH;else{if(this._rangeUnit!==t.ChronoUnit.YEARS){if(this._rangeUnit===t.IsoFields.WEEK_BASED_YEARS)return this._rangeWOWBY(n);if(this._rangeUnit===t.ChronoUnit.FOREVER)return n.range(t.ChronoField.YEAR);throw new t.IllegalStateException("unreachable")}r=t.ChronoField.DAY_OF_YEAR}var i=this._weekDef.firstDayOfWeek().value(),a=n.get(t.ChronoField.DAY_OF_WEEK),o=B.floorMod(a-i,7)+1,s=this._startOfWeekOffset(n.get(r),o),u=n.range(r);return t.ValueRange.of(e._computeWeek(s,u.minimum()),e._computeWeek(s,u.maximum()))},n._rangeWOWBY=function(n){var r=this._weekDef.firstDayOfWeek().value(),i=n.get(t.ChronoField.DAY_OF_WEEK),a=B.floorMod(i-r,7)+1,o=this._localizedWeekOfYear(n,a);if(0===o)return this._rangeWOWBY(t.IsoChronology.INSTANCE.date(n).minus(2,t.ChronoUnit.WEEKS));var s=this._startOfWeekOffset(n.get(t.ChronoField.DAY_OF_YEAR),a),u=n.get(t.ChronoField.YEAR),l=t.Year.isLeap(u)?366:365,c=e._computeWeek(s,l+this._weekDef.minimalDaysInFirstWeek());return o>=c?this._rangeWOWBY(t.IsoChronology.INSTANCE.date(n).plus(2,t.ChronoUnit.WEEKS)):t.ValueRange.of(1,c-1)},n.displayName=function(e){return H(e,"locale"),this._rangeUnit===t.ChronoUnit.YEARS?"Week":this.toString()},n.toString=function(){return this._name+"["+this._weekDef.toString()+"]"},e}(),Q=new Map,ee=function(){function e(e,n){if(H(e,"firstDayOfWeek"),Y(e,t.DayOfWeek,"firstDayOfWeek"),H(n,"minimalDaysInFirstWeek"),n<1||n>7)throw new t.IllegalArgumentException("Minimal number of days is invalid");this._firstDayOfWeek=e,this._minimalDays=n,this._dayOfWeek=X.ofDayOfWeekField(this),this._weekOfMonth=X.ofWeekOfMonthField(this),this._weekOfYear=X.ofWeekOfYearField(this),this._weekOfWeekBasedYear=X.ofWeekOfWeekBasedYearField(this),this._weekBasedYear=X.ofWeekBasedYearField(this),w.load(m("supplemental/likelySubtags.json"))}e.of=function(t,n){return void 0===n?e.ofLocale(t):e.ofFirstDayOfWeekMinDays(t,n)},e.ofLocale=function(t){H(t,"locale"),w.load(m("supplemental/weekData.json"));var n="001",r=new w(t.localeString()).get("supplemental/weekData"),i=J[r.firstDay[t.country()]];i||(i=J[r.firstDay[n]]);var a=r.minDays[t.country()];return a||(a=r.minDays[n]),e.ofFirstDayOfWeekMinDays(i,a)},e.ofFirstDayOfWeekMinDays=function(n,r){H(n,"firstDayOfWeek"),Y(n,t.DayOfWeek,"firstDayOfWeek"),H(r,"minimalDaysInFirstWeek");var i=n.toString()+r,a=Q.get(i);return null==a&&(a=new e(n,r),Q.set(i,a),a=Q.get(i)),a};var n=e.prototype;return n.firstDayOfWeek=function(){return this._firstDayOfWeek},n.minimalDaysInFirstWeek=function(){return this._minimalDays},n.dayOfWeek=function(){return this._dayOfWeek},n.weekOfMonth=function(){return this._weekOfMonth},n.weekOfYear=function(){return this._weekOfYear},n.weekOfWeekBasedYear=function(){return this._weekOfWeekBasedYear},n.weekBasedYear=function(){return this._weekBasedYear},n.equals=function(t){return this===t||t instanceof e&&this.hashCode()===t.hashCode()},n.hashCode=function(){return 7*this._firstDayOfWeek.ordinal()+this._minimalDays},n.toString=function(){return"WeekFields["+this._firstDayOfWeek+","+this._minimalDays+"]"},e}();
|
|
179
|
-
/*
|
|
180
|
-
* @copyright (c) 2020, Philipp Thuerwaechter & Pattrick Hueper
|
|
181
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
182
|
-
*/function te(){ee.ISO=ee.of(t.DayOfWeek.MONDAY,4),ee.SUNDAY_START=ee.of(t.DayOfWeek.SUNDAY,1)}
|
|
183
|
-
/*
|
|
184
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
185
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
186
|
-
*/var ne=t._.StringBuilder,re=function(){function e(e,t){this._letter=e,this._count=t}var n=e.prototype;return n.print=function(e,t){var n=ee.of(e.locale());return this._evaluate(n).print(e,t)},n.parse=function(e,t,n){var r=ee.of(e.locale());return this._evaluate(r).parse(e,t,n)},n._evaluate=function(e){var n=null;switch(this._letter){case"e":case"c":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.dayOfWeek(),this._count,2,t.SignStyle.NOT_NEGATIVE);break;case"w":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekOfWeekBasedYear(),this._count,2,t.SignStyle.NOT_NEGATIVE);break;case"W":n=new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekOfMonth(),1,2,t.SignStyle.NOT_NEGATIVE);break;case"Y":n=2===this._count?new t.DateTimeFormatterBuilder.ReducedPrinterParser(e.weekBasedYear(),2,2,0,t.DateTimeFormatterBuilder.ReducedPrinterParser.BASE_DATE):new t.DateTimeFormatterBuilder.NumberPrinterParser(e.weekBasedYear(),this._count,19,this._count<4?t.SignStyle.NORMAL:t.SignStyle.EXCEEDS_PAD,-1)}return n},n.toString=function(){var e=new ne(30);return e.append("Localized("),"Y"===this._letter?1===this._count?e.append("WeekBasedYear"):2===this._count?e.append("ReducedValue(WeekBasedYear,2,2,2000-01-01)"):e.append("WeekBasedYear,").append(this._count).append(",").append(19).append(",").append(this._count<4?t.SignStyle.NORMAL:t.SignStyle.EXCEEDS_PAD):("c"===this._letter||"e"===this._letter?e.append("DayOfWeek"):"w"===this._letter?e.append("WeekOfWeekBasedYear"):"W"===this._letter&&e.append("WeekOfMonth"),e.append(","),e.append(this._count)),e.append(")"),e.toString()},e}(),ie=t._.assert,ae=ie.requireNonNull,oe=ie.requireInstance,se=function(e){function i(){return e.apply(this,arguments)||this}r(i,e);var a=i.prototype;return a.appendText=function(e,n){return void 0===n?this.appendTextField(e):n instanceof t.TextStyle?this.appendTextFieldStyle(e,n):this.appendTextFieldMap(e,n)},a.appendTextField=function(e){return this.appendTextFieldStyle(e,t.TextStyle.FULL)},a.appendTextFieldStyle=function(e,n){return ae(e,"field"),oe(e,t.TemporalField,"field"),ae(n,"textStyle"),oe(n,t.TextStyle,"textStyle"),this._appendInternal(new u(e,n,new I)),this},a.appendTextFieldMap=function(e,r){ae(e,"field"),oe(e,t.ChronoField,"field"),ae(r,"textLookup");var i=n({},r),a={};a[t.TextStyle.FULL]=i;var o=new g(a),s={getText:function(e,t,n){return o.getText(t,n)},getTextIterator:function(e,t){return o.getTextIterator(t)}};return this._appendInternal(new u(e,t.TextStyle.FULL,s)),this},a.appendWeekField=function(e,t){return ae(e,"field"),ae(t,"count"),this._appendInternal(new re(e,t)),this},a.appendZoneText=function(e){return this._appendInternal(new P(e)),this},a.appendLocalizedOffset=function(e){if(ae(e,"textStyle"),e!==t.TextStyle.FULL&&e!==t.TextStyle.SHORT)throw new t.IllegalArgumentException("Style must be either full or short");return this._appendInternal(new U(e)),this},i}(t.DateTimeFormatterBuilder),ue=function(){function e(e,t,n){void 0===t&&(t=""),void 0===n&&(n=""),this._language=e,this._country=t,this._localeString=n}e.getAvailableLocales=function(){return(new I).getAvailableLocales()};var t=e.prototype;return t.language=function(){return this._language},t.country=function(){return this._country},t.localeString=function(){return this._localeString.length>0?this._localeString:this._country.length>0?this._language+"-"+this._country:this._language},t.toString=function(){return"Locale["+this.localeString()+"]"},t.equals=function(t){return!!t&&t instanceof e&&this.localeString()===t.localeString()},e}();function le(){ue.ENGLISH=new ue("en"),ue.US=new ue("en","US","en"),ue.UK=new ue("en","GB"),ue.CANADA=new ue("en","CA"),ue.FRENCH=new ue("fr"),ue.FRANCE=new ue("fr","FR","fr"),ue.GERMAN=new ue("de"),ue.GERMANY=new ue("de","DE","de"),ue.KOREAN=new ue("ko"),ue.JAPANESE=new ue("ja","JP"),ue.JAPAN=new ue("ja","JP","ja"),ue.ITALIAN=new ue("it"),ue.ITALY=new ue("it","IT","it"),ue.CHINESE=new ue("zh"),ue.ROMANIAN=new ue("ro"),ue.SWEDISH=new ue("sv"),ue.SWEDEN=new ue("sv","SE","sv"),ue.HINDI=new ue("hi"),ue.RUSSIAN=new ue("ru")}var ce=t._.assert.requireNonNull,de=function(e){function n(){return e.apply(this,arguments)||this}return r(n,e),n.prototype.withLocale=function(e){return ce(e,"locale"),e.equals(this._locale)?this:new t.DateTimeFormatter(this._printerParser,e,this._decimalStyle,this._resolverStyle,this._resolverFields,this._chrono,this._zone)},n}(t.DateTimeFormatter);function fe(){var e={1:"Mon",2:"Tue",3:"Wed",4:"Thu",5:"Fri",6:"Sat",7:"Sun"},n={1:"Jan",2:"Feb",3:"Mar",4:"Apr",5:"May",6:"Jun",7:"Jul",8:"Aug",9:"Sep",10:"Oct",11:"Nov",12:"Dec"};de.RFC_1123_DATE_TIME=(new se).parseCaseInsensitive().parseLenient().optionalStart().appendText(t.ChronoField.DAY_OF_WEEK,e).appendLiteral(", ").optionalEnd().appendValue(t.ChronoField.DAY_OF_MONTH,2).appendLiteral(" ").appendText(t.ChronoField.MONTH_OF_YEAR,n).appendLiteral(" ").appendValue(t.ChronoField.YEAR,4).appendLiteral(" ").appendValue(t.ChronoField.HOUR_OF_DAY,2).appendLiteral(":").appendValue(t.ChronoField.MINUTE_OF_HOUR,2).optionalStart().appendLiteral(":").appendValue(t.ChronoField.SECOND_OF_MINUTE,2).optionalEnd().appendLiteral(" ").appendZoneId().toFormatter(t.ResolverStyle.SMART).withChronology(t.IsoChronology.INSTANCE)}
|
|
187
|
-
/*
|
|
188
|
-
* @copyright (c) 2016, Philipp Thürwächter & Pattrick Hüper
|
|
189
|
-
* @license BSD-3-Clause (see LICENSE in the root directory of this source tree)
|
|
190
|
-
*/var he=!1;function pe(){he||(he=!0,le(),te(),fe())}function me(e){Object.getOwnPropertyNames(se.prototype).forEach((function(t){"constructor"!==t&&(e.DateTimeFormatterBuilder.prototype[t]=se.prototype[t])})),Object.getOwnPropertyNames(de.prototype).forEach((function(t){"constructor"!==t&&(e.DateTimeFormatter.prototype[t]=de.prototype[t])})),e.DateTimeFormatter.RFC_1123_DATE_TIME=de.RFC_1123_DATE_TIME}
|
|
191
|
-
/*
|
|
192
|
-
* @copyright (c) 2017, Philipp Thuerwaechter & Pattrick Hueper
|
|
193
|
-
* @license BSD-3-Clause (see LICENSE.md in the root directory of this source tree)
|
|
194
|
-
*/pe(),t.use(me),e.Locale=ue,e.WeekFields=ee}(Ba.exports,ot(Object.freeze({__proto__:null,ArithmeticException:yr,ChronoField:Fr,ChronoLocalDate:ti,ChronoLocalDateTime:va,ChronoUnit:Rr,ChronoZonedDateTime:ha,Clock:Ma,DateTimeException:pr,DateTimeFormatter:Qi,DateTimeFormatterBuilder:Wi,DateTimeParseException:mr,DayOfWeek:jr,DecimalStyle:Oi,Duration:kr,IllegalArgumentException:gr,IllegalStateException:vr,Instant:Sa,IsoChronology:da,IsoFields:hi,LocalDate:ga,LocalDateTime:Aa,LocalTime:Ea,Month:Wr,MonthDay:ta,NullPointerException:Ar,OffsetDateTime:ma,OffsetTime:fa,ParsePosition:Jr,Period:Kr,ResolverStyle:Qr,SignStyle:Ni,Temporal:ei,TemporalAccessor:Br,TemporalAdjuster:oa,TemporalAdjusters:sa,TemporalAmount:Ir,TemporalField:Zr,TemporalQueries:Ur,TemporalQuery:Vr,TemporalUnit:xr,TextStyle:Ci,UnsupportedTemporalTypeException:_r,ValueRange:Pr,Year:aa,YearConstants:zr,YearMonth:ra,ZoneId:ri,ZoneOffset:ui,ZoneOffsetTransition:Na,ZoneRegion:Bi,ZoneRules:ii,ZoneRulesProvider:Ui,ZonedDateTime:pa,_:Pa,convert:ka,nativeJs:za,use:Ua})));const Va={REQUIRED_OPTION:"An option is required"},Ha={INVALID_SINGAPORE_NUMBER:"Invalid Singapore number",INVALID_INTERNATIONAL_NUMBER:"Invalid international number"},Ya={INVALID:"Invalid email address"},ja={MUST_BE_FUTURE:"Date must be in the future.",MUST_BE_PAST:"Date must be in the past.",CANNOT_BE_FUTURE:"Date cannot be in the future.",CANNOT_BE_PAST:"Date cannot be in the past.",MIN_DATE:e=>`Date cannot be earlier than ${e}`,MAX_DATE:e=>`Date cannot be later than ${e}`,INVALID:"Invalid date"},Ga={INVALID:"Invalid unit number"},Wa={INVALID:"Invalid input",UNSUPPORTED:"This component is not supported by the engine"};var qa,Ka,Ja;!function(e){e.formatDateTime=(e,t,n,r)=>{if(e)try{const i=Qi.ofPattern(t).withResolverStyle(Qr.STRICT).withLocale(Ba.exports.Locale.ENGLISH);switch(n){case"date":return ga.parse(e).format(i);case"time":return Ea.parse(e).format(i);case"datetime":return Aa.parse(e).format(i);default:return r||Wa.INVALID}}catch(e){return r||Wa.INVALID}},e.toLocalDateOrTime=function(e,t,n){if(e)try{const r=Qi.ofPattern(t).withResolverStyle(Qr.STRICT).withLocale(Ba.exports.Locale.ENGLISH);switch(n){case"date":return ga.parse(e,r);case"time":return Ea.parse(e,r);case"datetime":return Aa.parse(e,r);default:return}}catch(e){return}}}(qa||(qa={})),function(e){e.upsert=(e,t,n)=>{const r={...e};return r[t]=t in r?{...r[t],...n}:n,r},e.getNestedValueByKey=(t,n)=>{if(n in t)return{[n]:t[n]};for(const[r,i]of Object.entries(t))if("object"==typeof i)return e.getNestedValueByKey(i,n);return{}}}(Ka||(Ka={})),function(e){e.generateId=(e,t,n)=>{let r=e;return t&&(r+=`__${t}`),n&&(r+=`--${n}`),r},e.getError=e=>{try{return e()}catch(e){return e}}}(Ja||(Ja={}));const Xa=s({formValidationConfig:null,setFormValidationConfig:()=>null}),Qa=({children:t})=>{const[n,r]=u(),i=l((()=>({formValidationConfig:n,setFormValidationConfig:r})),[n]);return e(Xa.Provider,{value:i,children:t})};var eo,to;try{eo=Map}catch(hA){}try{to=Set}catch(hA){}function no(e,t,n){if(!e||"object"!=typeof e||"function"==typeof e)return e;if(e.nodeType&&"cloneNode"in e)return e.cloneNode(!0);if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp)return new RegExp(e);if(Array.isArray(e))return e.map(ro);if(eo&&e instanceof eo)return new Map(Array.from(e.entries()));if(to&&e instanceof to)return new Set(Array.from(e.values()));if(e instanceof Object){t.push(e);var r=Object.create(e);for(var i in n.push(r),e){var a=t.findIndex((function(t){return t===e[i]}));r[i]=a>-1?n[a]:no(e[i],t,n)}return r}return e}function ro(e){return no(e,[],[])}const io=Object.prototype.toString,ao=Error.prototype.toString,oo=RegExp.prototype.toString,so="undefined"!=typeof Symbol?Symbol.prototype.toString:()=>"",uo=/^Symbol\((.*)\)(.*)$/;function lo(e,t=!1){if(null==e||!0===e||!1===e)return""+e;const n=typeof e;if("number"===n)return function(e){return e!=+e?"NaN":0===e&&1/e<0?"-0":""+e}(e);if("string"===n)return t?`"${e}"`:e;if("function"===n)return"[Function "+(e.name||"anonymous")+"]";if("symbol"===n)return so.call(e).replace(uo,"Symbol($1)");const r=io.call(e).slice(8,-1);return"Date"===r?isNaN(e.getTime())?""+e:e.toISOString(e):"Error"===r||e instanceof Error?"["+ao.call(e)+"]":"RegExp"===r?oo.call(e):null}function co(e,t){let n=lo(e,t);return null!==n?n:JSON.stringify(e,(function(e,n){let r=lo(this[e],t);return null!==r?r:n}),2)}let fo={default:"${path} is invalid",required:"${path} is a required field",oneOf:"${path} must be one of the following values: ${values}",notOneOf:"${path} must not be one of the following values: ${values}",notType:({path:e,type:t,value:n,originalValue:r})=>{let i=null!=r&&r!==n,a=`${e} must be a \`${t}\` type, but the final value was: \`${co(n,!0)}\``+(i?` (cast from the value \`${co(r,!0)}\`).`:".");return null===n&&(a+='\n If "null" is intended as an empty value be sure to mark the schema as `.nullable()`'),a},defined:"${path} must be defined"},ho={length:"${path} must be exactly ${length} characters",min:"${path} must be at least ${min} characters",max:"${path} must be at most ${max} characters",matches:'${path} must match the following: "${regex}"',email:"${path} must be a valid email",url:"${path} must be a valid URL",uuid:"${path} must be a valid UUID",trim:"${path} must be a trimmed string",lowercase:"${path} must be a lowercase string",uppercase:"${path} must be a upper case string"},po={min:"${path} must be greater than or equal to ${min}",max:"${path} must be less than or equal to ${max}",lessThan:"${path} must be less than ${less}",moreThan:"${path} must be greater than ${more}",positive:"${path} must be a positive number",negative:"${path} must be a negative number",integer:"${path} must be an integer"},mo={min:"${path} field must be later than ${min}",max:"${path} field must be at earlier than ${max}"},_o={isValue:"${path} field must be ${value}"},yo={noUnknown:"${path} field has unspecified keys: ${unknown}"},go={min:"${path} field must have at least ${min} items",max:"${path} field must have less than or equal to ${max} items",length:"${path} must have ${length} items"};var vo=Object.assign(Object.create(null),{mixed:fo,string:ho,number:po,date:mo,object:yo,array:go,boolean:_o}),Ao=Object.prototype.hasOwnProperty;var Eo=function(e,t){return null!=e&&Ao.call(e,t)},bo=Ct,So=bn;var Mo=function(e){return"symbol"==typeof e||So(e)&&"[object Symbol]"==bo(e)},To=Dn,wo=Mo,Oo=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,No=/^\w*$/;var Co=function(e,t){if(To(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!wo(e))||(No.test(e)||!Oo.test(e)||null!=t&&e in Object(t))},Lo=Qt(Object,"create"),Do=Lo;var $o=function(){this.__data__=Do?Do(null):{},this.size=0};var Io=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},xo=Lo,ko=Object.prototype.hasOwnProperty;var zo=function(e){var t=this.__data__;if(xo){var n=t[e];return"__lodash_hash_undefined__"===n?void 0:n}return ko.call(t,e)?t[e]:void 0},Ro=Lo,Zo=Object.prototype.hasOwnProperty;var Po=Lo;var Fo=$o,Uo=Io,Bo=zo,Vo=function(e){var t=this.__data__;return Ro?void 0!==t[e]:Zo.call(t,e)},Ho=function(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=Po&&void 0===t?"__lodash_hash_undefined__":t,this};function Yo(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Yo.prototype.clear=Fo,Yo.prototype.delete=Uo,Yo.prototype.get=Bo,Yo.prototype.has=Vo,Yo.prototype.set=Ho;var jo=Yo;var Go=function(){this.__data__=[],this.size=0};var Wo=function(e,t){return e===t||e!=e&&t!=t},qo=Wo;var Ko=function(e,t){for(var n=e.length;n--;)if(qo(e[n][0],t))return n;return-1},Jo=Ko,Xo=Array.prototype.splice;var Qo=Ko;var es=Ko;var ts=Ko;var ns=Go,rs=function(e){var t=this.__data__,n=Jo(t,e);return!(n<0)&&(n==t.length-1?t.pop():Xo.call(t,n,1),--this.size,!0)},is=function(e){var t=this.__data__,n=Qo(t,e);return n<0?void 0:t[n][1]},as=function(e){return es(this.__data__,e)>-1},os=function(e,t){var n=this.__data__,r=ts(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this};function ss(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}ss.prototype.clear=ns,ss.prototype.delete=rs,ss.prototype.get=is,ss.prototype.has=as,ss.prototype.set=os;var us=ss,ls=jo,cs=us,ds=tn;var fs=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e};var hs=function(e,t){var n=e.__data__;return fs(t)?n["string"==typeof t?"string":"hash"]:n.map},ps=hs;var ms=function(e){var t=ps(this,e).delete(e);return this.size-=t?1:0,t},_s=hs;var ys=hs;var gs=hs;var vs=function(){this.size=0,this.__data__={hash:new ls,map:new(ds||cs),string:new ls}},As=ms,Es=function(e){return _s(this,e).get(e)},bs=function(e){return ys(this,e).has(e)},Ss=function(e,t){var n=gs(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this};function Ms(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}Ms.prototype.clear=vs,Ms.prototype.delete=As,Ms.prototype.get=Es,Ms.prototype.has=bs,Ms.prototype.set=Ss;var Ts=Ms,ws=Ts;function Os(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(Os.Cache||ws),n}Os.Cache=ws;var Ns=Os;var Cs=function(e){var t=Ns(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t},Ls=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,Ds=/\\(\\)?/g,$s=Cs((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(Ls,(function(e,n,r,i){t.push(r?i.replace(Ds,"$1"):n||e)})),t})),Is=$s;var xs=function(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i},ks=xs,zs=Dn,Rs=Mo,Zs=gt?gt.prototype:void 0,Ps=Zs?Zs.toString:void 0;var Fs=function e(t){if("string"==typeof t)return t;if(zs(t))return ks(t,e)+"";if(Rs(t))return Ps?Ps.call(t):"";var n=t+"";return"0"==n&&1/t==-Infinity?"-0":n},Us=Fs;var Bs=function(e){return null==e?"":Us(e)},Vs=Dn,Hs=Co,Ys=Is,js=Bs;var Gs=function(e,t){return Vs(e)?e:Hs(e,t)?[e]:Ys(js(e))},Ws=/^(?:0|[1-9]\d*)$/;var qs=function(e,t){var n=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==n||"symbol"!=n&&Ws.test(e))&&e>-1&&e%1==0&&e<t},Ks=Mo;var Js=function(e){if("string"==typeof e||Ks(e))return e;var t=e+"";return"0"==t&&1/e==-Infinity?"-0":t},Xs=Gs,Qs=Ln,eu=Dn,tu=qs,nu=$n,ru=Js;var iu=function(e,t,n){for(var r=-1,i=(t=Xs(t,e)).length,a=!1;++r<i;){var o=ru(t[r]);if(!(a=null!=e&&n(e,o)))break;e=e[o]}return a||++r!=i?a:!!(i=null==e?0:e.length)&&nu(i)&&tu(o,i)&&(eu(e)||Qs(e))},au=Eo,ou=iu;var su=function(e,t){return null!=e&&ou(e,t,au)};const uu=e=>e&&e.__isYupSchema__;class lu{constructor(e,t){if(this.fn=void 0,this.refs=e,this.refs=e,"function"==typeof t)return void(this.fn=t);if(!su(t,"is"))throw new TypeError("`is:` is required for `when()` conditions");if(!t.then&&!t.otherwise)throw new TypeError("either `then:` or `otherwise:` is required for `when()` conditions");let{is:n,then:r,otherwise:i}=t,a="function"==typeof n?n:(...e)=>e.every((e=>e===n));this.fn=function(...e){let t=e.pop(),n=e.pop(),o=a(...e)?r:i;if(o)return"function"==typeof o?o(n):n.concat(o.resolve(t))}}resolve(e,t){let n=this.refs.map((e=>e.getValue(null==t?void 0:t.value,null==t?void 0:t.parent,null==t?void 0:t.context))),r=this.fn.apply(e,n.concat(e,t));if(void 0===r||r===e)return e;if(!uu(r))throw new TypeError("conditions must return a schema object");return r.resolve(t)}}function cu(e){return null==e?[]:[].concat(e)}function du(){return du=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},du.apply(this,arguments)}let fu=/\$\{\s*(\w+)\s*\}/g;class hu extends Error{static formatError(e,t){const n=t.label||t.path||"this";return n!==t.path&&(t=du({},t,{path:n})),"string"==typeof e?e.replace(fu,((e,n)=>co(t[n]))):"function"==typeof e?e(t):e}static isError(e){return e&&"ValidationError"===e.name}constructor(e,t,n,r){super(),this.value=void 0,this.path=void 0,this.type=void 0,this.errors=void 0,this.params=void 0,this.inner=void 0,this.name="ValidationError",this.value=t,this.path=n,this.type=r,this.errors=[],this.inner=[],cu(e).forEach((e=>{hu.isError(e)?(this.errors.push(...e.errors),this.inner=this.inner.concat(e.inner.length?e.inner:e)):this.errors.push(e)})),this.message=this.errors.length>1?`${this.errors.length} errors occurred`:this.errors[0],Error.captureStackTrace&&Error.captureStackTrace(this,hu)}}function pu(e,t){let{endEarly:n,tests:r,args:i,value:a,errors:o,sort:s,path:u}=e,l=(e=>{let t=!1;return(...n)=>{t||(t=!0,e(...n))}})(t),c=r.length;const d=[];if(o=o||[],!c)return o.length?l(new hu(o,a,u)):l(null,a);for(let e=0;e<r.length;e++){(0,r[e])(i,(function(e){if(e){if(!hu.isError(e))return l(e,a);if(n)return e.value=a,l(e,a);d.push(e)}if(--c<=0){if(d.length&&(s&&d.sort(s),o.length&&d.push(...o),o=d),o.length)return void l(new hu(o,a,u),a);l(null,a)}}))}}var mu=Qt,_u=function(){try{var e=mu(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),yu=_u;var gu=function(e,t,n){"__proto__"==t&&yu?yu(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n};var vu=function(e){return function(t,n,r){for(var i=-1,a=Object(t),o=r(t),s=o.length;s--;){var u=o[e?s:++i];if(!1===n(a[u],u,a))break}return t}},Au=vu();var Eu=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r},bu=Eu,Su=Ln,Mu=Dn,Tu=zn.exports,wu=qs,Ou=qn,Nu=Object.prototype.hasOwnProperty;var Cu=function(e,t){var n=Mu(e),r=!n&&Su(e),i=!n&&!r&&Tu(e),a=!n&&!r&&!i&&Ou(e),o=n||r||i||a,s=o?bu(e.length,String):[],u=s.length;for(var l in e)!t&&!Nu.call(e,l)||o&&("length"==l||i&&("offset"==l||"parent"==l)||a&&("buffer"==l||"byteLength"==l||"byteOffset"==l)||wu(l,u))||s.push(l);return s},Lu=Cu,Du=ht,$u=kn;var Iu=function(e){return $u(e)?Lu(e):Du(e)},xu=Au,ku=Iu;var zu=function(e,t){return e&&xu(e,t,ku)},Ru=us;var Zu=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n};var Pu=us,Fu=tn,Uu=Ts;var Bu=us,Vu=function(){this.__data__=new Ru,this.size=0},Hu=Zu,Yu=function(e){return this.__data__.get(e)},ju=function(e){return this.__data__.has(e)},Gu=function(e,t){var n=this.__data__;if(n instanceof Pu){var r=n.__data__;if(!Fu||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Uu(r)}return n.set(e,t),this.size=n.size,this};function Wu(e){var t=this.__data__=new Bu(e);this.size=t.size}Wu.prototype.clear=Vu,Wu.prototype.delete=Hu,Wu.prototype.get=Yu,Wu.prototype.has=ju,Wu.prototype.set=Gu;var qu=Wu;var Ku=Ts,Ju=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Xu=function(e){return this.__data__.has(e)};function Qu(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Ku;++t<n;)this.add(e[t])}Qu.prototype.add=Qu.prototype.push=Ju,Qu.prototype.has=Xu;var el=Qu;var tl=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1};var nl=function(e,t){return e.has(t)},rl=el,il=tl,al=nl;var ol=function(e,t,n,r,i,a){var o=1&n,s=e.length,u=t.length;if(s!=u&&!(o&&u>s))return!1;var l=a.get(e),c=a.get(t);if(l&&c)return l==t&&c==e;var d=-1,f=!0,h=2&n?new rl:void 0;for(a.set(e,t),a.set(t,e);++d<s;){var p=e[d],m=t[d];if(r)var _=o?r(m,p,d,t,e,a):r(p,m,d,e,t,a);if(void 0!==_){if(_)continue;f=!1;break}if(h){if(!il(t,(function(e,t){if(!al(h,t)&&(p===e||i(p,e,n,r,a)))return h.push(t)}))){f=!1;break}}else if(p!==m&&!i(p,m,n,r,a)){f=!1;break}}return a.delete(e),a.delete(t),f};var sl=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n};var ul=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n},ll=yt.Uint8Array,cl=Wo,dl=ol,fl=sl,hl=ul,pl=gt?gt.prototype:void 0,ml=pl?pl.valueOf:void 0;var _l=function(e,t,n,r,i,a,o){switch(n){case"[object DataView]":if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=t.byteLength||!a(new ll(e),new ll(t)));case"[object Boolean]":case"[object Date]":case"[object Number]":return cl(+e,+t);case"[object Error]":return e.name==t.name&&e.message==t.message;case"[object RegExp]":case"[object String]":return e==t+"";case"[object Map]":var s=fl;case"[object Set]":var u=1&r;if(s||(s=hl),e.size!=t.size&&!u)return!1;var l=o.get(e);if(l)return l==t;r|=2,o.set(e,t);var c=dl(s(e),s(t),r,i,a,o);return o.delete(e),c;case"[object Symbol]":if(ml)return ml.call(e)==ml.call(t)}return!1};var yl=function(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e},gl=yl,vl=Dn;var Al=function(e,t,n){var r=t(e);return vl(e)?r:gl(r,n(e))};var El=function(e,t){for(var n=-1,r=null==e?0:e.length,i=0,a=[];++n<r;){var o=e[n];t(o,n,e)&&(a[i++]=o)}return a};var bl=El,Sl=function(){return[]},Ml=Object.prototype.propertyIsEnumerable,Tl=Object.getOwnPropertySymbols,wl=Tl?function(e){return null==e?[]:(e=Object(e),bl(Tl(e),(function(t){return Ml.call(e,t)})))}:Sl,Ol=Al,Nl=wl,Cl=Iu;var Ll=function(e){return Ol(e,Cl,Nl)},Dl=Ll,$l=Object.prototype.hasOwnProperty;var Il=function(e,t,n,r,i,a){var o=1&n,s=Dl(e),u=s.length;if(u!=Dl(t).length&&!o)return!1;for(var l=u;l--;){var c=s[l];if(!(o?c in t:$l.call(t,c)))return!1}var d=a.get(e),f=a.get(t);if(d&&f)return d==t&&f==e;var h=!0;a.set(e,t),a.set(t,e);for(var p=o;++l<u;){var m=e[c=s[l]],_=t[c];if(r)var y=o?r(_,m,c,t,e,a):r(m,_,c,e,t,a);if(!(void 0===y?m===_||i(m,_,n,r,a):y)){h=!1;break}p||(p="constructor"==c)}if(h&&!p){var g=e.constructor,v=t.constructor;g==v||!("constructor"in e)||!("constructor"in t)||"function"==typeof g&&g instanceof g&&"function"==typeof v&&v instanceof v||(h=!1)}return a.delete(e),a.delete(t),h},xl=qu,kl=ol,zl=_l,Rl=Il,Zl=En,Pl=Dn,Fl=zn.exports,Ul=qn,Bl="[object Arguments]",Vl="[object Array]",Hl="[object Object]",Yl=Object.prototype.hasOwnProperty;var jl=function(e,t,n,r,i,a){var o=Pl(e),s=Pl(t),u=o?Vl:Zl(e),l=s?Vl:Zl(t),c=(u=u==Bl?Hl:u)==Hl,d=(l=l==Bl?Hl:l)==Hl,f=u==l;if(f&&Fl(e)){if(!Fl(t))return!1;o=!0,c=!1}if(f&&!c)return a||(a=new xl),o||Ul(e)?kl(e,t,n,r,i,a):zl(e,t,u,n,r,i,a);if(!(1&n)){var h=c&&Yl.call(e,"__wrapped__"),p=d&&Yl.call(t,"__wrapped__");if(h||p){var m=h?e.value():e,_=p?t.value():t;return a||(a=new xl),i(m,_,n,r,a)}}return!!f&&(a||(a=new xl),Rl(e,t,n,r,i,a))},Gl=jl,Wl=bn;var ql=function e(t,n,r,i,a){return t===n||(null==t||null==n||!Wl(t)&&!Wl(n)?t!=t&&n!=n:Gl(t,n,r,i,e,a))},Kl=qu,Jl=ql;var Xl=function(e,t,n,r){var i=n.length,a=i,o=!r;if(null==e)return!a;for(e=Object(e);i--;){var s=n[i];if(o&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++i<a;){var u=(s=n[i])[0],l=e[u],c=s[1];if(o&&s[2]){if(void 0===l&&!(u in e))return!1}else{var d=new Kl;if(r)var f=r(l,c,u,e,t,d);if(!(void 0===f?Jl(c,l,3,r,d):f))return!1}}return!0},Ql=Lt;var ec=function(e){return e==e&&!Ql(e)},tc=ec,nc=Iu;var rc=function(e){for(var t=nc(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,tc(i)]}return t};var ic=function(e,t){return function(n){return null!=n&&(n[e]===t&&(void 0!==t||e in Object(n)))}},ac=Xl,oc=rc,sc=ic;var uc=function(e){var t=oc(e);return 1==t.length&&t[0][2]?sc(t[0][0],t[0][1]):function(n){return n===e||ac(n,e,t)}},lc=Gs,cc=Js;var dc=function(e,t){for(var n=0,r=(t=lc(t,e)).length;null!=e&&n<r;)e=e[cc(t[n++])];return n&&n==r?e:void 0},fc=dc;var hc=function(e,t,n){var r=null==e?void 0:fc(e,t);return void 0===r?n:r};var pc=function(e,t){return null!=e&&t in Object(e)},mc=pc,_c=iu;var yc=function(e,t){return null!=e&&_c(e,t,mc)},gc=ql,vc=hc,Ac=yc,Ec=Co,bc=ec,Sc=ic,Mc=Js;var Tc=function(e,t){return Ec(e)&&bc(t)?Sc(Mc(e),t):function(n){var r=vc(n,e);return void 0===r&&r===t?Ac(n,e):gc(t,r,3)}};var wc=function(e){return e};var Oc=function(e){return function(t){return null==t?void 0:t[e]}},Nc=dc;var Cc=function(e){return function(t){return Nc(t,e)}},Lc=Oc,Dc=Cc,$c=Co,Ic=Js;var xc=uc,kc=Tc,zc=wc,Rc=Dn,Zc=function(e){return $c(e)?Lc(Ic(e)):Dc(e)};var Pc=function(e){return"function"==typeof e?e:null==e?zc:"object"==typeof e?Rc(e)?kc(e[0],e[1]):xc(e):Zc(e)},Fc=gu,Uc=zu,Bc=Pc;var Vc=function(e,t){var n={};return t=Bc(t),Uc(e,(function(e,r,i){Fc(n,r,t(e,r,i))})),n};function Hc(e){this._maxSize=e,this.clear()}Hc.prototype.clear=function(){this._size=0,this._values=Object.create(null)},Hc.prototype.get=function(e){return this._values[e]},Hc.prototype.set=function(e,t){return this._size>=this._maxSize&&this.clear(),e in this._values||this._size++,this._values[e]=t};var Yc=/[^.^\]^[]+|(?=\[\]|\.\.)/g,jc=/^\d+$/,Gc=/^\d/,Wc=/[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g,qc=/^\s*(['"]?)(.*?)(\1)\s*$/,Kc=new Hc(512),Jc=new Hc(512),Xc=new Hc(512),Qc={Cache:Hc,split:td,normalizePath:ed,setter:function(e){var t=ed(e);return Jc.get(e)||Jc.set(e,(function(e,n){for(var r=0,i=t.length,a=e;r<i-1;){var o=t[r];if("__proto__"===o||"constructor"===o||"prototype"===o)return e;a=a[t[r++]]}a[t[r]]=n}))},getter:function(e,t){var n=ed(e);return Xc.get(e)||Xc.set(e,(function(e){for(var r=0,i=n.length;r<i;){if(null==e&&t)return;e=e[n[r++]]}return e}))},join:function(e){return e.reduce((function(e,t){return e+(nd(t)||jc.test(t)?"["+t+"]":(e?".":"")+t)}),"")},forEach:function(e,t,n){!function(e,t,n){var r,i,a,o,s=e.length;for(i=0;i<s;i++)(r=e[i])&&(rd(r)&&(r='"'+r+'"'),a=!(o=nd(r))&&/^\d+$/.test(r),t.call(n,r,o,a,i,e))}(Array.isArray(e)?e:td(e),t,n)}};function ed(e){return Kc.get(e)||Kc.set(e,td(e).map((function(e){return e.replace(qc,"$2")})))}function td(e){return e.match(Yc)||[""]}function nd(e){return"string"==typeof e&&e&&-1!==["'",'"'].indexOf(e.charAt(0))}function rd(e){return!nd(e)&&(function(e){return e.match(Gc)&&!e.match(jc)}(e)||function(e){return Wc.test(e)}(e))}const id="$",ad=".";class od{constructor(e,t={}){if(this.key=void 0,this.isContext=void 0,this.isValue=void 0,this.isSibling=void 0,this.path=void 0,this.getter=void 0,this.map=void 0,"string"!=typeof e)throw new TypeError("ref must be a string, got: "+e);if(this.key=e.trim(),""===e)throw new TypeError("ref must be a non-empty string");this.isContext=this.key[0]===id,this.isValue=this.key[0]===ad,this.isSibling=!this.isContext&&!this.isValue;let n=this.isContext?id:this.isValue?ad:"";this.path=this.key.slice(n.length),this.getter=this.path&&Qc.getter(this.path,!0),this.map=t.map}getValue(e,t,n){let r=this.isContext?n:this.isValue?e:t;return this.getter&&(r=this.getter(r||{})),this.map&&(r=this.map(r)),r}cast(e,t){return this.getValue(e,null==t?void 0:t.parent,null==t?void 0:t.context)}resolve(){return this}describe(){return{type:"ref",key:this.key}}toString(){return`Ref(${this.key})`}static isRef(e){return e&&e.__isYupRef}}function sd(){return sd=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},sd.apply(this,arguments)}function ud(e){function t(t,n){let{value:r,path:i="",label:a,options:o,originalValue:s,sync:u}=t,l=function(e,t){if(null==e)return{};var n,r,i={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}(t,["value","path","label","options","originalValue","sync"]);const{name:c,test:d,params:f,message:h}=e;let{parent:p,context:m}=o;function _(e){return od.isRef(e)?e.getValue(r,p,m):e}function y(e={}){const t=Vc(sd({value:r,originalValue:s,label:a,path:e.path||i},f,e.params),_),n=new hu(hu.formatError(e.message||h,t),r,t.path,e.type||c);return n.params=t,n}let g,v=sd({path:i,parent:p,type:c,createError:y,resolve:_,options:o,originalValue:s},l);if(u){try{var A;if(g=d.call(v,r,v),"function"==typeof(null==(A=g)?void 0:A.then))throw new Error(`Validation test of type: "${v.type}" returned a Promise during a synchronous validate. This test will finish after the validate call has returned`)}catch(e){return void n(e)}hu.isError(g)?n(g):g?n(null,g):n(y())}else try{Promise.resolve(d.call(v,r,v)).then((e=>{hu.isError(e)?n(e):e?n(null,e):n(y())})).catch(n)}catch(e){n(e)}}return t.OPTIONS=e,t}od.prototype.__isYupRef=!0;function ld(e,t,n,r=n){let i,a,o;return t?(Qc.forEach(t,((s,u,l)=>{let c=u?(e=>e.substr(0,e.length-1).substr(1))(s):s;if((e=e.resolve({context:r,parent:i,value:n})).innerType){let r=l?parseInt(c,10):0;if(n&&r>=n.length)throw new Error(`Yup.reach cannot resolve an array item at index: ${s}, in the path: ${t}. because there is no value at that index. `);i=n,n=n&&n[r],e=e.innerType}if(!l){if(!e.fields||!e.fields[c])throw new Error(`The schema does not contain the path: ${t}. (failed at: ${o} which is a type: "${e._type}")`);i=n,n=n&&n[c],e=e.fields[c]}a=c,o=u?"["+s+"]":"."+s})),{schema:e,parent:i,parentPath:a}):{parent:i,parentPath:t,schema:e}}class cd{constructor(){this.list=void 0,this.refs=void 0,this.list=new Set,this.refs=new Map}get size(){return this.list.size+this.refs.size}describe(){const e=[];for(const t of this.list)e.push(t);for(const[,t]of this.refs)e.push(t.describe());return e}toArray(){return Array.from(this.list).concat(Array.from(this.refs.values()))}resolveAll(e){return this.toArray().reduce(((t,n)=>t.concat(od.isRef(n)?e(n):n)),[])}add(e){od.isRef(e)?this.refs.set(e.key,e):this.list.add(e)}delete(e){od.isRef(e)?this.refs.delete(e.key):this.list.delete(e)}clone(){const e=new cd;return e.list=new Set(this.list),e.refs=new Map(this.refs),e}merge(e,t){const n=this.clone();return e.list.forEach((e=>n.add(e))),e.refs.forEach((e=>n.add(e))),t.list.forEach((e=>n.delete(e))),t.refs.forEach((e=>n.delete(e))),n}}function dd(){return dd=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},dd.apply(this,arguments)}class fd{constructor(e){this.deps=[],this.tests=void 0,this.transforms=void 0,this.conditions=[],this._mutate=void 0,this._typeError=void 0,this._whitelist=new cd,this._blacklist=new cd,this.exclusiveTests=Object.create(null),this.spec=void 0,this.tests=[],this.transforms=[],this.withMutation((()=>{this.typeError(fo.notType)})),this.type=(null==e?void 0:e.type)||"mixed",this.spec=dd({strip:!1,strict:!1,abortEarly:!0,recursive:!0,nullable:!1,presence:"optional"},null==e?void 0:e.spec)}get _type(){return this.type}_typeCheck(e){return!0}clone(e){if(this._mutate)return e&&Object.assign(this.spec,e),this;const t=Object.create(Object.getPrototypeOf(this));return t.type=this.type,t._typeError=this._typeError,t._whitelistError=this._whitelistError,t._blacklistError=this._blacklistError,t._whitelist=this._whitelist.clone(),t._blacklist=this._blacklist.clone(),t.exclusiveTests=dd({},this.exclusiveTests),t.deps=[...this.deps],t.conditions=[...this.conditions],t.tests=[...this.tests],t.transforms=[...this.transforms],t.spec=ro(dd({},this.spec,e)),t}label(e){let t=this.clone();return t.spec.label=e,t}meta(...e){if(0===e.length)return this.spec.meta;let t=this.clone();return t.spec.meta=Object.assign(t.spec.meta||{},e[0]),t}withMutation(e){let t=this._mutate;this._mutate=!0;let n=e(this);return this._mutate=t,n}concat(e){if(!e||e===this)return this;if(e.type!==this.type&&"mixed"!==this.type)throw new TypeError(`You cannot \`concat()\` schema's of different types: ${this.type} and ${e.type}`);let t=this,n=e.clone();const r=dd({},t.spec,n.spec);return n.spec=r,n._typeError||(n._typeError=t._typeError),n._whitelistError||(n._whitelistError=t._whitelistError),n._blacklistError||(n._blacklistError=t._blacklistError),n._whitelist=t._whitelist.merge(e._whitelist,e._blacklist),n._blacklist=t._blacklist.merge(e._blacklist,e._whitelist),n.tests=t.tests,n.exclusiveTests=t.exclusiveTests,n.withMutation((t=>{e.tests.forEach((e=>{t.test(e.OPTIONS)}))})),n.transforms=[...t.transforms,...n.transforms],n}isType(e){return!(!this.spec.nullable||null!==e)||this._typeCheck(e)}resolve(e){let t=this;if(t.conditions.length){let n=t.conditions;t=t.clone(),t.conditions=[],t=n.reduce(((t,n)=>n.resolve(t,e)),t),t=t.resolve(e)}return t}cast(e,t={}){let n=this.resolve(dd({value:e},t)),r=n._cast(e,t);if(void 0!==e&&!1!==t.assert&&!0!==n.isType(r)){let i=co(e),a=co(r);throw new TypeError(`The value of ${t.path||"field"} could not be cast to a value that satisfies the schema type: "${n._type}". \n\nattempted value: ${i} \n`+(a!==i?`result of cast: ${a}`:""))}return r}_cast(e,t){let n=void 0===e?e:this.transforms.reduce(((t,n)=>n.call(this,t,e,this)),e);return void 0===n&&(n=this.getDefault()),n}_validate(e,t={},n){let{sync:r,path:i,from:a=[],originalValue:o=e,strict:s=this.spec.strict,abortEarly:u=this.spec.abortEarly}=t,l=e;s||(l=this._cast(l,dd({assert:!1},t)));let c={value:l,path:i,options:t,originalValue:o,schema:this,label:this.spec.label,sync:r,from:a},d=[];this._typeError&&d.push(this._typeError);let f=[];this._whitelistError&&f.push(this._whitelistError),this._blacklistError&&f.push(this._blacklistError),pu({args:c,value:l,path:i,sync:r,tests:d,endEarly:u},(e=>{e?n(e,l):pu({tests:this.tests.concat(f),args:c,path:i,sync:r,value:l,endEarly:u},n)}))}validate(e,t,n){let r=this.resolve(dd({},t,{value:e}));return"function"==typeof n?r._validate(e,t,n):new Promise(((n,i)=>r._validate(e,t,((e,t)=>{e?i(e):n(t)}))))}validateSync(e,t){let n;return this.resolve(dd({},t,{value:e}))._validate(e,dd({},t,{sync:!0}),((e,t)=>{if(e)throw e;n=t})),n}isValid(e,t){return this.validate(e,t).then((()=>!0),(e=>{if(hu.isError(e))return!1;throw e}))}isValidSync(e,t){try{return this.validateSync(e,t),!0}catch(e){if(hu.isError(e))return!1;throw e}}_getDefault(){let e=this.spec.default;return null==e?e:"function"==typeof e?e.call(this):ro(e)}getDefault(e){return this.resolve(e||{})._getDefault()}default(e){if(0===arguments.length)return this._getDefault();return this.clone({default:e})}strict(e=!0){let t=this.clone();return t.spec.strict=e,t}_isPresent(e){return null!=e}defined(e=fo.defined){return this.test({message:e,name:"defined",exclusive:!0,test:e=>void 0!==e})}required(e=fo.required){return this.clone({presence:"required"}).withMutation((t=>t.test({message:e,name:"required",exclusive:!0,test(e){return this.schema._isPresent(e)}})))}notRequired(){let e=this.clone({presence:"optional"});return e.tests=e.tests.filter((e=>"required"!==e.OPTIONS.name)),e}nullable(e=!0){return this.clone({nullable:!1!==e})}transform(e){let t=this.clone();return t.transforms.push(e),t}test(...e){let t;if(t=1===e.length?"function"==typeof e[0]?{test:e[0]}:e[0]:2===e.length?{name:e[0],test:e[1]}:{name:e[0],message:e[1],test:e[2]},void 0===t.message&&(t.message=fo.default),"function"!=typeof t.test)throw new TypeError("`test` is a required parameters");let n=this.clone(),r=ud(t),i=t.exclusive||t.name&&!0===n.exclusiveTests[t.name];if(t.exclusive&&!t.name)throw new TypeError("Exclusive tests must provide a unique `name` identifying the test");return t.name&&(n.exclusiveTests[t.name]=!!t.exclusive),n.tests=n.tests.filter((e=>{if(e.OPTIONS.name===t.name){if(i)return!1;if(e.OPTIONS.test===r.OPTIONS.test)return!1}return!0})),n.tests.push(r),n}when(e,t){Array.isArray(e)||"string"==typeof e||(t=e,e=".");let n=this.clone(),r=cu(e).map((e=>new od(e)));return r.forEach((e=>{e.isSibling&&n.deps.push(e.key)})),n.conditions.push(new lu(r,t)),n}typeError(e){let t=this.clone();return t._typeError=ud({message:e,name:"typeError",test(e){return!(void 0!==e&&!this.schema.isType(e))||this.createError({params:{type:this.schema._type}})}}),t}oneOf(e,t=fo.oneOf){let n=this.clone();return e.forEach((e=>{n._whitelist.add(e),n._blacklist.delete(e)})),n._whitelistError=ud({message:t,name:"oneOf",test(e){if(void 0===e)return!0;let t=this.schema._whitelist,n=t.resolveAll(this.resolve);return!!n.includes(e)||this.createError({params:{values:t.toArray().join(", "),resolved:n}})}}),n}notOneOf(e,t=fo.notOneOf){let n=this.clone();return e.forEach((e=>{n._blacklist.add(e),n._whitelist.delete(e)})),n._blacklistError=ud({message:t,name:"notOneOf",test(e){let t=this.schema._blacklist,n=t.resolveAll(this.resolve);return!n.includes(e)||this.createError({params:{values:t.toArray().join(", "),resolved:n}})}}),n}strip(e=!0){let t=this.clone();return t.spec.strip=e,t}describe(){const e=this.clone(),{label:t,meta:n}=e.spec,r={meta:n,label:t,type:e.type,oneOf:e._whitelist.describe(),notOneOf:e._blacklist.describe(),tests:e.tests.map((e=>({name:e.OPTIONS.name,params:e.OPTIONS.params}))).filter(((e,t,n)=>n.findIndex((t=>t.name===e.name))===t))};return r}}fd.prototype.__isYupSchema__=!0;for(const e of["validate","validateSync"])fd.prototype[`${e}At`]=function(t,n,r={}){const{parent:i,parentPath:a,schema:o}=ld(this,t,n,r.context);return o[e](i&&i[a],dd({},r,{parent:i,path:t}))};for(const e of["equals","is"])fd.prototype[e]=fd.prototype.oneOf;for(const e of["not","nope"])fd.prototype[e]=fd.prototype.notOneOf;fd.prototype.optional=fd.prototype.notRequired;const hd=fd;function pd(){return new hd}pd.prototype=hd.prototype;const md=e=>null==e;function _d(){return new yd}class yd extends fd{constructor(){super({type:"boolean"}),this.withMutation((()=>{this.transform((function(e){if(!this.isType(e)){if(/^(true|1)$/i.test(String(e)))return!0;if(/^(false|0)$/i.test(String(e)))return!1}return e}))}))}_typeCheck(e){return e instanceof Boolean&&(e=e.valueOf()),"boolean"==typeof e}isTrue(e=_o.isValue){return this.test({message:e,name:"is-value",exclusive:!0,params:{value:"true"},test:e=>md(e)||!0===e})}isFalse(e=_o.isValue){return this.test({message:e,name:"is-value",exclusive:!0,params:{value:"false"},test:e=>md(e)||!1===e})}}_d.prototype=yd.prototype;let gd=/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i,vd=/^((https?|ftp):)?\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i,Ad=/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i,Ed=e=>md(e)||e===e.trim(),bd={}.toString();function Sd(){return new Md}class Md extends fd{constructor(){super({type:"string"}),this.withMutation((()=>{this.transform((function(e){if(this.isType(e))return e;if(Array.isArray(e))return e;const t=null!=e&&e.toString?e.toString():e;return t===bd?e:t}))}))}_typeCheck(e){return e instanceof String&&(e=e.valueOf()),"string"==typeof e}_isPresent(e){return super._isPresent(e)&&!!e.length}length(e,t=ho.length){return this.test({message:t,name:"length",exclusive:!0,params:{length:e},test(t){return md(t)||t.length===this.resolve(e)}})}min(e,t=ho.min){return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return md(t)||t.length>=this.resolve(e)}})}max(e,t=ho.max){return this.test({name:"max",exclusive:!0,message:t,params:{max:e},test(t){return md(t)||t.length<=this.resolve(e)}})}matches(e,t){let n,r,i=!1;return t&&("object"==typeof t?({excludeEmptyString:i=!1,message:n,name:r}=t):n=t),this.test({name:r||"matches",message:n||ho.matches,params:{regex:e},test:t=>md(t)||""===t&&i||-1!==t.search(e)})}email(e=ho.email){return this.matches(gd,{name:"email",message:e,excludeEmptyString:!0})}url(e=ho.url){return this.matches(vd,{name:"url",message:e,excludeEmptyString:!0})}uuid(e=ho.uuid){return this.matches(Ad,{name:"uuid",message:e,excludeEmptyString:!1})}ensure(){return this.default("").transform((e=>null===e?"":e))}trim(e=ho.trim){return this.transform((e=>null!=e?e.trim():e)).test({message:e,name:"trim",test:Ed})}lowercase(e=ho.lowercase){return this.transform((e=>md(e)?e:e.toLowerCase())).test({message:e,name:"string_case",exclusive:!0,test:e=>md(e)||e===e.toLowerCase()})}uppercase(e=ho.uppercase){return this.transform((e=>md(e)?e:e.toUpperCase())).test({message:e,name:"string_case",exclusive:!0,test:e=>md(e)||e===e.toUpperCase()})}}Sd.prototype=Md.prototype;function Td(){return new wd}class wd extends fd{constructor(){super({type:"number"}),this.withMutation((()=>{this.transform((function(e){let t=e;if("string"==typeof t){if(t=t.replace(/\s/g,""),""===t)return NaN;t=+t}return this.isType(t)?t:parseFloat(t)}))}))}_typeCheck(e){return e instanceof Number&&(e=e.valueOf()),"number"==typeof e&&!(e=>e!=+e)(e)}min(e,t=po.min){return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return md(t)||t>=this.resolve(e)}})}max(e,t=po.max){return this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(t){return md(t)||t<=this.resolve(e)}})}lessThan(e,t=po.lessThan){return this.test({message:t,name:"max",exclusive:!0,params:{less:e},test(t){return md(t)||t<this.resolve(e)}})}moreThan(e,t=po.moreThan){return this.test({message:t,name:"min",exclusive:!0,params:{more:e},test(t){return md(t)||t>this.resolve(e)}})}positive(e=po.positive){return this.moreThan(0,e)}negative(e=po.negative){return this.lessThan(0,e)}integer(e=po.integer){return this.test({name:"integer",message:e,test:e=>md(e)||Number.isInteger(e)})}truncate(){return this.transform((e=>md(e)?e:0|e))}round(e){var t;let n=["ceil","floor","round","trunc"];if("trunc"===(e=(null==(t=e)?void 0:t.toLowerCase())||"round"))return this.truncate();if(-1===n.indexOf(e.toLowerCase()))throw new TypeError("Only valid options for round() are: "+n.join(", "));return this.transform((t=>md(t)?t:Math[e](t)))}}Td.prototype=wd.prototype;var Od=/^(\d{4}|[+\-]\d{6})(?:-?(\d{2})(?:-?(\d{2}))?)?(?:[ T]?(\d{2}):?(\d{2})(?::?(\d{2})(?:[,\.](\d{1,}))?)?(?:(Z)|([+\-])(\d{2})(?::?(\d{2}))?)?)?$/;let Nd=new Date("");function Cd(){return new Ld}class Ld extends fd{constructor(){super({type:"date"}),this.withMutation((()=>{this.transform((function(e){return this.isType(e)?e:(e=function(e){var t,n,r=[1,4,5,6,7,10,11],i=0;if(n=Od.exec(e)){for(var a,o=0;a=r[o];++o)n[a]=+n[a]||0;n[2]=(+n[2]||1)-1,n[3]=+n[3]||1,n[7]=n[7]?String(n[7]).substr(0,3):0,void 0!==n[8]&&""!==n[8]||void 0!==n[9]&&""!==n[9]?("Z"!==n[8]&&void 0!==n[9]&&(i=60*n[10]+n[11],"+"===n[9]&&(i=0-i)),t=Date.UTC(n[1],n[2],n[3],n[4],n[5]+i,n[6],n[7])):t=+new Date(n[1],n[2],n[3],n[4],n[5],n[6],n[7])}else t=Date.parse?Date.parse(e):NaN;return t}(e),isNaN(e)?Nd:new Date(e))}))}))}_typeCheck(e){return t=e,"[object Date]"===Object.prototype.toString.call(t)&&!isNaN(e.getTime());var t}prepareParam(e,t){let n;if(od.isRef(e))n=e;else{let r=this.cast(e);if(!this._typeCheck(r))throw new TypeError(`\`${t}\` must be a Date or a value that can be \`cast()\` to a Date`);n=r}return n}min(e,t=mo.min){let n=this.prepareParam(e,"min");return this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(e){return md(e)||e>=this.resolve(n)}})}max(e,t=mo.max){let n=this.prepareParam(e,"max");return this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(e){return md(e)||e<=this.resolve(n)}})}}Ld.INVALID_DATE=Nd,Cd.prototype=Ld.prototype,Cd.INVALID_DATE=Nd;var Dd=function(e,t,n,r){var i=-1,a=null==e?0:e.length;for(r&&a&&(n=e[++i]);++i<a;)n=t(n,e[i],i,e);return n};var $d=function(e){return function(t){return null==e?void 0:e[t]}},Id=$d({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),xd=Bs,kd=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,zd=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");var Rd=function(e){return(e=xd(e))&&e.replace(kd,Id).replace(zd,"")},Zd=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;var Pd=function(e){return e.match(Zd)||[]},Fd=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;var Ud=function(e){return Fd.test(e)},Bd="\\ud800-\\udfff",Vd="\\u2700-\\u27bf",Hd="a-z\\xdf-\\xf6\\xf8-\\xff",Yd="A-Z\\xc0-\\xd6\\xd8-\\xde",jd="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Gd="["+jd+"]",Wd="\\d+",qd="["+Vd+"]",Kd="["+Hd+"]",Jd="[^"+Bd+jd+Wd+Vd+Hd+Yd+"]",Xd="(?:\\ud83c[\\udde6-\\uddff]){2}",Qd="[\\ud800-\\udbff][\\udc00-\\udfff]",ef="["+Yd+"]",tf="(?:"+Kd+"|"+Jd+")",nf="(?:"+ef+"|"+Jd+")",rf="(?:['’](?:d|ll|m|re|s|t|ve))?",af="(?:['’](?:D|LL|M|RE|S|T|VE))?",of="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",sf="[\\ufe0e\\ufe0f]?",uf=sf+of+("(?:\\u200d(?:"+["[^"+Bd+"]",Xd,Qd].join("|")+")"+sf+of+")*"),lf="(?:"+[qd,Xd,Qd].join("|")+")"+uf,cf=RegExp([ef+"?"+Kd+"+"+rf+"(?="+[Gd,ef,"$"].join("|")+")",nf+"+"+af+"(?="+[Gd,ef+tf,"$"].join("|")+")",ef+"?"+tf+"+"+rf,ef+"+"+af,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Wd,lf].join("|"),"g");var df=function(e){return e.match(cf)||[]},ff=Pd,hf=Ud,pf=Bs,mf=df;var _f=function(e,t,n){return e=pf(e),void 0===(t=n?void 0:t)?hf(e)?mf(e):ff(e):e.match(t)||[]},yf=Dd,gf=Rd,vf=_f,Af=RegExp("['’]","g");var Ef=function(e){return function(t){return yf(vf(gf(t).replace(Af,"")),e,"")}},bf=Ef((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()})),Sf=bf;var Mf=function(e,t,n){var r=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=Array(i);++r<i;)a[r]=e[r+t];return a},Tf=Mf;var wf=function(e,t,n){var r=e.length;return n=void 0===n?r:n,!t&&n>=r?e:Tf(e,t,n)},Of=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");var Nf=function(e){return Of.test(e)};var Cf=function(e){return e.split("")},Lf="\\ud800-\\udfff",Df="["+Lf+"]",$f="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",If="\\ud83c[\\udffb-\\udfff]",xf="[^"+Lf+"]",kf="(?:\\ud83c[\\udde6-\\uddff]){2}",zf="[\\ud800-\\udbff][\\udc00-\\udfff]",Rf="(?:"+$f+"|"+If+")"+"?",Zf="[\\ufe0e\\ufe0f]?",Pf=Zf+Rf+("(?:\\u200d(?:"+[xf,kf,zf].join("|")+")"+Zf+Rf+")*"),Ff="(?:"+[xf+$f+"?",$f,kf,zf,Df].join("|")+")",Uf=RegExp(If+"(?="+If+")|"+Ff+Pf,"g");var Bf=function(e){return e.match(Uf)||[]},Vf=Cf,Hf=Nf,Yf=Bf;var jf=function(e){return Hf(e)?Yf(e):Vf(e)},Gf=wf,Wf=Nf,qf=jf,Kf=Bs;var Jf=function(e){return function(t){t=Kf(t);var n=Wf(t)?qf(t):void 0,r=n?n[0]:t.charAt(0),i=n?Gf(n,1).join(""):t.slice(1);return r[e]()+i}},Xf=Jf("toUpperCase"),Qf=Bs,eh=Xf;var th=function(e){return eh(Qf(e).toLowerCase())},nh=th,rh=Ef((function(e,t,n){return t=t.toLowerCase(),e+(n?nh(t):t)})),ih=rh,ah=gu,oh=zu,sh=Pc;var uh=function(e,t){var n={};return t=sh(t),oh(e,(function(e,r,i){ah(n,t(e,r,i),e)})),n},lh={exports:{}};function ch(e,t){var n=e.length,r=new Array(n),i={},a=n,o=function(e){for(var t=new Map,n=0,r=e.length;n<r;n++){var i=e[n];t.has(i[0])||t.set(i[0],new Set),t.has(i[1])||t.set(i[1],new Set),t.get(i[0]).add(i[1])}return t}(t),s=function(e){for(var t=new Map,n=0,r=e.length;n<r;n++)t.set(e[n],n);return t}(e);for(t.forEach((function(e){if(!s.has(e[0])||!s.has(e[1]))throw new Error("Unknown node. There is an unknown node in the supplied edges.")}));a--;)i[a]||u(e[a],a,new Set);return r;function u(e,t,a){if(a.has(e)){var l;try{l=", node was:"+JSON.stringify(e)}catch(e){l=""}throw new Error("Cyclic dependency"+l)}if(!s.has(e))throw new Error("Found unknown node. Make sure to provided all involved nodes. Unknown node: "+JSON.stringify(e));if(!i[t]){i[t]=!0;var c=o.get(e)||new Set;if(t=(c=Array.from(c)).length){a.add(e);do{var d=c[--t];u(d,s.get(d),a)}while(t);a.delete(e)}r[--n]=e}}}function dh(e,t){let n=1/0;return e.some(((e,r)=>{var i;if(-1!==(null==(i=t.path)?void 0:i.indexOf(e)))return n=r,!0})),n}function fh(e){return(t,n)=>dh(e,t)-dh(e,n)}function hh(){return hh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},hh.apply(this,arguments)}lh.exports=function(e){return ch(function(e){for(var t=new Set,n=0,r=e.length;n<r;n++){var i=e[n];t.add(i[0]),t.add(i[1])}return Array.from(t)}(e),e)},lh.exports.array=ch;let ph=e=>"[object Object]"===Object.prototype.toString.call(e);const mh=fh([]);class _h extends fd{constructor(e){super({type:"object"}),this.fields=Object.create(null),this._sortErrors=mh,this._nodes=[],this._excludedEdges=[],this.withMutation((()=>{this.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null})),e&&this.shape(e)}))}_typeCheck(e){return ph(e)||"function"==typeof e}_cast(e,t={}){var n;let r=super._cast(e,t);if(void 0===r)return this.getDefault();if(!this._typeCheck(r))return r;let i=this.fields,a=null!=(n=t.stripUnknown)?n:this.spec.noUnknown,o=this._nodes.concat(Object.keys(r).filter((e=>-1===this._nodes.indexOf(e)))),s={},u=hh({},t,{parent:s,__validating:t.__validating||!1}),l=!1;for(const e of o){let n=i[e],o=su(r,e);if(n){let i,a=r[e];u.path=(t.path?`${t.path}.`:"")+e,n=n.resolve({value:a,context:t.context,parent:s});let o="spec"in n?n.spec:void 0,c=null==o?void 0:o.strict;if(null==o?void 0:o.strip){l=l||e in r;continue}i=t.__validating&&c?r[e]:n.cast(r[e],u),void 0!==i&&(s[e]=i)}else o&&!a&&(s[e]=r[e]);s[e]!==r[e]&&(l=!0)}return l?s:r}_validate(e,t={},n){let r=[],{sync:i,from:a=[],originalValue:o=e,abortEarly:s=this.spec.abortEarly,recursive:u=this.spec.recursive}=t;a=[{schema:this,value:o},...a],t.__validating=!0,t.originalValue=o,t.from=a,super._validate(e,t,((e,l)=>{if(e){if(!hu.isError(e)||s)return void n(e,l);r.push(e)}if(!u||!ph(l))return void n(r[0]||null,l);o=o||l;let c=this._nodes.map((e=>(n,r)=>{let i=-1===e.indexOf(".")?(t.path?`${t.path}.`:"")+e:`${t.path||""}["${e}"]`,s=this.fields[e];s&&"validate"in s?s.validate(l[e],hh({},t,{path:i,from:a,strict:!0,parent:l,originalValue:o[e]}),r):r(null)}));pu({sync:i,tests:c,value:l,errors:r,endEarly:s,sort:this._sortErrors,path:t.path},n)}))}clone(e){const t=super.clone(e);return t.fields=hh({},this.fields),t._nodes=this._nodes,t._excludedEdges=this._excludedEdges,t._sortErrors=this._sortErrors,t}concat(e){let t=super.concat(e),n=t.fields;for(let[e,t]of Object.entries(this.fields)){const r=n[e];void 0===r?n[e]=t:r instanceof fd&&t instanceof fd&&(n[e]=t.concat(r))}return t.withMutation((()=>t.shape(n,this._excludedEdges)))}getDefaultFromShape(){let e={};return this._nodes.forEach((t=>{const n=this.fields[t];e[t]="default"in n?n.getDefault():void 0})),e}_getDefault(){return"default"in this.spec?super._getDefault():this._nodes.length?this.getDefaultFromShape():void 0}shape(e,t=[]){let n=this.clone(),r=Object.assign(n.fields,e);return n.fields=r,n._sortErrors=fh(Object.keys(r)),t.length&&(Array.isArray(t[0])||(t=[t]),n._excludedEdges=[...n._excludedEdges,...t]),n._nodes=function(e,t=[]){let n=[],r=new Set,i=new Set(t.map((([e,t])=>`${e}-${t}`)));function a(e,t){let a=Qc.split(e)[0];r.add(a),i.has(`${t}-${a}`)||n.push([t,a])}for(const t in e)if(su(e,t)){let n=e[t];r.add(t),od.isRef(n)&&n.isSibling?a(n.path,t):uu(n)&&"deps"in n&&n.deps.forEach((e=>a(e,t)))}return lh.exports.array(Array.from(r),n).reverse()}(r,n._excludedEdges),n}pick(e){const t={};for(const n of e)this.fields[n]&&(t[n]=this.fields[n]);return this.clone().withMutation((e=>(e.fields={},e.shape(t))))}omit(e){const t=this.clone(),n=t.fields;t.fields={};for(const t of e)delete n[t];return t.withMutation((()=>t.shape(n)))}from(e,t,n){let r=Qc.getter(e,!0);return this.transform((i=>{if(null==i)return i;let a=i;return su(i,e)&&(a=hh({},i),n||delete a[e],a[t]=r(i)),a}))}noUnknown(e=!0,t=yo.noUnknown){"string"==typeof e&&(t=e,e=!0);let n=this.test({name:"noUnknown",exclusive:!0,message:t,test(t){if(null==t)return!0;const n=function(e,t){let n=Object.keys(e.fields);return Object.keys(t).filter((e=>-1===n.indexOf(e)))}(this.schema,t);return!e||0===n.length||this.createError({params:{unknown:n.join(", ")}})}});return n.spec.noUnknown=e,n}unknown(e=!0,t=yo.noUnknown){return this.noUnknown(!e,t)}transformKeys(e){return this.transform((t=>t&&uh(t,((t,n)=>e(n)))))}camelCase(){return this.transformKeys(ih)}snakeCase(){return this.transformKeys(Sf)}constantCase(){return this.transformKeys((e=>Sf(e).toUpperCase()))}describe(){let e=super.describe();return e.fields=Vc(this.fields,(e=>e.describe())),e}}function yh(e){return new _h(e)}function gh(){return gh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},gh.apply(this,arguments)}function vh(e){return new Ah(e)}yh.prototype=_h.prototype;class Ah extends fd{constructor(e){super({type:"array"}),this.innerType=void 0,this.innerType=e,this.withMutation((()=>{this.transform((function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(t){e=null}return this.isType(e)?e:null}))}))}_typeCheck(e){return Array.isArray(e)}get _subType(){return this.innerType}_cast(e,t){const n=super._cast(e,t);if(!this._typeCheck(n)||!this.innerType)return n;let r=!1;const i=n.map(((e,n)=>{const i=this.innerType.cast(e,gh({},t,{path:`${t.path||""}[${n}]`}));return i!==e&&(r=!0),i}));return r?i:n}_validate(e,t={},n){var r,i;let a=[],o=t.sync,s=t.path,u=this.innerType,l=null!=(r=t.abortEarly)?r:this.spec.abortEarly,c=null!=(i=t.recursive)?i:this.spec.recursive,d=null!=t.originalValue?t.originalValue:e;super._validate(e,t,((e,r)=>{if(e){if(!hu.isError(e)||l)return void n(e,r);a.push(e)}if(!c||!u||!this._typeCheck(r))return void n(a[0]||null,r);d=d||r;let i=new Array(r.length);for(let e=0;e<r.length;e++){let n=r[e],a=`${t.path||""}[${e}]`,o=gh({},t,{path:a,strict:!0,parent:r,index:e,originalValue:d[e]});i[e]=(e,t)=>u.validate(n,o,t)}pu({sync:o,path:s,value:r,errors:a,endEarly:l,tests:i},n)}))}clone(e){const t=super.clone(e);return t.innerType=this.innerType,t}concat(e){let t=super.concat(e);return t.innerType=this.innerType,e.innerType&&(t.innerType=t.innerType?t.innerType.concat(e.innerType):e.innerType),t}of(e){let t=this.clone();if(!uu(e))throw new TypeError("`array.of()` sub-schema must be a valid yup schema not: "+co(e));return t.innerType=e,t}length(e,t=go.length){return this.test({message:t,name:"length",exclusive:!0,params:{length:e},test(t){return md(t)||t.length===this.resolve(e)}})}min(e,t){return t=t||go.min,this.test({message:t,name:"min",exclusive:!0,params:{min:e},test(t){return md(t)||t.length>=this.resolve(e)}})}max(e,t){return t=t||go.max,this.test({message:t,name:"max",exclusive:!0,params:{max:e},test(t){return md(t)||t.length<=this.resolve(e)}})}ensure(){return this.default((()=>[])).transform(((e,t)=>this._typeCheck(e)?e:null==t?[]:[].concat(t)))}compact(e){let t=e?(t,n,r)=>!e(t,n,r):e=>!!e;return this.transform((e=>null!=e?e.filter(t):e))}describe(){let e=super.describe();return this.innerType&&(e.innerType=this.innerType.describe()),e}nullable(e=!0){return super.nullable(e)}defined(){return super.defined()}required(e){return super.required(e)}}vh.prototype=Ah.prototype;class Eh{constructor(e){this.type="lazy",this.__isYupSchema__=!0,this.__inputType=void 0,this.__outputType=void 0,this._resolve=(e,t={})=>{let n=this.builder(e,t);if(!uu(n))throw new TypeError("lazy() functions must return a valid schema");return n.resolve(t)},this.builder=e}resolve(e){return this._resolve(e.value,e)}cast(e,t){return this._resolve(e,t).cast(e,t)}validate(e,t,n){return this._resolve(e,t).validate(e,t,n)}validateSync(e,t){return this._resolve(e,t).validateSync(e,t)}validateAt(e,t,n){return this._resolve(t,n).validateAt(e,t,n)}validateSyncAt(e,t,n){return this._resolve(t,n).validateSyncAt(e,t,n)}describe(){return null}isValid(e,t){return this._resolve(e,t).isValid(e,t)}isValidSync(e,t){return this._resolve(e,t).isValidSync(e,t)}}function bh(e,t,n){if(!e||!uu(e.prototype))throw new TypeError("You must provide a yup schema constructor function");if("string"!=typeof t)throw new TypeError("A Method name must be provided");if("function"!=typeof n)throw new TypeError("Method function must be provided");e.prototype[t]=n}var Sh=Object.freeze({__proto__:null,mixed:pd,bool:_d,boolean:_d,string:Sd,number:Td,date:Cd,object:yh,array:vh,ref:function(e,t){return new od(e,t)},lazy:function(e){return new Eh(e)},reach:(e,t,n,r)=>ld(e,t,n,r).schema,isSchema:uu,addMethod:bh,setLocale:function(e){Object.keys(e).forEach((t=>{Object.keys(e[t]).forEach((n=>{vo[t][n]=e[t][n]}))}))},ValidationError:hu,BaseSchema:fd,MixedSchema:hd,BooleanSchema:yd,StringSchema:Md,NumberSchema:wd,DateSchema:Ld,ObjectSchema:_h,ArraySchema:Ah});const Mh=["required","length","min","max","matches","email","url","uuid","positive","negative","integer","lessThan","moreThan","when","filled","empty","equals","notEquals","includes","excludes","uinfin"];var Th;!function(e){const t=[];e.buildSchema=t=>{const r={},i=n(t);return Object.keys(i).forEach((n=>{const{schema:i,validationRules:a}=t[n];r[n]=e.buildFieldSchema(i,a)})),yh().shape(r)};const n=e=>{const t={...e};return Object.entries(t).forEach((([e,{validationRules:n}])=>{const r=n?.filter((e=>!("when"in e)))||[],i=n?.filter((e=>"when"in e)).map((e=>{const n={...e};return Object.keys(n.when).forEach((e=>{n.when[e]={...n.when[e],yupSchema:t[e].schema}})),n}))||[];t[e].validationRules=[...r,...i]})),t};e.buildFieldSchema=(n,r)=>{const i=r.filter((e=>Mh.includes(Object.keys(e)[0])||t.includes(Object.keys(e)[0])));return e.mapRules(n,i)},e.mapSchemaType=e=>{switch(e){case"string":return Sd().typeError("Only string values are allowed");case"number":return Td().typeError("Only number values are allowed");case"boolean":return _d().typeError("Only boolean values are allowed");case"array":return vh().typeError("Only array values are allowed");case"object":return yh().typeError("Only object values are allowed");default:return pd()}},e.mapRules=(n,r)=>(r.forEach((r=>{const i=Object.keys(r).filter((e=>Mh.includes(e)))?.[0];switch(!0){case r.required:n=n.required(r.errorMessage||"This field is required");break;case!!r.email:case!!r.url:case!!r.uuid:case!!r.positive:case!!r.negative:case!!r.integer:try{n=n[i](r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}break;case r.length>0:case r.min>0:case r.max>0:case!!r.lessThan:case!!r.moreThan:try{n=n[i](r[i],r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}break;case!!r.matches:{const e=r.matches.match(/\/(.*)\/([a-z]+)?/);try{n=n.matches(new RegExp(e[1],e[2]),r.errorMessage)}catch(e){console.warn(`error applying "${i}" condition to ${n.type} schema`)}}break;case!!r.when:Object.keys(r.when).forEach((t=>{const i=r.when[t].is,a=e.mapRules(e.mapSchemaType(n.type),r.when[t].then),o=r.when[t].otherwise&&e.mapRules(e.mapSchemaType(n.type),r.when[t].otherwise);n=Array.isArray(i)&&i.every((e=>"object"==typeof e))?n.when(t,(n=>{const s=e.mapRules(r.when[t].yupSchema.clone(),i);let u=!1;try{s.validateSync(n),u=!0}catch(e){}return u?a:o})):n.when(t,{is:i,then:a,otherwise:o})}))}const a=Object.keys(r).filter((e=>t.includes(e)))?.[0];a&&(n=n[a](r[a],r.errorMessage))})),n),e.addCondition=(e,n,r)=>{t.includes(n)?console.warn(`the validation condition "${n}" is not added because it already exists!`):(t.push(n),bh(Sh[e],n,(function(e,t){return this.test({name:n,message:t,test:(t,n)=>r(t,e,n)})})))}}(Th||(Th={}));var wh=ql;var Oh=function(e,t){return wh(e,t)};var Nh=function(e){return null==e},Ch=Ct,Lh=bn;var Dh,$h=function(e){return"number"==typeof e||Lh(e)&&"[object Number]"==Ch(e)};!function(e){e.LOCAL_S_PREFIX="S",e.LOCAL_T_PREFIX="T",e.FOREIGN_F_PREFIX="F",e.FOREIGN_G_PREFIX="G",e.FOREIGN_M_PREFIX="M"}(Dh||(Dh={}));const Ih=[2,7,6,5,4,3,2],xh=["J","Z","I","H","G","F","E","D","C","B","A"],kh=["X","W","U","T","R","Q","P","N","M","L","K"],zh=["X","W","U","T","R","Q","P","N","J","L","K"];function Rh(e){if("string"==typeof e){const t=function(e){return/^[STFGM]\d{7}[A-Z]$/.test(e)}(e),n=e.charAt(8)===function(e){let t=0;for(let n=0;n<7;++n)t+=Number(e.charAt(n+1))*Ih[n];const n=e.charAt(0);n!==Dh.LOCAL_T_PREFIX&&n!==Dh.FOREIGN_G_PREFIX||(t+=4);n===Dh.FOREIGN_M_PREFIX&&(t+=3);let r;r=n===Dh.LOCAL_S_PREFIX||n===Dh.LOCAL_T_PREFIX?xh[t%11]:n===Dh.FOREIGN_M_PREFIX?zh[t%11]:kh[t%11];return r}(e);return t&&n}return!1}Th.addCondition("string","uinfin",(e=>Rh(e)));const Zh=e=>$h(e)?Nh(e):ar(e);Th.addCondition("mixed","filled",(e=>!Zh(e))),Th.addCondition("mixed","empty",(e=>Zh(e))),Th.addCondition("mixed","equals",((e,t)=>!Zh(e)&&Oh(e,t))),Th.addCondition("mixed","notEquals",((e,t)=>!Zh(e)&&!Oh(e,t))),Th.addCondition("array","includes",((e,t)=>Array.isArray(t)?t.filter((t=>e.includes(t))).length===t.length:e.includes(t))),Th.addCondition("array","excludes",((e,t)=>Array.isArray(t)?e.length&&0===t.filter((t=>e.includes(t))).length:!e.includes(t)));const Ph=()=>{const{formValidationConfig:e,setFormValidationConfig:t}=c(Xa);return{formValidationConfig:e,setFieldValidationConfig:(e,n,r=[])=>{t((t=>({...t,[e]:{schema:n,validationRules:r}})))},removeFieldValidationConfig:e=>t((t=>{const n={...t};return delete n[e],n}))}},Fh=()=>{const{formValidationConfig:e}=c(Xa),[t,n]=u(),[r,i]=u(),[a,s]=u({});o((()=>{if(e){let t={},r={};Object.entries(e).forEach((([e,n])=>{if(!n.validationRules||0===n.validationRules.length)return void(t=Ka.upsert(t,e,{schema:n.schema,validationRules:[]}));const i=n.validationRules.filter((({soft:e})=>e)),a=n.validationRules.filter((({soft:e})=>!e));i.length&&(r=Ka.upsert(r,e,{schema:n.schema,validationRules:i})),a.length&&(t=Ka.upsert(t,e,{schema:n.schema,validationRules:a}))})),i(Th.buildSchema(r)),n(Th.buildSchema(t))}}),[e]);return{warnings:a,softValidationSchema:r,hardValidationSchema:t,performSoftValidation:(e,t)=>{try{e.validateSync(t,{abortEarly:!1}),s({})}catch(e){const t=e;if(ar(t))return;const n=t.inner.reduce(((e,t)=>(e[t.path]=t.message,e)),{});s(n)}}}},Uh=v.button`
|
|
195
|
-
background-color: ${g.Neutral[8]};
|
|
196
|
-
border: 1px solid ${g.Neutral[5]};
|
|
197
|
-
border-radius: 1rem;
|
|
198
|
-
display: inline-block;
|
|
199
|
-
padding: 0.063rem 0.438rem;
|
|
200
|
-
|
|
201
|
-
:hover {
|
|
202
|
-
box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.2);
|
|
203
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
:focus-visible {
|
|
207
|
-
outline: none;
|
|
208
|
-
box-shadow: 0 0 0 1px #024fa9;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
${e=>{if(e.isActive)return A`
|
|
212
|
-
background-color: ${g.Neutral[4](e)};
|
|
213
|
-
|
|
214
|
-
${Bh} {
|
|
215
|
-
color: ${g.Neutral[7](e)};
|
|
216
|
-
}
|
|
217
|
-
`}}
|
|
218
|
-
`,Bh=v(y.XSmall)``,Vh=({children:t,...n})=>e(Uh,{type:"button","aria-pressed":n?.isActive,...n,children:e(y.XSmall,{weight:"semibold",children:t})});var Hh={},Yh={},jh={},Gh={},Wh={};Object.defineProperty(Wh,"__esModule",{value:!0}),Wh.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((function(e){return e.charCodeAt(0)})));var qh={};Object.defineProperty(qh,"__esModule",{value:!0}),qh.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((function(e){return e.charCodeAt(0)})));var Kh={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.replaceCodePoint=e.fromCodePoint=void 0;var n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function r(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.fromCodePoint=null!==(t=String.fromCodePoint)&&void 0!==t?t:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.replaceCodePoint=r,e.default=function(t){return(0,e.fromCodePoint)(r(t))}}(Kh),function(e){var t=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=at&&at.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=at&&at.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=at&&at.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXML=e.decodeHTMLStrict=e.decodeHTMLAttribute=e.decodeHTML=e.determineBranch=e.EntityDecoder=e.DecodingMode=e.BinTrieFlags=e.fromCodePoint=e.replaceCodePoint=e.decodeCodePoint=e.xmlDecodeTree=e.htmlDecodeTree=void 0;var a=i(Wh);e.htmlDecodeTree=a.default;var o=i(qh);e.xmlDecodeTree=o.default;var s=r(Kh);e.decodeCodePoint=s.default;var u,l=Kh;Object.defineProperty(e,"replaceCodePoint",{enumerable:!0,get:function(){return l.replaceCodePoint}}),Object.defineProperty(e,"fromCodePoint",{enumerable:!0,get:function(){return l.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(u||(u={}));var c,d,f;function h(e){return e>=u.ZERO&&e<=u.NINE}function p(e){return e===u.EQUALS||function(e){return e>=u.UPPER_A&&e<=u.UPPER_Z||e>=u.LOWER_A&&e<=u.LOWER_Z||h(e)}(e)}!function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(c=e.BinTrieFlags||(e.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(d||(d={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(f=e.DecodingMode||(e.DecodingMode={}));var m=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=d.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=f.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=d.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case d.EntityStart:return e.charCodeAt(t)===u.NUM?(this.state=d.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=d.NamedEntity,this.stateNamedEntity(e,t));case d.NumericStart:return this.stateNumericStart(e,t);case d.NumericDecimal:return this.stateNumericDecimal(e,t);case d.NumericHex:return this.stateNumericHex(e,t);case d.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===u.LOWER_X?(this.state=d.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=d.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,r){if(t!==n){var i=n-t;this.result=this.result*Math.pow(r,i)+parseInt(e.substr(t,i),r),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var n,r=t;t<e.length;){var i=e.charCodeAt(t);if(!(h(i)||(n=i,n>=u.UPPER_A&&n<=u.UPPER_F||n>=u.LOWER_A&&n<=u.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t<e.length;){var r=e.charCodeAt(t);if(!h(r))return this.addToNumericResult(e,n,t,10),this.emitNumericEntity(r,2);t+=1}return this.addToNumericResult(e,n,t,10),-1},e.prototype.emitNumericEntity=function(e,t){var n;if(this.consumed<=t)return null===(n=this.errors)||void 0===n||n.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===u.SEMI)this.consumed+=1;else if(this.decodeMode===f.Strict)return 0;return this.emitCodePoint((0,s.replaceCodePoint)(this.result),this.consumed),this.errors&&(e!==u.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed},e.prototype.stateNamedEntity=function(e,t){for(var n=this.decodeTree,r=n[this.treeIndex],i=(r&c.VALUE_LENGTH)>>14;t<e.length;t++,this.excess++){var a=e.charCodeAt(t);if(this.treeIndex=y(n,r,this.treeIndex+Math.max(1,i),a),this.treeIndex<0)return 0===this.result||this.decodeMode===f.Attribute&&(0===i||p(a))?0:this.emitNotTerminatedNamedEntity();if(0!==(i=((r=n[this.treeIndex])&c.VALUE_LENGTH)>>14)){if(a===u.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==f.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&c.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var r=this.decodeTree;return this.emitCodePoint(1===t?r[e]&~c.VALUE_LENGTH:r[e+1],n),3===t&&this.emitCodePoint(r[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case d.NamedEntity:return 0===this.result||this.decodeMode===f.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case d.NumericDecimal:return this.emitNumericEntity(0,2);case d.NumericHex:return this.emitNumericEntity(0,3);case d.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case d.EntityStart:return 0}},e}();function _(e){var t="",n=new m(e,(function(e){return t+=(0,s.fromCodePoint)(e)}));return function(e,r){for(var i=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(i,a),n.startEntity(r);var o=n.write(e,a+1);if(o<0){i=a+n.end();break}i=a+o,a=0===o?i+1:i}var s=t+e.slice(i);return t="",s}}function y(e,t,n,r){var i=(t&c.BRANCH_LENGTH)>>7,a=t&c.JUMP_TABLE;if(0===i)return 0!==a&&r===a?n:-1;if(a){var o=r-a;return o<0||o>=i?-1:e[n+o]-1}for(var s=n,u=s+i-1;s<=u;){var l=s+u>>>1,d=e[l];if(d<r)s=l+1;else{if(!(d>r))return e[l+i];u=l-1}}return-1}e.EntityDecoder=m,e.determineBranch=y;var g=_(a.default),v=_(o.default);e.decodeHTML=function(e,t){return void 0===t&&(t=f.Legacy),g(e,t)},e.decodeHTMLAttribute=function(e){return g(e,f.Attribute)},e.decodeHTMLStrict=function(e){return g(e,f.Strict)},e.decodeXML=function(e){return v(e,f.Strict)}}(Gh),function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.QuoteType=void 0;var t,n,r,i=Gh;function a(e){return e===t.Space||e===t.NewLine||e===t.Tab||e===t.FormFeed||e===t.CarriageReturn}function o(e){return e===t.Slash||e===t.Gt||a(e)}function s(e){return e>=t.Zero&&e<=t.Nine}!function(e){e[e.Tab=9]="Tab",e[e.NewLine=10]="NewLine",e[e.FormFeed=12]="FormFeed",e[e.CarriageReturn=13]="CarriageReturn",e[e.Space=32]="Space",e[e.ExclamationMark=33]="ExclamationMark",e[e.Number=35]="Number",e[e.Amp=38]="Amp",e[e.SingleQuote=39]="SingleQuote",e[e.DoubleQuote=34]="DoubleQuote",e[e.Dash=45]="Dash",e[e.Slash=47]="Slash",e[e.Zero=48]="Zero",e[e.Nine=57]="Nine",e[e.Semi=59]="Semi",e[e.Lt=60]="Lt",e[e.Eq=61]="Eq",e[e.Gt=62]="Gt",e[e.Questionmark=63]="Questionmark",e[e.UpperA=65]="UpperA",e[e.LowerA=97]="LowerA",e[e.UpperF=70]="UpperF",e[e.LowerF=102]="LowerF",e[e.UpperZ=90]="UpperZ",e[e.LowerZ=122]="LowerZ",e[e.LowerX=120]="LowerX",e[e.OpeningSquareBracket=91]="OpeningSquareBracket"}(t||(t={})),function(e){e[e.Text=1]="Text",e[e.BeforeTagName=2]="BeforeTagName",e[e.InTagName=3]="InTagName",e[e.InSelfClosingTag=4]="InSelfClosingTag",e[e.BeforeClosingTagName=5]="BeforeClosingTagName",e[e.InClosingTagName=6]="InClosingTagName",e[e.AfterClosingTagName=7]="AfterClosingTagName",e[e.BeforeAttributeName=8]="BeforeAttributeName",e[e.InAttributeName=9]="InAttributeName",e[e.AfterAttributeName=10]="AfterAttributeName",e[e.BeforeAttributeValue=11]="BeforeAttributeValue",e[e.InAttributeValueDq=12]="InAttributeValueDq",e[e.InAttributeValueSq=13]="InAttributeValueSq",e[e.InAttributeValueNq=14]="InAttributeValueNq",e[e.BeforeDeclaration=15]="BeforeDeclaration",e[e.InDeclaration=16]="InDeclaration",e[e.InProcessingInstruction=17]="InProcessingInstruction",e[e.BeforeComment=18]="BeforeComment",e[e.CDATASequence=19]="CDATASequence",e[e.InSpecialComment=20]="InSpecialComment",e[e.InCommentLike=21]="InCommentLike",e[e.BeforeSpecialS=22]="BeforeSpecialS",e[e.SpecialStartSequence=23]="SpecialStartSequence",e[e.InSpecialTag=24]="InSpecialTag",e[e.BeforeEntity=25]="BeforeEntity",e[e.BeforeNumericEntity=26]="BeforeNumericEntity",e[e.InNamedEntity=27]="InNamedEntity",e[e.InNumericEntity=28]="InNumericEntity",e[e.InHexEntity=29]="InHexEntity"}(n||(n={})),function(e){e[e.NoValue=0]="NoValue",e[e.Unquoted=1]="Unquoted",e[e.Single=2]="Single",e[e.Double=3]="Double"}(r=e.QuoteType||(e.QuoteType={}));var u={Cdata:new Uint8Array([67,68,65,84,65,91]),CdataEnd:new Uint8Array([93,93,62]),CommentEnd:new Uint8Array([45,45,62]),ScriptEnd:new Uint8Array([60,47,115,99,114,105,112,116]),StyleEnd:new Uint8Array([60,47,115,116,121,108,101]),TitleEnd:new Uint8Array([60,47,116,105,116,108,101])},l=function(){function e(e,t){var r=e.xmlMode,a=void 0!==r&&r,o=e.decodeEntities,s=void 0===o||o;this.cbs=t,this.state=n.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=n.Text,this.isSpecial=!1,this.running=!0,this.offset=0,this.currentSequence=void 0,this.sequenceIndex=0,this.trieIndex=0,this.trieCurrent=0,this.entityResult=0,this.entityExcess=0,this.xmlMode=a,this.decodeEntities=s,this.entityTrie=a?i.xmlDecodeTree:i.htmlDecodeTree}return e.prototype.reset=function(){this.state=n.Text,this.buffer="",this.sectionStart=0,this.index=0,this.baseState=n.Text,this.currentSequence=void 0,this.running=!0,this.offset=0},e.prototype.write=function(e){this.offset+=this.buffer.length,this.buffer=e,this.parse()},e.prototype.end=function(){this.running&&this.finish()},e.prototype.pause=function(){this.running=!1},e.prototype.resume=function(){this.running=!0,this.index<this.buffer.length+this.offset&&this.parse()},e.prototype.getIndex=function(){return this.index},e.prototype.getSectionStart=function(){return this.sectionStart},e.prototype.stateText=function(e){e===t.Lt||!this.decodeEntities&&this.fastForwardTo(t.Lt)?(this.index>this.sectionStart&&this.cbs.ontext(this.sectionStart,this.index),this.state=n.BeforeTagName,this.sectionStart=this.index):this.decodeEntities&&e===t.Amp&&(this.state=n.BeforeEntity)},e.prototype.stateSpecialStartSequence=function(e){var t=this.sequenceIndex===this.currentSequence.length;if(t?o(e):(32|e)===this.currentSequence[this.sequenceIndex]){if(!t)return void this.sequenceIndex++}else this.isSpecial=!1;this.sequenceIndex=0,this.state=n.InTagName,this.stateInTagName(e)},e.prototype.stateInSpecialTag=function(e){if(this.sequenceIndex===this.currentSequence.length){if(e===t.Gt||a(e)){var r=this.index-this.currentSequence.length;if(this.sectionStart<r){var i=this.index;this.index=r,this.cbs.ontext(this.sectionStart,r),this.index=i}return this.isSpecial=!1,this.sectionStart=r+2,void this.stateInClosingTagName(e)}this.sequenceIndex=0}(32|e)===this.currentSequence[this.sequenceIndex]?this.sequenceIndex+=1:0===this.sequenceIndex?this.currentSequence===u.TitleEnd?this.decodeEntities&&e===t.Amp&&(this.state=n.BeforeEntity):this.fastForwardTo(t.Lt)&&(this.sequenceIndex=1):this.sequenceIndex=Number(e===t.Lt)},e.prototype.stateCDATASequence=function(e){e===u.Cdata[this.sequenceIndex]?++this.sequenceIndex===u.Cdata.length&&(this.state=n.InCommentLike,this.currentSequence=u.CdataEnd,this.sequenceIndex=0,this.sectionStart=this.index+1):(this.sequenceIndex=0,this.state=n.InDeclaration,this.stateInDeclaration(e))},e.prototype.fastForwardTo=function(e){for(;++this.index<this.buffer.length+this.offset;)if(this.buffer.charCodeAt(this.index-this.offset)===e)return!0;return this.index=this.buffer.length+this.offset-1,!1},e.prototype.stateInCommentLike=function(e){e===this.currentSequence[this.sequenceIndex]?++this.sequenceIndex===this.currentSequence.length&&(this.currentSequence===u.CdataEnd?this.cbs.oncdata(this.sectionStart,this.index,2):this.cbs.oncomment(this.sectionStart,this.index,2),this.sequenceIndex=0,this.sectionStart=this.index+1,this.state=n.Text):0===this.sequenceIndex?this.fastForwardTo(this.currentSequence[0])&&(this.sequenceIndex=1):e!==this.currentSequence[this.sequenceIndex-1]&&(this.sequenceIndex=0)},e.prototype.isTagStartChar=function(e){return this.xmlMode?!o(e):function(e){return e>=t.LowerA&&e<=t.LowerZ||e>=t.UpperA&&e<=t.UpperZ}(e)},e.prototype.startSpecial=function(e,t){this.isSpecial=!0,this.currentSequence=e,this.sequenceIndex=t,this.state=n.SpecialStartSequence},e.prototype.stateBeforeTagName=function(e){if(e===t.ExclamationMark)this.state=n.BeforeDeclaration,this.sectionStart=this.index+1;else if(e===t.Questionmark)this.state=n.InProcessingInstruction,this.sectionStart=this.index+1;else if(this.isTagStartChar(e)){var r=32|e;this.sectionStart=this.index,this.xmlMode||r!==u.TitleEnd[2]?this.state=this.xmlMode||r!==u.ScriptEnd[2]?n.InTagName:n.BeforeSpecialS:this.startSpecial(u.TitleEnd,3)}else e===t.Slash?this.state=n.BeforeClosingTagName:(this.state=n.Text,this.stateText(e))},e.prototype.stateInTagName=function(e){o(e)&&(this.cbs.onopentagname(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateBeforeClosingTagName=function(e){a(e)||(e===t.Gt?this.state=n.Text:(this.state=this.isTagStartChar(e)?n.InClosingTagName:n.InSpecialComment,this.sectionStart=this.index))},e.prototype.stateInClosingTagName=function(e){(e===t.Gt||a(e))&&(this.cbs.onclosetag(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.AfterClosingTagName,this.stateAfterClosingTagName(e))},e.prototype.stateAfterClosingTagName=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.state=n.Text,this.baseState=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeAttributeName=function(e){e===t.Gt?(this.cbs.onopentagend(this.index),this.isSpecial?(this.state=n.InSpecialTag,this.sequenceIndex=0):this.state=n.Text,this.baseState=this.state,this.sectionStart=this.index+1):e===t.Slash?this.state=n.InSelfClosingTag:a(e)||(this.state=n.InAttributeName,this.sectionStart=this.index)},e.prototype.stateInSelfClosingTag=function(e){e===t.Gt?(this.cbs.onselfclosingtag(this.index),this.state=n.Text,this.baseState=n.Text,this.sectionStart=this.index+1,this.isSpecial=!1):a(e)||(this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e))},e.prototype.stateInAttributeName=function(e){(e===t.Eq||o(e))&&(this.cbs.onattribname(this.sectionStart,this.index),this.sectionStart=-1,this.state=n.AfterAttributeName,this.stateAfterAttributeName(e))},e.prototype.stateAfterAttributeName=function(e){e===t.Eq?this.state=n.BeforeAttributeValue:e===t.Slash||e===t.Gt?(this.cbs.onattribend(r.NoValue,this.index),this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e)):a(e)||(this.cbs.onattribend(r.NoValue,this.index),this.state=n.InAttributeName,this.sectionStart=this.index)},e.prototype.stateBeforeAttributeValue=function(e){e===t.DoubleQuote?(this.state=n.InAttributeValueDq,this.sectionStart=this.index+1):e===t.SingleQuote?(this.state=n.InAttributeValueSq,this.sectionStart=this.index+1):a(e)||(this.sectionStart=this.index,this.state=n.InAttributeValueNq,this.stateInAttributeValueNoQuotes(e))},e.prototype.handleInAttributeValue=function(e,i){e===i||!this.decodeEntities&&this.fastForwardTo(i)?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(i===t.DoubleQuote?r.Double:r.Single,this.index),this.state=n.BeforeAttributeName):this.decodeEntities&&e===t.Amp&&(this.baseState=this.state,this.state=n.BeforeEntity)},e.prototype.stateInAttributeValueDoubleQuotes=function(e){this.handleInAttributeValue(e,t.DoubleQuote)},e.prototype.stateInAttributeValueSingleQuotes=function(e){this.handleInAttributeValue(e,t.SingleQuote)},e.prototype.stateInAttributeValueNoQuotes=function(e){a(e)||e===t.Gt?(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=-1,this.cbs.onattribend(r.Unquoted,this.index),this.state=n.BeforeAttributeName,this.stateBeforeAttributeName(e)):this.decodeEntities&&e===t.Amp&&(this.baseState=this.state,this.state=n.BeforeEntity)},e.prototype.stateBeforeDeclaration=function(e){e===t.OpeningSquareBracket?(this.state=n.CDATASequence,this.sequenceIndex=0):this.state=e===t.Dash?n.BeforeComment:n.InDeclaration},e.prototype.stateInDeclaration=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.ondeclaration(this.sectionStart,this.index),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateInProcessingInstruction=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.onprocessinginstruction(this.sectionStart,this.index),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeComment=function(e){e===t.Dash?(this.state=n.InCommentLike,this.currentSequence=u.CommentEnd,this.sequenceIndex=2,this.sectionStart=this.index+1):this.state=n.InDeclaration},e.prototype.stateInSpecialComment=function(e){(e===t.Gt||this.fastForwardTo(t.Gt))&&(this.cbs.oncomment(this.sectionStart,this.index,0),this.state=n.Text,this.sectionStart=this.index+1)},e.prototype.stateBeforeSpecialS=function(e){var t=32|e;t===u.ScriptEnd[3]?this.startSpecial(u.ScriptEnd,4):t===u.StyleEnd[3]?this.startSpecial(u.StyleEnd,4):(this.state=n.InTagName,this.stateInTagName(e))},e.prototype.stateBeforeEntity=function(e){this.entityExcess=1,this.entityResult=0,e===t.Number?this.state=n.BeforeNumericEntity:e===t.Amp||(this.trieIndex=0,this.trieCurrent=this.entityTrie[0],this.state=n.InNamedEntity,this.stateInNamedEntity(e))},e.prototype.stateInNamedEntity=function(e){if(this.entityExcess+=1,this.trieIndex=(0,i.determineBranch)(this.entityTrie,this.trieCurrent,this.trieIndex+1,e),this.trieIndex<0)return this.emitNamedEntity(),void this.index--;this.trieCurrent=this.entityTrie[this.trieIndex];var n=this.trieCurrent&i.BinTrieFlags.VALUE_LENGTH;if(n){var r=(n>>14)-1;if(this.allowLegacyEntity()||e===t.Semi){var a=this.index-this.entityExcess+1;a>this.sectionStart&&this.emitPartial(this.sectionStart,a),this.entityResult=this.trieIndex,this.trieIndex+=r,this.entityExcess=0,this.sectionStart=this.index+1,0===r&&this.emitNamedEntity()}else this.trieIndex+=r}},e.prototype.emitNamedEntity=function(){if(this.state=this.baseState,0!==this.entityResult)switch((this.entityTrie[this.entityResult]&i.BinTrieFlags.VALUE_LENGTH)>>14){case 1:this.emitCodePoint(this.entityTrie[this.entityResult]&~i.BinTrieFlags.VALUE_LENGTH);break;case 2:this.emitCodePoint(this.entityTrie[this.entityResult+1]);break;case 3:this.emitCodePoint(this.entityTrie[this.entityResult+1]),this.emitCodePoint(this.entityTrie[this.entityResult+2])}},e.prototype.stateBeforeNumericEntity=function(e){(32|e)===t.LowerX?(this.entityExcess++,this.state=n.InHexEntity):(this.state=n.InNumericEntity,this.stateInNumericEntity(e))},e.prototype.emitNumericEntity=function(e){var t=this.index-this.entityExcess-1;t+2+Number(this.state===n.InHexEntity)!==this.index&&(t>this.sectionStart&&this.emitPartial(this.sectionStart,t),this.sectionStart=this.index+Number(e),this.emitCodePoint((0,i.replaceCodePoint)(this.entityResult))),this.state=this.baseState},e.prototype.stateInNumericEntity=function(e){e===t.Semi?this.emitNumericEntity(!0):s(e)?(this.entityResult=10*this.entityResult+(e-t.Zero),this.entityExcess++):(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--)},e.prototype.stateInHexEntity=function(e){e===t.Semi?this.emitNumericEntity(!0):s(e)?(this.entityResult=16*this.entityResult+(e-t.Zero),this.entityExcess++):!function(e){return e>=t.UpperA&&e<=t.UpperF||e>=t.LowerA&&e<=t.LowerF}(e)?(this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state=this.baseState,this.index--):(this.entityResult=16*this.entityResult+((32|e)-t.LowerA+10),this.entityExcess++)},e.prototype.allowLegacyEntity=function(){return!this.xmlMode&&(this.baseState===n.Text||this.baseState===n.InSpecialTag)},e.prototype.cleanup=function(){this.running&&this.sectionStart!==this.index&&(this.state===n.Text||this.state===n.InSpecialTag&&0===this.sequenceIndex?(this.cbs.ontext(this.sectionStart,this.index),this.sectionStart=this.index):this.state!==n.InAttributeValueDq&&this.state!==n.InAttributeValueSq&&this.state!==n.InAttributeValueNq||(this.cbs.onattribdata(this.sectionStart,this.index),this.sectionStart=this.index))},e.prototype.shouldContinue=function(){return this.index<this.buffer.length+this.offset&&this.running},e.prototype.parse=function(){for(;this.shouldContinue();){var e=this.buffer.charCodeAt(this.index-this.offset);switch(this.state){case n.Text:this.stateText(e);break;case n.SpecialStartSequence:this.stateSpecialStartSequence(e);break;case n.InSpecialTag:this.stateInSpecialTag(e);break;case n.CDATASequence:this.stateCDATASequence(e);break;case n.InAttributeValueDq:this.stateInAttributeValueDoubleQuotes(e);break;case n.InAttributeName:this.stateInAttributeName(e);break;case n.InCommentLike:this.stateInCommentLike(e);break;case n.InSpecialComment:this.stateInSpecialComment(e);break;case n.BeforeAttributeName:this.stateBeforeAttributeName(e);break;case n.InTagName:this.stateInTagName(e);break;case n.InClosingTagName:this.stateInClosingTagName(e);break;case n.BeforeTagName:this.stateBeforeTagName(e);break;case n.AfterAttributeName:this.stateAfterAttributeName(e);break;case n.InAttributeValueSq:this.stateInAttributeValueSingleQuotes(e);break;case n.BeforeAttributeValue:this.stateBeforeAttributeValue(e);break;case n.BeforeClosingTagName:this.stateBeforeClosingTagName(e);break;case n.AfterClosingTagName:this.stateAfterClosingTagName(e);break;case n.BeforeSpecialS:this.stateBeforeSpecialS(e);break;case n.InAttributeValueNq:this.stateInAttributeValueNoQuotes(e);break;case n.InSelfClosingTag:this.stateInSelfClosingTag(e);break;case n.InDeclaration:this.stateInDeclaration(e);break;case n.BeforeDeclaration:this.stateBeforeDeclaration(e);break;case n.BeforeComment:this.stateBeforeComment(e);break;case n.InProcessingInstruction:this.stateInProcessingInstruction(e);break;case n.InNamedEntity:this.stateInNamedEntity(e);break;case n.BeforeEntity:this.stateBeforeEntity(e);break;case n.InHexEntity:this.stateInHexEntity(e);break;case n.InNumericEntity:this.stateInNumericEntity(e);break;default:this.stateBeforeNumericEntity(e)}this.index++}this.cleanup()},e.prototype.finish=function(){this.state===n.InNamedEntity&&this.emitNamedEntity(),this.sectionStart<this.index&&this.handleTrailingData(),this.cbs.onend()},e.prototype.handleTrailingData=function(){var e=this.buffer.length+this.offset;this.state===n.InCommentLike?this.currentSequence===u.CdataEnd?this.cbs.oncdata(this.sectionStart,e,0):this.cbs.oncomment(this.sectionStart,e,0):this.state===n.InNumericEntity&&this.allowLegacyEntity()||this.state===n.InHexEntity&&this.allowLegacyEntity()?this.emitNumericEntity(!1):this.state===n.InTagName||this.state===n.BeforeAttributeName||this.state===n.BeforeAttributeValue||this.state===n.AfterAttributeName||this.state===n.InAttributeName||this.state===n.InAttributeValueSq||this.state===n.InAttributeValueDq||this.state===n.InAttributeValueNq||this.state===n.InClosingTagName||this.cbs.ontext(this.sectionStart,e)},e.prototype.emitPartial=function(e,t){this.baseState!==n.Text&&this.baseState!==n.InSpecialTag?this.cbs.onattribdata(e,t):this.cbs.ontext(e,t)},e.prototype.emitCodePoint=function(e){this.baseState!==n.Text&&this.baseState!==n.InSpecialTag?this.cbs.onattribentity(e):this.cbs.ontextentity(e)},e}();e.default=l}(jh);var Jh=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),Xh=at&&at.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),Qh=at&&at.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&Jh(t,e,n);return Xh(t,e),t};Object.defineProperty(Yh,"__esModule",{value:!0}),Yh.Parser=void 0;var ep=Qh(jh),tp=Gh,np=new Set(["input","option","optgroup","select","button","datalist","textarea"]),rp=new Set(["p"]),ip=new Set(["thead","tbody"]),ap=new Set(["dd","dt"]),op=new Set(["rt","rp"]),sp=new Map([["tr",new Set(["tr","th","td"])],["th",new Set(["th"])],["td",new Set(["thead","th","td"])],["body",new Set(["head","link","script"])],["li",new Set(["li"])],["p",rp],["h1",rp],["h2",rp],["h3",rp],["h4",rp],["h5",rp],["h6",rp],["select",np],["input",np],["output",np],["button",np],["datalist",np],["textarea",np],["option",new Set(["option"])],["optgroup",new Set(["optgroup","option"])],["dd",ap],["dt",ap],["address",rp],["article",rp],["aside",rp],["blockquote",rp],["details",rp],["div",rp],["dl",rp],["fieldset",rp],["figcaption",rp],["figure",rp],["footer",rp],["form",rp],["header",rp],["hr",rp],["main",rp],["nav",rp],["ol",rp],["pre",rp],["section",rp],["table",rp],["ul",rp],["rt",op],["rp",op],["tbody",ip],["tfoot",ip]]),up=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]),lp=new Set(["math","svg"]),cp=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignobject","desc","title"]),dp=/\s|\//,fp=function(){function e(e,t){var n,r,i,a,o;void 0===t&&(t={}),this.options=t,this.startIndex=0,this.endIndex=0,this.openTagStart=0,this.tagname="",this.attribname="",this.attribvalue="",this.attribs=null,this.stack=[],this.foreignContext=[],this.buffers=[],this.bufferOffset=0,this.writeIndex=0,this.ended=!1,this.cbs=null!=e?e:{},this.lowerCaseTagNames=null!==(n=t.lowerCaseTags)&&void 0!==n?n:!t.xmlMode,this.lowerCaseAttributeNames=null!==(r=t.lowerCaseAttributeNames)&&void 0!==r?r:!t.xmlMode,this.tokenizer=new(null!==(i=t.Tokenizer)&&void 0!==i?i:ep.default)(this.options,this),null===(o=(a=this.cbs).onparserinit)||void 0===o||o.call(a,this)}return e.prototype.ontext=function(e,t){var n,r,i=this.getSlice(e,t);this.endIndex=t-1,null===(r=(n=this.cbs).ontext)||void 0===r||r.call(n,i),this.startIndex=t},e.prototype.ontextentity=function(e){var t,n,r=this.tokenizer.getSectionStart();this.endIndex=r-1,null===(n=(t=this.cbs).ontext)||void 0===n||n.call(t,(0,tp.fromCodePoint)(e)),this.startIndex=r},e.prototype.isVoidElement=function(e){return!this.options.xmlMode&&up.has(e)},e.prototype.onopentagname=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);this.lowerCaseTagNames&&(n=n.toLowerCase()),this.emitOpenTag(n)},e.prototype.emitOpenTag=function(e){var t,n,r,i;this.openTagStart=this.startIndex,this.tagname=e;var a=!this.options.xmlMode&&sp.get(e);if(a)for(;this.stack.length>0&&a.has(this.stack[this.stack.length-1]);){var o=this.stack.pop();null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,o,!0)}this.isVoidElement(e)||(this.stack.push(e),lp.has(e)?this.foreignContext.push(!0):cp.has(e)&&this.foreignContext.push(!1)),null===(i=(r=this.cbs).onopentagname)||void 0===i||i.call(r,e),this.cbs.onopentag&&(this.attribs={})},e.prototype.endOpenTag=function(e){var t,n;this.startIndex=this.openTagStart,this.attribs&&(null===(n=(t=this.cbs).onopentag)||void 0===n||n.call(t,this.tagname,this.attribs,e),this.attribs=null),this.cbs.onclosetag&&this.isVoidElement(this.tagname)&&this.cbs.onclosetag(this.tagname,!0),this.tagname=""},e.prototype.onopentagend=function(e){this.endIndex=e,this.endOpenTag(!1),this.startIndex=e+1},e.prototype.onclosetag=function(e,t){var n,r,i,a,o,s;this.endIndex=t;var u=this.getSlice(e,t);if(this.lowerCaseTagNames&&(u=u.toLowerCase()),(lp.has(u)||cp.has(u))&&this.foreignContext.pop(),this.isVoidElement(u))this.options.xmlMode||"br"!==u||(null===(r=(n=this.cbs).onopentagname)||void 0===r||r.call(n,"br"),null===(a=(i=this.cbs).onopentag)||void 0===a||a.call(i,"br",{},!0),null===(s=(o=this.cbs).onclosetag)||void 0===s||s.call(o,"br",!1));else{var l=this.stack.lastIndexOf(u);if(-1!==l)if(this.cbs.onclosetag)for(var c=this.stack.length-l;c--;)this.cbs.onclosetag(this.stack.pop(),0!==c);else this.stack.length=l;else this.options.xmlMode||"p"!==u||(this.emitOpenTag("p"),this.closeCurrentTag(!0))}this.startIndex=t+1},e.prototype.onselfclosingtag=function(e){this.endIndex=e,this.options.xmlMode||this.options.recognizeSelfClosing||this.foreignContext[this.foreignContext.length-1]?(this.closeCurrentTag(!1),this.startIndex=e+1):this.onopentagend(e)},e.prototype.closeCurrentTag=function(e){var t,n,r=this.tagname;this.endOpenTag(e),this.stack[this.stack.length-1]===r&&(null===(n=(t=this.cbs).onclosetag)||void 0===n||n.call(t,r,!e),this.stack.pop())},e.prototype.onattribname=function(e,t){this.startIndex=e;var n=this.getSlice(e,t);this.attribname=this.lowerCaseAttributeNames?n.toLowerCase():n},e.prototype.onattribdata=function(e,t){this.attribvalue+=this.getSlice(e,t)},e.prototype.onattribentity=function(e){this.attribvalue+=(0,tp.fromCodePoint)(e)},e.prototype.onattribend=function(e,t){var n,r;this.endIndex=t,null===(r=(n=this.cbs).onattribute)||void 0===r||r.call(n,this.attribname,this.attribvalue,e===ep.QuoteType.Double?'"':e===ep.QuoteType.Single?"'":e===ep.QuoteType.NoValue?void 0:null),this.attribs&&!Object.prototype.hasOwnProperty.call(this.attribs,this.attribname)&&(this.attribs[this.attribname]=this.attribvalue),this.attribvalue=""},e.prototype.getInstructionName=function(e){var t=e.search(dp),n=t<0?e:e.substr(0,t);return this.lowerCaseTagNames&&(n=n.toLowerCase()),n},e.prototype.ondeclaration=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var r=this.getInstructionName(n);this.cbs.onprocessinginstruction("!".concat(r),"!".concat(n))}this.startIndex=t+1},e.prototype.onprocessinginstruction=function(e,t){this.endIndex=t;var n=this.getSlice(e,t);if(this.cbs.onprocessinginstruction){var r=this.getInstructionName(n);this.cbs.onprocessinginstruction("?".concat(r),"?".concat(n))}this.startIndex=t+1},e.prototype.oncomment=function(e,t,n){var r,i,a,o;this.endIndex=t,null===(i=(r=this.cbs).oncomment)||void 0===i||i.call(r,this.getSlice(e,t-n)),null===(o=(a=this.cbs).oncommentend)||void 0===o||o.call(a),this.startIndex=t+1},e.prototype.oncdata=function(e,t,n){var r,i,a,o,s,u,l,c,d,f;this.endIndex=t;var h=this.getSlice(e,t-n);this.options.xmlMode||this.options.recognizeCDATA?(null===(i=(r=this.cbs).oncdatastart)||void 0===i||i.call(r),null===(o=(a=this.cbs).ontext)||void 0===o||o.call(a,h),null===(u=(s=this.cbs).oncdataend)||void 0===u||u.call(s)):(null===(c=(l=this.cbs).oncomment)||void 0===c||c.call(l,"[CDATA[".concat(h,"]]")),null===(f=(d=this.cbs).oncommentend)||void 0===f||f.call(d)),this.startIndex=t+1},e.prototype.onend=function(){var e,t;if(this.cbs.onclosetag){this.endIndex=this.startIndex;for(var n=this.stack.length;n>0;this.cbs.onclosetag(this.stack[--n],!0));}null===(t=(e=this.cbs).onend)||void 0===t||t.call(e)},e.prototype.reset=function(){var e,t,n,r;null===(t=(e=this.cbs).onreset)||void 0===t||t.call(e),this.tokenizer.reset(),this.tagname="",this.attribname="",this.attribs=null,this.stack.length=0,this.startIndex=0,this.endIndex=0,null===(r=(n=this.cbs).onparserinit)||void 0===r||r.call(n,this),this.buffers.length=0,this.bufferOffset=0,this.writeIndex=0,this.ended=!1},e.prototype.parseComplete=function(e){this.reset(),this.end(e)},e.prototype.getSlice=function(e,t){for(;e-this.bufferOffset>=this.buffers[0].length;)this.shiftBuffer();for(var n=this.buffers[0].slice(e-this.bufferOffset,t-this.bufferOffset);t-this.bufferOffset>this.buffers[0].length;)this.shiftBuffer(),n+=this.buffers[0].slice(0,t-this.bufferOffset);return n},e.prototype.shiftBuffer=function(){this.bufferOffset+=this.buffers[0].length,this.writeIndex--,this.buffers.shift()},e.prototype.write=function(e){var t,n;this.ended?null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,new Error(".write() after done!")):(this.buffers.push(e),this.tokenizer.running&&(this.tokenizer.write(e),this.writeIndex++))},e.prototype.end=function(e){var t,n;this.ended?null===(n=(t=this.cbs).onerror)||void 0===n||n.call(t,new Error(".end() after done!")):(e&&this.write(e),this.ended=!0,this.tokenizer.end())},e.prototype.pause=function(){this.tokenizer.pause()},e.prototype.resume=function(){for(this.tokenizer.resume();this.tokenizer.running&&this.writeIndex<this.buffers.length;)this.tokenizer.write(this.buffers[this.writeIndex++]);this.ended&&this.tokenizer.end()},e.prototype.parseChunk=function(e){this.write(e)},e.prototype.done=function(e){this.end(e)},e}();Yh.Parser=fp;var hp={},pp={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.Doctype=e.CDATA=e.Tag=e.Style=e.Script=e.Comment=e.Directive=e.Text=e.Root=e.isTag=e.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(t=e.ElementType||(e.ElementType={})),e.isTag=function(e){return e.type===t.Tag||e.type===t.Script||e.type===t.Style},e.Root=t.Root,e.Text=t.Text,e.Directive=t.Directive,e.Comment=t.Comment,e.Script=t.Script,e.Style=t.Style,e.Tag=t.Tag,e.CDATA=t.CDATA,e.Doctype=t.Doctype}(pp);var mp,_p={},yp=at&&at.__extends||(mp=function(e,t){return mp=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},mp(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}mp(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}),gp=at&&at.__assign||function(){return gp=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},gp.apply(this,arguments)};Object.defineProperty(_p,"__esModule",{value:!0}),_p.cloneNode=_p.hasChildren=_p.isDocument=_p.isDirective=_p.isComment=_p.isText=_p.isCDATA=_p.isTag=_p.Element=_p.Document=_p.CDATA=_p.NodeWithChildren=_p.ProcessingInstruction=_p.Comment=_p.Text=_p.DataNode=_p.Node=void 0;var vp=pp,Ap=function(){function e(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(e.prototype,"parentNode",{get:function(){return this.parent},set:function(e){this.parent=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"previousSibling",{get:function(){return this.prev},set:function(e){this.prev=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nextSibling",{get:function(){return this.next},set:function(e){this.next=e},enumerable:!1,configurable:!0}),e.prototype.cloneNode=function(e){return void 0===e&&(e=!1),kp(this,e)},e}();_p.Node=Ap;var Ep=function(e){function t(t){var n=e.call(this)||this;return n.data=t,n}return yp(t,e),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.data},set:function(e){this.data=e},enumerable:!1,configurable:!0}),t}(Ap);_p.DataNode=Ep;var bp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=vp.ElementType.Text,t}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),t}(Ep);_p.Text=bp;var Sp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=vp.ElementType.Comment,t}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),t}(Ep);_p.Comment=Sp;var Mp=function(e){function t(t,n){var r=e.call(this,n)||this;return r.name=t,r.type=vp.ElementType.Directive,r}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),t}(Ep);_p.ProcessingInstruction=Mp;var Tp=function(e){function t(t){var n=e.call(this)||this;return n.children=t,n}return yp(t,e),Object.defineProperty(t.prototype,"firstChild",{get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(Ap);_p.NodeWithChildren=Tp;var wp=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=vp.ElementType.CDATA,t}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(Tp);_p.CDATA=wp;var Op=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=vp.ElementType.Root,t}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(Tp);_p.Document=Op;var Np=function(e){function t(t,n,r,i){void 0===r&&(r=[]),void 0===i&&(i="script"===t?vp.ElementType.Script:"style"===t?vp.ElementType.Style:vp.ElementType.Tag);var a=e.call(this,r)||this;return a.name=t,a.attribs=n,a.type=i,a}return yp(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map((function(t){var n,r;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(r=e["x-attribsPrefix"])||void 0===r?void 0:r[t]}}))},enumerable:!1,configurable:!0}),t}(Tp);function Cp(e){return(0,vp.isTag)(e)}function Lp(e){return e.type===vp.ElementType.CDATA}function Dp(e){return e.type===vp.ElementType.Text}function $p(e){return e.type===vp.ElementType.Comment}function Ip(e){return e.type===vp.ElementType.Directive}function xp(e){return e.type===vp.ElementType.Root}function kp(e,t){var n;if(void 0===t&&(t=!1),Dp(e))n=new bp(e.data);else if($p(e))n=new Sp(e.data);else if(Cp(e)){var r=t?zp(e.children):[],i=new Np(e.name,gp({},e.attribs),r);r.forEach((function(e){return e.parent=i})),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=gp({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=gp({},e["x-attribsPrefix"])),n=i}else if(Lp(e)){r=t?zp(e.children):[];var a=new wp(r);r.forEach((function(e){return e.parent=a})),n=a}else if(xp(e)){r=t?zp(e.children):[];var o=new Op(r);r.forEach((function(e){return e.parent=o})),e["x-mode"]&&(o["x-mode"]=e["x-mode"]),n=o}else{if(!Ip(e))throw new Error("Not implemented yet: ".concat(e.type));var s=new Mp(e.name,e.data);null!=e["x-name"]&&(s["x-name"]=e["x-name"],s["x-publicId"]=e["x-publicId"],s["x-systemId"]=e["x-systemId"]),n=s}return n.startIndex=e.startIndex,n.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(n.sourceCodeLocation=e.sourceCodeLocation),n}function zp(e){for(var t=e.map((function(e){return kp(e,!0)})),n=1;n<t.length;n++)t[n].prev=t[n-1],t[n-1].next=t[n];return t}_p.Element=Np,_p.isTag=Cp,_p.isCDATA=Lp,_p.isText=Dp,_p.isComment=$p,_p.isDirective=Ip,_p.isDocument=xp,_p.hasChildren=function(e){return Object.prototype.hasOwnProperty.call(e,"children")},_p.cloneNode=kp,function(e){var t=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=at&&at.__exportStar||function(e,n){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(n,r)||t(n,e,r)};Object.defineProperty(e,"__esModule",{value:!0}),e.DomHandler=void 0;var r=pp,i=_p;n(_p,e);var a={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},o=function(){function e(e,t,n){this.dom=[],this.root=new i.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(n=t,t=a),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:a,this.elementCB=null!=n?n:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new i.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var n=this.options.xmlMode?r.ElementType.Tag:void 0,a=new i.Element(e,t,void 0,n);this.addNode(a),this.tagStack.push(a)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===r.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var n=new i.Text(e);this.addNode(n),this.lastNode=n}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===r.ElementType.Comment)this.lastNode.data+=e;else{var t=new i.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new i.Text(""),t=new i.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var n=new i.ProcessingInstruction(e,t);this.addNode(n)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],n=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),n&&(e.prev=n,n.next=e),e.parent=t,this.lastNode=null},e}();e.DomHandler=o,e.default=o}(hp);var Rp={},Zp={},Pp={},Fp={},Up={},Bp={};Object.defineProperty(Bp,"__esModule",{value:!0}),Bp.default=new Uint16Array('ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\0\0\0\0\0\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\0\0\0͔͂\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\0\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\0\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\0ц\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\0\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\0\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\0ֿ\0\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\0ࣃbleBracket;柦nǔࣈ\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\0စbleBracket;柧nǔည\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\0\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\0ጬጱ\0\0\0\0\0ጸጽ፷ᎅ\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\0ᖰᖶᖿ\0\0\0\0ᗆᗛᗫᙟ᙭\0ᚕ᚛ᚲᚹ\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\0\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\0\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\0ᠳƲᠯ\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\0᧨ᨑᨕᨲ\0ᨷᩐ\0\0᪴\0\0᫁\0\0ᬡᬮ᭒\0᯽\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\0\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\0\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\0\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\0\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\0\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\0\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\0\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\0ᾞ\0ᾡᾧ\0\0ῆῌ\0ΐ\0ῦῪ \0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\0\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\0⁐β•‥‧\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\0‶;慔;慖ʴ‾⁁\0\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\0⊪\0⊸⋅⋎\0⋕⋳\0\0⋸⌢⍧⍢⍿\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\0⒪\0⒱\0\0\0\0\0⒵Ⓔ\0ⓆⓈⓍ\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\0\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\0\0\0\0\0\0\0\0\0\0\0\0\0ⴭ\0ⴸⵈⵠⵥⶄᬇ\0\0ⶍⶫ\0ⷈⷎ\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\0\0\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\0\0⺀⺝\0⺢⺹\0\0⻋ຜ\0⼓\0\0⼫⾼\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\0\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\0㍺㎤\0\0㏬㏰\0㐨㑈㑚㒭㒱㓊㓱\0㘖\0\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\0\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\0㙾㛂\0\0\0\0\0㛛㜃\0㜉㝬\0\0\0㞇ɲ㙖\0\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\0\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\0\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\0㪋\0㪐㪛\0\0㪝㪨㪫㪯\0\0㫃㫎\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split("").map((function(e){return e.charCodeAt(0)})));var Vp={};Object.defineProperty(Vp,"__esModule",{value:!0}),Vp.default=new Uint16Array("Ȁaglq\tɭ\0\0p;䀦os;䀧t;䀾t;䀼uot;䀢".split("").map((function(e){return e.charCodeAt(0)})));var Hp={};!function(e){var t;Object.defineProperty(e,"__esModule",{value:!0}),e.replaceCodePoint=e.fromCodePoint=void 0;var n=new Map([[0,65533],[128,8364],[130,8218],[131,402],[132,8222],[133,8230],[134,8224],[135,8225],[136,710],[137,8240],[138,352],[139,8249],[140,338],[142,381],[145,8216],[146,8217],[147,8220],[148,8221],[149,8226],[150,8211],[151,8212],[152,732],[153,8482],[154,353],[155,8250],[156,339],[158,382],[159,376]]);function r(e){var t;return e>=55296&&e<=57343||e>1114111?65533:null!==(t=n.get(e))&&void 0!==t?t:e}e.fromCodePoint=null!==(t=String.fromCodePoint)&&void 0!==t?t:function(e){var t="";return e>65535&&(e-=65536,t+=String.fromCharCode(e>>>10&1023|55296),e=56320|1023&e),t+=String.fromCharCode(e)},e.replaceCodePoint=r,e.default=function(t){return(0,e.fromCodePoint)(r(t))}}(Hp),function(e){var t=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=at&&at.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=at&&at.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=at&&at.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXML=e.decodeHTMLStrict=e.decodeHTMLAttribute=e.decodeHTML=e.determineBranch=e.EntityDecoder=e.DecodingMode=e.BinTrieFlags=e.fromCodePoint=e.replaceCodePoint=e.decodeCodePoint=e.xmlDecodeTree=e.htmlDecodeTree=void 0;var a=i(Bp);e.htmlDecodeTree=a.default;var o=i(Vp);e.xmlDecodeTree=o.default;var s=r(Hp);e.decodeCodePoint=s.default;var u,l=Hp;Object.defineProperty(e,"replaceCodePoint",{enumerable:!0,get:function(){return l.replaceCodePoint}}),Object.defineProperty(e,"fromCodePoint",{enumerable:!0,get:function(){return l.fromCodePoint}}),function(e){e[e.NUM=35]="NUM",e[e.SEMI=59]="SEMI",e[e.EQUALS=61]="EQUALS",e[e.ZERO=48]="ZERO",e[e.NINE=57]="NINE",e[e.LOWER_A=97]="LOWER_A",e[e.LOWER_F=102]="LOWER_F",e[e.LOWER_X=120]="LOWER_X",e[e.LOWER_Z=122]="LOWER_Z",e[e.UPPER_A=65]="UPPER_A",e[e.UPPER_F=70]="UPPER_F",e[e.UPPER_Z=90]="UPPER_Z"}(u||(u={}));var c,d,f;function h(e){return e>=u.ZERO&&e<=u.NINE}function p(e){return e===u.EQUALS||function(e){return e>=u.UPPER_A&&e<=u.UPPER_Z||e>=u.LOWER_A&&e<=u.LOWER_Z||h(e)}(e)}!function(e){e[e.VALUE_LENGTH=49152]="VALUE_LENGTH",e[e.BRANCH_LENGTH=16256]="BRANCH_LENGTH",e[e.JUMP_TABLE=127]="JUMP_TABLE"}(c=e.BinTrieFlags||(e.BinTrieFlags={})),function(e){e[e.EntityStart=0]="EntityStart",e[e.NumericStart=1]="NumericStart",e[e.NumericDecimal=2]="NumericDecimal",e[e.NumericHex=3]="NumericHex",e[e.NamedEntity=4]="NamedEntity"}(d||(d={})),function(e){e[e.Legacy=0]="Legacy",e[e.Strict=1]="Strict",e[e.Attribute=2]="Attribute"}(f=e.DecodingMode||(e.DecodingMode={}));var m=function(){function e(e,t,n){this.decodeTree=e,this.emitCodePoint=t,this.errors=n,this.state=d.EntityStart,this.consumed=1,this.result=0,this.treeIndex=0,this.excess=1,this.decodeMode=f.Strict}return e.prototype.startEntity=function(e){this.decodeMode=e,this.state=d.EntityStart,this.result=0,this.treeIndex=0,this.excess=1,this.consumed=1},e.prototype.write=function(e,t){switch(this.state){case d.EntityStart:return e.charCodeAt(t)===u.NUM?(this.state=d.NumericStart,this.consumed+=1,this.stateNumericStart(e,t+1)):(this.state=d.NamedEntity,this.stateNamedEntity(e,t));case d.NumericStart:return this.stateNumericStart(e,t);case d.NumericDecimal:return this.stateNumericDecimal(e,t);case d.NumericHex:return this.stateNumericHex(e,t);case d.NamedEntity:return this.stateNamedEntity(e,t)}},e.prototype.stateNumericStart=function(e,t){return t>=e.length?-1:(32|e.charCodeAt(t))===u.LOWER_X?(this.state=d.NumericHex,this.consumed+=1,this.stateNumericHex(e,t+1)):(this.state=d.NumericDecimal,this.stateNumericDecimal(e,t))},e.prototype.addToNumericResult=function(e,t,n,r){if(t!==n){var i=n-t;this.result=this.result*Math.pow(r,i)+parseInt(e.substr(t,i),r),this.consumed+=i}},e.prototype.stateNumericHex=function(e,t){for(var n,r=t;t<e.length;){var i=e.charCodeAt(t);if(!(h(i)||(n=i,n>=u.UPPER_A&&n<=u.UPPER_F||n>=u.LOWER_A&&n<=u.LOWER_F)))return this.addToNumericResult(e,r,t,16),this.emitNumericEntity(i,3);t+=1}return this.addToNumericResult(e,r,t,16),-1},e.prototype.stateNumericDecimal=function(e,t){for(var n=t;t<e.length;){var r=e.charCodeAt(t);if(!h(r))return this.addToNumericResult(e,n,t,10),this.emitNumericEntity(r,2);t+=1}return this.addToNumericResult(e,n,t,10),-1},e.prototype.emitNumericEntity=function(e,t){var n;if(this.consumed<=t)return null===(n=this.errors)||void 0===n||n.absenceOfDigitsInNumericCharacterReference(this.consumed),0;if(e===u.SEMI)this.consumed+=1;else if(this.decodeMode===f.Strict)return 0;return this.emitCodePoint((0,s.replaceCodePoint)(this.result),this.consumed),this.errors&&(e!==u.SEMI&&this.errors.missingSemicolonAfterCharacterReference(),this.errors.validateNumericCharacterReference(this.result)),this.consumed},e.prototype.stateNamedEntity=function(e,t){for(var n=this.decodeTree,r=n[this.treeIndex],i=(r&c.VALUE_LENGTH)>>14;t<e.length;t++,this.excess++){var a=e.charCodeAt(t);if(this.treeIndex=y(n,r,this.treeIndex+Math.max(1,i),a),this.treeIndex<0)return 0===this.result||this.decodeMode===f.Attribute&&(0===i||p(a))?0:this.emitNotTerminatedNamedEntity();if(0!==(i=((r=n[this.treeIndex])&c.VALUE_LENGTH)>>14)){if(a===u.SEMI)return this.emitNamedEntityData(this.treeIndex,i,this.consumed+this.excess);this.decodeMode!==f.Strict&&(this.result=this.treeIndex,this.consumed+=this.excess,this.excess=0)}}return-1},e.prototype.emitNotTerminatedNamedEntity=function(){var e,t=this.result,n=(this.decodeTree[t]&c.VALUE_LENGTH)>>14;return this.emitNamedEntityData(t,n,this.consumed),null===(e=this.errors)||void 0===e||e.missingSemicolonAfterCharacterReference(),this.consumed},e.prototype.emitNamedEntityData=function(e,t,n){var r=this.decodeTree;return this.emitCodePoint(1===t?r[e]&~c.VALUE_LENGTH:r[e+1],n),3===t&&this.emitCodePoint(r[e+2],n),n},e.prototype.end=function(){var e;switch(this.state){case d.NamedEntity:return 0===this.result||this.decodeMode===f.Attribute&&this.result!==this.treeIndex?0:this.emitNotTerminatedNamedEntity();case d.NumericDecimal:return this.emitNumericEntity(0,2);case d.NumericHex:return this.emitNumericEntity(0,3);case d.NumericStart:return null===(e=this.errors)||void 0===e||e.absenceOfDigitsInNumericCharacterReference(this.consumed),0;case d.EntityStart:return 0}},e}();function _(e){var t="",n=new m(e,(function(e){return t+=(0,s.fromCodePoint)(e)}));return function(e,r){for(var i=0,a=0;(a=e.indexOf("&",a))>=0;){t+=e.slice(i,a),n.startEntity(r);var o=n.write(e,a+1);if(o<0){i=a+n.end();break}i=a+o,a=0===o?i+1:i}var s=t+e.slice(i);return t="",s}}function y(e,t,n,r){var i=(t&c.BRANCH_LENGTH)>>7,a=t&c.JUMP_TABLE;if(0===i)return 0!==a&&r===a?n:-1;if(a){var o=r-a;return o<0||o>=i?-1:e[n+o]-1}for(var s=n,u=s+i-1;s<=u;){var l=s+u>>>1,d=e[l];if(d<r)s=l+1;else{if(!(d>r))return e[l+i];u=l-1}}return-1}e.EntityDecoder=m,e.determineBranch=y;var g=_(a.default),v=_(o.default);e.decodeHTML=function(e,t){return void 0===t&&(t=f.Legacy),g(e,t)},e.decodeHTMLAttribute=function(e){return g(e,f.Attribute)},e.decodeHTMLStrict=function(e){return g(e,f.Strict)},e.decodeXML=function(e){return v(e,f.Strict)}}(Up);var Yp={},jp={};function Gp(e){for(var t=1;t<e.length;t++)e[t][0]+=e[t-1][0]+1;return e}Object.defineProperty(jp,"__esModule",{value:!0}),jp.default=new Map(Gp([[9,"	"],[0,"
"],[22,"!"],[0,"""],[0,"#"],[0,"$"],[0,"%"],[0,"&"],[0,"'"],[0,"("],[0,")"],[0,"*"],[0,"+"],[0,","],[1,"."],[0,"/"],[10,":"],[0,";"],[0,{v:"<",n:8402,o:"<⃒"}],[0,{v:"=",n:8421,o:"=⃥"}],[0,{v:">",n:8402,o:">⃒"}],[0,"?"],[0,"@"],[26,"["],[0,"\"],[0,"]"],[0,"^"],[0,"_"],[0,"`"],[5,{n:106,o:"fj"}],[20,"{"],[0,"|"],[0,"}"],[34," "],[0,"¡"],[0,"¢"],[0,"£"],[0,"¤"],[0,"¥"],[0,"¦"],[0,"§"],[0,"¨"],[0,"©"],[0,"ª"],[0,"«"],[0,"¬"],[0,"­"],[0,"®"],[0,"¯"],[0,"°"],[0,"±"],[0,"²"],[0,"³"],[0,"´"],[0,"µ"],[0,"¶"],[0,"·"],[0,"¸"],[0,"¹"],[0,"º"],[0,"»"],[0,"¼"],[0,"½"],[0,"¾"],[0,"¿"],[0,"À"],[0,"Á"],[0,"Â"],[0,"Ã"],[0,"Ä"],[0,"Å"],[0,"Æ"],[0,"Ç"],[0,"È"],[0,"É"],[0,"Ê"],[0,"Ë"],[0,"Ì"],[0,"Í"],[0,"Î"],[0,"Ï"],[0,"Ð"],[0,"Ñ"],[0,"Ò"],[0,"Ó"],[0,"Ô"],[0,"Õ"],[0,"Ö"],[0,"×"],[0,"Ø"],[0,"Ù"],[0,"Ú"],[0,"Û"],[0,"Ü"],[0,"Ý"],[0,"Þ"],[0,"ß"],[0,"à"],[0,"á"],[0,"â"],[0,"ã"],[0,"ä"],[0,"å"],[0,"æ"],[0,"ç"],[0,"è"],[0,"é"],[0,"ê"],[0,"ë"],[0,"ì"],[0,"í"],[0,"î"],[0,"ï"],[0,"ð"],[0,"ñ"],[0,"ò"],[0,"ó"],[0,"ô"],[0,"õ"],[0,"ö"],[0,"÷"],[0,"ø"],[0,"ù"],[0,"ú"],[0,"û"],[0,"ü"],[0,"ý"],[0,"þ"],[0,"ÿ"],[0,"Ā"],[0,"ā"],[0,"Ă"],[0,"ă"],[0,"Ą"],[0,"ą"],[0,"Ć"],[0,"ć"],[0,"Ĉ"],[0,"ĉ"],[0,"Ċ"],[0,"ċ"],[0,"Č"],[0,"č"],[0,"Ď"],[0,"ď"],[0,"Đ"],[0,"đ"],[0,"Ē"],[0,"ē"],[2,"Ė"],[0,"ė"],[0,"Ę"],[0,"ę"],[0,"Ě"],[0,"ě"],[0,"Ĝ"],[0,"ĝ"],[0,"Ğ"],[0,"ğ"],[0,"Ġ"],[0,"ġ"],[0,"Ģ"],[1,"Ĥ"],[0,"ĥ"],[0,"Ħ"],[0,"ħ"],[0,"Ĩ"],[0,"ĩ"],[0,"Ī"],[0,"ī"],[2,"Į"],[0,"į"],[0,"İ"],[0,"ı"],[0,"IJ"],[0,"ij"],[0,"Ĵ"],[0,"ĵ"],[0,"Ķ"],[0,"ķ"],[0,"ĸ"],[0,"Ĺ"],[0,"ĺ"],[0,"Ļ"],[0,"ļ"],[0,"Ľ"],[0,"ľ"],[0,"Ŀ"],[0,"ŀ"],[0,"Ł"],[0,"ł"],[0,"Ń"],[0,"ń"],[0,"Ņ"],[0,"ņ"],[0,"Ň"],[0,"ň"],[0,"ʼn"],[0,"Ŋ"],[0,"ŋ"],[0,"Ō"],[0,"ō"],[2,"Ő"],[0,"ő"],[0,"Œ"],[0,"œ"],[0,"Ŕ"],[0,"ŕ"],[0,"Ŗ"],[0,"ŗ"],[0,"Ř"],[0,"ř"],[0,"Ś"],[0,"ś"],[0,"Ŝ"],[0,"ŝ"],[0,"Ş"],[0,"ş"],[0,"Š"],[0,"š"],[0,"Ţ"],[0,"ţ"],[0,"Ť"],[0,"ť"],[0,"Ŧ"],[0,"ŧ"],[0,"Ũ"],[0,"ũ"],[0,"Ū"],[0,"ū"],[0,"Ŭ"],[0,"ŭ"],[0,"Ů"],[0,"ů"],[0,"Ű"],[0,"ű"],[0,"Ų"],[0,"ų"],[0,"Ŵ"],[0,"ŵ"],[0,"Ŷ"],[0,"ŷ"],[0,"Ÿ"],[0,"Ź"],[0,"ź"],[0,"Ż"],[0,"ż"],[0,"Ž"],[0,"ž"],[19,"ƒ"],[34,"Ƶ"],[63,"ǵ"],[65,"ȷ"],[142,"ˆ"],[0,"ˇ"],[16,"˘"],[0,"˙"],[0,"˚"],[0,"˛"],[0,"˜"],[0,"˝"],[51,"̑"],[127,"Α"],[0,"Β"],[0,"Γ"],[0,"Δ"],[0,"Ε"],[0,"Ζ"],[0,"Η"],[0,"Θ"],[0,"Ι"],[0,"Κ"],[0,"Λ"],[0,"Μ"],[0,"Ν"],[0,"Ξ"],[0,"Ο"],[0,"Π"],[0,"Ρ"],[1,"Σ"],[0,"Τ"],[0,"Υ"],[0,"Φ"],[0,"Χ"],[0,"Ψ"],[0,"Ω"],[7,"α"],[0,"β"],[0,"γ"],[0,"δ"],[0,"ε"],[0,"ζ"],[0,"η"],[0,"θ"],[0,"ι"],[0,"κ"],[0,"λ"],[0,"μ"],[0,"ν"],[0,"ξ"],[0,"ο"],[0,"π"],[0,"ρ"],[0,"ς"],[0,"σ"],[0,"τ"],[0,"υ"],[0,"φ"],[0,"χ"],[0,"ψ"],[0,"ω"],[7,"ϑ"],[0,"ϒ"],[2,"ϕ"],[0,"ϖ"],[5,"Ϝ"],[0,"ϝ"],[18,"ϰ"],[0,"ϱ"],[3,"ϵ"],[0,"϶"],[10,"Ё"],[0,"Ђ"],[0,"Ѓ"],[0,"Є"],[0,"Ѕ"],[0,"І"],[0,"Ї"],[0,"Ј"],[0,"Љ"],[0,"Њ"],[0,"Ћ"],[0,"Ќ"],[1,"Ў"],[0,"Џ"],[0,"А"],[0,"Б"],[0,"В"],[0,"Г"],[0,"Д"],[0,"Е"],[0,"Ж"],[0,"З"],[0,"И"],[0,"Й"],[0,"К"],[0,"Л"],[0,"М"],[0,"Н"],[0,"О"],[0,"П"],[0,"Р"],[0,"С"],[0,"Т"],[0,"У"],[0,"Ф"],[0,"Х"],[0,"Ц"],[0,"Ч"],[0,"Ш"],[0,"Щ"],[0,"Ъ"],[0,"Ы"],[0,"Ь"],[0,"Э"],[0,"Ю"],[0,"Я"],[0,"а"],[0,"б"],[0,"в"],[0,"г"],[0,"д"],[0,"е"],[0,"ж"],[0,"з"],[0,"и"],[0,"й"],[0,"к"],[0,"л"],[0,"м"],[0,"н"],[0,"о"],[0,"п"],[0,"р"],[0,"с"],[0,"т"],[0,"у"],[0,"ф"],[0,"х"],[0,"ц"],[0,"ч"],[0,"ш"],[0,"щ"],[0,"ъ"],[0,"ы"],[0,"ь"],[0,"э"],[0,"ю"],[0,"я"],[1,"ё"],[0,"ђ"],[0,"ѓ"],[0,"є"],[0,"ѕ"],[0,"і"],[0,"ї"],[0,"ј"],[0,"љ"],[0,"њ"],[0,"ћ"],[0,"ќ"],[1,"ў"],[0,"џ"],[7074," "],[0," "],[0," "],[0," "],[1," "],[0," "],[0," "],[0," "],[0,"​"],[0,"‌"],[0,"‍"],[0,"‎"],[0,"‏"],[0,"‐"],[2,"–"],[0,"—"],[0,"―"],[0,"‖"],[1,"‘"],[0,"’"],[0,"‚"],[1,"“"],[0,"”"],[0,"„"],[1,"†"],[0,"‡"],[0,"•"],[2,"‥"],[0,"…"],[9,"‰"],[0,"‱"],[0,"′"],[0,"″"],[0,"‴"],[0,"‵"],[3,"‹"],[0,"›"],[3,"‾"],[2,"⁁"],[1,"⁃"],[0,"⁄"],[10,"⁏"],[7,"⁗"],[7,{v:" ",n:8202,o:"  "}],[0,"⁠"],[0,"⁡"],[0,"⁢"],[0,"⁣"],[72,"€"],[46,"⃛"],[0,"⃜"],[37,"ℂ"],[2,"℅"],[4,"ℊ"],[0,"ℋ"],[0,"ℌ"],[0,"ℍ"],[0,"ℎ"],[0,"ℏ"],[0,"ℐ"],[0,"ℑ"],[0,"ℒ"],[0,"ℓ"],[1,"ℕ"],[0,"№"],[0,"℗"],[0,"℘"],[0,"ℙ"],[0,"ℚ"],[0,"ℛ"],[0,"ℜ"],[0,"ℝ"],[0,"℞"],[3,"™"],[1,"ℤ"],[2,"℧"],[0,"ℨ"],[0,"℩"],[2,"ℬ"],[0,"ℭ"],[1,"ℯ"],[0,"ℰ"],[0,"ℱ"],[1,"ℳ"],[0,"ℴ"],[0,"ℵ"],[0,"ℶ"],[0,"ℷ"],[0,"ℸ"],[12,"ⅅ"],[0,"ⅆ"],[0,"ⅇ"],[0,"ⅈ"],[10,"⅓"],[0,"⅔"],[0,"⅕"],[0,"⅖"],[0,"⅗"],[0,"⅘"],[0,"⅙"],[0,"⅚"],[0,"⅛"],[0,"⅜"],[0,"⅝"],[0,"⅞"],[49,"←"],[0,"↑"],[0,"→"],[0,"↓"],[0,"↔"],[0,"↕"],[0,"↖"],[0,"↗"],[0,"↘"],[0,"↙"],[0,"↚"],[0,"↛"],[1,{v:"↝",n:824,o:"↝̸"}],[0,"↞"],[0,"↟"],[0,"↠"],[0,"↡"],[0,"↢"],[0,"↣"],[0,"↤"],[0,"↥"],[0,"↦"],[0,"↧"],[1,"↩"],[0,"↪"],[0,"↫"],[0,"↬"],[0,"↭"],[0,"↮"],[1,"↰"],[0,"↱"],[0,"↲"],[0,"↳"],[1,"↵"],[0,"↶"],[0,"↷"],[2,"↺"],[0,"↻"],[0,"↼"],[0,"↽"],[0,"↾"],[0,"↿"],[0,"⇀"],[0,"⇁"],[0,"⇂"],[0,"⇃"],[0,"⇄"],[0,"⇅"],[0,"⇆"],[0,"⇇"],[0,"⇈"],[0,"⇉"],[0,"⇊"],[0,"⇋"],[0,"⇌"],[0,"⇍"],[0,"⇎"],[0,"⇏"],[0,"⇐"],[0,"⇑"],[0,"⇒"],[0,"⇓"],[0,"⇔"],[0,"⇕"],[0,"⇖"],[0,"⇗"],[0,"⇘"],[0,"⇙"],[0,"⇚"],[0,"⇛"],[1,"⇝"],[6,"⇤"],[0,"⇥"],[15,"⇵"],[7,"⇽"],[0,"⇾"],[0,"⇿"],[0,"∀"],[0,"∁"],[0,{v:"∂",n:824,o:"∂̸"}],[0,"∃"],[0,"∄"],[0,"∅"],[1,"∇"],[0,"∈"],[0,"∉"],[1,"∋"],[0,"∌"],[2,"∏"],[0,"∐"],[0,"∑"],[0,"−"],[0,"∓"],[0,"∔"],[1,"∖"],[0,"∗"],[0,"∘"],[1,"√"],[2,"∝"],[0,"∞"],[0,"∟"],[0,{v:"∠",n:8402,o:"∠⃒"}],[0,"∡"],[0,"∢"],[0,"∣"],[0,"∤"],[0,"∥"],[0,"∦"],[0,"∧"],[0,"∨"],[0,{v:"∩",n:65024,o:"∩︀"}],[0,{v:"∪",n:65024,o:"∪︀"}],[0,"∫"],[0,"∬"],[0,"∭"],[0,"∮"],[0,"∯"],[0,"∰"],[0,"∱"],[0,"∲"],[0,"∳"],[0,"∴"],[0,"∵"],[0,"∶"],[0,"∷"],[0,"∸"],[1,"∺"],[0,"∻"],[0,{v:"∼",n:8402,o:"∼⃒"}],[0,{v:"∽",n:817,o:"∽̱"}],[0,{v:"∾",n:819,o:"∾̳"}],[0,"∿"],[0,"≀"],[0,"≁"],[0,{v:"≂",n:824,o:"≂̸"}],[0,"≃"],[0,"≄"],[0,"≅"],[0,"≆"],[0,"≇"],[0,"≈"],[0,"≉"],[0,"≊"],[0,{v:"≋",n:824,o:"≋̸"}],[0,"≌"],[0,{v:"≍",n:8402,o:"≍⃒"}],[0,{v:"≎",n:824,o:"≎̸"}],[0,{v:"≏",n:824,o:"≏̸"}],[0,{v:"≐",n:824,o:"≐̸"}],[0,"≑"],[0,"≒"],[0,"≓"],[0,"≔"],[0,"≕"],[0,"≖"],[0,"≗"],[1,"≙"],[0,"≚"],[1,"≜"],[2,"≟"],[0,"≠"],[0,{v:"≡",n:8421,o:"≡⃥"}],[0,"≢"],[1,{v:"≤",n:8402,o:"≤⃒"}],[0,{v:"≥",n:8402,o:"≥⃒"}],[0,{v:"≦",n:824,o:"≦̸"}],[0,{v:"≧",n:824,o:"≧̸"}],[0,{v:"≨",n:65024,o:"≨︀"}],[0,{v:"≩",n:65024,o:"≩︀"}],[0,{v:"≪",n:new Map(Gp([[824,"≪̸"],[7577,"≪⃒"]]))}],[0,{v:"≫",n:new Map(Gp([[824,"≫̸"],[7577,"≫⃒"]]))}],[0,"≬"],[0,"≭"],[0,"≮"],[0,"≯"],[0,"≰"],[0,"≱"],[0,"≲"],[0,"≳"],[0,"≴"],[0,"≵"],[0,"≶"],[0,"≷"],[0,"≸"],[0,"≹"],[0,"≺"],[0,"≻"],[0,"≼"],[0,"≽"],[0,"≾"],[0,{v:"≿",n:824,o:"≿̸"}],[0,"⊀"],[0,"⊁"],[0,{v:"⊂",n:8402,o:"⊂⃒"}],[0,{v:"⊃",n:8402,o:"⊃⃒"}],[0,"⊄"],[0,"⊅"],[0,"⊆"],[0,"⊇"],[0,"⊈"],[0,"⊉"],[0,{v:"⊊",n:65024,o:"⊊︀"}],[0,{v:"⊋",n:65024,o:"⊋︀"}],[1,"⊍"],[0,"⊎"],[0,{v:"⊏",n:824,o:"⊏̸"}],[0,{v:"⊐",n:824,o:"⊐̸"}],[0,"⊑"],[0,"⊒"],[0,{v:"⊓",n:65024,o:"⊓︀"}],[0,{v:"⊔",n:65024,o:"⊔︀"}],[0,"⊕"],[0,"⊖"],[0,"⊗"],[0,"⊘"],[0,"⊙"],[0,"⊚"],[0,"⊛"],[1,"⊝"],[0,"⊞"],[0,"⊟"],[0,"⊠"],[0,"⊡"],[0,"⊢"],[0,"⊣"],[0,"⊤"],[0,"⊥"],[1,"⊧"],[0,"⊨"],[0,"⊩"],[0,"⊪"],[0,"⊫"],[0,"⊬"],[0,"⊭"],[0,"⊮"],[0,"⊯"],[0,"⊰"],[1,"⊲"],[0,"⊳"],[0,{v:"⊴",n:8402,o:"⊴⃒"}],[0,{v:"⊵",n:8402,o:"⊵⃒"}],[0,"⊶"],[0,"⊷"],[0,"⊸"],[0,"⊹"],[0,"⊺"],[0,"⊻"],[1,"⊽"],[0,"⊾"],[0,"⊿"],[0,"⋀"],[0,"⋁"],[0,"⋂"],[0,"⋃"],[0,"⋄"],[0,"⋅"],[0,"⋆"],[0,"⋇"],[0,"⋈"],[0,"⋉"],[0,"⋊"],[0,"⋋"],[0,"⋌"],[0,"⋍"],[0,"⋎"],[0,"⋏"],[0,"⋐"],[0,"⋑"],[0,"⋒"],[0,"⋓"],[0,"⋔"],[0,"⋕"],[0,"⋖"],[0,"⋗"],[0,{v:"⋘",n:824,o:"⋘̸"}],[0,{v:"⋙",n:824,o:"⋙̸"}],[0,{v:"⋚",n:65024,o:"⋚︀"}],[0,{v:"⋛",n:65024,o:"⋛︀"}],[2,"⋞"],[0,"⋟"],[0,"⋠"],[0,"⋡"],[0,"⋢"],[0,"⋣"],[2,"⋦"],[0,"⋧"],[0,"⋨"],[0,"⋩"],[0,"⋪"],[0,"⋫"],[0,"⋬"],[0,"⋭"],[0,"⋮"],[0,"⋯"],[0,"⋰"],[0,"⋱"],[0,"⋲"],[0,"⋳"],[0,"⋴"],[0,{v:"⋵",n:824,o:"⋵̸"}],[0,"⋶"],[0,"⋷"],[1,{v:"⋹",n:824,o:"⋹̸"}],[0,"⋺"],[0,"⋻"],[0,"⋼"],[0,"⋽"],[0,"⋾"],[6,"⌅"],[0,"⌆"],[1,"⌈"],[0,"⌉"],[0,"⌊"],[0,"⌋"],[0,"⌌"],[0,"⌍"],[0,"⌎"],[0,"⌏"],[0,"⌐"],[1,"⌒"],[0,"⌓"],[1,"⌕"],[0,"⌖"],[5,"⌜"],[0,"⌝"],[0,"⌞"],[0,"⌟"],[2,"⌢"],[0,"⌣"],[9,"⌭"],[0,"⌮"],[7,"⌶"],[6,"⌽"],[1,"⌿"],[60,"⍼"],[51,"⎰"],[0,"⎱"],[2,"⎴"],[0,"⎵"],[0,"⎶"],[37,"⏜"],[0,"⏝"],[0,"⏞"],[0,"⏟"],[2,"⏢"],[4,"⏧"],[59,"␣"],[164,"Ⓢ"],[55,"─"],[1,"│"],[9,"┌"],[3,"┐"],[3,"└"],[3,"┘"],[3,"├"],[7,"┤"],[7,"┬"],[7,"┴"],[7,"┼"],[19,"═"],[0,"║"],[0,"╒"],[0,"╓"],[0,"╔"],[0,"╕"],[0,"╖"],[0,"╗"],[0,"╘"],[0,"╙"],[0,"╚"],[0,"╛"],[0,"╜"],[0,"╝"],[0,"╞"],[0,"╟"],[0,"╠"],[0,"╡"],[0,"╢"],[0,"╣"],[0,"╤"],[0,"╥"],[0,"╦"],[0,"╧"],[0,"╨"],[0,"╩"],[0,"╪"],[0,"╫"],[0,"╬"],[19,"▀"],[3,"▄"],[3,"█"],[8,"░"],[0,"▒"],[0,"▓"],[13,"□"],[8,"▪"],[0,"▫"],[1,"▭"],[0,"▮"],[2,"▱"],[1,"△"],[0,"▴"],[0,"▵"],[2,"▸"],[0,"▹"],[3,"▽"],[0,"▾"],[0,"▿"],[2,"◂"],[0,"◃"],[6,"◊"],[0,"○"],[32,"◬"],[2,"◯"],[8,"◸"],[0,"◹"],[0,"◺"],[0,"◻"],[0,"◼"],[8,"★"],[0,"☆"],[7,"☎"],[49,"♀"],[1,"♂"],[29,"♠"],[2,"♣"],[1,"♥"],[0,"♦"],[3,"♪"],[2,"♭"],[0,"♮"],[0,"♯"],[163,"✓"],[3,"✗"],[8,"✠"],[21,"✶"],[33,"❘"],[25,"❲"],[0,"❳"],[84,"⟈"],[0,"⟉"],[28,"⟦"],[0,"⟧"],[0,"⟨"],[0,"⟩"],[0,"⟪"],[0,"⟫"],[0,"⟬"],[0,"⟭"],[7,"⟵"],[0,"⟶"],[0,"⟷"],[0,"⟸"],[0,"⟹"],[0,"⟺"],[1,"⟼"],[2,"⟿"],[258,"⤂"],[0,"⤃"],[0,"⤄"],[0,"⤅"],[6,"⤌"],[0,"⤍"],[0,"⤎"],[0,"⤏"],[0,"⤐"],[0,"⤑"],[0,"⤒"],[0,"⤓"],[2,"⤖"],[2,"⤙"],[0,"⤚"],[0,"⤛"],[0,"⤜"],[0,"⤝"],[0,"⤞"],[0,"⤟"],[0,"⤠"],[2,"⤣"],[0,"⤤"],[0,"⤥"],[0,"⤦"],[0,"⤧"],[0,"⤨"],[0,"⤩"],[0,"⤪"],[8,{v:"⤳",n:824,o:"⤳̸"}],[1,"⤵"],[0,"⤶"],[0,"⤷"],[0,"⤸"],[0,"⤹"],[2,"⤼"],[0,"⤽"],[7,"⥅"],[2,"⥈"],[0,"⥉"],[0,"⥊"],[0,"⥋"],[2,"⥎"],[0,"⥏"],[0,"⥐"],[0,"⥑"],[0,"⥒"],[0,"⥓"],[0,"⥔"],[0,"⥕"],[0,"⥖"],[0,"⥗"],[0,"⥘"],[0,"⥙"],[0,"⥚"],[0,"⥛"],[0,"⥜"],[0,"⥝"],[0,"⥞"],[0,"⥟"],[0,"⥠"],[0,"⥡"],[0,"⥢"],[0,"⥣"],[0,"⥤"],[0,"⥥"],[0,"⥦"],[0,"⥧"],[0,"⥨"],[0,"⥩"],[0,"⥪"],[0,"⥫"],[0,"⥬"],[0,"⥭"],[0,"⥮"],[0,"⥯"],[0,"⥰"],[0,"⥱"],[0,"⥲"],[0,"⥳"],[0,"⥴"],[0,"⥵"],[0,"⥶"],[1,"⥸"],[0,"⥹"],[1,"⥻"],[0,"⥼"],[0,"⥽"],[0,"⥾"],[0,"⥿"],[5,"⦅"],[0,"⦆"],[4,"⦋"],[0,"⦌"],[0,"⦍"],[0,"⦎"],[0,"⦏"],[0,"⦐"],[0,"⦑"],[0,"⦒"],[0,"⦓"],[0,"⦔"],[0,"⦕"],[0,"⦖"],[3,"⦚"],[1,"⦜"],[0,"⦝"],[6,"⦤"],[0,"⦥"],[0,"⦦"],[0,"⦧"],[0,"⦨"],[0,"⦩"],[0,"⦪"],[0,"⦫"],[0,"⦬"],[0,"⦭"],[0,"⦮"],[0,"⦯"],[0,"⦰"],[0,"⦱"],[0,"⦲"],[0,"⦳"],[0,"⦴"],[0,"⦵"],[0,"⦶"],[0,"⦷"],[1,"⦹"],[1,"⦻"],[0,"⦼"],[1,"⦾"],[0,"⦿"],[0,"⧀"],[0,"⧁"],[0,"⧂"],[0,"⧃"],[0,"⧄"],[0,"⧅"],[3,"⧉"],[3,"⧍"],[0,"⧎"],[0,{v:"⧏",n:824,o:"⧏̸"}],[0,{v:"⧐",n:824,o:"⧐̸"}],[11,"⧜"],[0,"⧝"],[0,"⧞"],[4,"⧣"],[0,"⧤"],[0,"⧥"],[5,"⧫"],[8,"⧴"],[1,"⧶"],[9,"⨀"],[0,"⨁"],[0,"⨂"],[1,"⨄"],[1,"⨆"],[5,"⨌"],[0,"⨍"],[2,"⨐"],[0,"⨑"],[0,"⨒"],[0,"⨓"],[0,"⨔"],[0,"⨕"],[0,"⨖"],[0,"⨗"],[10,"⨢"],[0,"⨣"],[0,"⨤"],[0,"⨥"],[0,"⨦"],[0,"⨧"],[1,"⨩"],[0,"⨪"],[2,"⨭"],[0,"⨮"],[0,"⨯"],[0,"⨰"],[0,"⨱"],[1,"⨳"],[0,"⨴"],[0,"⨵"],[0,"⨶"],[0,"⨷"],[0,"⨸"],[0,"⨹"],[0,"⨺"],[0,"⨻"],[0,"⨼"],[2,"⨿"],[0,"⩀"],[1,"⩂"],[0,"⩃"],[0,"⩄"],[0,"⩅"],[0,"⩆"],[0,"⩇"],[0,"⩈"],[0,"⩉"],[0,"⩊"],[0,"⩋"],[0,"⩌"],[0,"⩍"],[2,"⩐"],[2,"⩓"],[0,"⩔"],[0,"⩕"],[0,"⩖"],[0,"⩗"],[0,"⩘"],[1,"⩚"],[0,"⩛"],[0,"⩜"],[0,"⩝"],[1,"⩟"],[6,"⩦"],[3,"⩪"],[2,{v:"⩭",n:824,o:"⩭̸"}],[0,"⩮"],[0,"⩯"],[0,{v:"⩰",n:824,o:"⩰̸"}],[0,"⩱"],[0,"⩲"],[0,"⩳"],[0,"⩴"],[0,"⩵"],[1,"⩷"],[0,"⩸"],[0,"⩹"],[0,"⩺"],[0,"⩻"],[0,"⩼"],[0,{v:"⩽",n:824,o:"⩽̸"}],[0,{v:"⩾",n:824,o:"⩾̸"}],[0,"⩿"],[0,"⪀"],[0,"⪁"],[0,"⪂"],[0,"⪃"],[0,"⪄"],[0,"⪅"],[0,"⪆"],[0,"⪇"],[0,"⪈"],[0,"⪉"],[0,"⪊"],[0,"⪋"],[0,"⪌"],[0,"⪍"],[0,"⪎"],[0,"⪏"],[0,"⪐"],[0,"⪑"],[0,"⪒"],[0,"⪓"],[0,"⪔"],[0,"⪕"],[0,"⪖"],[0,"⪗"],[0,"⪘"],[0,"⪙"],[0,"⪚"],[2,"⪝"],[0,"⪞"],[0,"⪟"],[0,"⪠"],[0,{v:"⪡",n:824,o:"⪡̸"}],[0,{v:"⪢",n:824,o:"⪢̸"}],[1,"⪤"],[0,"⪥"],[0,"⪦"],[0,"⪧"],[0,"⪨"],[0,"⪩"],[0,"⪪"],[0,"⪫"],[0,{v:"⪬",n:65024,o:"⪬︀"}],[0,{v:"⪭",n:65024,o:"⪭︀"}],[0,"⪮"],[0,{v:"⪯",n:824,o:"⪯̸"}],[0,{v:"⪰",n:824,o:"⪰̸"}],[2,"⪳"],[0,"⪴"],[0,"⪵"],[0,"⪶"],[0,"⪷"],[0,"⪸"],[0,"⪹"],[0,"⪺"],[0,"⪻"],[0,"⪼"],[0,"⪽"],[0,"⪾"],[0,"⪿"],[0,"⫀"],[0,"⫁"],[0,"⫂"],[0,"⫃"],[0,"⫄"],[0,{v:"⫅",n:824,o:"⫅̸"}],[0,{v:"⫆",n:824,o:"⫆̸"}],[0,"⫇"],[0,"⫈"],[2,{v:"⫋",n:65024,o:"⫋︀"}],[0,{v:"⫌",n:65024,o:"⫌︀"}],[2,"⫏"],[0,"⫐"],[0,"⫑"],[0,"⫒"],[0,"⫓"],[0,"⫔"],[0,"⫕"],[0,"⫖"],[0,"⫗"],[0,"⫘"],[0,"⫙"],[0,"⫚"],[0,"⫛"],[8,"⫤"],[1,"⫦"],[0,"⫧"],[0,"⫨"],[0,"⫩"],[1,"⫫"],[0,"⫬"],[0,"⫭"],[0,"⫮"],[0,"⫯"],[0,"⫰"],[0,"⫱"],[0,"⫲"],[0,"⫳"],[9,{v:"⫽",n:8421,o:"⫽⃥"}],[44343,{n:new Map(Gp([[56476,"𝒜"],[1,"𝒞"],[0,"𝒟"],[2,"𝒢"],[2,"𝒥"],[0,"𝒦"],[2,"𝒩"],[0,"𝒪"],[0,"𝒫"],[0,"𝒬"],[1,"𝒮"],[0,"𝒯"],[0,"𝒰"],[0,"𝒱"],[0,"𝒲"],[0,"𝒳"],[0,"𝒴"],[0,"𝒵"],[0,"𝒶"],[0,"𝒷"],[0,"𝒸"],[0,"𝒹"],[1,"𝒻"],[1,"𝒽"],[0,"𝒾"],[0,"𝒿"],[0,"𝓀"],[0,"𝓁"],[0,"𝓂"],[0,"𝓃"],[1,"𝓅"],[0,"𝓆"],[0,"𝓇"],[0,"𝓈"],[0,"𝓉"],[0,"𝓊"],[0,"𝓋"],[0,"𝓌"],[0,"𝓍"],[0,"𝓎"],[0,"𝓏"],[52,"𝔄"],[0,"𝔅"],[1,"𝔇"],[0,"𝔈"],[0,"𝔉"],[0,"𝔊"],[2,"𝔍"],[0,"𝔎"],[0,"𝔏"],[0,"𝔐"],[0,"𝔑"],[0,"𝔒"],[0,"𝔓"],[0,"𝔔"],[1,"𝔖"],[0,"𝔗"],[0,"𝔘"],[0,"𝔙"],[0,"𝔚"],[0,"𝔛"],[0,"𝔜"],[1,"𝔞"],[0,"𝔟"],[0,"𝔠"],[0,"𝔡"],[0,"𝔢"],[0,"𝔣"],[0,"𝔤"],[0,"𝔥"],[0,"𝔦"],[0,"𝔧"],[0,"𝔨"],[0,"𝔩"],[0,"𝔪"],[0,"𝔫"],[0,"𝔬"],[0,"𝔭"],[0,"𝔮"],[0,"𝔯"],[0,"𝔰"],[0,"𝔱"],[0,"𝔲"],[0,"𝔳"],[0,"𝔴"],[0,"𝔵"],[0,"𝔶"],[0,"𝔷"],[0,"𝔸"],[0,"𝔹"],[1,"𝔻"],[0,"𝔼"],[0,"𝔽"],[0,"𝔾"],[1,"𝕀"],[0,"𝕁"],[0,"𝕂"],[0,"𝕃"],[0,"𝕄"],[1,"𝕆"],[3,"𝕊"],[0,"𝕋"],[0,"𝕌"],[0,"𝕍"],[0,"𝕎"],[0,"𝕏"],[0,"𝕐"],[1,"𝕒"],[0,"𝕓"],[0,"𝕔"],[0,"𝕕"],[0,"𝕖"],[0,"𝕗"],[0,"𝕘"],[0,"𝕙"],[0,"𝕚"],[0,"𝕛"],[0,"𝕜"],[0,"𝕝"],[0,"𝕞"],[0,"𝕟"],[0,"𝕠"],[0,"𝕡"],[0,"𝕢"],[0,"𝕣"],[0,"𝕤"],[0,"𝕥"],[0,"𝕦"],[0,"𝕧"],[0,"𝕨"],[0,"𝕩"],[0,"𝕪"],[0,"𝕫"]]))}],[8906,"ff"],[0,"fi"],[0,"fl"],[0,"ffi"],[0,"ffl"]]));var Wp={};!function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.escapeText=e.escapeAttribute=e.escapeUTF8=e.escape=e.encodeXML=e.getCodePoint=e.xmlReplacer=void 0,e.xmlReplacer=/["&'<>$\x80-\uFFFF]/g;var t=new Map([[34,"""],[38,"&"],[39,"'"],[60,"<"],[62,">"]]);function n(n){for(var r,i="",a=0;null!==(r=e.xmlReplacer.exec(n));){var o=r.index,s=n.charCodeAt(o),u=t.get(s);void 0!==u?(i+=n.substring(a,o)+u,a=o+1):(i+="".concat(n.substring(a,o),"&#x").concat((0,e.getCodePoint)(n,o).toString(16),";"),a=e.xmlReplacer.lastIndex+=Number(55296==(64512&s)))}return i+n.substr(a)}function r(e,t){return function(n){for(var r,i=0,a="";r=e.exec(n);)i!==r.index&&(a+=n.substring(i,r.index)),a+=t.get(r[0].charCodeAt(0)),i=r.index+1;return a+n.substring(i)}}e.getCodePoint=null!=String.prototype.codePointAt?function(e,t){return e.codePointAt(t)}:function(e,t){return 55296==(64512&e.charCodeAt(t))?1024*(e.charCodeAt(t)-55296)+e.charCodeAt(t+1)-56320+65536:e.charCodeAt(t)},e.encodeXML=n,e.escape=n,e.escapeUTF8=r(/[&<>'"]/g,t),e.escapeAttribute=r(/["&\u00A0]/g,new Map([[34,"""],[38,"&"],[160," "]])),e.escapeText=r(/[&<>\u00A0]/g,new Map([[38,"&"],[60,"<"],[62,">"],[160," "]]))}(Wp);var qp=at&&at.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(Yp,"__esModule",{value:!0}),Yp.encodeNonAsciiHTML=Yp.encodeHTML=void 0;var Kp=qp(jp),Jp=Wp,Xp=/[\t\n!-,./:-@[-`\f{-}$\x80-\uFFFF]/g;function Qp(e,t){for(var n,r="",i=0;null!==(n=e.exec(t));){var a=n.index;r+=t.substring(i,a);var o=t.charCodeAt(a),s=Kp.default.get(o);if("object"==typeof s){if(a+1<t.length){var u=t.charCodeAt(a+1),l="number"==typeof s.n?s.n===u?s.o:void 0:s.n.get(u);if(void 0!==l){r+=l,i=e.lastIndex+=1;continue}}s=s.v}if(void 0!==s)r+=s,i=a+1;else{var c=(0,Jp.getCodePoint)(t,a);r+="&#x".concat(c.toString(16),";"),i=e.lastIndex+=Number(c!==o)}}return r+t.substr(i)}Yp.encodeHTML=function(e){return Qp(Xp,e)},Yp.encodeNonAsciiHTML=function(e){return Qp(Jp.xmlReplacer,e)},function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXMLStrict=e.decodeHTML5Strict=e.decodeHTML4Strict=e.decodeHTML5=e.decodeHTML4=e.decodeHTMLAttribute=e.decodeHTMLStrict=e.decodeHTML=e.decodeXML=e.DecodingMode=e.EntityDecoder=e.encodeHTML5=e.encodeHTML4=e.encodeNonAsciiHTML=e.encodeHTML=e.escapeText=e.escapeAttribute=e.escapeUTF8=e.escape=e.encodeXML=e.encode=e.decodeStrict=e.decode=e.EncodingMode=e.EntityLevel=void 0;var t,n,r=Up,i=Yp,a=Wp;function o(e,n){if(void 0===n&&(n=t.XML),("number"==typeof n?n:n.level)===t.HTML){var i="object"==typeof n?n.mode:void 0;return(0,r.decodeHTML)(e,i)}return(0,r.decodeXML)(e)}!function(e){e[e.XML=0]="XML",e[e.HTML=1]="HTML"}(t=e.EntityLevel||(e.EntityLevel={})),function(e){e[e.UTF8=0]="UTF8",e[e.ASCII=1]="ASCII",e[e.Extensive=2]="Extensive",e[e.Attribute=3]="Attribute",e[e.Text=4]="Text"}(n=e.EncodingMode||(e.EncodingMode={})),e.decode=o,e.decodeStrict=function(e,n){var i;void 0===n&&(n=t.XML);var a="number"==typeof n?{level:n}:n;return null!==(i=a.mode)&&void 0!==i||(a.mode=r.DecodingMode.Strict),o(e,a)},e.encode=function(e,r){void 0===r&&(r=t.XML);var o="number"==typeof r?{level:r}:r;return o.mode===n.UTF8?(0,a.escapeUTF8)(e):o.mode===n.Attribute?(0,a.escapeAttribute)(e):o.mode===n.Text?(0,a.escapeText)(e):o.level===t.HTML?o.mode===n.ASCII?(0,i.encodeNonAsciiHTML)(e):(0,i.encodeHTML)(e):(0,a.encodeXML)(e)};var s=Wp;Object.defineProperty(e,"encodeXML",{enumerable:!0,get:function(){return s.encodeXML}}),Object.defineProperty(e,"escape",{enumerable:!0,get:function(){return s.escape}}),Object.defineProperty(e,"escapeUTF8",{enumerable:!0,get:function(){return s.escapeUTF8}}),Object.defineProperty(e,"escapeAttribute",{enumerable:!0,get:function(){return s.escapeAttribute}}),Object.defineProperty(e,"escapeText",{enumerable:!0,get:function(){return s.escapeText}});var u=Yp;Object.defineProperty(e,"encodeHTML",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(e,"encodeNonAsciiHTML",{enumerable:!0,get:function(){return u.encodeNonAsciiHTML}}),Object.defineProperty(e,"encodeHTML4",{enumerable:!0,get:function(){return u.encodeHTML}}),Object.defineProperty(e,"encodeHTML5",{enumerable:!0,get:function(){return u.encodeHTML}});var l=Up;Object.defineProperty(e,"EntityDecoder",{enumerable:!0,get:function(){return l.EntityDecoder}}),Object.defineProperty(e,"DecodingMode",{enumerable:!0,get:function(){return l.DecodingMode}}),Object.defineProperty(e,"decodeXML",{enumerable:!0,get:function(){return l.decodeXML}}),Object.defineProperty(e,"decodeHTML",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTMLStrict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeHTMLAttribute",{enumerable:!0,get:function(){return l.decodeHTMLAttribute}}),Object.defineProperty(e,"decodeHTML4",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTML5",{enumerable:!0,get:function(){return l.decodeHTML}}),Object.defineProperty(e,"decodeHTML4Strict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeHTML5Strict",{enumerable:!0,get:function(){return l.decodeHTMLStrict}}),Object.defineProperty(e,"decodeXMLStrict",{enumerable:!0,get:function(){return l.decodeXML}})}(Fp);var em={};Object.defineProperty(em,"__esModule",{value:!0}),em.attributeNames=em.elementNames=void 0,em.elementNames=new Map(["altGlyph","altGlyphDef","altGlyphItem","animateColor","animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","glyphRef","linearGradient","radialGradient","textPath"].map((function(e){return[e.toLowerCase(),e]}))),em.attributeNames=new Map(["definitionURL","attributeName","attributeType","baseFrequency","baseProfile","calcMode","clipPathUnits","diffuseConstant","edgeMode","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector","zoomAndPan"].map((function(e){return[e.toLowerCase(),e]})));var tm=at&&at.__assign||function(){return tm=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},tm.apply(this,arguments)},nm=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),rm=at&&at.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),im=at&&at.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&nm(t,e,n);return rm(t,e),t};Object.defineProperty(Pp,"__esModule",{value:!0}),Pp.render=void 0;var am=im(pp),om=Fp,sm=em,um=new Set(["style","script","xmp","iframe","noembed","noframes","plaintext","noscript"]);function lm(e){return e.replace(/"/g,""")}var cm=new Set(["area","base","basefont","br","col","command","embed","frame","hr","img","input","isindex","keygen","link","meta","param","source","track","wbr"]);function dm(e,t){void 0===t&&(t={});for(var n=("length"in e?e:[e]),r="",i=0;i<n.length;i++)r+=fm(n[i],t);return r}function fm(e,t){switch(e.type){case am.Root:return dm(e.children,t);case am.Doctype:case am.Directive:return"<".concat(e.data,">");case am.Comment:return function(e){return"\x3c!--".concat(e.data,"--\x3e")}(e);case am.CDATA:return function(e){return"<![CDATA[".concat(e.children[0].data,"]]>")}(e);case am.Script:case am.Style:case am.Tag:return function(e,t){var n;"foreign"===t.xmlMode&&(e.name=null!==(n=sm.elementNames.get(e.name))&&void 0!==n?n:e.name,e.parent&&hm.has(e.parent.name)&&(t=tm(tm({},t),{xmlMode:!1})));!t.xmlMode&&pm.has(e.name)&&(t=tm(tm({},t),{xmlMode:"foreign"}));var r="<".concat(e.name),i=function(e,t){var n;if(e){var r=!1===(null!==(n=t.encodeEntities)&&void 0!==n?n:t.decodeEntities)?lm:t.xmlMode||"utf8"!==t.encodeEntities?om.encodeXML:om.escapeAttribute;return Object.keys(e).map((function(n){var i,a,o=null!==(i=e[n])&&void 0!==i?i:"";return"foreign"===t.xmlMode&&(n=null!==(a=sm.attributeNames.get(n))&&void 0!==a?a:n),t.emptyAttrs||t.xmlMode||""!==o?"".concat(n,'="').concat(r(o),'"'):n})).join(" ")}}(e.attribs,t);i&&(r+=" ".concat(i));0===e.children.length&&(t.xmlMode?!1!==t.selfClosingTags:t.selfClosingTags&&cm.has(e.name))?(t.xmlMode||(r+=" "),r+="/>"):(r+=">",e.children.length>0&&(r+=dm(e.children,t)),!t.xmlMode&&cm.has(e.name)||(r+="</".concat(e.name,">")));return r}(e,t);case am.Text:return function(e,t){var n,r=e.data||"";!1===(null!==(n=t.encodeEntities)&&void 0!==n?n:t.decodeEntities)||!t.xmlMode&&e.parent&&um.has(e.parent.name)||(r=t.xmlMode||"utf8"!==t.encodeEntities?(0,om.encodeXML)(r):(0,om.escapeText)(r));return r}(e,t)}}Pp.render=dm,Pp.default=dm;var hm=new Set(["mi","mo","mn","ms","mtext","annotation-xml","foreignObject","desc","title"]),pm=new Set(["svg","math"]);var mm=at&&at.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(Zp,"__esModule",{value:!0}),Zp.innerText=Zp.textContent=Zp.getText=Zp.getInnerHTML=Zp.getOuterHTML=void 0;var _m=hp,ym=mm(Pp),gm=pp;function vm(e,t){return(0,ym.default)(e,t)}Zp.getOuterHTML=vm,Zp.getInnerHTML=function(e,t){return(0,_m.hasChildren)(e)?e.children.map((function(e){return vm(e,t)})).join(""):""},Zp.getText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,_m.isTag)(t)?"br"===t.name?"\n":e(t.children):(0,_m.isCDATA)(t)?e(t.children):(0,_m.isText)(t)?t.data:""},Zp.textContent=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,_m.hasChildren)(t)&&!(0,_m.isComment)(t)?e(t.children):(0,_m.isText)(t)?t.data:""},Zp.innerText=function e(t){return Array.isArray(t)?t.map(e).join(""):(0,_m.hasChildren)(t)&&(t.type===gm.ElementType.Tag||(0,_m.isCDATA)(t))?e(t.children):(0,_m.isText)(t)?t.data:""};var Am={};Object.defineProperty(Am,"__esModule",{value:!0}),Am.prevElementSibling=Am.nextElementSibling=Am.getName=Am.hasAttrib=Am.getAttributeValue=Am.getSiblings=Am.getParent=Am.getChildren=void 0;var Em=hp;function bm(e){return(0,Em.hasChildren)(e)?e.children:[]}function Sm(e){return e.parent||null}Am.getChildren=bm,Am.getParent=Sm,Am.getSiblings=function(e){var t=Sm(e);if(null!=t)return bm(t);for(var n=[e],r=e.prev,i=e.next;null!=r;)n.unshift(r),r=r.prev;for(;null!=i;)n.push(i),i=i.next;return n},Am.getAttributeValue=function(e,t){var n;return null===(n=e.attribs)||void 0===n?void 0:n[t]},Am.hasAttrib=function(e,t){return null!=e.attribs&&Object.prototype.hasOwnProperty.call(e.attribs,t)&&null!=e.attribs[t]},Am.getName=function(e){return e.name},Am.nextElementSibling=function(e){for(var t=e.next;null!==t&&!(0,Em.isTag)(t);)t=t.next;return t},Am.prevElementSibling=function(e){for(var t=e.prev;null!==t&&!(0,Em.isTag)(t);)t=t.prev;return t};var Mm={};function Tm(e){if(e.prev&&(e.prev.next=e.next),e.next&&(e.next.prev=e.prev),e.parent){var t=e.parent.children,n=t.lastIndexOf(e);n>=0&&t.splice(n,1)}e.next=null,e.prev=null,e.parent=null}Object.defineProperty(Mm,"__esModule",{value:!0}),Mm.prepend=Mm.prependChild=Mm.append=Mm.appendChild=Mm.replaceElement=Mm.removeElement=void 0,Mm.removeElement=Tm,Mm.replaceElement=function(e,t){var n=t.prev=e.prev;n&&(n.next=t);var r=t.next=e.next;r&&(r.prev=t);var i=t.parent=e.parent;if(i){var a=i.children;a[a.lastIndexOf(e)]=t,e.parent=null}},Mm.appendChild=function(e,t){if(Tm(t),t.next=null,t.parent=e,e.children.push(t)>1){var n=e.children[e.children.length-2];n.next=t,t.prev=n}else t.prev=null},Mm.append=function(e,t){Tm(t);var n=e.parent,r=e.next;if(t.next=r,t.prev=e,e.next=t,t.parent=n,r){if(r.prev=t,n){var i=n.children;i.splice(i.lastIndexOf(r),0,t)}}else n&&n.children.push(t)},Mm.prependChild=function(e,t){if(Tm(t),t.parent=e,t.prev=null,1!==e.children.unshift(t)){var n=e.children[1];n.prev=t,t.next=n}else t.next=null},Mm.prepend=function(e,t){Tm(t);var n=e.parent;if(n){var r=n.children;r.splice(r.indexOf(e),0,t)}e.prev&&(e.prev.next=t),t.parent=n,t.prev=e.prev,t.next=e,e.prev=t};var wm={};Object.defineProperty(wm,"__esModule",{value:!0}),wm.findAll=wm.existsOne=wm.findOne=wm.findOneChild=wm.find=wm.filter=void 0;var Om=hp;function Nm(e,t,n,r){for(var i=[],a=[t],o=[0];;)if(o[0]>=a[0].length){if(1===o.length)return i;a.shift(),o.shift()}else{var s=a[0][o[0]++];if(e(s)&&(i.push(s),--r<=0))return i;n&&(0,Om.hasChildren)(s)&&s.children.length>0&&(o.unshift(0),a.unshift(s.children))}}wm.filter=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),Nm(e,Array.isArray(t)?t:[t],n,r)},wm.find=Nm,wm.findOneChild=function(e,t){return t.find(e)},wm.findOne=function e(t,n,r){void 0===r&&(r=!0);for(var i=null,a=0;a<n.length&&!i;a++){var o=n[a];(0,Om.isTag)(o)&&(t(o)?i=o:r&&o.children.length>0&&(i=e(t,o.children,!0)))}return i},wm.existsOne=function e(t,n){return n.some((function(n){return(0,Om.isTag)(n)&&(t(n)||e(t,n.children))}))},wm.findAll=function(e,t){for(var n=[],r=[t],i=[0];;)if(i[0]>=r[0].length){if(1===r.length)return n;r.shift(),i.shift()}else{var a=r[0][i[0]++];(0,Om.isTag)(a)&&(e(a)&&n.push(a),a.children.length>0&&(i.unshift(0),r.unshift(a.children)))}};var Cm={};Object.defineProperty(Cm,"__esModule",{value:!0}),Cm.getElementsByTagType=Cm.getElementsByTagName=Cm.getElementById=Cm.getElements=Cm.testElement=void 0;var Lm=hp,Dm=wm,$m={tag_name:function(e){return"function"==typeof e?function(t){return(0,Lm.isTag)(t)&&e(t.name)}:"*"===e?Lm.isTag:function(t){return(0,Lm.isTag)(t)&&t.name===e}},tag_type:function(e){return"function"==typeof e?function(t){return e(t.type)}:function(t){return t.type===e}},tag_contains:function(e){return"function"==typeof e?function(t){return(0,Lm.isText)(t)&&e(t.data)}:function(t){return(0,Lm.isText)(t)&&t.data===e}}};function Im(e,t){return"function"==typeof t?function(n){return(0,Lm.isTag)(n)&&t(n.attribs[e])}:function(n){return(0,Lm.isTag)(n)&&n.attribs[e]===t}}function xm(e,t){return function(n){return e(n)||t(n)}}function km(e){var t=Object.keys(e).map((function(t){var n=e[t];return Object.prototype.hasOwnProperty.call($m,t)?$m[t](n):Im(t,n)}));return 0===t.length?null:t.reduce(xm)}Cm.testElement=function(e,t){var n=km(e);return!n||n(t)},Cm.getElements=function(e,t,n,r){void 0===r&&(r=1/0);var i=km(e);return i?(0,Dm.filter)(i,t,n,r):[]},Cm.getElementById=function(e,t,n){return void 0===n&&(n=!0),Array.isArray(t)||(t=[t]),(0,Dm.findOne)(Im("id",e),t,n)},Cm.getElementsByTagName=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),(0,Dm.filter)($m.tag_name(e),t,n,r)},Cm.getElementsByTagType=function(e,t,n,r){return void 0===n&&(n=!0),void 0===r&&(r=1/0),(0,Dm.filter)($m.tag_type(e),t,n,r)};var zm={};!function(e){Object.defineProperty(e,"__esModule",{value:!0}),e.uniqueSort=e.compareDocumentPosition=e.DocumentPosition=e.removeSubsets=void 0;var t,n=hp;function r(e,r){var i=[],a=[];if(e===r)return 0;for(var o=(0,n.hasChildren)(e)?e:e.parent;o;)i.unshift(o),o=o.parent;for(o=(0,n.hasChildren)(r)?r:r.parent;o;)a.unshift(o),o=o.parent;for(var s=Math.min(i.length,a.length),u=0;u<s&&i[u]===a[u];)u++;if(0===u)return t.DISCONNECTED;var l=i[u-1],c=l.children,d=i[u],f=a[u];return c.indexOf(d)>c.indexOf(f)?l===r?t.FOLLOWING|t.CONTAINED_BY:t.FOLLOWING:l===e?t.PRECEDING|t.CONTAINS:t.PRECEDING}e.removeSubsets=function(e){for(var t=e.length;--t>=0;){var n=e[t];if(t>0&&e.lastIndexOf(n,t-1)>=0)e.splice(t,1);else for(var r=n.parent;r;r=r.parent)if(e.includes(r)){e.splice(t,1);break}}return e},function(e){e[e.DISCONNECTED=1]="DISCONNECTED",e[e.PRECEDING=2]="PRECEDING",e[e.FOLLOWING=4]="FOLLOWING",e[e.CONTAINS=8]="CONTAINS",e[e.CONTAINED_BY=16]="CONTAINED_BY"}(t=e.DocumentPosition||(e.DocumentPosition={})),e.compareDocumentPosition=r,e.uniqueSort=function(e){return e=e.filter((function(e,t,n){return!n.includes(e,t+1)})),e.sort((function(e,n){var i=r(e,n);return i&t.PRECEDING?-1:i&t.FOLLOWING?1:0})),e}}(zm);var Rm={};Object.defineProperty(Rm,"__esModule",{value:!0}),Rm.getFeed=void 0;var Zm=Zp,Pm=Cm;Rm.getFeed=function(e){var t=Vm(jm,e);return t?"feed"===t.name?function(e){var t,n=e.children,r={type:"atom",items:(0,Pm.getElementsByTagName)("entry",n).map((function(e){var t,n=e.children,r={media:Bm(n)};Ym(r,"id","id",n),Ym(r,"title","title",n);var i=null===(t=Vm("link",n))||void 0===t?void 0:t.attribs.href;i&&(r.link=i);var a=Hm("summary",n)||Hm("content",n);a&&(r.description=a);var o=Hm("updated",n);return o&&(r.pubDate=new Date(o)),r}))};Ym(r,"id","id",n),Ym(r,"title","title",n);var i=null===(t=Vm("link",n))||void 0===t?void 0:t.attribs.href;i&&(r.link=i);Ym(r,"description","subtitle",n);var a=Hm("updated",n);a&&(r.updated=new Date(a));return Ym(r,"author","email",n,!0),r}(t):function(e){var t,n,r=null!==(n=null===(t=Vm("channel",e.children))||void 0===t?void 0:t.children)&&void 0!==n?n:[],i={type:e.name.substr(0,3),id:"",items:(0,Pm.getElementsByTagName)("item",e.children).map((function(e){var t=e.children,n={media:Bm(t)};Ym(n,"id","guid",t),Ym(n,"title","title",t),Ym(n,"link","link",t),Ym(n,"description","description",t);var r=Hm("pubDate",t)||Hm("dc:date",t);return r&&(n.pubDate=new Date(r)),n}))};Ym(i,"title","title",r),Ym(i,"link","link",r),Ym(i,"description","description",r);var a=Hm("lastBuildDate",r);a&&(i.updated=new Date(a));return Ym(i,"author","managingEditor",r,!0),i}(t):null};var Fm=["url","type","lang"],Um=["fileSize","bitrate","framerate","samplingrate","channels","duration","height","width"];function Bm(e){return(0,Pm.getElementsByTagName)("media:content",e).map((function(e){for(var t=e.attribs,n={medium:t.medium,isDefault:!!t.isDefault},r=0,i=Fm;r<i.length;r++){t[s=i[r]]&&(n[s]=t[s])}for(var a=0,o=Um;a<o.length;a++){var s;t[s=o[a]]&&(n[s]=parseInt(t[s],10))}return t.expression&&(n.expression=t.expression),n}))}function Vm(e,t){return(0,Pm.getElementsByTagName)(e,t,!0,1)[0]}function Hm(e,t,n){return void 0===n&&(n=!1),(0,Zm.textContent)((0,Pm.getElementsByTagName)(e,t,n,1)).trim()}function Ym(e,t,n,r,i){void 0===i&&(i=!1);var a=Hm(n,r,i);a&&(e[t]=a)}function jm(e){return"rss"===e||"feed"===e||"rdf:RDF"===e}!function(e){var t=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=at&&at.__exportStar||function(e,n){for(var r in e)"default"===r||Object.prototype.hasOwnProperty.call(n,r)||t(n,e,r)};Object.defineProperty(e,"__esModule",{value:!0}),e.hasChildren=e.isDocument=e.isComment=e.isText=e.isCDATA=e.isTag=void 0,n(Zp,e),n(Am,e),n(Mm,e),n(wm,e),n(Cm,e),n(zm,e),n(Rm,e);var r=hp;Object.defineProperty(e,"isTag",{enumerable:!0,get:function(){return r.isTag}}),Object.defineProperty(e,"isCDATA",{enumerable:!0,get:function(){return r.isCDATA}}),Object.defineProperty(e,"isText",{enumerable:!0,get:function(){return r.isText}}),Object.defineProperty(e,"isComment",{enumerable:!0,get:function(){return r.isComment}}),Object.defineProperty(e,"isDocument",{enumerable:!0,get:function(){return r.isDocument}}),Object.defineProperty(e,"hasChildren",{enumerable:!0,get:function(){return r.hasChildren}})}(Rp),function(e){var t=at&&at.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),n=at&&at.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),r=at&&at.__importStar||function(e){if(e&&e.__esModule)return e;var r={};if(null!=e)for(var i in e)"default"!==i&&Object.prototype.hasOwnProperty.call(e,i)&&t(r,e,i);return n(r,e),r},i=at&&at.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(e,"__esModule",{value:!0}),e.DomUtils=e.parseFeed=e.getFeed=e.ElementType=e.Tokenizer=e.createDomStream=e.parseDOM=e.parseDocument=e.DefaultHandler=e.DomHandler=e.Parser=void 0;var a=Yh,o=Yh;Object.defineProperty(e,"Parser",{enumerable:!0,get:function(){return o.Parser}});var s=hp,u=hp;function l(e,t){var n=new s.DomHandler(void 0,t);return new a.Parser(n,t).end(e),n.root}function c(e,t){return l(e,t).children}Object.defineProperty(e,"DomHandler",{enumerable:!0,get:function(){return u.DomHandler}}),Object.defineProperty(e,"DefaultHandler",{enumerable:!0,get:function(){return u.DomHandler}}),e.parseDocument=l,e.parseDOM=c,e.createDomStream=function(e,t,n){var r=new s.DomHandler(e,t,n);return new a.Parser(r,t)};var d=jh;Object.defineProperty(e,"Tokenizer",{enumerable:!0,get:function(){return i(d).default}}),e.ElementType=r(pp);var f=Rp,h=Rp;Object.defineProperty(e,"getFeed",{enumerable:!0,get:function(){return h.getFeed}});var p={xmlMode:!0};e.parseFeed=function(e,t){return void 0===t&&(t=p),(0,f.getFeed)(c(e,t))},e.DomUtils=r(Rp)}(Hh);var Gm={};
|
|
219
|
-
/*!
|
|
220
|
-
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
|
|
221
|
-
*
|
|
222
|
-
* Copyright (c) 2014-2017, Jon Schlinkert.
|
|
223
|
-
* Released under the MIT License.
|
|
224
|
-
*/
|
|
225
|
-
function Wm(e){return"[object Object]"===Object.prototype.toString.call(e)}Object.defineProperty(Gm,"__esModule",{value:!0}),Gm.isPlainObject=function(e){var t,n;return!1!==Wm(e)&&(void 0===(t=e.constructor)||!1!==Wm(n=t.prototype)&&!1!==n.hasOwnProperty("isPrototypeOf"))};var qm=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===Km}(e)}(e)};var Km="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function Jm(e,t){return!1!==t.clone&&t.isMergeableObject(e)?n_((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function Xm(e,t,n){return e.concat(t).map((function(e){return Jm(e,n)}))}function Qm(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function e_(e,t){try{return t in e}catch(e){return!1}}function t_(e,t,n){var r={};return n.isMergeableObject(e)&&Qm(e).forEach((function(t){r[t]=Jm(e[t],n)})),Qm(t).forEach((function(i){(function(e,t){return e_(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,i)||(e_(e,i)&&n.isMergeableObject(t[i])?r[i]=function(e,t){if(!t.customMerge)return n_;var n=t.customMerge(e);return"function"==typeof n?n:n_}(i,n)(e[i],t[i],n):r[i]=Jm(t[i],n))})),r}function n_(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||Xm,n.isMergeableObject=n.isMergeableObject||qm,n.cloneUnlessOtherwiseSpecified=Jm;var r=Array.isArray(t);return r===Array.isArray(e)?r?n.arrayMerge(e,t,n):t_(e,t,n):Jm(t,n)}n_.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return n_(e,n,t)}),{})};var r_,i_=n_,a_={exports:{}};r_=a_,function(e,t){r_.exports?r_.exports=t():e.parseSrcset=t()}(at,(function(){return function(e){function t(e){return" "===e||"\t"===e||"\n"===e||"\f"===e||"\r"===e}function n(t){var n,r=t.exec(e.substring(m));if(r)return n=r[0],m+=n.length,n}for(var r,i,a,o,s,u=e.length,l=/^[ \t\n\r\u000c]+/,c=/^[, \t\n\r\u000c]+/,d=/^[^ \t\n\r\u000c]+/,f=/[,]+$/,h=/^\d+$/,p=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,m=0,_=[];;){if(n(c),m>=u)return _;r=n(d),i=[],","===r.slice(-1)?(r=r.replace(f,""),g()):y()}function y(){for(n(l),a="",o="in descriptor";;){if(s=e.charAt(m),"in descriptor"===o)if(t(s))a&&(i.push(a),a="",o="after descriptor");else{if(","===s)return m+=1,a&&i.push(a),void g();if("("===s)a+=s,o="in parens";else{if(""===s)return a&&i.push(a),void g();a+=s}}else if("in parens"===o)if(")"===s)a+=s,o="in descriptor";else{if(""===s)return i.push(a),void g();a+=s}else if("after descriptor"===o)if(t(s));else{if(""===s)return void g();o="in descriptor",m-=1}m+=1}}function g(){var t,n,a,o,s,u,l,c,d,f=!1,m={};for(o=0;o<i.length;o++)u=(s=i[o])[s.length-1],l=s.substring(0,s.length-1),c=parseInt(l,10),d=parseFloat(l),h.test(l)&&"w"===u?((t||n)&&(f=!0),0===c?f=!0:t=c):p.test(l)&&"x"===u?((t||n||a)&&(f=!0),d<0?f=!0:n=d):h.test(l)&&"h"===u?((a||n)&&(f=!0),0===c?f=!0:a=c):f=!0;f?console&&console.log&&console.log("Invalid srcset descriptor found in '"+e+"' at '"+s+"'."):(m.url=r,t&&(m.w=t),n&&(m.d=n),a&&(m.h=a),_.push(m))}}}));var o_={exports:{}},s_=String,u_=function(){return{isColorSupported:!1,reset:s_,bold:s_,dim:s_,italic:s_,underline:s_,inverse:s_,hidden:s_,strikethrough:s_,black:s_,red:s_,green:s_,yellow:s_,blue:s_,magenta:s_,cyan:s_,white:s_,gray:s_,bgBlack:s_,bgRed:s_,bgGreen:s_,bgYellow:s_,bgBlue:s_,bgMagenta:s_,bgCyan:s_,bgWhite:s_}};o_.exports=u_(),o_.exports.createColors=u_;var l_=ot(Object.freeze({__proto__:null,default:{}}));let c_=o_.exports,d_=l_;class f_ extends Error{constructor(e,t,n,r,i,a){super(e),this.name="CssSyntaxError",this.reason=e,i&&(this.file=i),r&&(this.source=r),a&&(this.plugin=a),void 0!==t&&void 0!==n&&("number"==typeof t?(this.line=t,this.column=n):(this.line=t.line,this.column=t.column,this.endLine=n.line,this.endColumn=n.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,f_)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;null==e&&(e=c_.isColorSupported),d_&&e&&(t=d_(t));let n,r,i=t.split(/\r?\n/),a=Math.max(this.line-3,0),o=Math.min(this.line+2,i.length),s=String(o).length;if(e){let{bold:e,red:t,gray:i}=c_.createColors(!0);n=n=>e(t(n)),r=e=>i(e)}else n=r=e=>e;return i.slice(a,o).map(((e,t)=>{let i=a+1+t,o=" "+(" "+i).slice(-s)+" | ";if(i===this.line){let t=r(o.replace(/\d/g," "))+e.slice(0,this.column-1).replace(/[^\t]/g," ");return n(">")+r(o)+e+"\n "+t+n("^")}return" "+r(o)+e})).join("\n")}toString(){let e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}}var h_=f_;f_.default=f_;var p_={};p_.isClean=Symbol("isClean"),p_.my=Symbol("my");const m_={colon:": ",indent:" ",beforeDecl:"\n",beforeRule:"\n",beforeOpen:" ",beforeClose:"\n",beforeComment:"\n",after:"\n",emptyBody:"",commentLeft:" ",commentRight:" ",semicolon:!1};class __{constructor(e){this.builder=e}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}document(e){this.body(e)}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}comment(e){let t=this.raw(e,"left","commentLeft"),n=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+n+"*/",e)}decl(e,t){let n=this.raw(e,"between","colon"),r=e.prop+n+this.rawValue(e,"value");e.important&&(r+=e.raws.important||" !important"),t&&(r+=";"),this.builder(r,e)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}atrule(e,t){let n="@"+e.name,r=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?n+=e.raws.afterName:r&&(n+=" "),e.nodes)this.block(e,n+r);else{let i=(e.raws.between||"")+(t?";":"");this.builder(n+r+i,e)}}body(e){let t=e.nodes.length-1;for(;t>0&&"comment"===e.nodes[t].type;)t-=1;let n=this.raw(e,"semicolon");for(let r=0;r<e.nodes.length;r++){let i=e.nodes[r],a=this.raw(i,"before");a&&this.builder(a),this.stringify(i,t!==r||n)}}block(e,t){let n,r=this.raw(e,"between","beforeOpen");this.builder(t+r+"{",e,"start"),e.nodes&&e.nodes.length?(this.body(e),n=this.raw(e,"after")):n=this.raw(e,"after","emptyBody"),n&&this.builder(n),this.builder("}",e,"end")}raw(e,t,n){let r;if(n||(n=t),t&&(r=e.raws[t],void 0!==r))return r;let i=e.parent;if("before"===n){if(!i||"root"===i.type&&i.first===e)return"";if(i&&"document"===i.type)return""}if(!i)return m_[n];let a=e.root();if(a.rawCache||(a.rawCache={}),void 0!==a.rawCache[n])return a.rawCache[n];if("before"===n||"after"===n)return this.beforeAfter(e,n);{let i="raw"+((o=n)[0].toUpperCase()+o.slice(1));this[i]?r=this[i](a,e):a.walk((e=>{if(r=e.raws[t],void 0!==r)return!1}))}var o;return void 0===r&&(r=m_[n]),a.rawCache[n]=r,r}rawSemicolon(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length&&"decl"===e.last.type&&(t=e.raws.semicolon,void 0!==t))return!1})),t}rawEmptyBody(e){let t;return e.walk((e=>{if(e.nodes&&0===e.nodes.length&&(t=e.raws.after,void 0!==t))return!1})),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk((n=>{let r=n.parent;if(r&&r!==e&&r.parent&&r.parent===e&&void 0!==n.raws.before){let e=n.raws.before.split("\n");return t=e[e.length-1],t=t.replace(/\S/g,""),!1}})),t}rawBeforeComment(e,t){let n;return e.walkComments((e=>{if(void 0!==e.raws.before)return n=e.raws.before,n.includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeDecl"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeDecl(e,t){let n;return e.walkDecls((e=>{if(void 0!==e.raws.before)return n=e.raws.before,n.includes("\n")&&(n=n.replace(/[^\n]+$/,"")),!1})),void 0===n?n=this.raw(t,null,"beforeRule"):n&&(n=n.replace(/\S/g,"")),n}rawBeforeRule(e){let t;return e.walk((n=>{if(n.nodes&&(n.parent!==e||e.first!==n)&&void 0!==n.raws.before)return t=n.raws.before,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeClose(e){let t;return e.walk((e=>{if(e.nodes&&e.nodes.length>0&&void 0!==e.raws.after)return t=e.raws.after,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeOpen(e){let t;return e.walk((e=>{if("decl"!==e.type&&(t=e.raws.between,void 0!==t))return!1})),t}rawColon(e){let t;return e.walkDecls((e=>{if(void 0!==e.raws.between)return t=e.raws.between.replace(/[^\s:]/g,""),!1})),t}beforeAfter(e,t){let n;n="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");let r=e.parent,i=0;for(;r&&"root"!==r.type;)i+=1,r=r.parent;if(n.includes("\n")){let t=this.raw(e,null,"indent");if(t.length)for(let e=0;e<i;e++)n+=t}return n}rawValue(e,t){let n=e[t],r=e.raws[t];return r&&r.value===n?r.raw:n}}var y_=__;__.default=__;let g_=y_;function v_(e,t){new g_(t).stringify(e)}var A_=v_;v_.default=v_;let{isClean:E_,my:b_}=p_,S_=h_,M_=y_,T_=A_;function w_(e,t){let n=new e.constructor;for(let r in e){if(!Object.prototype.hasOwnProperty.call(e,r))continue;if("proxyCache"===r)continue;let i=e[r],a=typeof i;"parent"===r&&"object"===a?t&&(n[r]=t):"source"===r?n[r]=i:Array.isArray(i)?n[r]=i.map((e=>w_(e,n))):("object"===a&&null!==i&&(i=w_(i)),n[r]=i)}return n}class O_{constructor(e={}){this.raws={},this[E_]=!1,this[b_]=!0;for(let t in e)if("nodes"===t){this.nodes=[];for(let n of e[t])"function"==typeof n.clone?this.append(n.clone()):this.append(n)}else this[t]=e[t]}error(e,t={}){if(this.source){let{start:n,end:r}=this.rangeBy(t);return this.source.input.error(e,{line:n.line,column:n.column},{line:r.line,column:r.column},t)}return new S_(e)}warn(e,t,n){let r={node:this};for(let e in n)r[e]=n[e];return e.warn(t,r)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(e=T_){e.stringify&&(e=e.stringify);let t="";return e(this,(e=>{t+=e})),t}assign(e={}){for(let t in e)this[t]=e[t];return this}clone(e={}){let t=w_(this);for(let n in e)t[n]=e[n];return t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}replaceWith(...e){if(this.parent){let t=this,n=!1;for(let r of e)r===this?n=!0:n?(this.parent.insertAfter(t,r),t=r):this.parent.insertBefore(t,r);n||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}before(e){return this.parent.insertBefore(this,e),this}after(e){return this.parent.insertAfter(this,e),this}root(){let e=this;for(;e.parent&&"document"!==e.parent.type;)e=e.parent;return e}raw(e,t){return(new M_).raw(this,e,t)}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}toJSON(e,t){let n={},r=null==t;t=t||new Map;let i=0;for(let e in this){if(!Object.prototype.hasOwnProperty.call(this,e))continue;if("parent"===e||"proxyCache"===e)continue;let r=this[e];if(Array.isArray(r))n[e]=r.map((e=>"object"==typeof e&&e.toJSON?e.toJSON(null,t):e));else if("object"==typeof r&&r.toJSON)n[e]=r.toJSON(null,t);else if("source"===e){let a=t.get(r.input);null==a&&(a=i,t.set(r.input,i),i++),n[e]={inputId:a,start:r.start,end:r.end}}else n[e]=r}return r&&(n.inputs=[...t.keys()].map((e=>e.toJSON()))),n}positionInside(e){let t=this.toString(),n=this.source.start.column,r=this.source.start.line;for(let i=0;i<e;i++)"\n"===t[i]?(n=1,r+=1):n+=1;return{line:r,column:n}}positionBy(e){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let n=this.toString().indexOf(e.word);-1!==n&&(t=this.positionInside(n))}return t}rangeBy(e){let t={line:this.source.start.line,column:this.source.start.column},n=this.source.end?{line:this.source.end.line,column:this.source.end.column+1}:{line:t.line,column:t.column+1};if(e.word){let r=this.toString().indexOf(e.word);-1!==r&&(t=this.positionInside(r),n=this.positionInside(r+e.word.length))}else e.start?t={line:e.start.line,column:e.start.column}:e.index&&(t=this.positionInside(e.index)),e.end?n={line:e.end.line,column:e.end.column}:e.endIndex?n=this.positionInside(e.endIndex):e.index&&(n=this.positionInside(e.index+1));return(n.line<t.line||n.line===t.line&&n.column<=t.column)&&(n={line:t.line,column:t.column+1}),{start:t,end:n}}getProxyProcessor(){return{set:(e,t,n)=>(e[t]===n||(e[t]=n,"prop"!==t&&"value"!==t&&"name"!==t&&"params"!==t&&"important"!==t&&"text"!==t||e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:"root"===t?()=>e.root().toProxy():e[t]}}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${t.input.from}:${t.start.line}:${t.start.column}$&`)}return e}markDirty(){if(this[E_]){this[E_]=!1;let e=this;for(;e=e.parent;)e[E_]=!1}}get proxyOf(){return this}}var N_=O_;O_.default=O_;let C_=N_;class L_ extends C_{constructor(e){e&&void 0!==e.value&&"string"!=typeof e.value&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}get variable(){return this.prop.startsWith("--")||"$"===this.prop[0]}}var D_=L_;L_.default=L_;var $_={nanoid:(e=21)=>{let t="",n=e;for(;n--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return t},customAlphabet:(e,t=21)=>(n=t)=>{let r="",i=n;for(;i--;)r+=e[Math.random()*e.length|0];return r}};let{SourceMapConsumer:I_,SourceMapGenerator:x_}=l_,{existsSync:k_,readFileSync:z_}=l_,{dirname:R_,join:Z_}=l_;class P_{constructor(e,t){if(!1===t.map)return;this.loadAnnotation(e),this.inline=this.startWith(this.annotation,"data:");let n=t.map?t.map.prev:void 0,r=this.loadMap(t.from,n);!this.mapFile&&t.from&&(this.mapFile=t.from),this.mapFile&&(this.root=R_(this.mapFile)),r&&(this.text=r)}consumer(){return this.consumerCache||(this.consumerCache=new I_(this.text)),this.consumerCache}withContent(){return!!(this.consumer().sourcesContent&&this.consumer().sourcesContent.length>0)}startWith(e,t){return!!e&&e.substr(0,t.length)===t}getAnnotationURL(e){return e.replace(/^\/\*\s*# sourceMappingURL=/,"").trim()}loadAnnotation(e){let t=e.match(/\/\*\s*# sourceMappingURL=/gm);if(!t)return;let n=e.lastIndexOf(t.pop()),r=e.indexOf("*/",n);n>-1&&r>-1&&(this.annotation=this.getAnnotationURL(e.substring(n,r)))}decodeInline(e){if(/^data:application\/json;charset=utf-?8,/.test(e)||/^data:application\/json,/.test(e))return decodeURIComponent(e.substr(RegExp.lastMatch.length));if(/^data:application\/json;charset=utf-?8;base64,/.test(e)||/^data:application\/json;base64,/.test(e))return t=e.substr(RegExp.lastMatch.length),Buffer?Buffer.from(t,"base64").toString():window.atob(t);var t;let n=e.match(/data:application\/json;([^,]+),/)[1];throw new Error("Unsupported source map encoding "+n)}loadFile(e){if(this.root=R_(e),k_(e))return this.mapFile=e,z_(e,"utf-8").toString().trim()}loadMap(e,t){if(!1===t)return!1;if(t){if("string"==typeof t)return t;if("function"!=typeof t){if(t instanceof I_)return x_.fromSourceMap(t).toString();if(t instanceof x_)return t.toString();if(this.isMap(t))return JSON.stringify(t);throw new Error("Unsupported previous source map format: "+t.toString())}{let n=t(e);if(n){let e=this.loadFile(n);if(!e)throw new Error("Unable to load previous source map: "+n.toString());return e}}}else{if(this.inline)return this.decodeInline(this.annotation);if(this.annotation){let t=this.annotation;return e&&(t=Z_(R_(e),t)),this.loadFile(t)}}}isMap(e){return"object"==typeof e&&("string"==typeof e.mappings||"string"==typeof e._mappings||Array.isArray(e.sections))}}var F_=P_;P_.default=P_;let{SourceMapConsumer:U_,SourceMapGenerator:B_}=l_,{fileURLToPath:V_,pathToFileURL:H_}=l_,{resolve:Y_,isAbsolute:j_}=l_,{nanoid:G_}=$_,W_=l_,q_=h_,K_=F_,J_=Symbol("fromOffsetCache"),X_=Boolean(U_&&B_),Q_=Boolean(Y_&&j_);class ey{constructor(e,t={}){if(null==e||"object"==typeof e&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),"\ufeff"===this.css[0]||""===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!Q_||/^\w+:\/\//.test(t.from)||j_(t.from)?this.file=t.from:this.file=Y_(t.from)),Q_&&X_){let e=new K_(this.css,t);if(e.text){this.map=e;let t=e.consumer().file;!this.file&&t&&(this.file=this.mapResolve(t))}}this.file||(this.id="<input css "+G_(6)+">"),this.map&&(this.map.file=this.from)}fromOffset(e){let t,n;if(this[J_])n=this[J_];else{let e=this.css.split("\n");n=new Array(e.length);let t=0;for(let r=0,i=e.length;r<i;r++)n[r]=t,t+=e[r].length+1;this[J_]=n}t=n[n.length-1];let r=0;if(e>=t)r=n.length-1;else{let t,i=n.length-2;for(;r<i;)if(t=r+(i-r>>1),e<n[t])i=t-1;else{if(!(e>=n[t+1])){r=t;break}r=t+1}}return{line:r+1,col:e-n[r]+1}}error(e,t,n,r={}){let i,a,o;if(t&&"object"==typeof t){let e=t,r=n;if("number"==typeof e.offset){let r=this.fromOffset(e.offset);t=r.line,n=r.col}else t=e.line,n=e.column;if("number"==typeof r.offset){let e=this.fromOffset(r.offset);a=e.line,o=e.col}else a=r.line,o=r.column}else if(!n){let e=this.fromOffset(t);t=e.line,n=e.col}let s=this.origin(t,n,a,o);return i=s?new q_(e,void 0===s.endLine?s.line:{line:s.line,column:s.column},void 0===s.endLine?s.column:{line:s.endLine,column:s.endColumn},s.source,s.file,r.plugin):new q_(e,void 0===a?t:{line:t,column:n},void 0===a?n:{line:a,column:o},this.css,this.file,r.plugin),i.input={line:t,column:n,endLine:a,endColumn:o,source:this.css},this.file&&(H_&&(i.input.url=H_(this.file).toString()),i.input.file=this.file),i}origin(e,t,n,r){if(!this.map)return!1;let i,a,o=this.map.consumer(),s=o.originalPositionFor({line:e,column:t});if(!s.source)return!1;"number"==typeof n&&(i=o.originalPositionFor({line:n,column:r})),a=j_(s.source)?H_(s.source):new URL(s.source,this.map.consumer().sourceRoot||H_(this.map.mapFile));let u={url:a.toString(),line:s.line,column:s.column,endLine:i&&i.line,endColumn:i&&i.column};if("file:"===a.protocol){if(!V_)throw new Error("file: protocol is not available in this PostCSS build");u.file=V_(a)}let l=o.sourceContentFor(s.source);return l&&(u.source=l),u}mapResolve(e){return/^\w+:\/\//.test(e)?e:Y_(this.map.consumer().sourceRoot||this.map.root||".",e)}get from(){return this.file||this.id}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])null!=this[t]&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}}var ty=ey;ey.default=ey,W_&&W_.registerInput&&W_.registerInput(ey);let{SourceMapConsumer:ny,SourceMapGenerator:ry}=l_,{dirname:iy,resolve:ay,relative:oy,sep:sy}=l_,{pathToFileURL:uy}=l_,ly=ty,cy=Boolean(ny&&ry),dy=Boolean(iy&&ay&&oy&&sy);var fy=class{constructor(e,t,n,r){this.stringify=e,this.mapOpts=n.map||{},this.root=t,this.opts=n,this.css=r,this.usesFileUrls=!this.mapOpts.from&&this.mapOpts.absolute}isMap(){return void 0!==this.opts.map?!!this.opts.map:this.previous().length>0}previous(){if(!this.previousMaps)if(this.previousMaps=[],this.root)this.root.walk((e=>{if(e.source&&e.source.input.map){let t=e.source.input.map;this.previousMaps.includes(t)||this.previousMaps.push(t)}}));else{let e=new ly(this.css,this.opts);e.map&&this.previousMaps.push(e.map)}return this.previousMaps}isInline(){if(void 0!==this.mapOpts.inline)return this.mapOpts.inline;let e=this.mapOpts.annotation;return(void 0===e||!0===e)&&(!this.previous().length||this.previous().some((e=>e.inline)))}isSourcesContent(){return void 0!==this.mapOpts.sourcesContent?this.mapOpts.sourcesContent:!this.previous().length||this.previous().some((e=>e.withContent()))}clearAnnotation(){if(!1!==this.mapOpts.annotation)if(this.root){let e;for(let t=this.root.nodes.length-1;t>=0;t--)e=this.root.nodes[t],"comment"===e.type&&0===e.text.indexOf("# sourceMappingURL=")&&this.root.removeChild(t)}else this.css&&(this.css=this.css.replace(/(\n)?\/\*#[\S\s]*?\*\/$/gm,""))}setSourcesContent(){let e={};if(this.root)this.root.walk((t=>{if(t.source){let n=t.source.input.from;if(n&&!e[n]){e[n]=!0;let r=this.usesFileUrls?this.toFileUrl(n):this.toUrl(this.path(n));this.map.setSourceContent(r,t.source.input.css)}}}));else if(this.css){let e=this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>";this.map.setSourceContent(e,this.css)}}applyPrevMaps(){for(let e of this.previous()){let t,n=this.toUrl(this.path(e.file)),r=e.root||iy(e.file);!1===this.mapOpts.sourcesContent?(t=new ny(e.text),t.sourcesContent&&(t.sourcesContent=t.sourcesContent.map((()=>null)))):t=e.consumer(),this.map.applySourceMap(t,n,this.toUrl(this.path(r)))}}isAnnotation(){return!!this.isInline()||(void 0!==this.mapOpts.annotation?this.mapOpts.annotation:!this.previous().length||this.previous().some((e=>e.annotation)))}toBase64(e){return Buffer?Buffer.from(e).toString("base64"):window.btoa(unescape(encodeURIComponent(e)))}addAnnotation(){let e;e=this.isInline()?"data:application/json;base64,"+this.toBase64(this.map.toString()):"string"==typeof this.mapOpts.annotation?this.mapOpts.annotation:"function"==typeof this.mapOpts.annotation?this.mapOpts.annotation(this.opts.to,this.root):this.outputFile()+".map";let t="\n";this.css.includes("\r\n")&&(t="\r\n"),this.css+=t+"/*# sourceMappingURL="+e+" */"}outputFile(){return this.opts.to?this.path(this.opts.to):this.opts.from?this.path(this.opts.from):"to.css"}generateMap(){if(this.root)this.generateString();else if(1===this.previous().length){let e=this.previous()[0].consumer();e.file=this.outputFile(),this.map=ry.fromSourceMap(e)}else this.map=new ry({file:this.outputFile()}),this.map.addMapping({source:this.opts.from?this.toUrl(this.path(this.opts.from)):"<no source>",generated:{line:1,column:0},original:{line:1,column:0}});return this.isSourcesContent()&&this.setSourcesContent(),this.root&&this.previous().length>0&&this.applyPrevMaps(),this.isAnnotation()&&this.addAnnotation(),this.isInline()?[this.css]:[this.css,this.map]}path(e){if(0===e.indexOf("<"))return e;if(/^\w+:\/\//.test(e))return e;if(this.mapOpts.absolute)return e;let t=this.opts.to?iy(this.opts.to):".";return"string"==typeof this.mapOpts.annotation&&(t=iy(ay(t,this.mapOpts.annotation))),e=oy(t,e)}toUrl(e){return"\\"===sy&&(e=e.replace(/\\/g,"/")),encodeURI(e).replace(/[#?]/g,encodeURIComponent)}toFileUrl(e){if(uy)return uy(e).toString();throw new Error("`map.absolute` option is not available in this PostCSS build")}sourcePath(e){return this.mapOpts.from?this.toUrl(this.mapOpts.from):this.usesFileUrls?this.toFileUrl(e.source.input.from):this.toUrl(this.path(e.source.input.from))}generateString(){this.css="",this.map=new ry({file:this.outputFile()});let e,t,n=1,r=1,i="<no source>",a={source:"",generated:{line:0,column:0},original:{line:0,column:0}};this.stringify(this.root,((o,s,u)=>{if(this.css+=o,s&&"end"!==u&&(a.generated.line=n,a.generated.column=r-1,s.source&&s.source.start?(a.source=this.sourcePath(s),a.original.line=s.source.start.line,a.original.column=s.source.start.column-1,this.map.addMapping(a)):(a.source=i,a.original.line=1,a.original.column=0,this.map.addMapping(a))),e=o.match(/\n/g),e?(n+=e.length,t=o.lastIndexOf("\n"),r=o.length-t):r+=o.length,s&&"start"!==u){let e=s.parent||{raws:{}};("decl"===s.type||"atrule"===s.type&&!s.nodes)&&s===e.last&&!e.raws.semicolon||(s.source&&s.source.end?(a.source=this.sourcePath(s),a.original.line=s.source.end.line,a.original.column=s.source.end.column-1,a.generated.line=n,a.generated.column=r-2,this.map.addMapping(a)):(a.source=i,a.original.line=1,a.original.column=0,a.generated.line=n,a.generated.column=r-1,this.map.addMapping(a)))}}))}generate(){if(this.clearAnnotation(),dy&&cy&&this.isMap())return this.generateMap();{let e="";return this.stringify(this.root,(t=>{e+=t})),[e]}}};let hy=N_;class py extends hy{constructor(e){super(e),this.type="comment"}}var my=py;py.default=py;let _y,yy,gy,vy,{isClean:Ay,my:Ey}=p_,by=D_,Sy=my,My=N_;function Ty(e){return e.map((e=>(e.nodes&&(e.nodes=Ty(e.nodes)),delete e.source,e)))}function wy(e){if(e[Ay]=!1,e.proxyOf.nodes)for(let t of e.proxyOf.nodes)wy(t)}class Oy extends My{push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}each(e){if(!this.proxyOf.nodes)return;let t,n,r=this.getIterator();for(;this.indexes[r]<this.proxyOf.nodes.length&&(t=this.indexes[r],n=e(this.proxyOf.nodes[t],t),!1!==n);)this.indexes[r]+=1;return delete this.indexes[r],n}walk(e){return this.each(((t,n)=>{let r;try{r=e(t,n)}catch(e){throw t.addToError(e)}return!1!==r&&t.walk&&(r=t.walk(e)),r}))}walkDecls(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("decl"===n.type&&e.test(n.prop))return t(n,r)})):this.walk(((n,r)=>{if("decl"===n.type&&n.prop===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("decl"===e.type)return t(e,n)})))}walkRules(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("rule"===n.type&&e.test(n.selector))return t(n,r)})):this.walk(((n,r)=>{if("rule"===n.type&&n.selector===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("rule"===e.type)return t(e,n)})))}walkAtRules(e,t){return t?e instanceof RegExp?this.walk(((n,r)=>{if("atrule"===n.type&&e.test(n.name))return t(n,r)})):this.walk(((n,r)=>{if("atrule"===n.type&&n.name===e)return t(n,r)})):(t=e,this.walk(((e,n)=>{if("atrule"===e.type)return t(e,n)})))}walkComments(e){return this.walk(((t,n)=>{if("comment"===t.type)return e(t,n)}))}append(...e){for(let t of e){let e=this.normalize(t,this.last);for(let t of e)this.proxyOf.nodes.push(t)}return this.markDirty(),this}prepend(...e){e=e.reverse();for(let t of e){let e=this.normalize(t,this.first,"prepend").reverse();for(let t of e)this.proxyOf.nodes.unshift(t);for(let t in this.indexes)this.indexes[t]=this.indexes[t]+e.length}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}insertBefore(e,t){let n,r=this.index(e),i=0===r&&"prepend",a=this.normalize(t,this.proxyOf.nodes[r],i).reverse();r=this.index(e);for(let e of a)this.proxyOf.nodes.splice(r,0,e);for(let e in this.indexes)n=this.indexes[e],r<=n&&(this.indexes[e]=n+a.length);return this.markDirty(),this}insertAfter(e,t){let n,r=this.index(e),i=this.normalize(t,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let e of i)this.proxyOf.nodes.splice(r+1,0,e);for(let e in this.indexes)n=this.indexes[e],r<n&&(this.indexes[e]=n+i.length);return this.markDirty(),this}removeChild(e){let t;e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);for(let n in this.indexes)t=this.indexes[n],t>=e&&(this.indexes[n]=t-1);return this.markDirty(),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}replaceValues(e,t,n){return n||(n=t,t={}),this.walkDecls((r=>{t.props&&!t.props.includes(r.prop)||t.fast&&!r.value.includes(t.fast)||(r.value=r.value.replace(e,n))})),this.markDirty(),this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return"number"==typeof e?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}normalize(e,t){if("string"==typeof e)e=Ty(_y(e).nodes);else if(Array.isArray(e)){e=e.slice(0);for(let t of e)t.parent&&t.parent.removeChild(t,"ignore")}else if("root"===e.type&&"document"!==this.type){e=e.nodes.slice(0);for(let t of e)t.parent&&t.parent.removeChild(t,"ignore")}else if(e.type)e=[e];else if(e.prop){if(void 0===e.value)throw new Error("Value field is missed in node creation");"string"!=typeof e.value&&(e.value=String(e.value)),e=[new by(e)]}else if(e.selector)e=[new yy(e)];else if(e.name)e=[new gy(e)];else{if(!e.text)throw new Error("Unknown node type in node creation");e=[new Sy(e)]}return e.map((e=>(e[Ey]||Oy.rebuild(e),(e=e.proxyOf).parent&&e.parent.removeChild(e),e[Ay]&&wy(e),void 0===e.raws.before&&t&&void 0!==t.raws.before&&(e.raws.before=t.raws.before.replace(/\S/g,"")),e.parent=this.proxyOf,e)))}getProxyProcessor(){return{set:(e,t,n)=>(e[t]===n||(e[t]=n,"name"!==t&&"params"!==t&&"selector"!==t||e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:e[t]?"each"===t||"string"==typeof t&&t.startsWith("walk")?(...n)=>e[t](...n.map((e=>"function"==typeof e?(t,n)=>e(t.toProxy(),n):e))):"every"===t||"some"===t?n=>e[t](((e,...t)=>n(e.toProxy(),...t))):"root"===t?()=>e.root().toProxy():"nodes"===t?e.nodes.map((e=>e.toProxy())):"first"===t||"last"===t?e[t].toProxy():e[t]:e[t]}}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}}Oy.registerParse=e=>{_y=e},Oy.registerRule=e=>{yy=e},Oy.registerAtRule=e=>{gy=e},Oy.registerRoot=e=>{vy=e};var Ny=Oy;Oy.default=Oy,Oy.rebuild=e=>{"atrule"===e.type?Object.setPrototypeOf(e,gy.prototype):"rule"===e.type?Object.setPrototypeOf(e,yy.prototype):"decl"===e.type?Object.setPrototypeOf(e,by.prototype):"comment"===e.type?Object.setPrototypeOf(e,Sy.prototype):"root"===e.type&&Object.setPrototypeOf(e,vy.prototype),e[Ey]=!0,e.nodes&&e.nodes.forEach((e=>{Oy.rebuild(e)}))};let Cy,Ly,Dy=Ny;class $y extends Dy{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new Cy(new Ly,this,e).stringify()}}$y.registerLazyResult=e=>{Cy=e},$y.registerProcessor=e=>{Ly=e};var Iy=$y;$y.default=$y;let xy={};var ky=function(e){xy[e]||(xy[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))};class zy{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let e=t.node.rangeBy(t);this.line=e.start.line,this.column=e.start.column,this.endLine=e.end.line,this.endColumn=e.end.column}for(let e in t)this[e]=t[e]}toString(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}}var Ry=zy;zy.default=zy;let Zy=Ry;class Py{constructor(e,t,n){this.processor=e,this.messages=[],this.root=t,this.opts=n,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let n=new Zy(e,t);return this.messages.push(n),n}warnings(){return this.messages.filter((e=>"warning"===e.type))}get content(){return this.css}}var Fy=Py;Py.default=Py;const Uy="'".charCodeAt(0),By='"'.charCodeAt(0),Vy="\\".charCodeAt(0),Hy="/".charCodeAt(0),Yy="\n".charCodeAt(0),jy=" ".charCodeAt(0),Gy="\f".charCodeAt(0),Wy="\t".charCodeAt(0),qy="\r".charCodeAt(0),Ky="[".charCodeAt(0),Jy="]".charCodeAt(0),Xy="(".charCodeAt(0),Qy=")".charCodeAt(0),eg="{".charCodeAt(0),tg="}".charCodeAt(0),ng=";".charCodeAt(0),rg="*".charCodeAt(0),ig=":".charCodeAt(0),ag="@".charCodeAt(0),og=/[\t\n\f\r "#'()/;[\\\]{}]/g,sg=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,ug=/.[\n"'(/\\]/,lg=/[\da-f]/i;let cg=Ny;class dg extends cg{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}}var fg=dg;dg.default=dg,cg.registerAtRule(dg);let hg,pg,mg=Ny;class _g extends mg{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}removeChild(e,t){let n=this.index(e);return!t&&0===n&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[n].raws.before),super.removeChild(e)}normalize(e,t,n){let r=super.normalize(e);if(t)if("prepend"===n)this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let e of r)e.raws.before=t.raws.before;return r}toResult(e={}){return new hg(new pg,this,e).stringify()}}_g.registerLazyResult=e=>{hg=e},_g.registerProcessor=e=>{pg=e};var yg=_g;_g.default=_g,mg.registerRoot(_g);let gg={split(e,t,n){let r=[],i="",a=!1,o=0,s=!1,u="",l=!1;for(let n of e)l?l=!1:"\\"===n?l=!0:s?n===u&&(s=!1):'"'===n||"'"===n?(s=!0,u=n):"("===n?o+=1:")"===n?o>0&&(o-=1):0===o&&t.includes(n)&&(a=!0),a?(""!==i&&r.push(i.trim()),i="",a=!1):i+=n;return(n||""!==i)&&r.push(i.trim()),r},space:e=>gg.split(e,[" ","\n","\t"]),comma:e=>gg.split(e,[","],!0)};var vg=gg;gg.default=gg;let Ag=Ny,Eg=vg;class bg extends Ag{constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return Eg.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,n=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(n)}}var Sg=bg;bg.default=bg,Ag.registerRule(bg);let Mg=D_,Tg=function(e,t={}){let n,r,i,a,o,s,u,l,c,d,f=e.css.valueOf(),h=t.ignoreErrors,p=f.length,m=0,_=[],y=[];function g(t){throw e.error("Unclosed "+t,m)}return{back:function(e){y.push(e)},nextToken:function(e){if(y.length)return y.pop();if(m>=p)return;let t=!!e&&e.ignoreUnclosed;switch(n=f.charCodeAt(m),n){case Yy:case jy:case Wy:case qy:case Gy:r=m;do{r+=1,n=f.charCodeAt(r)}while(n===jy||n===Yy||n===Wy||n===qy||n===Gy);d=["space",f.slice(m,r)],m=r-1;break;case Ky:case Jy:case eg:case tg:case ig:case ng:case Qy:{let e=String.fromCharCode(n);d=[e,e,m];break}case Xy:if(l=_.length?_.pop()[1]:"",c=f.charCodeAt(m+1),"url"===l&&c!==Uy&&c!==By&&c!==jy&&c!==Yy&&c!==Wy&&c!==Gy&&c!==qy){r=m;do{if(s=!1,r=f.indexOf(")",r+1),-1===r){if(h||t){r=m;break}g("bracket")}for(u=r;f.charCodeAt(u-1)===Vy;)u-=1,s=!s}while(s);d=["brackets",f.slice(m,r+1),m,r],m=r}else r=f.indexOf(")",m+1),a=f.slice(m,r+1),-1===r||ug.test(a)?d=["(","(",m]:(d=["brackets",a,m,r],m=r);break;case Uy:case By:i=n===Uy?"'":'"',r=m;do{if(s=!1,r=f.indexOf(i,r+1),-1===r){if(h||t){r=m+1;break}g("string")}for(u=r;f.charCodeAt(u-1)===Vy;)u-=1,s=!s}while(s);d=["string",f.slice(m,r+1),m,r],m=r;break;case ag:og.lastIndex=m+1,og.test(f),r=0===og.lastIndex?f.length-1:og.lastIndex-2,d=["at-word",f.slice(m,r+1),m,r],m=r;break;case Vy:for(r=m,o=!0;f.charCodeAt(r+1)===Vy;)r+=1,o=!o;if(n=f.charCodeAt(r+1),o&&n!==Hy&&n!==jy&&n!==Yy&&n!==Wy&&n!==qy&&n!==Gy&&(r+=1,lg.test(f.charAt(r)))){for(;lg.test(f.charAt(r+1));)r+=1;f.charCodeAt(r+1)===jy&&(r+=1)}d=["word",f.slice(m,r+1),m,r],m=r;break;default:n===Hy&&f.charCodeAt(m+1)===rg?(r=f.indexOf("*/",m+2)+1,0===r&&(h||t?r=f.length:g("comment")),d=["comment",f.slice(m,r+1),m,r],m=r):(sg.lastIndex=m+1,sg.test(f),r=0===sg.lastIndex?f.length-1:sg.lastIndex-2,d=["word",f.slice(m,r+1),m,r],_.push(d),m=r)}return m++,d},endOfFile:function(){return 0===y.length&&m>=p},position:function(){return m}}},wg=my,Og=fg,Ng=yg,Cg=Sg;const Lg={empty:!0,space:!0};var Dg=class{constructor(e){this.input=e,this.root=new Ng,this.current=this.root,this.spaces="",this.semicolon=!1,this.customProperty=!1,this.createTokenizer(),this.root.source={input:e,start:{offset:0,line:1,column:1}}}createTokenizer(){this.tokenizer=Tg(this.input)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}comment(e){let t=new wg;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]);let n=e[1].slice(2,-2);if(/^\s*$/.test(n))t.text="",t.raws.left=n,t.raws.right="";else{let e=n.match(/^(\s*)([^]*\S)(\s*)$/);t.text=e[2],t.raws.left=e[1],t.raws.right=e[3]}}emptyRule(e){let t=new Cg;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}other(e){let t=!1,n=null,r=!1,i=null,a=[],o=e[1].startsWith("--"),s=[],u=e;for(;u;){if(n=u[0],s.push(u),"("===n||"["===n)i||(i=u),a.push("("===n?")":"]");else if(o&&r&&"{"===n)i||(i=u),a.push("}");else if(0===a.length){if(";"===n){if(r)return void this.decl(s,o);break}if("{"===n)return void this.rule(s);if("}"===n){this.tokenizer.back(s.pop()),t=!0;break}":"===n&&(r=!0)}else n===a[a.length-1]&&(a.pop(),0===a.length&&(i=null));u=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),a.length>0&&this.unclosedBracket(i),t&&r){if(!o)for(;s.length&&(u=s[s.length-1][0],"space"===u||"comment"===u);)this.tokenizer.back(s.pop());this.decl(s,o)}else this.unknownWord(s)}rule(e){e.pop();let t=new Cg;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}decl(e,t){let n=new Mg;this.init(n,e[0][2]);let r,i=e[e.length-1];for(";"===i[0]&&(this.semicolon=!0,e.pop()),n.source.end=this.getPosition(i[3]||i[2]||function(e){for(let t=e.length-1;t>=0;t--){let n=e[t],r=n[3]||n[2];if(r)return r}}(e));"word"!==e[0][0];)1===e.length&&this.unknownWord(e),n.raws.before+=e.shift()[1];for(n.source.start=this.getPosition(e[0][2]),n.prop="";e.length;){let t=e[0][0];if(":"===t||"space"===t||"comment"===t)break;n.prop+=e.shift()[1]}for(n.raws.between="";e.length;){if(r=e.shift(),":"===r[0]){n.raws.between+=r[1];break}"word"===r[0]&&/\w/.test(r[1])&&this.unknownWord([r]),n.raws.between+=r[1]}"_"!==n.prop[0]&&"*"!==n.prop[0]||(n.raws.before+=n.prop[0],n.prop=n.prop.slice(1));let a,o=[];for(;e.length&&(a=e[0][0],"space"===a||"comment"===a);)o.push(e.shift());this.precheckMissedSemicolon(e);for(let t=e.length-1;t>=0;t--){if(r=e[t],"!important"===r[1].toLowerCase()){n.important=!0;let r=this.stringFrom(e,t);r=this.spacesFromEnd(e)+r," !important"!==r&&(n.raws.important=r);break}if("important"===r[1].toLowerCase()){let r=e.slice(0),i="";for(let e=t;e>0;e--){let t=r[e][0];if(0===i.trim().indexOf("!")&&"space"!==t)break;i=r.pop()[1]+i}0===i.trim().indexOf("!")&&(n.important=!0,n.raws.important=i,e=r)}if("space"!==r[0]&&"comment"!==r[0])break}e.some((e=>"space"!==e[0]&&"comment"!==e[0]))&&(n.raws.between+=o.map((e=>e[1])).join(""),o=[]),this.raw(n,"value",o.concat(e),t),n.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}atrule(e){let t,n,r,i=new Og;i.name=e[1].slice(1),""===i.name&&this.unnamedAtrule(i,e),this.init(i,e[2]);let a=!1,o=!1,s=[],u=[];for(;!this.tokenizer.endOfFile();){if(t=(e=this.tokenizer.nextToken())[0],"("===t||"["===t?u.push("("===t?")":"]"):"{"===t&&u.length>0?u.push("}"):t===u[u.length-1]&&u.pop(),0===u.length){if(";"===t){i.source.end=this.getPosition(e[2]),this.semicolon=!0;break}if("{"===t){o=!0;break}if("}"===t){if(s.length>0){for(r=s.length-1,n=s[r];n&&"space"===n[0];)n=s[--r];n&&(i.source.end=this.getPosition(n[3]||n[2]))}this.end(e);break}s.push(e)}else s.push(e);if(this.tokenizer.endOfFile()){a=!0;break}}i.raws.between=this.spacesAndCommentsFromEnd(s),s.length?(i.raws.afterName=this.spacesAndCommentsFromStart(s),this.raw(i,"params",s),a&&(e=s[s.length-1],i.source.end=this.getPosition(e[3]||e[2]),this.spaces=i.raws.between,i.raws.between="")):(i.raws.afterName="",i.params=""),o&&(i.nodes=[],this.current=i)}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let e=this.current.nodes[this.current.nodes.length-1];e&&"rule"===e.type&&!e.raws.ownSemicolon&&(e.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{offset:e,line:t.line,column:t.col}}init(e,t){this.current.push(e),e.source={start:this.getPosition(t),input:this.input},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}raw(e,t,n,r){let i,a,o,s,u=n.length,l="",c=!0;for(let e=0;e<u;e+=1)i=n[e],a=i[0],"space"!==a||e!==u-1||r?"comment"===a?(s=n[e-1]?n[e-1][0]:"empty",o=n[e+1]?n[e+1][0]:"empty",Lg[s]||Lg[o]||","===l.slice(-1)?c=!1:l+=i[1]):l+=i[1]:c=!1;if(!c){let r=n.reduce(((e,t)=>e+t[1]),"");e.raws[t]={value:l,raw:r}}e[t]=l}spacesAndCommentsFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],"space"===t||"comment"===t);)n=e.pop()[1]+n;return n}spacesAndCommentsFromStart(e){let t,n="";for(;e.length&&(t=e[0][0],"space"===t||"comment"===t);)n+=e.shift()[1];return n}spacesFromEnd(e){let t,n="";for(;e.length&&(t=e[e.length-1][0],"space"===t);)n=e.pop()[1]+n;return n}stringFrom(e,t){let n="";for(let r=t;r<e.length;r++)n+=e[r][1];return e.splice(t,e.length-t),n}colon(e){let t,n,r,i=0;for(let[a,o]of e.entries()){if(t=o,n=t[0],"("===n&&(i+=1),")"===n&&(i-=1),0===i&&":"===n){if(r){if("word"===r[0]&&"progid"===r[1])continue;return a}this.doubleColon(t)}r=t}return!1}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}precheckMissedSemicolon(){}checkMissedSemicolon(e){let t=this.colon(e);if(!1===t)return;let n,r=0;for(let i=t-1;i>=0&&(n=e[i],"space"===n[0]||(r+=1,2!==r));i--);throw this.input.error("Missed semicolon","word"===n[0]?n[3]+1:n[2])}};let $g=Ny,Ig=Dg,xg=ty;function kg(e,t){let n=new xg(e,t),r=new Ig(n);try{r.parse()}catch(e){throw"production"!==process.env.NODE_ENV&&"CssSyntaxError"===e.name&&t&&t.from&&(/\.scss$/i.test(t.from)?e.message+="\nYou tried to parse SCSS with the standard CSS parser; try again with the postcss-scss parser":/\.sass/i.test(t.from)?e.message+="\nYou tried to parse Sass with the standard CSS parser; try again with the postcss-sass parser":/\.less$/i.test(t.from)&&(e.message+="\nYou tried to parse Less with the standard CSS parser; try again with the postcss-less parser")),e}return r.root}var zg=kg;kg.default=kg,$g.registerParse(kg);let{isClean:Rg,my:Zg}=p_,Pg=fy,Fg=A_,Ug=Ny,Bg=Iy,Vg=ky,Hg=Fy,Yg=zg,jg=yg;const Gg={document:"Document",root:"Root",atrule:"AtRule",rule:"Rule",decl:"Declaration",comment:"Comment"},Wg={postcssPlugin:!0,prepare:!0,Once:!0,Document:!0,Root:!0,Declaration:!0,Rule:!0,AtRule:!0,Comment:!0,DeclarationExit:!0,RuleExit:!0,AtRuleExit:!0,CommentExit:!0,RootExit:!0,DocumentExit:!0,OnceExit:!0},qg={postcssPlugin:!0,prepare:!0,Once:!0},Kg=0;function Jg(e){return"object"==typeof e&&"function"==typeof e.then}function Xg(e){let t=!1,n=Gg[e.type];return"decl"===e.type?t=e.prop.toLowerCase():"atrule"===e.type&&(t=e.name.toLowerCase()),t&&e.append?[n,n+"-"+t,Kg,n+"Exit",n+"Exit-"+t]:t?[n,n+"-"+t,n+"Exit",n+"Exit-"+t]:e.append?[n,Kg,n+"Exit"]:[n,n+"Exit"]}function Qg(e){let t;return t="document"===e.type?["Document",Kg,"DocumentExit"]:"root"===e.type?["Root",Kg,"RootExit"]:Xg(e),{node:e,events:t,eventIndex:0,visitors:[],visitorIndex:0,iterator:0}}function ev(e){return e[Rg]=!1,e.nodes&&e.nodes.forEach((e=>ev(e))),e}let tv={};class nv{constructor(e,t,n){let r;if(this.stringified=!1,this.processed=!1,"object"!=typeof t||null===t||"root"!==t.type&&"document"!==t.type)if(t instanceof nv||t instanceof Hg)r=ev(t.root),t.map&&(void 0===n.map&&(n.map={}),n.map.inline||(n.map.inline=!1),n.map.prev=t.map);else{let e=Yg;n.syntax&&(e=n.syntax.parse),n.parser&&(e=n.parser),e.parse&&(e=e.parse);try{r=e(t,n)}catch(e){this.processed=!0,this.error=e}r&&!r[Zg]&&Ug.rebuild(r)}else r=ev(t);this.result=new Hg(e,r,n),this.helpers={...tv,result:this.result,postcss:tv},this.plugins=this.processor.plugins.map((e=>"object"==typeof e&&e.prepare?{...e,...e.prepare(this.result)}:e))}get[Symbol.toStringTag](){return"LazyResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.stringify().css}get content(){return this.stringify().content}get map(){return this.stringify().map}get root(){return this.sync().root}get messages(){return this.sync().messages}warnings(){return this.sync().warnings()}toString(){return this.css}then(e,t){return"production"!==process.env.NODE_ENV&&("from"in this.opts||Vg("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning.")),this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){if(Jg(this.runOnRoot(e)))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[Rg];)e[Rg]=!0,this.walkSync(e);if(this.listeners.OnceExit)if("document"===e.type)for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=Fg;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let n=new Pg(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}walkSync(e){e[Rg]=!0;let t=Xg(e);for(let n of t)if(n===Kg)e.nodes&&e.each((e=>{e[Rg]||this.walkSync(e)}));else{let t=this.listeners[n];if(t&&this.visitSync(t,e.toProxy()))return}}visitSync(e,t){for(let[n,r]of e){let e;this.result.lastPlugin=n;try{e=r(t,this.helpers)}catch(e){throw this.handleError(e,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(Jg(e))throw this.getAsyncError()}}runOnRoot(e){this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){let t=this.result.root.nodes.map((t=>e.Once(t,this.helpers)));return Jg(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(e){throw this.handleError(e)}}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let n=this.result.lastPlugin;try{if(t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin){if(n.postcssVersion&&"production"!==process.env.NODE_ENV){let e=n.postcssPlugin,t=n.postcssVersion,r=this.result.processor.version,i=t.split("."),a=r.split(".");(i[0]!==a[0]||parseInt(i[1])>parseInt(a[1]))&&console.error("Unknown error from PostCSS plugin. Your current PostCSS version is "+r+", but "+e+" uses "+t+". Perhaps this is the source of the error below.")}}else e.plugin=n.postcssPlugin,e.setMessage()}catch(e){console&&console.error&&console.error(e)}return e}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let t=this.plugins[e],n=this.runOnRoot(t);if(Jg(n))try{await n}catch(e){throw this.handleError(e)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[Rg];){e[Rg]=!0;let t=[Qg(e)];for(;t.length>0;){let e=this.visitTick(t);if(Jg(e))try{await e}catch(e){let n=t[t.length-1].node;throw this.handleError(e,n)}}}if(this.listeners.OnceExit)for(let[t,n]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if("document"===e.type){let t=e.nodes.map((e=>n(e,this.helpers)));await Promise.all(t)}else await n(e,this.helpers)}catch(e){throw this.handleError(e)}}}return this.processed=!0,this.stringify()}prepareVisitors(){this.listeners={};let e=(e,t,n)=>{this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].push([e,n])};for(let t of this.plugins)if("object"==typeof t)for(let n in t){if(!Wg[n]&&/^[A-Z]/.test(n))throw new Error(`Unknown event ${n} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!qg[n])if("object"==typeof t[n])for(let r in t[n])e(t,"*"===r?n:n+"-"+r.toLowerCase(),t[n][r]);else"function"==typeof t[n]&&e(t,n,t[n])}this.hasListener=Object.keys(this.listeners).length>0}visitTick(e){let t=e[e.length-1],{node:n,visitors:r}=t;if("root"!==n.type&&"document"!==n.type&&!n.parent)return void e.pop();if(r.length>0&&t.visitorIndex<r.length){let[e,i]=r[t.visitorIndex];t.visitorIndex+=1,t.visitorIndex===r.length&&(t.visitors=[],t.visitorIndex=0),this.result.lastPlugin=e;try{return i(n.toProxy(),this.helpers)}catch(e){throw this.handleError(e,n)}}if(0!==t.iterator){let r,i=t.iterator;for(;r=n.nodes[n.indexes[i]];)if(n.indexes[i]+=1,!r[Rg])return r[Rg]=!0,void e.push(Qg(r));t.iterator=0,delete n.indexes[i]}let i=t.events;for(;t.eventIndex<i.length;){let e=i[t.eventIndex];if(t.eventIndex+=1,e===Kg)return void(n.nodes&&n.nodes.length&&(n[Rg]=!0,t.iterator=n.getIterator()));if(this.listeners[e])return void(t.visitors=this.listeners[e])}e.pop()}}nv.registerPostcss=e=>{tv=e};var rv=nv;nv.default=nv,jg.registerLazyResult(nv),Bg.registerLazyResult(nv);let iv=fy,av=A_,ov=ky,sv=zg;const uv=Fy;class lv{constructor(e,t,n){let r;t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=n,this._map=void 0;let i=av;this.result=new uv(this._processor,r,this._opts),this.result.css=t;let a=this;Object.defineProperty(this.result,"root",{get:()=>a.root});let o=new iv(i,r,this._opts,t);if(o.isMap()){let[e,t]=o.generate();e&&(this.result.css=e),t&&(this.result.map=t)}}get[Symbol.toStringTag](){return"NoWorkResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.result.css}get content(){return this.result.css}get map(){return this.result.map}get root(){if(this._root)return this._root;let e,t=sv;try{e=t(this._css,this._opts)}catch(e){this.error=e}if(this.error)throw this.error;return this._root=e,e}get messages(){return[]}warnings(){return[]}toString(){return this._css}then(e,t){return"production"!==process.env.NODE_ENV&&("from"in this._opts||ov("Without `from` option PostCSS could generate wrong source map and will not find Browserslist config. Set it to CSS file path or to `undefined` to prevent this warning.")),this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}sync(){if(this.error)throw this.error;return this.result}}var cv=lv;lv.default=lv;let dv=cv,fv=rv,hv=Iy,pv=yg;class mv{constructor(e=[]){this.version="8.4.23",this.plugins=this.normalize(e)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}process(e,t={}){return 0===this.plugins.length&&void 0===t.parser&&void 0===t.stringifier&&void 0===t.syntax?new dv(this,e,t):new fv(this,e,t)}normalize(e){let t=[];for(let n of e)if(!0===n.postcss?n=n():n.postcss&&(n=n.postcss),"object"==typeof n&&Array.isArray(n.plugins))t=t.concat(n.plugins);else if("object"==typeof n&&n.postcssPlugin)t.push(n);else if("function"==typeof n)t.push(n);else{if("object"!=typeof n||!n.parse&&!n.stringify)throw new Error(n+" is not a PostCSS plugin");if("production"!==process.env.NODE_ENV)throw new Error("PostCSS syntaxes cannot be used as plugins. Instead, please use one of the syntax/parser/stringifier options as outlined in your PostCSS runner documentation.")}return t}}var _v=mv;mv.default=mv,pv.registerProcessor(mv),hv.registerProcessor(mv);let yv=D_,gv=F_,vv=my,Av=fg,Ev=ty,bv=yg,Sv=Sg;function Mv(e,t){if(Array.isArray(e))return e.map((e=>Mv(e)));let{inputs:n,...r}=e;if(n){t=[];for(let e of n){let n={...e,__proto__:Ev.prototype};n.map&&(n.map={...n.map,__proto__:gv.prototype}),t.push(n)}}if(r.nodes&&(r.nodes=e.nodes.map((e=>Mv(e,t)))),r.source){let{inputId:e,...n}=r.source;r.source=n,null!=e&&(r.source.input=t[e])}if("root"===r.type)return new bv(r);if("decl"===r.type)return new yv(r);if("rule"===r.type)return new Sv(r);if("comment"===r.type)return new vv(r);if("atrule"===r.type)return new Av(r);throw new Error("Unknown node type: "+e.type)}var Tv=Mv;Mv.default=Mv;let wv=h_,Ov=D_,Nv=rv,Cv=Ny,Lv=_v,Dv=A_,$v=Tv,Iv=Iy,xv=Ry,kv=my,zv=fg,Rv=Fy,Zv=ty,Pv=zg,Fv=vg,Uv=Sg,Bv=yg,Vv=N_;function Hv(...e){return 1===e.length&&Array.isArray(e[0])&&(e=e[0]),new Lv(e)}Hv.plugin=function(e,t){let n,r=!1;function i(...n){console&&console.warn&&!r&&(r=!0,console.warn(e+": postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration"),process.env.LANG&&process.env.LANG.startsWith("cn")&&console.warn(e+": 里面 postcss.plugin 被弃用. 迁移指南:\nhttps://www.w3ctech.com/topic/2226"));let i=t(...n);return i.postcssPlugin=e,i.postcssVersion=(new Lv).version,i}return Object.defineProperty(i,"postcss",{get:()=>(n||(n=i()),n)}),i.process=function(e,t,n){return Hv([i(n)]).process(e,t)},i},Hv.stringify=Dv,Hv.parse=Pv,Hv.fromJSON=$v,Hv.list=Fv,Hv.comment=e=>new kv(e),Hv.atRule=e=>new zv(e),Hv.decl=e=>new Ov(e),Hv.rule=e=>new Uv(e),Hv.root=e=>new Bv(e),Hv.document=e=>new Iv(e),Hv.CssSyntaxError=wv,Hv.Declaration=Ov,Hv.Container=Cv,Hv.Processor=Lv,Hv.Document=Iv,Hv.Comment=kv,Hv.Warning=xv,Hv.AtRule=zv,Hv.Result=Rv,Hv.Input=Zv,Hv.Rule=Uv,Hv.Root=Bv,Hv.Node=Vv,Nv.registerPostcss(Hv);var Yv=Hv;Hv.default=Hv;const jv=Hh,Gv=e=>{if("string"!=typeof e)throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")},{isPlainObject:Wv}=Gm,qv=i_,Kv=a_.exports,{parse:Jv}=Yv,Xv=["img","audio","video","picture","svg","object","map","iframe","embed"],Qv=["script","style"];function eA(e,t){e&&Object.keys(e).forEach((function(n){t(e[n],n)}))}function tA(e,t){return{}.hasOwnProperty.call(e,t)}function nA(e,t){const n=[];return eA(e,(function(e){t(e)&&n.push(e)})),n}var rA=aA;const iA=/^[^\0\t\n\f\r /<=>]+$/;function aA(e,t,n){if(null==e)return"";"number"==typeof e&&(e=e.toString());let r="",i="";function a(e,t){const n=this;this.tag=e,this.attribs=t||{},this.tagPosition=r.length,this.text="",this.mediaChildren=[],this.updateParentNodeText=function(){if(_.length){_[_.length-1].text+=n.text}},this.updateParentNodeMediaChildren=function(){if(_.length&&Xv.includes(this.tag)){_[_.length-1].mediaChildren.push(this.tag)}}}(t=Object.assign({},aA.defaults,t)).parser=Object.assign({},oA,t.parser);const o=function(e){return!1===t.allowedTags||(t.allowedTags||[]).indexOf(e)>-1};Qv.forEach((function(e){o(e)&&!t.allowVulnerableTags&&console.warn(`\n\n⚠️ Your \`allowedTags\` option includes, \`${e}\`, which is inherently\nvulnerable to XSS attacks. Please remove it from \`allowedTags\`.\nOr, to disable this warning, add the \`allowVulnerableTags\` option\nand ensure you are accounting for this risk.\n\n`)}));const s=t.nonTextTags||["script","style","textarea","option"];let u,l;t.allowedAttributes&&(u={},l={},eA(t.allowedAttributes,(function(e,t){u[t]=[];const n=[];e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(Gv(e).replace(/\\\*/g,".*")):u[t].push(e)})),n.length&&(l[t]=new RegExp("^("+n.join("|")+")$"))})));const c={},d={},f={};eA(t.allowedClasses,(function(e,t){u&&(tA(u,t)||(u[t]=[]),u[t].push("class")),c[t]=[],f[t]=[];const n=[];e.forEach((function(e){"string"==typeof e&&e.indexOf("*")>=0?n.push(Gv(e).replace(/\\\*/g,".*")):e instanceof RegExp?f[t].push(e):c[t].push(e)})),n.length&&(d[t]=new RegExp("^("+n.join("|")+")$"))}));const h={};let p,m,_,y,g,v,A;eA(t.transformTags,(function(e,t){let n;"function"==typeof e?n=e:"string"==typeof e&&(n=aA.simpleTransform(e)),"*"===t?p=n:h[t]=n}));let E=!1;S();const b=new jv.Parser({onopentag:function(e,n){if(t.enforceHtmlBoundary&&"html"===e&&S(),v)return void A++;const b=new a(e,n);_.push(b);let N=!1;const C=!!b.text;let L;if(tA(h,e)&&(L=h[e](e,n),b.attribs=n=L.attribs,void 0!==L.text&&(b.innerText=L.text),e!==L.tagName&&(b.name=e=L.tagName,g[m]=L.tagName)),p&&(L=p(e,n),b.attribs=n=L.attribs,e!==L.tagName&&(b.name=e=L.tagName,g[m]=L.tagName)),(!o(e)||"recursiveEscape"===t.disallowedTagsMode&&!function(e){for(const t in e)if(tA(e,t))return!1;return!0}(y)||null!=t.nestingLimit&&m>=t.nestingLimit)&&(N=!0,y[m]=!0,"discard"===t.disallowedTagsMode&&-1!==s.indexOf(e)&&(v=!0,A=1),y[m]=!0),m++,N){if("discard"===t.disallowedTagsMode)return;i=r,r=""}r+="<"+e,"script"===e&&(t.allowedScriptHostnames||t.allowedScriptDomains)&&(b.innerText=""),(!u||tA(u,e)||u["*"])&&eA(n,(function(n,i){if(!iA.test(i))return void delete b.attribs[i];let a=!1;if(!u||tA(u,e)&&-1!==u[e].indexOf(i)||u["*"]&&-1!==u["*"].indexOf(i)||tA(l,e)&&l[e].test(i)||l["*"]&&l["*"].test(i))a=!0;else if(u&&u[e])for(const t of u[e])if(Wv(t)&&t.name&&t.name===i){a=!0;let e="";if(!0===t.multiple){const r=n.split(" ");for(const n of r)-1!==t.values.indexOf(n)&&(""===e?e=n:e+=" "+n)}else t.values.indexOf(n)>=0&&(e=n);n=e}if(a){if(-1!==t.allowedSchemesAppliedToAttributes.indexOf(i)&&T(e,n))return void delete b.attribs[i];if("script"===e&&"src"===i){let e=!0;try{const r=w(n);if(t.allowedScriptHostnames||t.allowedScriptDomains){const n=(t.allowedScriptHostnames||[]).find((function(e){return e===r.url.hostname})),i=(t.allowedScriptDomains||[]).find((function(e){return r.url.hostname===e||r.url.hostname.endsWith(`.${e}`)}));e=n||i}}catch(t){e=!1}if(!e)return void delete b.attribs[i]}if("iframe"===e&&"src"===i){let e=!0;try{const r=w(n);if(r.isRelativeUrl)e=tA(t,"allowIframeRelativeUrls")?t.allowIframeRelativeUrls:!t.allowedIframeHostnames&&!t.allowedIframeDomains;else if(t.allowedIframeHostnames||t.allowedIframeDomains){const n=(t.allowedIframeHostnames||[]).find((function(e){return e===r.url.hostname})),i=(t.allowedIframeDomains||[]).find((function(e){return r.url.hostname===e||r.url.hostname.endsWith(`.${e}`)}));e=n||i}}catch(t){e=!1}if(!e)return void delete b.attribs[i]}if("srcset"===i)try{let e=Kv(n);if(e.forEach((function(e){T("srcset",e.url)&&(e.evil=!0)})),e=nA(e,(function(e){return!e.evil})),!e.length)return void delete b.attribs[i];n=nA(e,(function(e){return!e.evil})).map((function(e){if(!e.url)throw new Error("URL missing");return e.url+(e.w?` ${e.w}w`:"")+(e.h?` ${e.h}h`:"")+(e.d?` ${e.d}x`:"")})).join(", "),b.attribs[i]=n}catch(e){return void delete b.attribs[i]}if("class"===i){const t=c[e],r=c["*"],a=d[e],o=f[e],s=[a,d["*"]].concat(o).filter((function(e){return e}));if(!(n=O(n,t&&r?qv(t,r):t||r,s)).length)return void delete b.attribs[i]}if("style"===i)if(t.parseStyleAttributes)try{const r=function(e,t){if(!t)return e;const n=e.nodes[0];let r;r=t[n.selector]&&t["*"]?qv(t[n.selector],t["*"]):t[n.selector]||t["*"];r&&(e.nodes[0].nodes=n.nodes.reduce(function(e){return function(t,n){if(tA(e,n.prop)){e[n.prop].some((function(e){return e.test(n.value)}))&&t.push(n)}return t}}(r),[]));return e}(Jv(e+" {"+n+"}"),t.allowedStyles);if(n=function(e){return e.nodes[0].nodes.reduce((function(e,t){return e.push(`${t.prop}:${t.value}${t.important?" !important":""}`),e}),[]).join(";")}(r),0===n.length)return void delete b.attribs[i]}catch(t){return console.warn('Failed to parse "'+e+" {"+n+"}\", If you're running this in a browser, we recommend to disable style parsing: options.parseStyleAttributes: false, since this only works in a node environment due to a postcss dependency, More info: https://github.com/apostrophecms/sanitize-html/issues/547"),void delete b.attribs[i]}else if(t.allowedStyles)throw new Error("allowedStyles option cannot be used together with parseStyleAttributes: false.");r+=" "+i,n&&n.length&&(r+='="'+M(n,!0)+'"')}else delete b.attribs[i]})),-1!==t.selfClosing.indexOf(e)?r+=" />":(r+=">",!b.innerText||C||t.textFilter||(r+=M(b.innerText),E=!0)),N&&(r=i+M(r),i="")},ontext:function(e){if(v)return;const n=_[_.length-1];let i;if(n&&(i=n.tag,e=void 0!==n.innerText?n.innerText:e),"discard"!==t.disallowedTagsMode||"script"!==i&&"style"!==i){const n=M(e,!1);t.textFilter&&!E?r+=t.textFilter(n,i):E||(r+=n)}else r+=e;if(_.length){_[_.length-1].text+=e}},onclosetag:function(e,n){if(v){if(A--,A)return;v=!1}const a=_.pop();if(!a)return;if(a.tag!==e)return void _.push(a);v=!!t.enforceHtmlBoundary&&"html"===e,m--;const s=y[m];if(s){if(delete y[m],"discard"===t.disallowedTagsMode)return void a.updateParentNodeText();i=r,r=""}g[m]&&(e=g[m],delete g[m]),t.exclusiveFilter&&t.exclusiveFilter(a)?r=r.substr(0,a.tagPosition):(a.updateParentNodeMediaChildren(),a.updateParentNodeText(),-1!==t.selfClosing.indexOf(e)||n&&!o(e)&&["escape","recursiveEscape"].indexOf(t.disallowedTagsMode)>=0?s&&(r=i,i=""):(r+="</"+e+">",s&&(r=i+M(r),i=""),E=!1))}},t.parser);return b.write(e),b.end(),r;function S(){r="",m=0,_=[],y={},g={},v=!1,A=0}function M(e,n){return"string"!=typeof e&&(e+=""),t.parser.decodeEntities&&(e=e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">"),n&&(e=e.replace(/"/g,"""))),e=e.replace(/&(?![a-zA-Z0-9#]{1,20};)/g,"&").replace(/</g,"<").replace(/>/g,">"),n&&(e=e.replace(/"/g,""")),e}function T(e,n){for(n=n.replace(/[\x00-\x20]+/g,"");;){const e=n.indexOf("\x3c!--");if(-1===e)break;const t=n.indexOf("--\x3e",e+4);if(-1===t)break;n=n.substring(0,e)+n.substring(t+3)}const r=n.match(/^([a-zA-Z][a-zA-Z0-9.\-+]*):/);if(!r)return!!n.match(/^[/\\]{2}/)&&!t.allowProtocolRelative;const i=r[1].toLowerCase();return tA(t.allowedSchemesByTag,e)?-1===t.allowedSchemesByTag[e].indexOf(i):!t.allowedSchemes||-1===t.allowedSchemes.indexOf(i)}function w(e){if((e=e.replace(/^(\w+:)?\s*[\\/]\s*[\\/]/,"$1//")).startsWith("relative:"))throw new Error("relative: exploit attempt");let t="relative://relative-site";for(let e=0;e<100;e++)t+=`/${e}`;const n=new URL(e,t);return{isRelativeUrl:n&&"relative-site"===n.hostname&&"relative:"===n.protocol,url:n}}function O(e,t,n){return t?(e=e.split(/\s+/)).filter((function(e){return-1!==t.indexOf(e)||n.some((function(t){return t.test(e)}))})).join(" "):e}}const oA={decodeEntities:!0};aA.defaults={allowedTags:["address","article","aside","footer","header","h1","h2","h3","h4","h5","h6","hgroup","main","nav","section","blockquote","dd","div","dl","dt","figcaption","figure","hr","li","main","ol","p","pre","ul","a","abbr","b","bdi","bdo","br","cite","code","data","dfn","em","i","kbd","mark","q","rb","rp","rt","rtc","ruby","s","samp","small","span","strong","sub","sup","time","u","var","wbr","caption","col","colgroup","table","tbody","td","tfoot","th","thead","tr"],disallowedTagsMode:"discard",allowedAttributes:{a:["href","name","target"],img:["src","srcset","alt","title","width","height","loading"]},selfClosing:["img","br","hr","area","base","basefont","input","link","meta"],allowedSchemes:["http","https","ftp","mailto","tel"],allowedSchemesByTag:{},allowedSchemesAppliedToAttributes:["href","src","cite"],allowProtocolRelative:!0,enforceHtmlBoundary:!1,parseStyleAttributes:!0},aA.simpleTransform=function(e,t,n){return n=void 0===n||n,t=t||{},function(r,i){let a;if(n)for(a in t)i[a]=t[a];else i=t;return{tagName:e,attribs:i}}};var sA=rA;const uA=t=>{const{id:n,children:r}=t,i=()=>n?Ja.generateId(n,"sanitized"):Ja.generateId("sanitized");return e("span",{id:i(),"data-testid":i(),dangerouslySetInnerHTML:{__html:sA("string"!=typeof r?E(r):r)}})},lA={"TEXT-D1":y.D1,"TEXT-D2":y.D2,"TEXT-DBODY":y.DBody,"TEXT-H1":y.H1,"TEXT-H2":y.H2,"TEXT-H3":y.H3,"TEXT-H4":y.H4,"TEXT-H5":y.H5,"TEXT-H6":y.H6,"TEXT-BODY":y.Body,"TEXT-BODYSMALL":y.BodySmall,"TEXT-XSMALL":y.XSmall},cA=t=>{const{id:n,schema:{children:r,uiType:i,...a}}=t,o=lA[i.toUpperCase()]||void 0,s=e=>Ja.generateId(e,"text");return e(o,{id:n,"data-testid":s(n),...a,...(()=>{const e=Dn(r)&&r.length>1,t=Lt(r)&&Object.keys(r).length>1;return e||t})()&&{as:"div"},children:e(uA,{id:n,children:Dn(r)?r.map(((t,r)=>{const i=`${n}-${r}`;return e(o,{id:i,"data-testid":s(i),children:e(uA,{id:i,children:t})},r)})):"object"==typeof r?Object.entries(r).map((([t,n],r)=>e(cA,{id:t,schema:n},r))):r})})};var dA=Object.freeze({__proto__:null,Alert:t=>{const{id:n,schema:{children:r,...i}}=t;return e(_,{id:n,"data-testid":Ja.generateId(n,"alert"),...i,children:e(uA,{id:n,children:r})})},Text:cA}),fA={exports:{}};
|
|
226
|
-
/**
|
|
227
|
-
* @license
|
|
228
|
-
* Lodash <https://lodash.com/>
|
|
229
|
-
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
230
|
-
* Released under MIT license <https://lodash.com/license>
|
|
231
|
-
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
232
|
-
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
233
|
-
*/
|
|
234
|
-
!function(e,t){(function(){var n,r="Expected a function",i="__lodash_hash_undefined__",a="__lodash_placeholder__",o=16,s=32,u=64,l=128,c=256,d=1/0,f=9007199254740991,h=NaN,p=4294967295,m=[["ary",l],["bind",1],["bindKey",2],["curry",8],["curryRight",o],["flip",512],["partial",s],["partialRight",u],["rearg",c]],_="[object Arguments]",y="[object Array]",g="[object Boolean]",v="[object Date]",A="[object Error]",E="[object Function]",b="[object GeneratorFunction]",S="[object Map]",M="[object Number]",T="[object Object]",w="[object Promise]",O="[object RegExp]",N="[object Set]",C="[object String]",L="[object Symbol]",D="[object WeakMap]",$="[object ArrayBuffer]",I="[object DataView]",x="[object Float32Array]",k="[object Float64Array]",z="[object Int8Array]",R="[object Int16Array]",Z="[object Int32Array]",P="[object Uint8Array]",F="[object Uint8ClampedArray]",U="[object Uint16Array]",B="[object Uint32Array]",V=/\b__p \+= '';/g,H=/\b(__p \+=) '' \+/g,Y=/(__e\(.*?\)|\b__t\)) \+\n'';/g,j=/&(?:amp|lt|gt|quot|#39);/g,G=/[&<>"']/g,W=RegExp(j.source),q=RegExp(G.source),K=/<%-([\s\S]+?)%>/g,J=/<%([\s\S]+?)%>/g,X=/<%=([\s\S]+?)%>/g,Q=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,ee=/^\w*$/,te=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ne=/[\\^$.*+?()[\]{}|]/g,re=RegExp(ne.source),ie=/^\s+/,ae=/\s/,oe=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,se=/\{\n\/\* \[wrapped with (.+)\] \*/,ue=/,? & /,le=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ce=/[()=,{}\[\]\/\s]/,de=/\\(\\)?/g,fe=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,he=/\w*$/,pe=/^[-+]0x[0-9a-f]+$/i,me=/^0b[01]+$/i,_e=/^\[object .+?Constructor\]$/,ye=/^0o[0-7]+$/i,ge=/^(?:0|[1-9]\d*)$/,ve=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,Ae=/($^)/,Ee=/['\n\r\u2028\u2029\\]/g,be="\\ud800-\\udfff",Se="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Me="\\u2700-\\u27bf",Te="a-z\\xdf-\\xf6\\xf8-\\xff",we="A-Z\\xc0-\\xd6\\xd8-\\xde",Oe="\\ufe0e\\ufe0f",Ne="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ce="['’]",Le="["+be+"]",De="["+Ne+"]",$e="["+Se+"]",Ie="\\d+",xe="["+Me+"]",ke="["+Te+"]",ze="[^"+be+Ne+Ie+Me+Te+we+"]",Re="\\ud83c[\\udffb-\\udfff]",Ze="[^"+be+"]",Pe="(?:\\ud83c[\\udde6-\\uddff]){2}",Fe="[\\ud800-\\udbff][\\udc00-\\udfff]",Ue="["+we+"]",Be="\\u200d",Ve="(?:"+ke+"|"+ze+")",He="(?:"+Ue+"|"+ze+")",Ye="(?:['’](?:d|ll|m|re|s|t|ve))?",je="(?:['’](?:D|LL|M|RE|S|T|VE))?",Ge="(?:"+$e+"|"+Re+")"+"?",We="["+Oe+"]?",qe=We+Ge+("(?:"+Be+"(?:"+[Ze,Pe,Fe].join("|")+")"+We+Ge+")*"),Ke="(?:"+[xe,Pe,Fe].join("|")+")"+qe,Je="(?:"+[Ze+$e+"?",$e,Pe,Fe,Le].join("|")+")",Xe=RegExp(Ce,"g"),Qe=RegExp($e,"g"),et=RegExp(Re+"(?="+Re+")|"+Je+qe,"g"),tt=RegExp([Ue+"?"+ke+"+"+Ye+"(?="+[De,Ue,"$"].join("|")+")",He+"+"+je+"(?="+[De,Ue+Ve,"$"].join("|")+")",Ue+"?"+Ve+"+"+Ye,Ue+"+"+je,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ie,Ke].join("|"),"g"),nt=RegExp("["+Be+be+Se+Oe+"]"),rt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,it=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],ot=-1,st={};st[x]=st[k]=st[z]=st[R]=st[Z]=st[P]=st[F]=st[U]=st[B]=!0,st[_]=st[y]=st[$]=st[g]=st[I]=st[v]=st[A]=st[E]=st[S]=st[M]=st[T]=st[O]=st[N]=st[C]=st[D]=!1;var ut={};ut[_]=ut[y]=ut[$]=ut[I]=ut[g]=ut[v]=ut[x]=ut[k]=ut[z]=ut[R]=ut[Z]=ut[S]=ut[M]=ut[T]=ut[O]=ut[N]=ut[C]=ut[L]=ut[P]=ut[F]=ut[U]=ut[B]=!0,ut[A]=ut[E]=ut[D]=!1;var lt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},ct=parseFloat,dt=parseInt,ft="object"==typeof at&&at&&at.Object===Object&&at,ht="object"==typeof self&&self&&self.Object===Object&&self,pt=ft||ht||Function("return this")(),mt=t&&!t.nodeType&&t,_t=mt&&e&&!e.nodeType&&e,yt=_t&&_t.exports===mt,gt=yt&&ft.process,vt=function(){try{var e=_t&&_t.require&&_t.require("util").types;return e||gt&>.binding&>.binding("util")}catch(e){}}(),At=vt&&vt.isArrayBuffer,Et=vt&&vt.isDate,bt=vt&&vt.isMap,St=vt&&vt.isRegExp,Mt=vt&&vt.isSet,Tt=vt&&vt.isTypedArray;function wt(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function Ot(e,t,n,r){for(var i=-1,a=null==e?0:e.length;++i<a;){var o=e[i];t(r,o,n(o),e)}return r}function Nt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r&&!1!==t(e[n],n,e););return e}function Ct(e,t){for(var n=null==e?0:e.length;n--&&!1!==t(e[n],n,e););return e}function Lt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(!t(e[n],n,e))return!1;return!0}function Dt(e,t){for(var n=-1,r=null==e?0:e.length,i=0,a=[];++n<r;){var o=e[n];t(o,n,e)&&(a[i++]=o)}return a}function $t(e,t){return!!(null==e?0:e.length)&&Bt(e,t,0)>-1}function It(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1}function xt(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}function kt(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}function zt(e,t,n,r){var i=-1,a=null==e?0:e.length;for(r&&a&&(n=e[++i]);++i<a;)n=t(n,e[i],i,e);return n}function Rt(e,t,n,r){var i=null==e?0:e.length;for(r&&i&&(n=e[--i]);i--;)n=t(n,e[i],i,e);return n}function Zt(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}var Pt=jt("length");function Ft(e,t,n){var r;return n(e,(function(e,n,i){if(t(e,n,i))return r=n,!1})),r}function Ut(e,t,n,r){for(var i=e.length,a=n+(r?1:-1);r?a--:++a<i;)if(t(e[a],a,e))return a;return-1}function Bt(e,t,n){return t==t?function(e,t,n){var r=n-1,i=e.length;for(;++r<i;)if(e[r]===t)return r;return-1}(e,t,n):Ut(e,Ht,n)}function Vt(e,t,n,r){for(var i=n-1,a=e.length;++i<a;)if(r(e[i],t))return i;return-1}function Ht(e){return e!=e}function Yt(e,t){var n=null==e?0:e.length;return n?qt(e,t)/n:h}function jt(e){return function(t){return null==t?n:t[e]}}function Gt(e){return function(t){return null==e?n:e[t]}}function Wt(e,t,n,r,i){return i(e,(function(e,i,a){n=r?(r=!1,e):t(n,e,i,a)})),n}function qt(e,t){for(var r,i=-1,a=e.length;++i<a;){var o=t(e[i]);o!==n&&(r=r===n?o:r+o)}return r}function Kt(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}function Jt(e){return e?e.slice(0,mn(e)+1).replace(ie,""):e}function Xt(e){return function(t){return e(t)}}function Qt(e,t){return xt(t,(function(t){return e[t]}))}function en(e,t){return e.has(t)}function tn(e,t){for(var n=-1,r=e.length;++n<r&&Bt(t,e[n],0)>-1;);return n}function nn(e,t){for(var n=e.length;n--&&Bt(t,e[n],0)>-1;);return n}var rn=Gt({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),an=Gt({"&":"&","<":"<",">":">",'"':""","'":"'"});function on(e){return"\\"+lt[e]}function sn(e){return nt.test(e)}function un(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function ln(e,t){return function(n){return e(t(n))}}function cn(e,t){for(var n=-1,r=e.length,i=0,o=[];++n<r;){var s=e[n];s!==t&&s!==a||(e[n]=a,o[i++]=n)}return o}function dn(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n}function fn(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=[e,e]})),n}function hn(e){return sn(e)?function(e){var t=et.lastIndex=0;for(;et.test(e);)++t;return t}(e):Pt(e)}function pn(e){return sn(e)?function(e){return e.match(et)||[]}(e):function(e){return e.split("")}(e)}function mn(e){for(var t=e.length;t--&&ae.test(e.charAt(t)););return t}var _n=Gt({"&":"&","<":"<",">":">",""":'"',"'":"'"});var yn=function e(t){var ae=(t=null==t?pt:yn.defaults(pt.Object(),t,yn.pick(pt,it))).Array,be=t.Date,Se=t.Error,Me=t.Function,Te=t.Math,we=t.Object,Oe=t.RegExp,Ne=t.String,Ce=t.TypeError,Le=ae.prototype,De=Me.prototype,$e=we.prototype,Ie=t["__core-js_shared__"],xe=De.toString,ke=$e.hasOwnProperty,ze=0,Re=function(){var e=/[^.]+$/.exec(Ie&&Ie.keys&&Ie.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),Ze=$e.toString,Pe=xe.call(we),Fe=pt._,Ue=Oe("^"+xe.call(ke).replace(ne,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Be=yt?t.Buffer:n,Ve=t.Symbol,He=t.Uint8Array,Ye=Be?Be.allocUnsafe:n,je=ln(we.getPrototypeOf,we),Ge=we.create,We=$e.propertyIsEnumerable,qe=Le.splice,Ke=Ve?Ve.isConcatSpreadable:n,Je=Ve?Ve.iterator:n,et=Ve?Ve.toStringTag:n,nt=function(){try{var e=da(we,"defineProperty");return e({},"",{}),e}catch(e){}}(),at=t.clearTimeout!==pt.clearTimeout&&t.clearTimeout,lt=be&&be.now!==pt.Date.now&&be.now,ft=t.setTimeout!==pt.setTimeout&&t.setTimeout,ht=Te.ceil,mt=Te.floor,_t=we.getOwnPropertySymbols,gt=Be?Be.isBuffer:n,vt=t.isFinite,Pt=Le.join,Gt=ln(we.keys,we),gn=Te.max,vn=Te.min,An=be.now,En=t.parseInt,bn=Te.random,Sn=Le.reverse,Mn=da(t,"DataView"),Tn=da(t,"Map"),wn=da(t,"Promise"),On=da(t,"Set"),Nn=da(t,"WeakMap"),Cn=da(we,"create"),Ln=Nn&&new Nn,Dn={},$n=Ra(Mn),In=Ra(Tn),xn=Ra(wn),kn=Ra(On),zn=Ra(Nn),Rn=Ve?Ve.prototype:n,Zn=Rn?Rn.valueOf:n,Pn=Rn?Rn.toString:n;function Fn(e){if(ts(e)&&!Ho(e)&&!(e instanceof Hn)){if(e instanceof Vn)return e;if(ke.call(e,"__wrapped__"))return Za(e)}return new Vn(e)}var Un=function(){function e(){}return function(t){if(!es(t))return{};if(Ge)return Ge(t);e.prototype=t;var r=new e;return e.prototype=n,r}}();function Bn(){}function Vn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=n}function Hn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=p,this.__views__=[]}function Yn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function jn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Gn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}function Wn(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new Gn;++t<n;)this.add(e[t])}function qn(e){var t=this.__data__=new jn(e);this.size=t.size}function Kn(e,t){var n=Ho(e),r=!n&&Vo(e),i=!n&&!r&&Wo(e),a=!n&&!r&&!i&&ls(e),o=n||r||i||a,s=o?Kt(e.length,Ne):[],u=s.length;for(var l in e)!t&&!ke.call(e,l)||o&&("length"==l||i&&("offset"==l||"parent"==l)||a&&("buffer"==l||"byteLength"==l||"byteOffset"==l)||ga(l,u))||s.push(l);return s}function Jn(e){var t=e.length;return t?e[Wr(0,t-1)]:n}function Xn(e,t){return xa(Ci(e),sr(t,0,e.length))}function Qn(e){return xa(Ci(e))}function er(e,t,r){(r!==n&&!Fo(e[t],r)||r===n&&!(t in e))&&ar(e,t,r)}function tr(e,t,r){var i=e[t];ke.call(e,t)&&Fo(i,r)&&(r!==n||t in e)||ar(e,t,r)}function nr(e,t){for(var n=e.length;n--;)if(Fo(e[n][0],t))return n;return-1}function rr(e,t,n,r){return fr(e,(function(e,i,a){t(r,e,n(e),a)})),r}function ir(e,t){return e&&Li(t,Ds(t),e)}function ar(e,t,n){"__proto__"==t&&nt?nt(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n}function or(e,t){for(var r=-1,i=t.length,a=ae(i),o=null==e;++r<i;)a[r]=o?n:ws(e,t[r]);return a}function sr(e,t,r){return e==e&&(r!==n&&(e=e<=r?e:r),t!==n&&(e=e>=t?e:t)),e}function ur(e,t,r,i,a,o){var s,u=1&t,l=2&t,c=4&t;if(r&&(s=a?r(e,i,a,o):r(e)),s!==n)return s;if(!es(e))return e;var d=Ho(e);if(d){if(s=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&ke.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!u)return Ci(e,s)}else{var f=pa(e),h=f==E||f==b;if(Wo(e))return Si(e,u);if(f==T||f==_||h&&!a){if(s=l||h?{}:_a(e),!u)return l?function(e,t){return Li(e,ha(e),t)}(e,function(e,t){return e&&Li(t,$s(t),e)}(s,e)):function(e,t){return Li(e,fa(e),t)}(e,ir(s,e))}else{if(!ut[f])return a?e:{};s=function(e,t,n){var r=e.constructor;switch(t){case $:return Mi(e);case g:case v:return new r(+e);case I:return function(e,t){var n=t?Mi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case x:case k:case z:case R:case Z:case P:case F:case U:case B:return Ti(e,n);case S:return new r;case M:case C:return new r(e);case O:return function(e){var t=new e.constructor(e.source,he.exec(e));return t.lastIndex=e.lastIndex,t}(e);case N:return new r;case L:return i=e,Zn?we(Zn.call(i)):{}}var i}(e,f,u)}}o||(o=new qn);var p=o.get(e);if(p)return p;o.set(e,s),os(e)?e.forEach((function(n){s.add(ur(n,t,r,n,e,o))})):ns(e)&&e.forEach((function(n,i){s.set(i,ur(n,t,r,i,e,o))}));var m=d?n:(c?l?ia:ra:l?$s:Ds)(e);return Nt(m||e,(function(n,i){m&&(n=e[i=n]),tr(s,i,ur(n,t,r,i,e,o))})),s}function lr(e,t,r){var i=r.length;if(null==e)return!i;for(e=we(e);i--;){var a=r[i],o=t[a],s=e[a];if(s===n&&!(a in e)||!o(s))return!1}return!0}function cr(e,t,i){if("function"!=typeof e)throw new Ce(r);return La((function(){e.apply(n,i)}),t)}function dr(e,t,n,r){var i=-1,a=$t,o=!0,s=e.length,u=[],l=t.length;if(!s)return u;n&&(t=xt(t,Xt(n))),r?(a=It,o=!1):t.length>=200&&(a=en,o=!1,t=new Wn(t));e:for(;++i<s;){var c=e[i],d=null==n?c:n(c);if(c=r||0!==c?c:0,o&&d==d){for(var f=l;f--;)if(t[f]===d)continue e;u.push(c)}else a(t,d,r)||u.push(c)}return u}Fn.templateSettings={escape:K,evaluate:J,interpolate:X,variable:"",imports:{_:Fn}},Fn.prototype=Bn.prototype,Fn.prototype.constructor=Fn,Vn.prototype=Un(Bn.prototype),Vn.prototype.constructor=Vn,Hn.prototype=Un(Bn.prototype),Hn.prototype.constructor=Hn,Yn.prototype.clear=function(){this.__data__=Cn?Cn(null):{},this.size=0},Yn.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Yn.prototype.get=function(e){var t=this.__data__;if(Cn){var r=t[e];return r===i?n:r}return ke.call(t,e)?t[e]:n},Yn.prototype.has=function(e){var t=this.__data__;return Cn?t[e]!==n:ke.call(t,e)},Yn.prototype.set=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Cn&&t===n?i:t,this},jn.prototype.clear=function(){this.__data__=[],this.size=0},jn.prototype.delete=function(e){var t=this.__data__,n=nr(t,e);return!(n<0)&&(n==t.length-1?t.pop():qe.call(t,n,1),--this.size,!0)},jn.prototype.get=function(e){var t=this.__data__,r=nr(t,e);return r<0?n:t[r][1]},jn.prototype.has=function(e){return nr(this.__data__,e)>-1},jn.prototype.set=function(e,t){var n=this.__data__,r=nr(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Gn.prototype.clear=function(){this.size=0,this.__data__={hash:new Yn,map:new(Tn||jn),string:new Yn}},Gn.prototype.delete=function(e){var t=la(this,e).delete(e);return this.size-=t?1:0,t},Gn.prototype.get=function(e){return la(this,e).get(e)},Gn.prototype.has=function(e){return la(this,e).has(e)},Gn.prototype.set=function(e,t){var n=la(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Wn.prototype.add=Wn.prototype.push=function(e){return this.__data__.set(e,i),this},Wn.prototype.has=function(e){return this.__data__.has(e)},qn.prototype.clear=function(){this.__data__=new jn,this.size=0},qn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},qn.prototype.get=function(e){return this.__data__.get(e)},qn.prototype.has=function(e){return this.__data__.has(e)},qn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof jn){var r=n.__data__;if(!Tn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Gn(r)}return n.set(e,t),this.size=n.size,this};var fr=Ii(Ar),hr=Ii(Er,!0);function pr(e,t){var n=!0;return fr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function mr(e,t,r){for(var i=-1,a=e.length;++i<a;){var o=e[i],s=t(o);if(null!=s&&(u===n?s==s&&!us(s):r(s,u)))var u=s,l=o}return l}function _r(e,t){var n=[];return fr(e,(function(e,r,i){t(e,r,i)&&n.push(e)})),n}function yr(e,t,n,r,i){var a=-1,o=e.length;for(n||(n=ya),i||(i=[]);++a<o;){var s=e[a];t>0&&n(s)?t>1?yr(s,t-1,n,r,i):kt(i,s):r||(i[i.length]=s)}return i}var gr=xi(),vr=xi(!0);function Ar(e,t){return e&&gr(e,t,Ds)}function Er(e,t){return e&&vr(e,t,Ds)}function br(e,t){return Dt(t,(function(t){return Jo(e[t])}))}function Sr(e,t){for(var r=0,i=(t=vi(t,e)).length;null!=e&&r<i;)e=e[za(t[r++])];return r&&r==i?e:n}function Mr(e,t,n){var r=t(e);return Ho(e)?r:kt(r,n(e))}function Tr(e){return null==e?e===n?"[object Undefined]":"[object Null]":et&&et in we(e)?function(e){var t=ke.call(e,et),r=e[et];try{e[et]=n;var i=!0}catch(e){}var a=Ze.call(e);i&&(t?e[et]=r:delete e[et]);return a}(e):function(e){return Ze.call(e)}(e)}function wr(e,t){return e>t}function Or(e,t){return null!=e&&ke.call(e,t)}function Nr(e,t){return null!=e&&t in we(e)}function Cr(e,t,r){for(var i=r?It:$t,a=e[0].length,o=e.length,s=o,u=ae(o),l=1/0,c=[];s--;){var d=e[s];s&&t&&(d=xt(d,Xt(t))),l=vn(d.length,l),u[s]=!r&&(t||a>=120&&d.length>=120)?new Wn(s&&d):n}d=e[0];var f=-1,h=u[0];e:for(;++f<a&&c.length<l;){var p=d[f],m=t?t(p):p;if(p=r||0!==p?p:0,!(h?en(h,m):i(c,m,r))){for(s=o;--s;){var _=u[s];if(!(_?en(_,m):i(e[s],m,r)))continue e}h&&h.push(m),c.push(p)}}return c}function Lr(e,t,r){var i=null==(e=Oa(e,t=vi(t,e)))?e:e[za(qa(t))];return null==i?n:wt(i,e,r)}function Dr(e){return ts(e)&&Tr(e)==_}function $r(e,t,r,i,a){return e===t||(null==e||null==t||!ts(e)&&!ts(t)?e!=e&&t!=t:function(e,t,r,i,a,o){var s=Ho(e),u=Ho(t),l=s?y:pa(e),c=u?y:pa(t),d=(l=l==_?T:l)==T,f=(c=c==_?T:c)==T,h=l==c;if(h&&Wo(e)){if(!Wo(t))return!1;s=!0,d=!1}if(h&&!d)return o||(o=new qn),s||ls(e)?ta(e,t,r,i,a,o):function(e,t,n,r,i,a,o){switch(n){case I:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case $:return!(e.byteLength!=t.byteLength||!a(new He(e),new He(t)));case g:case v:case M:return Fo(+e,+t);case A:return e.name==t.name&&e.message==t.message;case O:case C:return e==t+"";case S:var s=un;case N:var u=1&r;if(s||(s=dn),e.size!=t.size&&!u)return!1;var l=o.get(e);if(l)return l==t;r|=2,o.set(e,t);var c=ta(s(e),s(t),r,i,a,o);return o.delete(e),c;case L:if(Zn)return Zn.call(e)==Zn.call(t)}return!1}(e,t,l,r,i,a,o);if(!(1&r)){var p=d&&ke.call(e,"__wrapped__"),m=f&&ke.call(t,"__wrapped__");if(p||m){var E=p?e.value():e,b=m?t.value():t;return o||(o=new qn),a(E,b,r,i,o)}}if(!h)return!1;return o||(o=new qn),function(e,t,r,i,a,o){var s=1&r,u=ra(e),l=u.length,c=ra(t),d=c.length;if(l!=d&&!s)return!1;var f=l;for(;f--;){var h=u[f];if(!(s?h in t:ke.call(t,h)))return!1}var p=o.get(e),m=o.get(t);if(p&&m)return p==t&&m==e;var _=!0;o.set(e,t),o.set(t,e);var y=s;for(;++f<l;){var g=e[h=u[f]],v=t[h];if(i)var A=s?i(v,g,h,t,e,o):i(g,v,h,e,t,o);if(!(A===n?g===v||a(g,v,r,i,o):A)){_=!1;break}y||(y="constructor"==h)}if(_&&!y){var E=e.constructor,b=t.constructor;E==b||!("constructor"in e)||!("constructor"in t)||"function"==typeof E&&E instanceof E&&"function"==typeof b&&b instanceof b||(_=!1)}return o.delete(e),o.delete(t),_}(e,t,r,i,a,o)}(e,t,r,i,$r,a))}function Ir(e,t,r,i){var a=r.length,o=a,s=!i;if(null==e)return!o;for(e=we(e);a--;){var u=r[a];if(s&&u[2]?u[1]!==e[u[0]]:!(u[0]in e))return!1}for(;++a<o;){var l=(u=r[a])[0],c=e[l],d=u[1];if(s&&u[2]){if(c===n&&!(l in e))return!1}else{var f=new qn;if(i)var h=i(c,d,l,e,t,f);if(!(h===n?$r(d,c,3,i,f):h))return!1}}return!0}function xr(e){return!(!es(e)||(t=e,Re&&Re in t))&&(Jo(e)?Ue:_e).test(Ra(e));var t}function kr(e){return"function"==typeof e?e:null==e?ru:"object"==typeof e?Ho(e)?Ur(e[0],e[1]):Fr(e):fu(e)}function zr(e){if(!Sa(e))return Gt(e);var t=[];for(var n in we(e))ke.call(e,n)&&"constructor"!=n&&t.push(n);return t}function Rr(e){if(!es(e))return function(e){var t=[];if(null!=e)for(var n in we(e))t.push(n);return t}(e);var t=Sa(e),n=[];for(var r in e)("constructor"!=r||!t&&ke.call(e,r))&&n.push(r);return n}function Zr(e,t){return e<t}function Pr(e,t){var n=-1,r=jo(e)?ae(e.length):[];return fr(e,(function(e,i,a){r[++n]=t(e,i,a)})),r}function Fr(e){var t=ca(e);return 1==t.length&&t[0][2]?Ta(t[0][0],t[0][1]):function(n){return n===e||Ir(n,e,t)}}function Ur(e,t){return Aa(e)&&Ma(t)?Ta(za(e),t):function(r){var i=ws(r,e);return i===n&&i===t?Os(r,e):$r(t,i,3)}}function Br(e,t,r,i,a){e!==t&&gr(t,(function(o,s){if(a||(a=new qn),es(o))!function(e,t,r,i,a,o,s){var u=Na(e,r),l=Na(t,r),c=s.get(l);if(c)return void er(e,r,c);var d=o?o(u,l,r+"",e,t,s):n,f=d===n;if(f){var h=Ho(l),p=!h&&Wo(l),m=!h&&!p&&ls(l);d=l,h||p||m?Ho(u)?d=u:Go(u)?d=Ci(u):p?(f=!1,d=Si(l,!0)):m?(f=!1,d=Ti(l,!0)):d=[]:is(l)||Vo(l)?(d=u,Vo(u)?d=ys(u):es(u)&&!Jo(u)||(d=_a(l))):f=!1}f&&(s.set(l,d),a(d,l,i,o,s),s.delete(l));er(e,r,d)}(e,t,s,r,Br,i,a);else{var u=i?i(Na(e,s),o,s+"",e,t,a):n;u===n&&(u=o),er(e,s,u)}}),$s)}function Vr(e,t){var r=e.length;if(r)return ga(t+=t<0?r:0,r)?e[t]:n}function Hr(e,t,n){t=t.length?xt(t,(function(e){return Ho(e)?function(t){return Sr(t,1===e.length?e[0]:e)}:e})):[ru];var r=-1;t=xt(t,Xt(ua()));var i=Pr(e,(function(e,n,i){var a=xt(t,(function(t){return t(e)}));return{criteria:a,index:++r,value:e}}));return function(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].value;return e}(i,(function(e,t){return function(e,t,n){var r=-1,i=e.criteria,a=t.criteria,o=i.length,s=n.length;for(;++r<o;){var u=wi(i[r],a[r]);if(u)return r>=s?u:u*("desc"==n[r]?-1:1)}return e.index-t.index}(e,t,n)}))}function Yr(e,t,n){for(var r=-1,i=t.length,a={};++r<i;){var o=t[r],s=Sr(e,o);n(s,o)&&Qr(a,vi(o,e),s)}return a}function jr(e,t,n,r){var i=r?Vt:Bt,a=-1,o=t.length,s=e;for(e===t&&(t=Ci(t)),n&&(s=xt(e,Xt(n)));++a<o;)for(var u=0,l=t[a],c=n?n(l):l;(u=i(s,c,u,r))>-1;)s!==e&&qe.call(s,u,1),qe.call(e,u,1);return e}function Gr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==a){var a=i;ga(i)?qe.call(e,i,1):di(e,i)}}return e}function Wr(e,t){return e+mt(bn()*(t-e+1))}function qr(e,t){var n="";if(!e||t<1||t>f)return n;do{t%2&&(n+=e),(t=mt(t/2))&&(e+=e)}while(t);return n}function Kr(e,t){return Da(wa(e,t,ru),e+"")}function Jr(e){return Jn(Fs(e))}function Xr(e,t){var n=Fs(e);return xa(n,sr(t,0,n.length))}function Qr(e,t,r,i){if(!es(e))return e;for(var a=-1,o=(t=vi(t,e)).length,s=o-1,u=e;null!=u&&++a<o;){var l=za(t[a]),c=r;if("__proto__"===l||"constructor"===l||"prototype"===l)return e;if(a!=s){var d=u[l];(c=i?i(d,l,u):n)===n&&(c=es(d)?d:ga(t[a+1])?[]:{})}tr(u,l,c),u=u[l]}return e}var ei=Ln?function(e,t){return Ln.set(e,t),e}:ru,ti=nt?function(e,t){return nt(e,"toString",{configurable:!0,enumerable:!1,value:eu(t),writable:!0})}:ru;function ni(e){return xa(Fs(e))}function ri(e,t,n){var r=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(n=n>i?i:n)<0&&(n+=i),i=t>n?0:n-t>>>0,t>>>=0;for(var a=ae(i);++r<i;)a[r]=e[r+t];return a}function ii(e,t){var n;return fr(e,(function(e,r,i){return!(n=t(e,r,i))})),!!n}function ai(e,t,n){var r=0,i=null==e?r:e.length;if("number"==typeof t&&t==t&&i<=2147483647){for(;r<i;){var a=r+i>>>1,o=e[a];null!==o&&!us(o)&&(n?o<=t:o<t)?r=a+1:i=a}return i}return oi(e,t,ru,n)}function oi(e,t,r,i){var a=0,o=null==e?0:e.length;if(0===o)return 0;for(var s=(t=r(t))!=t,u=null===t,l=us(t),c=t===n;a<o;){var d=mt((a+o)/2),f=r(e[d]),h=f!==n,p=null===f,m=f==f,_=us(f);if(s)var y=i||m;else y=c?m&&(i||h):u?m&&h&&(i||!p):l?m&&h&&!p&&(i||!_):!p&&!_&&(i?f<=t:f<t);y?a=d+1:o=d}return vn(o,4294967294)}function si(e,t){for(var n=-1,r=e.length,i=0,a=[];++n<r;){var o=e[n],s=t?t(o):o;if(!n||!Fo(s,u)){var u=s;a[i++]=0===o?0:o}}return a}function ui(e){return"number"==typeof e?e:us(e)?h:+e}function li(e){if("string"==typeof e)return e;if(Ho(e))return xt(e,li)+"";if(us(e))return Pn?Pn.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function ci(e,t,n){var r=-1,i=$t,a=e.length,o=!0,s=[],u=s;if(n)o=!1,i=It;else if(a>=200){var l=t?null:qi(e);if(l)return dn(l);o=!1,i=en,u=new Wn}else u=t?[]:s;e:for(;++r<a;){var c=e[r],d=t?t(c):c;if(c=n||0!==c?c:0,o&&d==d){for(var f=u.length;f--;)if(u[f]===d)continue e;t&&u.push(d),s.push(c)}else i(u,d,n)||(u!==s&&u.push(d),s.push(c))}return s}function di(e,t){return null==(e=Oa(e,t=vi(t,e)))||delete e[za(qa(t))]}function fi(e,t,n,r){return Qr(e,t,n(Sr(e,t)),r)}function hi(e,t,n,r){for(var i=e.length,a=r?i:-1;(r?a--:++a<i)&&t(e[a],a,e););return n?ri(e,r?0:a,r?a+1:i):ri(e,r?a+1:0,r?i:a)}function pi(e,t){var n=e;return n instanceof Hn&&(n=n.value()),zt(t,(function(e,t){return t.func.apply(t.thisArg,kt([e],t.args))}),n)}function mi(e,t,n){var r=e.length;if(r<2)return r?ci(e[0]):[];for(var i=-1,a=ae(r);++i<r;)for(var o=e[i],s=-1;++s<r;)s!=i&&(a[i]=dr(a[i]||o,e[s],t,n));return ci(yr(a,1),t,n)}function _i(e,t,r){for(var i=-1,a=e.length,o=t.length,s={};++i<a;){var u=i<o?t[i]:n;r(s,e[i],u)}return s}function yi(e){return Go(e)?e:[]}function gi(e){return"function"==typeof e?e:ru}function vi(e,t){return Ho(e)?e:Aa(e,t)?[e]:ka(gs(e))}var Ai=Kr;function Ei(e,t,r){var i=e.length;return r=r===n?i:r,!t&&r>=i?e:ri(e,t,r)}var bi=at||function(e){return pt.clearTimeout(e)};function Si(e,t){if(t)return e.slice();var n=e.length,r=Ye?Ye(n):new e.constructor(n);return e.copy(r),r}function Mi(e){var t=new e.constructor(e.byteLength);return new He(t).set(new He(e)),t}function Ti(e,t){var n=t?Mi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function wi(e,t){if(e!==t){var r=e!==n,i=null===e,a=e==e,o=us(e),s=t!==n,u=null===t,l=t==t,c=us(t);if(!u&&!c&&!o&&e>t||o&&s&&l&&!u&&!c||i&&s&&l||!r&&l||!a)return 1;if(!i&&!o&&!c&&e<t||c&&r&&a&&!i&&!o||u&&r&&a||!s&&a||!l)return-1}return 0}function Oi(e,t,n,r){for(var i=-1,a=e.length,o=n.length,s=-1,u=t.length,l=gn(a-o,0),c=ae(u+l),d=!r;++s<u;)c[s]=t[s];for(;++i<o;)(d||i<a)&&(c[n[i]]=e[i]);for(;l--;)c[s++]=e[i++];return c}function Ni(e,t,n,r){for(var i=-1,a=e.length,o=-1,s=n.length,u=-1,l=t.length,c=gn(a-s,0),d=ae(c+l),f=!r;++i<c;)d[i]=e[i];for(var h=i;++u<l;)d[h+u]=t[u];for(;++o<s;)(f||i<a)&&(d[h+n[o]]=e[i++]);return d}function Ci(e,t){var n=-1,r=e.length;for(t||(t=ae(r));++n<r;)t[n]=e[n];return t}function Li(e,t,r,i){var a=!r;r||(r={});for(var o=-1,s=t.length;++o<s;){var u=t[o],l=i?i(r[u],e[u],u,r,e):n;l===n&&(l=e[u]),a?ar(r,u,l):tr(r,u,l)}return r}function Di(e,t){return function(n,r){var i=Ho(n)?Ot:rr,a=t?t():{};return i(n,e,ua(r,2),a)}}function $i(e){return Kr((function(t,r){var i=-1,a=r.length,o=a>1?r[a-1]:n,s=a>2?r[2]:n;for(o=e.length>3&&"function"==typeof o?(a--,o):n,s&&va(r[0],r[1],s)&&(o=a<3?n:o,a=1),t=we(t);++i<a;){var u=r[i];u&&e(t,u,i,o)}return t}))}function Ii(e,t){return function(n,r){if(null==n)return n;if(!jo(n))return e(n,r);for(var i=n.length,a=t?i:-1,o=we(n);(t?a--:++a<i)&&!1!==r(o[a],a,o););return n}}function xi(e){return function(t,n,r){for(var i=-1,a=we(t),o=r(t),s=o.length;s--;){var u=o[e?s:++i];if(!1===n(a[u],u,a))break}return t}}function ki(e){return function(t){var r=sn(t=gs(t))?pn(t):n,i=r?r[0]:t.charAt(0),a=r?Ei(r,1).join(""):t.slice(1);return i[e]()+a}}function zi(e){return function(t){return zt(Js(Vs(t).replace(Xe,"")),e,"")}}function Ri(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=Un(e.prototype),r=e.apply(n,t);return es(r)?r:n}}function Zi(e){return function(t,r,i){var a=we(t);if(!jo(t)){var o=ua(r,3);t=Ds(t),r=function(e){return o(a[e],e,a)}}var s=e(t,r,i);return s>-1?a[o?t[s]:s]:n}}function Pi(e){return na((function(t){var i=t.length,a=i,o=Vn.prototype.thru;for(e&&t.reverse();a--;){var s=t[a];if("function"!=typeof s)throw new Ce(r);if(o&&!u&&"wrapper"==oa(s))var u=new Vn([],!0)}for(a=u?a:i;++a<i;){var l=oa(s=t[a]),c="wrapper"==l?aa(s):n;u=c&&Ea(c[0])&&424==c[1]&&!c[4].length&&1==c[9]?u[oa(c[0])].apply(u,c[3]):1==s.length&&Ea(s)?u[l]():u.thru(s)}return function(){var e=arguments,n=e[0];if(u&&1==e.length&&Ho(n))return u.plant(n).value();for(var r=0,a=i?t[r].apply(this,e):n;++r<i;)a=t[r].call(this,a);return a}}))}function Fi(e,t,r,i,a,o,s,u,c,d){var f=t&l,h=1&t,p=2&t,m=24&t,_=512&t,y=p?n:Ri(e);return function l(){for(var g=arguments.length,v=ae(g),A=g;A--;)v[A]=arguments[A];if(m)var E=sa(l),b=function(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}(v,E);if(i&&(v=Oi(v,i,a,m)),o&&(v=Ni(v,o,s,m)),g-=b,m&&g<d){var S=cn(v,E);return Gi(e,t,Fi,l.placeholder,r,v,S,u,c,d-g)}var M=h?r:this,T=p?M[e]:e;return g=v.length,u?v=function(e,t){var r=e.length,i=vn(t.length,r),a=Ci(e);for(;i--;){var o=t[i];e[i]=ga(o,r)?a[o]:n}return e}(v,u):_&&g>1&&v.reverse(),f&&c<g&&(v.length=c),this&&this!==pt&&this instanceof l&&(T=y||Ri(T)),T.apply(M,v)}}function Ui(e,t){return function(n,r){return function(e,t,n,r){return Ar(e,(function(e,i,a){t(r,n(e),i,a)})),r}(n,e,t(r),{})}}function Bi(e,t){return function(r,i){var a;if(r===n&&i===n)return t;if(r!==n&&(a=r),i!==n){if(a===n)return i;"string"==typeof r||"string"==typeof i?(r=li(r),i=li(i)):(r=ui(r),i=ui(i)),a=e(r,i)}return a}}function Vi(e){return na((function(t){return t=xt(t,Xt(ua())),Kr((function(n){var r=this;return e(t,(function(e){return wt(e,r,n)}))}))}))}function Hi(e,t){var r=(t=t===n?" ":li(t)).length;if(r<2)return r?qr(t,e):t;var i=qr(t,ht(e/hn(t)));return sn(t)?Ei(pn(i),0,e).join(""):i.slice(0,e)}function Yi(e){return function(t,r,i){return i&&"number"!=typeof i&&va(t,r,i)&&(r=i=n),t=hs(t),r===n?(r=t,t=0):r=hs(r),function(e,t,n,r){for(var i=-1,a=gn(ht((t-e)/(n||1)),0),o=ae(a);a--;)o[r?a:++i]=e,e+=n;return o}(t,r,i=i===n?t<r?1:-1:hs(i),e)}}function ji(e){return function(t,n){return"string"==typeof t&&"string"==typeof n||(t=_s(t),n=_s(n)),e(t,n)}}function Gi(e,t,r,i,a,o,l,c,d,f){var h=8&t;t|=h?s:u,4&(t&=~(h?u:s))||(t&=-4);var p=[e,t,a,h?o:n,h?l:n,h?n:o,h?n:l,c,d,f],m=r.apply(n,p);return Ea(e)&&Ca(m,p),m.placeholder=i,$a(m,e,t)}function Wi(e){var t=Te[e];return function(e,n){if(e=_s(e),(n=null==n?0:vn(ps(n),292))&&vt(e)){var r=(gs(e)+"e").split("e");return+((r=(gs(t(r[0]+"e"+(+r[1]+n)))+"e").split("e"))[0]+"e"+(+r[1]-n))}return t(e)}}var qi=On&&1/dn(new On([,-0]))[1]==d?function(e){return new On(e)}:uu;function Ki(e){return function(t){var n=pa(t);return n==S?un(t):n==N?fn(t):function(e,t){return xt(t,(function(t){return[t,e[t]]}))}(t,e(t))}}function Ji(e,t,i,d,f,h,p,m){var _=2&t;if(!_&&"function"!=typeof e)throw new Ce(r);var y=d?d.length:0;if(y||(t&=-97,d=f=n),p=p===n?p:gn(ps(p),0),m=m===n?m:ps(m),y-=f?f.length:0,t&u){var g=d,v=f;d=f=n}var A=_?n:aa(e),E=[e,t,i,d,f,g,v,h,p,m];if(A&&function(e,t){var n=e[1],r=t[1],i=n|r,o=i<131,s=r==l&&8==n||r==l&&n==c&&e[7].length<=t[8]||384==r&&t[7].length<=t[8]&&8==n;if(!o&&!s)return e;1&r&&(e[2]=t[2],i|=1&n?0:4);var u=t[3];if(u){var d=e[3];e[3]=d?Oi(d,u,t[4]):u,e[4]=d?cn(e[3],a):t[4]}(u=t[5])&&(d=e[5],e[5]=d?Ni(d,u,t[6]):u,e[6]=d?cn(e[5],a):t[6]);(u=t[7])&&(e[7]=u);r&l&&(e[8]=null==e[8]?t[8]:vn(e[8],t[8]));null==e[9]&&(e[9]=t[9]);e[0]=t[0],e[1]=i}(E,A),e=E[0],t=E[1],i=E[2],d=E[3],f=E[4],!(m=E[9]=E[9]===n?_?0:e.length:gn(E[9]-y,0))&&24&t&&(t&=-25),t&&1!=t)b=8==t||t==o?function(e,t,r){var i=Ri(e);return function a(){for(var o=arguments.length,s=ae(o),u=o,l=sa(a);u--;)s[u]=arguments[u];var c=o<3&&s[0]!==l&&s[o-1]!==l?[]:cn(s,l);return(o-=c.length)<r?Gi(e,t,Fi,a.placeholder,n,s,c,n,n,r-o):wt(this&&this!==pt&&this instanceof a?i:e,this,s)}}(e,t,m):t!=s&&33!=t||f.length?Fi.apply(n,E):function(e,t,n,r){var i=1&t,a=Ri(e);return function t(){for(var o=-1,s=arguments.length,u=-1,l=r.length,c=ae(l+s),d=this&&this!==pt&&this instanceof t?a:e;++u<l;)c[u]=r[u];for(;s--;)c[u++]=arguments[++o];return wt(d,i?n:this,c)}}(e,t,i,d);else var b=function(e,t,n){var r=1&t,i=Ri(e);return function t(){return(this&&this!==pt&&this instanceof t?i:e).apply(r?n:this,arguments)}}(e,t,i);return $a((A?ei:Ca)(b,E),e,t)}function Xi(e,t,r,i){return e===n||Fo(e,$e[r])&&!ke.call(i,r)?t:e}function Qi(e,t,r,i,a,o){return es(e)&&es(t)&&(o.set(t,e),Br(e,t,n,Qi,o),o.delete(t)),e}function ea(e){return is(e)?n:e}function ta(e,t,r,i,a,o){var s=1&r,u=e.length,l=t.length;if(u!=l&&!(s&&l>u))return!1;var c=o.get(e),d=o.get(t);if(c&&d)return c==t&&d==e;var f=-1,h=!0,p=2&r?new Wn:n;for(o.set(e,t),o.set(t,e);++f<u;){var m=e[f],_=t[f];if(i)var y=s?i(_,m,f,t,e,o):i(m,_,f,e,t,o);if(y!==n){if(y)continue;h=!1;break}if(p){if(!Zt(t,(function(e,t){if(!en(p,t)&&(m===e||a(m,e,r,i,o)))return p.push(t)}))){h=!1;break}}else if(m!==_&&!a(m,_,r,i,o)){h=!1;break}}return o.delete(e),o.delete(t),h}function na(e){return Da(wa(e,n,Ha),e+"")}function ra(e){return Mr(e,Ds,fa)}function ia(e){return Mr(e,$s,ha)}var aa=Ln?function(e){return Ln.get(e)}:uu;function oa(e){for(var t=e.name+"",n=Dn[t],r=ke.call(Dn,t)?n.length:0;r--;){var i=n[r],a=i.func;if(null==a||a==e)return i.name}return t}function sa(e){return(ke.call(Fn,"placeholder")?Fn:e).placeholder}function ua(){var e=Fn.iteratee||iu;return e=e===iu?kr:e,arguments.length?e(arguments[0],arguments[1]):e}function la(e,t){var n,r,i=e.__data__;return("string"==(r=typeof(n=t))||"number"==r||"symbol"==r||"boolean"==r?"__proto__"!==n:null===n)?i["string"==typeof t?"string":"hash"]:i.map}function ca(e){for(var t=Ds(e),n=t.length;n--;){var r=t[n],i=e[r];t[n]=[r,i,Ma(i)]}return t}function da(e,t){var r=function(e,t){return null==e?n:e[t]}(e,t);return xr(r)?r:n}var fa=_t?function(e){return null==e?[]:(e=we(e),Dt(_t(e),(function(t){return We.call(e,t)})))}:mu,ha=_t?function(e){for(var t=[];e;)kt(t,fa(e)),e=je(e);return t}:mu,pa=Tr;function ma(e,t,n){for(var r=-1,i=(t=vi(t,e)).length,a=!1;++r<i;){var o=za(t[r]);if(!(a=null!=e&&n(e,o)))break;e=e[o]}return a||++r!=i?a:!!(i=null==e?0:e.length)&&Qo(i)&&ga(o,i)&&(Ho(e)||Vo(e))}function _a(e){return"function"!=typeof e.constructor||Sa(e)?{}:Un(je(e))}function ya(e){return Ho(e)||Vo(e)||!!(Ke&&e&&e[Ke])}function ga(e,t){var n=typeof e;return!!(t=null==t?f:t)&&("number"==n||"symbol"!=n&&ge.test(e))&&e>-1&&e%1==0&&e<t}function va(e,t,n){if(!es(n))return!1;var r=typeof t;return!!("number"==r?jo(n)&&ga(t,n.length):"string"==r&&t in n)&&Fo(n[t],e)}function Aa(e,t){if(Ho(e))return!1;var n=typeof e;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=e&&!us(e))||(ee.test(e)||!Q.test(e)||null!=t&&e in we(t))}function Ea(e){var t=oa(e),n=Fn[t];if("function"!=typeof n||!(t in Hn.prototype))return!1;if(e===n)return!0;var r=aa(n);return!!r&&e===r[0]}(Mn&&pa(new Mn(new ArrayBuffer(1)))!=I||Tn&&pa(new Tn)!=S||wn&&pa(wn.resolve())!=w||On&&pa(new On)!=N||Nn&&pa(new Nn)!=D)&&(pa=function(e){var t=Tr(e),r=t==T?e.constructor:n,i=r?Ra(r):"";if(i)switch(i){case $n:return I;case In:return S;case xn:return w;case kn:return N;case zn:return D}return t});var ba=Ie?Jo:_u;function Sa(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||$e)}function Ma(e){return e==e&&!es(e)}function Ta(e,t){return function(r){return null!=r&&(r[e]===t&&(t!==n||e in we(r)))}}function wa(e,t,r){return t=gn(t===n?e.length-1:t,0),function(){for(var n=arguments,i=-1,a=gn(n.length-t,0),o=ae(a);++i<a;)o[i]=n[t+i];i=-1;for(var s=ae(t+1);++i<t;)s[i]=n[i];return s[t]=r(o),wt(e,this,s)}}function Oa(e,t){return t.length<2?e:Sr(e,ri(t,0,-1))}function Na(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}var Ca=Ia(ei),La=ft||function(e,t){return pt.setTimeout(e,t)},Da=Ia(ti);function $a(e,t,n){var r=t+"";return Da(e,function(e,t){var n=t.length;if(!n)return e;var r=n-1;return t[r]=(n>1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(oe,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return Nt(m,(function(n){var r="_."+n[0];t&n[1]&&!$t(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(se);return t?t[1].split(ue):[]}(r),n)))}function Ia(e){var t=0,r=0;return function(){var i=An(),a=16-(i-r);if(r=i,a>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(n,arguments)}}function xa(e,t){var r=-1,i=e.length,a=i-1;for(t=t===n?i:t;++r<t;){var o=Wr(r,a),s=e[o];e[o]=e[r],e[r]=s}return e.length=t,e}var ka=function(e){var t=xo(e,(function(e){return 500===n.size&&n.clear(),e})),n=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(te,(function(e,n,r,i){t.push(r?i.replace(de,"$1"):n||e)})),t}));function za(e){if("string"==typeof e||us(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function Ra(e){if(null!=e){try{return xe.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function Za(e){if(e instanceof Hn)return e.clone();var t=new Vn(e.__wrapped__,e.__chain__);return t.__actions__=Ci(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}var Pa=Kr((function(e,t){return Go(e)?dr(e,yr(t,1,Go,!0)):[]})),Fa=Kr((function(e,t){var r=qa(t);return Go(r)&&(r=n),Go(e)?dr(e,yr(t,1,Go,!0),ua(r,2)):[]})),Ua=Kr((function(e,t){var r=qa(t);return Go(r)&&(r=n),Go(e)?dr(e,yr(t,1,Go,!0),n,r):[]}));function Ba(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ps(n);return i<0&&(i=gn(r+i,0)),Ut(e,ua(t,3),i)}function Va(e,t,r){var i=null==e?0:e.length;if(!i)return-1;var a=i-1;return r!==n&&(a=ps(r),a=r<0?gn(i+a,0):vn(a,i-1)),Ut(e,ua(t,3),a,!0)}function Ha(e){return(null==e?0:e.length)?yr(e,1):[]}function Ya(e){return e&&e.length?e[0]:n}var ja=Kr((function(e){var t=xt(e,yi);return t.length&&t[0]===e[0]?Cr(t):[]})),Ga=Kr((function(e){var t=qa(e),r=xt(e,yi);return t===qa(r)?t=n:r.pop(),r.length&&r[0]===e[0]?Cr(r,ua(t,2)):[]})),Wa=Kr((function(e){var t=qa(e),r=xt(e,yi);return(t="function"==typeof t?t:n)&&r.pop(),r.length&&r[0]===e[0]?Cr(r,n,t):[]}));function qa(e){var t=null==e?0:e.length;return t?e[t-1]:n}var Ka=Kr(Ja);function Ja(e,t){return e&&e.length&&t&&t.length?jr(e,t):e}var Xa=na((function(e,t){var n=null==e?0:e.length,r=or(e,t);return Gr(e,xt(t,(function(e){return ga(e,n)?+e:e})).sort(wi)),r}));function Qa(e){return null==e?e:Sn.call(e)}var eo=Kr((function(e){return ci(yr(e,1,Go,!0))})),to=Kr((function(e){var t=qa(e);return Go(t)&&(t=n),ci(yr(e,1,Go,!0),ua(t,2))})),no=Kr((function(e){var t=qa(e);return t="function"==typeof t?t:n,ci(yr(e,1,Go,!0),n,t)}));function ro(e){if(!e||!e.length)return[];var t=0;return e=Dt(e,(function(e){if(Go(e))return t=gn(e.length,t),!0})),Kt(t,(function(t){return xt(e,jt(t))}))}function io(e,t){if(!e||!e.length)return[];var r=ro(e);return null==t?r:xt(r,(function(e){return wt(t,n,e)}))}var ao=Kr((function(e,t){return Go(e)?dr(e,t):[]})),oo=Kr((function(e){return mi(Dt(e,Go))})),so=Kr((function(e){var t=qa(e);return Go(t)&&(t=n),mi(Dt(e,Go),ua(t,2))})),uo=Kr((function(e){var t=qa(e);return t="function"==typeof t?t:n,mi(Dt(e,Go),n,t)})),lo=Kr(ro);var co=Kr((function(e){var t=e.length,r=t>1?e[t-1]:n;return r="function"==typeof r?(e.pop(),r):n,io(e,r)}));function fo(e){var t=Fn(e);return t.__chain__=!0,t}function ho(e,t){return t(e)}var po=na((function(e){var t=e.length,r=t?e[0]:0,i=this.__wrapped__,a=function(t){return or(t,e)};return!(t>1||this.__actions__.length)&&i instanceof Hn&&ga(r)?((i=i.slice(r,+r+(t?1:0))).__actions__.push({func:ho,args:[a],thisArg:n}),new Vn(i,this.__chain__).thru((function(e){return t&&!e.length&&e.push(n),e}))):this.thru(a)}));var mo=Di((function(e,t,n){ke.call(e,n)?++e[n]:ar(e,n,1)}));var _o=Zi(Ba),yo=Zi(Va);function go(e,t){return(Ho(e)?Nt:fr)(e,ua(t,3))}function vo(e,t){return(Ho(e)?Ct:hr)(e,ua(t,3))}var Ao=Di((function(e,t,n){ke.call(e,n)?e[n].push(t):ar(e,n,[t])}));var Eo=Kr((function(e,t,n){var r=-1,i="function"==typeof t,a=jo(e)?ae(e.length):[];return fr(e,(function(e){a[++r]=i?wt(t,e,n):Lr(e,t,n)})),a})),bo=Di((function(e,t,n){ar(e,n,t)}));function So(e,t){return(Ho(e)?xt:Pr)(e,ua(t,3))}var Mo=Di((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var To=Kr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&va(e,t[0],t[1])?t=[]:n>2&&va(t[0],t[1],t[2])&&(t=[t[0]]),Hr(e,yr(t,1),[])})),wo=lt||function(){return pt.Date.now()};function Oo(e,t,r){return t=r?n:t,t=e&&null==t?e.length:t,Ji(e,l,n,n,n,n,t)}function No(e,t){var i;if("function"!=typeof t)throw new Ce(r);return e=ps(e),function(){return--e>0&&(i=t.apply(this,arguments)),e<=1&&(t=n),i}}var Co=Kr((function(e,t,n){var r=1;if(n.length){var i=cn(n,sa(Co));r|=s}return Ji(e,r,t,n,i)})),Lo=Kr((function(e,t,n){var r=3;if(n.length){var i=cn(n,sa(Lo));r|=s}return Ji(t,r,e,n,i)}));function Do(e,t,i){var a,o,s,u,l,c,d=0,f=!1,h=!1,p=!0;if("function"!=typeof e)throw new Ce(r);function m(t){var r=a,i=o;return a=o=n,d=t,u=e.apply(i,r)}function _(e){var r=e-c;return c===n||r>=t||r<0||h&&e-d>=s}function y(){var e=wo();if(_(e))return g(e);l=La(y,function(e){var n=t-(e-c);return h?vn(n,s-(e-d)):n}(e))}function g(e){return l=n,p&&a?m(e):(a=o=n,u)}function v(){var e=wo(),r=_(e);if(a=arguments,o=this,c=e,r){if(l===n)return function(e){return d=e,l=La(y,t),f?m(e):u}(c);if(h)return bi(l),l=La(y,t),m(c)}return l===n&&(l=La(y,t)),u}return t=_s(t)||0,es(i)&&(f=!!i.leading,s=(h="maxWait"in i)?gn(_s(i.maxWait)||0,t):s,p="trailing"in i?!!i.trailing:p),v.cancel=function(){l!==n&&bi(l),d=0,a=c=o=l=n},v.flush=function(){return l===n?u:g(wo())},v}var $o=Kr((function(e,t){return cr(e,1,t)})),Io=Kr((function(e,t,n){return cr(e,_s(t)||0,n)}));function xo(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new Ce(r);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],a=n.cache;if(a.has(i))return a.get(i);var o=e.apply(this,r);return n.cache=a.set(i,o)||a,o};return n.cache=new(xo.Cache||Gn),n}function ko(e){if("function"!=typeof e)throw new Ce(r);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}xo.Cache=Gn;var zo=Ai((function(e,t){var n=(t=1==t.length&&Ho(t[0])?xt(t[0],Xt(ua())):xt(yr(t,1),Xt(ua()))).length;return Kr((function(r){for(var i=-1,a=vn(r.length,n);++i<a;)r[i]=t[i].call(this,r[i]);return wt(e,this,r)}))})),Ro=Kr((function(e,t){var r=cn(t,sa(Ro));return Ji(e,s,n,t,r)})),Zo=Kr((function(e,t){var r=cn(t,sa(Zo));return Ji(e,u,n,t,r)})),Po=na((function(e,t){return Ji(e,c,n,n,n,t)}));function Fo(e,t){return e===t||e!=e&&t!=t}var Uo=ji(wr),Bo=ji((function(e,t){return e>=t})),Vo=Dr(function(){return arguments}())?Dr:function(e){return ts(e)&&ke.call(e,"callee")&&!We.call(e,"callee")},Ho=ae.isArray,Yo=At?Xt(At):function(e){return ts(e)&&Tr(e)==$};function jo(e){return null!=e&&Qo(e.length)&&!Jo(e)}function Go(e){return ts(e)&&jo(e)}var Wo=gt||_u,qo=Et?Xt(Et):function(e){return ts(e)&&Tr(e)==v};function Ko(e){if(!ts(e))return!1;var t=Tr(e);return t==A||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!is(e)}function Jo(e){if(!es(e))return!1;var t=Tr(e);return t==E||t==b||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Xo(e){return"number"==typeof e&&e==ps(e)}function Qo(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=f}function es(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function ts(e){return null!=e&&"object"==typeof e}var ns=bt?Xt(bt):function(e){return ts(e)&&pa(e)==S};function rs(e){return"number"==typeof e||ts(e)&&Tr(e)==M}function is(e){if(!ts(e)||Tr(e)!=T)return!1;var t=je(e);if(null===t)return!0;var n=ke.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&xe.call(n)==Pe}var as=St?Xt(St):function(e){return ts(e)&&Tr(e)==O};var os=Mt?Xt(Mt):function(e){return ts(e)&&pa(e)==N};function ss(e){return"string"==typeof e||!Ho(e)&&ts(e)&&Tr(e)==C}function us(e){return"symbol"==typeof e||ts(e)&&Tr(e)==L}var ls=Tt?Xt(Tt):function(e){return ts(e)&&Qo(e.length)&&!!st[Tr(e)]};var cs=ji(Zr),ds=ji((function(e,t){return e<=t}));function fs(e){if(!e)return[];if(jo(e))return ss(e)?pn(e):Ci(e);if(Je&&e[Je])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Je]());var t=pa(e);return(t==S?un:t==N?dn:Fs)(e)}function hs(e){return e?(e=_s(e))===d||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ps(e){var t=hs(e),n=t%1;return t==t?n?t-n:t:0}function ms(e){return e?sr(ps(e),0,p):0}function _s(e){if("number"==typeof e)return e;if(us(e))return h;if(es(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=es(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Jt(e);var n=me.test(e);return n||ye.test(e)?dt(e.slice(2),n?2:8):pe.test(e)?h:+e}function ys(e){return Li(e,$s(e))}function gs(e){return null==e?"":li(e)}var vs=$i((function(e,t){if(Sa(t)||jo(t))Li(t,Ds(t),e);else for(var n in t)ke.call(t,n)&&tr(e,n,t[n])})),As=$i((function(e,t){Li(t,$s(t),e)})),Es=$i((function(e,t,n,r){Li(t,$s(t),e,r)})),bs=$i((function(e,t,n,r){Li(t,Ds(t),e,r)})),Ss=na(or);var Ms=Kr((function(e,t){e=we(e);var r=-1,i=t.length,a=i>2?t[2]:n;for(a&&va(t[0],t[1],a)&&(i=1);++r<i;)for(var o=t[r],s=$s(o),u=-1,l=s.length;++u<l;){var c=s[u],d=e[c];(d===n||Fo(d,$e[c])&&!ke.call(e,c))&&(e[c]=o[c])}return e})),Ts=Kr((function(e){return e.push(n,Qi),wt(xs,n,e)}));function ws(e,t,r){var i=null==e?n:Sr(e,t);return i===n?r:i}function Os(e,t){return null!=e&&ma(e,t,Nr)}var Ns=Ui((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=Ze.call(t)),e[t]=n}),eu(ru)),Cs=Ui((function(e,t,n){null!=t&&"function"!=typeof t.toString&&(t=Ze.call(t)),ke.call(e,t)?e[t].push(n):e[t]=[n]}),ua),Ls=Kr(Lr);function Ds(e){return jo(e)?Kn(e):zr(e)}function $s(e){return jo(e)?Kn(e,!0):Rr(e)}var Is=$i((function(e,t,n){Br(e,t,n)})),xs=$i((function(e,t,n,r){Br(e,t,n,r)})),ks=na((function(e,t){var n={};if(null==e)return n;var r=!1;t=xt(t,(function(t){return t=vi(t,e),r||(r=t.length>1),t})),Li(e,ia(e),n),r&&(n=ur(n,7,ea));for(var i=t.length;i--;)di(n,t[i]);return n}));var zs=na((function(e,t){return null==e?{}:function(e,t){return Yr(e,t,(function(t,n){return Os(e,n)}))}(e,t)}));function Rs(e,t){if(null==e)return{};var n=xt(ia(e),(function(e){return[e]}));return t=ua(t),Yr(e,n,(function(e,n){return t(e,n[0])}))}var Zs=Ki(Ds),Ps=Ki($s);function Fs(e){return null==e?[]:Qt(e,Ds(e))}var Us=zi((function(e,t,n){return t=t.toLowerCase(),e+(n?Bs(t):t)}));function Bs(e){return Ks(gs(e).toLowerCase())}function Vs(e){return(e=gs(e))&&e.replace(ve,rn).replace(Qe,"")}var Hs=zi((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Ys=zi((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),js=ki("toLowerCase");var Gs=zi((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var Ws=zi((function(e,t,n){return e+(n?" ":"")+Ks(t)}));var qs=zi((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Ks=ki("toUpperCase");function Js(e,t,r){return e=gs(e),(t=r?n:t)===n?function(e){return rt.test(e)}(e)?function(e){return e.match(tt)||[]}(e):function(e){return e.match(le)||[]}(e):e.match(t)||[]}var Xs=Kr((function(e,t){try{return wt(e,n,t)}catch(e){return Ko(e)?e:new Se(e)}})),Qs=na((function(e,t){return Nt(t,(function(t){t=za(t),ar(e,t,Co(e[t],e))})),e}));function eu(e){return function(){return e}}var tu=Pi(),nu=Pi(!0);function ru(e){return e}function iu(e){return kr("function"==typeof e?e:ur(e,1))}var au=Kr((function(e,t){return function(n){return Lr(n,e,t)}})),ou=Kr((function(e,t){return function(n){return Lr(e,n,t)}}));function su(e,t,n){var r=Ds(t),i=br(t,r);null!=n||es(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=br(t,Ds(t)));var a=!(es(n)&&"chain"in n&&!n.chain),o=Jo(e);return Nt(i,(function(n){var r=t[n];e[n]=r,o&&(e.prototype[n]=function(){var t=this.__chain__;if(a||t){var n=e(this.__wrapped__);return(n.__actions__=Ci(this.__actions__)).push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,kt([this.value()],arguments))})})),e}function uu(){}var lu=Vi(xt),cu=Vi(Lt),du=Vi(Zt);function fu(e){return Aa(e)?jt(za(e)):function(e){return function(t){return Sr(t,e)}}(e)}var hu=Yi(),pu=Yi(!0);function mu(){return[]}function _u(){return!1}var yu=Bi((function(e,t){return e+t}),0),gu=Wi("ceil"),vu=Bi((function(e,t){return e/t}),1),Au=Wi("floor");var Eu,bu=Bi((function(e,t){return e*t}),1),Su=Wi("round"),Mu=Bi((function(e,t){return e-t}),0);return Fn.after=function(e,t){if("function"!=typeof t)throw new Ce(r);return e=ps(e),function(){if(--e<1)return t.apply(this,arguments)}},Fn.ary=Oo,Fn.assign=vs,Fn.assignIn=As,Fn.assignInWith=Es,Fn.assignWith=bs,Fn.at=Ss,Fn.before=No,Fn.bind=Co,Fn.bindAll=Qs,Fn.bindKey=Lo,Fn.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Ho(e)?e:[e]},Fn.chain=fo,Fn.chunk=function(e,t,r){t=(r?va(e,t,r):t===n)?1:gn(ps(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var a=0,o=0,s=ae(ht(i/t));a<i;)s[o++]=ri(e,a,a+=t);return s},Fn.compact=function(e){for(var t=-1,n=null==e?0:e.length,r=0,i=[];++t<n;){var a=e[t];a&&(i[r++]=a)}return i},Fn.concat=function(){var e=arguments.length;if(!e)return[];for(var t=ae(e-1),n=arguments[0],r=e;r--;)t[r-1]=arguments[r];return kt(Ho(n)?Ci(n):[n],yr(t,1))},Fn.cond=function(e){var t=null==e?0:e.length,n=ua();return e=t?xt(e,(function(e){if("function"!=typeof e[1])throw new Ce(r);return[n(e[0]),e[1]]})):[],Kr((function(n){for(var r=-1;++r<t;){var i=e[r];if(wt(i[0],this,n))return wt(i[1],this,n)}}))},Fn.conforms=function(e){return function(e){var t=Ds(e);return function(n){return lr(n,e,t)}}(ur(e,1))},Fn.constant=eu,Fn.countBy=mo,Fn.create=function(e,t){var n=Un(e);return null==t?n:ir(n,t)},Fn.curry=function e(t,r,i){var a=Ji(t,8,n,n,n,n,n,r=i?n:r);return a.placeholder=e.placeholder,a},Fn.curryRight=function e(t,r,i){var a=Ji(t,o,n,n,n,n,n,r=i?n:r);return a.placeholder=e.placeholder,a},Fn.debounce=Do,Fn.defaults=Ms,Fn.defaultsDeep=Ts,Fn.defer=$o,Fn.delay=Io,Fn.difference=Pa,Fn.differenceBy=Fa,Fn.differenceWith=Ua,Fn.drop=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,(t=r||t===n?1:ps(t))<0?0:t,i):[]},Fn.dropRight=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,0,(t=i-(t=r||t===n?1:ps(t)))<0?0:t):[]},Fn.dropRightWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!0,!0):[]},Fn.dropWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!0):[]},Fn.fill=function(e,t,r,i){var a=null==e?0:e.length;return a?(r&&"number"!=typeof r&&va(e,t,r)&&(r=0,i=a),function(e,t,r,i){var a=e.length;for((r=ps(r))<0&&(r=-r>a?0:a+r),(i=i===n||i>a?a:ps(i))<0&&(i+=a),i=r>i?0:ms(i);r<i;)e[r++]=t;return e}(e,t,r,i)):[]},Fn.filter=function(e,t){return(Ho(e)?Dt:_r)(e,ua(t,3))},Fn.flatMap=function(e,t){return yr(So(e,t),1)},Fn.flatMapDeep=function(e,t){return yr(So(e,t),d)},Fn.flatMapDepth=function(e,t,r){return r=r===n?1:ps(r),yr(So(e,t),r)},Fn.flatten=Ha,Fn.flattenDeep=function(e){return(null==e?0:e.length)?yr(e,d):[]},Fn.flattenDepth=function(e,t){return(null==e?0:e.length)?yr(e,t=t===n?1:ps(t)):[]},Fn.flip=function(e){return Ji(e,512)},Fn.flow=tu,Fn.flowRight=nu,Fn.fromPairs=function(e){for(var t=-1,n=null==e?0:e.length,r={};++t<n;){var i=e[t];r[i[0]]=i[1]}return r},Fn.functions=function(e){return null==e?[]:br(e,Ds(e))},Fn.functionsIn=function(e){return null==e?[]:br(e,$s(e))},Fn.groupBy=Ao,Fn.initial=function(e){return(null==e?0:e.length)?ri(e,0,-1):[]},Fn.intersection=ja,Fn.intersectionBy=Ga,Fn.intersectionWith=Wa,Fn.invert=Ns,Fn.invertBy=Cs,Fn.invokeMap=Eo,Fn.iteratee=iu,Fn.keyBy=bo,Fn.keys=Ds,Fn.keysIn=$s,Fn.map=So,Fn.mapKeys=function(e,t){var n={};return t=ua(t,3),Ar(e,(function(e,r,i){ar(n,t(e,r,i),e)})),n},Fn.mapValues=function(e,t){var n={};return t=ua(t,3),Ar(e,(function(e,r,i){ar(n,r,t(e,r,i))})),n},Fn.matches=function(e){return Fr(ur(e,1))},Fn.matchesProperty=function(e,t){return Ur(e,ur(t,1))},Fn.memoize=xo,Fn.merge=Is,Fn.mergeWith=xs,Fn.method=au,Fn.methodOf=ou,Fn.mixin=su,Fn.negate=ko,Fn.nthArg=function(e){return e=ps(e),Kr((function(t){return Vr(t,e)}))},Fn.omit=ks,Fn.omitBy=function(e,t){return Rs(e,ko(ua(t)))},Fn.once=function(e){return No(2,e)},Fn.orderBy=function(e,t,r,i){return null==e?[]:(Ho(t)||(t=null==t?[]:[t]),Ho(r=i?n:r)||(r=null==r?[]:[r]),Hr(e,t,r))},Fn.over=lu,Fn.overArgs=zo,Fn.overEvery=cu,Fn.overSome=du,Fn.partial=Ro,Fn.partialRight=Zo,Fn.partition=Mo,Fn.pick=zs,Fn.pickBy=Rs,Fn.property=fu,Fn.propertyOf=function(e){return function(t){return null==e?n:Sr(e,t)}},Fn.pull=Ka,Fn.pullAll=Ja,Fn.pullAllBy=function(e,t,n){return e&&e.length&&t&&t.length?jr(e,t,ua(n,2)):e},Fn.pullAllWith=function(e,t,r){return e&&e.length&&t&&t.length?jr(e,t,n,r):e},Fn.pullAt=Xa,Fn.range=hu,Fn.rangeRight=pu,Fn.rearg=Po,Fn.reject=function(e,t){return(Ho(e)?Dt:_r)(e,ko(ua(t,3)))},Fn.remove=function(e,t){var n=[];if(!e||!e.length)return n;var r=-1,i=[],a=e.length;for(t=ua(t,3);++r<a;){var o=e[r];t(o,r,e)&&(n.push(o),i.push(r))}return Gr(e,i),n},Fn.rest=function(e,t){if("function"!=typeof e)throw new Ce(r);return Kr(e,t=t===n?t:ps(t))},Fn.reverse=Qa,Fn.sampleSize=function(e,t,r){return t=(r?va(e,t,r):t===n)?1:ps(t),(Ho(e)?Xn:Xr)(e,t)},Fn.set=function(e,t,n){return null==e?e:Qr(e,t,n)},Fn.setWith=function(e,t,r,i){return i="function"==typeof i?i:n,null==e?e:Qr(e,t,r,i)},Fn.shuffle=function(e){return(Ho(e)?Qn:ni)(e)},Fn.slice=function(e,t,r){var i=null==e?0:e.length;return i?(r&&"number"!=typeof r&&va(e,t,r)?(t=0,r=i):(t=null==t?0:ps(t),r=r===n?i:ps(r)),ri(e,t,r)):[]},Fn.sortBy=To,Fn.sortedUniq=function(e){return e&&e.length?si(e):[]},Fn.sortedUniqBy=function(e,t){return e&&e.length?si(e,ua(t,2)):[]},Fn.split=function(e,t,r){return r&&"number"!=typeof r&&va(e,t,r)&&(t=r=n),(r=r===n?p:r>>>0)?(e=gs(e))&&("string"==typeof t||null!=t&&!as(t))&&!(t=li(t))&&sn(e)?Ei(pn(e),0,r):e.split(t,r):[]},Fn.spread=function(e,t){if("function"!=typeof e)throw new Ce(r);return t=null==t?0:gn(ps(t),0),Kr((function(n){var r=n[t],i=Ei(n,0,t);return r&&kt(i,r),wt(e,this,i)}))},Fn.tail=function(e){var t=null==e?0:e.length;return t?ri(e,1,t):[]},Fn.take=function(e,t,r){return e&&e.length?ri(e,0,(t=r||t===n?1:ps(t))<0?0:t):[]},Fn.takeRight=function(e,t,r){var i=null==e?0:e.length;return i?ri(e,(t=i-(t=r||t===n?1:ps(t)))<0?0:t,i):[]},Fn.takeRightWhile=function(e,t){return e&&e.length?hi(e,ua(t,3),!1,!0):[]},Fn.takeWhile=function(e,t){return e&&e.length?hi(e,ua(t,3)):[]},Fn.tap=function(e,t){return t(e),e},Fn.throttle=function(e,t,n){var i=!0,a=!0;if("function"!=typeof e)throw new Ce(r);return es(n)&&(i="leading"in n?!!n.leading:i,a="trailing"in n?!!n.trailing:a),Do(e,t,{leading:i,maxWait:t,trailing:a})},Fn.thru=ho,Fn.toArray=fs,Fn.toPairs=Zs,Fn.toPairsIn=Ps,Fn.toPath=function(e){return Ho(e)?xt(e,za):us(e)?[e]:Ci(ka(gs(e)))},Fn.toPlainObject=ys,Fn.transform=function(e,t,n){var r=Ho(e),i=r||Wo(e)||ls(e);if(t=ua(t,4),null==n){var a=e&&e.constructor;n=i?r?new a:[]:es(e)&&Jo(a)?Un(je(e)):{}}return(i?Nt:Ar)(e,(function(e,r,i){return t(n,e,r,i)})),n},Fn.unary=function(e){return Oo(e,1)},Fn.union=eo,Fn.unionBy=to,Fn.unionWith=no,Fn.uniq=function(e){return e&&e.length?ci(e):[]},Fn.uniqBy=function(e,t){return e&&e.length?ci(e,ua(t,2)):[]},Fn.uniqWith=function(e,t){return t="function"==typeof t?t:n,e&&e.length?ci(e,n,t):[]},Fn.unset=function(e,t){return null==e||di(e,t)},Fn.unzip=ro,Fn.unzipWith=io,Fn.update=function(e,t,n){return null==e?e:fi(e,t,gi(n))},Fn.updateWith=function(e,t,r,i){return i="function"==typeof i?i:n,null==e?e:fi(e,t,gi(r),i)},Fn.values=Fs,Fn.valuesIn=function(e){return null==e?[]:Qt(e,$s(e))},Fn.without=ao,Fn.words=Js,Fn.wrap=function(e,t){return Ro(gi(t),e)},Fn.xor=oo,Fn.xorBy=so,Fn.xorWith=uo,Fn.zip=lo,Fn.zipObject=function(e,t){return _i(e||[],t||[],tr)},Fn.zipObjectDeep=function(e,t){return _i(e||[],t||[],Qr)},Fn.zipWith=co,Fn.entries=Zs,Fn.entriesIn=Ps,Fn.extend=As,Fn.extendWith=Es,su(Fn,Fn),Fn.add=yu,Fn.attempt=Xs,Fn.camelCase=Us,Fn.capitalize=Bs,Fn.ceil=gu,Fn.clamp=function(e,t,r){return r===n&&(r=t,t=n),r!==n&&(r=(r=_s(r))==r?r:0),t!==n&&(t=(t=_s(t))==t?t:0),sr(_s(e),t,r)},Fn.clone=function(e){return ur(e,4)},Fn.cloneDeep=function(e){return ur(e,5)},Fn.cloneDeepWith=function(e,t){return ur(e,5,t="function"==typeof t?t:n)},Fn.cloneWith=function(e,t){return ur(e,4,t="function"==typeof t?t:n)},Fn.conformsTo=function(e,t){return null==t||lr(e,t,Ds(t))},Fn.deburr=Vs,Fn.defaultTo=function(e,t){return null==e||e!=e?t:e},Fn.divide=vu,Fn.endsWith=function(e,t,r){e=gs(e),t=li(t);var i=e.length,a=r=r===n?i:sr(ps(r),0,i);return(r-=t.length)>=0&&e.slice(r,a)==t},Fn.eq=Fo,Fn.escape=function(e){return(e=gs(e))&&q.test(e)?e.replace(G,an):e},Fn.escapeRegExp=function(e){return(e=gs(e))&&re.test(e)?e.replace(ne,"\\$&"):e},Fn.every=function(e,t,r){var i=Ho(e)?Lt:pr;return r&&va(e,t,r)&&(t=n),i(e,ua(t,3))},Fn.find=_o,Fn.findIndex=Ba,Fn.findKey=function(e,t){return Ft(e,ua(t,3),Ar)},Fn.findLast=yo,Fn.findLastIndex=Va,Fn.findLastKey=function(e,t){return Ft(e,ua(t,3),Er)},Fn.floor=Au,Fn.forEach=go,Fn.forEachRight=vo,Fn.forIn=function(e,t){return null==e?e:gr(e,ua(t,3),$s)},Fn.forInRight=function(e,t){return null==e?e:vr(e,ua(t,3),$s)},Fn.forOwn=function(e,t){return e&&Ar(e,ua(t,3))},Fn.forOwnRight=function(e,t){return e&&Er(e,ua(t,3))},Fn.get=ws,Fn.gt=Uo,Fn.gte=Bo,Fn.has=function(e,t){return null!=e&&ma(e,t,Or)},Fn.hasIn=Os,Fn.head=Ya,Fn.identity=ru,Fn.includes=function(e,t,n,r){e=jo(e)?e:Fs(e),n=n&&!r?ps(n):0;var i=e.length;return n<0&&(n=gn(i+n,0)),ss(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&Bt(e,t,n)>-1},Fn.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:ps(n);return i<0&&(i=gn(r+i,0)),Bt(e,t,i)},Fn.inRange=function(e,t,r){return t=hs(t),r===n?(r=t,t=0):r=hs(r),function(e,t,n){return e>=vn(t,n)&&e<gn(t,n)}(e=_s(e),t,r)},Fn.invoke=Ls,Fn.isArguments=Vo,Fn.isArray=Ho,Fn.isArrayBuffer=Yo,Fn.isArrayLike=jo,Fn.isArrayLikeObject=Go,Fn.isBoolean=function(e){return!0===e||!1===e||ts(e)&&Tr(e)==g},Fn.isBuffer=Wo,Fn.isDate=qo,Fn.isElement=function(e){return ts(e)&&1===e.nodeType&&!is(e)},Fn.isEmpty=function(e){if(null==e)return!0;if(jo(e)&&(Ho(e)||"string"==typeof e||"function"==typeof e.splice||Wo(e)||ls(e)||Vo(e)))return!e.length;var t=pa(e);if(t==S||t==N)return!e.size;if(Sa(e))return!zr(e).length;for(var n in e)if(ke.call(e,n))return!1;return!0},Fn.isEqual=function(e,t){return $r(e,t)},Fn.isEqualWith=function(e,t,r){var i=(r="function"==typeof r?r:n)?r(e,t):n;return i===n?$r(e,t,n,r):!!i},Fn.isError=Ko,Fn.isFinite=function(e){return"number"==typeof e&&vt(e)},Fn.isFunction=Jo,Fn.isInteger=Xo,Fn.isLength=Qo,Fn.isMap=ns,Fn.isMatch=function(e,t){return e===t||Ir(e,t,ca(t))},Fn.isMatchWith=function(e,t,r){return r="function"==typeof r?r:n,Ir(e,t,ca(t),r)},Fn.isNaN=function(e){return rs(e)&&e!=+e},Fn.isNative=function(e){if(ba(e))throw new Se("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return xr(e)},Fn.isNil=function(e){return null==e},Fn.isNull=function(e){return null===e},Fn.isNumber=rs,Fn.isObject=es,Fn.isObjectLike=ts,Fn.isPlainObject=is,Fn.isRegExp=as,Fn.isSafeInteger=function(e){return Xo(e)&&e>=-9007199254740991&&e<=f},Fn.isSet=os,Fn.isString=ss,Fn.isSymbol=us,Fn.isTypedArray=ls,Fn.isUndefined=function(e){return e===n},Fn.isWeakMap=function(e){return ts(e)&&pa(e)==D},Fn.isWeakSet=function(e){return ts(e)&&"[object WeakSet]"==Tr(e)},Fn.join=function(e,t){return null==e?"":Pt.call(e,t)},Fn.kebabCase=Hs,Fn.last=qa,Fn.lastIndexOf=function(e,t,r){var i=null==e?0:e.length;if(!i)return-1;var a=i;return r!==n&&(a=(a=ps(r))<0?gn(i+a,0):vn(a,i-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,a):Ut(e,Ht,a,!0)},Fn.lowerCase=Ys,Fn.lowerFirst=js,Fn.lt=cs,Fn.lte=ds,Fn.max=function(e){return e&&e.length?mr(e,ru,wr):n},Fn.maxBy=function(e,t){return e&&e.length?mr(e,ua(t,2),wr):n},Fn.mean=function(e){return Yt(e,ru)},Fn.meanBy=function(e,t){return Yt(e,ua(t,2))},Fn.min=function(e){return e&&e.length?mr(e,ru,Zr):n},Fn.minBy=function(e,t){return e&&e.length?mr(e,ua(t,2),Zr):n},Fn.stubArray=mu,Fn.stubFalse=_u,Fn.stubObject=function(){return{}},Fn.stubString=function(){return""},Fn.stubTrue=function(){return!0},Fn.multiply=bu,Fn.nth=function(e,t){return e&&e.length?Vr(e,ps(t)):n},Fn.noConflict=function(){return pt._===this&&(pt._=Fe),this},Fn.noop=uu,Fn.now=wo,Fn.pad=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Hi(mt(i),n)+e+Hi(ht(i),n)},Fn.padEnd=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;return t&&r<t?e+Hi(t-r,n):e},Fn.padStart=function(e,t,n){e=gs(e);var r=(t=ps(t))?hn(e):0;return t&&r<t?Hi(t-r,n)+e:e},Fn.parseInt=function(e,t,n){return n||null==t?t=0:t&&(t=+t),En(gs(e).replace(ie,""),t||0)},Fn.random=function(e,t,r){if(r&&"boolean"!=typeof r&&va(e,t,r)&&(t=r=n),r===n&&("boolean"==typeof t?(r=t,t=n):"boolean"==typeof e&&(r=e,e=n)),e===n&&t===n?(e=0,t=1):(e=hs(e),t===n?(t=e,e=0):t=hs(t)),e>t){var i=e;e=t,t=i}if(r||e%1||t%1){var a=bn();return vn(e+a*(t-e+ct("1e-"+((a+"").length-1))),t)}return Wr(e,t)},Fn.reduce=function(e,t,n){var r=Ho(e)?zt:Wt,i=arguments.length<3;return r(e,ua(t,4),n,i,fr)},Fn.reduceRight=function(e,t,n){var r=Ho(e)?Rt:Wt,i=arguments.length<3;return r(e,ua(t,4),n,i,hr)},Fn.repeat=function(e,t,r){return t=(r?va(e,t,r):t===n)?1:ps(t),qr(gs(e),t)},Fn.replace=function(){var e=arguments,t=gs(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Fn.result=function(e,t,r){var i=-1,a=(t=vi(t,e)).length;for(a||(a=1,e=n);++i<a;){var o=null==e?n:e[za(t[i])];o===n&&(i=a,o=r),e=Jo(o)?o.call(e):o}return e},Fn.round=Su,Fn.runInContext=e,Fn.sample=function(e){return(Ho(e)?Jn:Jr)(e)},Fn.size=function(e){if(null==e)return 0;if(jo(e))return ss(e)?hn(e):e.length;var t=pa(e);return t==S||t==N?e.size:zr(e).length},Fn.snakeCase=Gs,Fn.some=function(e,t,r){var i=Ho(e)?Zt:ii;return r&&va(e,t,r)&&(t=n),i(e,ua(t,3))},Fn.sortedIndex=function(e,t){return ai(e,t)},Fn.sortedIndexBy=function(e,t,n){return oi(e,t,ua(n,2))},Fn.sortedIndexOf=function(e,t){var n=null==e?0:e.length;if(n){var r=ai(e,t);if(r<n&&Fo(e[r],t))return r}return-1},Fn.sortedLastIndex=function(e,t){return ai(e,t,!0)},Fn.sortedLastIndexBy=function(e,t,n){return oi(e,t,ua(n,2),!0)},Fn.sortedLastIndexOf=function(e,t){if(null==e?0:e.length){var n=ai(e,t,!0)-1;if(Fo(e[n],t))return n}return-1},Fn.startCase=Ws,Fn.startsWith=function(e,t,n){return e=gs(e),n=null==n?0:sr(ps(n),0,e.length),t=li(t),e.slice(n,n+t.length)==t},Fn.subtract=Mu,Fn.sum=function(e){return e&&e.length?qt(e,ru):0},Fn.sumBy=function(e,t){return e&&e.length?qt(e,ua(t,2)):0},Fn.template=function(e,t,r){var i=Fn.templateSettings;r&&va(e,t,r)&&(t=n),e=gs(e),t=Es({},t,i,Xi);var a,o,s=Es({},t.imports,i.imports,Xi),u=Ds(s),l=Qt(s,u),c=0,d=t.interpolate||Ae,f="__p += '",h=Oe((t.escape||Ae).source+"|"+d.source+"|"+(d===X?fe:Ae).source+"|"+(t.evaluate||Ae).source+"|$","g"),p="//# sourceURL="+(ke.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++ot+"]")+"\n";e.replace(h,(function(t,n,r,i,s,u){return r||(r=i),f+=e.slice(c,u).replace(Ee,on),n&&(a=!0,f+="' +\n__e("+n+") +\n'"),s&&(o=!0,f+="';\n"+s+";\n__p += '"),r&&(f+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"),c=u+t.length,t})),f+="';\n";var m=ke.call(t,"variable")&&t.variable;if(m){if(ce.test(m))throw new Se("Invalid `variable` option passed into `_.template`")}else f="with (obj) {\n"+f+"\n}\n";f=(o?f.replace(V,""):f).replace(H,"$1").replace(Y,"$1;"),f="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(a?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+f+"return __p\n}";var _=Xs((function(){return Me(u,p+"return "+f).apply(n,l)}));if(_.source=f,Ko(_))throw _;return _},Fn.times=function(e,t){if((e=ps(e))<1||e>f)return[];var n=p,r=vn(e,p);t=ua(t),e-=p;for(var i=Kt(r,t);++n<e;)t(n);return i},Fn.toFinite=hs,Fn.toInteger=ps,Fn.toLength=ms,Fn.toLower=function(e){return gs(e).toLowerCase()},Fn.toNumber=_s,Fn.toSafeInteger=function(e){return e?sr(ps(e),-9007199254740991,f):0===e?e:0},Fn.toString=gs,Fn.toUpper=function(e){return gs(e).toUpperCase()},Fn.trim=function(e,t,r){if((e=gs(e))&&(r||t===n))return Jt(e);if(!e||!(t=li(t)))return e;var i=pn(e),a=pn(t);return Ei(i,tn(i,a),nn(i,a)+1).join("")},Fn.trimEnd=function(e,t,r){if((e=gs(e))&&(r||t===n))return e.slice(0,mn(e)+1);if(!e||!(t=li(t)))return e;var i=pn(e);return Ei(i,0,nn(i,pn(t))+1).join("")},Fn.trimStart=function(e,t,r){if((e=gs(e))&&(r||t===n))return e.replace(ie,"");if(!e||!(t=li(t)))return e;var i=pn(e);return Ei(i,tn(i,pn(t))).join("")},Fn.truncate=function(e,t){var r=30,i="...";if(es(t)){var a="separator"in t?t.separator:a;r="length"in t?ps(t.length):r,i="omission"in t?li(t.omission):i}var o=(e=gs(e)).length;if(sn(e)){var s=pn(e);o=s.length}if(r>=o)return e;var u=r-hn(i);if(u<1)return i;var l=s?Ei(s,0,u).join(""):e.slice(0,u);if(a===n)return l+i;if(s&&(u+=l.length-u),as(a)){if(e.slice(u).search(a)){var c,d=l;for(a.global||(a=Oe(a.source,gs(he.exec(a))+"g")),a.lastIndex=0;c=a.exec(d);)var f=c.index;l=l.slice(0,f===n?u:f)}}else if(e.indexOf(li(a),u)!=u){var h=l.lastIndexOf(a);h>-1&&(l=l.slice(0,h))}return l+i},Fn.unescape=function(e){return(e=gs(e))&&W.test(e)?e.replace(j,_n):e},Fn.uniqueId=function(e){var t=++ze;return gs(e)+t},Fn.upperCase=qs,Fn.upperFirst=Ks,Fn.each=go,Fn.eachRight=vo,Fn.first=Ya,su(Fn,(Eu={},Ar(Fn,(function(e,t){ke.call(Fn.prototype,t)||(Eu[t]=e)})),Eu),{chain:!1}),Fn.VERSION="4.17.21",Nt(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Fn[e].placeholder=Fn})),Nt(["drop","take"],(function(e,t){Hn.prototype[e]=function(r){r=r===n?1:gn(ps(r),0);var i=this.__filtered__&&!t?new Hn(this):this.clone();return i.__filtered__?i.__takeCount__=vn(r,i.__takeCount__):i.__views__.push({size:vn(r,p),type:e+(i.__dir__<0?"Right":"")}),i},Hn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),Nt(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Hn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:ua(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),Nt(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Hn.prototype[e]=function(){return this[n](1).value()[0]}})),Nt(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Hn.prototype[e]=function(){return this.__filtered__?new Hn(this):this[n](1)}})),Hn.prototype.compact=function(){return this.filter(ru)},Hn.prototype.find=function(e){return this.filter(e).head()},Hn.prototype.findLast=function(e){return this.reverse().find(e)},Hn.prototype.invokeMap=Kr((function(e,t){return"function"==typeof e?new Hn(this):this.map((function(n){return Lr(n,e,t)}))})),Hn.prototype.reject=function(e){return this.filter(ko(ua(e)))},Hn.prototype.slice=function(e,t){e=ps(e);var r=this;return r.__filtered__&&(e>0||t<0)?new Hn(r):(e<0?r=r.takeRight(-e):e&&(r=r.drop(e)),t!==n&&(r=(t=ps(t))<0?r.dropRight(-t):r.take(t-e)),r)},Hn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Hn.prototype.toArray=function(){return this.take(p)},Ar(Hn.prototype,(function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),i=/^(?:head|last)$/.test(t),a=Fn[i?"take"+("last"==t?"Right":""):t],o=i||/^find/.test(t);a&&(Fn.prototype[t]=function(){var t=this.__wrapped__,s=i?[1]:arguments,u=t instanceof Hn,l=s[0],c=u||Ho(t),d=function(e){var t=a.apply(Fn,kt([e],s));return i&&f?t[0]:t};c&&r&&"function"==typeof l&&1!=l.length&&(u=c=!1);var f=this.__chain__,h=!!this.__actions__.length,p=o&&!f,m=u&&!h;if(!o&&c){t=m?t:new Hn(this);var _=e.apply(t,s);return _.__actions__.push({func:ho,args:[d],thisArg:n}),new Vn(_,f)}return p&&m?e.apply(this,s):(_=this.thru(d),p?i?_.value()[0]:_.value():_)})})),Nt(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Le[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);Fn.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Ho(i)?i:[],e)}return this[n]((function(n){return t.apply(Ho(n)?n:[],e)}))}})),Ar(Hn.prototype,(function(e,t){var n=Fn[t];if(n){var r=n.name+"";ke.call(Dn,r)||(Dn[r]=[]),Dn[r].push({name:t,func:n})}})),Dn[Fi(n,2).name]=[{name:"wrapper",func:n}],Hn.prototype.clone=function(){var e=new Hn(this.__wrapped__);return e.__actions__=Ci(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Ci(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Ci(this.__views__),e},Hn.prototype.reverse=function(){if(this.__filtered__){var e=new Hn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Hn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Ho(e),r=t<0,i=n?e.length:0,a=function(e,t,n){var r=-1,i=n.length;for(;++r<i;){var a=n[r],o=a.size;switch(a.type){case"drop":e+=o;break;case"dropRight":t-=o;break;case"take":t=vn(t,e+o);break;case"takeRight":e=gn(e,t-o)}}return{start:e,end:t}}(0,i,this.__views__),o=a.start,s=a.end,u=s-o,l=r?s:o-1,c=this.__iteratees__,d=c.length,f=0,h=vn(u,this.__takeCount__);if(!n||!r&&i==u&&h==u)return pi(e,this.__actions__);var p=[];e:for(;u--&&f<h;){for(var m=-1,_=e[l+=t];++m<d;){var y=c[m],g=y.iteratee,v=y.type,A=g(_);if(2==v)_=A;else if(!A){if(1==v)continue e;break e}}p[f++]=_}return p},Fn.prototype.at=po,Fn.prototype.chain=function(){return fo(this)},Fn.prototype.commit=function(){return new Vn(this.value(),this.__chain__)},Fn.prototype.next=function(){this.__values__===n&&(this.__values__=fs(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?n:this.__values__[this.__index__++]}},Fn.prototype.plant=function(e){for(var t,r=this;r instanceof Bn;){var i=Za(r);i.__index__=0,i.__values__=n,t?a.__wrapped__=i:t=i;var a=i;r=r.__wrapped__}return a.__wrapped__=e,t},Fn.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Hn){var t=e;return this.__actions__.length&&(t=new Hn(this)),(t=t.reverse()).__actions__.push({func:ho,args:[Qa],thisArg:n}),new Vn(t,this.__chain__)}return this.thru(Qa)},Fn.prototype.toJSON=Fn.prototype.valueOf=Fn.prototype.value=function(){return pi(this.__wrapped__,this.__actions__)},Fn.prototype.first=Fn.prototype.head,Je&&(Fn.prototype[Je]=function(){return this}),Fn}();_t?((_t.exports=yn)._=yn,mt._=yn):pt._=yn}).call(at)}(fA,fA.exports);var hA=fA.exports;var pA=Object.freeze({__proto__:null,Filter:t=>{const{resetField:n,getValues:r}=Q(),{id:i,schema:{children:a,label:o,toggleFilterButtonLabel:s,clearButtonDisabled:u}}=t;return e(b,{"data-testid":Ja.generateId(i,"filter"),toggleFilterButtonLabel:s,headerTitle:o,clearButtonDisabled:u,onClear:()=>{const e=(()=>{const e=[],t=r();for(const n in t)hA.isEmpty(Ka.getNestedValueByKey(a,n))||e.push(n);return e})();(e=>{e.forEach((e=>n(e)))})(e)},children:e(MS,{children:a})})},FilterItem:t=>{const{id:n,schema:{children:r,label:i,collapsible:a=!0,showDivider:o=!0,showMobileDivider:s=!0}}=t;return e(b.Item,{"data-testid":Ja.generateId(n,"filter-item"),title:i,collapsible:a,showDivider:o,showMobileDivider:s,children:e(MS,{children:r})})},FilterCheckbox:t=>{const{schema:{label:n,options:r,...i},id:a,value:o,onChange:s}=t,{setValue:l}=Q(),[c,d]=u();dr((()=>{const e=o?.filter((e=>r.find((t=>t.value===e)))),t=r.filter((e=>o?.find((t=>e.value===t))));d(t),l(a,e)}),[r,o]);return e(b.Checkbox,{id:a,...i,"data-testid":Ja.generateId(a,"filter-checkbox"),title:n,selectedOptions:c,options:r,onSelect:e=>{s({target:{value:e.map((e=>e.value))}})}})}});var mA=function(e,t,n,r){for(var i=e.length,a=n+(r?1:-1);r?a--:++a<i;)if(t(e[a],a,e))return a;return-1};var _A=function(e,t,n){for(var r=n-1,i=e.length;++r<i;)if(e[r]===t)return r;return-1},yA=mA,gA=function(e){return e!=e},vA=_A;var AA=function(e,t,n){return t==t?vA(e,t,n):yA(e,gA,n)},EA=AA;var bA=function(e,t){return!!(null==e?0:e.length)&&EA(e,t,0)>-1};var SA=function(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1},MA=el,TA=bA,wA=SA,OA=xs,NA=Vn,CA=nl;var LA=function(e,t,n,r){var i=-1,a=TA,o=!0,s=e.length,u=[],l=t.length;if(!s)return u;n&&(t=OA(t,NA(n))),r?(a=wA,o=!1):t.length>=200&&(a=CA,o=!1,t=new MA(t));e:for(;++i<s;){var c=e[i],d=null==n?c:n(c);if(c=r||0!==c?c:0,o&&d==d){for(var f=l;f--;)if(t[f]===d)continue e;u.push(c)}else a(t,d,r)||u.push(c)}return u};var DA=function(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)},$A=Math.max;var IA=function(e,t,n){return t=$A(void 0===t?e.length-1:t,0),function(){for(var r=arguments,i=-1,a=$A(r.length-t,0),o=Array(a);++i<a;)o[i]=r[t+i];i=-1;for(var s=Array(t+1);++i<t;)s[i]=r[i];return s[t]=n(o),DA(e,this,s)}};var xA=function(e){return function(){return e}},kA=_u,zA=kA?function(e,t){return kA(e,"toString",{configurable:!0,enumerable:!1,value:xA(t),writable:!0})}:wc,RA=zA,ZA=Date.now;var PA=function(e){var t=0,n=0;return function(){var r=ZA(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}(RA),FA=wc,UA=IA,BA=PA;var VA=kn,HA=bn;var YA=LA,jA=function(e){return HA(e)&&VA(e)},GA=function(e,t){return BA(UA(e,t,FA),e+"")}((function(e,t){return jA(e)?YA(e,t):[]})),WA=GA;const qA=v.label`
|
|
235
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
236
|
-
`,KA=v(T)`
|
|
237
|
-
margin-right: 5px;
|
|
238
|
-
`,JA=v.div`
|
|
239
|
-
display: flex;
|
|
240
|
-
align-items: center;
|
|
241
|
-
:not(:last-of-type) {
|
|
242
|
-
margin-bottom: 1rem;
|
|
243
|
-
}
|
|
244
|
-
`,XA=v.div`
|
|
245
|
-
display: flex;
|
|
246
|
-
flex-wrap: wrap;
|
|
247
|
-
gap: 1rem;
|
|
248
|
-
`,QA=v.div`
|
|
249
|
-
display: flex;
|
|
250
|
-
flex-direction: ${({chipPosition:e})=>"bottom"!==e?"column":"column-reverse"};
|
|
251
|
-
`,eE=v.div`
|
|
252
|
-
margin: 0.5rem 0rem;
|
|
253
|
-
display: flex;
|
|
254
|
-
gap: 0.5rem;
|
|
255
|
-
`,tE=v(M.Textarea)`
|
|
256
|
-
width: auto;
|
|
257
|
-
|
|
258
|
-
${e=>e.resizable?A`
|
|
259
|
-
resize: vertical;
|
|
260
|
-
max-height: 37.5rem;
|
|
261
|
-
min-height: ${e.rows?`${e.rows+44+24}px`:"5rem"};
|
|
262
|
-
`:A`
|
|
263
|
-
resize: none;
|
|
264
|
-
`}
|
|
265
|
-
`,nE=n=>{const{schema:{chipTexts:r,chipPosition:i,rows:a=1,resizable:s,label:l,validation:c,...d},id:f,name:h,onChange:p,value:m,error:_,...y}=n,[g,v]=u(m||""),[A,E]=u(),{setFieldValidationConfig:b}=Ph();o((()=>{const e=c?.find((e=>"max"in e)),t=c?.find((e=>"length"in e));e?.max>0?E(e.max):t?.length>0&&E(t.length),b(f,Sd(),c)}),[c]),o((()=>{v(m)}),[m]);const S=e=>()=>{const t=g?.length||0;if(A&&t>=A)return;const n=((g||"")+(t?` ${e}`:e)).substring(0,A);p({target:{value:n}})};return e(M.CustomField,{label:l,id:f,children:t(QA,{chipPosition:i,children:[r?.length&&e(eE,{children:r.map(((t,n)=>e(Vh,{id:Ja.generateId(f,`chip-${fA.exports.kebabCase(t)}`,n),onClick:S(t),children:t},t)))}),e(tE,{...d,...y,id:f,"data-testid":Ja.generateId(f,"textarea"),name:h,maxLength:A,rows:a,resizable:s,onChange:e=>{p(e)},value:g,errorMessage:_?.message})]})})},rE=v.div`
|
|
266
|
-
display: flex;
|
|
267
|
-
gap: 0.5rem;
|
|
268
|
-
margin-bottom: 0.5rem;
|
|
269
|
-
`,iE=[["Afghanistan",["asia"],"af","93"],["Albania",["europe"],"al","355"],["Algeria",["africa","north-africa"],"dz","213"],["Andorra",["europe"],"ad","376"],["Angola",["africa"],"ao","244"],["Antigua and Barbuda",["america","carribean"],"ag","1268"],["Argentina",["america","south-america"],"ar","54","(..) ........"],["Armenia",["asia","ex-ussr"],"am","374",".. ......"],["Aruba",["america","carribean"],"aw","297"],["Australia",["oceania"],"au","61","(..) .... ...."],["Austria",["europe","eu-union"],"at","43"],["Azerbaijan",["asia","ex-ussr"],"az","994","(..) ... .. .."],["Bahamas",["america","carribean"],"bs","1242"],["Bahrain",["middle-east"],"bh","973"],["Bangladesh",["asia"],"bd","880"],["Barbados",["america","carribean"],"bb","1246"],["Belarus",["europe","ex-ussr"],"by","375","(..) ... .. .."],["Belgium",["europe","eu-union"],"be","32","... .. .. .."],["Belize",["america","central-america"],"bz","501"],["Benin",["africa"],"bj","229"],["Bhutan",["asia"],"bt","975"],["Bolivia",["america","south-america"],"bo","591"],["Bosnia and Herzegovina",["europe","ex-yugos"],"ba","387"],["Botswana",["africa"],"bw","267"],["Brazil",["america","south-america"],"br","55","(..) ........."],["British Indian Ocean Territory",["asia"],"io","246"],["Brunei",["asia"],"bn","673"],["Bulgaria",["europe","eu-union"],"bg","359"],["Burkina Faso",["africa"],"bf","226"],["Burundi",["africa"],"bi","257"],["Cambodia",["asia"],"kh","855"],["Cameroon",["africa"],"cm","237"],["Canada",["america","north-america"],"ca","1","(...) ... ...."],["Cape Verde",["africa"],"cv","238"],["Caribbean Netherlands",["america","carribean"],"bq","599",""],["Central African Republic",["africa"],"cf","236"],["Chad",["africa"],"td","235"],["Chile",["america","south-america"],"cl","56"],["China",["asia"],"cn","86",".. ........."],["Colombia",["america","south-america"],"co","57","... ... ...."],["Comoros",["africa"],"km","269"],["Congo",["africa"],"cd","243"],["Congo",["africa"],"cg","242"],["Costa Rica",["america","central-america"],"cr","506",".... ...."],["Côte d’Ivoire",["africa"],"ci","225",".. .. .. .."],["Croatia",["europe","eu-union","ex-yugos"],"hr","385"],["Cuba",["america","carribean"],"cu","53"],["Curaçao",["america","carribean"],"cw","599",""],["Cyprus",["europe","eu-union"],"cy","357",".. ......"],["Czech Republic",["europe","eu-union"],"cz","420","... ... ..."],["Denmark",["europe","eu-union","baltic"],"dk","45",".. .. .. .."],["Djibouti",["africa"],"dj","253"],["Dominica",["america","carribean"],"dm","1767"],["Dominican Republic",["america","carribean"],"do","1",""],["Ecuador",["america","south-america"],"ec","593"],["Egypt",["africa","north-africa"],"eg","20"],["El Salvador",["america","central-america"],"sv","503",".... ...."],["Equatorial Guinea",["africa"],"gq","240"],["Eritrea",["africa"],"er","291"],["Estonia",["europe","eu-union","ex-ussr","baltic"],"ee","372",".... ......"],["Ethiopia",["africa"],"et","251"],["Fiji",["oceania"],"fj","679"],["Finland",["europe","eu-union","baltic"],"fi","358",".. ... .. .."],["France",["europe","eu-union"],"fr","33",". .. .. .. .."],["French Guiana",["america","south-america"],"gf","594"],["French Polynesia",["oceania"],"pf","689"],["Gabon",["africa"],"ga","241"],["Gambia",["africa"],"gm","220"],["Georgia",["asia","ex-ussr"],"ge","995"],["Germany",["europe","eu-union","baltic"],"de","49",".... ........"],["Ghana",["africa"],"gh","233"],["Greece",["europe","eu-union"],"gr","30"],["Grenada",["america","carribean"],"gd","1473"],["Guadeloupe",["america","carribean"],"gp","590","",0],["Guam",["oceania"],"gu","1671"],["Guatemala",["america","central-america"],"gt","502",".... ...."],["Guinea",["africa"],"gn","224"],["Guinea-Bissau",["africa"],"gw","245"],["Guyana",["america","south-america"],"gy","592"],["Haiti",["america","carribean"],"ht","509",".... ...."],["Honduras",["america","central-america"],"hn","504"],["Hong Kong",["asia"],"hk","852",".... ...."],["Hungary",["europe","eu-union"],"hu","36"],["Iceland",["europe"],"is","354","... ...."],["India",["asia"],"in","91","..... ....."],["Indonesia",["asia"],"id","62"],["Iran",["middle-east"],"ir","98","... ... ...."],["Iraq",["middle-east"],"iq","964"],["Ireland",["europe","eu-union"],"ie","353",".. ......."],["Israel",["middle-east"],"il","972","... ... ...."],["Italy",["europe","eu-union"],"it","39","... ......."],["Jamaica",["america","carribean"],"jm","1876"],["Japan",["asia"],"jp","81",".. .... ...."],["Jordan",["middle-east"],"jo","962"],["Kazakhstan",["asia","ex-ussr"],"kz","7","... ... .. .."],["Kenya",["africa"],"ke","254"],["Kiribati",["oceania"],"ki","686"],["Kosovo",["europe","ex-yugos"],"xk","383"],["Kuwait",["middle-east"],"kw","965"],["Kyrgyzstan",["asia","ex-ussr"],"kg","996","... ... ..."],["Laos",["asia"],"la","856"],["Latvia",["europe","eu-union","ex-ussr","baltic"],"lv","371",".. ... ..."],["Lebanon",["middle-east"],"lb","961"],["Lesotho",["africa"],"ls","266"],["Liberia",["africa"],"lr","231"],["Libya",["africa","north-africa"],"ly","218"],["Liechtenstein",["europe"],"li","423"],["Lithuania",["europe","eu-union","ex-ussr","baltic"],"lt","370"],["Luxembourg",["europe","eu-union"],"lu","352"],["Macau",["asia"],"mo","853"],["Macedonia",["europe","ex-yugos"],"mk","389"],["Madagascar",["africa"],"mg","261"],["Malawi",["africa"],"mw","265"],["Malaysia",["asia"],"my","60",".. .... ...."],["Maldives",["asia"],"mv","960"],["Mali",["africa"],"ml","223"],["Malta",["europe","eu-union"],"mt","356"],["Marshall Islands",["oceania"],"mh","692"],["Martinique",["america","carribean"],"mq","596"],["Mauritania",["africa"],"mr","222"],["Mauritius",["africa"],"mu","230"],["Mexico",["america","central-america"],"mx","52","... ... ...."],["Micronesia",["oceania"],"fm","691"],["Moldova",["europe"],"md","373","(..) .. .. .."],["Monaco",["europe"],"mc","377"],["Mongolia",["asia"],"mn","976"],["Montenegro",["europe","ex-yugos"],"me","382"],["Morocco",["africa","north-africa"],"ma","212"],["Mozambique",["africa"],"mz","258"],["Myanmar",["asia"],"mm","95"],["Namibia",["africa"],"na","264"],["Nauru",["africa"],"nr","674"],["Nepal",["asia"],"np","977"],["Netherlands",["europe","eu-union"],"nl","31",".. ........"],["New Caledonia",["oceania"],"nc","687"],["New Zealand",["oceania"],"nz","64","... ... ...."],["Nicaragua",["america","central-america"],"ni","505"],["Niger",["africa"],"ne","227"],["Nigeria",["africa"],"ng","234"],["North Korea",["asia"],"kp","850"],["Norway",["europe","baltic"],"no","47","... .. ..."],["Oman",["middle-east"],"om","968"],["Pakistan",["asia"],"pk","92","... ......."],["Palau",["oceania"],"pw","680"],["Palestine",["middle-east"],"ps","970"],["Panama",["america","central-america"],"pa","507"],["Papua New Guinea",["oceania"],"pg","675"],["Paraguay",["america","south-america"],"py","595"],["Peru",["america","south-america"],"pe","51"],["Philippines",["asia"],"ph","63",".... ......."],["Poland",["europe","eu-union","baltic"],"pl","48","... ... ..."],["Portugal",["europe","eu-union"],"pt","351"],["Puerto Rico",["america","carribean"],"pr","1",""],["Qatar",["middle-east"],"qa","974"],["Réunion",["africa"],"re","262"],["Romania",["europe","eu-union"],"ro","40"],["Russia",["europe","asia","ex-ussr","baltic"],"ru","7","(...) ... .. .."],["Rwanda",["africa"],"rw","250"],["Saint Kitts and Nevis",["america","carribean"],"kn","1869"],["Saint Lucia",["america","carribean"],"lc","1758"],["Saint Vincent and the Grenadines",["america","carribean"],"vc","1784"],["Samoa",["oceania"],"ws","685"],["San Marino",["europe"],"sm","378"],["São Tomé and Príncipe",["africa"],"st","239"],["Saudi Arabia",["middle-east"],"sa","966"],["Senegal",["africa"],"sn","221"],["Serbia",["europe","ex-yugos"],"rs","381"],["Seychelles",["africa"],"sc","248"],["Sierra Leone",["africa"],"sl","232"],["Singapore",["asia"],"sg","65",".... ...."],["Slovakia",["europe","eu-union"],"sk","421"],["Slovenia",["europe","eu-union","ex-yugos"],"si","386"],["Solomon Islands",["oceania"],"sb","677"],["Somalia",["africa"],"so","252"],["South Africa",["africa"],"za","27"],["South Korea",["asia"],"kr","82","... .... ...."],["South Sudan",["africa","north-africa"],"ss","211"],["Spain",["europe","eu-union"],"es","34","... ... ..."],["Sri Lanka",["asia"],"lk","94"],["Sudan",["africa"],"sd","249"],["Suriname",["america","south-america"],"sr","597"],["Swaziland",["africa"],"sz","268"],["Sweden",["europe","eu-union","baltic"],"se","46","(...) ... ..."],["Switzerland",["europe"],"ch","41",".. ... .. .."],["Syria",["middle-east"],"sy","963"],["Taiwan",["asia"],"tw","886"],["Tajikistan",["asia","ex-ussr"],"tj","992"],["Tanzania",["africa"],"tz","255"],["Thailand",["asia"],"th","66"],["Timor-Leste",["asia"],"tl","670"],["Togo",["africa"],"tg","228"],["Tonga",["oceania"],"to","676"],["Trinidad and Tobago",["america","carribean"],"tt","1868"],["Tunisia",["africa","north-africa"],"tn","216"],["Turkey",["europe"],"tr","90","... ... .. .."],["Turkmenistan",["asia","ex-ussr"],"tm","993"],["Tuvalu",["asia"],"tv","688"],["Uganda",["africa"],"ug","256"],["Ukraine",["europe","ex-ussr"],"ua","380","(..) ... .. .."],["United Arab Emirates",["middle-east"],"ae","971"],["United Kingdom",["europe","eu-union"],"gb","44",".... ......"],["United States",["america","north-america"],"us","1","(...) ... ...."],["Uruguay",["america","south-america"],"uy","598"],["Uzbekistan",["asia","ex-ussr"],"uz","998",".. ... .. .."],["Vanuatu",["oceania"],"vu","678"],["Vatican City",["europe"],"va","39",".. .... ...."],["Venezuela",["america","south-america"],"ve","58"],["Vietnam",["asia"],"vn","84"],["Yemen",["middle-east"],"ye","967"],["Zambia",["africa"],"zm","260"],["Zimbabwe",["africa"],"zw","263"]],aE=()=>(()=>{const e=new Map;return iE.forEach((t=>{const[n,...r]=t,i=r.find((e=>/^\d+$/.test(e)));e.set(n,i)})),e})();var oE=function(e){return function(e,t){for(var n=0;n<sE.length;n++)if(sE[n][e]===t)return sE[n];return null}("country",e)};var sE=[{continent:"Asia",region:"South Asia",country:"Afghanistan",capital:"Kabul",fips:"AF",iso2:"AF",iso3:"AFG",isoNo:"4",internet:"AF"},{continent:"Europe",region:"South East Europe",country:"Albania",capital:"Tirana",fips:"AL",iso2:"AL",iso3:"ALB",isoNo:"8",internet:"AL"},{continent:"Africa",region:"Northern Africa",country:"Algeria",capital:"Algiers",fips:"AG",iso2:"DZ",iso3:"DZA",isoNo:"12",internet:"DZ"},{continent:"Oceania",region:"Pacific",country:"American Samoa",capital:"Pago Pago",fips:"AQ",iso2:"AS",iso3:"ASM",isoNo:"16",internet:"AS"},{continent:"Europe",region:"South West Europe",country:"Andorra",capital:"Andorra la Vella",fips:"AN",iso2:"AD",iso3:"AND",isoNo:"20",internet:"AD"},{continent:"Africa",region:"Southern Africa",country:"Angola",capital:"Luanda",fips:"AO",iso2:"AO",iso3:"AGO",isoNo:"24",internet:"AO"},{continent:"Americas",region:"West Indies",country:"Anguilla",capital:"The Valley",fips:"AV",iso2:"AI",iso3:"AIA",isoNo:"660",internet:"AI"},{continent:"Americas",region:"West Indies",country:"Antigua and Barbuda",capital:"Saint John's",fips:"AC",iso2:"AG",iso3:"ATG",isoNo:"28",internet:"AG"},{continent:"Americas",region:"South America",country:"Argentina",capital:"Buenos Aires",fips:"AR",iso2:"AR",iso3:"ARG",isoNo:"32",internet:"AR"},{continent:"Asia",region:"South West Asia",country:"Armenia",capital:"Yerevan",fips:"AM",iso2:"AM",iso3:"ARM",isoNo:"51",internet:"AM"},{continent:"Americas",region:"West Indies",country:"Aruba",capital:"Oranjestad",fips:"AA",iso2:"AW",iso3:"ABW",isoNo:"533",internet:"AW"},{continent:"Oceania",region:"Pacific",country:"Australia",capital:"Canberra",fips:"AS",iso2:"AU",iso3:"AUS",isoNo:"36",internet:"AU"},{continent:"Europe",region:"Central Europe",country:"Austria",capital:"Vienna",fips:"AU",iso2:"AT",iso3:"AUT",isoNo:"40",internet:"AT"},{continent:"Asia",region:"South West Asia",country:"Azerbaijan",capital:"Baku (Baki)",fips:"AJ",iso2:"AZ",iso3:"AZE",isoNo:"31",internet:"AZ"},{continent:"Americas",region:"West Indies",country:"The Bahamas",capital:"Nassau",fips:"BF",iso2:"BS",iso3:"BHS",isoNo:"44",internet:"BS"},{continent:"Asia",region:"South West Asia",country:"Bahrain",capital:"Manama",fips:"BA",iso2:"BH",iso3:"BHR",isoNo:"48",internet:"BH"},{continent:"Asia",region:"South Asia",country:"Bangladesh",capital:"Dhaka",fips:"BG",iso2:"BD",iso3:"BGD",isoNo:"50",internet:"BD"},{continent:"Americas",region:"West Indies",country:"Barbados",capital:"Bridgetown",fips:"BB",iso2:"BB",iso3:"BRB",isoNo:"52",internet:"BB"},{continent:"Europe",region:"Eastern Europe",country:"Belarus",capital:"Minsk",fips:"BO",iso2:"BY",iso3:"BLR",isoNo:"112",internet:"BY"},{continent:"Europe",region:"Western Europe",country:"Belgium",capital:"Brussels",fips:"BE",iso2:"BE",iso3:"BEL",isoNo:"56",internet:"BE"},{continent:"Americas",region:"Central America",country:"Belize",capital:"Belmopan",fips:"BH",iso2:"BZ",iso3:"BLZ",isoNo:"84",internet:"BZ"},{continent:"Africa",region:"Western Africa",country:"Benin",capital:"Porto-Novo��",fips:"BN",iso2:"BJ",iso3:"BEN",isoNo:"204",internet:"BJ"},{continent:"Americas",region:"West Indies",country:"Bermuda",capital:"Hamilton",fips:"BD",iso2:"BM",iso3:"BMU",isoNo:"60",internet:"BM"},{continent:"Asia",region:"South Asia",country:"Bhutan",capital:"Thimphu",fips:"BT",iso2:"BT",iso3:"BTN",isoNo:"64",internet:"BT"},{continent:"Americas",region:"South America",country:"Bolivia",capital:"La Paz / Sucre",fips:"BL",iso2:"BO",iso3:"BOL",isoNo:"68",internet:"BO"},{continent:"Europe",region:"South East Europe",country:"Bosnia and Herzegovina",capital:"Sarajevo",fips:"BK",iso2:"BA",iso3:"BIH",isoNo:"70",internet:"BA"},{continent:"Africa",region:"Southern Africa",country:"Botswana",capital:"Gaborone",fips:"BC",iso2:"BW",iso3:"BWA",isoNo:"72",internet:"BW"},{continent:"Americas",region:"South America",country:"Brazil",capital:"Brasilia",fips:"BR",iso2:"BR",iso3:"BRA",isoNo:"76",internet:"BR"},{continent:"Americas",region:"West Indies",country:"British Virgin Islands",capital:"Road Town",fips:"VI",iso2:"VG",iso3:"VGB",isoNo:"92",internet:"VG"},{continent:"Asia",region:"South East Asia",country:"Brunei",capital:"Bandar Seri Begawan",fips:"BX",iso2:"BN",iso3:"BRN",isoNo:"96",internet:"BN"},{continent:"Europe",region:"South East Europe",country:"Bulgaria",capital:"Sofia",fips:"BU",iso2:"BG",iso3:"BGR",isoNo:"100",internet:"BG"},{continent:"Africa",region:"Western Africa",country:"Burkina Faso",capital:"Ouagadougou",fips:"UV",iso2:"BF",iso3:"BFA",isoNo:"854",internet:"BF"},{continent:"Africa",region:"Central Africa",country:"Burundi",capital:"Bujumbura",fips:"BY",iso2:"BI",iso3:"BDI",isoNo:"108",internet:"BI"},{continent:"Asia",region:"South East Asia",country:"Cambodia",capital:"Phnom Penh",fips:"CB",iso2:"KH",iso3:"KHM",isoNo:"116",internet:"KH"},{continent:"Africa",region:"Western Africa",country:"Cameroon",capital:"Yaounde",fips:"CM",iso2:"CM",iso3:"CMR",isoNo:"120",internet:"CM"},{continent:"Americas",region:"North America",country:"Canada",capital:"Ottawa",fips:"CA",iso2:"CA",iso3:"CAN",isoNo:"124",internet:"CA"},{continent:"Africa",region:"Western Africa",country:"Cape Verde",capital:"Praia",fips:"CV",iso2:"CV",iso3:"CPV",isoNo:"132",internet:"CV"},{continent:"Americas",region:"West Indies",country:"Cayman Islands",capital:"George Town",fips:"CJ",iso2:"KY",iso3:"CYM",isoNo:"136",internet:"KY"},{continent:"Africa",region:"Central Africa",country:"Central African Republic",capital:"Bangui",fips:"CT",iso2:"CF",iso3:"CAF",isoNo:"140",internet:"CF"},{continent:"Africa",region:"Central Africa",country:"Chad",capital:"N'Djamena",fips:"CD",iso2:"TD",iso3:"TCD",isoNo:"148",internet:"TD"},{continent:"Americas",region:"South America",country:"Chile",capital:"Santiago",fips:"CI",iso2:"CL",iso3:"CHL",isoNo:"152",internet:"CL"},{continent:"Asia",region:"East Asia",country:"China",capital:"Beijing",fips:"CH",iso2:"CN",iso3:"CHN",isoNo:"156",internet:"CN"},{continent:"Asia",region:"South East Asia",country:"Christmas Island",capital:"The Settlement",fips:"KT",iso2:"CX",iso3:"CXR",isoNo:"162",internet:"CX"},{continent:"Asia",region:"South East Asia",country:"Cocos (Keeling) Islands",capital:"West Island",fips:"CK",iso2:"CC",iso3:"CCK",isoNo:"166",internet:"CC"},{continent:"Americas",region:"South America",country:"Colombia",capital:"Bogota",fips:"CO",iso2:"CO",iso3:"COL",isoNo:"170",internet:"CO"},{continent:"Africa",region:"Indian Ocean",country:"Comoros",capital:"Moroni",fips:"CN",iso2:"KM",iso3:"COM",isoNo:"174",internet:"KM"},{continent:"Africa",region:"Central Africa",country:"Republic of the Congo",capital:"Brazzaville",fips:"CF",iso2:"CG",iso3:"COG",isoNo:"178",internet:"CG"},{continent:"Oceania",region:"Pacific",country:"Cook Islands",capital:"Avarua",fips:"CW",iso2:"CK",iso3:"COK",isoNo:"184",internet:"CK"},{continent:"Americas",region:"Central America",country:"Costa Rica",capital:"San Jose",fips:"CS",iso2:"CR",iso3:"CRI",isoNo:"188",internet:"CR"},{continent:"Africa",region:"Western Africa",country:"Cote d'Ivoire",capital:"Yamoussoukro",fips:"IV",iso2:"CI",iso3:"CIV",isoNo:"384",internet:"CI"},{continent:"Europe",region:"South East Europe",country:"Croatia",capital:"Zagreb",fips:"HR",iso2:"HR",iso3:"HRV",isoNo:"191",internet:"HR"},{continent:"Americas",region:"West Indies",country:"Cuba",capital:"Havana",fips:"CU",iso2:"CU",iso3:"CUB",isoNo:"192",internet:"CU"},{continent:"Asia",region:"South West Asia",country:"Cyprus",capital:"Nicosia",fips:"CY",iso2:"CY",iso3:"CYP",isoNo:"196",internet:"CY"},{continent:"Europe",region:"Central Europe",country:"Czech Republic",capital:"Prague",fips:"EZ",iso2:"CZ",iso3:"CZE",isoNo:"203",internet:"CZ"},{continent:"Europe",region:"Northern Europe",country:"Denmark",capital:"Copenhagen",fips:"DA",iso2:"DK",iso3:"DNK",isoNo:"208",internet:"DK"},{continent:"Africa",region:"Eastern Africa",country:"Djibouti",capital:"Djibouti",fips:"DJ",iso2:"DJ",iso3:"DJI",isoNo:"262",internet:"DJ"},{continent:"Americas",region:"West Indies",country:"Dominica",capital:"Roseau",fips:"DO",iso2:"DM",iso3:"DMA",isoNo:"212",internet:"DM"},{continent:"Americas",region:"West Indies",country:"Dominican Republic",capital:"Santo Domingo",fips:"DR",iso2:"DO",iso3:"DOM",isoNo:"214",internet:"DO"},{continent:"Americas",region:"South America",country:"Ecuador",capital:"Quito",fips:"EC",iso2:"EC",iso3:"ECU",isoNo:"218",internet:"EC"},{continent:"Africa",region:"Northern Africa",country:"Egypt",capital:"Cairo",fips:"EG",iso2:"EG",iso3:"EGY",isoNo:"818",internet:"EG"},{continent:"Americas",region:"Central America",country:"El Salvador",capital:"San Salvador",fips:"ES",iso2:"SV",iso3:"SLV",isoNo:"222",internet:"SV"},{continent:"Africa",region:"Western Africa",country:"Equatorial Guinea",capital:"Malabo",fips:"EK",iso2:"GQ",iso3:"GNQ",isoNo:"226",internet:"GQ"},{continent:"Africa",region:"Eastern Africa",country:"Eritrea",capital:"Asmara",fips:"ER",iso2:"ER",iso3:"ERI",isoNo:"232",internet:"ER"},{continent:"Europe",region:"Eastern Europe",country:"Estonia",capital:"Tallinn",fips:"EN",iso2:"EE",iso3:"EST",isoNo:"233",internet:"EE"},{continent:"Africa",region:"Eastern Africa",country:"Ethiopia",capital:"Addis Ababa",fips:"ET",iso2:"ET",iso3:"ETH",isoNo:"231",internet:"ET"},{continent:"Americas",region:"South America",country:"Falkland Islands (Islas Malvinas)",capital:"Stanley",fips:"FA",iso2:"FK",iso3:"FLK",isoNo:"238",internet:"FK"},{continent:"Europe",region:"Northern Europe",country:"Faroe Islands",capital:"Torshavn",fips:"FO",iso2:"FO",iso3:"FRO",isoNo:"234",internet:"FO"},{continent:"Oceania",region:"Pacific",country:"Fiji",capital:"Suva",fips:"FJ",iso2:"FJ",iso3:"FJI",isoNo:"242",internet:"FJ"},{continent:"Europe",region:"Northern Europe",country:"Finland",capital:"Helsinki",fips:"FI",iso2:"FI",iso3:"FIN",isoNo:"246",internet:"FI"},{continent:"Europe",region:"Western Europe",country:"France",capital:"Paris",fips:"FR",iso2:"FR",iso3:"FRA",isoNo:"250",internet:"FR"},{continent:"Americas",region:"South America",country:"French Guiana",capital:"Cayenne",fips:"FG",iso2:"GF",iso3:"GUF",isoNo:"254",internet:"GF"},{continent:"Oceania",region:"Pacific",country:"French Polynesia",capital:"Papeete",fips:"FP",iso2:"PF",iso3:"PYF",isoNo:"258",internet:"PF"},{continent:"Africa",region:"Western Africa",country:"Gabon",capital:"Libreville",fips:"GB",iso2:"GA",iso3:"GAB",isoNo:"266",internet:"GA"},{continent:"Africa",region:"Western Africa",country:"The Gambia",capital:"Banjul",fips:"GA",iso2:"GM",iso3:"GMB",isoNo:"270",internet:"GM"},{continent:"Asia",region:"South West Asia",country:"Georgia",capital:"T'bilisi",fips:"GG",iso2:"GE",iso3:"GEO",isoNo:"268",internet:"GE"},{continent:"Europe",region:"Western Europe",country:"Germany",capital:"Berlin",fips:"GM",iso2:"DE",iso3:"DEU",isoNo:"276",internet:"DE"},{continent:"Africa",region:"Western Africa",country:"Ghana",capital:"Accra",fips:"GH",iso2:"GH",iso3:"GHA",isoNo:"288",internet:"GH"},{continent:"Europe",region:"South West Europe",country:"Gibraltar",capital:"Gibraltar",fips:"GI",iso2:"GI",iso3:"GIB",isoNo:"292",internet:"GI"},{continent:"Europe",region:"South East Europe",country:"Greece",capital:"Athens",fips:"GR",iso2:"GR",iso3:"GRC",isoNo:"300",internet:"GR"},{continent:"Americas",region:"North America",country:"Greenland",capital:"Nuuk (Godthab)",fips:"GL",iso2:"GL",iso3:"GRL",isoNo:"304",internet:"GL"},{continent:"Americas",region:"West Indies",country:"Grenada",capital:"Saint George's",fips:"GJ",iso2:"GD",iso3:"GRD",isoNo:"308",internet:"GD"},{continent:"Americas",region:"West Indies",country:"Guadeloupe",capital:"Basse-Terre",fips:"GP",iso2:"GP",iso3:"GLP",isoNo:"312",internet:"GP"},{continent:"Oceania",region:"Pacific",country:"Guam",capital:"Hagatna (Agana)",fips:"GQ",iso2:"GU",iso3:"GUM",isoNo:"316",internet:"GU"},{continent:"Americas",region:"Central America",country:"Guatemala",capital:"Guatemala",fips:"GT",iso2:"GT",iso3:"GTM",isoNo:"320",internet:"GT"},{continent:"Africa",region:"Western Africa",country:"Guinea",capital:"Conakry",fips:"GV",iso2:"GN",iso3:"GIN",isoNo:"324",internet:"GN"},{continent:"Africa",region:"Western Africa",country:"Guinea-Bissau",capital:"Bissau",fips:"PU",iso2:"GW",iso3:"GNB",isoNo:"624",internet:"GW"},{continent:"Americas",region:"South America",country:"Guyana",capital:"Georgetown",fips:"GY",iso2:"GY",iso3:"GUY",isoNo:"328",internet:"GY"},{continent:"Americas",region:"West Indies",country:"Haiti",capital:"Port-au-Prince",fips:"HA",iso2:"HT",iso3:"HTI",isoNo:"332",internet:"HT"},{continent:"Europe",region:"Southern Europe",country:"Holy See (Vatican City)",capital:"Vatican City",fips:"VT",iso2:"VA",iso3:"VAT",isoNo:"336",internet:"VA"},{continent:"Americas",region:"Central America",country:"Honduras",capital:"Tegucigalpa",fips:"HO",iso2:"HN",iso3:"HND",isoNo:"340",internet:"HN"},{continent:"Europe",region:"Central Europe",country:"Hungary",capital:"Budapest",fips:"HU",iso2:"HU",iso3:"HUN",isoNo:"348",internet:"HU"},{continent:"Europe",region:"Northern Europe",country:"Iceland",capital:"Reykjavik",fips:"IC",iso2:"IS",iso3:"ISL",isoNo:"352",internet:"IS"},{continent:"Asia",region:"South Asia",country:"India",capital:"New Delhi",fips:"IN",iso2:"IN",iso3:"IND",isoNo:"356",internet:"IN"},{continent:"Asia",region:"South East Asia",country:"Indonesia",capital:"Jakarta",fips:"ID",iso2:"ID",iso3:"IDN",isoNo:"360",internet:"ID"},{continent:"Asia",region:"South West Asia",country:"Iran",capital:"Tehran",fips:"IR",iso2:"IR",iso3:"IRN",isoNo:"364",internet:"IR"},{continent:"Asia",region:"South West Asia",country:"Iraq",capital:"Baghdad",fips:"IZ",iso2:"IQ",iso3:"IRQ",isoNo:"368",internet:"IQ"},{continent:"Europe",region:"Western Europe",country:"Ireland",capital:"Dublin",fips:"EI",iso2:"IE",iso3:"IRL",isoNo:"372",internet:"IE"},{continent:"Asia",region:"South West Asia",country:"Israel",capital:"Jerusalem",fips:"IS",iso2:"IL",iso3:"ISR",isoNo:"376",internet:"IL"},{continent:"Europe",region:"Southern Europe",country:"Italy",capital:"Rome",fips:"IT",iso2:"IT",iso3:"ITA",isoNo:"380",internet:"IT"},{continent:"Americas",region:"West Indies",country:"Jamaica",capital:"Kingston",fips:"JM",iso2:"JM",iso3:"JAM",isoNo:"388",internet:"JM"},{continent:"Asia",region:"East Asia",country:"Japan",capital:"Tokyo",fips:"JA",iso2:"JP",iso3:"JPN",isoNo:"392",internet:"JP"},{continent:"Asia",region:"South West Asia",country:"Jordan",capital:"Amman",fips:"JO",iso2:"JO",iso3:"JOR",isoNo:"400",internet:"JO"},{continent:"Asia",region:"Central Asia",country:"Kazakhstan",capital:"Astana (Akmola)",fips:"KZ",iso2:"KZ",iso3:"KAZ",isoNo:"398",internet:"KZ"},{continent:"Africa",region:"Eastern Africa",country:"Kenya",capital:"Nairobi",fips:"KE",iso2:"KE",iso3:"KEN",isoNo:"404",internet:"KE"},{continent:"Oceania",region:"Pacific",country:"Kiribati",capital:"Tarawa",fips:"KR",iso2:"KI",iso3:"KIR",isoNo:"296",internet:"KI"},{continent:"Asia",region:"East Asia",country:"North Korea",capital:"P'yongyang",fips:"KN",iso2:"KP",iso3:"PRK",isoNo:"408",internet:"KP"},{continent:"Asia",region:"East Asia",country:"South Korea",capital:"Seoul",fips:"KS",iso2:"KR",iso3:"KOR",isoNo:"410",internet:"KR"},{continent:"Asia",region:"South West Asia",country:"Kuwait",capital:"Kuwait",fips:"KU",iso2:"KW",iso3:"KWT",isoNo:"414",internet:"KW"},{continent:"Asia",region:"Central Asia",country:"Kyrgyzstan",capital:"Bishkek",fips:"KG",iso2:"KG",iso3:"KGZ",isoNo:"417",internet:"KG"},{continent:"Asia",region:"South East Asia",country:"Laos",capital:"Vientiane",fips:"LA",iso2:"LA",iso3:"LAO",isoNo:"418",internet:"LA"},{continent:"Europe",region:"Eastern Europe",country:"Latvia",capital:"Riga",fips:"LG",iso2:"LV",iso3:"LVA",isoNo:"428",internet:"LV"},{continent:"Asia",region:"South West Asia",country:"Lebanon",capital:"Beirut",fips:"LE",iso2:"LB",iso3:"LBN",isoNo:"422",internet:"LB"},{continent:"Africa",region:"Southern Africa",country:"Lesotho",capital:"Maseru",fips:"LT",iso2:"LS",iso3:"LSO",isoNo:"426",internet:"LS"},{continent:"Africa",region:"Western Africa",country:"Liberia",capital:"Monrovia",fips:"LI",iso2:"LR",iso3:"LBR",isoNo:"430",internet:"LR"},{continent:"Africa",region:"Northern Africa",country:"Libya",capital:"Tripoli",fips:"LY",iso2:"LY",iso3:"LBY",isoNo:"434",internet:"LY"},{continent:"Europe",region:"Central Europe",country:"Liechtenstein",capital:"Vaduz",fips:"LS",iso2:"LI",iso3:"LIE",isoNo:"438",internet:"LI"},{continent:"Europe",region:"Eastern Europe",country:"Lithuania",capital:"Vilnius",fips:"LH",iso2:"LT",iso3:"LTU",isoNo:"440",internet:"LT"},{continent:"Europe",region:"Western Europe",country:"Luxembourg",capital:"Luxembourg",fips:"LU",iso2:"LU",iso3:"LUX",isoNo:"442",internet:"LU"},{continent:"Europe",region:"South East Europe",country:"North Macedonia",capital:"Skopje",fips:"MK",iso2:"MK",iso3:"MKD",isoNo:"807",internet:"MK"},{continent:"Africa",region:"Indian Ocean",country:"Madagascar",capital:"Antananarivo",fips:"MA",iso2:"MG",iso3:"MDG",isoNo:"450",internet:"MG"},{continent:"Africa",region:"Southern Africa",country:"Malawi",capital:"Lilongwe",fips:"MI",iso2:"MW",iso3:"MWI",isoNo:"454",internet:"MW"},{continent:"Asia",region:"South East Asia",country:"Malaysia",capital:"Kuala Lumpur",fips:"MY",iso2:"MY",iso3:"MYS",isoNo:"458",internet:"MY"},{continent:"Asia",region:"South Asia",country:"Maldives",capital:"Male (Maale)",fips:"MV",iso2:"MV",iso3:"MDV",isoNo:"462",internet:"MV"},{continent:"Africa",region:"Western Africa",country:"Mali",capital:"Bamako",fips:"ML",iso2:"ML",iso3:"MLI",isoNo:"466",internet:"ML"},{continent:"Europe",region:"Southern Europe",country:"Malta",capital:"Valletta",fips:"MT",iso2:"MT",iso3:"MLT",isoNo:"470",internet:"MT"},{continent:"Europe",region:"Western Europe",country:"Isle of Man",capital:"Douglas",fips:"IM",iso2:"IM",iso3:"IMN",isoNo:"833",internet:"IM"},{continent:"Oceania",region:"Pacific",country:"Marshall Islands",capital:"Majuro",fips:"RM",iso2:"MH",iso3:"MHL",isoNo:"584",internet:"MH"},{continent:"Americas",region:"West Indies",country:"Martinique",capital:"Fort-de-France",fips:"MB",iso2:"MQ",iso3:"MTQ",isoNo:"474",internet:"MQ"},{continent:"Africa",region:"Western Africa",country:"Mauritania",capital:"Nouakchott",fips:"MR",iso2:"MR",iso3:"MRT",isoNo:"478",internet:"MR"},{continent:"Africa",region:"Indian Ocean",country:"Mauritius",capital:"Port Louis",fips:"MP",iso2:"MU",iso3:"MUS",isoNo:"480",internet:"MU"},{continent:"Africa",region:"Indian Ocean",country:"Mayotte",capital:"Mamoutzou",fips:"MF",iso2:"YT",iso3:"MYT",isoNo:"175",internet:"YT"},{continent:"Americas",region:"Central America",country:"Mexico",capital:"Mexico",fips:"MX",iso2:"MX",iso3:"MEX",isoNo:"484",internet:"MX"},{continent:"Oceania",region:"Pacific",country:"Federated States of Micronesia",capital:"Palikir",fips:"",iso2:"FM",iso3:"FSM",isoNo:"583",internet:"FM"},{continent:"Europe",region:"Eastern Europe",country:"Moldova",capital:"Chisinau",fips:"MD",iso2:"MD",iso3:"MDA",isoNo:"498",internet:"MD"},{continent:"Europe",region:"Western Europe",country:"Monaco",capital:"Monaco",fips:"MN",iso2:"MC",iso3:"MCO",isoNo:"492",internet:"MC"},{continent:"Asia",region:"Northern Asia",country:"Mongolia",capital:"Ulaanbaatar",fips:"MG",iso2:"MN",iso3:"MNG",isoNo:"496",internet:"MN"},{continent:"Americas",region:"West Indies",country:"Montserrat",capital:"Plymouth",fips:"MH",iso2:"MS",iso3:"MSR",isoNo:"500",internet:"MS"},{continent:"Africa",region:"Northern Africa",country:"Morocco",capital:"Rabat",fips:"MO",iso2:"MA",iso3:"MAR",isoNo:"504",internet:"MA"},{continent:"Africa",region:"Southern Africa",country:"Mozambique",capital:"Maputo",fips:"MZ",iso2:"MZ",iso3:"MOZ",isoNo:"508",internet:"MZ"},{continent:"Asia",region:"South East Asia",country:"Myanmar (Burma)",capital:"Rangoon (Yangon)",fips:"BM",iso2:"MM",iso3:"MMR",isoNo:"104",internet:"MM"},{continent:"Africa",region:"Southern Africa",country:"Namibia",capital:"Windhoek",fips:"WA",iso2:"NA",iso3:"NAM",isoNo:"516",internet:"NA"},{continent:"Oceania",region:"Pacific",country:"Nauru",capital:"no official capital",fips:"NR",iso2:"NR",iso3:"NRU",isoNo:"520",internet:"NR"},{continent:"Asia",region:"South Asia",country:"Nepal",capital:"Kathmandu",fips:"NP",iso2:"NP",iso3:"NPL",isoNo:"524",internet:"NP"},{continent:"Europe",region:"Western Europe",country:"Netherlands",capital:"Amsterdam",fips:"NL",iso2:"NL",iso3:"NLD",isoNo:"528",internet:"NL"},{continent:"Americas",region:"West Indies",country:"Netherlands Antilles",capital:"Willemstad",fips:"NT",iso2:"AN",iso3:"ANT",isoNo:"530",internet:"AN"},{continent:"Oceania",region:"Pacific",country:"New Caledonia",capital:"Noumea",fips:"NC",iso2:"NC",iso3:"NCL",isoNo:"540",internet:"NC"},{continent:"Oceania",region:"Pacific",country:"New Zealand",capital:"Wellington",fips:"NZ",iso2:"NZ",iso3:"NZL",isoNo:"554",internet:"NZ"},{continent:"Americas",region:"Central America",country:"Nicaragua",capital:"Managua",fips:"NU",iso2:"NI",iso3:"NIC",isoNo:"558",internet:"NI"},{continent:"Africa",region:"Western Africa",country:"Niger",capital:"Niamey",fips:"NG",iso2:"NE",iso3:"NER",isoNo:"562",internet:"NE"},{continent:"Africa",region:"Western Africa",country:"Nigeria",capital:"Abuja",fips:"NI",iso2:"NG",iso3:"NGA",isoNo:"566",internet:"NG"},{continent:"Oceania",region:"Pacific",country:"Niue",capital:"Alofi",fips:"NE",iso2:"NU",iso3:"NIU",isoNo:"570",internet:"NU"},{continent:"Oceania",region:"Pacific",country:"Norfolk Island",capital:"Kingston",fips:"NF",iso2:"NF",iso3:"NFK",isoNo:"574",internet:"NF"},{continent:"Oceania",region:"Pacific",country:"Northern Mariana Islands",capital:"Saipan",fips:"CQ",iso2:"MP",iso3:"MNP",isoNo:"580",internet:"MP"},{continent:"Europe",region:"Northern Europe",country:"Norway",capital:"Oslo",fips:"NO",iso2:"NO",iso3:"NOR",isoNo:"578",internet:"NO"},{continent:"Asia",region:"South West Asia",country:"Oman",capital:"Muscat",fips:"MU",iso2:"OM",iso3:"OMN",isoNo:"512",internet:"OM"},{continent:"Asia",region:"South Asia",country:"Pakistan",capital:"Islamabad",fips:"PK",iso2:"PK",iso3:"PAK",isoNo:"586",internet:"PK"},{continent:"Oceania",region:"Pacific",country:"Palau",capital:"Koror",fips:"PS",iso2:"PW",iso3:"PLW",isoNo:"585",internet:"PW"},{continent:"Asia",region:"South West Asia",country:"Palestinian Territory",capital:"East Jerusalem",fips:"WE",iso2:"PS",iso3:"PSE",isoNo:"275",internet:"PS"},{continent:"Americas",region:"Central America",country:"Panama",capital:"Panama",fips:"PM",iso2:"PA",iso3:"PAN",isoNo:"591",internet:"PA"},{continent:"Oceania",region:"Pacific",country:"Papua New Guinea",capital:"Port Moresby",fips:"PP",iso2:"PG",iso3:"PNG",isoNo:"598",internet:"PG"},{continent:"Americas",region:"South America",country:"Paraguay",capital:"Asuncion",fips:"PA",iso2:"PY",iso3:"PRY",isoNo:"600",internet:"PY"},{continent:"Americas",region:"South America",country:"Peru",capital:"Lima",fips:"PE",iso2:"PE",iso3:"PER",isoNo:"604",internet:"PE"},{continent:"Asia",region:"South East Asia",country:"Philippines",capital:"Manila",fips:"RP",iso2:"PH",iso3:"PHL",isoNo:"608",internet:"PH"},{continent:"Oceania",region:"Pacific",country:"Pitcairn Islands",capital:"Adamstown",fips:"PC",iso2:"PN",iso3:"PCN",isoNo:"612",internet:"PN"},{continent:"Europe",region:"Eastern Europe",country:"Poland",capital:"Warsaw",fips:"PL",iso2:"PL",iso3:"POL",isoNo:"616",internet:"PL"},{continent:"Europe",region:"South West Europe",country:"Portugal",capital:"Lisbon",fips:"PO",iso2:"PT",iso3:"PRT",isoNo:"620",internet:"PT"},{continent:"Americas",region:"West Indies",country:"Puerto Rico",capital:"San Juan",fips:"RQ",iso2:"PR",iso3:"PRI",isoNo:"630",internet:"PR"},{continent:"Asia",region:"South West Asia",country:"Qatar",capital:"Doha",fips:"QA",iso2:"QA",iso3:"QAT",isoNo:"634",internet:"QA"},{continent:"Africa",region:"Indian Ocean",country:"Reunion",capital:"Saint-Denis",fips:"RE",iso2:"RE",iso3:"REU",isoNo:"638",internet:"RE"},{continent:"Europe",region:"South East Europe",country:"Romania",capital:"Bucharest",fips:"RO",iso2:"RO",iso3:"ROU",isoNo:"642",internet:"RO"},{continent:"Asia",region:"Northern Asia",country:"Russia",capital:"Moscow",fips:"RS",iso2:"RU",iso3:"RUS",isoNo:"643",internet:"RU"},{continent:"Africa",region:"Central Africa",country:"Rwanda",capital:"Kigali",fips:"RW",iso2:"RW",iso3:"RWA",isoNo:"646",internet:"RW"},{continent:"Americas",region:"West Indies",country:"Saint Kitts and Nevis",capital:"Basseterre",fips:"SC",iso2:"KN",iso3:"KNA",isoNo:"659",internet:"KN"},{continent:"Americas",region:"West Indies",country:"Saint Lucia",capital:"Castries",fips:"ST",iso2:"LC",iso3:"LCA",isoNo:"662",internet:"LC"},{continent:"Americas",region:"North America",country:"Saint Pierre and Miquelon",capital:"Saint-Pierre",fips:"SB",iso2:"PM",iso3:"SPM",isoNo:"666",internet:"PM"},{continent:"Americas",region:"West Indies",country:"Saint Vincent and the Grenadines",capital:"Kingstown",fips:"VC",iso2:"VC",iso3:"VCT",isoNo:"670",internet:"VC"},{continent:"Europe",region:"Southern Europe",country:"San Marino",capital:"San Marino",fips:"SM",iso2:"SM",iso3:"SMR",isoNo:"674",internet:"SM"},{continent:"Africa",region:"Western Africa",country:"Sao Tome and Principe",capital:"Sao Tome",fips:"TP",iso2:"ST",iso3:"STP",isoNo:"678",internet:"ST"},{continent:"Asia",region:"South West Asia",country:"Saudi Arabia",capital:"Riyadh",fips:"SA",iso2:"SA",iso3:"SAU",isoNo:"682",internet:"SA"},{continent:"Africa",region:"Western Africa",country:"Senegal",capital:"Dakar",fips:"SG",iso2:"SN",iso3:"SEN",isoNo:"686",internet:"SN"},{continent:"Africa",region:"Indian Ocean",country:"Seychelles",capital:"Victoria",fips:"SE",iso2:"SC",iso3:"SYC",isoNo:"690",internet:"SC"},{continent:"Africa",region:"Western Africa",country:"Sierra Leone",capital:"Freetown",fips:"SL",iso2:"SL",iso3:"SLE",isoNo:"694",internet:"SL"},{continent:"Asia",region:"South East Asia",country:"Singapore",capital:"Singapore",fips:"SN",iso2:"SG",iso3:"SGP",isoNo:"702",internet:"SG"},{continent:"Europe",region:"Central Europe",country:"Slovakia",capital:"Bratislava",fips:"LO",iso2:"SK",iso3:"SVK",isoNo:"703",internet:"SK"},{continent:"Europe",region:"South East Europe",country:"Slovenia",capital:"Ljubljana",fips:"SI",iso2:"SI",iso3:"SVN",isoNo:"705",internet:"SI"},{continent:"Oceania",region:"Pacific",country:"Solomon Islands",capital:"Honiara",fips:"BP",iso2:"SB",iso3:"SLB",isoNo:"90",internet:"SB"},{continent:"Africa",region:"Eastern Africa",country:"Somalia",capital:"Mogadishu",fips:"SO",iso2:"SO",iso3:"SOM",isoNo:"706",internet:"SO"},{continent:"Africa",region:"Southern Africa",country:"South Africa",capital:"Pretoria��",fips:"SF",iso2:"ZA",iso3:"ZAF",isoNo:"710",internet:"ZA"},{continent:"Europe",region:"South West Europe",country:"Spain",capital:"Madrid",fips:"SP",iso2:"ES",iso3:"ESP",isoNo:"724",internet:"ES"},{continent:"Asia",region:"South Asia",country:"Sri Lanka",capital:"Colombo",fips:"CE",iso2:"LK",iso3:"LKA",isoNo:"144",internet:"LK"},{continent:"Africa",region:"Northern Africa",country:"Sudan",capital:"Khartoum",fips:"SU",iso2:"SD",iso3:"SDN",isoNo:"736",internet:"SD"},{continent:"Americas",region:"South America",country:"Suriname",capital:"Paramaribo",fips:"NS",iso2:"SR",iso3:"SUR",isoNo:"740",internet:"SR"},{continent:"Europe",region:"Northern Europe",country:"Svalbard",capital:"Longyearbyen",fips:"SV",iso2:"SJ",iso3:"SJM",isoNo:"744",internet:"SJ"},{continent:"Africa",region:"Southern Africa",country:"Eswatini",capital:"Mbabane",fips:"WZ",iso2:"SZ",iso3:"SWZ",isoNo:"748",internet:"SZ"},{continent:"Europe",region:"Northern Europe",country:"Sweden",capital:"Stockholm",fips:"SW",iso2:"SE",iso3:"SWE",isoNo:"752",internet:"SE"},{continent:"Europe",region:"Central Europe",country:"Switzerland",capital:"Bern",fips:"SZ",iso2:"CH",iso3:"CHE",isoNo:"756",internet:"CH"},{continent:"Asia",region:"South West Asia",country:"Syria",capital:"Damascus",fips:"SY",iso2:"SY",iso3:"SYR",isoNo:"760",internet:"SY"},{continent:"Asia",region:"East Asia",country:"Taiwan",capital:"Taipei",fips:"TW",iso2:"TW",iso3:"TWN",isoNo:"158",internet:"TW"},{continent:"Asia",region:"Central Asia",country:"Tajikistan",capital:"Dushanbe",fips:"TI",iso2:"TJ",iso3:"TJK",isoNo:"762",internet:"TJ"},{continent:"Africa",region:"Eastern Africa",country:"Tanzania",capital:"Dar es Salaam",fips:"TZ",iso2:"TZ",iso3:"TZA",isoNo:"834",internet:"TZ"},{continent:"Asia",region:"South East Asia",country:"Thailand",capital:"Bangkok",fips:"TH",iso2:"TH",iso3:"THA",isoNo:"764",internet:"TH"},{continent:"Africa",region:"Western Africa",country:"Togo",capital:"Lome",fips:"TO",iso2:"TG",iso3:"TGO",isoNo:"768",internet:"TG"},{continent:"Oceania",region:"Pacific",country:"Tokelau",capital:"none",fips:"TL",iso2:"TK",iso3:"TKL",isoNo:"772",internet:"TK"},{continent:"Oceania",region:"Pacific",country:"Tonga",capital:"Nuku'alofa",fips:"TN",iso2:"TO",iso3:"TON",isoNo:"776",internet:"TO"},{continent:"Americas",region:"West Indies",country:"Trinidad and Tobago",capital:"Port-of-Spain",fips:"TD",iso2:"TT",iso3:"TTO",isoNo:"780",internet:"TT"},{continent:"Africa",region:"Northern Africa",country:"Tunisia",capital:"Tunis",fips:"TS",iso2:"TN",iso3:"TUN",isoNo:"788",internet:"TN"},{continent:"Asia",region:"South West Asia",country:"Turkey",capital:"Ankara",fips:"TU",iso2:"TR",iso3:"TUR",isoNo:"792",internet:"TR"},{continent:"Asia",region:"Central Asia",country:"Turkmenistan",capital:"Ashgabat",fips:"TX",iso2:"TM",iso3:"TKM",isoNo:"795",internet:"TM"},{continent:"Americas",region:"West Indies",country:"Turks and Caicos Islands",capital:"Grand Turk",fips:"TK",iso2:"TC",iso3:"TCA",isoNo:"796",internet:"TC"},{continent:"Oceania",region:"Pacific",country:"Tuvalu",capital:"Funafuti",fips:"TV",iso2:"TV",iso3:"TUV",isoNo:"798",internet:"TV"},{continent:"Africa",region:"Eastern Africa",country:"Uganda",capital:"Kampala",fips:"UG",iso2:"UG",iso3:"UGA",isoNo:"800",internet:"UG"},{continent:"Europe",region:"Eastern Europe",country:"Ukraine",capital:"Kiev",fips:"UP",iso2:"UA",iso3:"UKR",isoNo:"804",internet:"UA"},{continent:"Asia",region:"South West Asia",country:"United Arab Emirates",capital:"Abu Dhabi",fips:"TC",iso2:"AE",iso3:"ARE",isoNo:"784",internet:"AE"},{continent:"Europe",region:"Western Europe",country:"United Kingdom",capital:"London",fips:"UK",iso2:"GB",iso3:"GBR",isoNo:"826",internet:"UK"},{continent:"Americas",region:"North America",country:"United States",capital:"Washington DC",fips:"US",iso2:"US",iso3:"USA",isoNo:"840",internet:"US"},{continent:"Americas",region:"North America",country:"United States Minor Outlying Islands",capital:"Washington DC",fips:"",iso2:"UM",iso3:"UMI",isoNo:"581",internet:"US"},{continent:"Americas",region:"South America",country:"Uruguay",capital:"Montevideo",fips:"UY",iso2:"UY",iso3:"URY",isoNo:"858",internet:"UY"},{continent:"Asia",region:"Central Asia",country:"Uzbekistan",capital:"Tashkent (Toshkent)",fips:"UZ",iso2:"UZ",iso3:"UZB",isoNo:"860",internet:"UZ"},{continent:"Oceania",region:"Pacific",country:"Vanuatu",capital:"Port-Vila",fips:"NH",iso2:"VU",iso3:"VUT",isoNo:"548",internet:"VU"},{continent:"Americas",region:"South America",country:"Venezuela",capital:"Caracas",fips:"VE",iso2:"VE",iso3:"VEN",isoNo:"862",internet:"UE"},{continent:"Asia",region:"South East Asia",country:"Vietnam",capital:"Hanoi",fips:"VN",iso2:"VN",iso3:"VNM",isoNo:"704",internet:"VN"},{continent:"Americas",region:"West Indies",country:"Virgin Islands",capital:"Charlotte Amalie",fips:"VQ",iso2:"VI",iso3:"VIR",isoNo:"850",internet:"VI"},{continent:"Oceania",region:"Pacific",country:"Wallis and Futuna",capital:"Mata-Utu (on Ile Uvea)",fips:"WF",iso2:"WF",iso3:"WLF",isoNo:"876",internet:"WF"},{continent:"Africa",region:"Northern Africa",country:"Western Sahara",capital:"none",fips:"WI",iso2:"EH",iso3:"ESH",isoNo:"732",internet:"EH"},{continent:"Oceania",region:"Pacific",country:"Western Samoa",capital:"Apia",fips:"WS",iso2:"WS",iso3:"WSM",isoNo:"882",internet:"WS"},{continent:"Asia",region:"South West Asia",country:"Yemen",capital:"Sanaa",fips:"YM",iso2:"YE",iso3:"YEM",isoNo:"887",internet:"YE"},{continent:"Africa",region:"Central Africa",country:"Democratic Republic of the Congo",capital:"Kinshasa",fips:"CG",iso2:"CD",iso3:"COD",isoNo:"180",internet:"ZR"},{continent:"Africa",region:"Southern Africa",country:"Zambia",capital:"Lusaka",fips:"ZA",iso2:"ZM",iso3:"ZMB",isoNo:"894",internet:"ZM"},{continent:"Africa",region:"Southern Africa",country:"Zimbabwe",capital:"Harare",fips:"ZI",iso2:"ZW",iso3:"ZWE",isoNo:"716",internet:"ZW"},{continent:"Asia",region:"East Asia",country:"Hong Kong",capital:"Victoria",fips:"HK",iso2:"HK",iso3:"HKG",isoNo:"344",internet:"HK"},{continent:"Asia",region:"East Asia",country:"Macau",capital:"Macau",fips:"MC",iso2:"MO",iso3:"MAC",isoNo:"446",internet:"MO"},{continent:"Antarctica",region:"Antarctica",country:"Antarctica",capital:"",fips:"AY",iso2:"AQ",iso3:"ATA",isoNo:"10",internet:"AQ"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"Bouvet Island",capital:"",fips:"BV",iso2:"BV",iso3:"BVT",isoNo:"74",internet:"BV"},{continent:"Asia",region:"South Asia",country:"British Indian Ocean Territory",capital:"",fips:"IO",iso2:"IO",iso3:"IOT",isoNo:"86",internet:"IO"},{continent:"Indian Ocean",region:"Southern Indian Ocean",country:"French Southern and Antarctic Lands",capital:"",fips:"FS",iso2:"TF",iso3:"ATF",isoNo:"260",internet:"--"},{continent:"Indian Ocean",region:"Southern Indian Ocean",country:"Heard Island and McDonald Islands",capital:"",fips:"HM",iso2:"HM",iso3:"HMD",isoNo:"334",internet:"HM"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"Saint Helena",capital:"",fips:"SH",iso2:"SH",iso3:"SHN",isoNo:"654",internet:"SH"},{continent:"Atlantic Ocean",region:"South Atlantic Ocean",country:"South Georgia and the South Sandwich Islands",capital:"",fips:"SX",iso2:"GS",iso3:"SGS",isoNo:"239",internet:"GS"},{continent:"Europe",region:"Western Europe",country:"Guernsey",capital:"Saint Peter Port",fips:"GK",iso2:"GG",iso3:"GGY",isoNo:"831",internet:"GG"},{continent:"Europe",region:"South East Europe",country:"Serbia",capital:"Belgrade",fips:"RI",iso2:"RS",iso3:"SRB",isoNo:"688",internet:"RS"},{continent:"Americas",region:"West Indies",country:"Saint Barthélemy",capital:"Gustavia",fips:"TB",iso2:"BL",iso3:"BLM",isoNo:"652",internet:"BL"},{continent:"Europe",region:"South East Europe",country:"Montenegro",capital:"Podgorica",fips:"MJ",iso2:"ME",iso3:"MNE",isoNo:"499",internet:"ME"},{continent:"Europe",region:"Western Europe",country:"Jersey",capital:"Saint Helier",fips:"JE",iso2:"JE",iso3:"JEY",isoNo:"832",internet:"JE"},{continent:"Americas",region:"West Indies",country:"Curaçao",capital:"Willemstad",fips:"UC",iso2:"CW",iso3:"CUW",isoNo:"531",internet:"CW"},{continent:"Americas",region:"West Indies",country:"Saint Martin",capital:"Marigot",fips:"RN",iso2:"MF",iso3:"MAF",isoNo:"663",internet:"MF"},{continent:"Americas",region:"West Indies",country:"Sint Maarten",capital:"Philipsburg",fips:"NN",iso2:"SX",iso3:"SXM",isoNo:"534",internet:"SX"},{continent:"Asia",region:"South East Asia",country:"Timor-Leste",capital:"Dili",fips:"TT",iso2:"TL",iso3:"TLS",isoNo:"626",internet:"TL"},{continent:"Africa",region:"Northern Africa",country:"South Sudan",capital:"Juba",fips:"OD",iso2:"SS",iso3:"SSD",isoNo:"728",internet:"SS"},{continent:"Europe",region:"Northern Europe",country:"Åland Islands",capital:"Mariehamn",fips:"AX",iso2:"AX",iso3:"ALA",isoNo:"248",internet:"AX"},{continent:"Americas",region:"West Indies",country:"Bonaire",capital:"Kralendijk",fips:"BQ",iso2:"BQ",iso3:"BES",isoNo:"535",internet:"BQ"},{continent:"Europe",region:"South East Europe",country:"Republic of Kosovo",capital:"Pristina",fips:"KV",iso2:"XK",iso3:"UNK",isoNo:null,internet:"XK"}],uE={version:4,country_calling_codes:{1:["US","AG","AI","AS","BB","BM","BS","CA","DM","DO","GD","GU","JM","KN","KY","LC","MP","MS","PR","SX","TC","TT","VC","VG","VI"],7:["RU","KZ"],20:["EG"],27:["ZA"],30:["GR"],31:["NL"],32:["BE"],33:["FR"],34:["ES"],36:["HU"],39:["IT","VA"],40:["RO"],41:["CH"],43:["AT"],44:["GB","GG","IM","JE"],45:["DK"],46:["SE"],47:["NO","SJ"],48:["PL"],49:["DE"],51:["PE"],52:["MX"],53:["CU"],54:["AR"],55:["BR"],56:["CL"],57:["CO"],58:["VE"],60:["MY"],61:["AU","CC","CX"],62:["ID"],63:["PH"],64:["NZ"],65:["SG"],66:["TH"],81:["JP"],82:["KR"],84:["VN"],86:["CN"],90:["TR"],91:["IN"],92:["PK"],93:["AF"],94:["LK"],95:["MM"],98:["IR"],211:["SS"],212:["MA","EH"],213:["DZ"],216:["TN"],218:["LY"],220:["GM"],221:["SN"],222:["MR"],223:["ML"],224:["GN"],225:["CI"],226:["BF"],227:["NE"],228:["TG"],229:["BJ"],230:["MU"],231:["LR"],232:["SL"],233:["GH"],234:["NG"],235:["TD"],236:["CF"],237:["CM"],238:["CV"],239:["ST"],240:["GQ"],241:["GA"],242:["CG"],243:["CD"],244:["AO"],245:["GW"],246:["IO"],247:["AC"],248:["SC"],249:["SD"],250:["RW"],251:["ET"],252:["SO"],253:["DJ"],254:["KE"],255:["TZ"],256:["UG"],257:["BI"],258:["MZ"],260:["ZM"],261:["MG"],262:["RE","YT"],263:["ZW"],264:["NA"],265:["MW"],266:["LS"],267:["BW"],268:["SZ"],269:["KM"],290:["SH","TA"],291:["ER"],297:["AW"],298:["FO"],299:["GL"],350:["GI"],351:["PT"],352:["LU"],353:["IE"],354:["IS"],355:["AL"],356:["MT"],357:["CY"],358:["FI","AX"],359:["BG"],370:["LT"],371:["LV"],372:["EE"],373:["MD"],374:["AM"],375:["BY"],376:["AD"],377:["MC"],378:["SM"],380:["UA"],381:["RS"],382:["ME"],383:["XK"],385:["HR"],386:["SI"],387:["BA"],389:["MK"],420:["CZ"],421:["SK"],423:["LI"],500:["FK"],501:["BZ"],502:["GT"],503:["SV"],504:["HN"],505:["NI"],506:["CR"],507:["PA"],508:["PM"],509:["HT"],590:["GP","BL","MF"],591:["BO"],592:["GY"],593:["EC"],594:["GF"],595:["PY"],596:["MQ"],597:["SR"],598:["UY"],599:["CW","BQ"],670:["TL"],672:["NF"],673:["BN"],674:["NR"],675:["PG"],676:["TO"],677:["SB"],678:["VU"],679:["FJ"],680:["PW"],681:["WF"],682:["CK"],683:["NU"],685:["WS"],686:["KI"],687:["NC"],688:["TV"],689:["PF"],690:["TK"],691:["FM"],692:["MH"],850:["KP"],852:["HK"],853:["MO"],855:["KH"],856:["LA"],880:["BD"],886:["TW"],960:["MV"],961:["LB"],962:["JO"],963:["SY"],964:["IQ"],965:["KW"],966:["SA"],967:["YE"],968:["OM"],970:["PS"],971:["AE"],972:["IL"],973:["BH"],974:["QA"],975:["BT"],976:["MN"],977:["NP"],992:["TJ"],993:["TM"],994:["AZ"],995:["GE"],996:["KG"],998:["UZ"]},countries:{AC:["247","00","(?:[01589]\\d|[46])\\d{4}",[5,6]],AD:["376","00","(?:1|6\\d)\\d{7}|[135-9]\\d{5}",[6,8,9],[["(\\d{3})(\\d{3})","$1 $2",["[135-9]"]],["(\\d{4})(\\d{4})","$1 $2",["1"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]]],AE:["971","00","(?:[4-7]\\d|9[0-689])\\d{7}|800\\d{2,9}|[2-4679]\\d{7}",[5,6,7,8,9,10,11,12],[["(\\d{3})(\\d{2,9})","$1 $2",["60|8"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[236]|[479][2-8]"],"0$1"],["(\\d{3})(\\d)(\\d{5})","$1 $2 $3",["[479]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"]],"0"],AF:["93","00","[2-7]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"]],"0"],AG:["1","011","(?:268|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([457]\\d{6})$|1","268$1",0,"268"],AI:["1","011","(?:264|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2457]\\d{6})$|1","264$1",0,"264"],AL:["355","00","(?:700\\d\\d|900)\\d{3}|8\\d{5,7}|(?:[2-5]|6\\d)\\d{7}",[6,7,8,9],[["(\\d{3})(\\d{3,4})","$1 $2",["80|9"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["4[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2358][2-5]|4"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["[23578]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["6"],"0$1"]],"0"],AM:["374","00","(?:[1-489]\\d|55|60|77)\\d{6}",[8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[89]0"],"0 $1"],["(\\d{3})(\\d{5})","$1 $2",["2|3[12]"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["1|47"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[3-9]"],"0$1"]],"0"],AO:["244","00","[29]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[29]"]]]],AR:["54","00","(?:11|[89]\\d\\d)\\d{8}|[2368]\\d{9}",[10,11],[["(\\d{4})(\\d{2})(\\d{4})","$1 $2-$3",["2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9])","2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8]))|2(?:2[24-9]|3[1-59]|47)","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5[56][46]|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|58|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|54(?:4|5[13-7]|6[89])|86[3-6]))|2(?:2[24-9]|3[1-59]|47)|38(?:[58][78]|7[378])|3(?:454|85[56])[46]|3(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["1"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[68]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2-$3",["[23]"],"0$1",1],["(\\d)(\\d{4})(\\d{2})(\\d{4})","$2 15-$3-$4",["9(?:2[2-469]|3[3-578])","9(?:2(?:2[024-9]|3[0-59]|47|6[245]|9[02-8])|3(?:3[28]|4[03-9]|5[2-46-8]|7[1-578]|8[2-9]))","9(?:2(?:[23]02|6(?:[25]|4[6-8])|9(?:[02356]|4[02568]|72|8[23]))|3(?:3[28]|4(?:[04679]|3[5-8]|5[4-68]|8[2379])|5(?:[2467]|3[237]|8[2-5])|7[1-578]|8(?:[2469]|3[2578]|5[4-8]|7[36-8]|8[5-8])))|92(?:2[24-9]|3[1-59]|47)","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3[78]|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8[23])|7[1-578]|8(?:[2469]|3[278]|5(?:[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4[35][56]|58[45]|8(?:[38]5|54|76))[4-6]","9(?:2(?:[23]02|6(?:[25]|4(?:64|[78]))|9(?:[02356]|4(?:[0268]|5[2-6])|72|8[23]))|3(?:3[28]|4(?:[04679]|3(?:5(?:4[0-25689]|[56])|[78])|5(?:4[46]|8)|8[2379])|5(?:[2467]|3[237]|8(?:[23]|4(?:[45]|60)|5(?:4[0-39]|5|64)))|7[1-578]|8(?:[2469]|3[278]|5(?:4(?:4|5[13-7]|6[89])|[56][46]|[78])|7[378]|8(?:6[3-6]|[78]))))|92(?:2[24-9]|3[1-59]|47)|93(?:4(?:36|5[56])|8(?:[38]5|76))[4-6]"],"0$1",0,"$1 $2 $3-$4"],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 15-$3-$4",["91"],"0$1",0,"$1 $2 $3-$4"],["(\\d{3})(\\d{3})(\\d{5})","$1-$2-$3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 15-$3-$4",["9"],"0$1",0,"$1 $2 $3-$4"]],"0",0,"0?(?:(11|2(?:2(?:02?|[13]|2[13-79]|4[1-6]|5[2457]|6[124-8]|7[1-4]|8[13-6]|9[1267])|3(?:02?|1[467]|2[03-6]|3[13-8]|[49][2-6]|5[2-8]|[67])|4(?:7[3-578]|9)|6(?:[0136]|2[24-6]|4[6-8]?|5[15-8])|80|9(?:0[1-3]|[19]|2\\d|3[1-6]|4[02568]?|5[2-4]|6[2-46]|72?|8[23]?))|3(?:3(?:2[79]|6|8[2578])|4(?:0[0-24-9]|[12]|3[5-8]?|4[24-7]|5[4-68]?|6[02-9]|7[126]|8[2379]?|9[1-36-8])|5(?:1|2[1245]|3[237]?|4[1-46-9]|6[2-4]|7[1-6]|8[2-5]?)|6[24]|7(?:[069]|1[1568]|2[15]|3[145]|4[13]|5[14-8]|7[2-57]|8[126])|8(?:[01]|2[15-7]|3[2578]?|4[13-6]|5[4-8]?|6[1-357-9]|7[36-8]?|8[5-8]?|9[124])))15)?","9$1"],AS:["1","011","(?:[58]\\d\\d|684|900)\\d{7}",[10],0,"1",0,"([267]\\d{6})$|1","684$1",0,"684"],AT:["43","00","1\\d{3,12}|2\\d{6,12}|43(?:(?:0\\d|5[02-9])\\d{3,9}|2\\d{4,5}|[3467]\\d{4}|8\\d{4,6}|9\\d{4,7})|5\\d{4,12}|8\\d{7,12}|9\\d{8,12}|(?:[367]\\d|4[0-24-9])\\d{4,11}",[4,5,6,7,8,9,10,11,12,13],[["(\\d)(\\d{3,12})","$1 $2",["1(?:11|[2-9])"],"0$1"],["(\\d{3})(\\d{2})","$1 $2",["517"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["5[079]"],"0$1"],["(\\d{3})(\\d{3,10})","$1 $2",["(?:31|4)6|51|6(?:5[0-3579]|[6-9])|7(?:20|32|8)|[89]"],"0$1"],["(\\d{4})(\\d{3,9})","$1 $2",["[2-467]|5[2-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["5"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,7})","$1 $2 $3",["5"],"0$1"]],"0"],AU:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{7}(?:\\d(?:\\d{2})?)?|8[0-24-9]\\d{7})|[2-478]\\d{8}|1\\d{4,7}",[5,6,7,8,9,10,12],[["(\\d{2})(\\d{3,4})","$1 $2",["16"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,4})","$1 $2 $3",["16"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["14|4"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[2378]"],"(0$1)"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:30|[89])"]]],"0",0,"(183[12])|0",0,0,0,[["(?:(?:2(?:[0-26-9]\\d|3[0-8]|4[02-9]|5[0135-9])|3(?:[0-3589]\\d|4[0-578]|6[1-9]|7[0-35-9])|7(?:[013-57-9]\\d|2[0-8]))\\d{3}|8(?:51(?:0(?:0[03-9]|[12479]\\d|3[2-9]|5[0-8]|6[1-9]|8[0-7])|1(?:[0235689]\\d|1[0-69]|4[0-589]|7[0-47-9])|2(?:0[0-79]|[18][13579]|2[14-9]|3[0-46-9]|[4-6]\\d|7[89]|9[0-4]))|(?:6[0-8]|[78]\\d)\\d{3}|9(?:[02-9]\\d{3}|1(?:(?:[0-58]\\d|6[0135-9])\\d|7(?:0[0-24-9]|[1-9]\\d)|9(?:[0-46-9]\\d|5[0-79])))))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,["163\\d{2,6}",[5,6,7,8,9]],["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],AW:["297","00","(?:[25-79]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[25-9]"]]]],AX:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","2\\d{4,9}|35\\d{4,5}|(?:60\\d\\d|800)\\d{4,6}|7\\d{5,11}|(?:[14]\\d|3[0-46-9]|50)\\d{4,8}",[5,6,7,8,9,10,11,12],0,"0",0,0,0,0,"18",0,"00"],AZ:["994","00","365\\d{6}|(?:[124579]\\d|60|88)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[28]|2|365|46","1[28]|2|365[45]|46","1[28]|2|365(?:4|5[02])|46"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[13-9]"],"0$1"]],"0"],BA:["387","00","6\\d{8}|(?:[35689]\\d|49|70)\\d{6}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["6[1-3]|[7-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2-$3",["[3-5]|6[56]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["6"],"0$1"]],"0"],BB:["1","011","(?:246|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","246$1",0,"246"],BD:["880","00","[1-469]\\d{9}|8[0-79]\\d{7,8}|[2-79]\\d{8}|[2-9]\\d{7}|[3-9]\\d{6}|[57-9]\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{4,6})","$1-$2",["31[5-8]|[459]1"],"0$1"],["(\\d{3})(\\d{3,7})","$1-$2",["3(?:[67]|8[013-9])|4(?:6[168]|7|[89][18])|5(?:6[128]|9)|6(?:28|4[14]|5)|7[2-589]|8(?:0[014-9]|[12])|9[358]|(?:3[2-5]|4[235]|5[2-578]|6[0389]|76|8[3-7]|9[24])1|(?:44|66)[01346-9]"],"0$1"],["(\\d{4})(\\d{3,6})","$1-$2",["[13-9]|22"],"0$1"],["(\\d)(\\d{7,8})","$1-$2",["2"],"0$1"]],"0"],BE:["32","00","4\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:80|9)0"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[239]|4[23]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[15-8]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4"],"0$1"]],"0"],BF:["226","00","[025-7]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[025-7]"]]]],BG:["359","00","00800\\d{7}|[2-7]\\d{6,7}|[89]\\d{6,8}|2\\d{5}",[6,7,8,9,12],[["(\\d)(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["43[1-6]|70[1-9]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[356]|4[124-7]|7[1-9]|8[1-6]|9[1-7]"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["(?:70|8)0"],"0$1"],["(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3",["43[1-7]|7"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[48]|9[08]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"]],"0"],BH:["973","00","[136-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[13679]|8[047]"]]]],BI:["257","00","(?:[267]\\d|31)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2367]"]]]],BJ:["229","00","[24-689]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-689]"]]]],BL:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:2[7-9]|5[12]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],BM:["1","011","(?:441|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","441$1",0,"441"],BN:["673","00","[2-578]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-578]"]]]],BO:["591","00(?:1\\d)?","(?:[2-467]\\d\\d|8001)\\d{5}",[8,9],[["(\\d)(\\d{7})","$1 $2",["[23]|4[46]"]],["(\\d{8})","$1",["[67]"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["8"]]],"0",0,"0(1\\d)?"],BQ:["599","00","(?:[34]1|7\\d)\\d{5}",[7],0,0,0,0,0,0,"[347]"],BR:["55","00(?:1[245]|2[1-35]|31|4[13]|[56]5|99)","(?:[1-46-9]\\d\\d|5(?:[0-46-9]\\d|5[0-46-9]))\\d{8}|[1-9]\\d{9}|[3589]\\d{8}|[34]\\d{7}",[8,9,10,11],[["(\\d{4})(\\d{4})","$1-$2",["300|4(?:0[02]|37)","4(?:02|37)0|[34]00"]],["(\\d{3})(\\d{2,3})(\\d{4})","$1 $2 $3",["(?:[358]|90)0"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2-$3",["(?:[14689][1-9]|2[12478]|3[1-578]|5[13-5]|7[13-579])[2-57]"],"($1)"],["(\\d{2})(\\d{5})(\\d{4})","$1 $2-$3",["[16][1-9]|[2-57-9]"],"($1)"]],"0",0,"(?:0|90)(?:(1[245]|2[1-35]|31|4[13]|[56]5|99)(\\d{10,11}))?","$2"],BS:["1","011","(?:242|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([3-8]\\d{6})$|1","242$1",0,"242"],BT:["975","00","[17]\\d{7}|[2-8]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[2-68]|7[246]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[67]|7"]]]],BW:["267","00","(?:0800|(?:[37]|800)\\d)\\d{6}|(?:[2-6]\\d|90)\\d{5}",[7,8,10],[["(\\d{2})(\\d{5})","$1 $2",["90"]],["(\\d{3})(\\d{4})","$1 $2",["[24-6]|3[15-79]"]],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37]"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["8"]]]],BY:["375","810","(?:[12]\\d|33|44|902)\\d{7}|8(?:0[0-79]\\d{5,7}|[1-7]\\d{9})|8(?:1[0-489]|[5-79]\\d)\\d{7}|8[1-79]\\d{6,7}|8[0-79]\\d{5}|8\\d{5}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3})","$1 $2",["800"],"8 $1"],["(\\d{3})(\\d{2})(\\d{2,4})","$1 $2 $3",["800"],"8 $1"],["(\\d{4})(\\d{2})(\\d{3})","$1 $2-$3",["1(?:5[169]|6[3-5]|7[179])|2(?:1[35]|2[34]|3[3-5])","1(?:5[169]|6(?:3[1-3]|4|5[125])|7(?:1[3-9]|7[0-24-6]|9[2-7]))|2(?:1[35]|2[34]|3[3-5])"],"8 0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["1(?:[56]|7[467])|2[1-3]"],"8 0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-4]"],"8 0$1"],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["[89]"],"8 $1"]],"8",0,"0|80?",0,0,0,0,"8~10"],BZ:["501","00","(?:0800\\d|[2-8])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1-$2",["[2-8]"]],["(\\d)(\\d{3})(\\d{4})(\\d{3})","$1-$2-$3-$4",["0"]]]],CA:["1","011","(?:[2-8]\\d|90)\\d{8}|3\\d{6}",[7,10],0,"1",0,0,0,0,0,[["(?:2(?:04|[23]6|[48]9|50|63)|3(?:06|43|54|6[578]|82)|4(?:03|1[68]|[26]8|3[178]|50|74)|5(?:06|1[49]|48|79|8[147])|6(?:04|[18]3|39|47|72)|7(?:0[59]|42|53|78|8[02])|8(?:[06]7|19|25|73)|90[25])[2-9]\\d{6}",[10]],["",[10]],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}",[10]],["900[2-9]\\d{6}",[10]],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|(?:5(?:00|2[125-9]|33|44|66|77|88)|622)[2-9]\\d{6}",[10]],0,["310\\d{4}",[7]],0,["600[2-9]\\d{6}",[10]]]],CC:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:02|31|60|89)|1(?:18|76)|223)|91(?:0(?:1[0-2]|29)|1(?:[28]2|50|79)|2(?:10|64)|3(?:[06]8|22)|4[29]8|62\\d|70[23]|959))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CD:["243","00","[189]\\d{8}|[1-68]\\d{6}",[7,9],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[1-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]"],"0$1"]],"0"],CF:["236","00","(?:[27]\\d{3}|8776)\\d{4}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[278]"]]]],CG:["242","00","222\\d{6}|(?:0\\d|80)\\d{7}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[02]"]]]],CH:["41","00","8\\d{11}|[2-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8[047]|90"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-79]|81"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["8"],"0$1"]],"0"],CI:["225","00","[02]\\d{9}",[10],[["(\\d{2})(\\d{2})(\\d)(\\d{5})","$1 $2 $3 $4",["2"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3 $4",["0"]]]],CK:["682","00","[2-578]\\d{4}",[5],[["(\\d{2})(\\d{3})","$1 $2",["[2-578]"]]]],CL:["56","(?:0|1(?:1[0-69]|2[02-5]|5[13-58]|69|7[0167]|8[018]))0","12300\\d{6}|6\\d{9,10}|[2-9]\\d{8}",[9,10,11],[["(\\d{5})(\\d{4})","$1 $2",["219","2196"],"($1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["44"]],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2[1-36]"],"($1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["9[2-9]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["3[2-5]|[47]|5[1-3578]|6[13-57]|8(?:0[1-9]|[1-9])"],"($1)"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["60|8"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{3})(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3 $4",["60"]]]],CM:["237","00","[26]\\d{8}|88\\d{6,7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["88"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[26]|88"]]]],CN:["86","00|1(?:[12]\\d|79)\\d\\d00","1[127]\\d{8,9}|2\\d{9}(?:\\d{2})?|[12]\\d{6,7}|86\\d{6}|(?:1[03-689]\\d|6)\\d{7,9}|(?:[3-579]\\d|8[0-57-9])\\d{6,9}",[7,8,9,10,11,12],[["(\\d{2})(\\d{5,6})","$1 $2",["(?:10|2[0-57-9])[19]","(?:10|2[0-57-9])(?:10|9[56])","10(?:10|9[56])|2[0-57-9](?:100|9[56])"],"0$1"],["(\\d{3})(\\d{5,6})","$1 $2",["3(?:[157]|35|49|9[1-68])|4(?:[17]|2[179]|6[47-9]|8[23])|5(?:[1357]|2[37]|4[36]|6[1-46]|80)|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]|4[13]|5[1-5])|(?:4[35]|59|85)[1-9]","(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[1-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))[19]","85[23](?:10|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:10|9[56])","85[23](?:100|95)|(?:3(?:[157]\\d|35|49|9[1-68])|4(?:[17]\\d|2[179]|[35][1-9]|6[47-9]|8[23])|5(?:[1357]\\d|2[37]|4[36]|6[1-46]|80|9[1-9])|6(?:3[1-5]|6[0238]|9[12])|7(?:01|[1579]\\d|2[248]|3[014-9]|4[3-6]|6[023689])|8(?:1[236-8]|2[5-7]|[37]\\d|5[14-9]|8[36-8]|9[1-8])|9(?:0[1-3689]|1[1-79]|[379]\\d|4[13]|5[1-5]))(?:100|9[56])"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["(?:4|80)0"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|2(?:[02-57-9]|1[1-9])","10|2(?:[02-57-9]|1[1-9])","10[0-79]|2(?:[02-57-9]|1[1-79])|(?:10|21)8(?:0[1-9]|[1-9])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["3(?:[3-59]|7[02-68])|4(?:[26-8]|3[3-9]|5[2-9])|5(?:3[03-9]|[468]|7[028]|9[2-46-9])|6|7(?:[0-247]|3[04-9]|5[0-4689]|6[2368])|8(?:[1-358]|9[1-7])|9(?:[013479]|5[1-5])|(?:[34]1|55|79|87)[02-9]"],"0$1",1],["(\\d{3})(\\d{7,8})","$1 $2",["9"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["80"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[3-578]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["1[3-9]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["[12]"],"0$1",1]],"0",0,"(1(?:[12]\\d|79)\\d\\d)|0",0,0,0,0,"00"],CO:["57","00(?:4(?:[14]4|56)|[579])","(?:60\\d\\d|9101)\\d{6}|(?:1\\d|3)\\d{9}",[10,11],[["(\\d{3})(\\d{7})","$1 $2",["6"],"($1)"],["(\\d{3})(\\d{7})","$1 $2",["3[0-357]|91"]],["(\\d)(\\d{3})(\\d{7})","$1-$2-$3",["1"],"0$1",0,"$1 $2 $3"]],"0",0,"0(4(?:[14]4|56)|[579])?"],CR:["506","00","(?:8\\d|90)\\d{8}|(?:[24-8]\\d{3}|3005)\\d{4}",[8,10],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[3-9]"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["[89]"]]],0,0,"(19(?:0[0-2468]|1[09]|20|66|77|99))"],CU:["53","119","[27]\\d{6,7}|[34]\\d{5,7}|(?:5|8\\d\\d)\\d{7}",[6,7,8,10],[["(\\d{2})(\\d{4,6})","$1 $2",["2[1-4]|[34]"],"(0$1)"],["(\\d)(\\d{6,7})","$1 $2",["7"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["5"],"0$1"],["(\\d{3})(\\d{7})","$1 $2",["8"],"0$1"]],"0"],CV:["238","0","(?:[2-59]\\d\\d|800)\\d{4}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2-589]"]]]],CW:["599","00","(?:[34]1|60|(?:7|9\\d)\\d)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[3467]"]],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["9[4-8]"]]],0,0,0,0,0,"[69]"],CX:["61","001[14-689]|14(?:1[14]|34|4[17]|[56]6|7[47]|88)0011","1(?:[0-79]\\d{8}(?:\\d{2})?|8[0-24-9]\\d{7})|[148]\\d{8}|1\\d{5,7}",[6,7,8,9,10,12],0,"0",0,"([59]\\d{7})$|0","8$1",0,0,[["8(?:51(?:0(?:01|30|59|88)|1(?:17|46|75)|2(?:22|35))|91(?:00[6-9]|1(?:[28]1|49|78)|2(?:09|63)|3(?:12|26|75)|4(?:56|97)|64\\d|7(?:0[01]|1[0-2])|958))\\d{3}",[9]],["4(?:79[01]|83[0-389]|93[0-6])\\d{5}|4(?:[0-3]\\d|4[047-9]|5[0-25-9]|6[016-9]|7[02-8]|8[0-24-9]|9[0-27-9])\\d{6}",[9]],["180(?:0\\d{3}|2)\\d{3}",[7,10]],["190[0-26]\\d{6}",[10]],0,0,0,0,["14(?:5(?:1[0458]|[23][458])|71\\d)\\d{4}",[9]],["13(?:00\\d{6}(?:\\d{2})?|45[0-4]\\d{3})|13\\d{4}",[6,8,10,12]]],"0011"],CY:["357","00","(?:[279]\\d|[58]0)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[257-9]"]]]],CZ:["420","00","(?:[2-578]\\d|60)\\d{7}|9\\d{8,11}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]|9[015-7]"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{2})","$1 $2 $3 $4",["96"]],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]]],DE:["49","00","[2579]\\d{5,14}|49(?:[34]0|69|8\\d)\\d\\d?|49(?:37|49|60|7[089]|9\\d)\\d{1,3}|49(?:2[024-9]|3[2-689]|7[1-7])\\d{1,8}|(?:1|[368]\\d|4[0-8])\\d{3,13}|49(?:[015]\\d|2[13]|31|[46][1-8])\\d{1,9}",[4,5,6,7,8,9,10,11,12,13,14,15],[["(\\d{2})(\\d{3,13})","$1 $2",["3[02]|40|[68]9"],"0$1"],["(\\d{3})(\\d{3,12})","$1 $2",["2(?:0[1-389]|1[124]|2[18]|3[14])|3(?:[35-9][15]|4[015])|906|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1","2(?:0[1-389]|12[0-8])|3(?:[35-9][15]|4[015])|906|2(?:[13][14]|2[18])|(?:2[4-9]|4[2-9]|[579][1-9]|[68][1-8])1"],"0$1"],["(\\d{4})(\\d{2,11})","$1 $2",["[24-6]|3(?:[3569][02-46-9]|4[2-4679]|7[2-467]|8[2-46-8])|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]","[24-6]|3(?:3(?:0[1-467]|2[127-9]|3[124578]|7[1257-9]|8[1256]|9[145])|4(?:2[135]|4[13578]|9[1346])|5(?:0[14]|2[1-3589]|6[1-4]|7[13468]|8[13568])|6(?:2[1-489]|3[124-6]|6[13]|7[12579]|8[1-356]|9[135])|7(?:2[1-7]|4[145]|6[1-5]|7[1-4])|8(?:21|3[1468]|6|7[1467]|8[136])|9(?:0[12479]|2[1358]|4[134679]|6[1-9]|7[136]|8[147]|9[1468]))|70[2-8]|8(?:0[2-9]|[1-8])|90[7-9]|[79][1-9]|3[68]4[1347]|3(?:47|60)[1356]|3(?:3[46]|46|5[49])[1246]|3[4579]3[1357]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["138"],"0$1"],["(\\d{5})(\\d{2,10})","$1 $2",["3"],"0$1"],["(\\d{3})(\\d{5,11})","$1 $2",["181"],"0$1"],["(\\d{3})(\\d)(\\d{4,10})","$1 $2 $3",["1(?:3|80)|9"],"0$1"],["(\\d{3})(\\d{7,8})","$1 $2",["1[67]"],"0$1"],["(\\d{3})(\\d{7,12})","$1 $2",["8"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["185","1850","18500"],"0$1"],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["18[68]"],"0$1"],["(\\d{5})(\\d{6})","$1 $2",["15[0568]"],"0$1"],["(\\d{4})(\\d{7})","$1 $2",["15[1279]"],"0$1"],["(\\d{3})(\\d{8})","$1 $2",["18"],"0$1"],["(\\d{3})(\\d{2})(\\d{7,8})","$1 $2 $3",["1(?:6[023]|7)"],"0$1"],["(\\d{4})(\\d{2})(\\d{7})","$1 $2 $3",["15[279]"],"0$1"],["(\\d{3})(\\d{2})(\\d{8})","$1 $2 $3",["15"],"0$1"]],"0"],DJ:["253","00","(?:2\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[27]"]]]],DK:["45","00","[2-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-9]"]]]],DM:["1","011","(?:[58]\\d\\d|767|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","767$1",0,"767"],DO:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,0,0,0,"8001|8[024]9"],DZ:["213","00","(?:[1-4]|[5-79]\\d|80)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["9"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-8]"],"0$1"]],"0"],EC:["593","00","1\\d{9,10}|(?:[2-7]|9\\d)\\d{7}",[8,9,10,11],[["(\\d)(\\d{3})(\\d{4})","$1 $2-$3",["[2-7]"],"(0$1)",0,"$1-$2-$3"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{3})(\\d{3,4})","$1 $2 $3",["1"]]],"0"],EE:["372","00","8\\d{9}|[4578]\\d{7}|(?:[3-8]\\d|90)\\d{5}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[369]|4[3-8]|5(?:[0-2]|5[0-478]|6[45])|7[1-9]|88","[369]|4[3-8]|5(?:[02]|1(?:[0-8]|95)|5[0-478]|6(?:4[0-4]|5[1-589]))|7[1-9]|88"]],["(\\d{4})(\\d{3,4})","$1 $2",["[45]|8(?:00|[1-49])","[45]|8(?:00[1-9]|[1-49])"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],EG:["20","00","[189]\\d{8,9}|[24-6]\\d{8}|[135]\\d{7}",[8,9,10],[["(\\d)(\\d{7,8})","$1 $2",["[23]"],"0$1"],["(\\d{2})(\\d{6,7})","$1 $2",["1[35]|[4-6]|8[2468]|9[235-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[189]"],"0$1"]],"0"],EH:["212","00","[5-8]\\d{8}",[9],0,"0",0,0,0,0,"528[89]"],ER:["291","00","[178]\\d{6}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[178]"],"0$1"]],"0"],ES:["34","00","[5-9]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[89]00"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-9]"]]]],ET:["251","00","(?:11|[2-579]\\d)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-579]"],"0$1"]],"0"],FI:["358","00|99(?:[01469]|5(?:[14]1|3[23]|5[59]|77|88|9[09]))","[1-35689]\\d{4}|7\\d{10,11}|(?:[124-7]\\d|3[0-46-9])\\d{8}|[1-9]\\d{5,8}",[5,6,7,8,9,10,11,12],[["(\\d)(\\d{4,9})","$1 $2",["[2568][1-8]|3(?:0[1-9]|[1-9])|9"],"0$1"],["(\\d{3})(\\d{3,7})","$1 $2",["[12]00|[368]|70[07-9]"],"0$1"],["(\\d{2})(\\d{4,8})","$1 $2",["[1245]|7[135]"],"0$1"],["(\\d{2})(\\d{6,10})","$1 $2",["7"],"0$1"]],"0",0,0,0,0,"1[03-79]|[2-9]",0,"00"],FJ:["679","0(?:0|52)","45\\d{5}|(?:0800\\d|[235-9])\\d{6}",[7,11],[["(\\d{3})(\\d{4})","$1 $2",["[235-9]|45"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]]],0,0,0,0,0,0,0,"00"],FK:["500","00","[2-7]\\d{4}",[5]],FM:["691","00","(?:[39]\\d\\d|820)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[389]"]]]],FO:["298","00","[2-9]\\d{5}",[6],[["(\\d{6})","$1",["[2-9]"]]],0,0,"(10(?:01|[12]0|88))"],FR:["33","00","[1-9]\\d{8}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0 $1"],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["[1-79]"],"0$1"]],"0"],GA:["241","00","(?:[067]\\d|11)\\d{6}|[2-7]\\d{6}",[7,8],[["(\\d)(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-7]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["11|[67]"],"0$1"]],0,0,"0(11\\d{6}|60\\d{6}|61\\d{6}|6[256]\\d{6}|7[467]\\d{6})","$1"],GB:["44","00","[1-357-9]\\d{9}|[18]\\d{8}|8\\d{6}",[7,9,10],[["(\\d{3})(\\d{4})","$1 $2",["800","8001","80011","800111","8001111"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["845","8454","84546","845464"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["800"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["1(?:38|5[23]|69|76|94)","1(?:(?:38|69)7|5(?:24|39)|768|946)","1(?:3873|5(?:242|39[4-6])|(?:697|768)[347]|9467)"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["1(?:[2-69][02-9]|[78])"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[25]|7(?:0|6[02-9])","[25]|7(?:0|6(?:[03-9]|2[356]))"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[1389]"],"0$1"]],"0",0,0,0,0,0,[["(?:1(?:1(?:3(?:[0-58]\\d\\d|73[0235])|4(?:[0-5]\\d\\d|69[7-9]|70[0-579])|(?:(?:5[0-26-9]|[78][0-49])\\d|6(?:[0-4]\\d|50))\\d)|2(?:(?:0[024-9]|2[3-9]|3[3-79]|4[1-689]|[58][02-9]|6[0-47-9]|7[013-9]|9\\d)\\d\\d|1(?:[0-7]\\d\\d|8(?:[02]\\d|1[0-46-9])))|(?:3(?:0\\d|1[0-8]|[25][02-9]|3[02-579]|[468][0-46-9]|7[1-35-79]|9[2-578])|4(?:0[03-9]|[137]\\d|[28][02-57-9]|4[02-69]|5[0-8]|[69][0-79])|5(?:0[1-35-9]|[16]\\d|2[024-9]|3[015689]|4[02-9]|5[03-9]|7[0-35-9]|8[0-468]|9[0-57-9])|6(?:0[034689]|1\\d|2[0-35689]|[38][013-9]|4[1-467]|5[0-69]|6[13-9]|7[0-8]|9[0-24578])|7(?:0[0246-9]|2\\d|3[0236-8]|4[03-9]|5[0-46-9]|6[013-9]|7[0-35-9]|8[024-9]|9[02-9])|8(?:0[35-9]|2[1-57-9]|3[02-578]|4[0-578]|5[124-9]|6[2-69]|7\\d|8[02-9]|9[02569])|9(?:0[02-589]|[18]\\d|2[02-689]|3[1-57-9]|4[2-9]|5[0-579]|6[2-47-9]|7[0-24578]|9[2-57]))\\d\\d)|2(?:0[013478]|3[0189]|4[017]|8[0-46-9]|9[0-2])\\d{3})\\d{4}|1(?:2(?:0(?:46[1-4]|87[2-9])|545[1-79]|76(?:2\\d|3[1-8]|6[1-6])|9(?:7(?:2[0-4]|3[2-5])|8(?:2[2-8]|7[0-47-9]|8[3-5])))|3(?:6(?:38[2-5]|47[23])|8(?:47[04-9]|64[0157-9]))|4(?:044[1-7]|20(?:2[23]|8\\d)|6(?:0(?:30|5[2-57]|6[1-8]|7[2-8])|140)|8(?:052|87[1-3]))|5(?:2(?:4(?:3[2-79]|6\\d)|76\\d)|6(?:26[06-9]|686))|6(?:06(?:4\\d|7[4-79])|295[5-7]|35[34]\\d|47(?:24|61)|59(?:5[08]|6[67]|74)|9(?:55[0-4]|77[23]))|7(?:26(?:6[13-9]|7[0-7])|(?:442|688)\\d|50(?:2[0-3]|[3-68]2|76))|8(?:27[56]\\d|37(?:5[2-5]|8[239])|843[2-58])|9(?:0(?:0(?:6[1-8]|85)|52\\d)|3583|4(?:66[1-8]|9(?:2[01]|81))|63(?:23|3[1-4])|9561))\\d{3}",[9,10]],["7(?:457[0-57-9]|700[01]|911[028])\\d{5}|7(?:[1-3]\\d\\d|4(?:[0-46-9]\\d|5[0-689])|5(?:0[0-8]|[13-9]\\d|2[0-35-9])|7(?:0[1-9]|[1-7]\\d|8[02-9]|9[0-689])|8(?:[014-9]\\d|[23][0-8])|9(?:[024-9]\\d|1[02-9]|3[0-689]))\\d{6}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[2-49]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]],0," x"],GD:["1","011","(?:473|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","473$1",0,"473"],GE:["995","00","(?:[3-57]\\d\\d|800)\\d{6}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["32"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[57]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[348]"],"0$1"]],"0"],GF:["594","00","[56]94\\d{6}|(?:80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[56]|9[47]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[89]"],"0$1"]],"0"],GG:["44","00","(?:1481|[357-9]\\d{3})\\d{6}|8\\d{6}(?:\\d{2})?",[7,9,10],0,"0",0,"([25-9]\\d{5})$|0","1481$1",0,0,[["1481[25-9]\\d{5}",[10]],["7(?:(?:781|839)\\d|911[17])\\d{5}",[10]],["80[08]\\d{7}|800\\d{6}|8001111"],["(?:8(?:4[2-5]|7[0-3])|9(?:[01]\\d|8[0-3]))\\d{7}|845464\\d",[7,10]],["70\\d{8}",[10]],0,["(?:3[0347]|55)\\d{8}",[10]],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}",[10]],["56\\d{8}",[10]]]],GH:["233","00","(?:[235]\\d{3}|800)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[235]"],"0$1"]],"0"],GI:["350","00","(?:[25]\\d|60)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["2"]]]],GL:["299","00","(?:19|[2-689]\\d|70)\\d{4}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["19|[2-9]"]]]],GM:["220","00","[2-9]\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],GN:["224","00","722\\d{6}|(?:3|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["3"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[67]"]]]],GP:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0",0,0,0,0,0,[["590(?:0[1-68]|[14][0-24-9]|2[0-68]|3[1289]|5[3-579]|[68][0-689]|7[08]|9\\d)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],GQ:["240","00","222\\d{6}|(?:3\\d|55|[89]0)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235]"]],["(\\d{3})(\\d{6})","$1 $2",["[89]"]]]],GR:["30","00","5005000\\d{3}|8\\d{9,11}|(?:[269]\\d|70)\\d{8}",[10,11,12],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["21|7"]],["(\\d{4})(\\d{6})","$1 $2",["2(?:2|3[2-57-9]|4[2-469]|5[2-59]|6[2-9]|7[2-69]|8[2-49])|5"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2689]"]],["(\\d{3})(\\d{3,4})(\\d{5})","$1 $2 $3",["8"]]]],GT:["502","00","(?:1\\d{3}|[2-7])\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1 $2",["[2-7]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],GU:["1","011","(?:[58]\\d\\d|671|900)\\d{7}",[10],0,"1",0,"([3-9]\\d{6})$|1","671$1",0,"671"],GW:["245","00","[49]\\d{8}|4\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["40"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"]]]],GY:["592","001","9008\\d{3}|(?:[2-467]\\d\\d|862)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-46-9]"]]]],HK:["852","00(?:30|5[09]|[126-9]?)","8[0-46-9]\\d{6,7}|9\\d{4,7}|(?:[2-7]|9\\d{3})\\d{7}",[5,6,7,8,9,11],[["(\\d{3})(\\d{2,5})","$1 $2",["900","9003"]],["(\\d{4})(\\d{4})","$1 $2",["[2-7]|8[1-4]|9(?:0[1-9]|[1-8])"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{3})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["9"]]],0,0,0,0,0,0,0,"00"],HN:["504","00","8\\d{10}|[237-9]\\d{7}",[8,11],[["(\\d{4})(\\d{4})","$1-$2",["[237-9]"]]]],HR:["385","00","(?:[24-69]\\d|3[0-79])\\d{7}|80\\d{5,7}|[1-79]\\d{7}|6\\d{5,6}",[6,7,8,9],[["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["6[01]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{4})(\\d{3})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-5]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"]],"0"],HT:["509","00","(?:[2-489]\\d|55)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[2-589]"]]]],HU:["36","00","[235-7]\\d{8}|[1-9]\\d{7}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27][2-9]|3[2-7]|4[24-9]|5[2-79]|6|8[2-57-9]|9[2-69]"],"(06 $1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"06 $1"]],"06"],ID:["62","00[89]","(?:(?:00[1-9]|8\\d)\\d{4}|[1-36])\\d{6}|00\\d{10}|[1-9]\\d{8,10}|[2-9]\\d{7}",[7,8,9,10,11,12,13],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["15"]],["(\\d{2})(\\d{5,9})","$1 $2",["2[124]|[36]1"],"(0$1)"],["(\\d{3})(\\d{5,7})","$1 $2",["800"],"0$1"],["(\\d{3})(\\d{5,8})","$1 $2",["[2-79]"],"(0$1)"],["(\\d{3})(\\d{3,4})(\\d{3})","$1-$2-$3",["8[1-35-9]"],"0$1"],["(\\d{3})(\\d{6,8})","$1 $2",["1"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["804"],"0$1"],["(\\d{3})(\\d)(\\d{3})(\\d{3})","$1 $2 $3 $4",["80"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1-$2-$3",["8"],"0$1"]],"0"],IE:["353","00","(?:1\\d|[2569])\\d{6,8}|4\\d{6,9}|7\\d{8}|8\\d{8,9}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["2[24-9]|47|58|6[237-9]|9[35-9]"],"(0$1)"],["(\\d{3})(\\d{5})","$1 $2",["[45]0"],"(0$1)"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["1"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2569]|4[1-69]|7[14]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["70"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["81"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[78]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["4"],"(0$1)"],["(\\d{2})(\\d)(\\d{3})(\\d{4})","$1 $2 $3 $4",["8"],"0$1"]],"0"],IL:["972","0(?:0|1[2-9])","1\\d{6}(?:\\d{3,5})?|[57]\\d{8}|[1-489]\\d{7}",[7,8,9,10,11,12],[["(\\d{4})(\\d{3})","$1-$2",["125"]],["(\\d{4})(\\d{2})(\\d{2})","$1-$2-$3",["121"]],["(\\d)(\\d{3})(\\d{4})","$1-$2-$3",["[2-489]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1-$2-$3",["12"]],["(\\d{4})(\\d{6})","$1-$2",["159"]],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3-$4",["1[7-9]"]],["(\\d{3})(\\d{1,2})(\\d{3})(\\d{4})","$1-$2 $3-$4",["15"]]],"0"],IM:["44","00","1624\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([25-8]\\d{5})$|0","1624$1",0,"74576|(?:16|7[56])24"],IN:["91","00","(?:000800|[2-9]\\d\\d)\\d{7}|1\\d{7,12}",[8,9,10,11,12,13],[["(\\d{8})","$1",["5(?:0|2[23]|3[03]|[67]1|88)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|888)","5(?:0|2(?:21|3)|3(?:0|3[23])|616|717|8888)"],0,1],["(\\d{4})(\\d{4,5})","$1 $2",["180","1800"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["140"],0,1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["11|2[02]|33|4[04]|79[1-7]|80[2-46]","11|2[02]|33|4[04]|79(?:[1-6]|7[19])|80(?:[2-4]|6[0-589])","11|2[02]|33|4[04]|79(?:[124-6]|3(?:[02-9]|1[0-24-9])|7(?:1|9[1-6]))|80(?:[2-4]|6[0-589])"],"0$1",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1(?:2[0-249]|3[0-25]|4[145]|[68]|7[1257])|2(?:1[257]|3[013]|4[01]|5[0137]|6[0158]|78|8[1568])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|5[12]|[78]1)|6(?:12|[2-4]1|5[17]|6[13]|80)|7(?:12|3[134]|4[47]|61|88)|8(?:16|2[014]|3[126]|6[136]|7[078]|8[34]|91)|(?:43|59|75)[15]|(?:1[59]|29|67|72)[14]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|674|7(?:(?:2[14]|3[34]|5[15])[2-6]|61[346]|88[0-8])|8(?:70[2-6]|84[235-7]|91[3-7])|(?:1(?:29|60|8[06])|261|552|6(?:12|[2-47]1|5[17]|6[13]|80)|7(?:12|31|4[47])|8(?:16|2[014]|3[126]|6[136]|7[78]|83))[2-7]","1(?:2[0-24]|3[0-25]|4[145]|[59][14]|6[1-9]|7[1257]|8[1-57-9])|2(?:1[257]|3[013]|4[01]|5[0137]|6[058]|78|8[1568]|9[14])|3(?:26|4[1-3]|5[34]|6[01489]|7[02-46]|8[159])|4(?:1[36]|2[1-47]|3[15]|5[12]|6[0-26-9]|7[0-24-9]|8[013-57]|9[014-7])|5(?:1[025]|22|[36][25]|4[28]|[578]1|9[15])|6(?:12(?:[2-6]|7[0-8])|74[2-7])|7(?:(?:2[14]|5[15])[2-6]|3171|61[346]|88(?:[2-7]|82))|8(?:70[2-6]|84(?:[2356]|7[19])|91(?:[3-6]|7[19]))|73[134][2-6]|(?:74[47]|8(?:16|2[014]|3[126]|6[136]|7[78]|83))(?:[2-6]|7[19])|(?:1(?:29|60|8[06])|261|552|6(?:[2-4]1|5[17]|6[13]|7(?:1|4[0189])|80)|7(?:12|88[01]))[2-7]"],"0$1",1],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2[2457-9]|3[2-5]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1[013-9]|28|3[129]|4[1-35689]|5[29]|6[02-5]|70)|807","1(?:[2-479]|5[0235-9])|[2-5]|6(?:1[1358]|2(?:[2457]|84|95)|3(?:[2-4]|55)|4[235-7]|5[2-689]|6[24578]|7[235689]|8[1-6])|7(?:1(?:[013-8]|9[6-9])|28[6-8]|3(?:17|2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4|5[0-367])|70[13-7])|807[19]","1(?:[2-479]|5(?:[0236-9]|5[013-9]))|[2-5]|6(?:2(?:84|95)|355|83)|73179|807(?:1|9[1-3])|(?:1552|6(?:1[1358]|2[2457]|3[2-4]|4[235-7]|5[2-689]|6[24578]|7[235689]|8[124-6])\\d|7(?:1(?:[013-8]\\d|9[6-9])|28[6-8]|3(?:2[0-49]|9[2-57])|4(?:1[2-4]|[29][0-7]|3[0-8]|[56]\\d|8[0-24-7])|5(?:2[1-3]|9[0-6])|6(?:0[5689]|2[5-9]|3[02-8]|4\\d|5[0-367])|70[13-7]))[2-7]"],"0$1",1],["(\\d{5})(\\d{5})","$1 $2",["[6-9]"],"0$1",1],["(\\d{4})(\\d{2,4})(\\d{4})","$1 $2 $3",["1(?:6|8[06])","1(?:6|8[06]0)"],0,1],["(\\d{4})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["18"],0,1]],"0"],IO:["246","00","3\\d{6}",[7],[["(\\d{3})(\\d{4})","$1 $2",["3"]]]],IQ:["964","00","(?:1|7\\d\\d)\\d{7}|[2-6]\\d{7,8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-6]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],IR:["98","00","[1-9]\\d{9}|(?:[1-8]\\d\\d|9)\\d{3,4}",[4,5,6,7,10],[["(\\d{4,5})","$1",["96"],"0$1"],["(\\d{2})(\\d{4,5})","$1 $2",["(?:1[137]|2[13-68]|3[1458]|4[145]|5[1468]|6[16]|7[1467]|8[13467])[12689]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["9"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["[1-8]"],"0$1"]],"0"],IS:["354","00|1(?:0(?:01|[12]0)|100)","(?:38\\d|[4-9])\\d{6}",[7,9],[["(\\d{3})(\\d{4})","$1 $2",["[4-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["3"]]],0,0,0,0,0,0,0,"00"],IT:["39","00","0\\d{5,10}|1\\d{8,10}|3(?:[0-8]\\d{7,10}|9\\d{7,8})|(?:55|70)\\d{8}|8\\d{5}(?:\\d{2,4})?",[6,7,8,9,10,11],[["(\\d{2})(\\d{4,6})","$1 $2",["0[26]"]],["(\\d{3})(\\d{3,6})","$1 $2",["0[13-57-9][0159]|8(?:03|4[17]|9[2-5])","0[13-57-9][0159]|8(?:03|4[17]|9(?:2|3[04]|[45][0-4]))"]],["(\\d{4})(\\d{2,6})","$1 $2",["0(?:[13-579][2-46-8]|8[236-8])"]],["(\\d{4})(\\d{4})","$1 $2",["894"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[26]|5"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["1(?:44|[679])|[378]"]],["(\\d{3})(\\d{3,4})(\\d{4})","$1 $2 $3",["0[13-57-9][0159]|14"]],["(\\d{2})(\\d{4})(\\d{5})","$1 $2 $3",["0[26]"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["0"]],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["3"]]],0,0,0,0,0,0,[["0669[0-79]\\d{1,6}|0(?:1(?:[0159]\\d|[27][1-5]|31|4[1-4]|6[1356]|8[2-57])|2\\d\\d|3(?:[0159]\\d|2[1-4]|3[12]|[48][1-6]|6[2-59]|7[1-7])|4(?:[0159]\\d|[23][1-9]|4[245]|6[1-5]|7[1-4]|81)|5(?:[0159]\\d|2[1-5]|3[2-6]|4[1-79]|6[4-6]|7[1-578]|8[3-8])|6(?:[0-57-9]\\d|6[0-8])|7(?:[0159]\\d|2[12]|3[1-7]|4[2-46]|6[13569]|7[13-6]|8[1-59])|8(?:[0159]\\d|2[3-578]|3[1-356]|[6-8][1-5])|9(?:[0159]\\d|[238][1-5]|4[12]|6[1-8]|7[1-6]))\\d{2,7}"],["3[1-9]\\d{8}|3[2-9]\\d{7}",[9,10]],["80(?:0\\d{3}|3)\\d{3}",[6,9]],["(?:0878\\d{3}|89(?:2\\d|3[04]|4(?:[0-4]|[5-9]\\d\\d)|5[0-4]))\\d\\d|(?:1(?:44|6[346])|89(?:38|5[5-9]|9))\\d{6}",[6,8,9,10]],["1(?:78\\d|99)\\d{6}",[9,10]],0,0,0,["55\\d{8}",[10]],["84(?:[08]\\d{3}|[17])\\d{3}",[6,9]]]],JE:["44","00","1534\\d{6}|(?:[3578]\\d|90)\\d{8}",[10],0,"0",0,"([0-24-8]\\d{5})$|0","1534$1",0,0,[["1534[0-24-8]\\d{5}"],["7(?:(?:(?:50|82)9|937)\\d|7(?:00[378]|97[7-9]))\\d{5}"],["80(?:07(?:35|81)|8901)\\d{4}"],["(?:8(?:4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|90(?:066[59]|1810|71(?:07|55)))\\d{4}"],["701511\\d{4}"],0,["(?:3(?:0(?:07(?:35|81)|8901)|3\\d{4}|4(?:4(?:4(?:05|42|69)|703)|5(?:041|800))|7(?:0002|1206))|55\\d{4})\\d{4}"],["76(?:464|652)\\d{5}|76(?:0[0-28]|2[356]|34|4[01347]|5[49]|6[0-369]|77|8[14]|9[139])\\d{6}"],["56\\d{8}"]]],JM:["1","011","(?:[58]\\d\\d|658|900)\\d{7}",[10],0,"1",0,0,0,0,"658|876"],JO:["962","00","(?:(?:[2689]|7\\d)\\d|32|53)\\d{6}",[8,9],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2356]|87"],"(0$1)"],["(\\d{3})(\\d{5,6})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["70"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["7"],"0$1"]],"0"],JP:["81","010","00[1-9]\\d{6,14}|[257-9]\\d{9}|(?:00|[1-9]\\d\\d)\\d{6}",[8,9,10,11,12,13,14,15,16,17],[["(\\d{3})(\\d{3})(\\d{3})","$1-$2-$3",["(?:12|57|99)0"],"0$1"],["(\\d{4})(\\d)(\\d{4})","$1-$2-$3",["1(?:26|3[79]|4[56]|5[4-68]|6[3-5])|499|5(?:76|97)|746|8(?:3[89]|47|51|63)|9(?:80|9[16])","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:76|97)9|7468|8(?:3(?:8[7-9]|96)|477|51[2-9]|636)|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]","1(?:267|3(?:7[247]|9[278])|466|5(?:47|58|64)|6(?:3[245]|48|5[4-68]))|499[2468]|5(?:769|979[2-69])|7468|8(?:3(?:8[7-9]|96[2457-9])|477|51[2-9]|636[457-9])|9(?:802|9(?:1[23]|69))|1(?:45|58)[67]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2-$3",["[36]|4(?:2[09]|7[01])","[36]|4(?:2(?:0|9[02-69])|7(?:0[019]|1))"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["1(?:1|5[45]|77|88|9[69])|2(?:2[1-37]|3[0-269]|4[59]|5|6[24]|7[1-358]|8[1369]|9[0-38])|4(?:[28][1-9]|3[0-57]|[45]|6[248]|7[2-579]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-389])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9[2-6])|8(?:2[124589]|3[27-9]|49|51|6|7[0-468]|8[68]|9[019])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9[1-489])","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2(?:[127]|3[014-9])|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9[19])|62|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|8[1-9])|5(?:2|3[045]|4[0-369]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0-2469])|49|51|6(?:[0-24]|36|5[0-3589]|72|9[01459])|7[0-468]|8[68])|9(?:[23][1-9]|4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3[34]|4[0178]))|(?:49|55|83)[29]|(?:264|837)[016-9]|2(?:57|93)[015-9]|(?:25[0468]|422|838)[01]|(?:47[59]|59[89]|8(?:6[68]|9))[019]","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9[0169])|3(?:[29]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:8294|96)[1-3]|2(?:57|93)[015-9]|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|8292|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]","1(?:1|5(?:4[018]|5[017])|77|88|9[69])|2(?:2[127]|3[0-269]|4[59]|5(?:[1-3]|5[0-69]|7[015-9]|9(?:17|99))|6(?:2|4[016-9])|7(?:[1-35]|8[0189])|8(?:[16]|3[0134]|9[0-5])|9(?:[028]|17|3[015-9]))|4(?:2(?:[13-79]|8[014-6])|3[0-57]|[45]|6[248]|7[2-47]|9[29])|5(?:2|3[045]|4[0-369]|5[29]|8[02389]|9[0-3])|7(?:2[02-46-9]|34|[58]|6[0249]|7[57]|9(?:[23]|4[0-59]|5[01569]|6[0167]))|8(?:2(?:[1258]|4[0-39]|9(?:[019]|4[1-3]|6(?:[0-47-9]|5[01346-9])))|3(?:[29]|7(?:[017-9]|6[6-8]))|49|51|6(?:[0-24]|36[23]|5(?:[0-389]|5[23])|6(?:[01]|9[178])|72|9[0145])|7[0-468]|8[68])|9(?:4[15]|5[138]|6[1-3]|7[156]|8[189]|9(?:[1289]|3(?:31|4[357])|4[0178]))|(?:223|8699)[014-9]|(?:25[0468]|422|838)[01]|(?:48|829(?:2|66)|9[23])[1-9]|(?:47[59]|59[89]|8(?:68|9))[019]"],"0$1"],["(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3",["[14]|[289][2-9]|5[3-9]|7[2-4679]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1-$2-$3",["800"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[257-9]"],"0$1"]],"0"],KE:["254","000","(?:[17]\\d\\d|900)\\d{6}|(?:2|80)0\\d{6,7}|[4-6]\\d{6,8}",[7,8,9,10],[["(\\d{2})(\\d{5,7})","$1 $2",["[24-6]"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[17]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0"],KG:["996","00","8\\d{9}|(?:[235-8]\\d|99)\\d{7}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["3(?:1[346]|[24-79])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[235-79]|88"],"0$1"],["(\\d{3})(\\d{3})(\\d)(\\d{2,3})","$1 $2 $3 $4",["8"],"0$1"]],"0"],KH:["855","00[14-9]","1\\d{9}|[1-9]\\d{7,8}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],KI:["686","00","(?:[37]\\d|6[0-79])\\d{6}|(?:[2-48]\\d|50)\\d{3}",[5,8],0,"0"],KM:["269","00","[3478]\\d{6}",[7],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[3478]"]]]],KN:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","869$1",0,"869"],KP:["850","00|99","85\\d{6}|(?:19\\d|[2-7])\\d{7}",[8,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2-7]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"]],"0"],KR:["82","00(?:[125689]|3(?:[46]5|91)|7(?:00|27|3|55|6[126]))","00[1-9]\\d{8,11}|(?:[12]|5\\d{3})\\d{7}|[13-6]\\d{9}|(?:[1-6]\\d|80)\\d{7}|[3-6]\\d{4,5}|(?:00|7)0\\d{8}",[5,6,8,9,10,11,12,13,14],[["(\\d{2})(\\d{3,4})","$1-$2",["(?:3[1-3]|[46][1-4]|5[1-5])1"],"0$1"],["(\\d{4})(\\d{4})","$1-$2",["1"]],["(\\d)(\\d{3,4})(\\d{4})","$1-$2-$3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1-$2-$3",["60|8"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1-$2-$3",["[1346]|5[1-5]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2-$3",["[57]"],"0$1"],["(\\d{2})(\\d{5})(\\d{4})","$1-$2-$3",["5"],"0$1"]],"0",0,"0(8(?:[1-46-8]|5\\d\\d))?"],KW:["965","00","18\\d{5}|(?:[2569]\\d|41)\\d{6}",[7,8],[["(\\d{4})(\\d{3,4})","$1 $2",["[169]|2(?:[235]|4[1-35-9])|52"]],["(\\d{3})(\\d{5})","$1 $2",["[245]"]]]],KY:["1","011","(?:345|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","345$1",0,"345"],KZ:["7","810","(?:33622|8\\d{8})\\d{5}|[78]\\d{9}",[10,14],0,"8",0,0,0,0,"33|7",0,"8~10"],LA:["856","00","[23]\\d{9}|3\\d{8}|(?:[235-8]\\d|41)\\d{6}",[8,9,10],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2[13]|3[14]|[4-8]"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["30[013-9]"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[23]"],"0$1"]],"0"],LB:["961","00","[27-9]\\d{7}|[13-9]\\d{6}",[7,8],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[13-69]|7(?:[2-57]|62|8[0-7]|9[04-9])|8[02-9]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[27-9]"]]],"0"],LC:["1","011","(?:[58]\\d\\d|758|900)\\d{7}",[10],0,"1",0,"([2-8]\\d{6})$|1","758$1",0,"758"],LI:["423","00","[68]\\d{8}|(?:[2378]\\d|90)\\d{5}",[7,9],[["(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3",["[2379]|8(?:0[09]|7)","[2379]|8(?:0(?:02|9)|7)"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["69"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]]],"0",0,"(1001)|0"],LK:["94","00","[1-9]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[1-689]"],"0$1"]],"0"],LR:["231","00","(?:[25]\\d|33|77|88)\\d{7}|(?:2\\d|[4-6])\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[4-6]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23578]"],"0$1"]],"0"],LS:["266","00","(?:[256]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2568]"]]]],LT:["370","00","(?:[3469]\\d|52|[78]0)\\d{6}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["52[0-7]"],"(8-$1)",1],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[7-9]"],"8 $1",1],["(\\d{2})(\\d{6})","$1 $2",["37|4(?:[15]|6[1-8])"],"(8-$1)",1],["(\\d{3})(\\d{5})","$1 $2",["[3-6]"],"(8-$1)",1]],"8",0,"[08]"],LU:["352","00","35[013-9]\\d{4,8}|6\\d{8}|35\\d{2,4}|(?:[2457-9]\\d|3[0-46-9])\\d{2,9}",[4,5,6,7,8,9,10,11],[["(\\d{2})(\\d{3})","$1 $2",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["2(?:0[2-689]|[2-9])|[3-57]|8(?:0[2-9]|[13-9])|9(?:0[89]|[2-579])"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["20[2-689]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4",["2(?:[0367]|4[3-8])"]],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["80[01]|90[015]"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3 $4",["20"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})(\\d{1,2})","$1 $2 $3 $4 $5",["2(?:[0367]|4[3-8])"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{1,5})","$1 $2 $3 $4",["[3-57]|8[13-9]|9(?:0[89]|[2-579])|(?:2|80)[2-9]"]]],0,0,"(15(?:0[06]|1[12]|[35]5|4[04]|6[26]|77|88|99)\\d)"],LV:["371","00","(?:[268]\\d|90)\\d{6}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[269]|8[01]"]]]],LY:["218","00","[2-9]\\d{8}",[9],[["(\\d{2})(\\d{7})","$1-$2",["[2-9]"],"0$1"]],"0"],MA:["212","00","[5-8]\\d{8}",[9],[["(\\d{5})(\\d{4})","$1-$2",["5(?:29|38)","5(?:29[1289]|389)","529(?:1[1-46-9]|2[013-8]|90)|5(?:298|389)[0-46-9]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5[45]"],"0$1"],["(\\d{4})(\\d{5})","$1-$2",["5(?:2[2-489]|3[5-9]|9)|892","5(?:2(?:[2-49]|8[235-9])|3[5-9]|9)|892"],"0$1"],["(\\d{2})(\\d{7})","$1-$2",["8"],"0$1"],["(\\d{3})(\\d{6})","$1-$2",["[5-7]"],"0$1"]],"0",0,0,0,0,0,[["5293[01]\\d{4}|5(?:2(?:[0-25-7]\\d|3[1-578]|4[02-46-8]|8[0235-7]|9[0-289])|3(?:[0-47]\\d|5[02-9]|6[02-8]|8[0189]|9[3-9])|(?:4[067]|5[03])\\d)\\d{5}"],["(?:6(?:[0-79]\\d|8[0-247-9])|7(?:[017]\\d|2[0-2]|6[0-8]|8[0-3]))\\d{6}"],["80\\d{7}"],["89\\d{7}"],0,0,0,0,["592(?:4[0-2]|93)\\d{4}"]]],MC:["377","00","(?:[3489]|6\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["4"],"0$1"],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[389]"]],["(\\d)(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4 $5",["6"],"0$1"]],"0"],MD:["373","00","(?:[235-7]\\d|[89]0)\\d{6}",[8],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["22|3"],"0$1"],["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[25-7]"],"0$1"]],"0"],ME:["382","00","(?:20|[3-79]\\d)\\d{6}|80\\d{6,7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[2-9]"],"0$1"]],"0"],MF:["590","00","590\\d{6}|(?:69|80|9\\d)\\d{7}",[9],0,"0",0,0,0,0,0,[["590(?:0[079]|[14]3|[27][79]|30|5[0-268]|87)\\d{4}"],["69(?:0\\d\\d|1(?:2[2-9]|3[0-5]))\\d{4}"],["80[0-5]\\d{6}"],0,0,0,0,0,["9(?:(?:395|76[018])\\d|475[0-2])\\d{4}"]]],MG:["261","00","[23]\\d{8}",[9],[["(\\d{2})(\\d{2})(\\d{3})(\\d{2})","$1 $2 $3 $4",["[23]"],"0$1"]],"0",0,"([24-9]\\d{6})$|0","20$1"],MH:["692","011","329\\d{4}|(?:[256]\\d|45)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1-$2",["[2-6]"]]],"1"],MK:["389","00","[2-578]\\d{7}",[8],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2|34[47]|4(?:[37]7|5[47]|64)"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[347]"],"0$1"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["[58]"],"0$1"]],"0"],ML:["223","00","[24-9]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24-9]"]]]],MM:["95","00","1\\d{5,7}|95\\d{6}|(?:[4-7]|9[0-46-9])\\d{6,8}|(?:2|8\\d)\\d{5,8}",[6,7,8,9,10],[["(\\d)(\\d{2})(\\d{3})","$1 $2 $3",["16|2"],"0$1"],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["[45]|6(?:0[23]|[1-689]|7[235-7])|7(?:[0-4]|5[2-7])|8[1-6]"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[4-7]|8[1-35]"],"0$1"],["(\\d)(\\d{3})(\\d{4,6})","$1 $2 $3",["9(?:2[0-4]|[35-9]|4[137-9])"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["92"],"0$1"],["(\\d)(\\d{5})(\\d{4})","$1 $2 $3",["9"],"0$1"]],"0"],MN:["976","001","[12]\\d{7,9}|[5-9]\\d{7}",[8,9,10],[["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["[12]1"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[5-9]"]],["(\\d{3})(\\d{5,6})","$1 $2",["[12]2[1-3]"],"0$1"],["(\\d{4})(\\d{5,6})","$1 $2",["[12](?:27|3[2-8]|4[2-68]|5[1-4689])","[12](?:27|3[2-8]|4[2-68]|5[1-4689])[0-3]"],"0$1"],["(\\d{5})(\\d{4,5})","$1 $2",["[12]"],"0$1"]],"0"],MO:["853","00","0800\\d{3}|(?:28|[68]\\d)\\d{6}",[7,8],[["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{4})(\\d{4})","$1 $2",["[268]"]]]],MP:["1","011","[58]\\d{9}|(?:67|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","670$1",0,"670"],MQ:["596","00","596\\d{6}|(?:69|80|9\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[569]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],MR:["222","00","(?:[2-4]\\d\\d|800)\\d{5}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2-48]"]]]],MS:["1","011","(?:[58]\\d\\d|664|900)\\d{7}",[10],0,"1",0,"([34]\\d{6})$|1","664$1",0,"664"],MT:["356","00","3550\\d{4}|(?:[2579]\\d\\d|800)\\d{5}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[2357-9]"]]]],MU:["230","0(?:0|[24-7]0|3[03])","(?:[57]|8\\d\\d)\\d{7}|[2-468]\\d{6}",[7,8,10],[["(\\d{3})(\\d{4})","$1 $2",["[2-46]|8[013]"]],["(\\d{4})(\\d{4})","$1 $2",["[57]"]],["(\\d{5})(\\d{5})","$1 $2",["8"]]],0,0,0,0,0,0,0,"020"],MV:["960","0(?:0|19)","(?:800|9[0-57-9]\\d)\\d{7}|[34679]\\d{6}",[7,10],[["(\\d{3})(\\d{4})","$1-$2",["[34679]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"]]],0,0,0,0,0,0,0,"00"],MW:["265","00","(?:[1289]\\d|31|77)\\d{7}|1\\d{6}",[7,9],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["1[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"],"0$1"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[137-9]"],"0$1"]],"0"],MX:["52","0[09]","1(?:(?:[27]2|44|99)[1-9]|65[0-689])\\d{7}|(?:1(?:[01]\\d|2[13-9]|[35][1-9]|4[0-35-9]|6[0-46-9]|7[013-9]|8[1-79]|9[1-8])|[2-9]\\d)\\d{8}",[10,11],[["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["33|5[56]|81"],0,1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[2-9]"],0,1],["(\\d)(\\d{2})(\\d{4})(\\d{4})","$2 $3 $4",["1(?:33|5[56]|81)"],0,1],["(\\d)(\\d{3})(\\d{3})(\\d{4})","$2 $3 $4",["1"],0,1]],"01",0,"0(?:[12]|4[45])|1",0,0,0,0,"00"],MY:["60","00","1\\d{8,9}|(?:3\\d|[4-9])\\d{7}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1-$2 $3",["[4-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1-$2 $3",["1(?:[02469]|[378][1-9]|53)|8","1(?:[02469]|[37][1-9]|53|8(?:[1-46-9]|5[7-9]))|8"],"0$1"],["(\\d)(\\d{4})(\\d{4})","$1-$2 $3",["3"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{4})","$1-$2-$3-$4",["1(?:[367]|80)"]],["(\\d{3})(\\d{3})(\\d{4})","$1-$2 $3",["15"],"0$1"],["(\\d{2})(\\d{4})(\\d{4})","$1-$2 $3",["1"],"0$1"]],"0"],MZ:["258","00","(?:2|8\\d)\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2|8[2-79]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["8"]]]],NA:["264","00","[68]\\d{7,8}",[8,9],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["88"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["87"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],NC:["687","00","(?:050|[2-57-9]\\d\\d)\\d{3}",[6],[["(\\d{2})(\\d{2})(\\d{2})","$1.$2.$3",["[02-57-9]"]]]],NE:["227","00","[027-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["08"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[089]|2[013]|7[04]"]]]],NF:["672","00","[13]\\d{5}",[6],[["(\\d{2})(\\d{4})","$1 $2",["1[0-3]"]],["(\\d)(\\d{5})","$1 $2",["[13]"]]],0,0,"([0-258]\\d{4})$","3$1"],NG:["234","009","(?:[124-7]|9\\d{3})\\d{6}|[1-9]\\d{7}|[78]\\d{9,13}",[7,8,10,11,12,13,14],[["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["78"],"0$1"],["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[12]|9(?:0[3-9]|[1-9])"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["[3-7]|8[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[7-9]"],"0$1"],["(\\d{3})(\\d{4})(\\d{4,5})","$1 $2 $3",["[78]"],"0$1"],["(\\d{3})(\\d{5})(\\d{5,6})","$1 $2 $3",["[78]"],"0$1"]],"0"],NI:["505","00","(?:1800|[25-8]\\d{3})\\d{4}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[125-8]"]]]],NL:["31","00","(?:[124-7]\\d\\d|3(?:[02-9]\\d|1[0-8]))\\d{6}|8\\d{6,9}|9\\d{6,10}|1\\d{4,5}",[5,6,7,8,9,10,11],[["(\\d{3})(\\d{4,7})","$1 $2",["[89]0"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["66"],"0$1"],["(\\d)(\\d{8})","$1 $2",["6"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["1[16-8]|2[259]|3[124]|4[17-9]|5[124679]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-578]|91"],"0$1"],["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3",["9"],"0$1"]],"0"],NO:["47","00","(?:0|[2-9]\\d{3})\\d{4}",[5,8],[["(\\d{3})(\\d{2})(\\d{3})","$1 $2 $3",["[489]|59"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[235-7]"]]],0,0,0,0,0,"[02-689]|7[0-8]"],NP:["977","00","(?:1\\d|9)\\d{9}|[1-9]\\d{7}",[8,10,11],[["(\\d)(\\d{7})","$1-$2",["1[2-6]"],"0$1"],["(\\d{2})(\\d{6})","$1-$2",["1[01]|[2-8]|9(?:[1-59]|[67][2-6])"],"0$1"],["(\\d{3})(\\d{7})","$1-$2",["9"]]],"0"],NR:["674","00","(?:444|(?:55|8\\d)\\d|666)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[4-68]"]]]],NU:["683","00","(?:[47]|888\\d)\\d{3}",[4,7],[["(\\d{3})(\\d{4})","$1 $2",["8"]]]],NZ:["64","0(?:0|161)","[29]\\d{7,9}|50\\d{5}(?:\\d{2,3})?|6[0-35-9]\\d{6}|7\\d{7,8}|8\\d{4,9}|(?:11\\d|[34])\\d{7}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,8})","$1 $2",["8[1-579]"],"0$1"],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["50[036-8]|[89]0","50(?:[0367]|88)|[89]0"],"0$1"],["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["24|[346]|7[2-57-9]|9[2-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:10|74)|[59]|80"],"0$1"],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["1|2[028]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,5})","$1 $2 $3",["2(?:[169]|7[0-35-9])|7|86"],"0$1"]],"0",0,0,0,0,0,0,"00"],OM:["968","00","(?:1505|[279]\\d{3}|500)\\d{4}|800\\d{5,6}",[7,8,9],[["(\\d{3})(\\d{4,6})","$1 $2",["[58]"]],["(\\d{2})(\\d{6})","$1 $2",["2"]],["(\\d{4})(\\d{4})","$1 $2",["[179]"]]]],PA:["507","00","(?:00800|8\\d{3})\\d{6}|[68]\\d{7}|[1-57-9]\\d{6}",[7,8,10,11],[["(\\d{3})(\\d{4})","$1-$2",["[1-57-9]"]],["(\\d{4})(\\d{4})","$1-$2",["[68]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]]],PE:["51","00|19(?:1[124]|77|90)00","(?:[14-8]|9\\d)\\d{7}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["80"],"(0$1)"],["(\\d)(\\d{7})","$1 $2",["1"],"(0$1)"],["(\\d{2})(\\d{6})","$1 $2",["[4-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"]]],"0",0,0,0,0,0,0,"00"," Anexo "],PF:["689","00","4\\d{5}(?:\\d{2})?|8\\d{7,8}",[6,8,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["44"]],["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["4|8[7-9]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],PG:["675","00|140[1-3]","(?:180|[78]\\d{3})\\d{4}|(?:[2-589]\\d|64)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["18|[2-69]|85"]],["(\\d{4})(\\d{4})","$1 $2",["[78]"]]],0,0,0,0,0,0,0,"00"],PH:["63","00","(?:[2-7]|9\\d)\\d{8}|2\\d{5}|(?:1800|8)\\d{7,9}",[6,8,9,10,11,12,13],[["(\\d)(\\d{5})","$1 $2",["2"],"(0$1)"],["(\\d{4})(\\d{4,6})","$1 $2",["3(?:23|39|46)|4(?:2[3-6]|[35]9|4[26]|76)|544|88[245]|(?:52|64|86)2","3(?:230|397|461)|4(?:2(?:35|[46]4|51)|396|4(?:22|63)|59[347]|76[15])|5(?:221|446)|642[23]|8(?:622|8(?:[24]2|5[13]))"],"(0$1)"],["(\\d{5})(\\d{4})","$1 $2",["346|4(?:27|9[35])|883","3469|4(?:279|9(?:30|56))|8834"],"(0$1)"],["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["2"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|8[2-8]"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]],["(\\d{4})(\\d{1,2})(\\d{3})(\\d{4})","$1 $2 $3 $4",["1"]]],"0"],PK:["92","00","122\\d{6}|[24-8]\\d{10,11}|9(?:[013-9]\\d{8,10}|2(?:[01]\\d\\d|2(?:[06-8]\\d|1[01]))\\d{7})|(?:[2-8]\\d{3}|92(?:[0-7]\\d|8[1-9]))\\d{6}|[24-9]\\d{8}|[89]\\d{7}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,7})","$1 $2 $3",["[89]0"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["1"]],["(\\d{3})(\\d{6,7})","$1 $2",["2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:2[2-8]|3[27-9]|4[2-6]|6[3569]|9[25-8])","9(?:2[3-8]|98)|(?:2(?:3[2358]|4[2-4]|9[2-8])|45[3479]|54[2-467]|60[468]|72[236]|8(?:2[2-689]|3[23578]|4[3478]|5[2356])|9(?:22|3[27-9]|4[2-6]|6[3569]|9[25-7]))[2-9]"],"(0$1)"],["(\\d{2})(\\d{7,8})","$1 $2",["(?:2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91)[2-9]"],"(0$1)"],["(\\d{5})(\\d{5})","$1 $2",["58"],"(0$1)"],["(\\d{3})(\\d{7})","$1 $2",["3"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["2[125]|4[0-246-9]|5[1-35-7]|6[1-8]|7[14]|8[16]|91"],"(0$1)"],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[24-9]"],"(0$1)"]],"0"],PL:["48","00","(?:6|8\\d\\d)\\d{7}|[1-9]\\d{6}(?:\\d{2})?|[26]\\d{5}",[6,7,8,9,10],[["(\\d{5})","$1",["19"]],["(\\d{3})(\\d{3})","$1 $2",["11|20|64"]],["(\\d{2})(\\d{2})(\\d{3})","$1 $2 $3",["(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])1","(?:1[2-8]|2[2-69]|3[2-4]|4[1-468]|5[24-689]|6[1-3578]|7[14-7]|8[1-79]|9[145])19"]],["(\\d{3})(\\d{2})(\\d{2,3})","$1 $2 $3",["64"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["21|39|45|5[0137]|6[0469]|7[02389]|8(?:0[14]|8)"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["1[2-8]|[2-7]|8[1-79]|9[145]"]],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["8"]]]],PM:["508","00","[45]\\d{5}|(?:708|80\\d)\\d{6}",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[45]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"],"0$1"]],"0"],PR:["1","011","(?:[589]\\d\\d|787)\\d{7}",[10],0,"1",0,0,0,0,"787|939"],PS:["970","00","[2489]2\\d{6}|(?:1\\d|5)\\d{8}",[8,9,10],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["[2489]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["5"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],PT:["351","00","1693\\d{5}|(?:[26-9]\\d|30)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["2[12]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["16|[236-9]"]]]],PW:["680","01[12]","(?:[24-8]\\d\\d|345|900)\\d{4}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[2-9]"]]]],PY:["595","00","59\\d{4,6}|9\\d{5,10}|(?:[2-46-8]\\d|5[0-8])\\d{4,7}",[6,7,8,9,10,11],[["(\\d{3})(\\d{3,6})","$1 $2",["[2-9]0"],"0$1"],["(\\d{2})(\\d{5})","$1 $2",["[26]1|3[289]|4[1246-8]|7[1-3]|8[1-36]"],"(0$1)"],["(\\d{3})(\\d{4,5})","$1 $2",["2[279]|3[13-5]|4[359]|5|6(?:[34]|7[1-46-8])|7[46-8]|85"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["2[14-68]|3[26-9]|4[1246-8]|6(?:1|75)|7[1-35]|8[1-36]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["87"]],["(\\d{3})(\\d{6})","$1 $2",["9(?:[5-79]|8[1-6])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[2-8]"],"0$1"],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["9"]]],"0"],QA:["974","00","800\\d{4}|(?:2|800)\\d{6}|(?:0080|[3-7])\\d{7}",[7,8,9,11],[["(\\d{3})(\\d{4})","$1 $2",["2[16]|8"]],["(\\d{4})(\\d{4})","$1 $2",["[3-7]"]]]],RE:["262","00","(?:26|[689]\\d)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2689]"],"0$1"]],"0",0,0,0,0,0,[["26(?:2\\d\\d|3(?:0\\d|1[0-3]))\\d{4}"],["(?:69(?:2\\d\\d|3(?:0[0-46]|1[013]|2[0-2]|3[0-39]|4\\d|5[0-5]|6[0-6]|7[0-27]|8[0-8]|9[0-479]))|9(?:399[0-3]|479[0-2]|76(?:2[27]|3[0-37]|9\\d)))\\d{4}"],["80\\d{7}"],["89[1-37-9]\\d{6}"],0,0,0,0,0,["8(?:1[019]|2[0156]|84|90)\\d{6}"]]],RO:["40","00","(?:[2378]\\d|90)\\d{7}|[23]\\d{5}",[6,9],[["(\\d{3})(\\d{3})","$1 $2",["2[3-6]","2[3-6]\\d9"],"0$1"],["(\\d{2})(\\d{4})","$1 $2",["219|31"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[23]1"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[237-9]"],"0$1"]],"0",0,0,0,0,0,0,0," int "],RS:["381","00","38[02-9]\\d{6,9}|6\\d{7,9}|90\\d{4,8}|38\\d{5,6}|(?:7\\d\\d|800)\\d{3,9}|(?:[12]\\d|3[0-79])\\d{5,10}",[6,7,8,9,10,11,12],[["(\\d{3})(\\d{3,9})","$1 $2",["(?:2[389]|39)0|[7-9]"],"0$1"],["(\\d{2})(\\d{5,10})","$1 $2",["[1-36]"],"0$1"]],"0"],RU:["7","810","8\\d{13}|[347-9]\\d{9}",[10,14],[["(\\d{4})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-8]|2[1-9])","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:1[23]|[2-9]2))","7(?:1(?:[0-356]2|4[29]|7|8[27])|2(?:13[03-69]|62[013-9]))|72[1-57-9]2"],"8 ($1)",1],["(\\d{5})(\\d)(\\d{2})(\\d{2})","$1 $2 $3 $4",["7(?:1[0-68]|2[1-9])","7(?:1(?:[06][3-6]|[18]|2[35]|[3-5][3-5])|2(?:[13][3-5]|[24-689]|7[457]))","7(?:1(?:0(?:[356]|4[023])|[18]|2(?:3[013-9]|5)|3[45]|43[013-79]|5(?:3[1-8]|4[1-7]|5)|6(?:3[0-35-9]|[4-6]))|2(?:1(?:3[178]|[45])|[24-689]|3[35]|7[457]))|7(?:14|23)4[0-8]|71(?:33|45)[1-79]"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"8 ($1)",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2-$3-$4",["[349]|8(?:[02-7]|1[1-8])"],"8 ($1)",1],["(\\d{4})(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3 $4",["8"],"8 ($1)"]],"8",0,0,0,0,"3[04-689]|[489]",0,"8~10"],RW:["250","00","(?:06|[27]\\d\\d|[89]00)\\d{6}",[8,9],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["0"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[7-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["2"]]],"0"],SA:["966","00","92\\d{7}|(?:[15]|8\\d)\\d{8}",[9,10],[["(\\d{4})(\\d{5})","$1 $2",["9"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["1"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["5"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["81"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]]],"0"],SB:["677","0[01]","(?:[1-6]|[7-9]\\d\\d)\\d{4}",[5,7],[["(\\d{2})(\\d{5})","$1 $2",["7|8[4-9]|9(?:[1-8]|9[0-8])"]]]],SC:["248","010|0[0-2]","800\\d{4}|(?:[249]\\d|64)\\d{5}",[7],[["(\\d)(\\d{3})(\\d{3})","$1 $2 $3",["[246]|9[57]"]]],0,0,0,0,0,0,0,"00"],SD:["249","00","[19]\\d{8}",[9],[["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[19]"],"0$1"]],"0"],SE:["46","00","(?:[26]\\d\\d|9)\\d{9}|[1-9]\\d{8}|[1-689]\\d{7}|[1-4689]\\d{6}|2\\d{5}",[6,7,8,9,10],[["(\\d{2})(\\d{2,3})(\\d{2})","$1-$2 $3",["20"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{4})","$1-$2",["9(?:00|39|44|9)"],"0$1",0,"$1 $2"],["(\\d{2})(\\d{3})(\\d{2})","$1-$2 $3",["[12][136]|3[356]|4[0246]|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3"],["(\\d)(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2,3})(\\d{2})","$1-$2 $3",["1[2457]|2(?:[247-9]|5[0138])|3[0247-9]|4[1357-9]|5[0-35-9]|6(?:[125689]|4[02-57]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3"],["(\\d{3})(\\d{2,3})(\\d{3})","$1-$2 $3",["9(?:00|39|44)"],"0$1",0,"$1 $2 $3"],["(\\d{2})(\\d{2,3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["1[13689]|2[0136]|3[1356]|4[0246]|54|6[03]|90[1-9]"],"0$1",0,"$1 $2 $3 $4"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4",["10|7"],"0$1",0,"$1 $2 $3 $4"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1-$2 $3 $4",["8"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1-$2 $3 $4",["[13-5]|2(?:[247-9]|5[0138])|6(?:[124-689]|7[0-2])|9(?:[125-8]|3[02-5]|4[0-3])"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{2})(\\d{3})","$1-$2 $3 $4",["9"],"0$1",0,"$1 $2 $3 $4"],["(\\d{3})(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1-$2 $3 $4 $5",["[26]"],"0$1",0,"$1 $2 $3 $4 $5"]],"0"],SG:["65","0[0-3]\\d","(?:(?:1\\d|8)\\d\\d|7000)\\d{7}|[3689]\\d{7}",[8,10,11],[["(\\d{4})(\\d{4})","$1 $2",["[369]|8(?:0[1-6]|[1-9])"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"]],["(\\d{4})(\\d{4})(\\d{3})","$1 $2 $3",["7"]],["(\\d{4})(\\d{3})(\\d{4})","$1 $2 $3",["1"]]]],SH:["290","00","(?:[256]\\d|8)\\d{3}",[4,5],0,0,0,0,0,0,"[256]"],SI:["386","00|10(?:22|66|88|99)","[1-7]\\d{7}|8\\d{4,7}|90\\d{4,6}",[5,6,7,8],[["(\\d{2})(\\d{3,6})","$1 $2",["8[09]|9"],"0$1"],["(\\d{3})(\\d{5})","$1 $2",["59|8"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[37][01]|4[0139]|51|6"],"0$1"],["(\\d)(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[1-57]"],"(0$1)"]],"0",0,0,0,0,0,0,"00"],SJ:["47","00","0\\d{4}|(?:[489]\\d|[57]9)\\d{6}",[5,8],0,0,0,0,0,0,"79"],SK:["421","00","[2-689]\\d{8}|[2-59]\\d{6}|[2-5]\\d{5}",[6,7,9],[["(\\d)(\\d{2})(\\d{3,4})","$1 $2 $3",["21"],"0$1"],["(\\d{2})(\\d{2})(\\d{2,3})","$1 $2 $3",["[3-5][1-8]1","[3-5][1-8]1[67]"],"0$1"],["(\\d)(\\d{3})(\\d{3})(\\d{2})","$1/$2 $3 $4",["2"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[689]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1/$2 $3 $4",["[3-5]"],"0$1"]],"0"],SL:["232","00","(?:[237-9]\\d|66)\\d{6}",[8],[["(\\d{2})(\\d{6})","$1 $2",["[236-9]"],"(0$1)"]],"0"],SM:["378","00","(?:0549|[5-7]\\d)\\d{6}",[8,10],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[5-7]"]],["(\\d{4})(\\d{6})","$1 $2",["0"]]],0,0,"([89]\\d{5})$","0549$1"],SN:["221","00","(?:[378]\\d|93)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[379]"]]]],SO:["252","00","[346-9]\\d{8}|[12679]\\d{7}|[1-5]\\d{6}|[1348]\\d{5}",[6,7,8,9],[["(\\d{2})(\\d{4})","$1 $2",["8[125]"]],["(\\d{6})","$1",["[134]"]],["(\\d)(\\d{6})","$1 $2",["[15]|2[0-79]|3[0-46-8]|4[0-7]"]],["(\\d)(\\d{7})","$1 $2",["(?:2|90)4|[67]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3478]|64|90"]],["(\\d{2})(\\d{5,7})","$1 $2",["1|28|6(?:0[5-7]|[1-35-9])|9[2-9]"]]],"0"],SR:["597","00","(?:[2-5]|68|[78]\\d)\\d{5}",[6,7],[["(\\d{2})(\\d{2})(\\d{2})","$1-$2-$3",["56"]],["(\\d{3})(\\d{3})","$1-$2",["[2-5]"]],["(\\d{3})(\\d{4})","$1-$2",["[6-8]"]]]],SS:["211","00","[19]\\d{8}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[19]"],"0$1"]],"0"],ST:["239","00","(?:22|9\\d)\\d{5}",[7],[["(\\d{3})(\\d{4})","$1 $2",["[29]"]]]],SV:["503","00","[267]\\d{7}|[89]00\\d{4}(?:\\d{4})?",[7,8,11],[["(\\d{3})(\\d{4})","$1 $2",["[89]"]],["(\\d{4})(\\d{4})","$1 $2",["[267]"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["[89]"]]]],SX:["1","011","7215\\d{6}|(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"(5\\d{6})$|1","721$1",0,"721"],SY:["963","00","[1-39]\\d{8}|[1-5]\\d{7}",[8,9],[["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-5]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1",1]],"0"],SZ:["268","00","0800\\d{4}|(?:[237]\\d|900)\\d{6}",[8,9],[["(\\d{4})(\\d{4})","$1 $2",["[0237]"]],["(\\d{5})(\\d{4})","$1 $2",["9"]]]],TA:["290","00","8\\d{3}",[4],0,0,0,0,0,0,"8"],TC:["1","011","(?:[58]\\d\\d|649|900)\\d{7}",[10],0,"1",0,"([2-479]\\d{6})$|1","649$1",0,"649"],TD:["235","00|16","(?:22|[69]\\d|77)\\d{6}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[2679]"]]],0,0,0,0,0,0,0,"00"],TG:["228","00","[279]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[279]"]]]],TH:["66","00[1-9]","(?:001800|[2-57]|[689]\\d)\\d{7}|1\\d{7,9}",[8,9,10,13],[["(\\d)(\\d{3})(\\d{4})","$1 $2 $3",["2"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[13-9]"],"0$1"],["(\\d{4})(\\d{3})(\\d{3})","$1 $2 $3",["1"]]],"0"],TJ:["992","810","[0-57-9]\\d{8}",[9],[["(\\d{6})(\\d)(\\d{2})","$1 $2 $3",["331","3317"]],["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[34]7|91[78]"]],["(\\d{4})(\\d)(\\d{4})","$1 $2 $3",["3[1-5]"]],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[0-57-9]"]]],0,0,0,0,0,0,0,"8~10"],TK:["690","00","[2-47]\\d{3,6}",[4,5,6,7]],TL:["670","00","7\\d{7}|(?:[2-47]\\d|[89]0)\\d{5}",[7,8],[["(\\d{3})(\\d{4})","$1 $2",["[2-489]|70"]],["(\\d{4})(\\d{4})","$1 $2",["7"]]]],TM:["993","810","[1-6]\\d{7}",[8],[["(\\d{2})(\\d{2})(\\d{2})(\\d{2})","$1 $2-$3-$4",["12"],"(8 $1)"],["(\\d{3})(\\d)(\\d{2})(\\d{2})","$1 $2-$3-$4",["[1-5]"],"(8 $1)"],["(\\d{2})(\\d{6})","$1 $2",["6"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],TN:["216","00","[2-57-9]\\d{7}",[8],[["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-57-9]"]]]],TO:["676","00","(?:0800|(?:[5-8]\\d\\d|999)\\d)\\d{3}|[2-8]\\d{4}",[5,7],[["(\\d{2})(\\d{3})","$1-$2",["[2-4]|50|6[09]|7[0-24-69]|8[05]"]],["(\\d{4})(\\d{3})","$1 $2",["0"]],["(\\d{3})(\\d{4})","$1 $2",["[5-9]"]]]],TR:["90","00","4\\d{6}|8\\d{11,12}|(?:[2-58]\\d\\d|900)\\d{7}",[7,10,12,13],[["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["512|8[01589]|90"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["5(?:[0-59]|61)","5(?:[0-59]|616)","5(?:[0-59]|6161)"],"0$1",1],["(\\d{3})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[24][1-8]|3[1-9]"],"(0$1)",1],["(\\d{3})(\\d{3})(\\d{6,7})","$1 $2 $3",["80"],"0$1",1]],"0"],TT:["1","011","(?:[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-46-8]\\d{6})$|1","868$1",0,"868"],TV:["688","00","(?:2|7\\d\\d|90)\\d{4}",[5,6,7],[["(\\d{2})(\\d{3})","$1 $2",["2"]],["(\\d{2})(\\d{4})","$1 $2",["90"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],TW:["886","0(?:0[25-79]|19)","[2-689]\\d{8}|7\\d{9,10}|[2-8]\\d{7}|2\\d{6}",[7,8,9,10,11],[["(\\d{2})(\\d)(\\d{4})","$1 $2 $3",["202"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["[258]0"],"0$1"],["(\\d)(\\d{3,4})(\\d{4})","$1 $2 $3",["[23568]|4(?:0[02-48]|[1-47-9])|7[1-9]","[23568]|4(?:0[2-48]|[1-47-9])|(?:400|7)[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[49]"],"0$1"],["(\\d{2})(\\d{4})(\\d{4,5})","$1 $2 $3",["7"],"0$1"]],"0",0,0,0,0,0,0,0,"#"],TZ:["255","00[056]","(?:[25-8]\\d|41|90)\\d{7}",[9],[["(\\d{3})(\\d{2})(\\d{4})","$1 $2 $3",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[24]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["5"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[67]"],"0$1"]],"0"],UA:["380","00","[89]\\d{9}|[3-9]\\d{8}",[9,10],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["6[12][29]|(?:3[1-8]|4[136-8]|5[12457]|6[49])2|(?:56|65)[24]","6[12][29]|(?:35|4[1378]|5[12457]|6[49])2|(?:56|65)[24]|(?:3[1-46-8]|46)2[013-9]"],"0$1"],["(\\d{4})(\\d{5})","$1 $2",["3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6[0135689]|7[4-6])|6(?:[12][3-7]|[459])","3[1-8]|4(?:[1367]|[45][6-9]|8[4-6])|5(?:[1-5]|6(?:[015689]|3[02389])|7[4-6])|6(?:[12][3-7]|[459])"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[3-7]|89|9[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["[89]"],"0$1"]],"0",0,0,0,0,0,0,"0~0"],UG:["256","00[057]","800\\d{6}|(?:[29]0|[347]\\d)\\d{7}",[9],[["(\\d{4})(\\d{5})","$1 $2",["202","2024"],"0$1"],["(\\d{3})(\\d{6})","$1 $2",["[27-9]|4(?:6[45]|[7-9])"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[34]"],"0$1"]],"0"],US:["1","011","[2-9]\\d{9}|3\\d{6}",[10],[["(\\d{3})(\\d{4})","$1-$2",["310"],0,1],["(\\d{3})(\\d{3})(\\d{4})","($1) $2-$3",["[2-9]"],0,1,"$1-$2-$3"]],"1",0,0,0,0,0,[["(?:4722(?:0[0-35]|27)|505(?:[2-57-9]\\d\\d|6(?:[0-35-9]\\d|4[46])))\\d{4}|(?:2(?:0[1-35-9]|1[02-9]|2[03-589]|3[149]|4[08]|5[1-46]|6[0279]|7[0269]|8[13])|3(?:0[1-57-9]|1[02-9]|2[01356]|3[0-24679]|4[167]|5[0-2]|6[014]|8[056])|4(?:0[124-9]|1[02-579]|2[3-5]|3[0245]|4[023578]|58|6[349]|7[0589]|8[04])|5(?:0[1-47-9]|1[0235-8]|20|3[0149]|4[01]|5[179]|6[1-47]|7[0-5]|8[0256])|6(?:0[1-35-9]|1[024-9]|2[03689]|[34][016]|5[01679]|6[0-279]|78|8[0-29])|7(?:0[1-46-8]|1[2-9]|2[04-7]|3[1247]|4[037]|5[47]|6[02359]|7[0-59]|8[156])|8(?:0[1-68]|1[02-8]|2[068]|3[0-2589]|4[03578]|5[046-9]|6[02-5]|7[028])|9(?:0[1346-9]|1[02-9]|2[0589]|3[0146-8]|4[01357-9]|5[12469]|7[0-389]|8[04-69]))[2-9]\\d{6}"],[""],["8(?:00|33|44|55|66|77|88)[2-9]\\d{6}"],["900[2-9]\\d{6}"],["52(?:3(?:[2-46-9][02-9]\\d|5(?:[02-46-9]\\d|5[0-46-9]))|4(?:[2-478][02-9]\\d|5(?:[034]\\d|2[024-9]|5[0-46-9])|6(?:0[1-9]|[2-9]\\d)|9(?:[05-9]\\d|2[0-5]|49)))\\d{4}|52[34][2-9]1[02-9]\\d{4}|5(?:00|2[125-9]|33|44|66|77|88)[2-9]\\d{6}"]]],UY:["598","0(?:0|1[3-9]\\d)","(?:0004|4)\\d{9}|[1249]\\d{7}|(?:[49]\\d|80)\\d{5}",[7,8,10,13],[["(\\d{3})(\\d{4})","$1 $2",["405|8|90"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["9"],"0$1"],["(\\d{4})(\\d{4})","$1 $2",["[124]"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["4"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3 $4",["0"]]],"0",0,0,0,0,0,0,"00"," int. "],UZ:["998","810","(?:33|[5-79]\\d|88)\\d{7}",[9],[["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[35-9]"],"8 $1"]],"8",0,0,0,0,0,0,"8~10"],VA:["39","00","0\\d{5,10}|3[0-8]\\d{7,10}|55\\d{8}|8\\d{5}(?:\\d{2,4})?|(?:1\\d|39)\\d{7,8}",[6,7,8,9,10,11],0,0,0,0,0,0,"06698"],VC:["1","011","(?:[58]\\d\\d|784|900)\\d{7}",[10],0,"1",0,"([2-7]\\d{6})$|1","784$1",0,"784"],VE:["58","00","[68]00\\d{7}|(?:[24]\\d|[59]0)\\d{8}",[10],[["(\\d{3})(\\d{7})","$1-$2",["[24-689]"],"0$1"]],"0"],VG:["1","011","(?:284|[58]\\d\\d|900)\\d{7}",[10],0,"1",0,"([2-578]\\d{6})$|1","284$1",0,"284"],VI:["1","011","[58]\\d{9}|(?:34|90)0\\d{7}",[10],0,"1",0,"([2-9]\\d{6})$|1","340$1",0,"340"],VN:["84","00","[12]\\d{9}|[135-9]\\d{8}|[16]\\d{7}|[16-8]\\d{6}",[7,8,9,10],[["(\\d{2})(\\d{5})","$1 $2",["80"],"0$1",1],["(\\d{4})(\\d{4,6})","$1 $2",["1"],0,1],["(\\d{2})(\\d{3})(\\d{2})(\\d{2})","$1 $2 $3 $4",["[69]"],"0$1",1],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[3578]"],"0$1",1],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["2[48]"],"0$1",1],["(\\d{3})(\\d{4})(\\d{3})","$1 $2 $3",["2"],"0$1",1]],"0"],VU:["678","00","[57-9]\\d{6}|(?:[238]\\d|48)\\d{3}",[5,7],[["(\\d{3})(\\d{4})","$1 $2",["[57-9]"]]]],WF:["681","00","(?:40|72)\\d{4}|8\\d{5}(?:\\d{3})?",[6,9],[["(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3",["[478]"]],["(\\d{3})(\\d{2})(\\d{2})(\\d{2})","$1 $2 $3 $4",["8"]]]],WS:["685","0","(?:[2-6]|8\\d{5})\\d{4}|[78]\\d{6}|[68]\\d{5}",[5,6,7,10],[["(\\d{5})","$1",["[2-5]|6[1-9]"]],["(\\d{3})(\\d{3,7})","$1 $2",["[68]"]],["(\\d{2})(\\d{5})","$1 $2",["7"]]]],XK:["383","00","[23]\\d{7,8}|(?:4\\d\\d|[89]00)\\d{5}",[8,9],[["(\\d{3})(\\d{5})","$1 $2",["[89]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3})","$1 $2 $3",["[2-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[23]"],"0$1"]],"0"],YE:["967","00","(?:1|7\\d)\\d{7}|[1-7]\\d{6}",[7,8,9],[["(\\d)(\\d{3})(\\d{3,4})","$1 $2 $3",["[1-6]|7(?:[24-6]|8[0-7])"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["7"],"0$1"]],"0"],YT:["262","00","(?:(?:(?:26|63)9|80\\d)\\d|9398)\\d{5}",[9],0,"0",0,0,0,0,"269|63|9398"],ZA:["27","00","[1-79]\\d{8}|8\\d{4,9}",[5,6,7,8,9,10],[["(\\d{2})(\\d{3,4})","$1 $2",["8[1-4]"],"0$1"],["(\\d{2})(\\d{3})(\\d{2,3})","$1 $2 $3",["8[1-4]"],"0$1"],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["860"],"0$1"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["[1-9]"],"0$1"],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["8"],"0$1"]],"0"],ZM:["260","00","800\\d{6}|(?:21|63|[79]\\d)\\d{7}",[9],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[28]"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["[79]"],"0$1"]],"0"],ZW:["263","00","2(?:[0-57-9]\\d{6,8}|6[0-24-9]\\d{6,7})|[38]\\d{9}|[35-8]\\d{8}|[3-6]\\d{7}|[1-689]\\d{6}|[1-3569]\\d{5}|[1356]\\d{4}",[5,6,7,8,9,10],[["(\\d{3})(\\d{3,5})","$1 $2",["2(?:0[45]|2[278]|[49]8)|3(?:[09]8|17)|6(?:[29]8|37|75)|[23][78]|(?:33|5[15]|6[68])[78]"],"0$1"],["(\\d)(\\d{3})(\\d{2,4})","$1 $2 $3",["[49]"],"0$1"],["(\\d{3})(\\d{4})","$1 $2",["80"],"0$1"],["(\\d{2})(\\d{7})","$1 $2",["24|8[13-59]|(?:2[05-79]|39|5[45]|6[15-8])2","2(?:02[014]|4|[56]20|[79]2)|392|5(?:42|525)|6(?:[16-8]21|52[013])|8[13-59]"],"(0$1)"],["(\\d{2})(\\d{3})(\\d{4})","$1 $2 $3",["7"],"0$1"],["(\\d{3})(\\d{3})(\\d{3,4})","$1 $2 $3",["2(?:1[39]|2[0157]|[378]|[56][14])|3(?:12|29)","2(?:1[39]|2[0157]|[378]|[56][14])|3(?:123|29)"],"0$1"],["(\\d{4})(\\d{6})","$1 $2",["8"],"0$1"],["(\\d{2})(\\d{3,5})","$1 $2",["1|2(?:0[0-36-9]|12|29|[56])|3(?:1[0-689]|[24-6])|5(?:[0236-9]|1[2-4])|6(?:[013-59]|7[0-46-9])|(?:33|55|6[68])[0-69]|(?:29|3[09]|62)[0-79]"],"0$1"],["(\\d{2})(\\d{3})(\\d{3,4})","$1 $2 $3",["29[013-9]|39|54"],"0$1"],["(\\d{4})(\\d{3,5})","$1 $2",["(?:25|54)8","258|5483"],"0$1"]],"0"]},nonGeographic:{800:["800",0,"(?:00|[1-9]\\d)\\d{6}",[8],[["(\\d{4})(\\d{4})","$1 $2",["\\d"]]],0,0,0,0,0,0,[0,0,["(?:00|[1-9]\\d)\\d{6}"]]],808:["808",0,"[1-9]\\d{7}",[8],[["(\\d{4})(\\d{4})","$1 $2",["[1-9]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,0,["[1-9]\\d{7}"]]],870:["870",0,"7\\d{11}|[35-7]\\d{8}",[9,12],[["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["[35-7]"]]],0,0,0,0,0,0,[0,["(?:[356]|774[45])\\d{8}|7[6-8]\\d{7}"]]],878:["878",0,"10\\d{10}",[12],[["(\\d{2})(\\d{5})(\\d{5})","$1 $2 $3",["1"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["10\\d{10}"]]],881:["881",0,"[0-36-9]\\d{8}",[9],[["(\\d)(\\d{3})(\\d{5})","$1 $2 $3",["[0-36-9]"]]],0,0,0,0,0,0,[0,["[0-36-9]\\d{8}"]]],882:["882",0,"[13]\\d{6}(?:\\d{2,5})?|[19]\\d{7}|(?:[25]\\d\\d|4)\\d{7}(?:\\d{2})?",[7,8,9,10,11,12],[["(\\d{2})(\\d{5})","$1 $2",["16|342"]],["(\\d{2})(\\d{6})","$1 $2",["49"]],["(\\d{2})(\\d{2})(\\d{4})","$1 $2 $3",["1[36]|9"]],["(\\d{2})(\\d{4})(\\d{3})","$1 $2 $3",["3[23]"]],["(\\d{2})(\\d{3,4})(\\d{4})","$1 $2 $3",["16"]],["(\\d{2})(\\d{4})(\\d{4})","$1 $2 $3",["10|23|3(?:[15]|4[57])|4|51"]],["(\\d{3})(\\d{4})(\\d{4})","$1 $2 $3",["34"]],["(\\d{2})(\\d{4,5})(\\d{5})","$1 $2 $3",["[1-35]"]]],0,0,0,0,0,0,[0,["342\\d{4}|(?:337|49)\\d{6}|(?:3(?:2|47|7\\d{3})|50\\d{3})\\d{7}",[7,8,9,10,12]],0,0,0,0,0,0,["1(?:3(?:0[0347]|[13][0139]|2[035]|4[013568]|6[0459]|7[06]|8[15-8]|9[0689])\\d{4}|6\\d{5,10})|(?:345\\d|9[89])\\d{6}|(?:10|2(?:3|85\\d)|3(?:[15]|[69]\\d\\d)|4[15-8]|51)\\d{8}"]]],883:["883",0,"(?:[1-4]\\d|51)\\d{6,10}",[8,9,10,11,12],[["(\\d{3})(\\d{3})(\\d{2,8})","$1 $2 $3",["[14]|2[24-689]|3[02-689]|51[24-9]"]],["(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3",["510"]],["(\\d{3})(\\d{3})(\\d{4})","$1 $2 $3",["21"]],["(\\d{4})(\\d{4})(\\d{4})","$1 $2 $3",["51[13]"]],["(\\d{3})(\\d{3})(\\d{3})(\\d{3})","$1 $2 $3 $4",["[235]"]]],0,0,0,0,0,0,[0,0,0,0,0,0,0,0,["(?:2(?:00\\d\\d|10)|(?:370[1-9]|51\\d0)\\d)\\d{7}|51(?:00\\d{5}|[24-9]0\\d{4,7})|(?:1[013-79]|2[24-689]|3[02-689]|4[0-4])0\\d{5,9}"]]],888:["888",0,"\\d{11}",[11],[["(\\d{3})(\\d{3})(\\d{5})","$1 $2 $3"]],0,0,0,0,0,0,[0,0,0,0,0,0,["\\d{11}"]]],979:["979",0,"[1359]\\d{8}",[9],[["(\\d)(\\d{4})(\\d{4})","$1 $2 $3",["[1359]"]]],0,0,0,0,0,0,[0,0,0,["[1359]\\d{8}"]]]}};function lE(e){return lE="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},lE(e)}function cE(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function dE(e){var t=mE();return function(){var n,r=yE(e);if(t){var i=yE(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return function(e,t){if(t&&("object"===lE(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return fE(e)}(this,n)}}function fE(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function hE(e){var t="function"==typeof Map?new Map:void 0;return hE=function(e){if(null===e||(n=e,-1===Function.toString.call(n).indexOf("[native code]")))return e;var n;if("function"!=typeof e)throw new TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,r)}function r(){return pE(e,arguments,yE(this).constructor)}return r.prototype=Object.create(e.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),_E(r,e)},hE(e)}function pE(e,t,n){return pE=mE()?Reflect.construct:function(e,t,n){var r=[null];r.push.apply(r,t);var i=new(Function.bind.apply(e,r));return n&&_E(i,n.prototype),i},pE.apply(null,arguments)}function mE(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}function _E(e,t){return _E=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},_E(e,t)}function yE(e){return yE=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},yE(e)}var gE=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&_E(e,t)}(a,hE(Error));var t,n,r,i=dE(a);function a(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),t=i.call(this,e),Object.setPrototypeOf(fE(t),a.prototype),t.name=t.constructor.name,t}return t=a,n&&cE(t.prototype,n),r&&cE(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}(),vE=2,AE=17,EE=3,bE="0-90-9٠-٩۰-۹",SE="".concat("-‐-―−ー-").concat("//").concat("..").concat(" ").concat("()()[]\\[\\]").concat("~⁓∼~");function ME(e,t){e=e.split("-"),t=t.split("-");for(var n=e[0].split("."),r=t[0].split("."),i=0;i<3;i++){var a=Number(n[i]),o=Number(r[i]);if(a>o)return 1;if(o>a)return-1;if(!isNaN(a)&&isNaN(o))return 1;if(isNaN(a)&&!isNaN(o))return-1}return e[1]&&t[1]?e[1]>t[1]?1:e[1]<t[1]?-1:0:!e[1]&&t[1]?1:e[1]&&!t[1]?-1:0}function TE(e){return TE="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},TE(e)}function wE(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function OE(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}function NE(e,t,n){return t&&OE(e.prototype,t),n&&OE(e,n),Object.defineProperty(e,"prototype",{writable:!1}),e}var CE=" ext. ",LE=/^\d+$/,DE=function(){function e(t){wE(this,e),function(e){if(!e)throw new Error("[libphonenumber-js] `metadata` argument not passed. Check your arguments.");if(!RE(e)||!RE(e.countries))throw new Error("[libphonenumber-js] `metadata` argument was passed but it's not a valid metadata. Must be an object having `.countries` child object property. Got ".concat(RE(e)?"an object of shape: { "+Object.keys(e).join(", ")+" }":"a "+ZE(e)+": "+e,"."))}(t),this.metadata=t,FE.call(this,t)}return NE(e,[{key:"getCountries",value:function(){return Object.keys(this.metadata.countries).filter((function(e){return"001"!==e}))}},{key:"getCountryMetadata",value:function(e){return this.metadata.countries[e]}},{key:"nonGeographic",value:function(){if(!(this.v1||this.v2||this.v3))return this.metadata.nonGeographic||this.metadata.nonGeographical}},{key:"hasCountry",value:function(e){return void 0!==this.getCountryMetadata(e)}},{key:"hasCallingCode",value:function(e){if(this.getCountryCodesForCallingCode(e))return!0;if(this.nonGeographic()){if(this.nonGeographic()[e])return!0}else{var t=this.countryCallingCodes()[e];if(t&&1===t.length&&"001"===t[0])return!0}}},{key:"isNonGeographicCallingCode",value:function(e){return this.nonGeographic()?!!this.nonGeographic()[e]:!this.getCountryCodesForCallingCode(e)}},{key:"country",value:function(e){return this.selectNumberingPlan(e)}},{key:"selectNumberingPlan",value:function(e,t){if(e&&LE.test(e)&&(t=e,e=null),e&&"001"!==e){if(!this.hasCountry(e))throw new Error("Unknown country: ".concat(e));this.numberingPlan=new $E(this.getCountryMetadata(e),this)}else if(t){if(!this.hasCallingCode(t))throw new Error("Unknown calling code: ".concat(t));this.numberingPlan=new $E(this.getNumberingPlanMetadata(t),this)}else this.numberingPlan=void 0;return this}},{key:"getCountryCodesForCallingCode",value:function(e){var t=this.countryCallingCodes()[e];if(t){if(1===t.length&&3===t[0].length)return;return t}}},{key:"getCountryCodeForCallingCode",value:function(e){var t=this.getCountryCodesForCallingCode(e);if(t)return t[0]}},{key:"getNumberingPlanMetadata",value:function(e){var t=this.getCountryCodeForCallingCode(e);if(t)return this.getCountryMetadata(t);if(this.nonGeographic()){var n=this.nonGeographic()[e];if(n)return n}else{var r=this.countryCallingCodes()[e];if(r&&1===r.length&&"001"===r[0])return this.metadata.countries["001"]}}},{key:"countryCallingCode",value:function(){return this.numberingPlan.callingCode()}},{key:"IDDPrefix",value:function(){return this.numberingPlan.IDDPrefix()}},{key:"defaultIDDPrefix",value:function(){return this.numberingPlan.defaultIDDPrefix()}},{key:"nationalNumberPattern",value:function(){return this.numberingPlan.nationalNumberPattern()}},{key:"possibleLengths",value:function(){return this.numberingPlan.possibleLengths()}},{key:"formats",value:function(){return this.numberingPlan.formats()}},{key:"nationalPrefixForParsing",value:function(){return this.numberingPlan.nationalPrefixForParsing()}},{key:"nationalPrefixTransformRule",value:function(){return this.numberingPlan.nationalPrefixTransformRule()}},{key:"leadingDigits",value:function(){return this.numberingPlan.leadingDigits()}},{key:"hasTypes",value:function(){return this.numberingPlan.hasTypes()}},{key:"type",value:function(e){return this.numberingPlan.type(e)}},{key:"ext",value:function(){return this.numberingPlan.ext()}},{key:"countryCallingCodes",value:function(){return this.v1?this.metadata.country_phone_code_to_countries:this.metadata.country_calling_codes}},{key:"chooseCountryByCountryCallingCode",value:function(e){return this.selectNumberingPlan(e)}},{key:"hasSelectedNumberingPlan",value:function(){return void 0!==this.numberingPlan}}]),e}(),$E=function(){function e(t,n){wE(this,e),this.globalMetadataObject=n,this.metadata=t,FE.call(this,n.metadata)}return NE(e,[{key:"callingCode",value:function(){return this.metadata[0]}},{key:"getDefaultCountryMetadataForRegion",value:function(){return this.globalMetadataObject.getNumberingPlanMetadata(this.callingCode())}},{key:"IDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[1]}},{key:"defaultIDDPrefix",value:function(){if(!this.v1&&!this.v2)return this.metadata[12]}},{key:"nationalNumberPattern",value:function(){return this.v1||this.v2?this.metadata[1]:this.metadata[2]}},{key:"possibleLengths",value:function(){if(!this.v1)return this.metadata[this.v2?2:3]}},{key:"_getFormats",value:function(e){return e[this.v1?2:this.v2?3:4]}},{key:"formats",value:function(){var e=this,t=this._getFormats(this.metadata)||this._getFormats(this.getDefaultCountryMetadataForRegion())||[];return t.map((function(t){return new IE(t,e)}))}},{key:"nationalPrefix",value:function(){return this.metadata[this.v1?3:this.v2?4:5]}},{key:"_getNationalPrefixFormattingRule",value:function(e){return e[this.v1?4:this.v2?5:6]}},{key:"nationalPrefixFormattingRule",value:function(){return this._getNationalPrefixFormattingRule(this.metadata)||this._getNationalPrefixFormattingRule(this.getDefaultCountryMetadataForRegion())}},{key:"_nationalPrefixForParsing",value:function(){return this.metadata[this.v1?5:this.v2?6:7]}},{key:"nationalPrefixForParsing",value:function(){return this._nationalPrefixForParsing()||this.nationalPrefix()}},{key:"nationalPrefixTransformRule",value:function(){return this.metadata[this.v1?6:this.v2?7:8]}},{key:"_getNationalPrefixIsOptionalWhenFormatting",value:function(){return!!this.metadata[this.v1?7:this.v2?8:9]}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return this._getNationalPrefixIsOptionalWhenFormatting(this.metadata)||this._getNationalPrefixIsOptionalWhenFormatting(this.getDefaultCountryMetadataForRegion())}},{key:"leadingDigits",value:function(){return this.metadata[this.v1?8:this.v2?9:10]}},{key:"types",value:function(){return this.metadata[this.v1?9:this.v2?10:11]}},{key:"hasTypes",value:function(){return(!this.types()||0!==this.types().length)&&!!this.types()}},{key:"type",value:function(e){if(this.hasTypes()&&zE(this.types(),e))return new kE(zE(this.types(),e),this)}},{key:"ext",value:function(){return this.v1||this.v2?CE:this.metadata[13]||CE}}]),e}(),IE=function(){function e(t,n){wE(this,e),this._format=t,this.metadata=n}return NE(e,[{key:"pattern",value:function(){return this._format[0]}},{key:"format",value:function(){return this._format[1]}},{key:"leadingDigitsPatterns",value:function(){return this._format[2]||[]}},{key:"nationalPrefixFormattingRule",value:function(){return this._format[3]||this.metadata.nationalPrefixFormattingRule()}},{key:"nationalPrefixIsOptionalWhenFormattingInNationalFormat",value:function(){return!!this._format[4]||this.metadata.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"nationalPrefixIsMandatoryWhenFormattingInNationalFormat",value:function(){return this.usesNationalPrefix()&&!this.nationalPrefixIsOptionalWhenFormattingInNationalFormat()}},{key:"usesNationalPrefix",value:function(){return!(!this.nationalPrefixFormattingRule()||xE.test(this.nationalPrefixFormattingRule()))}},{key:"internationalFormat",value:function(){return this._format[5]||this.format()}}]),e}(),xE=/^\(?\$1\)?$/,kE=function(){function e(t,n){wE(this,e),this.type=t,this.metadata=n}return NE(e,[{key:"pattern",value:function(){return this.metadata.v1?this.type:this.type[0]}},{key:"possibleLengths",value:function(){if(!this.metadata.v1)return this.type[1]||this.metadata.possibleLengths()}}]),e}();function zE(e,t){switch(t){case"FIXED_LINE":return e[0];case"MOBILE":return e[1];case"TOLL_FREE":return e[2];case"PREMIUM_RATE":return e[3];case"PERSONAL_NUMBER":return e[4];case"VOICEMAIL":return e[5];case"UAN":return e[6];case"PAGER":return e[7];case"VOIP":return e[8];case"SHARED_COST":return e[9]}}var RE=function(e){return"object"===TE(e)},ZE=function(e){return TE(e)};function PE(e,t){if((t=new DE(t)).hasCountry(e))return t.country(e).countryCallingCode();throw new Error("Unknown country: ".concat(e))}function FE(e){var t=e.version;"number"==typeof t?(this.v1=1===t,this.v2=2===t,this.v3=3===t,this.v4=4===t):t?-1===ME(t,"1.2.0")?this.v2=!0:-1===ME(t,"1.7.35")?this.v3=!0:this.v4=!0:this.v1=!0}var UE=function(e){return"([".concat(bE,"]{1,").concat(e,"})")};function BE(e){var t="[ \\t,]*",n="[:\\..]?[ \\t,-]*",r="#?",i="[ \\t]*";return";ext="+UE("20")+"|"+(t+"(?:e?xt(?:ensi(?:ó?|ó))?n?|e?xtn?|доб|anexo)"+n+UE("20")+r)+"|"+(t+"(?:[xx##~~]|int|int)"+n+UE("9")+r)+"|"+("[- ]+"+UE("6")+"#")+"|"+(i+"(?:,{2}|;)"+n+UE("15")+r)+"|"+(i+"(?:,)+"+n+UE("9")+r)}var VE="["+bE+"]{"+vE+"}",HE="[++]{0,1}(?:["+SE+"]*["+bE+"]){3,}["+SE+bE+"]*",YE=new RegExp("^[++]{0,1}(?:["+SE+"]*["+bE+"]){1,2}$","i"),jE=HE+"(?:"+BE()+")?",GE=new RegExp("^"+VE+"$|^"+jE+"$","i");var WE=new RegExp("(?:"+BE()+")$","i");var qE={0:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9","0":"0","1":"1","2":"2","3":"3","4":"4","5":"5","6":"6","7":"7","8":"8","9":"9","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9"};function KE(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return JE(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return JE(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function JE(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function XE(e){for(var t,n="",r=KE(e.split(""));!(t=r()).done;){n+=QE(t.value,n)||""}return n}function QE(e,t){if("+"===e){if(t)return;return"+"}return function(e){return qE[e]}(e)}function eb(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return tb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return tb(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function tb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function nb(e,t){return rb(e,void 0,t)}function rb(e,t,n){var r=n.type(t),i=r&&r.possibleLengths()||n.possibleLengths();if(!i)return"IS_POSSIBLE";if("FIXED_LINE_OR_MOBILE"===t){if(!n.type("FIXED_LINE"))return rb(e,"MOBILE",n);var a=n.type("MOBILE");a&&(i=function(e,t){for(var n,r=e.slice(),i=eb(t);!(n=i()).done;){var a=n.value;e.indexOf(a)<0&&r.push(a)}return r.sort((function(e,t){return e-t}))}(i,a.possibleLengths()))}else if(t&&!r)return"INVALID_LENGTH";var o=e.length,s=i[0];return s===o?"IS_POSSIBLE":s>o?"TOO_SHORT":i[i.length-1]<o?"TOO_LONG":i.indexOf(o,1)>=0?"IS_POSSIBLE":"INVALID_LENGTH"}function ib(e,t){return"IS_POSSIBLE"===nb(e,t)}function ab(e,t){return e=e||"",new RegExp("^(?:"+t+")$").test(e)}function ob(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return sb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return sb(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function sb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ub=["MOBILE","PREMIUM_RATE","TOLL_FREE","SHARED_COST","VOIP","PERSONAL_NUMBER","PAGER","UAN","VOICEMAIL"];function lb(e,t,n){if(t=t||{},e.country){(n=new DE(n)).selectNumberingPlan(e.country,e.countryCallingCode);var r=t.v2?e.nationalNumber:e.phone;if(ab(r,n.nationalNumberPattern())){if(cb(r,"FIXED_LINE",n))return n.type("MOBILE")&&""===n.type("MOBILE").pattern()?"FIXED_LINE_OR_MOBILE":n.type("MOBILE")?cb(r,"MOBILE",n)?"FIXED_LINE_OR_MOBILE":"FIXED_LINE":"FIXED_LINE_OR_MOBILE";for(var i,a=ob(ub);!(i=a()).done;){var o=i.value;if(cb(r,o,n))return o}}}}function cb(e,t,n){return!(!(t=n.type(t))||!t.pattern())&&(!(t.possibleLengths()&&t.possibleLengths().indexOf(e.length)<0)&&ab(e,t.pattern()))}function db(e,t,n){var r=new DE(n).getCountryCodesForCallingCode(e);return r?r.filter((function(e){return function(e,t,n){var r=new DE(n);if(r.selectNumberingPlan(t),r.numberingPlan.possibleLengths().indexOf(e.length)>=0)return!0;return!1}(t,e,n)})):[]}var fb=/(\$\d)/;function hb(e,t,n){var r=n.useInternationalFormat,i=n.withNationalPrefix;n.carrierCode,n.metadata;var a=e.replace(new RegExp(t.pattern()),r?t.internationalFormat():i&&t.nationalPrefixFormattingRule()?t.format().replace(fb,t.nationalPrefixFormattingRule()):t.format());return r?function(e){return e.replace(new RegExp("[".concat(SE,"]+"),"g")," ").trim()}(a):a}var pb=/^[\d]+(?:[~\u2053\u223C\uFF5E][\d]+)?$/;function mb(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return _b(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return _b(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _b(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function yb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function gb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?yb(Object(n),!0).forEach((function(t){vb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):yb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function vb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Ab={formatExtension:function(e,t,n){return"".concat(e).concat(n.ext()).concat(t)}};function Eb(e,t,n,r){if(n=n?gb(gb({},Ab),n):Ab,r=new DE(r),e.country&&"001"!==e.country){if(!r.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));r.country(e.country)}else{if(!e.countryCallingCode)return e.phone||"";r.selectNumberingPlan(e.countryCallingCode)}var i,a=r.countryCallingCode(),o=n.v2?e.nationalNumber:e.phone;switch(t){case"NATIONAL":return o?Sb(i=bb(o,e.carrierCode,"NATIONAL",r,n),e.ext,r,n.formatExtension):"";case"INTERNATIONAL":return o?(i=bb(o,null,"INTERNATIONAL",r,n),Sb(i="+".concat(a," ").concat(i),e.ext,r,n.formatExtension)):"+".concat(a);case"E.164":return"+".concat(a).concat(o);case"RFC3966":return function(e){var t=e.number,n=e.ext;if(!t)return"";if("+"!==t[0])throw new Error('"formatRFC3966()" expects "number" to be in E.164 format.');return"tel:".concat(t).concat(n?";ext="+n:"")}({number:"+".concat(a).concat(o),ext:e.ext});case"IDD":if(!n.fromCountry)return;var s=function(e,t,n,r,i){var a=PE(r,i.metadata);if(a===n){var o=bb(e,t,"NATIONAL",i);return"1"===n?n+" "+o:o}var s=function(e,t,n){var r=new DE(n);return r.selectNumberingPlan(e,t),r.defaultIDDPrefix()?r.defaultIDDPrefix():pb.test(r.IDDPrefix())?r.IDDPrefix():void 0}(r,void 0,i.metadata);if(s)return"".concat(s," ").concat(n," ").concat(bb(e,null,"INTERNATIONAL",i))}(o,e.carrierCode,a,n.fromCountry,r);return Sb(s,e.ext,r,n.formatExtension);default:throw new Error('Unknown "format" argument passed to "formatNumber()": "'.concat(t,'"'))}}function bb(e,t,n,r,i){var a=function(e,t){for(var n,r=mb(e);!(n=r()).done;){var i=n.value;if(i.leadingDigitsPatterns().length>0){var a=i.leadingDigitsPatterns()[i.leadingDigitsPatterns().length-1];if(0!==t.search(a))continue}if(ab(t,i.pattern()))return i}}(r.formats(),e);return a?hb(e,a,{useInternationalFormat:"INTERNATIONAL"===n,withNationalPrefix:!a.nationalPrefixIsOptionalWhenFormattingInNationalFormat()||!i||!1!==i.nationalPrefix,carrierCode:t,metadata:r}):e}function Sb(e,t,n,r){return t?r(e,t,n):e}function Mb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Tb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Mb(Object(n),!0).forEach((function(t){wb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Mb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function wb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ob(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}var Nb=function(){function e(t,n,r){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),!t)throw new TypeError("`country` or `countryCallingCode` not passed");if(!n)throw new TypeError("`nationalNumber` not passed");if(!r)throw new TypeError("`metadata` not passed");var i=function(e,t){var n,r,i=new DE(t);Cb(e)?(n=e,i.selectNumberingPlan(n),r=i.countryCallingCode()):r=e;return{country:n,countryCallingCode:r}}(t,r),a=i.country,o=i.countryCallingCode;this.country=a,this.countryCallingCode=o,this.nationalNumber=n,this.number="+"+this.countryCallingCode+this.nationalNumber,this.metadata=r}var t,n,r;return t=e,n=[{key:"setExt",value:function(e){this.ext=e}},{key:"getPossibleCountries",value:function(){return this.country?[this.country]:db(this.countryCallingCode,this.nationalNumber,this.metadata)}},{key:"isPossible",value:function(){return function(e,t,n){if(void 0===t&&(t={}),n=new DE(n),t.v2){if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}else{if(!e.phone)return!1;if(e.country){if(!n.hasCountry(e.country))throw new Error("Unknown country: ".concat(e.country));n.country(e.country)}else{if(!e.countryCallingCode)throw new Error("Invalid phone number object passed");n.selectNumberingPlan(e.countryCallingCode)}}if(n.possibleLengths())return ib(e.phone||e.nationalNumber,n);if(e.countryCallingCode&&n.isNonGeographicCallingCode(e.countryCallingCode))return!0;throw new Error('Missing "possibleLengths" in metadata. Perhaps the metadata has been generated before v1.0.18.')}(this,{v2:!0},this.metadata)}},{key:"isValid",value:function(){return function(e,t,n){return t=t||{},(n=new DE(n)).selectNumberingPlan(e.country,e.countryCallingCode),n.hasTypes()?void 0!==lb(e,t,n.metadata):ab(t.v2?e.nationalNumber:e.phone,n.nationalNumberPattern())}(this,{v2:!0},this.metadata)}},{key:"isNonGeographic",value:function(){return new DE(this.metadata).isNonGeographicCallingCode(this.countryCallingCode)}},{key:"isEqual",value:function(e){return this.number===e.number&&this.ext===e.ext}},{key:"getType",value:function(){return lb(this,{v2:!0},this.metadata)}},{key:"format",value:function(e,t){return Eb(this,e,t?Tb(Tb({},t),{},{v2:!0}):{v2:!0},this.metadata)}},{key:"formatNational",value:function(e){return this.format("NATIONAL",e)}},{key:"formatInternational",value:function(e){return this.format("INTERNATIONAL",e)}},{key:"getURI",value:function(e){return this.format("RFC3966",e)}}],n&&Ob(t.prototype,n),r&&Ob(t,r),Object.defineProperty(t,"prototype",{writable:!1}),e}(),Cb=function(e){return/^[A-Z]{2}$/.test(e)};var Lb=new RegExp("(["+bE+"])");function Db(e,t){var n=function(e,t){if(e&&t.numberingPlan.nationalPrefixForParsing()){var n=new RegExp("^(?:"+t.numberingPlan.nationalPrefixForParsing()+")"),r=n.exec(e);if(r){var i,a,o,s=r.length-1,u=s>0&&r[s];if(t.nationalPrefixTransformRule()&&u)i=e.replace(n,t.nationalPrefixTransformRule()),s>1&&(a=r[1]);else{var l=r[0];i=e.slice(l.length),u&&(a=r[1])}if(u){var c=e.indexOf(r[1]);e.slice(0,c)===t.numberingPlan.nationalPrefix()&&(o=t.numberingPlan.nationalPrefix())}else o=r[0];return{nationalNumber:i,nationalPrefix:o,carrierCode:a}}}return{nationalNumber:e}}(e,t),r=n.carrierCode,i=n.nationalNumber;if(i!==e){if(!function(e,t,n){if(ab(e,n.nationalNumberPattern())&&!ab(t,n.nationalNumberPattern()))return!1;return!0}(e,i,t))return{nationalNumber:e};if(t.possibleLengths()&&!function(e,t){switch(nb(e,t)){case"TOO_SHORT":case"INVALID_LENGTH":return!1;default:return!0}}(i,t))return{nationalNumber:e}}return{nationalNumber:i,carrierCode:r}}function $b(e,t,n,r){if(!e)return{};var i;if("+"!==e[0]){var a=function(e,t,n,r){if(t){var i=new DE(r);i.selectNumberingPlan(t,n);var a=new RegExp(i.IDDPrefix());if(0===e.search(a)){var o=(e=e.slice(e.match(a)[0].length)).match(Lb);if(!(o&&null!=o[1]&&o[1].length>0&&"0"===o[1]))return e}}}(e,t,n,r);if(!a||a===e){if(t||n){var o=function(e,t,n,r){var i=t?PE(t,r):n;if(0===e.indexOf(i)){(r=new DE(r)).selectNumberingPlan(t,n);var a=e.slice(i.length),o=Db(a,r).nationalNumber,s=Db(e,r).nationalNumber;if(!ab(s,r.nationalNumberPattern())&&ab(o,r.nationalNumberPattern())||"TOO_LONG"===nb(s,r))return{countryCallingCode:i,number:a}}return{number:e}}(e,t,n,r),s=o.countryCallingCode,u=o.number;if(s)return{countryCallingCodeSource:"FROM_NUMBER_WITHOUT_PLUS_SIGN",countryCallingCode:s,number:u}}return{number:e}}i=!0,e="+"+a}if("0"===e[1])return{};r=new DE(r);for(var l=2;l-1<=EE&&l<=e.length;){var c=e.slice(1,l);if(r.hasCallingCode(c))return r.selectNumberingPlan(c),{countryCallingCodeSource:i?"FROM_NUMBER_WITH_IDD":"FROM_NUMBER_WITH_PLUS_SIGN",countryCallingCode:c,number:e.slice(l)};l++}return{}}function Ib(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return xb(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return xb(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function xb(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var kb=!1;function zb(e,t,n){if(kb&&n.isNonGeographicCallingCode(e))return"001";var r=n.getCountryCodesForCallingCode(e);return r?1===r.length?r[0]:function(e,t,n){n=new DE(n);for(var r,i=Ib(e);!(r=i()).done;){var a=r.value;if(n.country(a),n.leadingDigits()){if(t&&0===t.search(n.leadingDigits()))return a}else if(lb({phone:t,country:a},void 0,n.metadata))return a}}(r,t,n.metadata):void 0}var Rb="+",Zb="(["+bE+"]|[\\-\\.\\(\\)]?)",Pb=new RegExp("^\\"+Rb+Zb+"*["+bE+"]"+Zb+"*$","g"),Fb=new RegExp("^("+("["+bE+"]+((\\-)*["+bE+"])*")+"\\.)*"+("[a-zA-Z]+((\\-)*["+bE+"])*")+"\\.?$","g"),Ub="tel:",Bb=";phone-context=",Vb=";isub=";function Hb(e,t){var n,r=t.extractFormattedPhoneNumber,i=function(e){var t=e.indexOf(Bb);if(t<0)return null;var n=t+Bb.length;if(n>=e.length)return"";var r=e.indexOf(";",n);return r>=0?e.substring(n,r):e.substring(n)}(e);if(!function(e){return null===e||0!==e.length&&(Pb.test(e)||Fb.test(e))}(i))throw new gE("NOT_A_NUMBER");if(null===i)n=r(e)||"";else{n="",i.charAt(0)===Rb&&(n+=i);var a,o=e.indexOf(Ub);a=o>=0?o+Ub.length:0;var s=e.indexOf(Bb);n+=e.substring(a,s)}var u=n.indexOf(Vb);if(u>0&&(n=n.substring(0,u)),""!==n)return n}var Yb=250,jb=new RegExp("[++"+bE+"]"),Gb=new RegExp("[^"+bE+"#]+$");function Wb(e,t,n){if(t=t||{},n=new DE(n),t.defaultCountry&&!n.hasCountry(t.defaultCountry)){if(t.v2)throw new gE("INVALID_COUNTRY");throw new Error("Unknown country: ".concat(t.defaultCountry))}var r=function(e,t,n){var r=Hb(e,{extractFormattedPhoneNumber:function(e){return function(e,t,n){if(!e)return;if(e.length>Yb){if(n)throw new gE("TOO_LONG");return}if(!1===t)return e;var r=e.search(jb);if(r<0)return;return e.slice(r).replace(Gb,"")}(e,n,t)}});if(!r)return{};if(!function(e){return e.length>=vE&&GE.test(e)}(r))return function(e){return YE.test(e)}(r)?{error:"TOO_SHORT"}:{};var i=function(e){var t=e.search(WE);if(t<0)return{};for(var n=e.slice(0,t),r=e.match(WE),i=1;i<r.length;){if(r[i])return{number:n,ext:r[i]};i++}}(r);if(i.ext)return i;return{number:r}}(e,t.v2,t.extract),i=r.number,a=r.ext,o=r.error;if(!i){if(t.v2){if("TOO_SHORT"===o)throw new gE("TOO_SHORT");throw new gE("NOT_A_NUMBER")}return{}}var s=function(e,t,n,r){var i,a=$b(XE(e),t,n,r.metadata),o=a.countryCallingCodeSource,s=a.countryCallingCode,u=a.number;if(s)r.selectNumberingPlan(s);else{if(!u||!t&&!n)return{};r.selectNumberingPlan(t,n),t&&(i=t),s=n||PE(t,r.metadata)}if(!u)return{countryCallingCodeSource:o,countryCallingCode:s};var l=Db(XE(u),r),c=l.nationalNumber,d=l.carrierCode,f=zb(s,c,r);f&&(i=f,"001"===f||r.country(i));return{country:i,countryCallingCode:s,countryCallingCodeSource:o,nationalNumber:c,carrierCode:d}}(i,t.defaultCountry,t.defaultCallingCode,n),u=s.country,l=s.nationalNumber,c=s.countryCallingCode,d=s.countryCallingCodeSource,f=s.carrierCode;if(!n.hasSelectedNumberingPlan()){if(t.v2)throw new gE("INVALID_COUNTRY");return{}}if(!l||l.length<vE){if(t.v2)throw new gE("TOO_SHORT");return{}}if(l.length>AE){if(t.v2)throw new gE("TOO_LONG");return{}}if(t.v2){var h=new Nb(c,l,n.metadata);return u&&(h.country=u),f&&(h.carrierCode=f),a&&(h.ext=a),h.__countryCallingCodeSource=d,h}var p=!!(t.extended?n.hasSelectedNumberingPlan():u)&&ab(l,n.nationalNumberPattern());return t.extended?{country:u,countryCallingCode:c,carrierCode:f,valid:p,possible:!!p||!(!0!==t.extended||!n.possibleLengths()||!ib(l,n)),phone:l,ext:a}:p?function(e,t,n){var r={country:e,phone:t};n&&(r.ext=n);return r}(u,l,a):{}}function qb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Kb(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?qb(Object(n),!0).forEach((function(t){Jb(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):qb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Jb(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Xb(e){return Xb="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Xb(e)}function Qb(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function eS(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tS(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null==n)return;var r,i,a=[],o=!0,s=!1;try{for(n=n.call(e);!(o=(r=n.next()).done)&&(a.push(r.value),!t||a.length!==t);o=!0);}catch(e){s=!0,i=e}finally{try{o||null==n.return||n.return()}finally{if(s)throw i}}return a}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return nS(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return nS(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function nS(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function rS(e){var t,n,r,i=tS(Array.prototype.slice.call(e),4),a=i[0],o=i[1],s=i[2],u=i[3];if("string"!=typeof a)throw new TypeError("A text for parsing must be a string.");if(t=a,o&&"string"!=typeof o){if(!iS(o))throw new Error("Invalid second argument: ".concat(o));s?(n=o,r=s):r=o}else u?(n=s,r=u):(n=void 0,r=s),o&&(n=function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Qb(Object(n),!0).forEach((function(t){eS(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Qb(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({defaultCountry:o},n));return{text:t,options:n,metadata:r}}var iS=function(e){return"object"===Xb(e)};function aS(){var e=rS(arguments);return function(e,t,n){return Wb(e,Kb(Kb({},t),{},{v2:!0}),n)}(e.text,e.options,e.metadata)}function oS(){return function(e,t){var n=Array.prototype.slice.call(t);return n.push(uE),e.apply(this,n)}(aS,arguments)}const sS=/^(?!\+?6599)(?!^\+65\d{6}$)^(?:\+?(?:65)?([9,8,6,3]{1}\d{7}))$/,uS=/^(?!\+?6599)(?!^\+65\d{6}$)^(?:\+?(?:65)?([9,8]{1}\d{7}))$/;var lS;!function(e){e.getParsedPhoneNumber=e=>{const t=e.split(" "),n=t.length>1;return{prefix:n?t[0]:"",number:n?t[1]:e}},e.isSingaporeNumber=(t,n=!1)=>{try{const{number:r}=e.getParsedPhoneNumber(t),i=oS(t,"SG").isValid(),a=uS.test(r),o=sS.test(r);return n?i&&o&&!a:i&&o&&a}catch(e){return!1}},e.isInternationalNumber=(e,t)=>{try{if(!e||!t)return!1;const n=oE(e).iso2;return oS(t,n).isValid()}catch(e){return!1}},e.formatPhoneNumber=(e,t)=>{if(t)return e?`${e} ${t}`:t}}(lS||(lS={}));const cS="uuuu-MM-dd",dS=v.label`
|
|
270
|
-
cursor: ${e=>e.disabled?"not-allowed":"pointer"};
|
|
271
|
-
`,fS=v(N)`
|
|
272
|
-
margin-right: 5px;
|
|
273
|
-
`,hS=v.div`
|
|
274
|
-
display: flex;
|
|
275
|
-
align-items: center;
|
|
276
|
-
:not(:last-of-type) {
|
|
277
|
-
margin-bottom: 1rem;
|
|
278
|
-
}
|
|
279
|
-
`,pS=v.div`
|
|
280
|
-
display: flex;
|
|
281
|
-
flex-wrap: wrap;
|
|
282
|
-
gap: 1rem;
|
|
283
|
-
`;var mS,_S,yS,gS,vS=Object.freeze({__proto__:null,CheckboxGroup:n=>{const{schema:{label:r,options:i,validation:a,disabled:s,customOptions:l,...c},id:d,value:f,error:h,onChange:p}=n,{setValue:m}=Q(),[_,y]=u(f||[]),{setFieldValidationConfig:g}=Ph();o((()=>{const e=a?.find((e=>"required"in e));g(d,vh().of(Sd()).test("is-empty-array",e?.errorMessage||Va.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),a)}),[a]),dr((()=>{const e=f?.filter((e=>i.find((t=>t.value===e))));m(d,e)}),[i]),o((()=>{y(f||[])}),[f]);const v=(e,t)=>{const n=i.find((e=>!0===e.none));let r=[..._];t?r=r.includes(e)?[]:[e]:r.includes(e)?r=WA(r,e,n?.value):(r.push(e),r=WA(r,n?.value)),p({target:{value:r}})},A=e=>_.includes(e),E=e=>`${d}-${e}`;return e(M.CustomField,{id:d,label:r,errorMessage:h?.message,children:"toggle"===l?.styleType?i.length>0&&e(XA,{children:i.map(((t,n)=>{const r=E(n);return e(S,{...c,type:"checkbox","data-testid":Ja.generateId(d,"toggle"),id:r,disabled:s??t.disabled,name:t.label,indicator:"toggle"===l.styleType&&l?.indicator,styleType:"toggle"===l.styleType&&!1===l?.border?"no-border":"default",checked:A(t.value),onChange:()=>v(t.value,t.none),children:t.label},n)}))}):i.length>0&&i.map(((n,r)=>{const i=E(r);return t(JA,{children:[e(KA,{...c,"data-testid":Ja.generateId(d,"checkbox"),id:i,disabled:s??n.disabled,name:n.label,value:n.value,checked:A(n.value),onChange:()=>v(n.value)}),e(qA,{htmlFor:i,disabled:s??n.disabled,children:n.label})]},r)}))})},Chips:r=>{const{schema:{label:i,options:a,validation:s,disabled:l,textarea:c,...f},id:h,value:p,onChange:m,error:_,...y}=r,[g,v]=u(p||[]),[A,E]=u(!1),[b,S]=u(!0),{control:T,setValue:w}=Q(),{setFieldValidationConfig:O,removeFieldValidationConfig:N}=Ph();o((()=>{const e=s?.find((e=>"required"in e)),t=s?.find((e=>"max"in e)),n=s?.find((e=>"length"in e));O(h,vh().of(Sd()).test("is-empty-array",e?.errorMessage||Va.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),s),1!==t?.max&&1!==n?.length||S(!1)}),[s]),dr((()=>{const e=p?.filter((e=>a.find((t=>t.value===e))));w(h,e)}),[a]),o((()=>{v(p||[])}),[p]);const C=e=>g.includes(e),L=()=>`${h}-textarea`,D=e=>{let t=[...g];if(t.includes(e))return t=t.filter((t=>t!==e)),void m({target:{value:t}});b?t.push(e):t=[e],m({target:{value:t}})};return t(M.CustomField,{label:i,errorMessage:_?.message,...y,children:[t(rE,{"data-testid":Ja.generateId(h,"chips"),children:[a.map(((e,t)=>d(Vh,{...f,key:t,onClick:()=>D(e.value),isActive:C(e.value),disabled:l??e.disabled},e.label))),(()=>{const t=c?.label;if(c||t)return e(Vh,{...f,onClick:()=>(D(t),void E((e=>(e&&N(L()),!e)))),isActive:C(t),children:t})})()]}),(()=>{const t=c?.label;if(!c&&!t)return e(n,{});const r=L(),a={uiType:"textarea",label:i,...c};return A?e(pe,{control:T,name:r,shouldUnregister:!0,render:({field:t,fieldState:n})=>{const i={...t,id:r,ref:void 0};return e(nE,{schema:a,...i,...n})}}):e(n,{})})()]})},ContactField:t=>{const{schema:{label:n,defaultCountry:r,disabled:i,enableSearch:s,validation:l,placeholder:c,...d},id:f,name:h,onChange:p,value:m,error:_,...y}=t,[g,v]=u(m||""),A=(e=>{const t=a();return o((()=>{t.current=e}),[e]),t.current})(r),[E,b]=u(r),[S]=u(aE()),[T,w]=u(),[O,N]=u(),[C,L]=u(!1),{setFieldValidationConfig:D}=Ph();o((()=>{const e=l?.find((e=>"contactNumber"in e)),t=e?.contactNumber?.singaporeNumber,n=e?.contactNumber?.internationalNumber,r=e?.errorMessage;S.has(n)?(b(n),L(!0)):["default","house","mobile"].includes(t)&&(b("Singapore"),L(!0)),N(t),D(f,Sd().test("singaporeNumber",r||Ha.INVALID_SINGAPORE_NUMBER,(e=>{if(!e||!t)return!0;switch(t){case"default":return lS.isSingaporeNumber(e,!0)||lS.isSingaporeNumber(e);case"house":return lS.isSingaporeNumber(e,!0);case"mobile":return lS.isSingaporeNumber(e)}})).test("internationalNumber",r||Ha.INVALID_INTERNATIONAL_NUMBER,(e=>!(e&&!t)||lS.isInternationalNumber(T?.name,e))),l)}),[l,T]),o((()=>{const e=E||"Singapore";w({name:e,prefix:S.get(e)})}),[E,S]),o((()=>{const e=l?.find((e=>"contactNumber"in e)),t=e?.contactNumber?.singaporeNumber,n=e?.contactNumber?.internationalNumber;!r||A===r||S.has(n)||["default","house","mobile"].includes(t)||b(r)}),[l,r]);return e(M.PhoneNumberInput,{...d,...y,"data-testid":Ja.generateId(f,"contact"),disabled:i,enableSearch:s,errorMessage:_?.message,fixedCountry:C,id:f,label:n,name:h,placeholder:(()=>{if(c)return c;if(O){return`Enter ${"mobile"===O?"mobile":"home"} number`}return"Enter contact number"})(),value:(()=>{if(!T)return;const{prefix:e}=T;return{number:g,countryCode:e}})(),onChange:e=>{const{countryCode:t,number:n}=e,r=t.replace(/\+/g,""),i=lS.formatPhoneNumber(t,n);if(r!==T.prefix){const e=((e,t)=>{for(const[n,r]of t.entries())if(r===e)return n})(r,S);w({name:e,prefix:t})}v(n),p({target:{value:i}})}})},DateField:t=>{const{schema:{label:n,useCurrentDate:r,dateFormat:i=cS,validation:a,...s},id:l,onChange:c,value:d,error:f,...h}=t,[p,m]=u(d||""),{setFieldValidationConfig:_}=Ph();o((()=>{const e=a?.find((e=>"future"in e)),t=a?.find((e=>"past"in e)),n=a?.find((e=>"notFuture"in e)),r=a?.find((e=>"notPast"in e)),o=a?.find((e=>"minDate"in e)),s=a?.find((e=>"maxDate"in e)),u=qa.toLocalDateOrTime(o?.minDate,i,"date"),c=qa.toLocalDateOrTime(s?.maxDate,i,"date");_(l,Sd().test("is-date",ja.INVALID,(e=>!e||""===e||!!y(e)&&!!qa.toLocalDateOrTime(e,i,"date"))).test("future",e?.errorMessage||ja.MUST_BE_FUTURE,(t=>{if(!y(t)||!e?.future)return!0;const n=qa.toLocalDateOrTime(t,i,"date");return!!n?.isAfter(ga.now())})).test("past",t?.errorMessage||ja.MUST_BE_PAST,(e=>{if(!y(e)||!t?.past)return!0;const n=qa.toLocalDateOrTime(e,i,"date");return!!n?.isBefore(ga.now())})).test("not-future",n?.errorMessage||ja.CANNOT_BE_FUTURE,(e=>{if(!y(e)||!n?.notFuture)return!0;const t=qa.toLocalDateOrTime(e,i,"date");return!t?.isAfter(ga.now())})).test("not-past",r?.errorMessage||ja.CANNOT_BE_PAST,(e=>{if(!y(e)||!r?.notPast)return!0;const t=qa.toLocalDateOrTime(e,i,"date");return!t?.isBefore(ga.now())})).test("min-date",o?.errorMessage||ja.MIN_DATE(qa.formatDateTime(o?.minDate,"dd/MM/uuuu","date")),(e=>{if(!y(e)||!u)return!0;const t=qa.toLocalDateOrTime(e,i,"date");return!t?.isBefore(u)})).test("max-date",s?.errorMessage||ja.MAX_DATE(qa.formatDateTime(s?.maxDate,"dd/MM/uuuu","date")),(e=>{if(!y(e)||!c)return!0;const t=qa.toLocalDateOrTime(e,i,"date");return!t?.isAfter(c)})),a)}),[a]),o((()=>{if(i)if(r&&!d){const e=qa.formatDateTime(ga.now().toString(),i,"date");c({target:{value:e}});const t=qa.formatDateTime(ga.now().toString(),cS,"date");m(t)}else if(y(d)){const e=qa.toLocalDateOrTime(d,i,"date");m(qa.formatDateTime(e?.toString(),cS,"date",ja.INVALID))}else m(ja.INVALID)}),[r,d,i]);const y=e=>e&&e!==ja.INVALID;return e(M.DateInput,{...s,...h,id:l,"data-testid":Ja.generateId(l,"date"),label:n,errorMessage:f?.message,onChangeRaw:([e,t,n])=>{e||t||n?e.length<2||t.length<2||n.length<4?c({target:{value:ja.INVALID}}):c({target:{value:qa.formatDateTime([n,t,e].join("-"),i,"date",ja.INVALID)}}):c({target:{value:void 0}})},value:p})},MultiSelect:t=>{const{schema:{label:n,validation:r,options:i,...a},id:s,name:l,value:c,onChange:d,error:f}=t,{setValue:h}=Q(),[p,m]=u(c||[]),{setFieldValidationConfig:_}=Ph();o((()=>{const e=r?.find((e=>"required"in e));_(s,vh().of(Sd()).test("is-empty-array",e?.errorMessage||Va.REQUIRED_OPTION,(t=>!t||!e?.required||t.length>0)),r)}),[r]),dr((()=>{const e=c?.filter((e=>i.find((t=>t.value===e))));h(s,e)}),[i]),o((()=>{m(c||[])}),[c]);return e(M.CustomField,{id:s,label:n,errorMessage:f?.message,children:e(w,{...a,id:s,"data-testid":Ja.generateId(s,"multi-select"),name:l,options:i,onSelectOptions:e=>{const t=e.map((e=>e.value));d({target:{value:t}})},selectedOptions:i.filter((e=>p.includes(e.value))),valueExtractor:e=>e.value,listExtractor:e=>e.label})})},RadioButtonGroup:n=>{const{schema:{label:r,options:i,disabled:a,validation:s,customOptions:l,...c},id:f,value:h,error:p,onChange:m}=n,{setValue:_}=Q(),[y,g]=u(h||""),{setFieldValidationConfig:v}=Ph();o((()=>{v(f,Sd(),s)}),[s]),dr((()=>{i.find((e=>e.value===h))||_(f,"")}),[i]),o((()=>{g(h||"")}),[h]);const A=(e,t)=>{t??g(t),m(t?{target:{value:t}}:e)},E=e=>y===e,b=e=>`${f}-${e}`;return e(M.CustomField,{id:f,label:r,errorMessage:p?.message,children:"toggle"===l?.styleType?i.length>0&&e(pS,{children:i.map(((e,t)=>{const n=b(t);return d(S,{...c,key:t,type:"radio",id:n,"data-testid":Ja.generateId(f,"radio"),disabled:a??e.disabled,name:e.label,indicator:"toggle"===l.styleType&&l?.indicator,styleType:"toggle"===l.styleType&&!1===l?.border?"no-border":"default",checked:E(e.value),onChange:t=>A(t,e.value)},e.label)}))}):i.length>0&&i.map(((n,r)=>{const i=b(r);return t(hS,{children:[e(fS,{...c,id:i,"data-testid":Ja.generateId(f,"radio"),disabled:a??n.disabled,name:n.label,value:n.value,checked:E(n.value),onChange:A}),e(dS,{htmlFor:i,disabled:a??n.disabled,children:n.label})]},r)}))})},Select:t=>{const{schema:{label:n,validation:r,options:i,...a},id:s,name:l,value:c,error:d,onChange:f}=t,{setValue:h}=Q(),[p,m]=u(c||""),{setFieldValidationConfig:_}=Ph();o((()=>{_(s,Sd(),r)}),[r]),dr((()=>{i.find((e=>e.value===c))||h(s,"")}),[i]),o((()=>{m(c||"")}),[c]);return e(M.CustomField,{id:s,label:n,errorMessage:d?.message,children:e(O,{...a,id:s,"data-testid":Ja.generateId(s,"select"),name:l,options:i,onSelectOption:(e,t)=>{f({target:{value:t}})},selectedOption:i.find((({value:e})=>e===p)),displayValueExtractor:e=>e.label,valueExtractor:e=>e.value,listExtractor:e=>e.label})})},SubmitButton:t=>{const{schema:{label:n,disabled:r,...i},id:a,...s}=t,{setFieldValidationConfig:l}=Ph(),{hardValidationSchema:c}=Fh(),d=le({disabled:"invalid-form"!==r}),[f,h]=u(!0===r);return o((()=>{l(a,pd())}),[]),dr((()=>{if("invalid-form"===r)try{c.validateSync(d),h(!1)}catch(e){h(!0)}}),[d]),e(C.Default,{...i,...s,disabled:f,"data-testid":a,id:a,type:"submit",children:n})},TextField:t=>{const{schema:{inputMode:n,label:r,uiType:i,validation:a,...s},id:l,value:c,onChange:d,error:f,...h}=t,[p,m]=u(c||""),[_,y]=u({}),{setFieldValidationConfig:g}=Ph();o((()=>{switch(i){case"numeric-field":{g(l,Td(),a);const e=a?.find((e=>"min"in e)),t=a?.find((e=>"max"in e)),n={..._};e?.min>0&&(n.min=e.min),t?.max>0&&(n.max=t.max),y(n);break}case"email-field":{const e=a?.find((e=>e.email));g(l,Sd().email(e?.errorMessage||Ya.INVALID),a);const t=a?.find((e=>"max"in e)),n=a?.find((e=>"length"in e)),r={..._};t?.max>0?r.maxLength=t.max:n?.length>0&&(r.maxLength=n.length),y(r);break}case"text-field":{g(l,Sd(),a);const e=a?.find((e=>"max"in e)),t=a?.find((e=>"length"in e)),n={..._};e?.max>0?n.maxLength=e.max:t?.length>0&&(n.maxLength=t.length),y(n);break}}}),[a]),o((()=>{m(c||"")}),[c]);return e(M.Input,{...s,...h,..._,id:l,"data-testid":Ja.generateId(l,i),type:(()=>{switch(i){case"numeric-field":return"number";case"email-field":return"email";default:return"text"}})(),label:r,inputMode:(()=>{if(n)return n;switch(i){case"numeric-field":return"numeric";case"email-field":return"email";case"text-field":return"text";default:return"none"}})(),onChange:e=>{d(e)},value:p,errorMessage:f?.message})},Textarea:nE,TimeField:t=>{const{schema:{label:n,validation:r,placeholder:i,is24HourFormat:a,useCurrentTime:s,...l},id:c,value:d,error:f,onChange:h,...p}=t,[m,_]=u(d||""),{setFieldValidationConfig:y}=Ph();o((()=>{y(c,Sd(),r)}),[r]),o((()=>{if(s&&!d){g(a?"H:mm":"h:mma")}else _(d)}),[d,s,a]);const g=e=>{const t=qa.formatDateTime(Ea.now().toString(),e,"time");_(t),h({target:{value:t}})};return e(M.Timepicker,{...l,...p,id:c,"data-testid":Ja.generateId(c,"time"),label:n,errorMessage:f?.message,value:m,placeholder:i,format:a?"24hr":"12hr",onChange:e=>{h({target:{value:e}})}})},ResetButton:t=>{const{schema:{label:n,disabled:r,...i},id:a,...o}=t,{reset:s}=Q();return e(C.Default,{...i,...o,disabled:r,"data-testid":a,id:a,type:"reset",onClick:()=>{s()},children:n})},UnitNumberField:t=>{const{schema:{label:n,validation:r,...i},id:a,value:s,error:l,onChange:c,...d}=t,[f,h]=u(s||""),{setFieldValidationConfig:p}=Ph();o((()=>{const e=r?.find((e=>"unitNumberFormat"in e));p(a,Sd().matches(/^([a-zA-Z0-9]{1,3}-[a-zA-Z0-9]{1,5})$/,{excludeEmptyString:!0,message:e?.errorMessage||Ga.INVALID}),r)}),[r]),o((()=>{h(s||"")}),[s]);return e(M.UnitNumberInput,{...i,...d,id:a,"data-testid":Ja.generateId(a,"unit-number"),label:n,value:f,onChange:e=>{c({target:{value:e}})},errorMessage:l?.message})}});!function(e){e.TEXTAREA="Textarea",e["TEXT-FIELD"]="TextField",e["NUMERIC-FIELD"]="TextField",e["EMAIL-FIELD"]="TextField",e.SUBMIT="SubmitButton",e.SELECT="Select",e["MULTI-SELECT"]="MultiSelect",e["DATE-FIELD"]="DateField",e.CHECKBOX="CheckboxGroup",e["CONTACT-FIELD"]="ContactField",e.RADIO="RadioButtonGroup",e["TIME-FIELD"]="TimeField",e.CHIPS="Chips",e.RESET="ResetButton",e["UNIT-NUMBER-FIELD"]="UnitNumberField"}(mS||(mS={})),function(e){e.ALERT="Alert",e["TEXT-D1"]="Text",e["TEXT-D2"]="Text",e["TEXT-DBODY"]="Text",e["TEXT-H1"]="Text",e["TEXT-H2"]="Text",e["TEXT-H3"]="Text",e["TEXT-H4"]="Text",e["TEXT-H5"]="Text",e["TEXT-H6"]="Text",e["TEXT-BODY"]="Text",e["TEXT-BODYSMALL"]="Text",e["TEXT-XSMALL"]="Text",e.DIV="Wrapper",e.SPAN="Wrapper",e.HEADER="Wrapper",e.FOOTER="Wrapper",e.H1="Wrapper",e.H2="Wrapper",e.H3="Wrapper",e.H4="Wrapper",e.H5="Wrapper",e.H6="Wrapper",e.P="Wrapper"}(_S||(_S={})),function(e){e.FILTER="Filter",e["FILTER-ITEM"]="FilterItem"}(yS||(yS={})),function(e){e["FILTER-CHECKBOX"]="FilterCheckbox"}(gS||(gS={}));const AS=({id:t,renderRules:r,children:i,schema:a})=>{const{watch:s}=Q(),{formValidationConfig:l,removeFieldValidationConfig:c}=Ph(),[d,f]=u(!1),[h,p]=u();o((()=>{const e=s((e=>p(e)));return()=>e.unsubscribe()}),[s]),fr((()=>{if(ar(r))return;const e=m();if(e!==d){if(!e){[t,..._(a?.children)].forEach((e=>c(e)))}f(e)}}),[l,h,r]);const m=()=>{if(ar(r))return!0;let e=!1;return r.forEach((t=>{if(!e){const n={};Object.entries(t).forEach((([e,t])=>{const r=l?.[e]?.schema.type;if(r){let i=Th.mapSchemaType(r);"number"===r&&(i=i.nullable().transform(((e,t)=>ar(t)?void 0:+t))),n[e]={schema:i,validationRules:t}}}));const r=Th.buildSchema(n);try{r.validateSync(h),e=!0}catch(e){}}})),e},_=e=>{const t=[];return ar(e)||!Lt(e)||Object.keys(e).forEach((n=>{t.push(n),e.children&&t.push(..._(e.children))})),t};return ar(r)||d?e(n,{children:i}):null},ES=v(_)`
|
|
284
|
-
margin: -1rem 0rem 2rem;
|
|
285
|
-
`,bS=Object.keys(mS),SS=Object.keys(_S),MS=r=>{const{id:i,schema:a,children:s,warnings:l}=r,{showIf:c,uiType:d,children:h,...p}=a||{},[m,_]=u(null),{control:y}=Q();o((()=>{const r=h||s;if("object"==typeof r){const i=[];Object.entries(r).forEach((([r,a])=>{if(ar(a)||"object"!=typeof a)return;const o=a.referenceKey?(e=>{const t=e?.toUpperCase();if(pA[gS[t]])return{fieldType:pA[gS[t]]};if(pA[yS[t]])return{elementType:pA[yS[t]]}})(a.referenceKey):((t,n)=>{const r=t?.toUpperCase(),i={...vS,...dA};if(bS.includes(r))return{fieldType:i[mS[r]]};if(SS.includes(r))return{elementType:i[_S[r]]||MS};return{fragment:e(f,{children:Wa.UNSUPPORTED},n)}})(a.uiType,r);o&&(o.fragment?i.push(o.fragment):o.fieldType?i.push(((r,i,a,o,s)=>e(AS,{id:i,...a&&"showIf"in a&&{renderRules:a.showIf},schema:a,children:e(pe,{control:o,name:i,shouldUnregister:!0,render:({field:o,fieldState:u})=>{const l={...o,id:i,ref:void 0},c=s?.[i];return c?t(n,{children:[e(r,{schema:a,...l,...u}),e(ES,{type:"warning",children:c})]}):e(r,{schema:a,...l,...u})}})},i))(o.fieldType,r,a,y,l)):i.push(((t,n,r)=>e(AS,{id:n,...r&&"showIf"in r&&{renderRules:r.showIf},schema:r,children:e(t,{schema:r,id:n})},n))(o.elementType,r,a)))})),_(i)}else _("string"==typeof r?r:Wa.UNSUPPORTED)}),[h||s,y,l]);return d?e(d,{...p,id:i,"data-testid":Ja.generateId(i,d),children:m}):e(n,{children:m})},TS=t=>{const{sectionSchema:{children:n},...r}=t;return e(MS,{...r,children:n})},wS=t=>{const{schema:r,warnings:i}=t;return e(n,{children:Object.entries(r).map((([t,n],r)=>e(TS,{id:t,sectionSchema:n,warnings:i},`section-${r}`)))})},OS=h(((t,n)=>{const{data:{className:r=null,defaultValues:a,sections:s,id:l,revalidationMode:c="onChange",validationMode:d="onTouched"},className:f=null,onChange:h,onSubmit:_}=t,{warnings:y,performSoftValidation:g,softValidationSchema:v,hardValidationSchema:A}=Fh(),E=function(e={}){const t=i.useRef(),[n,r]=i.useState({isDirty:!1,isValidating:!1,isLoading:be(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},errors:{},defaultValues:be(e.defaultValues)?void 0:e.defaultValues});t.current||(t.current={...tt(e,(()=>r((e=>({...e}))))),formState:n});const a=t.current.control;return a._options=e,oe({subject:a._subjects.state,next:e=>{re(e,a._proxyFormState,a._updateFormState,!0)&&r({...a._formState})}}),i.useEffect((()=>{e.values&&!Ze(e.values,a._defaultValues)?a._reset(e.values,a._options.resetOptions):a._resetDefaultValues()}),[e.values,a]),i.useEffect((()=>{a._state.mount||(a._updateValid(),a._state.mount=!0),a._state.watch&&(a._state.watch=!1,a._subjects.state.next({...a._formState})),a._removeUnmounted()})),t.current.formState=te(n,a),t.current}({mode:d,reValidateMode:c,defaultValues:a,resolver:async(e,t,n)=>(g(v,e),await function(e,t,n){return void 0===t&&(t={}),void 0===n&&(n={}),function(r,i,a){try{return Promise.resolve(function(o,s){try{var u=(t.context&&"development"===process.env.NODE_ENV&&console.warn("You should not used the yup options context. Please, use the 'useForm' context object instead"),Promise.resolve(e["sync"===n.mode?"validateSync":"validate"](r,Object.assign({abortEarly:!1},t,{context:i}))).then((function(e){return a.shouldUseNativeValidation&&rt({},a),{values:n.rawValues?r:e,errors:{}}})))}catch(e){return s(e)}return u&&u.then?u.then(void 0,s):u}(0,(function(e){if(!e.inner)throw e;return{values:{},errors:it((t=e,n=!a.shouldUseNativeValidation&&"all"===a.criteriaMode,(t.inner||[]).reduce((function(e,t){if(e[t.path]||(e[t.path]={message:t.message,type:t.type}),n){var r=e[t.path].types,i=r&&r[t.type];e[t.path]=me(t.path,n,e,t.type,i?[].concat(i,t.message):t.message)}return e}),{})),a)};var t,n})))}catch(e){return Promise.reject(e)}}}(A)(e,t,n))}),{reset:b,watch:S,handleSubmit:M,getValues:T,setValue:w,setError:O,formState:N,clearErrors:C}=E,[L,D]=u({});p(n,(()=>({getValues:T,setValue:w,isValid:$,submit:M(I),addCustomValidation:Th.addCondition,setErrors:x,reset:b})));const $=m((()=>{try{return A.validateSync(T()),!0}catch(e){return!1}}),[T,A]),I=e=>{_?.(e)},x=e=>{Object.entries(e).forEach((([t,n])=>{if(!!Ka.getNestedValueByKey(s,t))if(Array.isArray(n))O(t,{type:"api",message:n[0]});else if("object"==typeof n)x(n);else{const n=Ka.getNestedValueByKey(e,t),r=Object.values(n)[0],i=Object.keys(n)[0];O(i,{type:"api",message:r})}}))};o((()=>{if(h){const e=S((e=>{h(e,$())}));return()=>e.unsubscribe()}}),[$,h,S]),o((()=>{const e=N.errors;if(e&&!ar(e)){const e=S((e=>{const t=Object.fromEntries(Object.entries(N.errors).filter((([e,t])=>"api"===t.type)));t&&!ar(t)&&Object.keys(t).forEach((t=>{L[t]!==e[t]&&C(t)})),D(e)}));return()=>e.unsubscribe()}}),[N,S]),fr((()=>{b(a)}),[a]);const k=l?`frontend-engine-${l}`:"frontend-engine",z=[f,r].join(" ").trim();return e(ee,{...E,children:e("form",{id:k,"data-testid":Ja.generateId(l,"frontend-engine"),className:z,noValidate:!0,onSubmit:M(I),ref:n,children:e(wS,{warnings:y,schema:s})})})})),NS=h(((t,n)=>e(Qa,{children:e(OS,{...t,ref:n})})));export{NS as FrontendEngine};
|
|
1
|
+
export{b as FrontendEngine}from"./chunks/index.cb84bb25.js";import"react/jsx-runtime";import"react";import"events";import"buffer";import"@lifesg/react-design-system/media";import"@lifesg/react-design-system/alert";import"@lifesg/react-design-system/text";import"@lifesg/react-design-system/color";import"styled-components";import"@lifesg/react-design-system/modal";import"@lifesg/react-design-system/button";import"react-dom/server";import"@lifesg/react-design-system";import"@lifesg/react-design-system/toggle";import"@lifesg/react-design-system/form";import"@lifesg/react-design-system/checkbox";import"@lifesg/react-design-system/input-textarea";import"@lifesg/react-icons/cross";import"@lifesg/react-design-system/icon-button";import"@lifesg/react-design-system/input-select";import"@lifesg/react-design-system/radio-button";
|
|
286
2
|
//# sourceMappingURL=index.js.map
|